/* ============================================================
   MARSELINE — Luxury Mobile Hair Styling
   Design system v2: black & gold with rose-petal accents
   ============================================================ */

:root {
  --black: #0b0b0e;
  --black-2: #101014;
  --ink: #121217;
  --ink-2: #17171e;
  --ink-3: #1e1e26;
  --surface: #15151b;
  --surface-2: #1a1a22;
  --ivory: #f6f1e9;
  --gold: #c6a15b;
  --gold-light: #dcc296;
  --gold-dark: #a8853f;
  --rose: #d48d99;
  --rose-deep: #b85a6e;
  --text: #e8e2d6;
  --muted: #a79f92;
  --muted-dark: #6f6a61;
  --line: rgba(246, 241, 233, 0.1);
  --line-gold: rgba(198, 161, 91, 0.28);
  --radius: 20px;
  --shadow-soft: 0 24px 70px -24px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 12px 40px -12px rgba(198, 161, 91, 0.4);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--black);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--gold); color: var(--black); }

/* ---------- Petals canvas ---------- */
#petals {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0.55;
}

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ivory);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.3rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.lede { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 62ch; }
p { color: var(--muted); }

em.gold { font-style: italic; color: var(--gold-light); }

/* ---------- Layout ---------- */
.container { width: min(1180px, 92vw); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 130px) 0; position: relative; }
.section-dark { background: var(--black-2); }
.section-ivory { background: var(--surface); }
.section-dark, .section-ivory { border-top: 1px solid rgba(198, 161, 91, 0.08); border-bottom: 1px solid rgba(198, 161, 91, 0.08); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 860px) { .grid-2 { grid-template-columns: 1fr; } }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s, padding 0.4s;
  padding: 20px 0;
}
.site-header.scrolled {
  background: rgba(11, 11, 14, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 11px 0;
  box-shadow: 0 10px 40px -18px rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid rgba(198, 161, 91, 0.14);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.wordmark {
  font-family: var(--font-display);
  font-size: 1.42rem;
  letter-spacing: 0.3em;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1;
  white-space: nowrap;
}
.wordmark span { color: var(--gold); }
.wordmark small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.54rem;
  letter-spacing: 0.44em;
  color: var(--muted-dark);
  margin-top: 5px;
  font-weight: 400;
}

.main-nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 30px); }
.main-nav a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(246, 241, 233, 0.8);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.main-nav a:not(.btn):hover { color: var(--ivory); }
.main-nav a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }

