/* ===========================================================================
   Madeira Comfort Stay — v2
   Mobile-first · Sommerliche Palette (aqua / coral / sun / cream)
   =========================================================================== */

:root {
  color-scheme: light;

  /* ------- BASE PALETTE (Sommer / Atlantik) ---------------------------- */
  --paper:        #fefaf0;  /* warm cream */
  --paper-2:      #fff3dc;  /* soft sand */
  --paper-warm:   #ffffff;  /* card white */
  --paper-deep:   #fbe9c1;  /* deeper sand */
  --ink:          #163b41;  /* deep teal-ink, not pure black */
  --ink-soft:     #2f5860;
  --muted:        #6c8285;
  --line:         rgba(22, 59, 65, .12);
  --line-soft:    rgba(22, 59, 65, .06);

  /* Brand accents — happy & summery */
  --aqua:         #1cb3a7;   /* ocean turquoise (primary brand) */
  --aqua-deep:    #0d8a80;
  --aqua-soft:    #cfeeea;
  --coral:        #ff6e57;   /* sunset coral (warm accent) */
  --coral-soft:   #ffd9d1;
  --sun:          #f5b13c;   /* mango sun */
  --sun-soft:     #ffe4ad;
  --sky:          #79c8df;   /* soft sky */
  --green:        #2b8b7f;   /* greener variant of aqua */

  /* Shadow & elevation */
  --shadow-s: 0 1px 2px rgba(13, 25, 23, .05), 0 4px 14px rgba(13, 25, 23, .06);
  --shadow-m: 0 8px 24px rgba(13, 25, 23, .08), 0 2px 6px rgba(13, 25, 23, .05);
  --shadow-l: 0 24px 60px rgba(13, 25, 23, .18), 0 6px 16px rgba(13, 25, 23, .08);

  /* Type */
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:  "Manrope", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Density — controlled by Tweaks */
  --dens: 1;

  /* Mobile-first sizes */
  --container: 1280px;
  --pad-x: 20px;        /* gutter on phones */
  --section-y: 64px;    /* vertical rhythm */
  --radius: 18px;
  --radius-s: 10px;
  --tap: 48px;          /* minimum tap target */
}

/* Up at tablet */
@media (min-width: 640px) {
  :root {
    --pad-x: 32px;
    --section-y: 84px;
  }
}
@media (min-width: 960px) {
  :root {
    --pad-x: 48px;
    --section-y: 112px;
  }
}
@media (min-width: 1280px) {
  :root {
    --pad-x: 56px;
    --section-y: 128px;
  }
}

/* PALETTE — Atlantik (cooler) */
[data-palette="atlantik"] {
  --paper:        #f4faf9;
  --paper-2:      #e6f4f2;
  --paper-deep:   #cdebe6;
  --aqua:         #0d9d96;
  --aqua-deep:    #08736e;
  --coral:        #ff8a6a;
  --sun:          #ffc24a;
  --ink:          #0c2d33;
}

/* PALETTE — Volcán (warmer) */
[data-palette="volcan"] {
  --paper:        #fff7e7;
  --paper-2:      #ffeac2;
  --paper-deep:   #ffd789;
  --aqua:         #2bb39e;
  --aqua-deep:    #16887a;
  --coral:        #f44d36;
  --sun:          #f99a23;
  --ink:          #2a1a0e;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
.sr-only { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ============================= TYPE ================================== */

.serif    { font-family: var(--serif); font-weight: 500; letter-spacing: -.01em; }
.mono     { font-family: var(--mono); font-size: .85em; letter-spacing: .04em; }
.uppercase {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--sans);
}

/* Display: phone first → grows */
.h-display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 44px;
  line-height: .95;
  letter-spacing: -.02em;
  margin: 0;
}
.h-display em {
  font-style: italic;
  font-weight: 400;
  color: var(--coral);
  font-variation-settings: "SOFT" 100;
}
@media (min-width: 640px) { .h-display { font-size: 64px; } }
@media (min-width: 960px) { .h-display { font-size: 84px; } }
@media (min-width: 1280px){ .h-display { font-size: 104px; } }

.h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -.015em;
  margin: 0;
}
.h1 em { font-style: italic; font-weight: 400; color: var(--coral); }
@media (min-width: 640px) { .h1 { font-size: 42px; } }
@media (min-width: 960px) { .h1 { font-size: 56px; } }

.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0;
}
@media (min-width: 640px) { .h2 { font-size: 30px; } }
@media (min-width: 960px) { .h2 { font-size: 36px; } }

.kicker {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--aqua);
  border-radius: 2px;
}

