/* ===== Design tokens ===== */
:root {
  --green: #0b6b3a;
  --green-dark: #084c29;
  --gold: #b8842a;
  --gold-text: #7d5717;
  --gold-light: #e8bd6a;
  --paper: #f3ede0;
  --paper-deep: #ece2cd;
  --white: #fffdf8;
  --ink: #17201a;
  --ink-soft: #55594f;
  --rule: rgba(23, 32, 26, 0.14);

  --font: "Manrope", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;

  --container: 1200px;
  --measure: 640px;
  --radius: 4px;
  --shadow: 0 30px 60px -30px rgba(23, 32, 26, 0.3);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== Reset ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; margin: 0 0 0.5em; font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--ink-soft); }
ul { padding: 0; margin: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 2px;
}
/* On dark sections, flip to a light ring so it still clears 3:1 against the background */
.bg-ink a:focus-visible, .bg-ink button:focus-visible,
.hero a:focus-visible, .hero button:focus-visible,
.page-hero a:focus-visible, .page-hero button:focus-visible,
.site-footer a:focus-visible, .site-footer button:focus-visible {
  outline-color: var(--white);
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 128px 0; }
@media (max-width: 900px) { section { padding: 84px 0; } }
@media (max-width: 560px) { section { padding: 64px 0; } }

/* A consistent warm heritage grade applied over disparate photo sources */
.tone { filter: sepia(0.2) saturate(1.25) hue-rotate(-6deg) contrast(1.06) brightness(0.97); }

.rule { width: 100%; height: 1px; background: var(--rule); }

.kicker {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}

.section-head { max-width: var(--measure); margin-bottom: 64px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 3.6vw, 3rem); color: var(--ink); }

/* Oversized ghost numeral used as editorial punctuation, not decoration-for-its-own-sake */
.ghost-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(6rem, 16vw, 12rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--rule);
  position: absolute;
  top: -0.3em;
  left: 0;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.bg-ink .ghost-num { -webkit-text-stroke: 1px rgba(255,255,255,0.14); }

.bg-paper-deep { background: var(--paper-deep); }
.bg-white { background: var(--white); }
.bg-ink { background: var(--green-dark); color: var(--white); }
.bg-ink p, .bg-ink .kicker { color: rgba(255,255,255,0.78); }
.bg-ink h2, .bg-ink h3 { color: var(--white); }
.bg-ink .kicker { color: var(--gold-light); }

/* ===== Pull quote ===== */
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.4;
  color: var(--ink);
  max-width: 780px;
  padding-left: 28px;
  border-left: 2px solid var(--gold);
}
.pull-quote cite {
  display: block;
  margin-top: 18px;
  font-family: var(--font);
  font-style: normal;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.bg-ink .pull-quote { color: var(--white); border-left-color: var(--gold-light); }
.bg-ink .pull-quote cite { color: rgba(255,255,255,0.7); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(11,107,58,0.55); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--green-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(184,132,42,0.5); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-outline.dark { border-color: var(--ink); color: var(--ink); }
.btn-outline.dark:hover { background: var(--ink); color: var(--white); }
.btn svg { width: 16px; height: 16px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}
.site-header.scrolled { background: var(--paper); box-shadow: 0 6px 24px -12px rgba(0,0,0,0.15); padding: 14px 0; }
.site-header .container {
  display: flex; align-items: center; gap: 40px;
  width: fit-content;
  background: var(--white);
  border-radius: 999px;
  padding: 8px 20px;
  transition: background 0.3s;
}
.site-header.scrolled .container { background: transparent; padding: 8px 20px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 44px; width: auto; filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2)); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-text); font-size: 1.05rem; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 1px; background: var(--ink); margin: 6px 0; transition: 0.3s; }

@media (max-width: 900px) {
  .brand img:first-child { display: none; }
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(360px, 86vw);
    background: var(--green-dark); flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 40px; gap: 22px; transform: translateX(calc(100% + 224px)); transition: transform 0.5s var(--ease);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    color: var(--white) !important; font-family: var(--font-display); font-style: italic;
    font-weight: 500; font-size: 1.7rem;
  }
  .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: block; z-index: 110; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.08);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,20,14,0.45) 0%, rgba(8,20,14,0.5) 45%, rgba(8,20,14,0.88) 100%);
}
.hero-content { position: relative; z-index: 1; padding-bottom: 96px; padding-top: 90px; }
.hero .kicker { color: var(--gold-light); }
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 1.22;
  max-width: 920px;
  color: var(--white);
  font-weight: 500;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span { display: block; transform: translateY(110%); transition: transform 1s var(--ease); }
