/* ==========================================================================
   Borrello Landscape - design system (2026 refresh, mobile-first)
   Base styles target mobile; min-width breakpoints layer up for larger screens.
   Brand palette pulled from the logo: olive/avocado green, deep forest, charcoal.
   Rebrand by editing the tokens in :root.
   ========================================================================== */

:root {
  /* Brand greens */
  --green:        #8cb84e;   /* avocado - the logo accent; pops on dark */
  --green-bright: #a4d15f;   /* lighter avocado for hovers/glow */
  --green-deep:   #4a7a2c;   /* darker green - accessible accent on light bg */
  --green-forest: #33401d;   /* the tree/hills color */

  /* Accent - warm terracotta/clay: the landscaping "pop" paired with green */
  --clay:        #c0603a;
  --clay-dark:   #a44e2d;
  --clay-bright: #d98a63;
  --doodle: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'%3E%3Cpath d='M3 9 C 45 3, 80 3, 118 8 S 178 11, 197 5' stroke='%23c0603a' stroke-width='4.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");

  /* Ink + neutrals */
  --ink:        #2a2619;     /* warm dark - primary text on light */
  --muted:      #6a6250;     /* warm taupe - secondary text on light */
  --charcoal:   #14180f;     /* dark sections / logo background */
  --charcoal-2: #1d2417;     /* raised dark surface */

  /* Surfaces - warm natural neutrals (classic landscaping feel) */
  --bg:        #faf7ef;      /* warm cream (page background) */
  --surface:   #ffffff;      /* white paper for cards */
  --bg-alt:    #efe7d6;      /* warm stone (alt sections) */
  --border:    #e7ddca;      /* warm border */
  --border-dark: rgba(255, 255, 255, 0.12);

  /* On-dark text */
  --on-dark:        #f6f8f2;
  --on-dark-muted:  #b6c1ad;

  /* Gradients + glow (the "fresh" layer) */
  --grad-green:  linear-gradient(120deg, #b6e36a 0%, #8cb84e 55%, #5e8a2f 100%);
  --grad-bright: linear-gradient(100deg, #d7ef9c 0%, #9fce57 48%, #74a83c 100%);
  --glow-green:  0 18px 50px -14px rgba(140, 184, 78, 0.55);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --maxw: 1140px;
  --radius: 14px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(58, 46, 22, 0.06), 0 4px 14px rgba(58, 46, 22, 0.05);
  --shadow-md: 0 10px 30px rgba(58, 46, 22, 0.10);
  --shadow-lg: 0 24px 60px rgba(58, 46, 22, 0.15);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Reset ------------------------------------------------------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* Subtle film grain for depth (very 2026, very subtle) */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img, svg { display: block; max-width: 100%; }
a { color: var(--green-deep); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.06; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.hidden { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.grad-text {
  background: var(--grad-bright); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
/* Hand-drawn highlight on a hero word (terracotta underline doodle) */
.hl { position: relative; color: var(--clay); }
.hl::after { content: ""; position: absolute; left: -2px; right: -2px; bottom: -0.14em; height: 0.2em; background: var(--doodle) center/100% 100% no-repeat; }
.hero .hl { color: var(--clay-bright); }

.skip-link {
  position: absolute; left: 16px; top: -48px; z-index: 100;
  background: var(--green); color: var(--charcoal); padding: 10px 16px;
  border-radius: 10px; font-weight: 600; text-decoration: none; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* Scroll progress bar (created by main.js) -------------------------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--green-deep), var(--clay)); z-index: 9999; border-radius: 0 3px 3px 0;
  box-shadow: 0 0 12px rgba(192, 96, 58, 0.6); transition: width .1s linear;
}

/* Buttons ----------------------------------------------------------------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--clay); color: #fff; text-decoration: none;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 13px 24px; border: 2px solid transparent; border-radius: 999px;
  cursor: pointer; transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
  box-shadow: 0 8px 22px -8px rgba(192, 96, 58, 0.55);
}
/* shimmer sweep */
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 28%, rgba(255,255,255,0.28) 50%, transparent 72%);
  transform: translateX(-130%); transition: transform .6s var(--ease);
}
.btn:hover::after { transform: translateX(130%); }
.btn:hover { background: var(--clay-dark); transform: translateY(-3px); box-shadow: 0 16px 34px -10px rgba(192, 96, 58, 0.6); }
.btn:active { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
.btn-lg { padding: 16px 32px; font-size: 1.075rem; }
.btn-sm { padding: 10px 18px; font-size: .95rem; }

.btn-ghost { background: transparent; color: var(--green-deep); border-color: var(--green-deep); box-shadow: none; }
.btn-ghost:hover { background: var(--green-deep); color: #fff; }

/* On dark backgrounds, the avocado button goes gradient + glow */
.on-dark .btn, .btn-on-dark { background: var(--clay); color: #fff; box-shadow: 0 10px 28px -10px rgba(192,96,58,.6); }
.on-dark .btn:hover, .btn-on-dark:hover { background: var(--clay-dark); box-shadow: 0 18px 44px -12px rgba(192,96,58,.7); }
.on-dark .btn-ghost, .btn-ghost.btn-on-dark { background: transparent; color: var(--on-dark); border-color: rgba(255,255,255,.45); box-shadow: none; }
.on-dark .btn-ghost:hover, .btn-ghost.btn-on-dark:hover { background: #fff; color: var(--charcoal); border-color: #fff; filter: none; }

/* Header ------------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(16, 19, 11, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border-dark);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; transition: transform .2s var(--ease); }
.brand:hover { transform: translateY(-1px); }
.brand-logo { height: 34px; width: auto; display: block; }

/* Nav - base is the mobile slide-down menu; desktop layout added at >=681px */
.nav-toggle { display: block; background: transparent; border: 0; cursor: pointer; padding: 8px; width: 44px; height: 44px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--on-dark); border-radius: 2px; transition: transform .2s var(--ease), opacity .2s var(--ease); }
.nav-toggle span + span { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-links {
  list-style: none;
  position: absolute; top: 74px; left: 0; right: 0;
  display: flex; flex-direction: column; align-items: stretch; gap: 4px;
  padding: 12px 24px 20px; background: rgba(16, 19, 11, 0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
.nav-links li { width: 100%; }
.nav-links a { color: var(--on-dark); text-decoration: none; font-weight: 500; font-size: .98rem; transition: color .15s var(--ease); }
.nav-links a:not(.btn) { display: block; padding: 12px 4px; border-bottom: 1px solid var(--border-dark); }
.nav-links a:not(.btn):hover { color: var(--clay); }
.nav-links .btn { margin-top: 10px; width: 100%; }

/* Hero -------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate; color: var(--on-dark);
  background: linear-gradient(180deg, #0f120b 0%, #161c10 58%, #1b2215 100%);
  padding: 84px 0 72px;
}
/* drifting aurora blobs */
.hero::before, .hero::after {
  content: ""; position: absolute; z-index: -1; border-radius: 50%;
  filter: blur(70px); opacity: 0.5; pointer-events: none;
}
.hero::before { width: 560px; height: 560px; top: -180px; right: -120px; background: radial-gradient(circle, rgba(164, 209, 95, 0.55), transparent 70%); animation: drift1 20s var(--ease) infinite; }
.hero::after  { width: 480px; height: 480px; bottom: -220px; left: -120px; background: radial-gradient(circle, rgba(192, 96, 58, 0.42), transparent 70%); animation: drift2 26s var(--ease) infinite; }
@keyframes drift1 { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-70px, 50px) scale(1.12); } }
@keyframes drift2 { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(60px, -40px) scale(1.1); } }

.hero-watermark {
  position: absolute; right: -40px; bottom: -50px; width: 440px; max-width: 56%;
  opacity: 0.1; pointer-events: none; z-index: -1;
  filter: drop-shadow(0 0 40px rgba(140,184,78,.3)); animation: float 9s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-18px) rotate(1.5deg); } }

.hero-inner { position: relative; max-width: 780px; }
.hero-inner > * { animation: heroIn .8s var(--ease) both; }
.hero-inner > *:nth-child(1) { animation-delay: .05s; }
.hero-inner > *:nth-child(2) { animation-delay: .14s; }
.hero-inner > *:nth-child(3) { animation-delay: .23s; }
.hero-inner > *:nth-child(4) { animation-delay: .32s; }
.hero-inner > *:nth-child(5) { animation-delay: .41s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: .22em; font-size: .78rem; font-weight: 600;
  color: var(--clay-bright); margin-bottom: 22px;
  padding: 7px 16px; border: 1px solid rgba(192,96,58,.4); border-radius: 999px;
  background: rgba(192,96,58,.12);
}
.hero h1 { font-size: clamp(2.6rem, 6.4vw, 4.4rem); letter-spacing: -0.03em; max-width: 16ch; }
.hero .lede { margin: 24px 0 36px; font-size: clamp(1.08rem, 2.2vw, 1.32rem); color: var(--on-dark-muted); max-width: 56ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 44px; color: var(--on-dark-muted); font-size: .95rem; font-weight: 500; }
.hero-trust li { display: inline-flex; align-items: center; gap: 9px; }
.hero-trust svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

/* Tagline marquee --------------------------------------------------------- */
.marquee {
  background: var(--charcoal); color: var(--on-dark);
  border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark);
  overflow: hidden; padding: 24px 0; white-space: nowrap;
}
.marquee-track { display: inline-flex; align-items: center; will-change: transform; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee .m-word { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 4vw, 2.7rem); text-transform: uppercase; letter-spacing: .01em; padding: 0 22px; }
.marquee .m-word.o { color: transparent; -webkit-text-stroke: 1.4px var(--green); }
.marquee .m-sep { color: var(--green); font-size: clamp(1rem, 2.4vw, 1.7rem); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Sections ---------------------------------------------------------------- */
.section { padding: 66px 0; }
.section-alt { background: var(--bg-alt); }
.on-dark { background: var(--charcoal); color: var(--on-dark); }
.on-dark h2 { color: var(--on-dark); }

.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker { display: inline-block; text-transform: uppercase; letter-spacing: .2em; font-size: .76rem; font-weight: 600; color: var(--clay-dark); }
.on-dark .kicker { color: var(--clay-bright); }
h2 { font-size: clamp(2rem, 4.4vw, 2.9rem); margin-top: 12px; }
.section-lede { color: var(--muted); font-size: 1.14rem; margin-top: 14px; }
.on-dark .section-lede { color: var(--on-dark-muted); }

/* Service cards ----------------------------------------------------------- */
.cards { display: grid; grid-template-columns: 1fr; gap: 22px; }
.card {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 34px 30px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
/* gradient border on hover (mask trick) */
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: linear-gradient(150deg, rgba(164,209,95,.8), rgba(140,184,78,0) 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .25s var(--ease); pointer-events: none;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px -20px rgba(20,24,15,.28); border-color: transparent; }
.card:hover::before { opacity: 1; }
.card-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 18px; margin-bottom: 20px;
  background: rgba(140, 184, 78, 0.14); color: var(--green-deep);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover .card-ic { background: var(--grad-green); color: #fff; transform: scale(1.08) rotate(-5deg); box-shadow: var(--glow-green); }
.card-ic svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.26rem; margin-bottom: 9px; }
.card p { color: var(--muted); }

/* Gallery ----------------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: 1fr; gap: 18px; }
.tile { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: #dfeacf; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.tile:hover img { transform: scale(1.07); }
.tile.placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, #d4e6c4, #aecb97); color: #4a6138; font-weight: 600; font-size: .92rem;
}
.tile.placeholder svg { width: 30px; height: 30px; opacity: .65; }
.tile .tile-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px; background: linear-gradient(transparent, rgba(20,24,15,.72)); color: #fff; font-weight: 600; font-size: .95rem; opacity: 0; transform: translateY(8px); transition: opacity .25s var(--ease), transform .25s var(--ease); }
.tile:hover .tile-cap { opacity: 1; transform: none; }

/* About ------------------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.about-copy p { font-size: 1.14rem; color: var(--muted); margin-bottom: 18px; }
.about-copy p:first-of-type { color: var(--ink); font-size: 1.2rem; }
.badges { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 26px; font-weight: 500; color: var(--ink); }
.badges li { display: inline-flex; align-items: center; gap: 9px; }
.badges svg { width: 19px; height: 19px; color: var(--green-deep); flex-shrink: 0; }

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #ffffff, var(--bg-alt));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 22px; text-align: center; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.stat:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stat .num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; line-height: 1; color: var(--clay); }
.stat .lbl { display: block; margin-top: 8px; color: var(--muted); font-size: .95rem; }

/* CTA band ---------------------------------------------------------------- */
.cta { position: relative; overflow: hidden; text-align: center; }
.cta::before { content: ""; position: absolute; width: 600px; height: 600px; border-radius: 50%; top: -300px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(140,184,78,.22), transparent 70%); filter: blur(40px); pointer-events: none; }
.cta .container { position: relative; max-width: 760px; }
.cta h2 { font-size: clamp(2.1rem, 4.6vw, 3rem); }
.cta p { color: var(--on-dark-muted); font-size: 1.18rem; margin: 16px auto 32px; max-width: 48ch; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer ------------------------------------------------------------------ */
.site-footer { background: var(--charcoal); color: var(--on-dark-muted); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-brand { grid-column: 1 / -1; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand .brand-logo { height: 42px; }
.footer-brand p { max-width: 34ch; font-size: .96rem; }
.footer-col h4 { font-family: var(--font-display); font-weight: 600; color: var(--on-dark); font-size: 1.02rem; margin-bottom: 14px; letter-spacing: 0; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col p { color: var(--on-dark-muted); text-decoration: none; font-size: .96rem; }
.footer-col a { transition: color .15s var(--ease); }
.footer-col a:hover { color: var(--green); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border-dark); display: flex; justify-content: space-between; align-items: center; gap: 12px 20px; flex-wrap: wrap; font-size: .88rem; }

/* "Built by Group Zeus" chrome credit */
.built-by { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-size: .82rem; font-weight: 600; letter-spacing: .01em; }
.built-by .bb-label { color: var(--on-dark-muted); font-weight: 500; }
.built-by .bb-mark { width: 24px; height: 16px; flex-shrink: 0; background: linear-gradient(125deg, #ffffff 0%, #d8e5ed 35%, #9fb3c2 58%, #ffffff 85%); -webkit-mask: url("/assets/group-zeus-symbol.svg") center/contain no-repeat; mask: url("/assets/group-zeus-symbol.svg") center/contain no-repeat; transition: transform .25s var(--ease), filter .25s var(--ease); }
.built-by .bb-name { background: linear-gradient(125deg, #ffffff 0%, #d8e5ed 40%, #9fb3c2 70%, #ffffff 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.built-by:hover .bb-mark { transform: translateY(-1px) scale(1.05); filter: drop-shadow(0 0 6px rgba(216,229,237,.6)); }
.built-by:hover .bb-name { filter: brightness(1.12); }

/* Contact / message page -------------------------------------------------- */
.page-hero {
  position: relative; overflow: hidden; isolation: isolate; color: var(--on-dark); padding: 84px 0 72px;
  background: linear-gradient(180deg, #0f120b, #1a2114);
}
.page-hero::before { content: ""; position: absolute; z-index: -1; width: 520px; height: 520px; border-radius: 50%; top: -200px; right: -120px; background: radial-gradient(circle, rgba(164,209,95,.5), transparent 70%); filter: blur(70px); opacity: .5; animation: drift1 22s var(--ease) infinite; }
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.3rem); max-width: 18ch; }
.page-hero p { color: var(--on-dark-muted); font-size: 1.15rem; margin-top: 16px; max-width: 54ch; }

.contact-layout { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 22px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .94rem; margin-bottom: 7px; color: var(--ink); }
.field .req { color: var(--green-deep); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: #fdfbf5; border: 1.5px solid var(--border); border-radius: 12px; padding: 13px 15px;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease), background .15s var(--ease);
}
.field textarea { resize: vertical; min-height: 150px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(140,184,78,.18); background: #fff; }
.field .hint { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.form-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.form-note { font-size: .86rem; color: var(--muted); }
.form-alert { border-radius: 12px; padding: 16px 18px; font-size: .98rem; margin-bottom: 22px; display: none; }
.form-alert.show { display: block; }
.form-alert.success { background: rgba(140,184,78,.14); border: 1px solid rgba(140,184,78,.5); color: #2f5318; }
.form-alert.error { background: #fdecec; border: 1px solid #f3c0c0; color: #97211f; }

.contact-aside { display: flex; flex-direction: column; gap: 14px; }
.aside-item { display: flex; gap: 14px; align-items: flex-start; background: linear-gradient(160deg, #ffffff, var(--bg-alt)); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.aside-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.aside-item .ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(140,184,78,.16); color: var(--green-deep); }
.aside-item .ic svg { width: 22px; height: 22px; }
.aside-item h3 { font-size: 1.05rem; margin-bottom: 3px; }
.aside-item a, .aside-item p { color: var(--muted); text-decoration: none; font-size: .98rem; }
.aside-item a:hover { color: var(--green-deep); }

/* 404 / error page -------------------------------------------------------- */
.error {
  position: relative; overflow: hidden; min-height: 68vh; display: grid; place-items: center; text-align: center;
  color: var(--on-dark); padding: 80px 0;
  background: linear-gradient(180deg, #0f120b, #1a2114);
}
.error::before { content: ""; position: absolute; width: 600px; height: 600px; border-radius: 50%; top: -240px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(164,209,95,.3), transparent 70%); filter: blur(60px); pointer-events: none; }
.error-inner { position: relative; max-width: 560px; padding: 0 24px; }
.error .code { font-family: var(--font-display); font-weight: 700; font-size: clamp(4.5rem, 16vw, 8.5rem); line-height: 1; letter-spacing: -0.04em; background: var(--grad-bright); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.error h1 { font-size: clamp(1.6rem, 4vw, 2.3rem); margin: 6px 0 14px; }
.error p { color: var(--on-dark-muted); font-size: 1.12rem; margin-bottom: 30px; }

/* How we work (process) --------------------------------------------------- */
.sprig { display: block; margin: 0 auto; width: 58px; height: auto; color: var(--green-deep); }
.steps { list-style: none; display: grid; grid-template-columns: 1fr; gap: 30px; }
.step { position: relative; padding-top: 22px; border-top: 3px solid var(--clay); }
.step-no { font-family: var(--font-display); font-size: 2rem; font-weight: 500; color: var(--green-deep); line-height: 1; display: block; margin-bottom: 12px; }
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { color: var(--muted); }
@media (min-width: 681px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 38px 30px; } }
@media (min-width: 901px) { .steps { grid-template-columns: repeat(4, 1fr); } }

/* Philosophy quote -------------------------------------------------------- */
.quote-band { text-align: center; }
.quote { max-width: 780px; margin: 0 auto; }
.quote-mark { font-family: var(--font-display); font-size: 4.5rem; line-height: .5; color: var(--clay); display: block; height: 2rem; }
.quote .sprig { margin-bottom: 22px; }
.quote p { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: clamp(1.5rem, 3.4vw, 2.25rem); line-height: 1.34; color: var(--ink); letter-spacing: -0.01em; }
.quote cite { display: block; margin-top: 22px; font-style: normal; font-family: var(--font-body); font-weight: 600; font-size: .92rem; letter-spacing: .08em; text-transform: uppercase; color: var(--green-deep); }

/* Scroll reveal (animation-based so it never clobbers hover transitions) --- */
.reveal { opacity: 0; }
.reveal.in { animation: revealUp .7s var(--ease) both; animation-delay: var(--d, 0s); }
@keyframes revealUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
/* stagger items within a group */
.cards .card:nth-child(2), .gallery .tile:nth-child(2) { --d: .07s; }
.cards .card:nth-child(3), .gallery .tile:nth-child(3) { --d: .14s; }
.cards .card:nth-child(4), .gallery .tile:nth-child(4) { --d: .21s; }
.cards .card:nth-child(5), .gallery .tile:nth-child(5) { --d: .28s; }
.cards .card:nth-child(6), .gallery .tile:nth-child(6) { --d: .35s; }

/* ==========================================================================
   2026 refresh - carry the hero's vocabulary (terracotta, doodle, ambient
   light, layered cards) down into the cream body so the page reads as one piece.
   ========================================================================== */

/* Kicker: terracotta tick before the label */
.kicker { display: inline-flex; align-items: center; gap: 10px; }
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--clay); border-radius: 2px; flex-shrink: 0; }

/* Doodle underline under centered light-section headings (echoes the hero .hl) */
.section:not(.on-dark) .section-head.center h2 { display: inline-block; }
.section:not(.on-dark) .section-head.center h2::after {
  content: ""; display: block; height: .26em; width: clamp(120px, 46%, 230px);
  margin: .14em auto 0; background: var(--doodle) center/100% 100% no-repeat;
}

/* Ambient "sunlight" wash so the cream sections gain depth and rhythm */
#services, #gallery, #about { position: relative; isolation: isolate; }
#services::after, #gallery::after, #about::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
}
#services::after { background: radial-gradient(60% 45% at 12% 0%, rgba(140,184,78,.10), transparent 60%); }
#gallery::after  { background: radial-gradient(55% 45% at 92% 100%, rgba(192,96,58,.09), transparent 60%); }
#about::after    { background: radial-gradient(55% 50% at 96% 6%, rgba(140,184,78,.10), transparent 60%); }

/* Soft cream curve bridging the dark marquee into the services section */
#services::before {
  content: ""; position: absolute; left: 0; right: 0; top: -28px; height: 56px;
  background: var(--bg); border-radius: 50% 50% 0 0 / 56px 56px 0 0;
  z-index: 1; pointer-events: none;
}

/* Service cards: resting lift + permanent terracotta cap */
.card { box-shadow: var(--shadow-sm); }
.card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--clay), var(--clay-bright)); z-index: 2;
}
/* Icon chips: larger, two-tone, lit at rest */
.card-ic {
  width: 64px; height: 64px; border-radius: 20px;
  background: linear-gradient(160deg, rgba(140,184,78,.22), rgba(140,184,78,.07));
  box-shadow: inset 0 0 0 1.5px rgba(74,122,44,.2);
}
.card-ic svg { width: 30px; height: 30px; }

/* Gallery placeholder: layered duotone "coming soon" panels */
.tile.placeholder {
  gap: 12px; color: var(--green-forest); text-align: center; padding: 20px;
  background:
    radial-gradient(120% 90% at 20% 12%, rgba(255,255,255,.5), transparent 55%),
    linear-gradient(150deg, #d4e6c4, #b6cf9c 55%, #9bbb7e);
  box-shadow: inset 0 0 0 1px rgba(74,122,44,.2), var(--shadow-sm);
}
.tile.placeholder .ph-ic { width: 28px; height: 28px; opacity: .55; color: var(--green-deep); }
.tile.placeholder .ph-label { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; letter-spacing: -0.01em; color: var(--green-forest); }
.tile.placeholder .ph-tag {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--font-body); font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: #fff; background: var(--clay); padding: 4px 9px; border-radius: 999px;
  box-shadow: 0 4px 10px -3px rgba(192,96,58,.6);
}

/* Stats: clay top-rule + bigger serif duotone numerals */
.stat { border-top: 3px solid var(--clay); padding-top: 26px; }
.stat .num { font-size: clamp(2.4rem, 5.2vw, 3rem); letter-spacing: -0.02em; }
.stat .num .u { color: var(--green-deep); }
.stat .lbl { text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; font-weight: 600; }

/* Process: confident terracotta numerals with a ghost backdrop and directional rule */
.step { border-top: 0; padding-top: 26px; }
.step::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--clay), var(--clay-bright) 45%, transparent); }
.step-no { position: relative; z-index: 0; font-size: clamp(2.6rem, 5vw, 3.4rem); color: var(--clay); }
.step-no::before {
  content: attr(data-n); position: absolute; left: -4px; top: 50%; transform: translateY(-50%);
  font-size: 1.9em; line-height: 1; color: var(--clay); opacity: .09; z-index: -1; pointer-events: none;
}

/* Marquee: fade the words at the band edges so the loop feels endless */
.marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

/* Extend the reveal stagger to the process steps and stat cards */
.steps .step:nth-child(2), .stats .stat:nth-child(2) { --d: .08s; }
.steps .step:nth-child(3), .stats .stat:nth-child(3) { --d: .16s; }
.steps .step:nth-child(4), .stats .stat:nth-child(4) { --d: .24s; }

/* ==========================================================================
   Responsive - mobile-first: base (above) targets phones; these layer up.
   Breakpoints: 681px (tablet/landscape) · 821px (small laptop) · 901px (desktop)
   ========================================================================== */
@media (min-width: 681px) {
  /* Nav becomes a horizontal bar */
  .nav-toggle { display: none; }
  .nav-links {
    position: static; flex-direction: row; align-items: center; gap: 30px;
    padding: 0; background: none; backdrop-filter: none; -webkit-backdrop-filter: none;
    border-bottom: 0; transform: none; opacity: 1; pointer-events: auto;
  }
  .nav-links li { width: auto; }
  .nav-links a:not(.btn) { display: inline; padding: 0; border-bottom: 0; position: relative; }
  .nav-links a:not(.btn)::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
    background: var(--clay); border-radius: 2px; transform: scaleX(0); transform-origin: left;
    transition: transform .22s var(--ease);
  }
  .nav-links a:not(.btn):hover::after { transform: scaleX(1); }
  .nav-links .btn { margin-top: 0; width: auto; }

  /* Roomier spacing on larger screens */
  .hero { padding: 116px 0 104px; }
  .section { padding: 96px 0; }
  .form-card { padding: 38px; }

  /* Two-up grids */
  .cards, .gallery { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 821px) {
  .cards, .gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 901px) {
  .about-grid { grid-template-columns: 1.3fr 1fr; gap: 56px; }
  .contact-layout { grid-template-columns: 1.5fr 1fr; gap: 52px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  body::after { display: none; }
  .reveal { opacity: 1 !important; animation: none !important; }
  .hero-inner > * { animation: none !important; opacity: 1 !important; }
  .hero::before, .hero::after, .hero-watermark, .page-hero::before, .marquee-track { animation: none !important; }
  .btn::after { display: none; }
  .btn:hover, .card:hover, .tile:hover, .stat:hover, .brand:hover, .aside-item:hover { transform: none; }
}
