/* ============================================================
   The Merch Studio — themerchstudio.no
   Based on tms-mockup-v3.html (godkjent 26. mai 2026)
   ============================================================ */

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:      #111110;
  --bg-2:    #1A1A18;
  --bg-3:    #141413;
  --bg-cta:  #1E1E1A;
  --cream:   #EAE5D8;
  --muted:   #8A887E;          /* bumped from #7A7870 for AA contrast on dark */
  --dim:     rgba(234,229,216,0.78);  /* bumped from 0.55 for AA contrast */
  --orange:  #E86218;
  --border:  rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.12);

  --serif:   'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:    'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --site-pad-x: 64px;
  --site-pad-x-mob: 22px;
  --max-w: 1280px;
}

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

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

/* film grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* skip-link for keyboard users */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--orange);
  color: var(--bg);
  padding: 12px 18px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 10000;
}
.skip-link:focus { left: 16px; top: 16px; outline: 2px solid var(--cream); }

/* focus styles */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 1px;
}

/* ─── NAV ─────────────────────────────────────────────────── */
.nav-bar {
  padding: 0 var(--site-pad-x);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.wm-wrap { display: flex; flex-direction: column; gap: 3px; }

.wm {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-decoration: none;
}

.wm em { font-style: italic; color: var(--orange); }

.wm-sub {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0.85;
}

.nav-right { display: flex; align-items: center; gap: 32px; }

.nav-link {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.nav-link:hover, .nav-link:focus-visible { opacity: 1; }

.nav-btn {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--cream);
  border: none;
  padding: 9px 20px;
  cursor: pointer;
  border-radius: 1px;
  transition: background 0.15s;
}
.nav-btn:hover, .nav-btn:focus-visible { background: var(--orange); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.2s, opacity 0.2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mob-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-cta);
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  z-index: 100;
}
.mob-nav.open { display: block; }
.mob-nav a, .mob-nav button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--cream);
  text-decoration: none;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.mob-nav a:last-of-type, .mob-nav button:last-child { border-bottom: none; }
.mob-nav .mob-nav-cta { color: var(--orange); font-weight: 500; }

/* ─── SECTION DIVIDERS ───────────────────────────────────── */
.sec-div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 var(--site-pad-x);
  height: 40px;
  background: var(--bg-3);
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}
.sec-div-num {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--orange);
  opacity: 0.85;
}
.sec-div-line {
  width: 24px;
  height: 1px;
  background: var(--border-strong);
  flex-shrink: 0;
}
.sec-div-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── S1: HERO ────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 54% 46%;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(232,98,24,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px var(--site-pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-img {
  position: relative;
  overflow: hidden;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.06;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-sub {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--dim);
  max-width: 540px;
  margin-bottom: 52px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--orange);
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  border-radius: 1px;
  transition: opacity 0.15s;
}
.btn-primary:hover, .btn-primary:focus-visible { opacity: 0.88; }

/* ─── S2: PROBLEMET ───────────────────────────────────────── */
.s-problem {
  padding: 80px var(--site-pad-x);
}

.problem-close {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 880px;
  margin-bottom: 72px;
}

.problem-stmt {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.problem-bridge {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--orange);
}

.problem-intro-tag {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid var(--border);
}

.stat {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat:last-child { border-right: none; }

.stat-n {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.stat-n::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--orange);
  margin-top: 16px;
  opacity: 0.7;
}

.stat-body {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--dim);
  margin-bottom: 16px;
}

.stat-src {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── S3: HVA VI GJØR ─────────────────────────────────────── */
.s-services {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.s-services-top { padding: 72px var(--site-pad-x) 52px; }

.services-heading {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 800px;
}

.services-body {
  display: grid;
  grid-template-columns: 420px 1fr;
  border-top: 1px solid var(--border);
}

.img-editorial {
  background: #0D0D0C;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border-right: 1px solid var(--border);
}
.img-editorial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 480px;
}

.pillars { display: grid; grid-template-rows: repeat(3, 1fr); }

.pillar {
  padding: 44px 48px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 32px;
  align-items: start;
  transition: background 0.2s;
}
.pillar:last-child { border-bottom: none; }
.pillar:hover { background: rgba(255,255,255,0.015); }

.pillar-num {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 300;
  color: var(--orange);
  letter-spacing: 0.08em;
  padding-top: 5px;
  opacity: 0.85;
}

.pillar-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.pillar-sub {
  font-family: var(--sans);
  font-size: 13px;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  opacity: 0.7;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.pillar-text {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--dim);
}

/* ─── S4: KURATERT FOR ANLEDNINGEN ────────────────────────── */
.s-occasions {
  padding: 72px var(--site-pad-x);
}

.occasions-heading {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-bottom: 12px;
}

.occasions-sub {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--dim);
  margin-bottom: 40px;
  max-width: 600px;
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-strong);
  border: 1px solid var(--border-strong);
}

