/* ═══════════════════════════════════════════════════════════
   Fish Seafood Global — Cold Water Craft
   Theme: Nordic Pearl — warm cream + deep navy + oxidised gold
═══════════════════════════════════════════════════════════ */

/* ─── Variables ─── */
:root {
  /* Dark zones (hero, footer, pull) */
  --night:   #080F1A;
  --abyss:   #0C1828;
  --deep:    #101E2E;

  /* Light zones (all content sections) */
  --cream:   #F3EDE1;
  --cream-2: #EBE4D6;
  --cream-3: #E0D9CA;

  /* Text on light */
  --navy:    #0B1A28;
  --slate:   #243444;
  --stone:   #4E6070;

  /* Text on dark */
  --parch:   #EBE3D2;
  --sand:    #B8AFA0;
  --drift:   #7A7265;

  /* Gold — two variants */
  --gold:     #9B6E18;      /* on light backgrounds */
  --gold-hi:  #B8872A;      /* hover on light */
  --gold-dk:  #C4952E;      /* on dark backgrounds */
  --gold-lo:  rgba(155,110,24,0.10);

  /* Lines */
  --line-lt:  rgba(11,26,40,0.09);   /* on light sections */
  --line-dk:  rgba(235,227,210,0.10); /* on dark sections */
  --line:     rgba(11,26,40,0.09);    /* default (light) */

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Raleway', -apple-system, sans-serif;
  --mono:   'JetBrains Mono', 'Courier New', monospace;

  --nav-h: 72px;
  --pad:   clamp(24px, 5vw, 80px);
  --max:   1400px;

  /* Legacy aliases for JS-generated HTML */
  --bg:        #F3EDE1;
  --bg-deep:   #EBE4D6;
  --bg-soft:   #E0D9CA;
  --ink:       #0B1A28;
  --ink-soft:  #2C3E50;
  --ink-muted: #6B7A88;
  --accent:    #9B6E18;
  --accent-soft: #7A5510;
  --salmon:    #C8624A;
  --ice:       #C8D8E4;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: #fff; }

/* ─── Utility ─── */
.accent { color: var(--gold); }
em, .it { font-style: italic; }
strong  { font-weight: 500; color: var(--navy); }
.body-lg { font-size: clamp(15px, 1.1vw, 17px); color: var(--slate); line-height: 1.78; font-weight: 400; }
.body-lg + .body-lg { margin-top: 20px; }

/* ─── Section dividers ─── */
section { border-top: 1px solid var(--line-lt); }
section:first-of-type { border-top: none; }

/* ─── Container ─── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) var(--pad);
}

/* ═══════════════════════════════════
   NAVIGATION
═══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
  gap: 40px;
  /* starts transparent over dark hero — white text */
  background: transparent;
  transition: background 0.45s ease, border-color 0.45s ease;
  border-bottom: 1px solid transparent;
}

/* When scrolled — cream nav with dark text */
.nav.scrolled {
  background: rgba(243,237,225,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--line-lt);
}

