@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --primary:        #04945c;
  --accent:         #0b9c6b;
  --primary-dark:   #037048;
  --primary-dim:    #04945c26;
  --primary-glow:   #04945c14;

  --ink:            #0f1411;
  --ink-80:         #0f1411cc;
  --ink-50:         #0f141180;
  --ink-20:         #0f141133;

  --cream:          #f6f4ee;
  --cream-dark:     #ede9df;
  --sand:           #d9d3c4;
  --sand-dim:       #d9d3c440;

  --forest:         #1c2722;
  --forest-mid:     #26342d;
  --forest-light:   #2f4039;

  --white:          #ffffff;
  --white-12:       #ffffff1f;
  --white-06:       #ffffff0f;

  --rhythm:         140px;
  --rhythm-sm:      72px;

  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      16px;

  --ease-out:       cubic-bezier(.2,.7,.2,1);
  --ease-in-out:    cubic-bezier(.4,0,.2,1);

  --font-display:   'Inter Tight', sans-serif;
  --font-body:      'Inter', sans-serif;

  --step-xs:        clamp(0.75rem, 1.2vw, 0.875rem);
  --step-sm:        clamp(0.875rem, 1.4vw, 1rem);
  --step-base:      clamp(1rem, 1.6vw, 1.125rem);
  --step-md:        clamp(1.125rem, 2vw, 1.375rem);
  --step-lg:        clamp(1.375rem, 3vw, 1.875rem);
  --step-xl:        clamp(1.875rem, 4.5vw, 3rem);
  --step-2xl:       clamp(2.5rem, 6vw, 4.5rem);
  --step-3xl:       clamp(3rem, 8vw, 6rem);
  --step-hero:      clamp(3.25rem, 9vw, 8rem);
}

/* ─── Reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* ─── Base ───────────────────────────────────────────────────────────── */
body {
  font-family:      var(--font-body);
  font-size:        var(--step-base);
  line-height:      1.7;
  color:            var(--ink);
  background:       var(--cream);
  overflow-x:       hidden;
}

/* Grain texture overlay */
body::after {
  content:          '';
  position:         fixed;
  inset:            0;
  pointer-events:   none;
  z-index:          9999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity:          0.028;
  mix-blend-mode:   multiply;
}

/* ─── Typography ─────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family:      var(--font-display);
  font-weight:      800;
  line-height:      1.05;
  letter-spacing:   -0.03em;
}

h1 { font-size: var(--step-hero); }
h2 { font-size: var(--step-3xl); }
h3 { font-size: var(--step-xl); }
h4 { font-size: var(--step-md); font-weight: 600; letter-spacing: -0.01em; }

p { max-width: 60ch; }
p + p { margin-top: 1em; }

.eyebrow {
  display:          inline-block;
  font-size:        var(--step-xs);
  font-weight:      600;
  letter-spacing:   0.12em;
  text-transform:   uppercase;
  color:            var(--primary);
  margin-bottom:    1.25rem;
}

.eyebrow--light { color: var(--accent); }
.eyebrow--sand  { color: var(--sand); }

/* ─── Wordmark ───────────────────────────────────────────────────────── */
.wordmark {
  font-family:      var(--font-display);
  font-weight:      800;
  font-size:        1.25rem;
  letter-spacing:   -0.02em;
  color:            var(--white);
  text-transform:   uppercase;
  display:          inline-block;
  border-bottom:    2px solid var(--primary);
  padding-bottom:   2px;
  line-height:      1.1;
}

.wordmark--lg {
  font-size:        var(--step-lg);
}

/* ─── Layout ─────────────────────────────────────────────────────────── */
.container {
  width:            100%;
  max-width:        1280px;
  margin-inline:    auto;
  padding-inline:   1.25rem;
}

.wide-container {
  width:            100%;
  max-width:        1480px;
  margin-inline:    auto;
  padding-inline:   1.25rem;
}

.bleed {
  width:            100vw;
  margin-left:      calc(50% - 50vw);
}

