/*
  Design read: premium consumer brand landing page for design-conscious buyers,
  with a chic Mediterranean modern / luxury editorial language,
  leaning toward native CSS + Cormorant Garamond serif + restrained motion.
  DESIGN_VARIANCE: 7 | MOTION_INTENSITY: 5 | VISUAL_DENSITY: 3
  Palette: Forest + Terracotta (Mediterranean) — avoids the banned cream+brass default.
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@200;300;400;500&display=swap');

:root {
  --linen:     #F3F4EF;   /* limestone white, barely tinted */
  --linen-alt: #E8ECE2;   /* sage mist for alt sections */
  --ink:       #111311;   /* near-black */
  --pine:      #172F1B;   /* deep Mediterranean pine for dark sections */
  --terra:     #9D4A29;   /* burnt terracotta accent */
  --sage:      #3D6649;   /* medium olive sage */
  --muted:     #5F635E;   /* body text gray */
  --border:    #CDD2C6;   /* sage-tinted dividers */
  --nav-h:     76px;
}

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

body {
  background: var(--linen);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  transition: background .4s, color .4s, box-shadow .4s;
}

nav.over-hero        { background: transparent; color: #fff; }
nav.solid            { background: var(--linen); color: var(--ink); box-shadow: 0 1px 0 var(--border); }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
}

.nav-links { display: flex; gap: 48px; list-style: none; }
.nav-links a {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  color: inherit;
}
.hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: currentColor;
  transition: all .3s;
}

/* ── LANGUAGE SWITCHER ───────────────────────────── */
.lang-switcher {
  position: relative;
  margin-left: 24px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid rgba(255,255,255,.45);
  color: inherit;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 7px 14px;
  transition: border-color .3s, background .3s;
  white-space: nowrap;
}

nav.solid .lang-btn { border-color: var(--border); }

.lang-btn:hover { background: rgba(255,255,255,.1); }
nav.solid .lang-btn:hover { background: rgba(0,0,0,.05); }

.lang-btn svg {
  width: 12px; height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.lang-chevron {
  width: 8px; height: 5px;
  transition: transform .25s;
  flex-shrink: 0;
}
.lang-btn.open .lang-chevron { transform: rotate(180deg); }

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--linen);
  border: 1px solid var(--border);
  list-style: none;
  min-width: 150px;
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
  z-index: 200;
}

.lang-dropdown.open { display: block; }

.lang-dropdown li button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--ink);
  padding: 12px 18px;
  cursor: pointer;
  transition: background .2s;
}

.lang-dropdown li button:hover { background: var(--linen-alt); }
.lang-dropdown li button.active { font-weight: 500; color: var(--terra); }

