/* ============================================================
   M&C Elite — Landscape Gardening, Port Macquarie
   Editorial · Organic · Coastal
   ============================================================ */

:root {
  --cream:     #F6F1E8;
  --cream-2:   #EFE8DA;
  --sand:      #E8DFCB;
  --forest:    #1F2A1E;
  --forest-2:  #2C3B2A;
  --moss:      #4F5D47;
  --clay:      #C66A44;
  --clay-hov:  #B55630;
  --ink:       #0E130D;
  --line:      #D6CCB4;

  --radius-sm: 4px;
  --radius:    14px;
  --radius-lg: 24px;

  --t-fast: 220ms cubic-bezier(.22,.61,.36,1);
  --t:      380ms cubic-bezier(.22,.61,.36,1);
  --t-slow: 900ms cubic-bezier(.22,.61,.36,1);

  --serif: "Fraunces", ui-serif, Georgia, serif;
  --sans:  "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

::selection { background: var(--forest); color: var(--cream); }

/* ============ Type ============ */
.h-serif, h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 420;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0;
  font-variation-settings: "opsz" 120, "SOFT" 50, "WONK" 0;
}

.h-serif em, h1 em, h2 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 90, "WONK" 1;
  color: var(--clay);
}

.section-kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  margin: 6px 0 0;
}

.section-kicker.light { color: rgba(246,241,232,.6); }
.section-index {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--clay);
  letter-spacing: 0.04em;
}
.section-index.light { color: rgba(198,106,68,.9); }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--clay);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(198,106,68,.55); }
  50%     { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(198,106,68,0); }
}

.lede {
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.45;
  color: var(--forest-2);
  max-width: 40ch;
  margin: 20px 0 32px;
  font-weight: 400;
}