.occasion-card {
  padding: 32px;
  background: var(--bg);
  transition: background 0.2s, border-color 0.2s;
  border: 1px solid transparent;
}
.occasion-card:hover {
  background: var(--bg-2);
  border-color: rgba(232,98,24,0.3);
}

.occ-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}

.occ-sub {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--dim);
  line-height: 1.5;
  font-style: italic;
}

/* ─── S5: SLIK JOBBER VI ──────────────────────────────────── */
.s-process {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.process-top {
  padding: 72px var(--site-pad-x) 48px;
}

.process-heading {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.process-sub {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--dim);
  margin-top: 16px;
  max-width: 600px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}

.step {
  padding: 48px 36px 56px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.step:last-child { border-right: none; }

.step-n {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: rgba(234,229,216,0.22);
  line-height: 1;
  letter-spacing: -0.02em;
  position: absolute;
  top: 24px;
  right: 24px;
}

.step-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.step.hl { background: var(--bg-2); }
.step.hl .step-label { color: var(--orange); }

.step-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
}

.step-text {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--dim);
  flex: 1;
}

/* ─── S6: HVEM VI ER ──────────────────────────────────────── */
.s-founders {
  padding: 72px var(--site-pad-x);
  border-top: 1px solid var(--border-strong);
}

.founders-heading {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  max-width: 800px;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.founder-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
}

.founder-role {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.founder-email {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--dim);
  text-decoration: none;
  border-bottom: 1px solid rgba(234,229,216,0.25);
  margin-bottom: 24px;
  transition: color 0.15s, border-color 0.15s;
}
.founder-email:hover, .founder-email:focus-visible {
  color: var(--cream);
  border-color: rgba(234,229,216,0.6);
}

.founder-bio {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--dim);
  line-height: 1.75;
}

/* ─── S7: FAQ ─────────────────────────────────────────────── */
.s-faq {
  padding: 72px var(--site-pad-x);
  border-top: 1px solid var(--border-strong);
}

.faq-heading {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  max-width: 800px;
}

.faq-intro {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.faq-list {
  margin-top: 32px;
  max-width: 860px;
}

.faq-item {
  border-bottom: 1px solid var(--border-strong);
}
.faq-item:first-child { border-top: 1px solid var(--border-strong); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}

.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
details[open] .faq-q::after { transform: rotate(45deg); }

.faq-a {
  padding: 0 0 24px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--dim);
  line-height: 1.75;
  max-width: 720px;
}

/* ─── CTA-AVSLUTNING ──────────────────────────────────────── */
.s-cta {
  padding: 100px var(--site-pad-x);
  text-align: center;
  border-top: 1px solid var(--border-strong);
  background: var(--bg-cta);
}

.cta-heading {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 auto 20px;
  max-width: 720px;
}

.cta-sub {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--dim);
  margin: 0 auto 40px;
  line-height: 1.6;
  max-width: 640px;
}

.cta-btn {
  background: var(--orange);
  color: var(--bg);
  border: none;
  padding: 16px 40px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 1px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.cta-btn:hover, .cta-btn:focus-visible { opacity: 0.88; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  padding: 36px var(--site-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-wm {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  color: rgba(234,229,216,0.6);
}
.footer-wm em { font-style: italic; color: rgba(232,98,24,0.9); }

.footer-tag {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(234,229,216,0.62);
}

.footer-info,
.footer-link {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: rgba(234,229,216,0.62);
}

.footer-link {
  text-decoration: none;
  border-bottom: 1px solid rgba(234,229,216,0.2);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.footer-link:hover,
.footer-link:focus-visible {
  color: var(--cream);
  border-color: rgba(234,229,216,0.55);
}

/* ─── LEGAL PAGE (privacy.html, evt. terms senere) ────────── */
.legal-page {
  padding: 72px var(--site-pad-x) 96px;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.legal-meta {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 56px;
}

.legal-content h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-top: 56px;
  margin-bottom: 20px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
  margin-top: 32px;
  margin-bottom: 10px;
}

.legal-content p {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--dim);
  margin-bottom: 18px;
}

.legal-content p:last-child { margin-bottom: 0; }

.legal-content ul {
  list-style: none;
  margin-bottom: 18px;
  padding-left: 0;
}

.legal-content ul li {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--dim);
  padding-left: 22px;
  position: relative;
  margin-bottom: 6px;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 10px;
  height: 1px;
  background: var(--orange);
  opacity: 0.7;
}

.legal-content ul li strong {
  color: var(--cream);
  font-weight: 500;
}

.legal-content a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(234,229,216,0.3);
  transition: border-color 0.15s;
}
.legal-content a:hover,
.legal-content a:focus-visible {
  border-color: rgba(234,229,216,0.7);
}

.legal-content .legal-contact-line {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--cream);
  margin: 0;
}

