/* ═══════════════════════════════════════════════════════════════
   e-invitation — shared styles
   Fonts loaded via <link> in each page's <head>
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables — original warm palette ── */
:root {
  --bg:         #F5F0E8;
  --bg2:        #EDE8DC;
  --text:       #3B2F2F;
  --text-muted: #7A6A60;
  --accent:     #C9A99A;
  --accent-dk:  #B08878;
  --white:      #FDFAF5;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Jost', Helvetica, sans-serif;
  --nav-h:      64px;
  --max-w:      1100px;

  /* Aliases used in inline styles / JS */
  --brand-cream:      #F5F0E8;
  --brand-cream-2:    #EDE8DC;
  --brand-cream-3:    #E0DAD0;
  --brand-ink:        #3B2F2F;
  --brand-ink-soft:   #7A6A60;
  --brand-ink-faint:  #9A8A80;
  --brand-gold:       #C9A99A;
  --brand-gold-deep:  #B08878;
  --brand-gold-light: #E8D5CC;
  --brand-white:      #FDFAF5;
  --brand-charcoal:   #2A1F1F;
  --brand-line:       #EDE8DC;
  --brand-line-soft:  rgba(59,47,47,0.08);
  --display-font:     'Playfair Display', Georgia, serif;
  --body-font:        'Jost', Helvetica, sans-serif;
  --fs-display:       clamp(2.8rem, 7vw, 6rem);
  --fs-h1:            clamp(2rem, 4vw, 2.8rem);
  --fs-h2:            clamp(1.5rem, 3vw, 2.1rem);
  --fs-h3:            1.05rem;
  --fs-lead:          clamp(1rem, 1.5vw, 1.15rem);
  --fs-body:          0.9rem;
  --fs-ui:            0.875rem;
  --fs-eyebrow:       0.68rem;
  --fs-caption:       0.8rem;
  --section-gap:      100px;
  --container-w:      1100px;
  --radius-sm:        6px;
  --radius-md:        12px;
  --radius-lg:        16px;
  --radius-pill:      999px;
  --ease:             cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:      cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #F5F0E8;
  color: #3B2F2F;
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ── Layout ── */
.container {
  width: min(var(--max-w), 100% - 48px);
  margin-inline: auto;
}
.section { padding: 100px 24px; }
.section--alt { background: var(--bg2); }
.section--dark { background: var(--text); color: var(--white); }

/* ── Section header ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header.centered { text-align: center; }
.eyebrow, .section-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 400;
  font-family: var(--sans);
}
.h1, .section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 14px;
}
.h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  line-height: 1.25;
}
.h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
}
.lead, .section-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.8;
}
.caption { font-size: 0.8rem; color: var(--text-muted); }
.divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 16px;
}

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.site-nav.scrolled { border-bottom-color: var(--bg2); }
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
}
.nav-brand {
  display: flex;
  align-items: center;
}
.nav-brand img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 1;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--accent-dk) !important;
  border: 1px solid var(--accent) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-md) !important;
  transition: background 0.25s, color 0.25s !important;
  opacity: 1 !important;
}
.nav-cta:hover { background: var(--accent) !important; color: var(--white) !important; transform: none !important; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mega-menu (desktop) */
.nav-mega { position: relative; }
.nav-mega-toggle {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
}
.nav-mega-toggle:hover { color: var(--text); }
.nav-mega-toggle svg { transition: transform 0.25s; }
.nav-mega.open .nav-mega-toggle svg { transform: rotate(180deg); }
.nav-mega-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 580px;
  background: var(--white);
  border: 1px solid var(--bg2);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-mega.open .nav-mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-mega-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.6rem 0.7rem;
  transition: background 0.15s;
}
.nav-mega-item:hover { background: var(--bg); }
.nav-mega-item strong {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.nav-mega-item small { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

/* Mobile overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
  text-align: center;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 400;
  color: var(--text);
  padding: 0.4rem 0;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--accent-dk); }
.nav-mobile-divider {
  width: 40px;
  height: 1px;
  background: var(--bg2);
  margin: 0.75rem auto;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--text);
  padding: 14px 38px;
  background: none;
  border-radius: var(--radius-md);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn:hover { background: var(--text); color: var(--white); transform: none; box-shadow: none; }
.btn-primary {
  border-color: var(--accent);
  color: var(--accent-dk);
  background: none;
  box-shadow: none;
  border-radius: var(--radius-md);
}
.btn-primary:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-outline {
  border-color: var(--bg2);
  color: var(--text-muted);
  background: none;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent-dk); background: none; }

/* ── Hero ── */
.hero, #hero {
  min-height: 100vh;
  min-height: 100svh; /* accounts for mobile browser chrome so scroll-hint stays visible */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 24px 90px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg { display: none; }
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}
.hero-eyebrow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 400;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 18px;
}
.hero-title em { font-style: italic; color: var(--accent-dk); }
.hero-sub {
  font-family: var(--serif);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
}
.hero-envelope {
  position: relative;
  width: 180px;
  height: 126px;
  margin: 0 auto 32px;
  flex-shrink: 0;
}
.hero-envelope svg { width: 100%; height: 100%; overflow: visible; }
.env-flap {
  transform-origin: top center;
  animation: envOpen 1.4s cubic-bezier(0.4,0,0.2,1) 0.4s forwards;
}
@keyframes envOpen {
  0%   { transform: rotateX(0deg); }
  40%  { transform: rotateX(-160deg); }
  100% { transform: rotateX(-160deg); }
}
.env-card { animation: cardRise 0.7s cubic-bezier(0.4,0,0.2,1) 1.2s both; }
@keyframes cardRise {
  from { transform: translateY(0); opacity: 0; }
  to   { transform: translateY(-38px); opacity: 1; }
}
.hero-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-confetti span {
  position: absolute;
  opacity: 0;
  animation: confettiFloat linear infinite;
}
@keyframes confettiFloat {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.85;
  animation: float 2.4s ease-in-out infinite;
}
.scroll-hint span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
}
.scroll-hint-line, .scroll-hint-arrow {
  width: 1.5px;
  height: 38px;
  background: linear-gradient(to bottom, var(--accent-dk), var(--accent) 60%, transparent);
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Sound toggle ── */
.sound-toggle {
  position: fixed;
  top: calc(var(--nav-h) + 16px);
  right: 20px;
  z-index: 200;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--bg2);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px -4px rgba(59,47,47,0.15);
  transition: transform 0.2s, background 0.2s;
}
.sound-toggle:hover { transform: scale(1.05); background: var(--white); }
.sound-toggle svg { width: 18px; height: 18px; }
.sound-toggle.muted .icon-on { display: none; }
.sound-toggle:not(.muted) .icon-off { display: none; }
.sound-hint {
  position: fixed;
  top: calc(var(--nav-h) + 68px);
  right: 20px;
  z-index: 200;
  background: var(--text);
  color: var(--white);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  white-space: nowrap;
}
.sound-hint.show { opacity: 1; transform: translateY(0); }

