:root {
  --bg: #f7f5f0;
  --bg-alt: #efebe3;
  --text: #1c1c1c;
  --text-light: #5a5a5a;
  --text-muted: #666;            /* darkened for WCAG AA (was #999) */
  --accent: #c45c00;             /* brand orange — large text/decorative only */
  --accent-text: #a04b00;        /* darker orange that passes AA at small sizes */
  --accent-soft: rgba(196,92,0,0.08);
  --border: #e0dbd3;
  --border-light: #ece8e0;
  --maxw: 2000px;                /* full-width feel: a fixed ~2rem gutter on all screens, only centres past 2000px */
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}
a { color: var(--accent-text); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Accessibility helpers */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 100;
  background: var(--text); color: #fff; padding: 0.6rem 1rem; border-radius: 4px;
  transition: top 0.15s;
}
.skip-link:focus { top: 1rem; text-decoration: none; }

/* ===== NAV ===== */
nav {
  padding: 1.5rem 2rem;
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: baseline;
}
.logo { font-weight: 800; font-size: 1.3rem; letter-spacing: -0.03em; }
.nav-links { display: flex; gap: 2rem; font-size: 0.95rem; }
.nav-links a { color: var(--text-light); font-weight: 400; }
.nav-links a:hover { color: var(--text); text-decoration: none; }

/* ===== HERO ===== */
.hero {
  max-width: var(--maxw); margin: 0 auto;
  padding: 4.5rem 2rem 5rem;
}
.hero-inner {
  display: grid; grid-template-columns: 1.35fr 1fr;
  gap: 4rem; align-items: center;
}
.hero h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.3rem);
  font-weight: 800; line-height: 1.06; letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero p {
  font-size: 1.15rem; color: var(--text-light); max-width: 540px; margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-cta {
  font-size: 1.05rem; font-weight: 700; color: var(--accent-text);
  display: inline-block;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.2rem;
}
.hero-cta:hover { text-decoration: none; }
.hero-location {
  margin-top: 2.5rem; font-size: 0.85rem; color: var(--text-muted);
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.hero-location span { display: flex; align-items: center; gap: 0.4rem; }
.hero-location svg { width: 14px; height: 14px; opacity: 0.6; }

/* Hero highlights panel — fills the space with something useful */
.hero-panel {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 12px 30px rgba(0,0,0,0.04);
}
.hero-panel h2 {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 1.1rem;
}
.hero-panel ul { list-style: none; }
.hero-panel li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  padding: 0.55rem 0; font-size: 1rem; color: var(--text);
  border-bottom: 1px solid var(--border-light);
}
.hero-panel li:last-of-type { border-bottom: none; }
.hero-panel li svg { width: 18px; height: 18px; flex: none; margin-top: 0.15rem; color: var(--accent); }
.hero-panel .panel-price {
  margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--border);
  font-size: 0.95rem; color: var(--text-light);
}
.hero-panel .panel-price strong { color: var(--text); font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; }

/* ===== DIVIDER ===== */
.divider {
  max-width: var(--maxw); margin: 0 auto;
  height: 1px; background: var(--border);
}

/* ===== SERVICES + FAQ (shared list style) ===== */
.services, .faq {
  max-width: var(--maxw); margin: 0 auto;
  padding: 5rem 2rem;
}
.services h2, .faq h2 {
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 2.5rem;
}
.service-item, .faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 2.5rem 0;
}
.service-item:first-of-type, .faq-item:first-of-type { padding-top: 0; }
.service-item:last-child, .faq-item:last-of-type { border-bottom: none; }
.service-item h3, .faq-item h3 {
  font-size: 1.4rem; font-weight: 700; margin-bottom: 0.6rem; letter-spacing: -0.01em;
}
.service-item p, .faq-item p {
  color: var(--text-light); max-width: 900px; line-height: 1.7;
}
.service-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  color: var(--accent-text); background: var(--accent-soft);
  padding: 0.25rem 0.7rem; border-radius: 4px; margin-top: 0.8rem;
  letter-spacing: 0.02em;
}

