:root {
  --espresso: #2A1710;
  --parchment: #F7F1E6;
  --ink: #24211E;
  --jute: #B99A68;
  --olive: #566B43;
  --copper: #A86F3E;
  --cream: #EFE4D2;
  --line: #D8C7A5;
  --muted: #6E6258;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section,
main,
.page-hero,
.hero-origin {
  scroll-margin-top: 112px;
}
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(184, 154, 104, 0.16), transparent 28rem),
    linear-gradient(180deg, var(--parchment), var(--cream));
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(168, 111, 62, 0.1) 48%, transparent 56%),
    radial-gradient(circle at 86% 12%, rgba(86, 107, 67, 0.12), transparent 24rem);
  transform: translate3d(0, calc(var(--scroll-y, 0) * -0.018px), 0);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(247, 241, 230, 0.9);
  border-bottom: 1px solid rgba(216, 199, 165, 0.85);
  backdrop-filter: blur(14px);
}
.brand img { width: 178px; height: auto; }
.nav { display: flex; align-items: center; gap: 1rem; color: var(--muted); font-size: 0.88rem; }
.nav a { white-space: nowrap; }
.nav a:hover, .nav a.active { color: var(--espresso); }
.nav-cta { padding: 0.72rem 1rem; border: 1px solid var(--espresso); color: var(--espresso) !important; transition: 180ms ease; }
.nav-cta:hover { background: var(--espresso); color: var(--parchment) !important; }

.shell { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--olive);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; color: var(--espresso); font-family: "Libre Baskerville", Georgia, serif; font-weight: 400; letter-spacing: 0; }
h1 { max-width: 820px; font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.05; }
h2 { font-size: clamp(2rem, 4vw, 4.1rem); line-height: 1.06; }
h3 { font-size: 1.25rem; line-height: 1.25; }
p { color: var(--muted); }
.lede { max-width: 640px; font-size: clamp(1rem, 1.6vw, 1.2rem); }

.hero-origin {
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}
.hero-origin .hero-copy {
  padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-origin .hero-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-left: 1px solid var(--line);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowDrift 18s ease-in-out infinite alternate;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(42,23,16,0.08), rgba(42,23,16,0.2));
}
.hero-card {
  position: absolute;
  left: clamp(1rem, 4vw, 3rem);
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1rem, 4vw, 3rem);
  z-index: 2;
  padding: 1.2rem;
  background: rgba(247, 241, 230, 0.86);
  border: 1px solid rgba(216, 199, 165, 0.9);
  backdrop-filter: blur(10px);
}
.hero-card p { margin: 0; color: var(--espresso); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0.85rem 1.15rem; border: 1px solid var(--espresso); font-weight: 800; transition: 180ms ease; }
.button-primary { background: var(--espresso); color: var(--parchment); }
.button-primary:hover { background: var(--copper); border-color: var(--copper); }
.button-secondary { color: var(--espresso); background: rgba(255,255,255,0.18); }
.button-secondary:hover { background: var(--espresso); color: var(--parchment); }

.signal-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 2.4rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.signal-row div { padding: 1rem 1rem 1rem 0; border-right: 1px solid var(--line); }
.signal-row div:last-child { border-right: 0; }
.signal-row dt { color: var(--muted); font-size: 0.72rem; font-weight: 800; text-transform: uppercase; }
.signal-row dd { margin: 0.2rem 0 0; color: var(--espresso); font-weight: 800; }

.page-hero { position: relative; min-height: 58svh; display: flex; align-items: end; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: slowDrift 18s ease-in-out infinite alternate; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(247,241,230,0.94), rgba(247,241,230,0.64), rgba(42,23,16,0.2)); }
.page-hero-content { position: relative; z-index: 2; padding: clamp(4rem, 8vw, 7rem) 0; }
.page-hero .lede { max-width: 720px; }