/* ── Stats strip ── */
#stats {
  background: var(--text);
  padding: 56px 24px;
}
.stats-dark-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  flex-wrap: wrap;
}
.stat-dark-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 20px 32px;
  position: relative;
}
.stat-dark-item + .stat-dark-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  height: 40px; width: 1px;
  background: rgba(253,250,245,0.12);
}
.stat-dark-num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-dark-num em { font-style: normal; color: var(--accent); }
.stat-dark-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253,250,245,0.45);
  font-weight: 400;
}

/* ── How it works (steps) ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
  counter-reset: step;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--bg2);
  line-height: 1;
}
.step h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
}
.step p { font-size: 0.88rem; color: var(--text-muted); }

/* ── Category tabs (folder-style switcher in #portfolio) ──
   Design principles:
   • Editorial typography — Playfair Display labels match the page's voice
   • Restraint — inactive tabs sit quietly in the background
   • One clear indicator — gold hairline at the top of the active tab
   • Soft depth — gentle upward shadow on active suggests it's lifted forward
   • Smooth motion — brand --ease curve, no abrupt transitions
*/
/* Background for #portfolio is declared in homepage.css */
.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 4px;
  margin: 0 auto;
  padding: 0;
  max-width: 760px;
  border-bottom: 1px solid var(--brand-line);
}
.cat-tab {
  position: relative;
  background: transparent;
  border: 1px solid transparent;
  border-bottom: none;
  color: var(--brand-ink-faint);
  padding: 14px 30px 13px;
  border-radius: 10px 10px 0 0;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  margin-bottom: -1px;
  transition:
    color 0.35s var(--ease),
    background-color 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.cat-tab:hover {
  color: var(--brand-ink-soft);
  background: rgba(255,255,255,0.5);
}
.cat-tab.is-active {
  background: var(--brand-white);
  border-color: var(--brand-line);
  border-bottom-color: var(--brand-white);
  color: var(--brand-ink);
  box-shadow: 0 -3px 18px rgba(59,47,47,0.05);
}
.cat-tab.is-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--brand-gold);
  border-radius: 1px;
}
.cat-tab:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 2px;
}
.cat-panel { margin-top: 36px; }
.cat-panel[hidden] { display: none; }
@media (max-width: 640px) {
  .cat-tabs { gap: 2px; max-width: 100%; }
  .cat-tab { padding: 12px 18px 11px; font-size: 0.92rem; border-radius: 8px 8px 0 0; }
  .cat-tab.is-active::before { left: 12px; right: 12px; }
}
@media (max-width: 380px) {
  .cat-tab { padding: 10px 12px 9px; font-size: 0.85rem; }
}

