:root {
  --bg: #f3e8d8;
  --bg-soft: #ecdfca;
  --blush: #f4ddd2;
  --blush-deep: #e6c8bb;
  --cream: #fffaf2;
  --ink: #1a1108;
  --ink-soft: #3d2d22;
  --muted: #6e5648;
  --line: #e2cfc3;
  --accent: #8a4b32;
  --accent-deep: #46301f;
  --cta: #46301f;
  --cta-hover: #2e1d11;
  --gold: #c9a27a;
  --shadow: 0 20px 60px -30px rgba(40, 22, 12, 0.35);
  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1160px;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a {
  color: var(--accent-deep);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.2px;
  line-height: 1.15;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); }
h1 em {
  font-style: italic;
  color: var(--accent-deep);
  font-weight: 500;
  display: inline-block;
}
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 500;
  margin: 0 0 1rem;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 252, 247, 0.94);
  backdrop-filter: saturate(1.1) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
}
.brand-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
}
.brand-main em {
  font-style: italic;
  color: var(--accent-deep);
  font-weight: 400;
}
.brand-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}
@media (max-width: 720px) {
  .brand-main { font-size: 1.85rem; }
  .brand-sub { font-size: 0.6rem; letter-spacing: 0.22em; }
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-list a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 400;
  position: relative;
}
.nav-list a:not(.btn):hover { color: var(--ink); }
.nav-list a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav-list a:not(.btn):hover::after { transform: scaleX(1); }
.nav-list a.btn-cta,
.nav-list a.btn-cta:hover { color: #ffffff; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 36px;
  height: 36px;
  position: relative;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  margin: 4px auto;
  transition: all .25s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
}
.btn-small { padding: 10px 20px; font-size: 0.85rem; }
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { background: var(--accent-deep); color: var(--cream); transform: translateY(-1px); }
.btn-cta {
  background: var(--cta);
  color: #ffffff;
  box-shadow: 0 10px 28px -12px rgba(30, 18, 10, 0.5);
}
.btn-cta:hover {
  background: var(--cta-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -12px rgba(40, 24, 14, 0.6);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 88px);
  min-height: calc(100svh - 88px);
  display: flex;
  align-items: center;
  padding: clamp(56px, 8vw, 100px) 0;
  background: linear-gradient(180deg, #f8efe0 0%, var(--bg) 60%, var(--bg-soft) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 58ch;
  margin-top: 1rem;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hero-badges {
  list-style: none;
  padding: 0;
  margin: 3rem 0 0;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.hero-badges li {
  position: relative;
  padding-left: 22px;
}
.hero-badges li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}
.hero-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.7;
}
.blob-1 {
  width: 520px; height: 520px;
  right: -120px; top: -80px;
  background: radial-gradient(circle, #f5d7cb 0%, transparent 65%);
}
.blob-2 {
  width: 380px; height: 380px;
  right: 10%; bottom: -120px;
  background: radial-gradient(circle, #f0e2d2 0%, transparent 70%);
}
.blob-3 {
  width: 260px; height: 260px;
  left: -80px; top: 30%;
  background: radial-gradient(circle, #f7e6e0 0%, transparent 70%);
}

/* Sections */
.section {
  padding: clamp(56px, 7vw, 96px) 0;
}
.section-light { background: var(--cream); }
.section-blush { background: linear-gradient(180deg, var(--blush) 0%, var(--bg-soft) 100%); }
.section-contact { background: linear-gradient(180deg, var(--cream) 0%, var(--bg-soft) 100%); }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.6rem;
}
.section-head .eyebrow { justify-content: center; }
.section-lede {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* Grid helper */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
.stack > * + * { margin-top: 1em; }

/* Facts */
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.facts > div { display: flex; flex-direction: column; }
.fact-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 2.4rem;
  color: var(--accent-deep);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.05;
  font-feature-settings: "lnum";
}
.fact-label {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Portrait */
.portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 440px;
  width: 100%;
  margin-left: auto;
}
.portrait-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--blush) 0%, var(--blush-deep) 60%, #d5b8ac 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.portrait-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.portrait-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 60px 16px 16px;
  background: linear-gradient(180deg, transparent, rgba(40, 25, 22, 0.55));
  pointer-events: none;
}

/* Treatments (Behandling og priser) */
.treatments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}
.treatment {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}
.treatment[data-treatment]:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.treatment-top {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.treatment-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blush);
  display: grid;
  place-items: center;
  color: var(--accent-deep);
  margin-bottom: 20px;
}
.treatment-icon svg { width: 26px; height: 26px; }
.treatment-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.4vw, 2.2rem);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.1;
}
.treatment-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--accent);
  margin: 0 0 18px;
}
.treatment-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0 0 18px;
  line-height: 1.55;
}
.treatment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.treatment-list li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 5px 0 5px 22px;
  position: relative;
}
.treatment-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 12px; height: 1px;
  background: var(--accent);
}