.main-nav a.btn {
  padding: 12px 24px;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--black);
}
.main-nav a.btn:hover { color: var(--black); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--ivory);
  margin: 6px auto;
  transition: 0.35s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(11, 11, 14, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; }
  .main-nav a { font-size: 1.1rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, background 0.35s, color 0.35s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-gold { background: linear-gradient(120deg, var(--gold-dark), var(--gold) 60%, var(--gold-light)); color: var(--black); box-shadow: var(--shadow-gold); }
.btn-gold:hover { filter: brightness(1.1); transform: translateY(-3px); }
.btn-outline { border-color: rgba(246, 241, 233, 0.35); color: var(--ivory); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-3px); }
.btn-outline-dark { border-color: rgba(246, 241, 233, 0.3); color: var(--ivory); }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-3px); }
.btn-sm { padding: 11px 22px; font-size: 0.72rem; letter-spacing: 0.06em; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  background:
    radial-gradient(ellipse 60% 45% at 82% 8%, rgba(198, 161, 91, 0.14), transparent 65%),
    radial-gradient(ellipse 40% 35% at 8% 90%, rgba(212, 141, 153, 0.08), transparent 65%),
    var(--black);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { margin: 0 0 26px; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: inline-block; transform: translateY(110%); animation: riseUp 1.1s var(--ease) forwards; }
.hero h1 .line:nth-child(2) > span { animation-delay: 0.15s; }
.hero h1 .line:nth-child(3) > span { animation-delay: 0.3s; }
@keyframes riseUp { to { transform: translateY(0); } }

.hero .lede { margin-bottom: 38px; animation: fadeIn 1s 0.6s both; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; animation: fadeIn 1s 0.8s both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.hero-media { position: relative; animation: fadeIn 1.2s 0.4s both; }
.hero-frame {
  border-radius: 300px 300px var(--radius) var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-gold);
  padding: 14px;
  background: linear-gradient(160deg, rgba(198, 161, 91, 0.14), rgba(212, 141, 153, 0.05) 55%, transparent);
  max-width: 440px;
  margin-inline: auto;
}
.hero-frame img {
  border-radius: 286px 286px calc(var(--radius) - 6px) calc(var(--radius) - 6px);
  width: 100%;
  height: clamp(420px, 58vh, 620px);
  object-fit: cover;
  will-change: transform;
}
.hero-badge {
  position: absolute;
  bottom: 8%;
  left: -6%;
  background: rgba(11, 11, 14, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-gold);
  border-radius: 16px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floatY 5s ease-in-out infinite;
}
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-badge .num { font-family: var(--font-display); font-size: 1.7rem; color: var(--gold-light); line-height: 1; }
.hero-badge .lbl { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(246,241,233,0.6); }
@media (max-width: 900px) { .hero-badge { left: 0; } }

.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(246,241,233,0.4);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 42px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ---------- Marquee ---------- */
.marquee {
  background: linear-gradient(120deg, var(--gold-dark), var(--gold) 55%, var(--gold-light));
  overflow: hidden;
  padding: 15px 0;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-style: italic;
  color: var(--black);
  display: flex; align-items: center; gap: 56px;
  white-space: nowrap;
}
.marquee-track span::after { content: "✦"; font-size: 0.7rem; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(44px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ---------- Service cards ---------- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
}
@media (max-width: 960px) { .cards-3 { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }

.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(198, 161, 91, 0.15);
}
.service-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
  z-index: -2;
}
.service-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,11,14,0.95) 12%, rgba(11,11,14,0.3) 55%, rgba(11,11,14,0.18));
  z-index: -1;
  transition: background 0.5s;
}
.service-card:hover img { transform: scale(1.07); }
.service-card-body { padding: 34px 30px; width: 100%; }
.service-card-body .tag {
  font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-light); display: block; margin-bottom: 10px;
}
.service-card-body h3 { margin-bottom: 10px; }
.service-card-body p { font-size: 0.95rem; color: rgba(246,241,233,0.78); margin-bottom: 18px; }
.service-card-body .from { font-family: var(--font-display); font-style: italic; color: var(--gold-light); font-size: 1.05rem; }
.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ivory);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: gap 0.3s, color 0.3s;
}
.card-link:hover { gap: 14px; color: var(--gold-light); }

/* ---------- Editorial split ---------- */
.editorial-media { position: relative; }
.editorial-media .main-img {
  border-radius: var(--radius);
  height: clamp(420px, 55vw, 620px);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(198, 161, 91, 0.14);
}
.editorial-media .accent-img {
  position: absolute;
  width: 42%;
  bottom: -9%;
  right: -6%;
  border-radius: var(--radius);
  border: 5px solid var(--black);
  box-shadow: var(--shadow-soft);
}
@media (max-width: 860px) { .editorial-media .accent-img { right: 0; } }

.check-list { margin: 26px 0 34px; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 28px; font-size: 1rem; color: var(--text); }
.check-list li strong { color: var(--ivory); font-weight: 500; }
.check-list li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.8rem;
  position: absolute;
  left: 0;
  top: 5px;
}

/* ---------- Stats ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
  border-top: 1px solid var(--line);
  padding-top: 48px;
}
@media (max-width: 760px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--gold-light);
  line-height: 1;
}
.stat .lbl { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(246,241,233,0.5); margin-top: 10px; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }
.step {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: transform 0.45s var(--ease), box-shadow 0.45s, border-color 0.45s;
}
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); border-color: var(--line-gold); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 20px;
}
.step h3 { margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 0.97rem; }

/* ---------- Pricing ---------- */
.price-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 46px 0 40px;
  flex-wrap: wrap;
}
.price-tab {
  padding: 13px 30px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: rgba(246,241,233,0.7);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: 0.35s;
}
.price-tab.active, .price-tab:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

.price-panel { display: none; animation: fadeIn 0.6s var(--ease); }
.price-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 56px; max-width: 900px; margin-inline: auto; }
@media (max-width: 760px) { .price-panel.active { grid-template-columns: 1fr; } }