/* ─── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display:          inline-flex;
  align-items:      center;
  gap:              0.5rem;
  font-family:      var(--font-body);
  font-size:        var(--step-sm);
  font-weight:      600;
  letter-spacing:   0.02em;
  padding:          0.875rem 1.75rem;
  border-radius:    var(--radius-sm);
  transition:       background 250ms var(--ease-out),
                    transform  200ms var(--ease-out),
                    box-shadow 200ms var(--ease-out);
}

.btn--primary {
  background:       var(--primary);
  color:            var(--white);
}
.btn--primary:hover {
  background:       var(--primary-dark);
  transform:        translateY(-2px);
  box-shadow:       0 8px 24px #04945c40;
}

.btn--outline {
  background:       transparent;
  color:            var(--primary);
  border:           2px solid var(--primary);
}
.btn--outline:hover {
  background:       var(--primary-glow);
  transform:        translateY(-2px);
}

.btn--ghost {
  background:       transparent;
  color:            var(--cream);
  border:           2px solid var(--white-12);
}
.btn--ghost:hover {
  background:       var(--white-06);
  border-color:     var(--white);
}

.btn--large {
  font-size:        var(--step-md);
  padding:          1.125rem 2.25rem;
}

/* ─── Nav ─────────────────────────────────────────────────────────────── */
.nav {
  position:         fixed;
  top:              0;
  left:             0;
  right:            0;
  z-index:          900;
  display:          flex;
  align-items:      center;
  justify-content:  space-between;
  padding:          1.125rem 1.5rem;
  background:       var(--forest);
  border-bottom:    1px solid var(--white-06);
  transition:       background 300ms var(--ease-out),
                    box-shadow 300ms var(--ease-out);
}

.nav.scrolled {
  background:       var(--ink);
  box-shadow:       0 2px 24px #00000040;
}

.nav__logo {
  font-family:      var(--font-display);
  font-weight:      800;
  font-size:        var(--step-md);
  letter-spacing:   -0.03em;
  color:            var(--white);
}

.nav__logo span { color: var(--primary); }

.nav__links {
  display:          none;
  flex-direction:   column;
  position:         absolute;
  top:              100%;
  left:             0;
  right:            0;
  background:       var(--ink);
  padding:          1.5rem;
  gap:              1.25rem;
  border-bottom:    2px solid var(--primary);
}

.nav__links.open { display: flex; }

.nav__links a {
  font-size:        var(--step-sm);
  font-weight:      600;
  color:            var(--sand);
  letter-spacing:   0.04em;
  text-transform:   uppercase;
  transition:       color 200ms;
}
.nav__links a:hover { color: var(--white); }
.nav__links .btn { align-self: flex-start; margin-top: 0.5rem; }

.nav__toggle {
  color:            var(--white);
  display:          flex;
  flex-direction:   column;
  gap:              5px;
  width:            28px;
}

.nav__toggle span {
  display:          block;
  height:           2px;
  background:       currentColor;
  border-radius:    2px;
  transition:       transform 250ms var(--ease-out),
                    opacity   200ms;
}

.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ───────────────────────────────────────────────────────────── */
.hero {
  min-height:       100svh;
  display:          grid;
  grid-template-columns: 1fr;
  padding-top:      80px;
  background:       var(--forest);
  overflow:         hidden;
  position:         relative;
}

.hero__text {
  display:          flex;
  flex-direction:   column;
  justify-content:  center;
  padding:          var(--rhythm-sm) 1.5rem;
  z-index:          2;
  position:         relative;
}

.hero__text h1 {
  color:            var(--white);
  max-width:        14ch;
  margin-bottom:    1.5rem;
}

.hero__text h1 em {
  font-style:       normal;
  color:            var(--primary);
}

.hero__text p {
  color:            var(--sand);
  font-size:        var(--step-md);
  line-height:      1.65;
  margin-bottom:    2.25rem;
}

.hero__ctas {
  display:          flex;
  flex-wrap:        wrap;
  gap:              1rem;
  align-items:      center;
}