.nav-brand {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--parch);       /* white on dark hero */
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.3s;
}
.nav.scrolled .nav-brand  { color: var(--navy); }
.nav-brand:hover           { color: var(--gold-dk) !important; }
.nav-brand .amp            { color: var(--gold-dk); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(235,227,210,0.6);   /* dim on dark hero */
  transition: color 0.2s;
  white-space: nowrap;
}
.nav.scrolled .nav-links a          { color: var(--stone); }
.nav-links a:hover                  { color: var(--parch); }
.nav.scrolled .nav-links a:hover   { color: var(--gold); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-toggle {
  background: transparent;
  border: 1px solid rgba(235,227,210,0.25);
  color: rgba(235,227,210,0.55);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 2px;
}
.nav.scrolled .lang-toggle {
  border-color: var(--line-lt);
  color: var(--stone);
}
.lang-toggle:hover {
  border-color: var(--gold-dk) !important;
  color: var(--gold-dk) !important;
}

.nav-cta {
  background: var(--gold-dk);
  border: none;
  color: #fff;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 20px;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 2px;
}
.nav.scrolled .nav-cta { background: var(--gold); color: #fff; }
.nav-cta:hover { background: var(--gold-hi) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--parch);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav.scrolled .nav-hamburger span { background: var(--navy); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── Mobile menu ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: var(--pad);
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-top: 3px solid var(--gold);
}
.mobile-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 300;
  color: var(--slate);
  transition: color 0.2s;
  padding: 4px 0;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute;
  top: 24px; right: var(--pad);
  background: none;
  border: none;
  color: var(--stone);
  font-size: 20px;
  cursor: pointer;
}
.mobile-menu-bottom {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.mobile-menu-cta {
  background: var(--gold);
  border: none;
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  cursor: pointer;
  border-radius: 2px;
}
.mobile-menu-lang {
  background: none;
  border: 1px solid var(--line-lt);
  color: var(--stone);
  font-family: var(--mono);
  font-size: 10px;
  padding: 11px 16px;
  cursor: pointer;
  border-radius: 2px;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════
   HERO  — stays dark
═══════════════════════════════════ */
.hero {
  background: var(--night);
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: var(--pad);
  padding-top: calc(var(--nav-h) + 32px);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 0% 0%, rgba(16,36,62,0.9), transparent 50%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(10,20,35,0.95), transparent 50%),
    radial-gradient(ellipse 50% 80% at 80% 20%, rgba(196,149,46,0.05), transparent 45%),
    linear-gradient(180deg, var(--night) 0%, #081525 100%);
  pointer-events: none;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: conic-gradient(
    from 200deg at 85% -10%,
    transparent 0deg,
    rgba(196,149,46,0.05) 6deg,
    transparent 12deg,
    transparent 20deg,
    rgba(196,149,46,0.03) 25deg,
    transparent 30deg
  );
  pointer-events: none;
}

.hero-strip {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line-dk);
  border-bottom: 1px solid var(--line-dk);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--drift);
}
.hero-coord { color: var(--gold-dk); letter-spacing: 0.12em; }
.hero-strip-center { text-align: center; }
.hero-since { text-align: right; }

.hero-body {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: clamp(40px, 5vw, 80px) 0;
}
.hero-headline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(68px, 13vw, 190px);
  line-height: 0.88;
  letter-spacing: -0.025em;
  color: var(--parch);
}
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 320px;
  align-self: flex-end;
  padding-bottom: 12px;
}
.hero-lead {
  font-size: clamp(13px, 1vw, 15px);
  color: var(--sand);
  line-height: 1.75;
  font-weight: 300;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dk);
  border-bottom: 1px solid rgba(196,149,46,0.3);
  padding-bottom: 6px;
  transition: gap 0.2s, border-color 0.2s;
  width: fit-content;
}
.hero-btn svg { width: 18px; height: 18px; transition: transform 0.2s; }
.hero-btn:hover { border-color: var(--gold-dk); gap: 14px; }
.hero-btn:hover svg { transform: translateX(3px); }

.hero-tags-strip {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line-dk);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--drift);
}
.htag-dot { color: rgba(196,149,46,0.35); }

/* Hero entry animation */
.hero-anim {
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-strip.hero-anim         { animation-delay: 0.1s; }
.hero-body.hero-anim,
.hero-headline.hero-anim      { animation-delay: 0.3s; }
.hero-side.hero-anim          { animation-delay: 0.45s; }
.hero-tags-strip.hero-anim    { animation-delay: 0.55s; }
@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════
   SECTION MARKER  (light version)
═══════════════════════════════════ */
.section-marker {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding-bottom: clamp(40px, 5vw, 64px);
  position: relative;
}
.section-marker::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.section-marker.in::after { width: 50%; }

.s-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.s-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}
.s-meta {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--stone);
  margin-left: auto;
  text-transform: uppercase;
}

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-stagger { opacity: 0; transition: opacity 0.4s ease; }
.reveal-stagger.in { opacity: 1; }
.reveal-stagger.in > * {
  animation: staggerUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.reveal-stagger.in > *:nth-child(1) { animation-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { animation-delay: 0.1s; }
.reveal-stagger.in > *:nth-child(3) { animation-delay: 0.2s; }
.reveal-stagger.in > *:nth-child(4) { animation-delay: 0.3s; }
@keyframes staggerUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════
   ABOUT  — cream-1
═══════════════════════════════════ */
#about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  margin-bottom: clamp(56px, 8vw, 96px);
}
.about-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.about-headline em { color: var(--gold); font-style: italic; }
.about-side { padding-top: 8px; }

/* ─── Stats ─── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-lt);
  border: 1px solid var(--line-lt);
}
.stat {
  background: var(--cream);
  padding: clamp(24px, 3vw, 44px);
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.stat-num sup {
  font-size: 0.4em;
  vertical-align: super;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 400;
}
.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 10px;
}
.stat-desc {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--stone);
  margin-top: 6px;
}

/* ═══════════════════════════════════
   PRODUCTS  — cream-2
═══════════════════════════════════ */
.products-section { background: var(--cream-2); }
.products-intro { margin-bottom: clamp(32px, 4vw, 56px); }
.products-headline {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--slate);
  max-width: 760px;
}
.products-headline em { color: var(--gold); font-style: italic; }