/* ============ Nav ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--cream) 72%, transparent);
  border-bottom: 1px solid transparent;
  transition: padding var(--t), border-color var(--t), background var(--t);
}
.nav.is-scrolled {
  padding: 12px 40px;
  border-bottom-color: var(--line);
}

.mark {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.mark .amp { color: var(--clay); font-style: italic; margin: 0 1px; }
.mark svg { color: var(--forest); transition: transform var(--t); }
.mark:hover svg { transform: rotate(-8deg) scale(1.1); }

.nav-links {
  display: flex; gap: 32px;
  list-style: none; padding: 0; margin: 0;
  font-size: 15px;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  color: var(--forest-2);
  transition: color var(--t-fast);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--clay);
  transform: scaleX(0); transform-origin: right center;
  transition: transform var(--t);
}
.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left center; }

.cta-mini {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: background var(--t), transform var(--t), gap var(--t);
}
.cta-mini:hover { background: var(--clay); gap: 12px; }
.cta-mini svg { transition: transform var(--t); }
.cta-mini:hover svg { transform: translate(2px,-2px); }

.nav-end { display: inline-flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--forest);
  margin: 5px auto;
  border-radius: 1px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 64px; left: 0; right: 0;
  z-index: 55;
  background: color-mix(in srgb, var(--cream) 96%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 14px 24px 28px;
  display: flex; flex-direction: column;
  font-family: var(--serif);
  font-size: 22px;
}
.mobile-nav a {
  padding: 16px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 60%, transparent);
  color: var(--forest);
  letter-spacing: -0.01em;
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav .mobile-nav-call {
  margin-top: 12px;
  padding: 14px 18px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 999px;
  text-align: center;
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0;
}
.mobile-nav[hidden] { display: none; }

@media (max-width: 760px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .cta-mini { padding: 8px 14px; font-size: 13px; }
}
@media (max-width: 420px) {
  .cta-mini-num { display: none; }
  .cta-mini { padding: 8px 12px; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 140px 40px 80px;
  display: flex; flex-direction: column; justify-content: center;
  color: var(--cream);
  overflow: hidden;
}

.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.08);
  animation: kenburns 16s ease-out forwards;
}
@keyframes kenburns {
  0%   { transform: scale(1.08) translate3d(0,0,0); }
  100% { transform: scale(1.15) translate3d(-2%,-2%,0); }
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(15,22,14,.78) 0%, rgba(15,22,14,.55) 35%, rgba(15,22,14,.18) 65%, rgba(15,22,14,.28) 100%),
    linear-gradient(to top, rgba(15,22,14,.35) 0%, transparent 40%);
}
.hero-grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='5'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  width: 100%;
}

.hero .display {
  font-family: var(--serif);
  font-size: clamp(56px, 8.2vw, 128px);
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  font-weight: 380;
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin: 18px 0 28px;
  color: var(--cream);
}
.hero .display em { color: var(--clay); }
.hero .line { display: block; overflow: hidden; }
.hero .line > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}
.hero .display.in .line:nth-child(1) > span { animation: rise .95s cubic-bezier(.22,.61,.36,1) .15s forwards; }
.hero .display.in .line:nth-child(2) > span { animation: rise .95s cubic-bezier(.22,.61,.36,1) .3s forwards; }
.hero .display.in .line:nth-child(3) > span { animation: rise .95s cubic-bezier(.22,.61,.36,1) .45s forwards; }
@keyframes rise {
  to { transform: translateY(0); opacity: 1; }
}

.leaf {
  display: inline-block;
  color: var(--clay);
  transform: translateY(-10px) rotate(-14deg);
  opacity: 0;
  margin-left: 12px;
  animation: leafIn 1.1s cubic-bezier(.22,.61,.36,1) .95s forwards;
}
@keyframes leafIn {
  0%   { transform: translateY(-20px) rotate(-14deg); opacity: 0; }
  60%  { transform: translateY(0) rotate(8deg); opacity: 1; }
  100% { transform: translateY(-4px) rotate(-6deg); opacity: 1; }
}

.hero .lede {
  color: rgba(246,241,232,.9);
  max-width: 38ch;
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--t);
  white-space: nowrap;
}
.btn .arrow {
  transition: transform var(--t);
  display: inline-block;
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--clay);
  color: var(--cream);
}
.btn-primary:hover { background: var(--clay-hov); transform: translateY(-1px); }

.btn-ghost {
  color: var(--cream);
  border-color: rgba(246,241,232,.28);
  background: rgba(246,241,232,.06);
}
.btn-ghost:hover {
  background: rgba(246,241,232,.14);
  border-color: rgba(246,241,232,.55);
}

.btn-cream {
  background: var(--cream);
  color: var(--forest);
}
.btn-cream:hover { background: #fff; transform: translateY(-1px); }

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: rgba(246,241,232,.4);
}
.btn-outline-cream:hover {
  background: rgba(246,241,232,.1);
  border-color: var(--cream);
}

.hero-proof {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 16px;
  background: rgba(15,22,14,.38);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(246,241,232,.18);
  border-radius: 999px;
  font-size: 14px;
  color: rgba(246,241,232,.92);
}
.hero-proof strong { color: var(--cream); font-weight: 600; }
.stars { display: inline-flex; gap: 2px; color: var(--clay); }

.scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 38px;
  border-radius: 22px;
  border: 1.5px solid rgba(246,241,232,.55);
  background: transparent;
  cursor: pointer; z-index: 3;
}
.scroll-hint span {
  position: absolute; top: 6px; left: 50%;
  width: 2px; height: 8px;
  background: var(--cream); border-radius: 2px;
  transform: translateX(-50%);
  animation: drip 1.8s ease-in-out infinite;
}
@keyframes drip {
  0%,100% { transform: translate(-50%, 0); opacity: 1; }
  50%     { transform: translate(-50%, 14px); opacity: 0; }
}

/* ============ Marquee ============ */
.marquee {
  background: var(--forest);
  color: var(--cream);
  overflow: hidden;
  border-top: 1px solid var(--forest-2);
  border-bottom: 1px solid var(--forest-2);
  padding: 18px 0;
}
.marquee-track {
  display: flex; gap: 32px; white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 38px);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -0.01em;
  animation: slide 40s linear infinite;
}
.marquee-track span:nth-child(odd) { color: var(--cream); font-style: italic; }
.marquee-track span:nth-child(even) { color: var(--clay); }
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ Sections ============ */
.section {
  padding: 120px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.sec-head {
  margin-bottom: 72px;
  max-width: 760px;
}
.sec-head h2 {
  font-size: clamp(36px, 4.8vw, 68px);
  margin: 10px 0 14px;
  color: var(--forest);
}
.sec-sub {
  color: var(--moss);
  font-size: 17px;
  max-width: 50ch;
  margin: 0;
}

/* ============ Story ============ */
.story { padding-top: 140px; }
.story-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
}
.story-side .sticky {
  position: sticky; top: 120px;
}

