/* ============================================
   STOSA CUCINE HRVATSKA
   Brand: navy #0f4379, white, gray
   Tone: editorial, refined, minimal
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,300;1,9..144,400&family=Manrope:wght@200;300;400;500;600;700&display=swap');

:root {
  --navy: #0f4379;
  --navy-deep: #082a4f;
  --navy-soft: #1d5a96;
  --navy-tint: #e8eef5;

  --white: #ffffff;
  --off-white: #fafbfc;
  --gray-50: #f5f6f8;
  --gray-100: #eaecf0;
  --gray-200: #d6dae0;
  --gray-300: #b8bec8;
  --gray-400: #8a93a1;
  --gray-500: #5b6573;
  --gray-700: #2c3540;
  --gray-900: #0f1419;

  --line: #e0e3e9;

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Manrope', -apple-system, system-ui, sans-serif;

  --maxw: 1440px;
  --gut: clamp(20px, 4vw, 64px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--navy); color: var(--white); }

/* ---------- Top brand strip (no commerce) ---------- */
.brandstrip {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 9px var(--gut);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px var(--gut);
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.32em;
  color: var(--navy);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 400;
  margin-left: auto;
  color: var(--gray-700);
}
.nav-links a { position: relative; padding: 4px 0; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }

.nav-cta {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid var(--navy);
  padding: 11px 22px;
  transition: all 0.25s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--navy); color: var(--white); }

.menu-btn { display: none; padding: 8px; margin-left: auto; }
.menu-btn span { display: block; width: 24px; height: 1px; background: var(--gray-900); margin: 6px 0; transition: 0.3s; }
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: block; }
  .nav.open + .mobile-menu { display: flex; }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--white);
  flex-direction: column;
  padding: 32px var(--gut);
  gap: 20px;
  z-index: 99;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  font-family: var(--font-display);
  font-weight: 400;
}
.mobile-menu a { padding: 8px 0; border-bottom: 1px solid var(--line); color: var(--gray-900); }
.mobile-menu .btn { margin-top: 12px; justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid currentColor;
  cursor: pointer;
  text-align: center;
  justify-content: center;
}
.btn.primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn.primary:hover { background: var(--navy-deep); border-color: var(--navy-deep); }
.btn.ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn.ghost:hover { background: var(--navy); color: var(--white); }
.btn.outline-light { background: transparent; color: var(--white); border-color: var(--white); }
.btn.outline-light:hover { background: var(--white); color: var(--navy); }
.btn.lg { padding: 20px 38px; font-size: 13px; }
.btn .arrow { transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1); display: inline-block; }
.btn:hover .arrow { transform: translateX(5px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  transition: gap 0.3s;
  color: var(--navy);
}
.text-link:hover { gap: 16px; }

/* ---------- Typography ---------- */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: currentColor;
}
.eyebrow.no-line::before { display: none; }
.eyebrow.center { display: inline-flex; }

.display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-feature-settings: 'liga' 1;
  color: var(--gray-900);
}
.display em { font-style: italic; font-weight: 300; color: var(--navy); }
h1.display { font-size: clamp(44px, 7.5vw, 116px); }
h2.display { font-size: clamp(34px, 5vw, 76px); }
h3.display { font-size: clamp(24px, 2.8vw, 40px); font-weight: 400; }
h4.display { font-size: clamp(20px, 2vw, 28px); font-weight: 400; }

.lede {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  font-weight: 300;
  color: var(--gray-500);
  max-width: 56ch;
}
.section.dark .lede { color: var(--gray-300); }

.kicker {
  font-size: 14px;
  line-height: 1.7;
  max-width: 58ch;
  color: var(--gray-500);
}
.section.dark .kicker { color: var(--gray-300); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.section { padding: clamp(80px, 11vw, 150px) 0; position: relative; }
.section.tight { padding: clamp(60px, 8vw, 100px) 0; }
.section.dark { background: var(--navy); color: var(--white); }
.section.dark .display { color: var(--white); }
.section.dark .display em { color: var(--navy-tint); }
.section.dark .eyebrow { color: var(--navy-tint); }
.section.tint { background: var(--off-white); }
.section.gray { background: var(--gray-50); }

.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  margin-bottom: 72px;
  align-items: end;
}
.section-head h2 { max-width: 14ch; }
.section-head .right { padding-bottom: 6px; }
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: flex-end;
  position: relative;
  padding: 100px var(--gut) 0;
  overflow: hidden;
  background: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(15, 67, 121, 0.06), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(15, 67, 121, 0.04), transparent 60%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: end;
  padding-bottom: 100px;
}
.hero h1 { margin: 28px 0 36px; }
.hero-meta {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-meta-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.hero-meta-row:last-child { border-bottom: none; padding-bottom: 0; }
.hero-meta-row .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 500;
}
.hero-meta-row .value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image {
  position: absolute;
  top: 0; right: 0;
  width: 46vw;
  height: 100%;
  z-index: 0;
  opacity: 1;
  mask-image: linear-gradient(to left, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
}
@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-bottom: 64px; }
  .hero-image { display: none; }
}

