/* ==========================================================================
   JOURNEYS END VINEYARDS LTD — Stylesheet
   Palette: charcoal / ivory / burgundy / olive / beige (vineyard + corporate)
   ========================================================================== */

:root {
  /* Palette */
  --charcoal: #1a1714;
  --charcoal-soft: #262220;
  --ivory: #f6f1e7;
  --cream: #efe7d8;
  --beige: #d8c9ac;
  --beige-deep: #b79f79;
  --burgundy: #5c1a26;
  --burgundy-deep: #430f1a;
  --olive: #6b6f53;
  --olive-deep: #4d5039;
  --ink: #1a1714;
  --paper: #faf7f0;
  --line: rgba(26, 23, 20, 0.12);
  --line-on-dark: rgba(246, 241, 231, 0.18);

  /* Type */
  --font-serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-s: 320ms;
  --dur-m: 620ms;
  --dur-l: 900ms;

  color-scheme: light;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 32px;
}

@media (max-width: 640px) {
  .container { padding-inline: 20px; }
}

/* Visually hidden but accessible */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0; padding: 0; margin: -1px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--ink);
  color: var(--ivory);
  padding: 12px 20px;
  z-index: 200;
  border-radius: 2px;
  transition: top var(--dur-s) var(--ease);
}
.skip-link:focus { top: 16px; }

:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 3px;
}

/* ---------- Type scale ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--burgundy);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--beige); }
.eyebrow.on-dark::before { background: var(--beige-deep); }

.h-display {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.06;
  font-size: clamp(2.6rem, 5.2vw, 5.1rem);
}

.h-section {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.12;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
}

.h-card {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.25;
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.65;
  color: rgba(26, 23, 20, 0.72);
  max-width: 46ch;
}

.lede.on-dark { color: rgba(246, 241, 231, 0.78); }

.body-text {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(26, 23, 20, 0.75);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background var(--dur-s) var(--ease), color var(--dur-s) var(--ease), border-color var(--dur-s) var(--ease), transform var(--dur-s) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--burgundy); border-color: var(--burgundy); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }

.btn-on-dark {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}
.btn-on-dark:hover { background: var(--beige); border-color: var(--beige); }

.btn-outline-dark {
  background: transparent;
  color: var(--ivory);
  border-color: var(--line-on-dark);
}
.btn-outline-dark:hover { border-color: var(--ivory); }

.text-link {
  position: relative;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding-bottom: 3px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size var(--dur-m) var(--ease);
}
.text-link:hover { background-size: 100% 1px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px 0;
  transition: padding var(--dur-m) var(--ease), background var(--dur-m) var(--ease), box-shadow var(--dur-m) var(--ease), border-color var(--dur-m) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header.is-scrolled {
  padding: 14px 0;
  background: rgba(250, 247, 240, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(26, 23, 20, 0.06);
}

.brand {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: var(--ink);
  display: flex;
  flex-direction: column;
}
.brand .brand-sub {
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--burgundy);
  margin-top: 3px;
}
.site-header.transparent-mode:not(.is-scrolled) .brand,
.site-header.transparent-mode:not(.is-scrolled) .brand .brand-sub {
  color: var(--ivory);
}

.main-nav { display: flex; align-items: center; gap: 40px; }
.main-nav ul { display: flex; gap: 34px; }
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-s) var(--ease);
}
.main-nav a:hover::after,
.main-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header.transparent-mode:not(.is-scrolled) .main-nav a { color: var(--ivory); }

.header-cta { display: flex; align-items: center; gap: 20px; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 2px;
  align-items: center;
  justify-content: center;
  position: relative;
}
.site-header.transparent-mode:not(.is-scrolled) .nav-toggle {
  border-color: var(--line-on-dark);
}
.nav-toggle .bar,
.nav-toggle .bar::before,
.nav-toggle .bar::after {
  width: 18px; height: 1.5px;
  background: var(--ink);
  display: block;
  transition: transform var(--dur-s) var(--ease), opacity var(--dur-s) var(--ease);
}
.site-header.transparent-mode:not(.is-scrolled) .nav-toggle .bar,
.site-header.transparent-mode:not(.is-scrolled) .nav-toggle .bar::before,
.site-header.transparent-mode:not(.is-scrolled) .nav-toggle .bar::after {
  background: var(--ivory);
}
.nav-toggle .bar { position: relative; }
.nav-toggle .bar::before,
.nav-toggle .bar::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle .bar::before { top: -6px; }
.nav-toggle .bar::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .bar { background: transparent !important; }
.nav-toggle[aria-expanded="true"] .bar::before { transform: translateY(6px) rotate(45deg); background: var(--ink); }
.nav-toggle[aria-expanded="true"] .bar::after { transform: translateY(-6px) rotate(-45deg); background: var(--ink); }

/* ---------- Mobile nav ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  transform: translateY(-100%);
  transition: transform var(--dur-m) var(--ease);
  visibility: hidden;
}
.mobile-nav.is-open {
  transform: translateY(0);
  visibility: visible;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 8px; }
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 9vw, 2.8rem);
  padding: 14px 0;
  display: block;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .mobile-nav-footer {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .main-nav ul, .header-cta .btn-ghost-nav { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transform: scale(1.08);
  will-change: transform;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 17, 15, 0.35) 0%, rgba(20, 17, 15, 0.18) 32%, rgba(20, 17, 15, 0.55) 78%, rgba(15, 12, 10, 0.86) 100%),
    linear-gradient(90deg, rgba(20, 17, 15, 0.35) 0%, rgba(20, 17, 15, 0) 45%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 180px 84px;
}
.hero-eyebrow { margin-bottom: 26px; }
.hero-headline {
  max-width: 15ch;
  color: var(--ivory);
  text-wrap: balance;
}
.hero-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  margin-top: 34px;
  align-items: end;
}
.hero-lede { max-width: 42ch; }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.75);
}
.scroll-cue .line {
  width: 34px; height: 1px;
  background: rgba(246, 241, 231, 0.55);
  position: relative;
  overflow: hidden;
}
.scroll-cue .line::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--ivory);
  animation: cue-run 2.2s var(--ease) infinite;
}
@keyframes cue-run {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

@media (max-width: 780px) {
  .hero-inner { padding-block: 130px 64px; }
  .hero-row { grid-template-columns: 1fr; gap: 28px; align-items: start; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-l) var(--ease), transform var(--dur-l) var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }
.reveal-delay-4 { transition-delay: 360ms; }

.reveal-img {
  overflow: hidden;
}
.reveal-img img {
  transform: scale(1.12);
  transition: transform 1.1s var(--ease);
}
.reveal-img.is-visible img { transform: scale(1); }

/* ---------- Section scaffolding ---------- */
section { position: relative; }
.section-pad { padding-block: 128px; }
@media (max-width: 780px) { .section-pad { padding-block: 84px; } }