.hero__badge {
  margin-top:       2.5rem;
  display:          inline-flex;
  align-items:      center;
  gap:              0.625rem;
  font-size:        var(--step-xs);
  font-weight:      600;
  color:            var(--sand);
  letter-spacing:   0.06em;
  text-transform:   uppercase;
  padding:          0.5rem 1rem;
  border:           1px solid var(--white-12);
  border-radius:    var(--radius-sm);
  width:            fit-content;
}

.hero__badge::before {
  content:          '';
  display:          block;
  width:            8px;
  height:           8px;
  border-radius:    50%;
  background:       var(--primary);
  box-shadow:       0 0 8px var(--primary);
  animation:        pulse 2.4s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 6px var(--primary); }
  50%       { box-shadow: 0 0 14px var(--accent); }
}

.hero__photo {
  position:         relative;
  min-height:       55vw;
  overflow:         hidden;
}

.hero__photo img {
  position:         absolute;
  inset:            0;
  width:            100%;
  height:           100%;
  object-fit:       cover;
  object-position:  center;
}

.hero__photo::after {
  content:          '';
  position:         absolute;
  inset:            0;
  background:       linear-gradient(to bottom, var(--forest) 0%, transparent 30%);
  z-index:          1;
}

/* ─── Trust Strip ────────────────────────────────────────────────────── */
.trust-strip {
  background:       var(--ink);
  padding:          2rem 1.25rem;
  border-bottom:    1px solid var(--white-06);
  overflow:         hidden;
}

.trust-strip__inner {
  display:          flex;
  flex-wrap:        wrap;
  gap:              1.5rem 2.5rem;
  align-items:      center;
  justify-content:  center;
}

.trust-item {
  display:          flex;
  align-items:      center;
  gap:              0.625rem;
  font-size:        var(--step-xs);
  font-weight:      600;
  letter-spacing:   0.06em;
  text-transform:   uppercase;
  color:            var(--sand);
}

.trust-item__icon {
  width:            32px;
  height:           32px;
  background:       var(--primary-dim);
  border-radius:    var(--radius-sm);
  display:          flex;
  align-items:      center;
  justify-content:  center;
  flex-shrink:      0;
}

.trust-item__icon svg { width: 16px; height: 16px; fill: var(--primary); }

.trust-item__label strong {
  display:          block;
  color:            var(--white);
  font-size:        var(--step-sm);
  letter-spacing:   0;
}

/* ─── Split (shared) ─────────────────────────────────────────────────── */
.split {
  display:          grid;
  grid-template-columns: 1fr;
  min-height:       80vh;
  align-items:      stretch;
}

.split__photo {
  position:         relative;
  min-height:       60vw;
  overflow:         hidden;
}

.split__photo img {
  position:         absolute;
  inset:            0;
  width:            100%;
  height:           100%;
  object-fit:       cover;
  object-position:  center;
  transition:       transform 600ms var(--ease-out);
}

.split:hover .split__photo img { transform: scale(1.04); }

.split__content {
  display:          flex;
  flex-direction:   column;
  justify-content:  center;
  padding:          var(--rhythm-sm) 1.5rem;
}

.split__content h2 { margin-bottom: 1.25rem; }
.split__content p  { color: var(--ink-80); margin-bottom: 1.75rem; }
.split__content p:last-of-type { margin-bottom: 2rem; }

.split--dark .split__content {
  background:       var(--forest);
  color:            var(--cream);
}

.split--dark .split__content p  { color: var(--sand); }
.split--dark .split__content h2 { color: var(--white); }

.split--cream .split__content  { background: var(--cream); }
.split--light .split__content  { background: var(--cream-dark); }

.split__stat {
  display:          flex;
  align-items:      baseline;
  gap:              0.375rem;
  margin-bottom:    1.5rem;
}

.split__stat .num {
  font-family:      var(--font-display);
  font-size:        var(--step-3xl);
  font-weight:      800;
  color:            var(--primary);
  letter-spacing:   -0.04em;
  line-height:      1;
}

.split__stat .unit {
  font-size:        var(--step-md);
  font-weight:      700;
  color:            var(--ink-50);
}