.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
}
.price-row .name { font-size: 1rem; color: var(--ivory); }
.price-row .name small { display: block; font-size: 0.8rem; color: rgba(246,241,233,0.45); margin-top: 3px; }
.price-row .dots { flex: 1; border-bottom: 1px dotted rgba(246,241,233,0.22); transform: translateY(-4px); }
.price-row .price { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--gold-light); white-space: nowrap; }

.price-note { text-align: center; margin-top: 36px; font-size: 0.9rem; color: rgba(246,241,233,0.5); max-width: 68ch; margin-inline: auto; }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin: 40px 0 36px; }
.gallery-filter {
  padding: 11px 26px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: 0.3s;
}
.gallery-filter.active, .gallery-filter:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1000px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  aspect-ratio: 3 / 4;
  background: var(--surface);
  border: 1px solid rgba(198, 161, 91, 0.1);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.5s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 16px 14px;
  background: linear-gradient(transparent, rgba(11,11,14,0.8));
  color: var(--ivory);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .cap { opacity: 1; }
.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(8, 8, 11, 0.95);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; animation: fadeIn 0.3s; }
.lightbox img { max-height: 88vh; max-width: 90vw; border-radius: 12px; box-shadow: 0 40px 120px rgba(0,0,0,0.7); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(246,241,233,0.06);
  border: 1px solid rgba(246,241,233,0.18);
  color: var(--ivory);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: 0.3s;
  z-index: 2;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- Areas ---------- */
.areas-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
@media (max-width: 860px) { .areas-wrap { grid-template-columns: 1fr; } }
.area-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.area-pill {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--text);
  background: var(--surface);
  transition: 0.3s;
}
.area-pill:hover { background: var(--gold); color: var(--black); border-color: var(--gold); transform: translateY(-2px); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 24px 44px 24px 4px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ivory);
  position: relative;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--gold-light); }
