/* ==========================================================================
   May Kosmetikstudio – Design System
   Palette/Typografie: siehe phase3_strategie.md (Design-Vorschlag, keine
   verifizierte Kundenmarke – Freigabe durch Auftraggeberin ausstehend)
   ========================================================================== */

:root {
  --color-ivory: #faf6f1;
  --color-sand: #f1e7dd;
  --color-sand-dark: #e6d8c8;
  --color-ink: #2b2420;
  --color-ink-soft: #55483d;
  --color-terracotta: #b5674b;
  --color-terracotta-dark: #984f38;
  --color-sage: #6b7b63;
  --color-sage-dark: #566454;
  --color-gold: #c89b5c;
  --color-white: #ffffff;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --radius-md: 14px;
  --radius-lg: 26px;
  --shadow-soft: 0 20px 45px -20px rgba(43, 36, 32, 0.35);
  --shadow-card: 0 12px 30px -18px rgba(43, 36, 32, 0.28);

  --container: 1180px;
  --space-section: clamp(4rem, 8vw, 7.5rem);

  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
  max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.6em;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  background: var(--color-ink);
  color: var(--color-ivory);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 8px 8px;
  z-index: 200;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.9em 1.7em;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

/* Only the primary call-to-action is a full pill, so it reads as the one
   unmistakable action per view instead of every button looking the same. */
.btn-primary {
  background: var(--color-terracotta);
  color: var(--color-white);
  box-shadow: var(--shadow-card);
  border-radius: 999px;
}

.btn-primary:hover {
  background: var(--color-terracotta-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border-color: currentColor;
  color: var(--color-ink);
}

.btn-secondary:hover {
  background: var(--color-ink);
  color: var(--color-ivory);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: rgba(250, 246, 241, 0.12);
  border-color: rgba(250, 246, 241, 0.6);
  color: var(--color-ivory);
  backdrop-filter: blur(6px);
}

.btn-ghost-light:hover {
  background: var(--color-ivory);
  color: var(--color-ink);
}

.btn-whatsapp {
  background: var(--color-sage-dark);
  color: var(--color-white);
}

.btn-whatsapp:hover {
  background: #3d4636;
  transform: translateY(-2px);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 241, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43, 36, 32, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.85rem;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-ink);
  flex-shrink: 0;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  white-space: nowrap;
}

.brand-cjk {
  font-size: 0.85rem;
  color: var(--color-terracotta);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.1rem);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.1rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a:not(.btn) {
  text-decoration: none;
  color: var(--color-ink-soft);
  font-weight: 600;
  font-size: 0.96rem;
  white-space: nowrap;
  padding: 0.4rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:not(.btn):hover,
.main-nav a:not(.btn):focus-visible,
.main-nav a[aria-current="page"] {
  color: var(--color-terracotta);
  border-color: var(--color-terracotta);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--color-ink);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-ink);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: 0 0 0 30%;
    top: 68px;
    background: var(--color-ivory);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-soft);
    height: calc(100vh - 68px);
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .main-nav ul li a:not(.btn) {
    display: block;
    padding: 0.9rem 0.25rem;
    border-bottom: 1px solid rgba(43, 36, 32, 0.08);
  }

  .main-nav .nav-cta {
    margin-top: 1rem;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: min(100svh, 880px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  color: var(--color-ivory);
}

.hero-bg {
  position: absolute;
  inset: -8% -4% -4% -4%;
  z-index: -2;
  will-change: transform;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(43, 36, 32, 0.55) 0%, rgba(43, 36, 32, 0.35) 35%, rgba(43, 36, 32, 0.82) 100%);
}

.hero-line-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.hero-line-layer path {
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  opacity: 0.9;
  animation: draw-line 3.2s 0.4s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.hero-line-layer circle {
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 1.6;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  opacity: 0.9;
  animation: draw-line 1.4s 3.2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.hero-station {
  position: absolute;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  color: var(--color-ivory);
  opacity: 0;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  animation: station-in 0.8s ease forwards;
}

.hero-station::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -14px;
  translate: -50% 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold);
}

.hero-station--1 { top: 11%; left: 14%; animation-delay: 0.9s; }
.hero-station--2 { top: 5%; left: 48%; animation-delay: 1.7s; }
.hero-station--3 { top: 15%; left: 82%; animation-delay: 2.5s; }

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