.story-body h2 {
  font-size: clamp(34px, 4.3vw, 60px);
  max-width: 16ch;
  margin: 20px 0 36px;
  color: var(--forest);
}
.story-body p {
  font-size: 19px;
  line-height: 1.6;
  max-width: 58ch;
  color: var(--forest-2);
  margin: 0 0 22px;
}
.story-body strong { color: var(--forest); font-weight: 500; }

.marks {
  list-style: none; padding: 0; margin: 56px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}
.marks li {
  display: flex; flex-direction: column; gap: 6px;
}
.marks .n {
  font-family: var(--serif);
  font-size: clamp(40px, 4.4vw, 58px);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  line-height: 1;
  color: var(--forest);
}
.marks .n sup {
  font-size: 0.4em;
  color: var(--clay);
  vertical-align: super;
  margin-left: 2px;
}
.marks .l {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
}

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 30px; }
  .story-side .sticky { position: static; }
  .marks { grid-template-columns: 1fr 1fr; }
}

/* ============ Services ============ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.svc {
  padding: 50px 44px;
  background: var(--cream);
  position: relative;
  transition: background var(--t);
}
.svc:hover { background: var(--cream-2); }
.svc:hover .svc-num { color: var(--clay); transform: translateY(-3px); }

.svc-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--moss);
  font-size: 16px;
  margin-bottom: 36px;
  transition: color var(--t), transform var(--t);
}
.svc h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 36px);
  font-variation-settings: "opsz" 120, "SOFT" 50;
  margin: 0 0 16px;
  color: var(--forest);
  letter-spacing: -0.02em;
}
.svc p {
  color: var(--forest-2);
  margin: 0 0 22px;
  max-width: 48ch;
}
.svc-tags {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.svc-tags li {
  font-size: 13px;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--moss);
  transition: all var(--t-fast);
}
.svc:hover .svc-tags li { border-color: var(--moss); color: var(--forest-2); }

@media (max-width: 760px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc { padding: 40px 28px; }
}

/* ============ Gallery ============ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 10px;
}
.g-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
  cursor: zoom-in;
  grid-row: span 2;
}
.g-tall  { grid-row: span 3; }
.g-wide  { grid-column: span 2; grid-row: span 2; }
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.22,.61,.36,1), filter var(--t);
}
.g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,22,14,.5) 0%, rgba(15,22,14,0) 40%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}
.g-item:hover img { transform: scale(1.06); }
.g-item:hover::after { opacity: 1; }
.g-item figcaption {
  position: absolute;
  left: 16px; bottom: 14px;
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t), transform var(--t);
  z-index: 2;
}
.g-item:hover figcaption { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
  .g-wide { grid-column: span 2; }
}
@media (max-width: 720px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 2; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(8,12,8,.92);
  backdrop-filter: blur(18px);
  display: grid; place-items: center;
  z-index: 100;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  transform: scale(.96);
  transition: transform var(--t);
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 28px; right: 32px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(246,241,232,.12);
  border: 1px solid rgba(246,241,232,.28);
  color: var(--cream);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background var(--t);
}
.lightbox-close:hover { background: rgba(246,241,232,.22); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(246,241,232,.12);
  border: 1px solid rgba(246,241,232,.28);
  color: var(--cream);
  cursor: pointer; display: grid; place-items: center;
  transition: background var(--t);
}
.lightbox-nav:hover { background: rgba(246,241,232,.22); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ============ Reviews ============ */
.reviews { background: var(--cream); }
.rev-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
  max-width: 1280px;
}
.rev-head h2 {
  font-size: clamp(36px, 4.6vw, 62px);
  max-width: 14ch;
  color: var(--forest);
  margin: 10px 0 0;
}
.rev-badge {
  display: flex; flex-direction: column; gap: 10px;
  padding: 18px 22px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 220px;
}
.rev-g { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 14px; color: var(--forest-2); }
.rev-score { display: flex; align-items: center; gap: 10px; }
.rev-score strong {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  color: var(--forest);
}
.rev-score span { font-size: 13px; color: var(--moss); }