/* ─── CONTACT MODAL ───────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17,17,16,0.88);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--bg-cta);
  border: 1px solid rgba(234,229,216,0.18);
  padding: 48px;
  max-width: 440px;
  width: 100%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--dim);
  font-size: 26px;
  line-height: 1;
  padding: 8px 12px;
  cursor: pointer;
}
.modal-close:hover, .modal-close:focus-visible { color: var(--cream); }

.modal-heading {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}

.modal-sub {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--dim);
  margin-bottom: 36px;
  line-height: 1.6;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--border-strong);
  text-decoration: none;
  color: var(--cream);
  transition: border-color 0.15s, background 0.15s;
  background: none;
  font-family: var(--sans);
  font-size: 14px;
  text-align: left;
  width: 100%;
}
.modal-option:hover, .modal-option:focus-visible {
  border-color: rgba(234,229,216,0.45);
  background: rgba(234,229,216,0.04);
}

.modal-option-icon {
  font-size: 18px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.modal-option-text strong {
  display: block;
  font-weight: 500;
  margin-bottom: 2px;
}
.modal-option-text span {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--dim);
}

/* ─── RESPONSIVE — TABLET / MOBIL ─────────────────────────── */
@media (max-width: 900px) {
  :root {
    --site-pad-x: var(--site-pad-x-mob);
  }

  .nav-bar { height: 64px; }
  .nav-right { display: none; }
  .hamburger { display: flex; }

  .sec-div { height: 36px; }

  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .hero-content { padding: 28px var(--site-pad-x-mob) 44px; }
  .hero-img { order: -1; height: 260px; }
  .hero-img img { object-position: center top; }
  .hero-h1 { font-size: 38px; line-height: 1.07; margin-bottom: 20px; }
  .hero-sub { font-size: 15px; line-height: 1.6; margin-bottom: 28px; }

  .s-problem { padding: 48px var(--site-pad-x-mob); }
  .problem-close { gap: 20px; margin-bottom: 48px; }
  .problem-stmt { font-size: 24px; }
  .problem-bridge { font-size: 18px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat {
    padding: 28px var(--site-pad-x-mob);
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .stat:last-child { border-bottom: none; }
  .stat-n { font-size: 48px; }

  .s-services-top { padding: 48px var(--site-pad-x-mob) 36px; }
  .services-heading { font-size: 30px; }
  .services-body { grid-template-columns: 1fr; }
  .img-editorial {
    min-height: 280px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .img-editorial img { min-height: 280px; }
  .pillar { padding: 36px var(--site-pad-x-mob); gap: 0 18px; }
  .pillar-title { font-size: 24px; }

  .s-occasions { padding: 48px var(--site-pad-x-mob); }
  .occasions-heading { font-size: 30px; }
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
  .occasion-card { padding: 22px; }
  .occ-name { font-size: 18px; }

  .process-top { padding: 48px var(--site-pad-x-mob) 36px; }
  .process-heading { font-size: 30px; }
  .steps { grid-template-columns: 1fr; }
  .step {
    padding: 36px var(--site-pad-x-mob);
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .step:last-child { border-bottom: none; }
  .step-n { font-size: 32px; top: 18px; right: 18px; }

  .s-founders { padding: 48px var(--site-pad-x-mob); }
  .founders-heading { font-size: 28px; margin-bottom: 28px; }
  .founders-grid { grid-template-columns: 1fr; gap: 36px; }
  .founder-name { font-size: 24px; }

  .s-faq { padding: 48px var(--site-pad-x-mob); }
  .faq-heading { font-size: 28px; }
  .faq-q { font-size: 17px; padding: 20px 0; }

  .s-cta { padding: 64px var(--site-pad-x-mob); }
  .cta-heading { font-size: 28px; }

  .site-footer {
    padding: 28px var(--site-pad-x-mob);
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .legal-page { padding: 48px var(--site-pad-x-mob) 64px; }
  .legal-meta { margin-bottom: 36px; }
  .legal-content h2 { margin-top: 40px; }

  .modal-box { padding: 32px 24px; }
}

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

/* reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
}