/* ===== WORK ===== */
.work {
  max-width: var(--maxw); margin: 0 auto;
  padding: 5rem 2rem;
}
.work h2 {
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 2.5rem;
}
.work-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
}
.work-card {
  border: 1px solid var(--border); border-radius: 6px;
  overflow: hidden; transition: all 0.25s;
  background: #fff;
  color: inherit;
}
a.work-card { text-decoration: none; }
a.work-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  text-decoration: none;
}
a.work-card:hover .work-img { filter: brightness(1.02); }
/* non-clickable card (no live site) shouldn't behave like a link */
.work-card.static { cursor: default; }
.work-card.static:hover { transform: none; border-color: var(--border); }
.work-card.static:hover .work-img { filter: none; }
.work-card.wide { grid-column: span 2; }
.work-img {
  height: 220px; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--text-muted); font-weight: 500;
  transition: filter 0.3s; position: relative; overflow: hidden;
}
.work-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.work-img-overlay {
  position: absolute; inset: 0; background: rgba(28,28,28,0.5);
  display: flex; align-items: center; justify-content: center; opacity: 0;
  transition: opacity 0.3s;
}
a.work-card:hover .work-img-overlay { opacity: 1; }
.work-img-overlay span {
  color: #fff; font-weight: 600; font-size: 0.9rem;
}
.work-body { padding: 1.5rem; }
.work-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; }
.work-body p { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }
.work-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  color: var(--text-muted); margin-top: 0.8rem;
}

/* ===== ABOUT ===== */
.about {
  background: var(--bg-alt);
  padding: 5rem 2rem;
}
.about-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.about h2 {
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 2rem;
}
.about-text p {
  color: var(--text-light); margin-bottom: 1.2rem; font-size: 1.05rem;
  line-height: 1.75;
}
.about-text p:last-child { margin-bottom: 0; }
.stat {
  margin-bottom: 2rem;
}
.stat-num {
  font-size: 2.2rem; font-weight: 800; color: var(--accent); line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.9rem; color: var(--text-light); margin-top: 0.4rem;
}

/* ===== CONTACT ===== */
.contact {
  max-width: var(--maxw); margin: 0 auto;
  padding: 5rem 2rem;
}
.contact h2 {
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 2.5rem;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 1rem; border: 1.5px solid var(--border); border-radius: 4px;
  font-family: inherit; font-size: 1rem; background: #fff; transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--accent);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
/* Honeypot — hidden from humans, catches bots that fill every field */
.hp-field { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
.contact-form button {
  background: var(--text); color: #fff; border: none; padding: 1rem 1.5rem;
  border-radius: 4px; font-weight: 600; cursor: pointer; font-size: 1rem;
  transition: all 0.2s; width: fit-content;
}
.contact-form button:hover { background: var(--accent); }
.contact-form button:disabled { opacity: 0.6; cursor: default; }
.form-status { font-size: 0.95rem; margin-top: 0.25rem; min-height: 1.2rem; }
.form-status.ok { color: #2f7d32; }
.form-status.err { color: #b3261e; }
.contact-info p { color: var(--text-light); margin-bottom: 1rem; font-size: 1.05rem; }
.contact-email { font-size: 1.2rem; font-weight: 700; color: var(--text); }
.contact-email a { color: var(--text); border-bottom: 2px solid var(--accent); padding-bottom: 0.1rem; }
.contact-email a:hover { text-decoration: none; color: var(--accent); }
.contact-note {
  margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
  font-size: 0.9rem; color: var(--text-muted);
}

/* ===== FOOTER ===== */
footer {
  max-width: var(--maxw); margin: 0 auto;
  padding: 3rem 2rem 4rem;
  border-top: 1px solid var(--border);
}
footer p {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.8;
}
footer .footer-links { margin-bottom: 0.8rem; }
footer .footer-links a { color: var(--text-light); font-size: 0.9rem; }
footer .signature {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic; font-size: 1.1rem; color: var(--text-light);
  margin-top: 1rem;
}

/* ===== RESPONSIVE ===== */
/* Stack the hero before the two columns get cramped */
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero p { max-width: 100%; }
}
@media (max-width: 768px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-card.wide { grid-column: span 1; }
  .about-inner, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 2.5rem 1.5rem 3rem; }
  .services, .work, .contact, .faq { padding: 3rem 1.5rem; }
  .about { padding: 3rem 1.5rem; }
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.2rem; font-size: 0.9rem; }
  .contact-form button { width: 100%; }
}