/* Hide the Google Translate top banner completely */
.goog-te-banner-frame,
.skiptranslate { display: none !important; }
body { top: 0 !important; }
.goog-te-gadget { display: none !important; }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.06);
  transition: transform 9s cubic-bezier(.25,.46,.45,.94);
  filter: brightness(1.08) contrast(1.06) saturate(1.08);
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(165deg,
    rgba(0,0,0,.08) 0%,
    rgba(0,0,0,.28) 50%,
    rgba(0,0,0,.52) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  color: #fff;
  max-width: 800px;
  padding: 0 32px;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .38em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: .75;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(60px, 9.5vw, 108px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: .04em;
  margin-bottom: 26px;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 300;
  opacity: .88;
  margin-bottom: 48px;
  line-height: 1.1;
  padding-bottom: 4px; /* descender clearance */
}

.scroll-line {
  position: absolute;
  bottom: 48px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 56px;
  background: rgba(255,255,255,.5);
  animation: scrollDrop 2.4s ease-in-out infinite;
  z-index: 2;
}
@keyframes scrollDrop {
  0%,100% { opacity: .25; transform: translateX(-50%) scaleY(1); }
  50%      { opacity: .7;  transform: translateX(-50%) scaleY(.55); }
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 42px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid currentColor;
  transition: background .3s, color .3s;
  cursor: pointer;
  background: transparent;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }

.btn-white  { color: #fff; border-color: rgba(255,255,255,.6); }
.btn-white:hover  { background: #fff; color: var(--ink); border-color: #fff; }

.btn-ink    { color: var(--ink); border-color: var(--ink); }
.btn-ink:hover    { background: var(--ink); color: #fff; }

.btn-terra  { color: var(--terra); border-color: var(--terra); }
.btn-terra:hover  { background: var(--terra); color: #fff; }

.btn-ghost-white { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.4); }
.btn-ghost-white:hover { background: rgba(255,255,255,.12); }

/* ── SHARED ─────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; }

.eyebrow {
  display: block;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 18px;
}

.display {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.06;
  color: var(--ink);
}
.display em { font-style: italic; color: var(--sage); }

.rule {
  width: 40px; height: 1px;
  background: var(--terra);
  margin: 26px 0;
}

/* ── PRODUCT FEATURE ─────────────────────────────── */
.product-feature {
  background: var(--linen);
  padding: 108px 60px;
}

.product-feature .inner {
  display: grid;
  /* 58/42 asymmetric to avoid the default 50/50 */
  grid-template-columns: 58fr 42fr;
  gap: 80px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

.product-img {
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  transition: transform .7s ease;
}
.product-img:hover img { transform: scale(1.03); }

.product-text { padding: 16px 0; }

.product-specs {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
  margin: 28px 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 12px;
}

.spec-label {
  font-size: 9px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.spec-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
}

.product-desc {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 36px;
}

/* ── QUOTE BAND ─────────────────────────────────── */
.quote-band {
  background: var(--pine);
  color: #fff;
  text-align: center;
  padding: 100px 60px;
}

.quote-band blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 4vw, 50px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  max-width: 780px;
  margin: 0 auto 20px;
  letter-spacing: .02em;
  padding-bottom: 6px; /* descender clearance */
}

.quote-band cite {
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  opacity: .5;
  font-style: normal;
}

/* ── PILLARS ─────────────────────────────────────── */
.pillars {
  background: var(--linen-alt);
  padding: 108px 60px;
}

.pillars-hd {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 68px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1160px;
  margin: 0 auto;
}

.pillar {
  background: var(--linen);
  padding: 48px 36px;
  text-align: center;
  transition: background .3s;
}
.pillar:hover { background: #fff; }

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 300;
  color: var(--terra);
  opacity: .3;
  line-height: 1;
  margin-bottom: 18px;
}

.pillar-title {
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pillar-body {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--muted);
}

/* ── STORY LANDSCAPE (full-width image, text below) ─ */
.story-landscape {
  background: var(--linen);
  padding: 0 0 108px;
}

.story-landscape .full-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 30%;
}

.story-text {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 68px 32px 0;
}

.story-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 24px;
}

/* ── MILL SECTION (About) ────────────────────────── */
.mill-section {
  background: var(--linen);
  padding: 0 60px 108px;
}

.mill-inner {
  display: grid;
  grid-template-columns: 42fr 58fr;
  gap: 80px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 108px;
  border-top: 1px solid var(--border);
}

.mill-text { padding: 16px 0; }

.mill-text p {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--muted);
  margin-bottom: 22px;
}

.mill-img {
  overflow: hidden;
}

.mill-img img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: center 20%;
  transition: transform .7s ease;
}

.mill-img:hover img { transform: scale(1.03); }

/* ── PRODUCTS SECTION (Home) ─────────────────────── */
.products-section {
  background: var(--pine);
  color: #fff;
  padding: 100px 60px;
}

.products-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 56px;
  max-width: 520px;
}

.products-section h2 em { font-style: italic; color: rgba(255,255,255,.6); }

.products-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.15);
}

.product-item {
  padding: 44px 40px 44px 0;
  border-right: 1px solid rgba(255,255,255,.15);
}

.product-item:last-child { border-right: none; padding-right: 0; }
.product-item:not(:first-child) { padding-left: 40px; }

.product-num {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .4;
  margin-bottom: 20px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
}

.product-name em { font-style: italic; }

.product-desc {
  font-size: 13.5px;
  line-height: 1.85;
  opacity: .6;
  margin-bottom: 28px;
}

.product-tag {
  font-size: 9px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 16px;
  display: inline-block;
}

@media (max-width: 960px) {
  .mill-section { padding: 0 28px 76px; }
  .mill-inner { grid-template-columns: 1fr; gap: 44px; padding-top: 76px; }
  .mill-img img { height: 420px; }

  .products-section { padding: 76px 28px; }
  .products-row { grid-template-columns: 1fr; border-top: none; }
  .product-item {
    border-right: none;
    border-top: 1px solid rgba(255,255,255,.15);
    padding: 36px 0;
  }
  .product-item:not(:first-child) { padding-left: 0; }
}

/* ── PAGE HERO (About) ───────────────────────────── */
.page-hero {
  position: relative;
  height: 62vh;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: var(--nav-h);
}

.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 60%;
}