/* ---------- Image placeholders (until real photos) ---------- */
.ph {
  background:
    linear-gradient(135deg, rgba(15, 67, 121, 0.08), rgba(15, 67, 121, 0.02)),
    linear-gradient(180deg, var(--gray-100), var(--gray-50));
  position: relative;
  overflow: hidden;
}
.ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(15, 67, 121, 0.06), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(15, 67, 121, 0.04), transparent 50%);
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 28px);
  font-style: italic;
  color: var(--navy);
  letter-spacing: 0.02em;
  opacity: 0.4;
  font-weight: 300;
  text-align: center;
  padding: 24px;
}
.ph.dark {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
}
.ph.dark::after { color: var(--navy-tint); opacity: 0.6; }
.ph.light {
  background: linear-gradient(135deg, var(--off-white), var(--gray-100));
}

/* ---------- Collection cards (NO PRICES) ---------- */
.collection-card {
  display: block;
  background: transparent;
  cursor: pointer;
}
.collection-card .imgwrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  background: var(--gray-50);
}
.collection-card .imgwrap > img,
.collection-card .imgwrap > .ph {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.collection-card:hover .imgwrap > img,
.collection-card:hover .imgwrap > .ph { transform: scale(1.04); }
.collection-card .body {
  padding: 24px 0 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.collection-card .body h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--gray-900);
}
.collection-card .body .arrow {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  letter-spacing: 0.08em;
}
.collection-card:hover .body .arrow { transform: translateX(8px); }
.collection-card .desc {
  padding: 8px 0 0;
  font-size: 14px;
  color: var(--gray-500);
  max-width: 38ch;
}

/* ---------- Value props / Why Stosa ---------- */
.value-card {
  padding: 36px 0 28px;
  border-top: 1px solid var(--line);
}
.section.dark .value-card { border-top-color: rgba(255, 255, 255, 0.18); }
.value-card .num {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--navy);
  margin-bottom: 28px;
  font-weight: 500;
  text-transform: uppercase;
}
.section.dark .value-card .num { color: var(--navy-tint); }
.value-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.value-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-500);
}
.section.dark .value-card p { color: var(--gray-300); }

/* ---------- Editorial split (Stosa Green-style) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
}
.split.reverse > div:first-child { order: 2; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse > div:first-child { order: 0; }
}

/* ---------- News cards ---------- */
.news-card {
  display: block;
}
.news-card .imgwrap {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--gray-50);
}
.news-card .imgwrap > img,
.news-card .imgwrap > .ph {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-card:hover .imgwrap > img,
.news-card:hover .imgwrap > .ph { transform: scale(1.04); }
.news-card .date {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 10px;
  font-weight: 500;
}
.news-card h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  color: var(--gray-900);
}
.news-card:hover h3 { color: var(--navy); }
.news-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }
.news-card .more {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* ---------- Forms ---------- */
.lead-form {
  background: var(--off-white);
  padding: 48px;
  border: 1px solid var(--line);
}
.section.dark .lead-form { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row.single { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-900);
  outline: none;
  transition: border-color 0.25s;
}
.section.dark .form-field input,
.section.dark .form-field select,
.section.dark .form-field textarea {
  border-bottom-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-bottom-color: var(--navy); }
.section.dark .form-field input:focus,
.section.dark .form-field select:focus,
.section.dark .form-field textarea:focus { border-bottom-color: var(--white); }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-options { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.chip {
  border: 1px solid var(--line);
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s;
  background: transparent;
  color: var(--gray-700);
}
.chip:hover, .chip.selected { background: var(--navy); color: var(--white); border-color: var(--navy); }
.section.dark .chip { border-color: rgba(255, 255, 255, 0.25); color: var(--white); }
.section.dark .chip:hover, .section.dark .chip.selected { background: var(--white); color: var(--navy); border-color: var(--white); }
.form-note {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 16px;
  line-height: 1.5;
}
.section.dark .form-note { color: var(--gray-300); }
@media (max-width: 700px) {
  .lead-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Multi-step indicator ---------- */
.steps-indicator {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}
.steps-indicator span {
  flex: 1;
  height: 2px;
  background: var(--line);
  transition: background 0.4s;
}
.steps-indicator span.done { background: var(--navy); }
.step-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
  font-weight: 500;
}
.step-q {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--gray-900);
}

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 400;
  letter-spacing: -0.005em;
  transition: color 0.2s;
  color: var(--gray-900);
}
.faq-q:hover { color: var(--navy); }
.faq-q .plus {
  width: 24px; height: 24px;
  position: relative;
  flex-shrink: 0;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.3s;
}
.faq-q .plus::before { top: 50%; left: 0; right: 0; height: 1px; }
.faq-q .plus::after { top: 0; bottom: 0; left: 50%; width: 1px; }
.faq-item.open .faq-q .plus::after { transform: rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 28px; }
.faq-a p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 72ch;
}