.lead {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
@media (min-width: 640px) { .lead { font-size: 18px; } }
@media (min-width: 960px) { .lead { font-size: 19px; } }

.copy {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}
.copy + .copy { margin-top: 12px; }

/* ============================= LAYOUT ================================ */

.app {
  position: relative;
  min-height: 100vh;
  background: var(--paper);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section { padding-block: var(--section-y); }
.rule { height: 1px; background: var(--line); margin: 0; border: 0; }

/* ============================= NAV / HEADER ========================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px var(--pad-x);
  color: var(--ink);
  transition: background .3s ease, color .3s ease, padding .3s ease, border-color .3s ease, box-shadow .3s ease;
  border-bottom: 1px solid transparent;
  background: rgba(254, 250, 240, .85);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
}
.nav.is-light {
  color: var(--paper-warm);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav.is-scrolled {
  background: rgba(254, 250, 240, .92);
  color: var(--ink);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border-color: var(--line);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--paper-warm);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
}
.brand-logo {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
  margin-right: 4px;
}
@media (min-width: 480px) { .brand-logo { height: 40px; } }
@media (min-width: 960px) { .brand-logo { height: 46px; } }
.brand-text {
  display: none;
  gap: 1px;
  min-width: 0;
}
@media (min-width: 640px) { .brand-text { display: grid; } }
.brand-text strong {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  letter-spacing: -.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-text small {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  opacity: .7;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 960px) {
  .brand-mark { width: 40px; height: 40px; font-size: 22px; }
  .brand-text strong { font-size: 17px; }
  .brand-text small { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; opacity: .6; }
}

.nav-links {
  display: none;
}
@media (min-width: 960px) {
  .nav { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; padding: 16px var(--pad-x); }
  .nav.is-scrolled { padding-block: 12px; }
  .nav-links {
    display: flex;
    justify-content: center;
    gap: 2px;
  }
  .nav-links a {
    position: relative;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    opacity: .82;
  }
  .nav-links a:hover { opacity: 1; background: color-mix(in oklch, currentColor 10%, transparent); }
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
  flex: 0 0 auto;
}
@media (max-width: 959px) {
  /* Distribute middle elements (lang + book button) evenly on mobile */
  .nav { padding-left: 14px; padding-right: 14px; }
  .brand { flex: 0 0 auto; }
  .menu-toggle { flex: 0 0 auto; }
  .nav-cta { flex: 1 1 auto; justify-content: center; gap: 14px; }
}
.lang-switch {
  display: inline-flex;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  padding: 2px;
  opacity: .85;
}
.lang-switch button {
  background: transparent;
  border: 0;
  color: inherit;
  font-size: 11px;
  letter-spacing: .06em;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 999px;
}
.lang-switch button.is-active { background: currentColor; }
.lang-switch button.is-active span { color: var(--paper); mix-blend-mode: difference; }

/* Hide the nav "Anfragen" button on mobile — sits in mobile menu instead */
.nav-cta-book {
  min-height: 32px;
  padding: 0 12px;
  font-size: 12.5px;
  font-weight: 700;
  border-width: 0;
}
@media (min-width: 640px) { .nav-cta-book { min-height: 36px; padding: 0 14px; font-size: 13px; } }

.menu-toggle {
  width: var(--tap); height: var(--tap);
  border-radius: 8px;
  border: 0;
  background: transparent;
  color: inherit;
  display: grid; place-items: center;
  cursor: pointer;
}
@media (min-width: 960px) { .menu-toggle { display: none; } }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block;
  width: 18px; height: 2px;
  background: currentColor;
  border-radius: 1px;
  position: relative;
  transition: transform .25s, top .25s, opacity .25s;
}
.menu-toggle span::before,
.menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after  { top:  6px; }
.menu-toggle.is-open span { background: transparent; }
.menu-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.is-open span::after  { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 39;
  background: var(--paper);
  padding: 84px var(--pad-x) 32px;
  display: grid;
  align-content: start;
  gap: 4px;
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1), visibility 0s linear .35s;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
}
.mobile-menu.is-open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform .35s cubic-bezier(.4,0,.2,1), visibility 0s linear 0s;
}
@media (min-width: 960px) { .mobile-menu { display: none; } }
.mobile-menu a {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -.01em;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu a::after {
  content: "→";
  color: var(--aqua);
  font-family: var(--sans);
  font-size: 20px;
}
.mobile-menu .menu-foot {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.mobile-menu .menu-foot a {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  border: 0;
  padding: 8px 0;
  color: var(--ink-soft);
}
.mobile-menu .menu-foot a::after { display: none; }
.mobile-menu-lang {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: var(--paper-2);
  border-radius: 999px;
  margin-bottom: 18px;
  align-self: flex-start;
}
.mobile-menu-lang-btn {
  border: 0;
  background: transparent;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--ink-soft);
  cursor: pointer;
  min-width: 44px;
  min-height: 36px;
}
.mobile-menu-lang-btn.is-active {
  background: var(--ink);
  color: var(--paper-warm);
}

/* ============================= BUTTONS =============================== */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--tap);
  padding: 0 22px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -.005em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary  { background: var(--coral);    color: var(--paper-warm); }
.btn-primary:hover { background: color-mix(in oklch, var(--coral) 85%, black 15%); box-shadow: 0 8px 22px color-mix(in oklch, var(--coral) 30%, transparent); }

.btn-aqua     { background: var(--aqua);     color: var(--paper-warm); }
.btn-aqua:hover { background: var(--aqua-deep); box-shadow: 0 8px 22px color-mix(in oklch, var(--aqua) 30%, transparent); }

