:root {
  --bg: #401c26;
  --green: #363d34;
  --green-active: #4a5448;
  --text-light: #f3efe9;
  --text-soft: #d8b9c1;

  --shadow-base: 0 6px 14px rgba(0,0,0,0.35);
  --shadow-hover: 0 12px 24px rgba(0,0,0,0.45);

  --radius-pill: 999px;
  --max: 440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, sans-serif;
  color: #f6e9ec;
  background: var(--bg);
  padding: 24px 14px 34px;
}

body.modal-open {
  overflow: hidden;
}

.shell {
  width: min(100%, var(--max));
  margin: 0 auto;
}

/* ================= HERO ================= */

.hero {
  text-align: center;
  margin-bottom: 20px;
}

.portrait-wrap {
  width: 124px;
  height: 124px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;

  box-shadow:
    0 8px 18px rgba(255,255,255,0.18),
    0 0 0 2px rgba(255,255,255,0.08);
}

.portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-family: 'Pacifico', cursive;
  font-size: clamp(3.5rem, 11vw, 4.5rem);
  margin: 10px 0 4px;
  text-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.hero-copy {
  margin: 8px auto 0;
  max-width: 32ch;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-soft);
}

/* ================= BUTTON SYSTEM ================= */

.cta-stack {
  display: grid;
  gap: 12px;
}

.cta {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  min-height: 58px;

  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 22px;

  background: var(--green);
  color: var(--text-light);

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    var(--shadow-base),
    inset 0 1px 0 rgba(255,255,255,0.06);

  text-decoration: none;
  cursor: pointer;

  font-family: 'Zalando Sans', sans-serif;
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: 1.05rem;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease;

  transform: translateY(0);
  position: relative;
}

.cta:hover,
.cta:active {
  transform: translateY(-2px);
  box-shadow:
    var(--shadow-hover),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

/* GOLD PRIMARY */

.cta-book {
  color: #20180b;
  background:
    linear-gradient(180deg, #f6e7b5 0%, #d7b46a 60%, #b8892f 100%);
  border: 1px solid rgba(120,85,20,0.4);

  box-shadow:
    var(--shadow-base),
    0 0 18px rgba(200,160,60,0.15),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

/* ================= ICON PILLS ================= */

.icon-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.icon-pill {
  width: 58px;
  height: 58px;
  border-radius: 50%;

  display: grid;
  place-items: center;

  background: var(--green);
  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    var(--shadow-base),
    inset 0 1px 0 rgba(255,255,255,0.06);

  transition: transform 180ms ease, box-shadow 180ms ease;
}

.icon-pill:hover,
.icon-pill:active {
  transform: translateY(-2px);
  box-shadow:
    var(--shadow-hover),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.icon-pill svg {
  width: 22px;
  height: 22px;
  fill: var(--text-light);
}

/* ================= LANGUAGE ================= */

.lang-toggle {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.lang-btn {
  background: var(--green);
  color: var(--text-light);

  border-radius: 999px;
  padding: 0 16px;
  min-height: 42px;

  border: 1px solid rgba(255,255,255,0.08);

  font-family: 'Zalando Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;

  box-shadow:
    var(--shadow-base),
    inset 0 1px 0 rgba(255,255,255,0.06);

  cursor: pointer;

  transition: transform 180ms ease, box-shadow 180ms ease;
}

.lang-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    var(--shadow-hover),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.lang-btn.active {
  background: var(--green-active);
  box-shadow:
    0 8px 18px rgba(0,0,0,0.4),
    inset 0 2px 6px rgba(0,0,0,0.35);
}

/* ================= TICKER ================= */

.ticker-wrap {
  margin-top: 24px;
  overflow: hidden;

  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);

  padding: 10px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  white-space: nowrap;

  animation: ticker 20s linear infinite;

  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;

  color: rgba(243,239,233,0.6);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 9, 0.62);
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.service-modal {
  width: min(100%, 460px);
  max-height: 85vh;
  overflow: auto;
  position: relative;

  background: linear-gradient(180deg, #4a2330 0%, #401c26 100%);
  color: #f3efe9;

  border-radius: 28px;
  padding: 22px 18px 18px;

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 28px 70px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.05);

  transform: translateY(10px) scale(0.98);
  transition: transform 180ms ease;
}

.modal-backdrop.is-open .service-modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;

  background: #363d34;
  color: #f3efe9;

  box-shadow:
    0 6px 14px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.06);

  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.modal-close:hover,
.modal-close:active {
  transform: translateY(-2px);
  box-shadow:
    0 12px 24px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.modal-eyebrow {
  margin: 0 0 4px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243,239,233,0.62);
}

.service-modal h2 {
  margin: 0 0 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: #f3efe9;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-tile {
  background: #363d34;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 14px 12px;

  box-shadow:
    0 10px 22px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.service-tile h3 {
  margin: 0 0 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.1;
  color: #f3efe9;
}

.price {
  margin: 0;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: 0.5px;
}

.price .time {
  color: #f3efe9;
  font-weight: 600;
}

.price .divider {
  margin: 0 6px;
  color: rgba(243,239,233,0.35);
}

.price .rest {
  color: #d7b46a;
  font-weight: 500;
}