.hero h1.in .line span { transform: translateY(0); }
.hero h1 .line:nth-child(2) span { transition-delay: 0.09s; }
.hero p.lead { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 520px; margin-top: 20px; }
.hero-actions { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.scroll-cue {
  position: absolute; bottom: 32px; right: 24px;
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  z-index: 1;
}
.scroll-cue span { width: 34px; height: 1px; background: rgba(255,255,255,0.5); position: relative; overflow: hidden; }
.scroll-cue span::after { content:""; position:absolute; inset:0; background: var(--gold-light); animation: scrollDash 2s infinite; }
@keyframes scrollDash { 0% { transform: translateX(-100%); } 50% { transform: translateX(0); } 100% { transform: translateX(100%); } }

/* ===== Reveal (used sparingly: section intros + quotes, never blanket-applied to grids) ===== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Image curtain reveal */
.curtain { position: relative; overflow: hidden; }
.curtain::after {
  content: ""; position: absolute; inset: 0; background: var(--paper);
  transform-origin: right; transform: scaleX(1);
  transition: transform 1.1s var(--ease); z-index: 2;
}
.curtain.in::after { transform: scaleX(0); }
.curtain img { transform: scale(1.12); transition: transform 1.3s var(--ease); }
.curtain.in img { transform: scale(1); }

/* ===== Editorial split (asymmetric two-column) ===== */
.split { display: grid; grid-template-columns: 5fr 7fr; gap: 72px; align-items: center; }
.split.reverse { grid-template-columns: 7fr 5fr; }
.split.reverse > .split-media { order: 2; }
.split-media { position: relative; }
.split-media.bleed-right { margin-right: calc(50% - 50vw); }
.split-media.bleed-left { margin-left: calc(50% - 50vw); }
.split-media img { width: 100%; object-fit: cover; }
.split-media.tagline-panel { background: #0D552E; padding: 40px; display: flex; align-items: center; justify-content: center; aspect-ratio: 4/3; }
.split-media.tagline-panel img { width: 100%; height: 100%; max-width: 420px; object-fit: contain; }
.split-media .stat-card {
  position: absolute; bottom: 10px; left: 10px;
  background: var(--white); padding: 20px 26px;
  box-shadow: var(--shadow); text-align: left;
  opacity: 0;
  transform: translate(-32px, 32px) scale(0.92);
  transition: opacity 0.7s var(--ease) 0.3s, transform 0.7s var(--ease) 0.3s;
}
.curtain.in ~ .stat-card { opacity: 1; transform: translate(0, 0) scale(1); }
.stat-card .num { font-family: var(--font-display); font-size: 2.1rem; color: var(--green); font-weight: 600; }
.stat-card .label { font-size: 0.74rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }
@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse > .split-media { order: 0; }
  .split-media.bleed-right, .split-media.bleed-left { margin-left: -24px; margin-right: -24px; }
  .split-media .stat-card { left: 16px; }
}

/* ===== Values ===== */
.value-list { border-top: 1px solid var(--rule); }
.value-row {
  display: grid; grid-template-columns: 90px 1fr 2fr; gap: 32px; align-items: baseline;
  padding: 30px 0; border-bottom: 1px solid var(--rule);
}
.value-row .idx { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--gold-text); }
.value-row h3 { font-size: 1.3rem; margin: 0; color: var(--ink); }
.value-row p { margin: 0; max-width: 480px; }
@media (max-width: 700px) {
  .value-row { grid-template-columns: 1fr; gap: 8px; }
  .value-row .idx { font-size: 1.1rem; }
}

/* ===== Process / manufacturing journey ===== */
.journey { display: flex; gap: 0; overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin; }
.journey::-webkit-scrollbar { height: 6px; }
.journey::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
.journey-step { flex: 0 0 200px; text-align: left; position: relative; padding: 0 12px; }
.journey-step .dot {
  width: 56px; height: 56px; border-radius: 50%; background: var(--paper);
  border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--green); position: relative; z-index: 1;
  transition: background 0.4s, transform 0.4s var(--ease);
}
.journey-step .dot svg { width: 22px; height: 22px; }
.journey-step:hover .dot { background: var(--gold); color: var(--white); transform: scale(1.08); }
.journey-step::before {
  content: ""; position: absolute; top: 27px; left: -50%; width: 100%; height: 1px;
  background: repeating-linear-gradient(to right, var(--gold) 0 8px, transparent 8px 14px);
}
.journey-step:first-child::before { display: none; }
.journey-step .num { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--gold-text); font-weight: 700; }
.journey-step h4 { margin: 4px 0 6px; font-size: 1rem; color: var(--ink); }
.journey-step p { font-size: 0.86rem; margin: 0; }