/* Pris-blokk i kort – flukter nederst */
.treatment-price {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: center;
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.treatment-amount,
.price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.4rem);
  color: var(--accent-deep);
  line-height: 1.1;
  letter-spacing: 0.01em;
  font-variant-numeric: lining-nums;
  white-space: nowrap;
}
.treatment-amount {
  display: block;
  margin-bottom: 6px;
}
.treatment-note {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  font-weight: 400;
}

/* Eyeliner hover-swap: variant-prisliste over standard-pris */
.treatment-eyeliner { position: relative; }
.treatment-eyeliner .treatment-price-variants {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  background: var(--cream);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.treatment-eyeliner .treatment-price-default {
  transition: opacity .35s ease;
}
.treatment-eyeliner:hover .treatment-price-default,
.treatment-eyeliner:focus-within .treatment-price-default {
  opacity: 0;
}
.treatment-eyeliner:hover .treatment-price-variants,
.treatment-eyeliner:focus-within .treatment-price-variants {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.treatment-variants {
  list-style: none;
  padding: 0;
  margin: 0;
}
.treatment-variants li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
}
.treatment-variants li:last-child { border-bottom: 0; padding-bottom: 0; }
.treatment-variants .price {
  font-size: 1.15rem;
}

/* Touch-enheter har ikke hover - vis variantene under default-prisen */
@media (hover: none) {
  .treatment-eyeliner .treatment-price-variants {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    margin-top: 18px;
    background: transparent;
    border-top: 1px dashed var(--line);
  }
  .treatment-eyeliner .treatment-price-default { display: none; }
}

/* Priser – tilleggsinfo */
.price-extras {
  margin-top: 56px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.price-extras-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  margin: 0 0 22px;
  color: var(--ink);
}
.price-extras-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.price-extras-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 24px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background .2s ease;
}
.price-extras-list li[data-treatment]:hover {
  background: var(--blush);
  color: var(--ink);
}
.price-extras-list li:nth-child(odd) {
  border-right: 1px solid var(--line);
}
.price-extras-list li:nth-last-child(-n+2) { border-bottom: 0; }
.price-extras-list li .price {
  font-size: 1.15rem;
  color: var(--accent-deep);
}
@media (max-width: 720px) {
  .price-extras { margin-top: 40px; }
  .price-extras-list { grid-template-columns: 1fr; }
  .price-extras-list li { border-right: 0 !important; }
  .price-extras-list li:last-child { border-bottom: 0; }
  .treatment { padding: 32px 24px 28px; }
}

/* CTA-rad i Behandling-seksjonen */
.cta-row {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.cta-row-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--ink);
  margin: 0;
  font-style: italic;
}
.cta-row .btn { padding: 16px 36px; font-size: 1rem; }

/* Sticky mobil-CTA */
.mobile-cta { display: none; }
@media (max-width: 720px) {
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 250, 245, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 30px -20px rgba(60, 40, 35, 0.25);
  }
  .mobile-cta a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 14px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: transform .15s ease;
  }
  .mobile-cta a:active { transform: scale(0.98); }
  .mobile-cta a svg { width: 18px; height: 18px; }
  .mobile-cta-call {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
    flex-basis: 35%;
    flex-grow: 0;
  }
  .mobile-cta-book {
    background: var(--cta);
    color: #fff;
  }
  body { padding-bottom: 72px; }
  .site-header { top: 0; }
}

/* Steps – Prosessen */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 64px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blush-deep) 15%, var(--blush-deep) 85%, transparent);
  z-index: 0;
}
.steps li {
  position: relative;
  z-index: 1;
  padding: 36px 26px 30px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.steps li:hover {
  transform: translateY(-3px);
  border-color: var(--blush-deep);
  box-shadow: var(--shadow);
}
.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: var(--blush);
  display: grid;
  place-items: center;
  color: var(--accent-deep);
  position: relative;
  z-index: 2;
}
.step-icon svg { width: 28px; height: 28px; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--accent);
  font-weight: 500;
  display: block;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}
.steps h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--ink);
}
.steps p {
  color: var(--ink-soft);
  font-size: 0.93rem;
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 820px) {
  .steps::before { display: none; }
}

/* Reviews carousel */
.reviews-carousel {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
.reviews-viewport {
  overflow: hidden;
  width: 100%;
}
.reviews-track {
  display: flex;
  gap: 28px;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: var(--accent-deep);
  opacity: 0.45;
  transition: opacity .2s ease;
  z-index: 2;
  line-height: 0;
}
.reviews-arrow:hover { opacity: 0.85; }
.reviews-arrow:active { transform: translateY(-50%) scale(0.92); }
.reviews-arrow svg { width: 22px; height: 44px; }
.reviews-arrow.hidden { opacity: 0; pointer-events: none; }
.reviews-prev { left: -32px; }
.reviews-next { right: -32px; }
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.reviews-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--blush-deep);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.reviews-dots button.active {
  background: var(--accent-deep);
  transform: scale(1.3);
}