.btn-sun      { background: var(--sun);      color: #2a1a0a; }
.btn-sun:hover { background: color-mix(in oklch, var(--sun) 85%, var(--ink) 15%); }

.btn-ink      { background: var(--ink);      color: var(--paper-warm); }
.btn-ink:hover { background: color-mix(in oklch, var(--ink) 85%, black 15%); }

.btn-ghost    { border-color: currentColor; color: inherit; background: transparent; }
.btn-ghost:hover { background: color-mix(in oklch, currentColor 8%, transparent); }

.btn-tiny  { min-height: 36px; padding: 0 14px; font-size: 12.5px; }
.btn-icon  { width: var(--tap); padding: 0; }
.btn-icon.btn-tiny { width: 36px; }
.btn-block { width: 100%; }

.arrow {
  width: 14px; height: 14px;
  display: inline-block;
  background: currentColor;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12h14M13 6l6 6-6 6' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12h14M13 6l6 6-6 6' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
  flex-shrink: 0;
}

/* ============================= HERO ================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: end;
  padding: 96px var(--pad-x) 24px;
  color: var(--paper-warm);
  overflow: hidden;
  isolation: isolate;
  gap: 24px;
}
@media (min-width: 640px) {
  .hero { padding-bottom: 40px; gap: 32px; }
}
@media (min-width: 960px) {
  .hero { padding: 120px var(--pad-x) 56px; gap: 48px; }
}

.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 2s ease; }
.hero.is-loaded .hero-media img { transform: scale(1); }
.hero-shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 28, 32, .35) 0%, rgba(8, 28, 32, 0) 35%, rgba(8, 28, 32, 0) 55%, rgba(8, 28, 32, .85) 100%),
    linear-gradient(100deg, rgba(8, 28, 32, .45) 0%, rgba(8, 28, 32, 0) 55%);
}

.hero-meta {
  position: absolute;
  top: calc(72px + env(safe-area-inset-top, 0));
  left: var(--pad-x);
  right: var(--pad-x);
  display: none;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .8;
}
@media (min-width: 640px) { .hero-meta { display: flex; } }
.hero-meta .coord { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta .coord span { display: inline-flex; gap: 6px; align-items: center; }
.hero-meta .coord span::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sun);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.3fr 1fr; gap: clamp(24px, 4vw, 64px); }
}

.hero-headline { max-width: 100%; }
.hero-headline .h-display { max-width: 13ch; }
.hero-headline .kicker { color: var(--sun); margin-bottom: 14px; }
.hero-headline .kicker::before { background: var(--sun); }
@media (min-width: 640px) { .hero-headline .kicker { margin-bottom: 20px; } }

.hero-sub {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(254, 250, 240, .9);
  margin: 18px 0 0;
  max-width: 38ch;
}
@media (min-width: 640px) { .hero-sub { font-size: 18px; margin-top: 24px; } }

.hero-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.hero-chip {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--paper-warm);
}
.hero-chip strong { color: var(--sun); font-weight: 700; margin-right: 4px; }

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.hero-actions .btn { flex: 1 1 auto; }
@media (min-width: 480px) {
  .hero-actions .btn { flex: 0 0 auto; }
}

/* HERO availability widget */
.availability {
  background: var(--paper-warm);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-l);
  display: grid;
  gap: 12px;
  width: 100%;
}
@media (min-width: 640px) {
  .availability { padding: 20px; }
}
@media (min-width: 960px) {
  .availability {
    max-width: 440px;
    justify-self: end;
  }
}

.availability-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.availability-head .uppercase { color: var(--coral); }
.availability-head small { font-family: var(--mono); font-size: 11px; color: var(--muted); }

.date-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius-s);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.date-field {
  background: var(--paper-warm);
  padding: 10px 14px;
  display: grid;
  gap: 4px;
  text-align: left;
  border: 0;
  color: inherit;
  transition: background .2s;
  min-height: var(--tap);
}
.date-field:hover { background: var(--paper); }
.date-field.is-active { background: var(--paper); box-shadow: inset 0 0 0 2px var(--aqua); }
.date-field .uppercase { color: var(--muted); }
.date-field .val {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.date-field .val small {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}
.date-field.is-empty .val { color: var(--muted); font-style: italic; }

.guest-field {
  display: grid;
  gap: 4px;
  padding: 10px 14px;
  background: var(--paper-warm);
  border-radius: var(--radius-s);
  border: 1px solid var(--line);
}
.guest-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 36px;
}
.guest-stepper button {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--paper-warm);
  font-size: 16px;
  display: grid; place-items: center;
  color: var(--ink);
  font-weight: 700;
}
.guest-stepper button:disabled { opacity: .35; cursor: not-allowed; }
.guest-stepper .num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.avail-cta { width: 100%; min-height: 50px; }

/* CALENDAR POPOVER */
.cal-pop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-l);
  padding: 14px;
  z-index: 5;
}
.cal-pop-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.cal-pop-head h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-cell {
  height: 36px;
  min-width: 0;
  display: grid;
  place-items: center;
  font-size: 13px;
  border: 0;
  background: transparent;
  color: inherit;
  border-radius: 6px;
  position: relative;
  font-weight: 500;
  padding: 0;
}
.cal-cell.head {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.cal-cell.disabled { opacity: .3; pointer-events: none; }
.cal-cell.unavailable { color: var(--muted); text-decoration: line-through; pointer-events: none; }
.cal-cell.in-range { background: var(--aqua-soft); border-radius: 0; }
.cal-cell.start { background: var(--aqua); color: var(--paper-warm); border-radius: 6px 0 0 6px; font-weight: 700; }
.cal-cell.end { background: var(--aqua); color: var(--paper-warm); border-radius: 0 6px 6px 0; font-weight: 700; }
.cal-cell.start.end { border-radius: 6px; }
.cal-cell.today { box-shadow: inset 0 0 0 1.5px var(--coral); }
.cal-cell:hover:not(.disabled):not(.unavailable):not(.start):not(.end):not(.head) { background: var(--aqua-soft); }

/* ============================= INTRO BAND ============================ */

.intro {
  background: linear-gradient(135deg, var(--aqua) 0%, var(--aqua-deep) 100%);
  color: var(--paper-warm);
  padding: 48px var(--pad-x);
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .intro { padding-block: 64px; } }
@media (min-width: 960px) { .intro { padding-block: 88px; } }

.intro::after {
  /* sun decoration */
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sun) 0%, transparent 60%);
  opacity: .35;
  pointer-events: none;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .intro-grid { grid-template-columns: 1.4fr 1fr; gap: clamp(32px, 5vw, 80px); }
}
.intro-grid p {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: -.015em;
  margin: 0;
}
@media (min-width: 640px) { .intro-grid p { font-size: 30px; } }
@media (min-width: 960px) { .intro-grid p { font-size: 38px; } }
.intro-grid p em {
  font-style: italic;
  color: var(--sun);
  font-weight: 400;
}