/* Mobile: journey becomes a vertical numbered list, not a shrunk horizontal scroller */
@media (max-width: 700px) {
  .journey { display: block; overflow: visible; padding-bottom: 0; border-left: 1px solid var(--rule); }
  .journey-step { flex: none; padding: 0 0 28px 28px; margin-left: -1px; border-left: 1px solid transparent; }
  .journey-step::before { display: none; }
  .journey-step .dot { width: 40px; height: 40px; margin-bottom: 10px; margin-left: -21px; background: var(--paper); }
  .journey-step .dot svg { width: 18px; height: 18px; }
}

/* ===== Why choose us ===== */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px 32px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item .tick {
  flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--gold-text);
  color: var(--gold-text); display: flex; align-items: center; justify-content: center;
}
.why-item .tick svg { width: 16px; height: 16px; }
.why-item h4 { margin: 0 0 4px; font-size: 1rem; color: var(--ink); }
.why-item p { margin: 0; font-size: 0.92rem; }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

/* ===== Product showcase ===== */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.product-card { background: var(--white); transition: transform 0.4s var(--ease); }
.product-media { background: linear-gradient(160deg, var(--paper), var(--paper-deep)); padding: 40px; display: flex; align-items: center; justify-content: center; aspect-ratio: 4/3; position: relative; overflow: hidden; }
.product-media img { max-height: 220px; width: auto; transition: transform 0.6s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.05); }
.product-badge { position: absolute; top: 16px; left: 16px; color: var(--ink); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; padding: 6px 0; text-transform: uppercase; border-bottom: 1px solid var(--gold); }
.product-body { padding: 32px; }
.product-body .kicker { margin-bottom: 6px; }
.product-body h3 { font-size: 1.5rem; color: var(--ink); margin: 0 0 12px; }
.product-tags { display: flex; gap: 18px; flex-wrap: wrap; margin: 18px 0; padding: 16px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.product-tags span { color: var(--ink-soft); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.05em; }
.product-card.soon { display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px; background: var(--paper); }
.product-card.soon h3 { color: var(--ink); margin-bottom: 6px; font-size: 1.2rem; }

/* ===== Video cards ===== */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.video-card { position: relative; overflow: hidden; border-radius: 4px; aspect-ratio: 4/3; background: var(--ink); cursor: pointer; }
.video-card video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.video-card:hover video { transform: scale(1.04); }
.video-play { position: absolute; inset: 0; margin: auto; width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.9); color: var(--green-dark); display: flex; align-items: center; justify-content: center; transition: opacity 0.3s, transform 0.3s; pointer-events: none; }
.video-play svg { width: 22px; height: 22px; margin-left: 3px; }
.video-card:hover .video-play, .video-card.playing .video-play { opacity: 0; transform: scale(0.85); }
.video-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px; font-size: 0.82rem; font-weight: 600; color: var(--white); background: linear-gradient(0deg, rgba(8,20,14,0.75), transparent); }

/* ===== Sustainability list (used on ink or paper background) ===== */
.sustain-list li { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--rule); }
.bg-ink .sustain-list li { border-bottom-color: rgba(255,255,255,0.16); }
.sustain-list li:last-child { border-bottom: none; }
.sustain-list .ico { color: var(--gold); flex: none; }
.bg-ink .sustain-list .ico { color: var(--gold-light); }