/* ─── Split Feature Block ────────────────────────────────────────────── */
.split-feature { border-top: 1px solid var(--ink-20); }
.split-feature--dark { border-top: 1px solid var(--white-06); }

/* ─── Services Grid ──────────────────────────────────────────────────── */
.services-grid {
  padding:          var(--rhythm-sm) 1.25rem;
  background:       var(--cream);
}

.services-grid__header {
  margin-bottom:    3rem;
  max-width:        52ch;
}

.services-grid__header h2 { margin-bottom: 0.875rem; }
.services-grid__header p  { color: var(--ink-80); }

.services-grid__grid {
  display:          grid;
  grid-template-columns: 1fr;
  gap:              1px;
  background:       var(--ink-20);
  border:           1px solid var(--ink-20);
  border-radius:    var(--radius-md);
  overflow:         hidden;
}

.service-card {
  background:       var(--cream);
  padding:          2rem 1.75rem;
  display:          flex;
  flex-direction:   column;
  gap:              0.875rem;
  transition:       background 250ms var(--ease-out);
  text-decoration:  none;
  color:            inherit;
}

.service-card:hover { background: var(--cream-dark); }

.service-card:hover .service-card__arrow {
  transform:        translateX(5px);
  color:            var(--primary);
}

.service-card__icon {
  width:            44px;
  height:           44px;
  background:       var(--primary-glow);
  border-radius:    var(--radius-sm);
  display:          flex;
  align-items:      center;
  justify-content:  center;
  margin-bottom:    0.25rem;
}

.service-card__icon svg { width: 22px; height: 22px; stroke: var(--primary); fill: none; stroke-width: 1.75; }

.service-card h3 {
  font-size:        var(--step-md);
  letter-spacing:   -0.02em;
}

.service-card p {
  font-size:        var(--step-sm);
  color:            var(--ink-80);
  line-height:      1.6;
}

.service-card__arrow {
  margin-top:       auto;
  font-size:        var(--step-sm);
  font-weight:      700;
  color:            var(--primary);
  display:          flex;
  align-items:      center;
  gap:              0.375rem;
  transition:       transform 250ms var(--ease-out), color 200ms;
}

/* ─── Service Card Image ─────────────────────────────────────────────── */
.service-card-img {
  min-height:       260px;
  overflow:         hidden;
}

.service-card-img img {
  width:            100%;
  min-height:       260px;
  object-fit:       cover;
  display:          block;
}

/* ─── Split About (Guarantee) ────────────────────────────────────────── */
.split-about { background: var(--forest); }

.guarantee-list {
  margin:           1.75rem 0 2rem;
  display:          flex;
  flex-direction:   column;
  gap:              1rem;
}

.guarantee-item {
  display:          flex;
  align-items:      flex-start;
  gap:              0.875rem;
  font-size:        var(--step-sm);
  color:            var(--sand);
}

.guarantee-item__dot {
  width:            22px;
  height:           22px;
  background:       var(--primary);
  border-radius:    50%;
  flex-shrink:      0;
  margin-top:       0.2em;
  display:          flex;
  align-items:      center;
  justify-content:  center;
}

.guarantee-item__dot svg { width: 12px; height: 12px; stroke: var(--white); fill: none; stroke-width: 2.5; }

.license-block {
  display:          flex;
  flex-wrap:        wrap;
  gap:              0.625rem;
  margin-top:       1rem;
}

.license-badge {
  font-size:        var(--step-xs);
  font-weight:      700;
  letter-spacing:   0.06em;
  text-transform:   uppercase;
  color:            var(--primary);
  background:       var(--primary-dim);
  border:           1px solid var(--primary);
  border-radius:    var(--radius-sm);
  padding:          0.3rem 0.75rem;
}

/* ─── Gallery ────────────────────────────────────────────────────────── */
.gallery {
  padding:          var(--rhythm-sm) 1.25rem;
  background:       var(--ink);
}

.gallery__header {
  margin-bottom:    2.5rem;
  color:            var(--white);
}

.gallery__header h2 { margin-bottom: 0.75rem; }
.gallery__header p  { color: var(--sand); }