@keyframes station-in {
  from { opacity: 0; transform: translate(-50%, -35%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-line-layer path,
  .hero-line-layer circle,
  .hero-station {
    animation: none;
    opacity: 1;
    stroke-dashoffset: 0;
  }

  .hero-bg {
    transform: none !important;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(5rem, 14vh, 8rem) clamp(2.5rem, 6vh, 4rem);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 4.1rem);
  max-width: 15ch;
  color: var(--color-white);
  margin-bottom: 0.5em;
}

.hero-lede {
  max-width: 46ch;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  color: rgba(250, 246, 241, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2.4rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(250, 246, 241, 0.35);
  border-radius: var(--radius-lg);
  background: rgba(43, 36, 32, 0.35);
  backdrop-filter: blur(6px);
  font-size: 0.92rem;
  width: fit-content;
}

.badge-ring {
  position: absolute;
  inset: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  overflow: visible;
  pointer-events: none;
}

.badge-ring rect {
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 1.4;
  rx: 14;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: draw-line 1.3s 3.35s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@media (prefers-reduced-motion: reduce) {
  .badge-ring rect {
    animation: none;
    stroke-dashoffset: 0;
  }
}

@media (max-width: 700px) {
  .badge-ring { display: none; }
}

.hero-badge strong {
  color: var(--color-gold);
  font-family: var(--font-display);
}

.scroll-cue {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(250, 246, 241, 0.55);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}

.scroll-cue span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-gold);
  animation: scroll-cue 1.8s ease-in-out infinite;
}

@keyframes scroll-cue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(12px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue span { animation: none; }
}

@media (max-width: 700px) {
  .hero-line-layer,
  .hero-station { display: none; }
  .scroll-cue { display: none; }
}

/* Short viewports (e.g. laptops with reduced browser height): the hero
   content block grows relative to hero height and can push into the
   station-label zone, so hide the decorative line there too. */
@media (max-height: 720px) {
  .hero-line-layer,
  .hero-station { display: none; }
}

/* ---------- Sections ---------- */

section {
  padding-block: var(--space-section);
}

.section-alt {
  background: var(--color-sand);
}

.section-head {
  max-width: 62ch;
  margin-bottom: clamp(2.2rem, 5vw, 3.5rem);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 0.8rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Intro / USP ---------- */

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
}

.intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-stat {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: rgba(250, 246, 241, 0.94);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow-card);
}

.intro-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-terracotta);
}

.intro-stat span {
  font-size: 0.82rem;
  color: var(--color-ink-soft);
}

@media (max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .intro-media {
    order: -1;
    aspect-ratio: 16 / 10;
  }
}

/* ---------- Service worlds ---------- */

.worlds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.world-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.world-card:hover,
.world-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.world-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.world-card:hover img {
  transform: scale(1.06);
}

.world-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 36, 32, 0) 35%, rgba(43, 36, 32, 0.88) 100%);
}

.world-card-body {
  position: relative;
  z-index: 1;
  padding: 1.8rem;
  color: var(--color-ivory);
}

.world-card-body .eyebrow {
  color: var(--color-gold);
}

.world-card-body h3 {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.world-card-body p {
  font-size: 0.94rem;
  color: rgba(250, 246, 241, 0.88);
  margin-bottom: 1rem;
}

.world-card-body a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

@media (max-width: 900px) {
  .worlds-grid {
    grid-template-columns: 1fr;
  }
  .world-card {
    min-height: 340px;
  }
}

/* ---------- Values ---------- */

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-card);
}

.value-card .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  color: var(--color-terracotta);
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--color-ink-soft);
  margin: 0;
}

@media (max-width: 960px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ---------- About teaser ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  border-left: 2px solid var(--color-sand-dark);
}

.timeline li {
  position: relative;
  padding: 0 0 1.4rem 1.6rem;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -6.5px;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-terracotta);
}

.timeline strong {
  display: block;
  font-family: var(--font-display);
  color: var(--color-terracotta);
}

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

/* ---------- Reviews ---------- */

.review-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.review-score {
  text-align: center;
  min-width: 160px;
}

.review-score strong {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-terracotta);
  display: block;
}

.review-stars {
  color: var(--color-gold);
  font-size: 1.3rem;
  letter-spacing: 0.15em;
}

.review-source {
  font-size: 0.82rem;
  color: var(--color-ink-soft);
  margin-top: 0.4rem;
}

.review-quote {
  flex: 1;
  min-width: 240px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-ink-soft);
  font-style: italic;
}

/* ---------- Pricing ---------- */

.price-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.2rem;
}

.price-tab {
  border: 1.5px solid var(--color-sand-dark);
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 0.6rem 1.3rem;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  color: var(--color-ink-soft);
  transition: all 0.2s ease;
}

.price-tab[aria-selected="true"] {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: var(--color-white);
}

.price-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  background: var(--color-white);
}

table.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 460px;
}

.price-table caption {
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.2rem;
  padding: 1.3rem 1.5rem 0.6rem;
  color: var(--color-ink);
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid var(--color-sand);
  font-size: 0.96rem;
}

.price-table thead th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-ink-soft);
  border-bottom: 2px solid var(--color-sand-dark);
}

.price-table td.price {
  font-weight: 700;
  color: var(--color-terracotta);
  white-space: nowrap;
}