/* ── Sample grid (used in each #portfolio tab panel) ── */
.sample-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.sample-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.sample-card {
  border: 1px solid var(--bg2);
  background: var(--bg);
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform-origin: center center;
  will-change: transform;
  cursor: pointer;
}
/* Default (all viewports): subtle lift only */
.sample-card-link:hover .sample-card {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(59,47,47,0.10);
}
/* Desktop with real pointer: subtle scale-up */
@media (hover: hover) and (min-width: 768px) {
  .sample-card-link:hover .sample-card {
    transform: translateY(-4px) scale(1.04);
  }
}
.sample-img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bg2);
  /* aspect-ratio and container-type live on .sample-preview (the direct iframe parent)
     so that 100cqi resolves to the preview width — do not add them here */
}
.sample-preview {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  background: var(--bg2);
  filter: saturate(0.85);
  transition: filter 0.3s;
  container-type: inline-size;
  transform-origin: center center;
  will-change: transform;
  border-radius: 0;
}
.sample-card-link:hover .sample-preview { filter: saturate(1); }
.sample-preview iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 480px;
  height: 640px;
  border: 0;
  transform-origin: top left;
  transform: scale(calc(100cqi / 480px));
  pointer-events: none;
}
.sample-name {
  padding: 16px 14px 18px;
  text-align: center;
}
.sample-name strong {
  display: block;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}
.sample-name small {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}

/* Secondary chips */
.cat-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
}
.cat-secondary-label {
  width: 100%;
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.chip, .chips .chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 7px 18px;
  border: 1px solid var(--bg2);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
  border-radius: var(--radius-sm);
}
.chip:hover { border-color: var(--accent); color: var(--accent-dk); }