.intro-credits {
  display: grid;
  gap: 14px;
}
.credit {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
}
.credit-img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(254, 250, 240, .3);
}
.credit-name { font-weight: 700; font-size: 14.5px; }
.credit-role { font-size: 12.5px; opacity: .85; }

/* ============================= STUDIOS =============================== */

.studios { background: var(--paper); }

.studios-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: end;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .studios-head { grid-template-columns: 1fr auto; gap: 32px; margin-bottom: 56px; }
  .studios-head .lead { max-width: 36ch; text-align: left; }
}

/* Tabs: scrollable on mobile */
.studio-tabs {
  display: flex;
  gap: 6px;
  margin: 0 calc(-1 * var(--pad-x)) 24px;
  padding: 0 var(--pad-x) 8px;
  position: relative;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid var(--line);
}
.studio-tabs::-webkit-scrollbar { display: none; }
@media (min-width: 640px) {
  .studio-tabs { margin-inline: 0; padding-inline: 0; gap: 4px; flex-wrap: wrap; overflow: visible; }
}
.studio-tab {
  flex-shrink: 0;
  padding: 12px 4px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: color .2s;
  white-space: nowrap;
}
.studio-tab:hover { color: var(--ink); }
.studio-tab.is-active { color: var(--ink); }
.studio-tab.is-active::after {
  content: "";
  position: absolute;
  bottom: -9px; left: 0; right: 0;
  height: 2.5px;
  background: var(--coral);
  border-radius: 2px;
}
.studio-tab .badge {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--ink-soft);
  text-transform: uppercase;
}
.studio-tab.is-active .badge { background: var(--coral); color: var(--paper-warm); }

.studio-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 960px) {
  .studio-stage { grid-template-columns: 1.35fr 1fr; gap: clamp(28px, 3.5vw, 56px); }
}

.studio-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.studio-gallery-main {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-2);
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
.studio-gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.studio-gallery-main:hover img { transform: scale(1.03); }
.studio-gallery-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(254, 250, 240, .96);
  color: var(--aqua-deep);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  transition: transform .25s ease;
}
.studio-gallery-main:hover .studio-gallery-tag {
  transform: translateX(4px);
  background: var(--aqua-deep);
  color: var(--paper-warm);
}

.studio-detail {
  display: grid;
  gap: 20px;
}
.studio-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.studio-title-row .h1 { font-size: 32px; }
@media (min-width: 640px) { .studio-title-row .h1 { font-size: 38px; } }
@media (min-width: 960px) { .studio-title-row .h1 { font-size: 46px; } }

.studio-price {
  text-align: right;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.studio-price strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-top: 2px;
  text-transform: none;
}
@media (min-width: 640px) { .studio-price strong { font-size: 36px; } }

.studio-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  color: var(--coral);
  margin: 0;
  line-height: 1.3;
}
@media (min-width: 640px) { .studio-tagline { font-size: 22px; } }

.studio-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.studio-meta div {
  padding: 14px 0;
  border-right: 1px solid var(--line);
}
.studio-meta div:last-child { border-right: 0; padding-left: 14px; }
.studio-meta div:nth-child(2) { padding-left: 14px; }
.studio-meta .uppercase { color: var(--muted); }
.studio-meta strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  display: block;
  line-height: 1.1;
  margin-top: 4px;
}
@media (min-width: 640px) { .studio-meta strong { font-size: 22px; } }

.amenities {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px 24px;
  margin: 0;
  padding: 0;
}
@media (min-width: 480px) { .amenities { grid-template-columns: 1fr 1fr; } }
.amenities li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--ink-soft);
}
.amenities li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--aqua);
  margin-top: 7px;
  flex-shrink: 0;
}

.studio-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.studio-cta .btn { flex: 1 1 160px; }

/* ============================= DIRECT BOOKING PERK BAND ============== */

.perk-band {
  background:
    linear-gradient(135deg, color-mix(in oklch, var(--sun) 22%, var(--paper-warm)) 0%, var(--paper-warm) 100%);
  position: relative;
  overflow: hidden;
}
.perk-band::after {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--coral) 0%, transparent 60%);
  opacity: .14;
  pointer-events: none;
}
.perk-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 768px) { .perk-grid { grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 5vw, 64px); } }

.perk-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-l);
  background: var(--paper-2);
}
.perk-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.perk-photo-tag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--coral);
  color: var(--paper-warm);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 16px color-mix(in oklch, var(--coral) 30%, transparent);
}
.perk-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.perk-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ============================= STRIP ================================= */

.strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) { .strip { grid-template-columns: repeat(4, 1fr); } }
.strip > div {
  padding: 24px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strip > div:nth-child(2n) { border-right: 0; }
@media (min-width: 768px) {
  .strip > div { border-bottom: 0; border-right: 1px solid var(--line); padding: 28px 24px; }
  .strip > div:nth-child(2n) { border-right: 1px solid var(--line); }
  .strip > div:last-child { border-right: 0; }
}
.strip .uppercase { color: var(--muted); margin-bottom: 8px; display: block; }
.strip strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  display: block;
  letter-spacing: -.01em;
}
@media (min-width: 640px) { .strip strong { font-size: 28px; } }
.strip small {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* ============================= TOURS ================================= */

.tours { background: var(--paper-2); position: relative; }

.tours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 960px) { .tours-grid { grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); } }