.price-note {
  font-size: 0.86rem;
  color: var(--color-ink-soft);
  padding: 1rem 1.5rem 1.4rem;
  margin: 0;
}

/* Below 640px, tables collapse into stacked label/value cards instead of
   scrolling horizontally, so the price (the whole point of the page) is
   never pushed out of view. */
@media (max-width: 640px) {
  .price-table-wrap {
    overflow-x: visible;
  }

  table.price-table {
    min-width: 0;
    width: 100%;
  }

  .price-table thead {
    display: none;
  }

  .price-table, .price-table tbody, .price-table tr, .price-table td {
    display: block;
    width: 100%;
  }

  .price-table tr {
    padding: 0.95rem 1.35rem;
    border-bottom: 1px solid var(--color-sand);
  }

  .price-table tr:last-child {
    border-bottom: none;
  }

  .price-table td {
    border-bottom: none;
    padding: 0.2rem 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.94rem;
  }

  .price-table td::before {
    content: attr(data-label);
    font-weight: 600;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-ink-soft);
  }

  .price-table td:first-child {
    font-family: var(--font-display);
    font-size: 1.08rem;
    color: var(--color-ink);
    padding-top: 0.1rem;
    padding-bottom: 0.4rem;
  }

  .price-table td:first-child::before {
    content: none;
  }
}

.price-section {
  margin-bottom: 3rem;
}

.price-section:last-child {
  margin-bottom: 0;
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-terracotta);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: -3px;
}

.faq-answer {
  padding: 0 1.5rem 1.3rem;
  color: var(--color-ink-soft);
  font-size: 0.96rem;
}

/* ---------- Contact / Map ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.info-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-card);
}

.info-list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.info-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.info-list .icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-terracotta);
  margin-top: 2px;
}

.info-list a {
  text-decoration: none;
  font-weight: 600;
}

.info-list a:hover {
  color: var(--color-terracotta);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.6rem;
}

.hours-table td {
  padding: 0.35rem 0;
  font-size: 0.95rem;
  border-bottom: 1px dashed var(--color-sand-dark);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
  background: var(--color-sand);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.9rem;
  padding: 2rem;
  background: var(--color-sand);
}

.map-fallback .icon {
  width: 40px;
  height: 40px;
  color: var(--color-terracotta);
}

.contact-form {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.4rem;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row.two-col {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--color-sand-dark);
  border-radius: 10px;
  background: var(--color-ivory);
  color: var(--color-ink);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 1px;
  border-color: var(--color-terracotta);
}

.form-note {
  font-size: 0.85rem;
  color: var(--color-ink-soft);
}

.booking-placeholder {
  border: 1.5px dashed var(--color-sand-dark);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  text-align: center;
  color: var(--color-ink-soft);
  background: var(--color-sand);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row.two-col {
    grid-template-columns: 1fr;
  }
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--color-ink);
  color: var(--color-ivory);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: var(--color-white);
  margin-bottom: 0.3rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.cta-band p {
  color: rgba(250, 246, 241, 0.8);
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

/* ---------- Legal notice banner ---------- */

.legal-banner {
  background: var(--color-gold);
  color: var(--color-ink);
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
}

.legal-content {
  max-width: 780px;
  margin: 0 auto var(--space-section);
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.3rem;
}

.legal-content h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
}

.legal-content p, .legal-content li {
  color: var(--color-ink-soft);
  font-size: 0.98rem;
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  padding-block: clamp(3rem, 8vh, 5rem) clamp(2rem, 6vh, 3rem);
  background: linear-gradient(180deg, var(--color-sand) 0%, var(--color-ivory) 100%);
}

.page-hero .eyebrow {
  margin-bottom: 0.6rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  max-width: 22ch;
}

.page-hero p {
  max-width: 60ch;
  color: var(--color-ink-soft);
  font-size: 1.05rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2.5rem;
}

.page-hero-media {
  width: min(240px, 30vw);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 860px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
  }
  .page-hero-media {
    display: none;
  }
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--color-ink-soft);
  margin-bottom: 1rem;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--color-terracotta);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--color-ink);
  color: rgba(250, 246, 241, 0.85);
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .brand-mark {
  color: var(--color-white);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(250, 246, 241, 0.65);
  max-width: 34ch;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(250, 246, 241, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
}

.footer-social .icon {
  width: 18px;
  height: 18px;
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250, 246, 241, 0.55);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  text-decoration: none;
  font-size: 0.94rem;
  color: rgba(250, 246, 241, 0.85);
}

.footer-col a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 241, 0.15);
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(250, 246, 241, 0.55);
}

.footer-bottom a {
  text-decoration: none;
  color: rgba(250, 246, 241, 0.7);
}

.footer-bottom a:hover {
  color: var(--color-gold);
}

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

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