.rev-grid {
  columns: 3;
  column-gap: 24px;
}
.rev {
  break-inside: avoid;
  margin: 0 0 24px;
  padding: 28px 28px 22px;
  background: var(--cream-2);
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: border-color var(--t), transform var(--t);
  position: relative;
}
.rev::before {
  content: "“";
  position: absolute; top: -8px; left: 20px;
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  color: var(--clay);
  font-style: italic;
}
.rev:hover {
  border-color: var(--clay);
  transform: translateY(-2px);
}
.rev p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
  color: var(--forest);
  margin: 6px 0 18px;
  font-variation-settings: "opsz" 120, "SOFT" 30;
}
.rev em {
  font-style: italic;
  color: var(--clay);
}
.rev footer {
  font-size: 13px;
  color: var(--moss);
  letter-spacing: 0.03em;
}

@media (max-width: 1000px) { .rev-grid { columns: 2; } }
@media (max-width: 640px)  {
  .rev-grid { columns: 1; }
  .rev-head { grid-template-columns: 1fr; }
}

/* ============ Contact ============ */
.contact {
  position: relative;
  padding: 60px 40px 120px;
  max-width: none;
}
.contact-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 40px;
  text-align: center;
  color: var(--cream);
  background: var(--forest);
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
}
.contact-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 50% 0%, rgba(198,106,68,.3) 0%, transparent 60%),
    radial-gradient(900px 700px at 100% 100%, rgba(79,93,71,.55) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.contact-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='8'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/></svg>");
  mix-blend-mode: overlay;
  opacity: .18;
}
.contact-inner > *:not(.contact-bg) { position: relative; z-index: 1; }

.contact .h-serif {
  font-size: clamp(44px, 6vw, 90px);
  margin: 16px 0 18px;
}
.contact .h-serif em { color: var(--clay); }
.contact .lede {
  color: rgba(246,241,232,.88);
  max-width: 36ch;
  margin: 0 auto 36px;
}

.contact-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 60px;
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 32px 0 0;
  border-top: 1px solid rgba(246,241,232,.18);
  margin: 0;
  max-width: 700px;
  margin-left: auto; margin-right: auto;
}
.contact-meta > div { display: flex; flex-direction: column; gap: 6px; }
.contact-meta dt {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,241,232,.55);
}
.contact-meta dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--cream);
  font-variation-settings: "opsz" 100, "SOFT" 20;
}

@media (max-width: 720px) {
  .contact-meta { grid-template-columns: 1fr; gap: 22px; text-align: left; padding: 28px 0 0; }
}

/* ============ Footer ============ */
.foot {
  padding: 40px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.foot-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.mark-foot { font-size: 18px; }
.foot-copy, .foot-credit {
  margin: 0;
  font-size: 13px;
  color: var(--moss);
}
.foot-credit a { color: var(--clay); }
.foot-credit a:hover { text-decoration: underline; }

/* ============ Reveals ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms cubic-bezier(.22,.61,.36,1), transform 800ms cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* staggered reveal children for hero */
.hero .reveal { transition-delay: 0ms; }
.hero .reveal:nth-of-type(2) { transition-delay: 80ms; }
.hero .hero-actions.reveal { transition-delay: 160ms; }
.hero .hero-proof.reveal { transition-delay: 220ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero .line > span { transform: none; opacity: 1; }
  .leaf { opacity: 1; transform: none; }
  .hero-media img { animation: none; transform: none; }
}