.gallery__grid {
  display:          grid;
  grid-template-columns: 1fr 1fr;
  gap:              4px;
  border-radius:    var(--radius-md);
  overflow:         hidden;
}

.gallery__item {
  position:         relative;
  overflow:         hidden;
  aspect-ratio:     4 / 3;
}

.gallery__item img {
  width:            100%;
  height:           100%;
  object-fit:       cover;
  transition:       transform 600ms var(--ease-out);
}

.gallery__item:hover img { transform: scale(1.06); }

.gallery__item::after {
  content:          '';
  position:         absolute;
  inset:            0;
  background:       linear-gradient(to top, #0f141180 0%, transparent 50%);
  transition:       opacity 300ms;
}

/* ─── CTA Band ───────────────────────────────────────────────────────── */
.cta-band {
  background:       var(--primary);
  padding:          3.5rem 1.25rem;
  text-align:       center;
}

.cta-band h2 {
  color:            var(--white);
  margin-bottom:    1rem;
  max-width:        20ch;
  margin-inline:    auto;
}

.cta-band p {
  color:            #ffffffcc;
  font-size:        var(--step-md);
  margin-bottom:    2.25rem;
  margin-inline:    auto;
}

.cta-band .btn--ghost {
  border-color:     var(--white);
  color:            var(--white);
}

.cta-band .btn--ghost:hover { background: #ffffff1a; }

.cta-band__actions {
  display:          flex;
  flex-wrap:        wrap;
  gap:              1rem;
  justify-content:  center;
}

.phone-band {
  background:       var(--forest);
  padding:          1.5rem 1.25rem;
  text-align:       center;
  display:          flex;
  flex-wrap:        wrap;
  align-items:      center;
  justify-content:  center;
  gap:              1rem;
}

.phone-band p {
  font-size:        var(--step-xs);
  font-weight:      700;
  letter-spacing:   0.1em;
  text-transform:   uppercase;
  color:            var(--sand);
}

.phone-band a {
  font-family:      var(--font-display);
  font-weight:      800;
  font-size:        var(--step-xl);
  letter-spacing:   -0.02em;
  color:            var(--primary);
  transition:       color 200ms;
}

.phone-band a:hover { color: var(--accent); }

/* ─── Contact ────────────────────────────────────────────────────────── */
.contact {
  display:          grid;
  grid-template-columns: 1fr;
  background:       var(--cream);
}

.contact__info {
  padding:          var(--rhythm-sm) 1.5rem;
  background:       var(--ink);
  color:            var(--cream);
}

.contact__info h2 { color: var(--white); margin-bottom: 1.25rem; }
.contact__info p  { color: var(--sand); margin-bottom: 2rem; }

.contact-detail {
  display:          flex;
  align-items:      flex-start;
  gap:              0.875rem;
  margin-bottom:    1.25rem;
  font-size:        var(--step-sm);
}

.contact-detail__label {
  font-size:        var(--step-xs);
  font-weight:      700;
  letter-spacing:   0.08em;
  text-transform:   uppercase;
  color:            var(--primary);
  display:          block;
  margin-bottom:    0.125rem;
}

.contact-detail__value { color: var(--cream); }
.contact-detail a       { color: var(--cream); transition: color 200ms; }
.contact-detail a:hover { color: var(--primary); }

.contact__form {
  padding:          var(--rhythm-sm) 1.5rem;
}

/* ─── Form ───────────────────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 1.25rem; }

.form__row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }

.form__group { display: flex; flex-direction: column; gap: 0.375rem; }

.form__group label {
  font-size:        var(--step-xs);
  font-weight:      700;
  letter-spacing:   0.08em;
  text-transform:   uppercase;
  color:            var(--ink-80);
}

.form__group input,
.form__group select,
.form__group textarea {
  font-family:      var(--font-body);
  font-size:        var(--step-base);
  color:            var(--ink);
  background:       var(--white);
  border:           1.5px solid var(--sand);
  border-radius:    var(--radius-sm);
  padding:          0.75rem 1rem;
  width:            100%;
  transition:       border-color 200ms, box-shadow 200ms;
  -webkit-appearance: none;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline:          none;
  border-color:     var(--primary);
  box-shadow:       0 0 0 3px var(--primary-dim);
}

.form__group textarea { resize: vertical; min-height: 120px; }

.form__group.has-error input,
.form__group.has-error select,
.form__group.has-error textarea { border-color: #c0392b; }

.form__error {
  font-size:        var(--step-xs);
  color:            #c0392b;
  display:          none;
}

.form__group.has-error .form__error { display: block; }

.form__success {
  display:          none;
  background:       #04945c18;
  border:           1.5px solid var(--primary);
  border-radius:    var(--radius-md);
  padding:          1.5rem;
  text-align:       center;
  color:            var(--primary-dark);
  font-weight:      600;
}

.form__success.visible { display: block; }

/* ─── Footer ─────────────────────────────────────────────────────────── */
.footer {
  background:       var(--ink);
  padding:          4rem 1.25rem 2rem;
  color:            var(--sand);
}

.footer__grid {
  display:          grid;
  grid-template-columns: 1fr;
  gap:              3rem;
  margin-bottom:    3.5rem;
}

.footer__brand h3 {
  font-family:      var(--font-display);
  font-size:        var(--step-lg);
  font-weight:      800;
  letter-spacing:   -0.03em;
  color:            var(--white);
  margin-bottom:    0.875rem;
}

.footer__brand h3 span { color: var(--primary); }

.footer__brand p {
  font-size:        var(--step-sm);
  line-height:      1.65;
  color:            var(--sand);
  margin-bottom:    1.5rem;
}

.footer__col h4 {
  font-size:        var(--step-xs);
  font-weight:      700;
  letter-spacing:   0.1em;
  text-transform:   uppercase;
  color:            var(--primary);
  margin-bottom:    1.25rem;
}

.footer__col ul { display: flex; flex-direction: column; gap: 0.75rem; }

.footer__col ul li a {
  font-size:        var(--step-sm);
  color:            var(--sand);
  transition:       color 200ms;
}

.footer__col ul li a:hover { color: var(--white); }

.footer__bottom {
  padding-top:      2rem;
  border-top:       1px solid var(--white-06);
  display:          flex;
  flex-wrap:        wrap;
  justify-content:  space-between;
  gap:              1rem;
  font-size:        var(--step-xs);
  color:            var(--ink-50);
}

.footer__bottom a {
  color:            var(--ink-50);
  transition:       color 200ms;
}

.footer__bottom a:hover { color: var(--sand); }

/* ─── Animation Utilities ────────────────────────────────────────────── */
.fade-up,
.fade-left,
.fade-right,
.scale-in {
  opacity:          0;
  transition:       opacity 700ms var(--ease-out),
                    transform 700ms var(--ease-out);
}

.fade-up    { transform: translateY(36px); }
.fade-left  { transform: translateX(-36px); }
.fade-right { transform: translateX(36px); }
.scale-in   { transform: scale(0.94); }

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible {
  opacity:          1;
  transform:        none;
}

.stagger > * {
  opacity:          0;
  transform:        translateY(24px);
  transition:       opacity 600ms var(--ease-out),
                    transform 600ms var(--ease-out);
}

.stagger.visible > *:nth-child(1)  { transition-delay:  0ms;   }
.stagger.visible > *:nth-child(2)  { transition-delay:  80ms;  }
.stagger.visible > *:nth-child(3)  { transition-delay: 160ms;  }
.stagger.visible > *:nth-child(4)  { transition-delay: 240ms;  }
.stagger.visible > *:nth-child(5)  { transition-delay: 320ms;  }
.stagger.visible > *:nth-child(6)  { transition-delay: 400ms;  }
.stagger.visible > *:nth-child(7)  { transition-delay: 480ms;  }
.stagger.visible > *:nth-child(8)  { transition-delay: 560ms;  }

.stagger.visible > * {
  opacity:          1;
  transform:        none;
}

/* ─── Marquee / Type Band ─────────────────────────────────────────────── */
.marquee {
  overflow:         hidden;
  background:       var(--primary);
  padding:          1rem 0;
  border-top:       1px solid var(--primary-dark);
  border-bottom:    1px solid var(--primary-dark);
}

.marquee__track {
  display:          flex;
  width:            max-content;
  animation:        marquee-scroll 22s linear infinite;
}

.marquee__segment {
  display:          flex;
  align-items:      center;
  white-space:      nowrap;
  gap:              2.5rem;
  padding-right:    2.5rem;
}

.marquee__word {
  font-family:      var(--font-display);
  font-weight:      800;
  font-size:        clamp(1rem, 2.5vw, 1.5rem);
  letter-spacing:   -0.02em;
  color:            var(--white);
  opacity:          0.95;
}

.marquee__dot {
  width:            6px;
  height:           6px;
  border-radius:    50%;
  background:       var(--cream);
  opacity:          0.5;
  flex-shrink:      0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Section Dividers ───────────────────────────────────────────────── */
.section-rule {
  height:           1px;
  background:       var(--ink-20);
}

.section-rule--dark { background: var(--white-06); }

/* ─── Misc ───────────────────────────────────────────────────────────── */
.visually-hidden {
  position:         absolute;
  width:            1px;
  height:           1px;
  overflow:         hidden;
  clip:             rect(0,0,0,0);
  white-space:      nowrap;
}

/* ─── 640px ──────────────────────────────────────────────────────────── */
@media (min-width: 640px) {
  .nav__links {
    display:        flex;
    position:       static;
    flex-direction: row;
    background:     none;
    padding:        0;
    gap:            2rem;
    align-items:    center;
    border:         none;
  }

  .nav__toggle { display: none; }

  .services-grid__grid { grid-template-columns: 1fr 1fr; }
  .form__row            { grid-template-columns: 1fr 1fr; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery__item:first-child {
    grid-column: span 1;
  }
}

/* ─── 900px ──────────────────────────────────────────────────────────── */
@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height:     100svh;
  }

  .hero__text  { padding: var(--rhythm) 5vw var(--rhythm) 4vw; }

  .hero__photo {
    min-height:     unset;
    position:       relative;
  }

  .hero__photo::after {
    background:     linear-gradient(to right, var(--forest) 0%, transparent 30%);
  }

  .split {
    grid-template-columns: 1fr 1fr;
  }

  .split__photo { min-height: unset; }

  .split--reverse .split__photo { order: 2; }
  .split--reverse .split__content { order: 1; }

  .split__content { padding: var(--rhythm) 5vw; }

  .services-grid {
    padding: var(--rhythm) 4vw;
  }

  .services-grid__grid { grid-template-columns: 1fr 1fr 1fr; }

  .contact {
    grid-template-columns: 1fr 1fr;
  }

  .contact__info  { padding: var(--rhythm) 5vw; }
  .contact__form  { padding: var(--rhythm) 5vw; }

  .gallery { padding: var(--rhythm) 4vw; }
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
    gap:            6px;
  }

  .gallery__item:first-child {
    grid-column:    span 2;
    aspect-ratio:   16 / 9;
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .cta-band { padding: var(--rhythm) 4vw; }
}

/* ─── 1200px ─────────────────────────────────────────────────────────── */
@media (min-width: 1200px) {
  .nav { padding: 1.25rem 3rem; }

  .split__content { padding: var(--rhythm) 6vw; }
  .hero__text     { padding: var(--rhythm) 5vw var(--rhythm) 6vw; }

  .services-grid {
    padding:        var(--rhythm) 6vw;
  }

  .services-grid__grid { grid-template-columns: repeat(4, 1fr); }

  .gallery { padding: var(--rhythm) 6vw; }

  .contact__info { padding: var(--rhythm) 6vw; }
  .contact__form { padding: var(--rhythm) 6vw; }

  .footer { padding: 6rem 6vw 2.5rem; }
}

/* ─── 480px max (mobile utility bar) ────────────────────────────────── */
@media (max-width: 480px) {
  .utility-badge { display: none; }
  .utility-left .utility-sep:nth-child(n+4) { display: none; }
}