.tours-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
}
.tours-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Tours collage: 3-column × 4-row image grid linking to external gallery */
.tours-collage {
  position: relative;
  display: grid;
  gap: 14px;
}
.tours-collage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--paper-2);
}
.tours-collage-cell {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  animation: collage-fade .6s ease forwards;
  transition: filter .35s ease, transform .35s ease;
  display: block;
}
@keyframes collage-fade {
  to { opacity: 1; }
}
.tours-collage-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.tours-collage-cell:hover { z-index: 2; }
.tours-collage-cell:hover img { transform: scale(1.08); }
.tours-collage-grid:hover .tours-collage-cell:not(:hover) { filter: brightness(.7) saturate(.85); }

.tours-collage .tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--sun);
  color: #2a1a0a;
  padding: 8px 14px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 999px;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.tours-collage-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--aqua-deep);
  align-self: flex-end;
  margin-top: 4px;
  text-decoration: none;
}
.tours-collage-link:hover { color: var(--coral); }
.tours-collage .quote {
  position: relative;
  margin-top: 6px;
  padding: 16px 18px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
}
.tours-collage .quote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 540px) {
  .tours-collage-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
}
.tours-photo .tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--sun);
  color: #2a1a0a;
  padding: 8px 14px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 999px;
}
.tours-photo .quote {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  background: rgba(254, 250, 240, .94);
  backdrop-filter: blur(8px);
  padding: 16px 18px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
  border-radius: 12px;
}
.tours-photo .quote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

.tour-options {
  margin-top: 24px;
  display: grid;
  gap: 0;
}
.tour-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  align-items: center;
  cursor: pointer;
  transition: background .2s, padding .2s;
}
.tour-row:hover { background: var(--paper-warm); padding-left: 12px; padding-right: 12px; border-radius: 8px; }
.tour-row:last-child { border-bottom: 1px solid var(--line); }
.tour-row h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 640px) { .tour-row h3 { font-size: 22px; } }
.tour-row h3 .num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--aqua-deep);
  background: var(--aqua-soft);
  padding: 3px 7px;
  border-radius: 4px;
}
.tour-row p { margin: 0; font-size: 14px; color: var(--muted); }
.tour-row .when {
  text-align: right;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.tour-row .when strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -.005em;
  text-transform: none;
  display: block;
  margin-top: 2px;
}

/* ============================= LOCATION ============================== */

.location { background: var(--paper); }

.location-head { max-width: 56ch; margin-bottom: 28px; }
@media (min-width: 640px) { .location-head { margin-bottom: 40px; } }

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 768px) { .location-grid { grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 4vw, 64px); } }

.walk-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.walk-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.walk-list h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 2px;
}
.walk-list small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}
.walk-list .dist {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  background: var(--aqua-soft);
  padding: 4px 8px;
  border-radius: 6px;
}
.walk-list .mins {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  font-weight: 600;
}

.map-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--aqua-deep);
  color: var(--paper-warm);
  isolation: isolate;
}
.map-card iframe { z-index: 1; }
.map-card .map-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-card .map-label,
.map-card .map-label-link {
  position: absolute;
  bottom: 18px; left: 18px;
  right: 18px;
  max-width: 320px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  backdrop-filter: blur(8px);
  padding: 12px 14px;
  border-radius: 10px;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(13, 25, 23, .18);
  text-decoration: none;
  display: grid;
  gap: 4px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.map-card .map-label-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(13, 25, 23, .25);
}
.map-card .map-label strong,
.map-card .map-label-link strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -.005em;
  text-transform: none;
  display: block;
  line-height: 1.25;
  color: var(--ink);
}
.map-card .map-open {
  display: block;
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--aqua-deep);
  text-transform: uppercase;
}

/* ============================= HOST KASIA ============================ */

.host {
  background: linear-gradient(160deg, var(--aqua-deep) 0%, #0a4d4a 100%);
  color: var(--paper-warm);
  position: relative;
  overflow: hidden;
}
.host::before {
  content: "";
  position: absolute;
  left: -100px; bottom: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--coral) 0%, transparent 65%);
  opacity: .25;
  pointer-events: none;
}

.host-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
}
@media (min-width: 768px) { .host-grid { grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 80px); } }

.host-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 480px;
}
@media (min-width: 768px) { .host-portrait { max-width: none; } }
.host-portrait img { width: 100%; height: 100%; object-fit: cover; }
.host-portrait .sig {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  background: rgba(254, 250, 240, .94);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.host-portrait .sig strong.sig-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.host-portrait .sig-social {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.host-portrait .sig-social:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
.host-portrait .sig-social svg { display: block; }

.host-body .h-display { color: var(--paper-warm); max-width: 14ch; }
.host-body .h-display em { color: var(--sun); }
.host-body .copy { color: rgba(254, 250, 240, .85); max-width: 50ch; }

.host-langs {
  display: flex;
  gap: 6px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.host-lang-chip {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 7px 12px;
  border: 1.5px solid rgba(254, 250, 240, .3);
  border-radius: 999px;
}
.host-lang-chip.licensed {
  background: var(--sun);
  color: #2a1a0a;
  border-color: var(--sun);
}

.host-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.host-actions .btn { flex: 1 1 auto; }
@media (min-width: 480px) { .host-actions .btn { flex: 0 0 auto; } }

/* ============================= AWARDS ================================ */

.awards { background: var(--paper); }

.awards-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .awards-head { grid-template-columns: 1fr auto; gap: 24px; margin-bottom: 36px; }
}

.awards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) { .awards-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .awards-grid { grid-template-columns: 1fr 1fr 1fr; gap: 20px; } }

.award-card {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: grid;
  gap: 12px;
  align-content: start;
  transition: transform .25s, box-shadow .25s;
}
.award-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-m); }
.award-card .uppercase { color: var(--muted); }
.award-card .score {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -.02em;
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--ink);
}
@media (min-width: 640px) { .award-card .score { font-size: 60px; } }
.award-card .score small {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--muted);
}
.award-card .stars { color: var(--sun); font-size: 16px; letter-spacing: .08em; }
.award-card img.cert {
  height: 64px;
  width: auto;
  object-fit: contain;
  align-self: start;
}
.award-card .description { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.5; }