/* ── Pricing ── */
#pricing { background: var(--bg); }
.price-card {
  border: 1px solid var(--bg2);
  background: var(--white);
  padding: 52px 44px 48px;
  text-align: left;
  position: relative;
  border-radius: var(--radius-lg);
  transition: box-shadow 0.25s;
}
.price-card:hover { box-shadow: 0 8px 32px rgba(59,47,47,0.08); }
.price-card.price-featured {
  border-color: var(--accent);
  background: var(--bg);
}
.price-tag {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dk);
  font-weight: 400;
  margin-bottom: 28px;
}
.price-card.price-featured .price-tag { color: var(--accent-dk); }
.price-amount {
  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
  margin-top: 16px;
}
.price-amount sup { font-size: 1.5rem; vertical-align: super; font-family: var(--sans); font-weight: 300; }
.price-card.price-featured .price-amount { color: var(--text); }
.price-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin: 14px 0 32px;
  line-height: 1.8;
}
.price-card.price-featured .price-desc { color: var(--text-muted); }
.price-features {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.price-features li::before {
  content: '';
  flex-shrink: 0;
  width: 14px; height: 14px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}
.price-card.price-featured .price-features li::before { opacity: 0.7; }
.price-card.price-featured .price-features li { color: var(--text-muted); }

/* ── IBAN component ── */
.iban-block {
  background: var(--bg2);
  border: 1px solid var(--bg2);
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 520px;
  margin-inline: auto;
}
.iban-block-header { display: flex; flex-direction: column; gap: 0.3rem; }
.iban-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--bg2);
  padding: 0.85rem 1rem;
}
.iban-number {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
  flex: 1;
  word-break: break-all;
}
.iban-copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid var(--bg2);
  background: var(--bg);
  color: var(--text);
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.iban-copy-btn:hover { border-color: var(--accent); background: var(--white); }
.iban-copy-btn.copied { border-color: #4caf82; background: #e8f7f0; color: #2d7a54; }
.iban-copy-btn svg { pointer-events: none; }
.iban-toast {
  display: inline-flex;
  font-size: 0.78rem;
  color: #2d7a54;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.25s;
  height: 1.2rem;
}
.iban-toast.show { opacity: 1; }
.iban-note { font-size: 0.8rem; color: var(--text-muted); font-style: italic; line-height: 1.5; }

/* ── Testimonials ── */
.testimonials { position: relative; overflow: hidden; max-width: 760px; margin: 0 auto; }
.testimonial-track { display: flex; transition: transform 0.5s var(--ease); }
.testimonial { min-width: 100%; padding: 0 1rem; text-align: center; }
.testimonial-text {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.testimonial-author { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.08em; }
.testimonial-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.testimonial-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bg2);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.testimonial-dot.active { background: var(--accent-dk); transform: scale(1.3); }

/* Dark-section overrides for testimonials */
#testimonials .testimonial-text  { color: var(--white); }
#testimonials .testimonial-author { color: rgba(253,250,245,0.5); }
#testimonials .testimonial-dot   { background: rgba(253,250,245,0.2); }
#testimonials .testimonial-dot.active { background: var(--accent); transform: scale(1.3); }

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--bg2);
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: background 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--bg); }
.faq-item[open] summary { background: var(--bg); }
.faq-chevron {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.25s;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0.5rem 1.5rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--bg2);
}

/* ── Contact ── */
#contact { background: var(--white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}
.contact-interest {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 0.5rem;
}
.cat-hint-text {
  min-height: 2.5em;
  font-size: 0.9rem;
  color: var(--brand-ink-soft);
  line-height: 1.5;
  transition: opacity 0.25s;
}
.cat-hint-text:empty { opacity: 0; }
.contact-cta { align-self: flex-start; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 520px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label, .form-group label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
  font-family: var(--sans);
}
.form-input, .form-select, .form-textarea,
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg);
  border: 1px solid var(--bg2);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  padding: 13px 16px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s;
  border-radius: var(--radius-sm);
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus,
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent);
}
.form-select, .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237A6A60' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-success {
  display: none;
  text-align: center;
  padding: 28px;
  border: 1px solid rgba(201,169,154,0.4);
  border-radius: var(--radius-md);
}
.form-success p {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
}

/* Category checkbox pills */
.cat-checks { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.cat-check-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 6px 14px;
  border: 1px solid var(--bg2);
  font-size: 0.78rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
  border-radius: 0;
}
.cat-check-label:has(input:checked) {
  border-color: var(--accent);
  background: rgba(201,169,154,0.15);
}
.cat-check-label input { display: none; }

/* ── Misc helpers ── */
.badge {
  display: inline-flex;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--bg2);
  background: var(--bg);
  color: var(--text-muted);
  border-radius: 0;
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }
.fade-up-d3 { animation-delay: 0.3s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
:focus-visible { outline: 2px solid var(--accent-dk); outline-offset: 3px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-mega-panel { display: none; }
  .sample-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 640px) {
  .sample-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .scroll-hint { bottom: 16px; }
}
@media (max-width: 360px) {
  .sample-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ── Consent checkbox (shared across homepage + brief) ── */
.form-consent .consent-label{display:flex;gap:.55rem;align-items:flex-start;font-size:.82rem;line-height:1.5;cursor:pointer}
.form-consent input[type=checkbox]{
  /* fully override .form-group input's width/padding/bg/border/appearance */
  flex:0 0 auto;
  width:1.05rem;
  height:1.05rem;
  min-width:1.05rem;
  padding:0;
  background:transparent;
  border:1px solid var(--bg2);
  border-radius:3px;
  font-size:revert;
  appearance:auto;
  -webkit-appearance:auto;
  margin-top:.2rem;
  cursor:pointer;
}
.form-consent a{text-decoration:underline}