/* ─── Product rows ─── */
.product-list { border-top: 1px solid var(--line-lt); }

.product-row {
  display: grid;
  grid-template-columns: 52px minmax(180px, 260px) 1fr 200px 32px;
  align-items: center;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-lt);
  cursor: pointer;
  transition: background 0.2s, padding-left 0.3s;
  position: relative;
}
.product-row::before {
  content: '';
  position: absolute;
  left: -1px; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-row:hover::before,
.product-row.open::before  { transform: scaleY(1); }
.product-row:hover         { padding-left: 14px; background: rgba(155,110,24,0.03); }
.product-row.open          { padding-left: 14px; background: rgba(155,110,24,0.04); }

.product-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold);
}
.product-name {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
}
.product-name .it {
  display: block;
  font-size: 0.7em;
  color: var(--stone);
  font-style: italic;
}
.product-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--slate);
  line-height: 1.6;
}
.product-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}
.product-meta span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--stone);
  white-space: nowrap;
}
.product-meta strong {
  color: var(--slate);
  font-weight: 500;
  font-family: var(--sans);
  white-space: nowrap;
}
.product-arrow {
  font-size: 16px;
  color: var(--stone);
  transition: color 0.2s, transform 0.3s;
}
.product-row:hover .product-arrow { color: var(--gold); transform: translateX(4px); }
.product-row.open  .product-arrow { color: var(--gold); transform: rotate(90deg); }

/* ─── Product detail panel ─── */
.product-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  border-bottom: 1px solid var(--line-lt);
}
.product-row.open + .product-detail { max-height: 600px; }

.product-detail-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  padding: 32px 0 40px;
}
.product-detail-img {
  height: 220px;
  border-radius: 2px;
  overflow: hidden;
  background: var(--cream-3);
}
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-body { padding-top: 4px; }
.product-detail-body > p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.78;
  margin-bottom: 28px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-lt);
  border: 1px solid var(--line-lt);
}
.spec-grid > div { background: var(--cream-2); padding: 14px 16px; }
.spec-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 6px;
}
.spec-val {
  font-size: 13px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.35;
}

/* ═══════════════════════════════════
   PULL QUOTE  — stays dark
═══════════════════════════════════ */
.pull {
  background: var(--night);
  border-top: none;
}
.pull-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) var(--pad);
  text-align: center;
}
.pull-mark {
  font-family: var(--serif);
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.6;
  color: rgba(196,149,46,0.12);
  margin-bottom: 16px;
}
.pull-text {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 300;
  font-style: italic;
  color: var(--parch);
  line-height: 1.35;
  max-width: 820px;
  margin: 0 auto 28px;
}
.pull-text .accent { color: var(--gold-dk); }
.pull-attr {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--drift);
  text-transform: uppercase;
}

/* ═══════════════════════════════════
   ORIGIN  — cream-1
═══════════════════════════════════ */
.origin { background: var(--cream); }

.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.origin-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
}
.origin-title em { font-style: italic; color: var(--gold); }

.origin-list {
  list-style: none;
  margin-top: 40px;
  border-top: 1px solid var(--line-lt);
}
.origin-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-lt);
  cursor: pointer;
  transition: opacity 0.2s;
}
.origin-list li:hover { opacity: 0.65; }
.origin-num {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--gold);
  padding-top: 2px;
  flex-shrink: 0;
}
.origin-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.origin-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--slate);
  text-transform: uppercase;
}

/* ─── Map ─── */
.map-frame {
  background: var(--cream-2);
  border: 1px solid var(--line-lt);
  padding: 32px;
  position: relative;
}
.map-frame::before {
  content: 'NORTH PACIFIC · FISHING GROUNDS';
  position: absolute;
  top: 12px; left: 16px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--stone);
}
.map-coastline {
  fill: none;
  stroke: rgba(11,26,40,0.25);
  stroke-width: 0.6;
  stroke-linejoin: round;
}
.map-region {
  fill: rgba(155,110,24,0.06);
  stroke: rgba(155,110,24,0.15);
  stroke-width: 0.4;
}
.map-pin   { fill: var(--gold); opacity: 0.9; }
.map-ring  {
  fill: none;
  stroke: var(--gold);
  stroke-width: 0.5;
  opacity: 0.4;
  animation: mapPulse 2.5s ease-in-out infinite;
}
@keyframes mapPulse {
  0%, 100% { r: 2; opacity: 0.4; }
  50%       { r: 4; opacity: 0.1; }
}
.map-label {
  font-family: var(--mono);
  font-size: 5px;
  fill: rgba(11,26,40,0.4);
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════
   PROCESS  — cream-2
═══════════════════════════════════ */
.process-section { background: var(--cream-2); }

.process-headline {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.process-headline em { color: var(--gold); font-style: italic; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-lt);
  border: 1px solid var(--line-lt);
}
.step {
  background: var(--cream-2);
  padding: clamp(24px, 3vw, 40px);
  transition: background 0.2s;
}
.step:hover { background: var(--cream); }

.step-num {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
}
.step-icon {
  width: 44px; height: 44px;
  color: var(--slate);
  opacity: 0.5;
  margin-bottom: 20px;
}
.step-title {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}
.step-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--slate);
  line-height: 1.68;
}