/* ===== Certifications ===== */
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.cert-card { background: var(--white); padding: 36px 22px; text-align: left; transition: background 0.3s; }
.cert-card:hover { background: var(--paper); }
.cert-card .badge { font-family: var(--font-display); font-style: italic; font-size: 1.6rem; color: var(--green); margin-bottom: 18px; }
.cert-card h4 { margin: 0 0 4px; font-size: 0.98rem; color: var(--ink); }
.cert-card p { font-size: 0.82rem; margin: 0; }
.cert-card.pending { color: var(--ink-soft); }
.cert-card.pending .badge { color: var(--ink-soft); opacity: 0.5; }
@media (max-width: 900px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Timeline (Our Process) ===== */
.timeline { position: relative; max-width: 760px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 23px; top: 0; bottom: 0; width: 1px; background: var(--rule); }
.timeline-item { position: relative; padding-left: 72px; margin-bottom: 44px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item .marker {
  position: absolute; left: 0; top: 0; width: 48px; height: 48px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--gold); color: var(--green);
  display: flex; align-items: center; justify-content: center; z-index: 1;
  transition: background 0.4s, color 0.4s, transform 0.4s var(--ease);
}
.timeline-item .marker svg { width: 20px; height: 20px; }
.timeline-item.in .marker { background: var(--gold); color: var(--white); }
.timeline-item h4 { color: var(--ink); margin-bottom: 4px; }
@media (max-width: 560px) {
  .timeline-item { padding-left: 60px; margin-bottom: 32px; }
  .timeline-item .marker { width: 40px; height: 40px; }
  .timeline-item .marker svg { width: 17px; height: 17px; }
}

/* ===== Counters strip ===== */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-strip > div { border-top: 1px solid rgba(255,255,255,0.25); padding-top: 20px; }
.stat-strip .count { font-family: var(--font-display); font-size: clamp(2rem, 3.6vw, 2.75rem); color: var(--gold-light); font-weight: 500; }
.stat-strip .label { font-size: 0.82rem; letter-spacing: 0.03em; color: rgba(255,255,255,0.75); margin-top: 4px; }
@media (max-width: 700px) { .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; } }

/* ===== National initiatives ===== */
.initiatives { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.initiative-badge { display: flex; align-items: center; gap: 12px; }
.initiative-badge .chip { width: 40px; height: 40px; border: 1px solid var(--rule); color: var(--green); display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.initiative-badge .chip svg { width: 20px; height: 20px; }
.initiative-badge .chip-logo { width: 220px; height: 140px; padding: 16px 20px; border-radius: 16px; background: var(--white); display: flex; align-items: center; justify-content: center; }
.initiative-badge .chip-logo img { width: 100%; height: 100%; object-fit: contain; }
.initiative-badge span { font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); }

/* ===== CTA band ===== */
.cta-band h2 { color: var(--white); font-size: clamp(1.9rem, 3.6vw, 2.8rem); max-width: 640px; }
.cta-band .btn-row { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }

/* ===== Footer ===== */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,0.8); padding: 80px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  background: rgba(255, 253, 248, 0.4);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 40px 32px 28px;
}
.footer-grid h4 { color: var(--white); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font); }
.footer-grid li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-brand img { height: 100px; margin-bottom: 14px; filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2)); }
.footer-brand p { color: rgba(255,255,255,0.68); font-size: 0.9rem; max-width: 350px; }
.social-links { display: flex; gap: 12px; margin-top: 18px; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); color: var(--white); transition: background 0.3s, color 0.3s, transform 0.3s; }
.social-links a:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.social-links svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: rgba(255,255,255,0.6); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===== Page hero (subpages) ===== */
.page-hero { position: relative; min-height: 52vh; display: flex; align-items: flex-end; color: var(--white); overflow: hidden; }
.page-hero .container { position: relative; z-index: 1; padding-top: 90px; padding-bottom: 64px; }
.page-hero h1 { font-size: clamp(2.2rem, 4.8vw, 3.6rem); max-width: 760px; font-weight: 500; }
.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 16px; letter-spacing: 0.04em; }
.breadcrumb a:hover { color: var(--gold-light); }

/* ===== Generic content blocks ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.media-frame img { width: 100%; object-fit: cover; }

.checklist li { display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start; }
.checklist .ico { flex: none; color: var(--green); }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; }
.contact-card { border-top: 1px solid var(--rule); padding: 22px 0; }
.contact-card h4 { color: var(--ink); margin-bottom: 6px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-card p { margin: 0; }
.map-frame { overflow: hidden; margin-top: 24px; border: 1px solid var(--rule); filter: sepia(0.15) saturate(0.9); }
.map-frame iframe { width: 100%; height: 280px; border: 0; display: block; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 2px; border: 1px solid var(--rule);
  font-family: inherit; font-size: 0.95rem; background: var(--white); transition: border-color 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 14px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* ===== Careers ===== */
.careers-hero { text-align: left; padding-top: 160px; padding-bottom: 130px; max-width: 720px; }
.careers-hero .badge-soon { display: inline-block; border: 1px solid var(--gold-text); color: var(--gold-text); font-weight: 700; padding: 7px 18px; border-radius: 999px; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 26px; }

/* ===== skip link ===== */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--green); color: var(--white); padding: 10px 16px; z-index: 200; }
.skip-link:focus { left: 12px; top: 12px; }