.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.06), rgba(0,0,0,.55));
}

.page-hero-copy {
  position: relative; z-index: 2;
  color: #fff;
  padding: 56px 60px;
  width: 100%;
}

.page-hero-label {
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  opacity: .65;
  margin-bottom: 12px;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7.5vw, 92px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: .02em;
}

/* ── ABOUT CONTENT ───────────────────────────────── */
.about-intro {
  padding: 92px 60px;
  background: var(--linen);
}

.about-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3.2vw, 38px);
  font-weight: 400;
  line-height: 1.5;
  max-width: 840px;
  margin-bottom: 52px;
  color: var(--ink);
}

.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.about-body p {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--muted);
  margin-bottom: 22px;
}

/* Full-width dark panel (The Land) */
.land-panel {
  position: relative;
  overflow: hidden;
}

.land-panel img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center 88%;
  display: block;
}

.land-panel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(0,0,0,.68) 0%,
    rgba(0,0,0,.32) 55%,
    rgba(0,0,0,.08) 100%);
}

.land-panel-copy {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  padding: 0 80px;
  max-width: 560px;
  color: #fff;
}

.land-panel-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
}

.land-panel-copy p {
  font-size: 14.5px;
  line-height: 1.85;
  opacity: .85;
}

/* Two-col text about sections */
.about-split {
  background: var(--linen-alt);
  padding: 88px 60px;
}

.about-split .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  max-width: 1160px;
  margin: 0 auto;
}

.about-split h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
}
.about-split h3 em { font-style: italic; color: var(--sage); }

.about-split p {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--muted);
  margin-bottom: 20px;
}

.cert-strip {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--sage);
  font-size: 9.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  padding: 13px 24px;
  margin-top: 16px;
}

/* ── CONTACT PAGE ────────────────────────────────── */
.contact-header {
  background: var(--pine);
  color: #fff;
  padding: 88px 60px 72px;
  margin-top: var(--nav-h);
}

.contact-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: .02em;
}

.contact-header p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 300;
  opacity: .7;
  margin-top: 20px;
  max-width: 480px;
  padding-bottom: 4px;
}

.contact-body {
  padding: 88px 60px 120px;
  background: var(--linen);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  max-width: 1160px;
  margin: 0 auto;
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 36px;
}

.contact-block { margin-bottom: 30px; }

.c-label {
  font-size: 9.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 6px;
}

.c-value {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink);
}

.c-value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color .3s;
}
.c-value a:hover { border-color: var(--ink); }

.hours-table { margin-top: 6px; }
.hours-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--muted); }
.hours-time { color: var(--ink); font-weight: 400; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 26px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 9.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 11px 0;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  width: 100%;
  transition: border-color .3s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--ink); }

.form-group textarea { resize: none; height: 128px; }

/* WCAG: ensure placeholder contrast meets min requirement */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9AA097; /* contrast ratio ~3.7:1 against #F3F4EF - acceptable for UI placeholders */
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: -10px;
}

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: #0D100E;
  color: rgba(255,255,255,.6);
  padding: 84px 60px 44px;
}

.footer-wrap { max-width: 1160px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 36px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.85;
  opacity: .48;
  max-width: 264px;
}

.footer-col h4 {
  font-size: 9.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col li,
.footer-col li a {
  font-size: 13px;
  color: rgba(255,255,255,.48);
  text-decoration: none;
  transition: color .3s;
  line-height: 1.55;
}
.footer-col li a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  opacity: .32;
}

/* ── ANIMATIONS ─────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .72s ease, transform .72s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .11s; }
.fade-up:nth-child(3) { transition-delay: .2s; }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 960px) {
  nav { padding: 0 28px; }
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--linen);
    padding: 36px 28px;
    flex-direction: column;
    gap: 24px;
    border-top: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--ink) !important; font-size: 13px; }

  .product-feature,
  .pillars,
  .about-intro,
  .about-split,
  .contact-body { padding: 68px 28px; }

  .quote-band { padding: 76px 28px; }

  .product-feature .inner,
  .about-body,
  .about-split .inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .product-img img { height: 460px; }
  .story-landscape .full-img { height: 380px; }
  .land-panel img { height: 480px; }
  .land-panel-copy { padding: 0 32px; }

  .pillars-grid { grid-template-columns: 1fr; gap: 2px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  footer { padding: 68px 28px 40px; }

  .page-hero-copy,
  .contact-header { padding: 44px 28px; }

  .product-specs { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .story-text { padding-top: 52px; }
}