.section-head {
  max-width: 720px;
  margin-bottom: 64px;
}
.section-head .h-section { margin-top: 20px; }

/* ---------- Company introduction ---------- */
.intro { background: var(--paper); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  margin-top: 20px;
}
.intro-col p + p { margin-top: 22px; }
.intro-facts {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.intro-facts li {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--olive-deep);
  display: flex;
  align-items: center;
  gap: 10px;
}
.intro-facts li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--burgundy);
  display: inline-block;
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Business / services ---------- */
.business { background: var(--ink); color: var(--ivory); }
.service-list { margin-top: 20px; border-top: 1px solid var(--line-on-dark); }
.service-item {
  display: grid;
  grid-template-columns: 100px 1fr 40px;
  align-items: start;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line-on-dark);
  transition: padding-left var(--dur-m) var(--ease), background var(--dur-m) var(--ease);
  cursor: default;
}
.service-item:hover {
  padding-left: 18px;
  background: rgba(246, 241, 231, 0.035);
}
.service-num {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: rgba(246, 241, 231, 0.35);
  transition: color var(--dur-m) var(--ease);
}
.service-item:hover .service-num { color: var(--beige); }
.service-body h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.service-body p {
  color: rgba(246, 241, 231, 0.68);
  max-width: 64ch;
  line-height: 1.7;
}
.service-arrow {
  align-self: center;
  justify-self: end;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-on-dark);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur-m) var(--ease), border-color var(--dur-m) var(--ease), background var(--dur-m) var(--ease);
  color: var(--ivory);
}
.service-item:hover .service-arrow {
  transform: rotate(45deg);
  border-color: var(--beige);
  background: rgba(246, 241, 231, 0.06);
}

@media (max-width: 700px) {
  .service-item { grid-template-columns: 52px 1fr; }
  .service-arrow { display: none; }
}

/* ---------- Editorial full-bleed image ---------- */
.editorial {
  position: relative;
  height: 78svh;
  min-height: 460px;
  overflow: hidden;
}
.editorial img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 64%;
}
.editorial::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,12,10,0.62) 0%, rgba(15,12,10,0) 42%);
}
.editorial-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 34px 0;
  color: var(--ivory);
}
.editorial-caption .cap-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-on-dark);
  padding-top: 16px;
}
.editorial-caption .cap-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
}
.editorial-caption .cap-meta {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.65);
}