/* ═══════════════════════════════════
   CATALOG  — cream-1
═══════════════════════════════════ */
.catalog-section { background: var(--cream); }

.catalog-cta {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  margin-top: 8px;
}
.catalog-cover {
  aspect-ratio: 2/3;
  max-width: 200px;
  background: linear-gradient(160deg, var(--night), var(--abyss));
  border: 1px solid rgba(235,227,210,0.08);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--drift);
  text-transform: uppercase;
  box-shadow: 0 20px 60px rgba(8,15,26,0.2), 0 4px 16px rgba(8,15,26,0.1);
}
.cc-top { display: flex; justify-content: space-between; }
.cc-mid {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  color: var(--parch);
}
.cc-mid .accent { color: var(--gold-dk); }
.cc-mid em { font-style: italic; }
.cc-bot { display: flex; justify-content: space-between; }

.catalog-body { padding-top: 4px; }
.catalog-headline {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}
.catalog-headline em { font-style: italic; color: var(--gold); }

.catalog-list {
  list-style: none;
  margin: 20px 0 32px;
}
.catalog-list li {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--stone);
  padding: 7px 0;
  border-bottom: 1px solid var(--line-lt);
}

/* ─── Shared button ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 28px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-radius: 2px;
  text-decoration: none;
}
.btn-primary:hover { background: var(--gold); color: #fff; }
.btn-primary svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ═══════════════════════════════════
   CONTACT  — cream-2
═══════════════════════════════════ */
.contact-section { background: var(--cream-2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  margin-top: 8px;
}
.contact-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 36px;
}
.contact-headline em { color: var(--gold); font-style: italic; }

.contact-info dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
}
.contact-info dt {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 12px 20px 12px 0;
  border-bottom: 1px solid var(--line-lt);
}
.contact-info dd {
  font-size: 13px;
  color: var(--slate);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-lt);
}
.contact-info a:hover { color: var(--gold); }

/* ─── Contact form ─── */
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px solid var(--line-lt);
  padding: 12px 0;
  transition: border-color 0.2s;
}
.form-row:focus-within { border-color: var(--gold); }
.form-row label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}
.form-row input,
.form-row select,
.form-row textarea {
  background: transparent;
  border: none;
  outline: none;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  padding: 4px 0;
  resize: none;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--stone); font-size: 13px; }
.form-row select { cursor: pointer; appearance: none; }
.form-row select option { background: var(--cream); color: var(--navy); }

.form-submit { padding-top: 28px; }

/* ═══════════════════════════════════
   FOOTER  — dark
═══════════════════════════════════ */
.footer {
  background: var(--night);
  border-top: none;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--pad) clamp(32px, 4vw, 48px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--line-dk);
}
.footer-brand {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--parch);
  margin-bottom: 12px;
}
.footer-brand .accent { color: var(--gold-dk); }
.footer-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--drift);
  line-height: 1.7;
  text-transform: uppercase;
}
.footer-coords {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(196,149,46,0.35);
  margin-top: 12px;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  padding: 5px 0;
  font-size: 13px;
  color: var(--drift);
}
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-dk); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--drift);
}

/* ═══════════════════════════════════
   FLOATING CTA
═══════════════════════════════════ */
.float-cta {
  position: fixed;
  bottom: 32px;
  right: var(--pad);
  z-index: 50;
  background: var(--gold);
  color: #fff;
  border: none;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 22px;
  cursor: pointer;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(155,110,24,0.22);
}
.float-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.float-cta:hover   { background: var(--gold-hi); }