/* Quotes */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.reviews-track.quotes {
  display: flex;
  grid-template-columns: none;
}
.reviews-track .quote {
  flex: 0 0 calc((100% - 56px) / 3);
  margin: 0;
}
@media (max-width: 819px) {
  .reviews-track .quote { flex: 0 0 calc((100% - 28px) / 2); }
}
@media (max-width: 599px) {
  .reviews-track .quote { flex: 0 0 100%; }
  .reviews-prev { left: -26px; }
  .reviews-next { right: -26px; }
}
.quote {
  margin: 0;
  padding: 36px 30px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  position: relative;
}
.quote::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--blush-deep);
  line-height: 1;
}
.quote-stars {
  color: #d4a341;
  font-size: 1rem;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}
.reviews-link {
  text-align: center;
  margin: 32px 0 0;
  font-size: 0.95rem;
}
.reviews-link a {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  font-weight: 500;
}
.reviews-link a:hover { color: var(--accent); }

.faq-cta {
  margin: 32px auto 0;
  text-align: center;
  max-width: 560px;
}
.faq-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--ink);
  margin: 0 0 14px;
  font-style: italic;
}

.quote blockquote {
  margin: 0 0 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
}
.quote figcaption {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* FAQ */
.section-faq {
  background: var(--bg-soft);
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(48px, 6vw, 80px);
}
.section-faq .section-head { margin-bottom: 2rem; }
.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.faq-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  height: fit-content;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item[open] {
  border-color: var(--blush-deep);
  box-shadow: 0 8px 30px -20px rgba(90, 55, 45, 0.2);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 22px;
  position: relative;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent-deep);
  transition: transform .3s ease;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--accent-deep); }
.faq-answer {
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.65;
}
.faq-answer p { margin: 0; }
.faq-answer p + p { margin-top: 0.7em; }
@media (max-width: 820px) {
  .faq { grid-template-columns: 1fr; gap: 10px; }
}

/* Contact */
.section-contact .grid-2 { align-items: start; }
.section-contact .stack { padding-top: 8px; }

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.contact-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.contact-label {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.contact-form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow);
}
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.field label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 96px; }
.form-note {
  margin: 12px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}
.contact-form .btn {
  width: 100%;
  padding: 18px 26px;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.field-consent { margin-bottom: 22px; }
.field label.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
  letter-spacing: normal;
  text-transform: none;
  cursor: pointer;
  margin-bottom: 0;
}
.field label.consent a { color: var(--ink-soft); }
.field label.consent a { text-decoration: underline; }
.consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent-deep);
  cursor: pointer;
}
.consent a { text-decoration: underline; }

/* Legal page */
.legal {
  max-width: 760px;
  margin: 0 auto;
}
.legal h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5em;
}
.legal h2 {
  font-size: 1.4rem;
  margin-top: 2.2em;
  margin-bottom: 0.6em;
}
.legal ul {
  padding-left: 20px;
  color: var(--ink-soft);
}
.legal ul li { padding: 4px 0; }
.legal p { color: var(--ink-soft); }
.legal .lede { color: var(--ink); font-size: 1.1rem; margin-bottom: 2em; }
.back-link {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #e9dcd5;
  padding: 60px 0 40px;
}
.site-footer .brand-main { color: #fff; font-size: 1.6rem; }
.footer-sub {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(233, 220, 213, 0.6);
  margin: 6px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: rgba(233, 220, 213, 0.85);
  font-size: 0.92rem;
}
.footer-nav a:hover { color: #fff; }
.copyright {
  text-align: right;
  color: rgba(233, 220, 213, 0.55);
  font-size: 0.82rem;
  margin: 0;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Responsive */
@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr; }
  .portrait { max-width: 460px; margin: 0 auto; }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .copyright { text-align: center; }
  .contact-list li { grid-template-columns: 1fr; gap: 2px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .nav-list.open { max-height: 420px; }
  .nav-list li {
    border-bottom: 1px solid var(--line);
  }
  .nav-list li:last-child { border-bottom: 0; padding-top: 10px; }
  .nav-list a { display: block; padding: 14px 0; }
  .nav-list a.btn { display: inline-flex; }
  .facts { grid-template-columns: 1fr 1fr; }
  h1 br { display: none; }
  .hero-inner { width: 100%; }
  .lede { font-size: 1.05rem; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { flex: 1; justify-content: center; }
}