/* ============================= FAQ =================================== */

.faq { background: var(--paper-2); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 768px) { .faq-grid { grid-template-columns: 1fr 1.4fr; gap: clamp(32px, 5vw, 80px); } }

.faq-sticky { display: contents; }
@media (min-width: 768px) {
  .faq-sticky { display: block; position: sticky; top: 100px; }
}

.faq-categories {
  list-style: none;
  margin: 16px 0 16px;
  padding: 0;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.faq-categories::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
  .faq-categories {
    margin-top: 24px;
    display: block;
    border-top: 1px solid var(--line);
    overflow: visible;
    padding-bottom: 0;
  }
  .faq-categories li { border-bottom: 1px solid var(--line); }
}
.faq-categories li { flex-shrink: 0; }
.faq-categories button {
  width: 100%;
  padding: 10px 14px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-soft);
  cursor: pointer;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .faq-categories button {
    padding: 14px 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }
}
.faq-categories button.is-active {
  color: var(--coral);
  font-weight: 700;
  background: var(--coral-soft);
  border-color: var(--coral-soft);
}
@media (min-width: 768px) {
  .faq-categories button.is-active { background: transparent; border-color: transparent; }
}
.faq-categories button .count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-item-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -.005em;
  line-height: 1.3;
  color: var(--ink);
  padding: 0;
  min-height: var(--tap);
}
@media (min-width: 640px) { .faq-item-q { font-size: 21px; } }
.faq-item-q .plus {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
  transition: transform .3s, background .3s, border-color .3s;
}
.faq-item-q .plus::before,
.faq-item-q .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
}
.faq-item-q .plus::before { width: 11px; height: 1.8px; }
.faq-item-q .plus::after { width: 1.8px; height: 11px; transition: transform .3s; }
.faq-item.is-open .faq-item-q .plus {
  background: var(--coral);
  border-color: var(--coral);
}
.faq-item.is-open .faq-item-q .plus::before { background: var(--paper-warm); }
.faq-item.is-open .faq-item-q .plus::after { transform: scaleY(0); background: var(--paper-warm); }

.faq-item-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.is-open .faq-item-a { max-height: 420px; }
.faq-item-a p {
  margin: 14px 0 4px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  max-width: 60ch;
}

/* ============================= CTA BAND ============================== */

.cta-band {
  margin: 0 var(--pad-x) var(--section-y);
  background: linear-gradient(135deg, var(--coral) 0%, #ff8c47 100%);
  color: var(--paper-warm);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .cta-band { padding: 48px 36px; } }
@media (min-width: 768px) {
  .cta-band { grid-template-columns: 1.4fr 1fr; gap: clamp(28px, 4vw, 60px); padding: 56px 48px; }
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -40px; bottom: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--sun);
  opacity: .35;
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band .h1 { color: var(--paper-warm); max-width: 18ch; }
.cta-band .h1 em { color: #fff; font-style: italic; -webkit-text-decoration: underline wavy var(--sun); text-decoration: underline wavy var(--sun); text-underline-offset: 6px; }
.cta-band .copy { color: rgba(254, 250, 240, .9); max-width: 48ch; margin-top: 14px; }
.cta-band-cta { display: grid; gap: 10px; }
.cta-band-cta .contact-line {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(254, 250, 240, .85);
}
.cta-band-cta .contact-line strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -.005em;
  color: var(--paper-warm);
  text-transform: none;
}

/* ============================= FOOTER ================================ */

.foot {
  background: var(--ink);
  color: rgba(254, 250, 240, .72);
  padding: 48px var(--pad-x) 28px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(254, 250, 240, .12);
}
@media (min-width: 480px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .foot-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; } }

.foot h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--sun);
}
.foot a { display: block; padding: 4px 0; font-size: 14px; color: rgba(254, 250, 240, .8); }
.foot a:hover { color: var(--paper-warm); }
.foot-brand .h2 { color: var(--paper-warm); margin-block: 10px; max-width: 14ch; }
.foot-brand small { font-size: 13px; line-height: 1.5; max-width: 36ch; display: block; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================= KASIA AVATAR ========================== */

.kasia-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 640px) { .kasia-fab { right: 24px; bottom: 24px; gap: 12px; } }

.kasia-launcher {
  position: relative;
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: var(--aqua-deep);
  cursor: pointer;
  box-shadow: var(--shadow-l);
  overflow: visible;
}
@media (min-width: 640px) { .kasia-launcher { width: 64px; height: 64px; } }
.kasia-launcher img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--paper-warm);
}
.kasia-launcher .pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid var(--coral);
  opacity: 0;
  animation: kasia-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
.kasia-launcher .pulse-ring:nth-child(2) { animation-delay: 1.2s; }
@keyframes kasia-pulse {
  0% { transform: scale(.85); opacity: .7; }
  100% { transform: scale(1.4); opacity: 0; }
}
.kasia-launcher .dot {
  position: absolute;
  bottom: 2px; right: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--sun);
  border: 2px solid var(--paper-warm);
}
.kasia-launcher .dot.online { background: #4ec27e; }

.kasia-tooltip {
  background: var(--paper-warm);
  border-radius: 12px 12px 4px 12px;
  padding: 10px 14px;
  font-size: 13px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  box-shadow: var(--shadow-s);
  max-width: 200px;
  animation: kasia-bob 5s ease-in-out infinite;
  display: none;
}
@media (min-width: 480px) { .kasia-tooltip { display: block; } }
@keyframes kasia-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.kasia-panel {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 51;
  max-width: 380px;
  margin-left: auto;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-l);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
@media (min-width: 640px) {
  .kasia-panel { inset: auto 24px 24px auto; width: 380px; }
}

.kasia-panel-head {
  background: var(--aqua-deep);
  color: var(--paper-warm);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
}
.kasia-panel-head .avatar-pic {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(254, 250, 240, .3);
}
.kasia-panel-head strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -.005em;
  display: block;
  line-height: 1.1;
}
.kasia-panel-head small {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  opacity: .75;
}
.kasia-panel-head .close-x {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 0;
  background: rgba(254, 250, 240, .15);
  color: inherit;
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
}