/* ═══════════════════════════════════
   RESPONSIVE — tablet ≤ 1024px
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links    { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta      { display: none; }

  .hero-body { grid-template-columns: 1fr; }
  .hero-side { max-width: 100%; align-self: auto; }
  .hero-strip-center { display: none; }

  .product-row {
    grid-template-columns: 48px 1fr 160px 28px;
    gap: 20px;
  }
  .product-desc { display: none; }

  .about-grid    { grid-template-columns: 1fr; }
  .origin-grid   { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid  { grid-template-columns: 1fr; }
  .catalog-cta   { grid-template-columns: 1fr; }
  .catalog-cover { max-width: 160px; aspect-ratio: auto; min-height: 200px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ─── Mobile ≤ 640px ─── */
@media (max-width: 640px) {
  :root {
    --pad: 20px;
    --nav-h: 60px;
    /* Boost contrast: darken muted tones for small screens */
    --stone: #4A5A6A;
    --slate: #1E3044;
    --drift: #5A6A78;
  }

  /* Body weight 400 on mobile — 300 is too thin on phone screens */
  body { font-weight: 400; }
  .body-lg { font-weight: 400; color: var(--slate); font-size: 15px; }

  /* Container: less vertical padding on mobile */
  .container { padding-top: clamp(44px, 10vw, 80px); padding-bottom: clamp(44px, 10vw, 80px); }

  /* Hero */
  .hero {
    padding-top: calc(var(--nav-h) + 16px);
    min-height: auto;
    padding-bottom: 32px;
  }
  .hero-headline { font-size: clamp(52px, 14vw, 80px); }
  .hero-strip-center, .hero-since { display: none; }
  .hero-lead { font-size: 14px; font-weight: 400; color: #B8AFA0; }

  /* Section markers — bigger labels */
  .s-label { font-size: 12px; }
  .s-num   { font-size: 11px; }

  /* About headings */
  .about-headline { font-size: clamp(26px, 6vw, 36px); }

  /* Stats — stacked, bigger text */
  .stats { grid-template-columns: 1fr; }
  .stat-num   { font-size: clamp(56px, 15vw, 80px); }
  .stat-label { font-size: 11px; font-weight: 600; color: var(--slate); }
  .stat-desc  { font-size: 11px; color: var(--stone); }

  /* Products */
  .product-row {
    grid-template-columns: 40px 1fr 28px;
    gap: 12px;
    padding: 18px 0;
  }
  .product-desc, .product-meta { display: none; }
  .product-name { font-size: 22px; font-weight: 300; }
  .product-name .it { font-size: 13px; color: var(--stone); }
  .product-num { font-size: 11px; }

  /* Detail panel */
  .product-detail-inner { grid-template-columns: 1fr; }
  .product-detail-body > p { font-size: 14px; font-weight: 400; color: var(--slate); }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-val  { font-size: 13px; font-weight: 500; color: var(--navy); }
  .spec-label { color: var(--stone); }

  /* Process */
  .process-steps { grid-template-columns: 1fr; }
  .process-headline { font-size: clamp(24px, 6vw, 36px); }
  .step-title { font-size: 20px; }
  .step-desc  { font-size: 13px; font-weight: 400; color: var(--stone); }

  /* Origin */
  .origin-grid { grid-template-columns: 1fr; }
  .origin-title { font-size: clamp(26px, 6vw, 36px); }
  .origin-name  { font-size: 15px; font-weight: 600; }
  .origin-sub   { font-size: 11px; color: var(--stone); }

  /* Pull quote */
  .pull-mark { font-size: 60px; }
  .pull-text { font-size: clamp(20px, 5vw, 28px); }

  /* Contact */
  .contact-grid { gap: 40px; }
  .contact-headline { font-size: clamp(26px, 6vw, 36px); }
  .contact-info dt  { font-size: 10px; color: var(--stone); }
  .contact-info dd  { font-size: 14px; font-weight: 400; color: var(--slate); }
  .form-row label   { font-size: 10px; color: var(--stone); }
  .form-row input,
  .form-row select,
  .form-row textarea { font-size: 16px; font-weight: 400; color: var(--navy); }

  /* Catalog */
  .catalog-cta   { grid-template-columns: 1fr; }
  .catalog-cover { max-width: 140px; aspect-ratio: 2/3; }
  .catalog-list li { font-size: 12px; color: var(--stone); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer-bottom span:not(:first-child) { display: none; }
  .footer-col li { font-size: 14px; color: var(--drift); }
}

/* ─── Very small ≤ 380px ─── */
@media (max-width: 380px) {
  .hero-headline { font-size: 48px; }
  .spec-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-anim, .reveal, .reveal-stagger, .reveal-stagger > * {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