.faq-q::after {
  content: "+";
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-family: var(--font-body);
  font-weight: 200;
  color: var(--gold);
  transition: transform 0.35s var(--ease);
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a p { padding: 0 4px 26px; color: var(--muted); max-width: 68ch; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-channels { display: grid; gap: 16px; margin-top: 34px; }
.channel {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: 0.35s;
  background: rgba(246,241,233,0.02);
}
.channel:hover { border-color: var(--gold); transform: translateX(6px); background: rgba(198,161,91,0.07); }
.channel .ico {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(198,161,91,0.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}
.channel .ico svg { width: 20px; height: 20px; }
.channel .lbl { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(246,241,233,0.45); }
.channel .val { font-size: 1.05rem; color: var(--ivory); }

/* ---------- Booking form (book.html + shared) ---------- */
.booking-form {
  background: linear-gradient(165deg, var(--surface-2), var(--black-2));
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246,241,233,0.55);
  margin-bottom: 9px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(246,241,233,0.04);
  border: 1px solid rgba(246,241,233,0.15);
  border-radius: 12px;
  padding: 15px 18px;
  color: var(--ivory);
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(246,241,233,0.07);
  box-shadow: 0 0 0 3px rgba(198,161,91,0.15);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.82rem; color: rgba(246,241,233,0.5); margin: 6px 0 22px; }
.form-consent input { width: auto; margin-top: 4px; accent-color: var(--gold); }
.booking-form .btn { width: 100%; }
.form-note { text-align: center; font-size: 0.78rem; color: rgba(246,241,233,0.4); margin-top: 16px; }
.form-error {
  display: none;
  background: rgba(184, 90, 110, 0.12);
  border: 1px solid rgba(184, 90, 110, 0.4);
  color: #e8aab6;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.form-success { text-align: center; padding: 40px 10px; display: none; }
.form-success .tick {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: rgba(198,161,91,0.14);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  animation: popIn 0.5s var(--ease);
}
@keyframes popIn { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.form-success h3 { margin-bottom: 12px; }
.form-success p { max-width: 42ch; margin: 0 auto 26px; }

/* Booking page layout */
.book-hero {
  min-height: 100svh;
  padding: 108px 0 60px;
  background:
    radial-gradient(ellipse 55% 40% at 85% 5%, rgba(198, 161, 91, 0.13), transparent 65%),
    radial-gradient(ellipse 45% 40% at 5% 95%, rgba(212, 141, 153, 0.09), transparent 65%),
    var(--black);
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 900px) {
  .book-grid { grid-template-columns: 1fr; }
  .book-grid > .book-intro { order: 2; }
  .book-grid > .booking-form { order: 1; }
  .book-hero { padding-top: 96px; }
}
.book-quick { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--gold-dark), var(--gold) 55%, var(--gold-light));
  color: var(--black);
  text-align: center;
  padding: clamp(64px, 8vw, 110px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "M";
  position: absolute;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 40rem;
  line-height: 0.8;
  color: rgba(11,11,14,0.05);
  right: -6rem; top: -4rem;
  pointer-events: none;
}
.cta-band h2 { color: var(--black); margin-bottom: 18px; }
.cta-band p { max-width: 56ch; margin: 0 auto 36px; color: rgba(11,11,14,0.75); font-size: 1.08rem; }
.btn-ink { background: var(--black); color: var(--ivory); }
.btn-ink:hover { background: var(--ink-3); transform: translateY(-3px); box-shadow: 0 16px 40px -12px rgba(0,0,0,0.5); }

/* ---------- Journal cards ---------- */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; }
@media (max-width: 900px) { .journal-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; } }
.journal-card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s, border-color 0.45s;
  display: flex;
  flex-direction: column;
}
.journal-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); border-color: var(--line-gold); }
.journal-card img { height: 220px; width: 100%; object-fit: cover; }
.journal-card-body { padding: 28px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.journal-card-body .meta { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); }
.journal-card-body h3 { font-size: 1.25rem; }
.journal-card-body p { color: var(--muted); font-size: 0.95rem; flex: 1; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black-2); color: rgba(246,241,233,0.6); padding: 80px 0 36px; border-top: 1px solid rgba(198,161,91,0.1); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-grid ul { display: grid; gap: 11px; }
.footer-grid a { font-size: 0.92rem; transition: color 0.3s; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-brand p { font-size: 0.92rem; max-width: 34ch; margin-top: 18px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding-top: 30px;
  font-size: 0.8rem;
  color: rgba(246,241,233,0.35);
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Floating actions ---------- */
.float-wa {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px -8px rgba(37, 211, 102, 0.5);
  transition: transform 0.35s var(--ease);
}
.float-wa:hover { transform: scale(1.1) translateY(-3px); }
.float-wa svg { width: 28px; height: 28px; fill: #fff; }

.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 89;
  background: rgba(11,11,14,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(198,161,91,0.3);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: none;
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.sticky-cta.show { transform: none; }
.sticky-cta .btn { width: 100%; }
@media (max-width: 720px) {
  .sticky-cta { display: block; }
  .float-wa { bottom: 92px; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(ellipse 50% 45% at 85% 0%, rgba(198, 161, 91, 0.13), transparent 65%),
    var(--black);
  padding: 180px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { max-width: 20ch; }
.page-hero .lede { margin-top: 22px; }
.breadcrumbs { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(246,241,233,0.4); margin-bottom: 26px; }
.breadcrumbs a:hover { color: var(--gold-light); }
.breadcrumbs span { margin: 0 8px; color: var(--gold); }

/* ---------- Prose ---------- */
.prose { max-width: 720px; margin-inline: auto; font-size: 1.06rem; }
.prose h2 { font-size: 1.7rem; margin: 48px 0 18px; }
.prose h3 { font-size: 1.25rem; margin: 36px 0 14px; }
.prose p { margin-bottom: 20px; color: var(--text); }
.prose ul, .prose ol { margin: 0 0 20px 22px; color: var(--text); }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 10px; }
.prose li::marker { color: var(--gold); }
.prose blockquote {
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-light);
  margin: 32px 0;
}
.prose img { border-radius: var(--radius); margin: 32px 0; }
.prose a { color: var(--gold-light); border-bottom: 1px solid rgba(198,161,91,0.4); transition: 0.3s; }
.prose a:hover { border-color: var(--gold-light); }
.prose em { color: var(--gold-light); }

/* ---------- Utility ---------- */
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.mt-2 { margin-top: 20px; }
.mt-4 { margin-top: 40px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  #petals { display: none; }
}