/* ---------- Showroom (single) ---------- */
.showroom-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.showroom-info { padding: 32px 0; }
.showroom-info .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 500;
}
.showroom-info h2 { margin-bottom: 24px; }
.showroom-info .addr {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--gray-900);
  margin-bottom: 32px;
}
.showroom-info .contact-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.showroom-info .contact-row a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 6px 0;
  color: var(--gray-700);
}
.showroom-info .contact-row a:hover { color: var(--navy); }
.showroom-info .contact-row .lbl {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 500;
}
@media (max-width: 900px) {
  .showroom-block { grid-template-columns: 1fr; }
}

/* ---------- Banner (no commercial CTA) ---------- */
.cta-strip {
  background: var(--navy);
  color: var(--white);
  padding: clamp(60px, 9vw, 120px) var(--gut);
  text-align: center;
}
.cta-strip-inner { max-width: 760px; margin: 0 auto; }
.cta-strip h2 { margin: 24px 0 28px; color: var(--white); }
.cta-strip h2 em { color: var(--navy-tint); }
.cta-strip .lede { color: rgba(255, 255, 255, 0.7); margin: 0 auto 36px; }
.cta-strip .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-strip .eyebrow { color: var(--navy-tint); }

/* ---------- Footer ---------- */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 96px var(--gut) 40px;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer h5 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 500;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.32em;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 400;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--gray-300);
  max-width: 32ch;
  font-weight: 300;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer-links a:hover { color: var(--white); }
.footer-newsletter input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 14px 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}
.footer-newsletter input::placeholder { color: var(--gray-400); }
.footer-newsletter button {
  margin-top: 20px;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  padding: 12px 22px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.25s;
}
.footer-newsletter button:hover { background: var(--white); color: var(--gray-900); }
.footer-newsletter .small { font-size: 11px; color: var(--gray-400); margin-top: 16px; line-height: 1.5; }
.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--gray-400);
  flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 24px; list-style: none; }
.footer-bottom a:hover { color: var(--white); }
@media (max-width: 1000px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Landing page (catalogue request) ---------- */
.lp-hero {
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--white);
}
.lp-hero-content {
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--off-white);
}
.lp-hero-content h1 { margin: 24px 0 32px; }
.lp-hero-list {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.lp-hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.5;
}
.lp-hero-list li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--navy);
  flex-shrink: 0;
  margin-top: 7px;
}
.lp-hero-form {
  background: var(--white);
  padding: clamp(40px, 5vw, 72px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) {
  .lp-hero { grid-template-columns: 1fr; min-height: auto; }
}

/* ---------- Page header (interior pages) ---------- */
.page-header {
  padding: clamp(120px, 14vw, 180px) var(--gut) clamp(60px, 8vw, 100px);
  background: var(--off-white);
  border-bottom: 1px solid var(--line);
}
.page-header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}
.page-header h1 { margin-top: 24px; }
.breadcrumb {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 32px;
  font-weight: 500;
}
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }
@media (max-width: 900px) {
  .page-header-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Stat block ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section.dark .stats-row { border-color: rgba(255, 255, 255, 0.18); }
.stat {
  padding: 36px 24px;
  border-right: 1px solid var(--line);
}
.section.dark .stat { border-right-color: rgba(255, 255, 255, 0.18); }
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
}
.section.dark .stat .num { color: var(--white); }
.stat .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 500;
}
.section.dark .stat .lbl { color: var(--gray-300); }
@media (max-width: 800px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .section.dark .stat:nth-child(1), .section.dark .stat:nth-child(2) { border-bottom-color: rgba(255, 255, 255, 0.18); }
}

/* ---------- Utilities ---------- */
.center { text-align: center; }
.muted { color: var(--gray-500); }
.divider { height: 1px; background: var(--line); margin: 0; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }

/* ---------- Pull quote (editorial) ---------- */
.pullquote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-style: italic;
  color: var(--gray-900);
  text-align: center;
  max-width: 24ch;
  margin: 0 auto;
}
.pullquote::before, .pullquote::after { content: '"'; color: var(--navy); }

/* ---------- Editorial number list ---------- */
.numbered-list { list-style: none; }
.numbered-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.numbered-list li:last-child { border-bottom: 1px solid var(--line); }
.numbered-list li .n {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  font-weight: 400;
  font-style: italic;
}
.numbered-list li h4 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: var(--gray-900);
}
.numbered-list li p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 60ch;
}
@media (max-width: 700px) {
  .numbered-list li { grid-template-columns: 1fr; gap: 8px; }
}