.kasia-panel-body {
  padding: 22px 18px;
  display: grid;
  gap: 16px;
  background: var(--paper);
}
.kasia-face-wrap {
  width: 88px;
  height: 88px;
  margin: 0 auto;
  position: relative;
  border-radius: 50%;
  background: var(--paper-warm);
  display: grid;
  place-items: center;
}
.kasia-face-wrap img {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.kasia-face-wrap .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--line);
}
.kasia-face-wrap.is-speaking .ring {
  border-color: var(--coral);
  animation: kasia-pulse 1.6s ease-out infinite;
}

.kasia-transcript {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.35;
  color: var(--ink);
  max-width: 30ch;
  margin: 0 auto;
  min-height: 60px;
}
.kasia-transcript .cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--coral);
  vertical-align: -3px;
  margin-left: 2px;
  animation: cursor 1s steps(1) infinite;
}
@keyframes cursor { 50% { opacity: 0; } }

.kasia-controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
}
.kasia-play {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--coral);
  color: var(--paper-warm);
  display: grid;
  place-items: center;
  justify-self: center;
  box-shadow: 0 6px 16px color-mix(in oklch, var(--coral) 30%, transparent);
}
.kasia-play svg { width: 18px; height: 18px; }
.kasia-step {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--paper-warm);
  display: grid;
  place-items: center;
  color: var(--ink);
  justify-self: end;
  font-size: 16px;
  font-weight: 700;
}
.kasia-controls > .kasia-step:first-child { justify-self: start; }

.kasia-chapters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.kasia-chapter {
  padding: 12px 6px;
  border: 0;
  background: transparent;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--muted);
  cursor: pointer;
  border-right: 1px solid var(--line);
  min-height: 44px;
}
.kasia-chapter:last-child { border-right: 0; }
.kasia-chapter.is-active { color: var(--coral); background: var(--coral-soft); }

/* ============================= BOOKING SHEET ========================= */

.sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 28, 32, .55);
  backdrop-filter: blur(3px);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.sheet-backdrop.is-open { opacity: 1; pointer-events: auto; }

.sheet {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 81;
  width: 100vw;
  max-width: 100vw;
  background: var(--paper);
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  box-shadow: var(--shadow-l);
  overflow-x: hidden;
}
@media (min-width: 640px) { .sheet { width: min(640px, 100vw); } }
.sheet.is-open { transform: translateX(0); }

.sheet-head {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--paper-warm);
  max-width: 100%;
}
@media (min-width: 640px) { .sheet-head { padding: 20px 28px; gap: 18px; } }

.sheet-head .steps {
  display: flex;
  gap: 6px;
  flex: 1;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  min-width: 0;
}
.sheet-head .steps::-webkit-scrollbar { display: none; }
@media (min-width: 640px) { .sheet-head .steps { gap: 16px; overflow: visible; } }

.sheet-step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
  white-space: nowrap;
}
@media (min-width: 640px) { .sheet-step { font-size: 11px; gap: 7px; letter-spacing: .06em; } }

/* On mobile only show the label for the active step, dots elsewhere */
@media (max-width: 639px) {
  .sheet-step span:not(.num) { display: none; }
  .sheet-step.is-active span:not(.num) { display: inline; }
}
.sheet-step .num {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  font-size: 10px;
  font-weight: 700;
  background: var(--paper-warm);
  color: var(--muted);
}
.sheet-step.is-active { color: var(--ink); }
.sheet-step.is-active .num { background: var(--aqua); color: var(--paper-warm); border-color: var(--aqua); }
.sheet-step.is-done .num { background: var(--coral); color: var(--paper-warm); border-color: var(--coral); }

.sheet-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: transparent;
  display: grid; place-items: center;
  font-size: 20px;
  color: var(--ink);
  flex-shrink: 0;
}

.sheet-body {
  padding: 18px 16px;
  overflow-y: auto;
  overflow-x: hidden;
  max-width: 100%;
}
@media (min-width: 640px) { .sheet-body { padding: 32px; } }
.sheet-body > * { max-width: 100%; }
.sheet-body h2,
.sheet-body p.lead { overflow-wrap: anywhere; }
.sheet-body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -.01em;
  line-height: 1.05;
  margin: 0 0 6px;
}
@media (min-width: 640px) { .sheet-body h2 { font-size: 32px; } }
.sheet-body h2 em { font-style: italic; color: var(--coral); font-weight: 400; }
.sheet-body p.lead { font-size: 15.5px; max-width: 50ch; margin-bottom: 24px; }

.sheet-foot {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background: var(--paper-warm);
  max-width: 100%;
}
@media (min-width: 640px) { .sheet-foot { padding: 18px 28px; gap: 16px; } }
.sheet-foot .summary {
  display: grid;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.sheet-foot .summary strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -.005em;
  text-transform: none;
  margin-top: 2px;
}