.split { display: grid; grid-template-columns: 0.86fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.media-frame { position: relative; overflow: hidden; border: 1px solid var(--line); background: var(--cream); }
.media-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 700ms ease; }
.media-frame:hover img { transform: scale(1.045); }
.caption { margin: 0; padding: 0.9rem; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.86rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.card { min-height: 260px; padding: 1.25rem; background: rgba(247,241,230,0.9); display: flex; flex-direction: column; justify-content: space-between; transition: transform 220ms ease, background 220ms ease; }
.card:hover { transform: translateY(-4px); background: #fff8ec; }
.card.dark { background: var(--espresso); }
.card.dark h3, .card.dark p, .card.dark .tag { color: var(--parchment); }
.tag { margin: 0 0 1rem; color: var(--olive); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; }
.card p { margin: 1rem 0 0; }

.feature-band { background: var(--espresso); color: var(--parchment); position: relative; overflow: hidden; }
.feature-band::before { content: ""; position: absolute; inset: -30%; opacity: 0.09; background-image: repeating-radial-gradient(ellipse at center, transparent 0 22px, var(--parchment) 23px 24px); transform: rotate(-8deg); }
.feature-band .shell { position: relative; z-index: 1; }
.feature-band h2, .feature-band p, .feature-band .eyebrow { color: var(--parchment); }

.process-list { counter-reset: step; display: grid; gap: 0; border-top: 1px solid var(--line); }
.process-list article { display: grid; grid-template-columns: 92px 1fr; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.process-list article::before { counter-increment: step; content: counter(step, decimal-leading-zero); color: var(--olive); font-weight: 900; }
.process-list h3 { font-size: clamp(1.2rem, 2vw, 1.8rem); }
.process-list p { margin: 0.5rem 0 0; }

.map-panel { padding: clamp(1.4rem, 4vw, 3rem); border: 1px solid var(--line); background: rgba(239,228,210,0.76); position: relative; overflow: hidden; }
.map-panel::before { content: ""; position: absolute; inset: 0; opacity: 0.17; background-image: repeating-radial-gradient(ellipse at 40% 50%, transparent 0 18px, var(--jute) 19px 20px); }
.map-panel > * { position: relative; }
.origin-map {
  margin: 1.4rem 0 1.1rem;
  padding: clamp(0.8rem, 2vw, 1.25rem);
  border: 1px solid rgba(216, 199, 165, 0.94);
  background:
    linear-gradient(145deg, rgba(247, 241, 230, 0.86), rgba(239, 228, 210, 0.78)),
    repeating-linear-gradient(130deg, rgba(86,107,67,0.06) 0 1px, transparent 1px 16px);
}
.origin-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(190px, 0.85fr);
  gap: clamp(1rem, 3vw, 1.8rem);
  align-items: center;
}
.origin-map svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.map-state {
  fill: rgba(247, 241, 230, 0.74);
  stroke: var(--espresso);
  stroke-width: 3;
}
.map-neighbour {
  fill: rgba(185, 154, 104, 0.12);
  stroke: rgba(110, 98, 88, 0.38);
  stroke-width: 1.5;
}
.map-coast {
  fill: none;
  stroke: rgba(168, 111, 62, 0.72);
  stroke-width: 2;
  stroke-dasharray: 6 9;
}
.map-route {
  fill: none;
  stroke: var(--copper);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
}
.map-zone {
  fill: rgba(86, 107, 67, 0.12);
  stroke: rgba(86, 107, 67, 0.48);
  stroke-width: 2;
}
.map-pin circle:first-child {
  fill: var(--parchment);
  stroke: var(--olive);
  stroke-width: 3;
}
.map-pin.pin-base circle:first-child {
  stroke: var(--copper);
}
.map-pin text,
.map-label,
.map-note {
  fill: var(--espresso);
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}
.map-pin text {
  fill: var(--espresso);
  font-size: 15px;
  font-weight: 900;
}
.map-label {
  font-size: 19px;
}
.origin-map-legend {
  display: grid;
  gap: 0.65rem;
}
.origin-map-legend span {
  display: grid;
  grid-template-columns: 2rem 1fr;
  grid-template-areas:
    "num name"
    "num meta";
  column-gap: 0.75rem;
  align-items: center;
  padding: 0.72rem 0;
  border-top: 1px solid rgba(216, 199, 165, 0.86);
}
.origin-map-legend span:last-child {
  border-bottom: 1px solid rgba(216, 199, 165, 0.86);
}
.origin-map-legend b {
  grid-area: num;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  border: 2px solid var(--olive);
  color: var(--espresso);
  font-size: 0.82rem;
}
.origin-map-legend span:first-child b {
  border-color: var(--copper);
}
.origin-map-legend strong {
  grid-area: name;
  color: var(--espresso);
  font-size: 0.92rem;
}
.origin-map-legend em {
  grid-area: meta;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.25;
}
.marker-list { display: grid; gap: 1rem; margin-top: 1.4rem; }
.marker { padding: 1rem; border-left: 3px solid var(--olive); background: rgba(247,241,230,0.78); }
.marker strong { color: var(--espresso); }
.marker p { margin: 0.35rem 0 0; }

.cta-band { padding: clamp(3rem, 6vw, 5rem); border: 1px solid var(--line); background: rgba(247,241,230,0.8); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1.5rem; }
.cta-band p { max-width: 560px; }

.form-wrap { display: grid; grid-template-columns: 0.62fr 1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: start; }
.buyer-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: clamp(1rem, 3vw, 2rem); background: rgba(247,241,230,0.84); border: 1px solid var(--line); }
fieldset { display: contents; }
legend { grid-column: 1/-1; color: var(--espresso); font-family: "Libre Baskerville", Georgia, serif; font-size: 1.4rem; margin: 0.6rem 0 0.2rem; }
label { display: grid; gap: 0.4rem; color: var(--espresso); font-size: 0.82rem; font-weight: 800; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; background: rgba(255,255,255,0.5); color: var(--ink); font: inherit; padding: 0.8rem; }
.full { grid-column: 1/-1; }

.site-footer { display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; padding: 2rem clamp(1rem, 4vw, 3rem); border-top: 1px solid var(--line); color: var(--muted); }
.site-footer img { width: 150px; }
.site-footer p { margin: 0; justify-self: center; }
.site-footer a { color: var(--espresso); font-weight: 800; }

.reveal { animation: riseIn 700ms ease both; }
.reveal:nth-child(2) { animation-delay: 90ms; }
.reveal:nth-child(3) { animation-delay: 160ms; }
@keyframes riseIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slowDrift { from { transform: scale(1.02) translateX(-0.6%); } to { transform: scale(1.08) translateX(0.7%); } }

@media (max-width: 920px) {
  .site-header { position: static; flex-direction: column; align-items: center; }
  .nav { flex-wrap: wrap; justify-content: center; }
  .hero-origin, .split, .form-wrap, .cta-band { grid-template-columns: 1fr; }
  .hero-origin .hero-image { min-height: 420px; border-left: 0; border-top: 1px solid var(--line); }
  .signal-row, .card-grid { grid-template-columns: 1fr; }
  .signal-row div { border-right: 0; border-bottom: 1px solid var(--line); padding-right: 0; }
  .signal-row div:last-child { border-bottom: 0; }
  .buyer-form { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

@media (max-width: 640px) {
  .origin-map-grid { grid-template-columns: 1fr; }
  .origin-map-legend { gap: 0; }
}

@media (max-width: 560px) {
  .shell { width: min(342px, calc(100vw - 2rem)); }
  .brand img { width: 148px; }
  .nav { display: grid; grid-template-columns: 1fr; width: min(320px, calc(100vw - 2rem)); text-align: center; gap: 0.52rem; }
  .nav-cta { width: 100%; }
  h1 { font-size: 2rem; line-height: 1.12; }
  h2 { font-size: 2rem; }
  .hero-origin .hero-copy { padding: 3rem 1rem; }
  .hero-actions .button { width: 100%; }
  .process-list article { grid-template-columns: 50px 1fr; }
  .map-label { font-size: 18px; }
  .map-pin text { font-size: 16px; }
  .origin-map { padding: 0.7rem; }
  .origin-map-legend span { grid-template-columns: 1.8rem 1fr; column-gap: 0.6rem; }
  .origin-map-legend b { width: 1.55rem; height: 1.55rem; font-size: 0.75rem; }
}

/* Prototype refinement after screenshot QA */
.site-header {
  min-height: 86px;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand img {
  width: auto;
  height: 58px;
  max-width: 178px;
  object-fit: contain;
}

@media (max-width: 920px) {
  .site-header {
    min-height: 0;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
  }
  .brand img {
    height: 54px;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(310px, calc(100vw - 2.5rem));
  }
  .brand img {
    height: 50px;
  }
  .lede {
    font-size: 0.98rem;
  }
  .hero-origin .hero-copy {
    padding: 2.6rem 0;
  }
  .signal-row dd {
    font-size: 0.95rem;
  }
}

/* Logo and mobile column correction */
.brand img {
  width: 154px;
  height: auto;
  max-width: 154px;
}
@media (max-width: 920px) {
  .brand img {
    width: 146px;
    height: auto;
  }
}
@media (max-width: 560px) {
  .hero-origin .hero-copy {
    width: min(310px, calc(100vw - 2.5rem));
    margin: 0 auto;
    padding: 2.6rem 0;
  }
  .hero-origin h1 {
    max-width: 310px;
    font-size: 2rem;
    line-height: 1.12;
  }
  .hero-origin .lede {
    max-width: 310px;
  }
  .hero-actions {
    max-width: 310px;
  }
}

@media (max-width: 560px) {
  .hero-origin .hero-copy,
  .hero-origin h1,
  .hero-origin .lede,
  .hero-actions,
  .signal-row {
    width: min(260px, calc(100vw - 4rem));
    max-width: min(260px, calc(100vw - 4rem));
    margin-left: auto;
    margin-right: auto;
  }
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.product-tile {
  background: rgba(247,241,230,0.92);
  min-height: 390px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.product-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 700ms ease;
}
.product-tile:hover img { transform: scale(1.05); }
.product-tile div { padding: 1.1rem; }
.product-tile h3 { font-size: 1.35rem; }
.product-tile p { margin: 0.65rem 0 0; }
.product-tile .tag { margin: 0 0 0.7rem; }

.visual-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.visual-step {
  background: rgba(247,241,230,0.88);
  min-height: 270px;
  display: flex;
  flex-direction: column;
}
.visual-step img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}
.visual-step div { padding: 1rem; }
.visual-step strong { color: var(--espresso); }
.visual-step p { margin: 0.35rem 0 0; font-size: 0.92rem; }

.origin-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.origin-gallery figure {
  margin: 0;
  background: rgba(247,241,230,0.9);
  overflow: hidden;
}
.origin-gallery figure:first-child {
  grid-row: span 2;
}
.origin-gallery img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 900ms ease;
}
.origin-gallery figure:hover img {
  transform: scale(1.04);
}
.origin-gallery figcaption {
  padding: 0.95rem 1rem;
  color: var(--muted);
  background: rgba(247,241,230,0.92);
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.reliability-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.reliability-grid figure,
.reliability-grid article {
  margin: 0;
  background: rgba(247,241,230,0.9);
}
.reliability-grid img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.reliability-grid article {
  padding: clamp(1.4rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.proof-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.proof-list span {
  display: block;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  color: var(--espresso);
  font-weight: 800;
}
.proof-list span:last-child { border-bottom: 1px solid var(--line); }

@media (max-width: 920px) {
  .product-gallery,
  .visual-strip,
  .origin-gallery,
  .reliability-grid {
    grid-template-columns: 1fr;
  }
  .origin-gallery figure:first-child {
    grid-row: auto;
  }
  .reliability-grid img { min-height: 280px; }
}


.spec-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 1.5rem;
}
.spec-cards article {
  min-height: 210px;
  padding: 1.15rem;
  background: rgba(247,241,230,0.9);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.spec-cards h3 { font-size: 1.1rem; }
.spec-cards p { margin: 0.85rem 0 0; font-size: 0.95rem; }
.step-deliverable {
  margin-top: 0.85rem !important;
  color: var(--espresso);
  font-weight: 800;
}
.footer-meta {
  display: grid;
  gap: 0.35rem;
  justify-items: end;
  text-align: right;
}
.footer-meta span {
  color: var(--muted);
  font-size: 0.84rem;
}
.footer-meta a {
  color: var(--espresso);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.form-note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.94rem;
}
.form-note a { color: var(--espresso); font-weight: 800; text-decoration: underline; }
.privacy-note {
  grid-column: 1 / -1;
  margin: 0.4rem 0 0;
  padding: 0.95rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(216, 199, 165, 0.9);
}
.contact-fallback {
  margin-top: 1.6rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  background: rgba(247,241,230,0.82);
}
.contact-fallback h3 {
  font-size: 1.12rem;
}
.contact-fallback p {
  margin: 0.7rem 0 0;
}
.contact-fallback a {
  color: var(--espresso);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 1.5rem;
  background: var(--line);
  border: 1px solid var(--line);
}
.trust-strip span {
  padding: 0.9rem 1rem;
  background: rgba(247,241,230,0.9);
  color: var(--espresso);
  font-size: 0.9rem;
  font-weight: 800;
}
.form-success {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  background: rgba(247,241,230,0.9);
}
.form-success[hidden] { display: none; }
@media (max-width: 920px) {
  .spec-cards { grid-template-columns: 1fr 1fr; }
  .footer-meta { justify-items: center; text-align: center; }
  .trust-strip { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .spec-cards { grid-template-columns: 1fr; }
}

/* Premium motion layer */
.site-header {
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}
.site-header.is-scrolled {
  background: rgba(247, 241, 230, 0.96);
  border-color: rgba(216, 199, 165, 0.98);
  box-shadow: 0 14px 40px rgba(42, 23, 16, 0.08);
}
.nav a {
  position: relative;
  transition: color 220ms ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.38rem;
  height: 1px;
  background: currentColor;
  opacity: 0.58;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }
.nav .nav-cta::after { display: none; }

.button {
  position: relative;
  overflow: hidden;
  transition: color 240ms ease, background 240ms ease, border-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 32%, rgba(255, 255, 255, 0.2) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 650ms ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(42, 23, 16, 0.12);
}
.button:hover::before { transform: translateX(120%); }

.hero-image img,
.page-hero img {
  animation-duration: 24s;
  transform: scale(1.035) translate3d(0, calc(var(--motion-offset, 0) * 0.032px), 0);
  will-change: transform;
}
.media-frame,
.product-tile,
.origin-gallery figure {
  position: relative;
}
.media-frame::after,
.product-tile::after,
.origin-gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 42%, rgba(247, 241, 230, 0.18) 50%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 900ms ease;
}
.media-frame:hover::after,
.product-tile:hover::after,
.origin-gallery figure:hover::after { transform: translateX(120%); }
.media-frame img,
.product-tile img,
.origin-gallery img,
.visual-step img {
  transition: transform 900ms cubic-bezier(.2,.8,.2,1), filter 900ms ease;
}
.media-frame:hover img,
.product-tile:hover img,
.origin-gallery figure:hover img,
.visual-step:hover img {
  transform: scale(1.055);
  filter: saturate(1.03) contrast(1.02);
}

.card,
.spec-cards article,
.visual-step,
.product-tile,
.marker,
.proof-list span {
  transition: transform 320ms ease, background 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}
.card:hover,
.spec-cards article:hover,
.visual-step:hover,
.product-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(42, 23, 16, 0.08);
}
.marker:hover,
.proof-list span:hover {
  transform: translateX(4px);
}
.proof-list span:hover {
  border-color: rgba(86, 107, 67, 0.46);
}

.feature-band::before {
  transform: rotate(-8deg) translate3d(calc(var(--motion-offset, 0) * -0.015px), calc(var(--motion-offset, 0) * 0.02px), 0);
  animation: contourBreath 18s ease-in-out infinite alternate;
}
.map-panel::before {
  transform: translate3d(calc(var(--motion-offset, 0) * -0.01px), calc(var(--motion-offset, 0) * 0.012px), 0);
}
.cta-band {
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background: linear-gradient(115deg, transparent 0 55%, rgba(185, 154, 104, 0.14) 55% 65%, transparent 65%);
  transform: translateX(-28%);
  transition: transform 900ms ease;
}
.cta-band:hover::before { transform: translateX(12%); }
.cta-band > * { position: relative; }

input,
select,
textarea {
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--olive);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 0 0 3px rgba(86, 107, 67, 0.12);
}

.motion-ready .motion-item {
  opacity: 1;
  transform: none;
  filter: none;
  transition:
    opacity 760ms cubic-bezier(.2,.8,.2,1),
    transform 760ms cubic-bezier(.2,.8,.2,1),
    filter 760ms ease;
  transition-delay: var(--motion-delay, 0ms);
}
.motion-ready .motion-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.motion-ready .motion-line {
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 900ms cubic-bezier(.2,.8,.2,1);
}
.motion-ready .motion-line.is-visible { transform: scaleX(1); }
@keyframes contourBreath {
  from { opacity: 0.06; }
  to { opacity: 0.13; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .motion-ready .motion-item {
    opacity: 1;
    transform: none;
    filter: none;
  }
  body::before,
  .hero-image img,
  .page-hero img,
  .feature-band::before,
  .map-panel::before {
    transform: none !important;
  }
}