/* ---------- Approach ---------- */
.approach { background: var(--cream); }
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 20px;
}
.approach-media {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.approach-media img { width: 100%; height: 100%; object-fit: cover; }
.approach-values { display: flex; flex-direction: column; }
.value-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.approach-values .value-row:last-child { border-bottom: 1px solid var(--line); }
.value-row .num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--beige-deep);
}
.value-row h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.value-row p {
  color: rgba(26,23,20,0.68);
  font-size: 0.97rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .approach-grid { grid-template-columns: 1fr; gap: 36px; }
  .approach-media { order: -1; aspect-ratio: 16/10; }
}

/* ---------- Facts ---------- */
.facts { background: var(--paper); }
.facts-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.fact-cell {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 28px;
}
.fact-cell .fact-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin-bottom: 14px;
  display: block;
}
.fact-cell .fact-value {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.25;
}
.facts-source {
  margin-top: 22px;
  font-size: 12.5px;
  color: rgba(26,23,20,0.55);
}

@media (max-width: 900px) {
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .facts-grid { grid-template-columns: 1fr; }
}

/* ---------- Insights ---------- */
.insights { background: var(--ivory); }
.insights-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.insights-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.insight-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  min-height: 280px;
  transition: transform var(--dur-m) var(--ease), box-shadow var(--dur-m) var(--ease), border-color var(--dur-m) var(--ease);
}
.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(26,23,20,0.08);
  border-color: rgba(92,26,38,0.25);
}
.insight-card .tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.insight-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-top: 14px;
  line-height: 1.3;
}
.insight-card .foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(26,23,20,0.45);
}
.insight-card .foot .arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur-m) var(--ease);
}
.insight-card:hover .foot .arrow { transform: rotate(45deg); }

@media (max-width: 900px) {
  .insights-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  background: var(--charcoal);
  color: var(--ivory);
  overflow: hidden;
}
.cta-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.cta-media img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.28;
  filter: grayscale(30%);
}
.cta-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,23,20,0.75), rgba(26,23,20,0.94));
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}
.cta .h-display { color: var(--ivory); }
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ---------- Contact ---------- */
.contact { background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: 72px;
  margin-top: 20px;
}
.contact-info-block { padding-top: 6px; }
.contact-info-block + .contact-info-block { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); }
.contact-info-block .label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive-deep);
  display: block;
  margin-bottom: 10px;
}
.contact-info-block address,
.contact-info-block p { font-style: normal; line-height: 1.7; color: rgba(26,23,20,0.78); }
.contact-note {
  margin-top: 36px;
  font-size: 13.5px;
  color: rgba(26,23,20,0.55);
  line-height: 1.7;
  max-width: 42ch;
}

.form-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { margin-bottom: 22px; }
.field.full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 9px;
  color: var(--ink);
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 14px 16px;
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  border-radius: 1px;
  transition: border-color var(--dur-s) var(--ease), background var(--dur-s) var(--ease);
}
.field input:focus,
.field textarea:focus { border-color: var(--burgundy); background: #fff; }
.field textarea { resize: vertical; min-height: 128px; }

.form-foot { display: flex; align-items: center; gap: 20px; margin-top: 8px; flex-wrap: wrap; }
.form-status {
  font-size: 13.5px;
  color: var(--olive-deep);
  font-weight: 600;
}
.form-status[hidden] { display: none; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-card { padding: 28px; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--ivory);
  padding-top: 88px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-on-dark);
}
.footer-brand .brand { color: var(--ivory); }
.footer-brand .brand .brand-sub { color: var(--beige); }
.footer-brand p {
  margin-top: 20px;
  color: rgba(246,241,231,0.6);
  max-width: 40ch;
  font-size: 14px;
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; color: rgba(246,241,231,0.78); }
.footer-col a:hover { color: var(--ivory); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-block: 26px;
  font-size: 12.5px;
  color: rgba(246,241,231,0.5);
}
.footer-credits {
  padding-bottom: 26px;
  font-size: 11.5px;
  color: rgba(246,241,231,0.38);
  line-height: 1.8;
}
.footer-credits a { color: rgba(246,241,231,0.55); }
.footer-credits a:hover { color: rgba(246,241,231,0.8); }

@media (max-width: 780px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Legal pages ---------- */
.legal-page { padding-top: 168px; padding-bottom: 120px; }
.legal-page .h-display { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 32px; }
.legal-page h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-top: 44px;
  margin-bottom: 14px;
}
.legal-page p, .legal-page li { color: rgba(26,23,20,0.72); line-height: 1.8; }
.legal-page ul { margin-top: 12px; }
.legal-page li { position: relative; padding-left: 22px; margin-bottom: 8px; }
.legal-page li::before {
  content: "";
  position: absolute; left: 0; top: 10px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--burgundy);
}
.legal-page .updated {
  font-size: 13px;
  color: rgba(26,23,20,0.5);
  margin-bottom: 8px;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-img img, .hero-media img, * {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