/* Sheet steps */
.sheet-cal { display: grid; gap: 14px; }
.sheet-cal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 100%;
  overflow: hidden;
}
@media (min-width: 640px) { .sheet-cal-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
.sheet-mini-cal h4 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sheet-mini-cal h4 button {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--paper-warm);
  display: grid; place-items: center;
  font-size: 16px;
  font-weight: 700;
}

.sheet-studio-pick { display: grid; gap: 10px; }
.studio-pick-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 12px;
  background: var(--paper-warm);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  text-align: left;
  position: relative;
}
@media (min-width: 480px) {
  .studio-pick-card { grid-template-columns: 110px 1fr auto; gap: 16px; padding: 14px; align-items: center; }
}
.studio-pick-card:hover { border-color: var(--ink); transform: translateY(-1px); box-shadow: var(--shadow-s); }
.studio-pick-card.is-picked { border-color: var(--coral); background: color-mix(in oklch, var(--coral-soft) 25%, var(--paper-warm)); }
.studio-pick-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}
@media (min-width: 480px) {
  .studio-pick-card img { width: 110px; height: 90px; }
}
.studio-pick-card h3 { font-family: var(--serif); font-weight: 500; margin: 0 0 4px; font-size: 19px; }
.studio-pick-card small { font-size: 13px; color: var(--muted); display: block; }
.studio-pick-card .pick-price {
  text-align: right;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--muted);
}
@media (max-width: 479px) {
  .studio-pick-card .pick-price { text-align: left; display: flex; gap: 6px; align-items: baseline; }
}
.studio-pick-card .pick-price strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -.005em;
  color: var(--ink);
  text-transform: none;
  display: block;
  margin-top: 2px;
}
.studio-pick-card .pill {
  position: absolute;
  top: 10px; right: 10px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  background: var(--coral);
  color: var(--paper-warm);
  padding: 3px 7px;
  border-radius: 4px;
}

.sheet-extras { display: grid; gap: 10px; }
.extra-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  padding: 14px;
  background: var(--paper-warm);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  align-items: center;
  cursor: pointer;
  transition: border-color .2s;
}
.extra-row:hover { border-color: var(--ink); }
.extra-row.is-on { border-color: var(--coral); background: color-mix(in oklch, var(--coral-soft) 30%, var(--paper-warm)); }
.extra-row .check {
  width: 24px; height: 24px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  display: grid; place-items: center;
  transition: background .2s;
  flex-shrink: 0;
}
.extra-row.is-on .check { background: var(--coral); border-color: var(--coral); }
.extra-row.is-on .check::after {
  content: "";
  width: 12px; height: 6px;
  border: 2px solid var(--paper-warm);
  border-top: 0; border-right: 0;
  transform: rotate(-45deg) translate(1px, -1px);
}
.extra-row h4 { font-family: var(--serif); font-weight: 500; margin: 0; font-size: 17px; }
.extra-row p { margin: 2px 0 0; font-size: 13px; color: var(--muted); line-height: 1.4; }
.extra-row .price {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-align: right;
}

.sheet-summary { display: grid; gap: 16px; }
.summary-line {
  display: grid;
  grid-template-columns: minmax(90px, 110px) 1fr auto;
  align-items: baseline;
  gap: 8px 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  word-break: break-word;
}
@media (min-width: 480px) { .summary-line { grid-template-columns: 140px 1fr auto; gap: 18px; } }
.summary-line:last-child { border-bottom: 1px solid var(--line); }
.summary-line dt {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.summary-line dd { margin: 0; font-size: 14.5px; color: var(--ink); }
.summary-line dd.serif { font-family: var(--serif); font-size: 18px; font-weight: 500; }
.summary-line .amount { font-family: var(--sans); font-weight: 700; font-size: 14px; color: var(--ink); }

.summary-total {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2.5px solid var(--ink);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -.005em;
}
.summary-total small {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.summary-note {
  font-size: 13px;
  color: var(--ink-soft);
  background: var(--paper-2);
  padding: 14px;
  border-radius: 10px;
  margin-top: 14px;
  line-height: 1.5;
}

.thanks { text-align: center; padding: 32px 16px; }
.thanks .seal {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--paper-warm);
  display: grid; place-items: center;
  margin: 0 auto 16px;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 8px 24px color-mix(in oklch, var(--coral) 30%, transparent);
}
.thanks h2 { margin-top: 6px; }
.thanks .ref {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 22px;
}
.thanks .ref strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0;
  color: var(--ink);
  margin-top: 4px;
  text-transform: none;
}

/* ============================= LIGHTBOX ============================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(8, 28, 32, .94);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox-img { max-width: 92vw; max-height: 78vh; border-radius: 8px; }
.lightbox-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(254, 250, 240, .3);
  background: rgba(0,0,0,.2);
  color: var(--paper-warm);
  font-size: 22px;
}
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--paper-warm);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  background: rgba(0,0,0,.4);
  padding: 6px 12px;
  border-radius: 999px;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(254, 250, 240, .3);
  background: rgba(0,0,0,.3);
  color: var(--paper-warm);
  display: grid; place-items: center;
  font-size: 22px;
}
.lightbox-nav.prev { left: 12px; }
.lightbox-nav.next { right: 12px; }
@media (min-width: 640px) {
  .lightbox-nav { width: 56px; height: 56px; }
  .lightbox-nav.prev { left: 30px; }
  .lightbox-nav.next { right: 30px; }
}

/* iPhone safe area bottom for sticky CTAs etc. */
@supports (padding: max(0px)) {
  .sheet-foot { padding-bottom: max(16px, env(safe-area-inset-bottom)); }
  .kasia-fab { bottom: max(16px, env(safe-area-inset-bottom)); }
  .kasia-panel { bottom: max(16px, env(safe-area-inset-bottom)); }
}
