/* =============================================
   MASAŽŲ STUDIJA — LUXURY REDESIGN
   Cormorant Garant + Raleway | Navy + Gold
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --navy:        #0D1B2E;
  --navy-mid:    #162840;
  --navy-light:  #1E3A5A;
  --blue:        #2A5298;
  --gold:        #C9A84C;
  --gold-bright: #E2C06A;
  --gold-dark:   #9A7A2E;
  --gold-faint:  #FBF6EA;
  --gold-line:   rgba(201,168,76,.35);
  --cream:       #FAF8F4;
  --warm-white:  #FDFCF9;
  --white:       #FFFFFF;
  --text:        #1A1A1A;
  --text-mid:    #4A4949;
  --text-light:  #8A8880;
  --border:      #E8E2D4;
  --radius:      4px;
  --radius-md:   8px;
  --shadow-sm:   0 2px 20px rgba(13,27,46,.06);
  --shadow:      0 8px 40px rgba(13,27,46,.12);
  --shadow-lg:   0 20px 60px rgba(13,27,46,.18);
  --font-serif:  'Cormorant Garant', 'Times New Roman', serif;
  --font-sans:   'Raleway', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ── DECORATIVE ELEMENTS ──────────────────────── */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}
.gold-rule::before,
.gold-rule::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold);
}
.gold-rule span {
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 600;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--navy);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: .95rem;
  font-weight: 400;
  margin-bottom: 56px;
  letter-spacing: .3px;
}

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1 { font-family: var(--font-serif); font-weight: 300; line-height: 1.1; }
h2 { font-family: var(--font-serif); font-weight: 400; }
h3 { font-family: var(--font-serif); font-weight: 500; }

/* ── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all .3s ease;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.4);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.55);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.85);
}
.btn-book {
  width: 100%;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  font-size: .72rem;
  letter-spacing: 2px;
  padding: 12px 20px;
  justify-content: center;
  margin-top: auto;
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
}
.btn-book:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-sm { padding: 12px 28px; font-size: .72rem; }

/* ── NAVIGATION ─────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all .4s ease;
}
.nav.scrolled {
  background: rgba(13,27,46,.97);
  padding: 14px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .5px;
  line-height: 1.3;
}
.nav-logo span {
  display: block;
  font-size: .7rem;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta a {
  color: var(--gold);
  border: 1px solid var(--gold-line);
  padding: 10px 24px;
}
.nav-links .nav-cta a:hover { background: var(--gold); color: var(--navy); }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span { display: block; width: 24px; height: 1px; background: var(--white); }

/* ── HERO ──────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D1B2E 0%, #162840 45%, #1a3560 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(42,82,152,.15) 0%, transparent 50%);
}
/* Subtle pattern overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-photo {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 48%;
  overflow: hidden;
}
.hero-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 40%);
}
.photo-placeholder-label {
  color: rgba(255,255,255,.2);
  font-family: var(--font-sans);
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  line-height: 2;
}
.photo-placeholder-label svg {
  display: block;
  margin: 0 auto 12px;
  opacity: .2;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 48px 80px;
  width: 100%;
}
.hero-content { max-width: 560px; }
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 300;
  letter-spacing: -1px;
}
.hero h1 em {
  display: block;
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 300;
}
.hero-desc {
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  font-weight: 300;
  letter-spacing: .5px;
  line-height: 1.9;
  margin-bottom: 44px;
  max-width: 440px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(201,168,76,.2);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span {
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  font-weight: 500;
}

/* ── SECTIONS ──────────────────────────────────── */
section { padding: 100px 48px; }
.container { max-width: 1280px; margin: 0 auto; }

/* ── ABOUT ─────────────────────────────────────── */
#apie { background: var(--warm-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  position: relative;
}
.about-photo-main {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--navy-light), var(--blue));
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-photo-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 55%;
  aspect-ratio: 1;
  border: 1px solid var(--gold-line);
  border-radius: 2px;
  z-index: -1;
}
.about-photo-badge {
  position: absolute;
  top: 28px;
  left: -28px;
  background: var(--gold);
  color: var(--navy);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-photo-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
}
.about-photo-badge span {
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
.about-text .section-title { text-align: left; }
.about-text .section-subtitle { text-align: left; }
.about-desc {
  color: var(--text-mid);
  line-height: 1.9;
  font-weight: 300;
  font-size: .97rem;
  margin-bottom: 20px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 40px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-feature-icon {
  width: 32px; height: 32px;
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: .9rem;
}
.about-feature p {
  font-size: .85rem;
  color: var(--text-mid);
  font-weight: 500;
  line-height: 1.5;
}

/* ── SERVICES ──────────────────────────────────── */
#paslaugos { background: var(--cream); }

.tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 52px;
  border-bottom: 1px solid var(--border);
}
.tab-btn {
  padding: 14px 28px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  transition: all .25s;
}
.tab-btn:hover  { color: var(--navy); }
.tab-btn.active { color: var(--gold-dark); border-bottom-color: var(--gold); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--warm-white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .25s;
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 28px; right: 28px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-line), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover { background: var(--gold-faint); }
.service-card:hover::after { opacity: 1; }

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.service-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
  flex: 1;
}
.service-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold-dark);
  white-space: nowrap;
  line-height: 1;
}
.service-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.service-tag {
  font-size: .68rem;
  padding: 4px 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.tag-duration {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border);
}
.tag-type {
  background: var(--gold-faint);
  color: var(--gold-dark);
  border: 1px solid var(--gold-line);
}

/* ── GALLERY STRIP ─────────────────────────────── */
#galerija {
  padding: 0;
  background: var(--navy);
}
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 340px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  filter: brightness(.8);
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1); }
.gallery-item-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, var(--navy-light), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-right: 1px solid rgba(201,168,76,.15);
}

/* ── TEAM ──────────────────────────────────────── */
#komanda { background: var(--warm-white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.team-card { text-align: center; }
.team-photo {
  width: 180px; height: 180px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  position: relative;
  background: linear-gradient(145deg, var(--navy-light), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.team-photo-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  pointer-events: none;
}
.team-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-role {
  font-size: .72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.team-bio {
  font-size: .88rem;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.7;
  font-weight: 300;
}

/* ── COUPON ────────────────────────────────────── */
#kuponai {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#kuponai::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 80% 50%, rgba(201,168,76,.06) 0%, transparent 60%);
}
#kuponai .section-title { color: var(--white); }
#kuponai .section-subtitle { color: rgba(255,255,255,.45); }
#kuponai .section-eyebrow { color: var(--gold); }

.coupon-wrapper {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(201,168,76,.25);
  padding: 56px;
  max-width: 620px;
  margin: 0 auto;
  background: rgba(255,255,255,.03);
}
.coupon-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 32px 0;
}
.amount-btn {
  padding: 18px 12px;
  border: 1px solid rgba(201,168,76,.3);
  background: transparent;
  color: rgba(255,255,255,.6);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
}
.amount-btn:hover  { border-color: var(--gold); color: var(--gold); }
.amount-btn.active { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(201,168,76,.25);
  background: rgba(255,255,255,.05);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .93rem;
  font-weight: 300;
  transition: border-color .2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input::placeholder { color: rgba(255,255,255,.25); }
.form-group input:focus { outline: none; border-color: var(--gold); }
.form-group input.error { border-color: #e07070; }

/* Light form variant (used in booking modal) */
.form-light .form-group label { color: var(--text-mid); }
.form-light .form-group input,
.form-light .form-group select {
  background: var(--warm-white);
  color: var(--text);
  border-color: var(--border);
}
.form-light .form-group input::placeholder { color: var(--text-light); }
.form-light .form-group input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.1); }

/* ── CONTACT ───────────────────────────────────── */
#kontaktai { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 860px;
  margin: 0 auto;
}
.contact-card {
  background: var(--warm-white);
  padding: 40px 28px;
  text-align: center;
}
.contact-icon {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--gold);
  display: block;
}
.contact-card h3 {
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}
.contact-card p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--navy);
}
.contact-card a { color: var(--navy); transition: color .2s; }
.contact-card a:hover { color: var(--gold-dark); }

/* ── FOOTER ────────────────────────────────────── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,.2);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: .95rem;
  color: rgba(255,255,255,.5);
}
.footer-logo span { color: var(--gold); }
footer p {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .5px;
}
footer a { color: var(--gold); transition: opacity .2s; }
footer a:hover { opacity: .7; }

/* ══════════════════════════════════════════════
   BOOKING MODAL
   ══════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,16,30,.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--warm-white);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn .35s cubic-bezier(.16,1,.3,1);
  border-top: 2px solid var(--gold);
}
@keyframes modalIn {
  from { opacity:0; transform: translateY(28px) scale(.98); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px 20px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--warm-white);
  z-index: 10;
}
.modal-header h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--navy);
}
.modal-close {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-size: .85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
  font-family: var(--font-sans);
}
.modal-close:hover { border-color: var(--navy); color: var(--navy); }

/* Steps */
.steps {
  display: flex;
  padding: 20px 32px 0;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 16px;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 11px;
  left: 50%; right: -50%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.step:not(:last-child).done::after,
.step:not(:last-child).active::after { background: var(--gold); }
.step-num {
  width: 22px; height: 22px;
  border: 1px solid var(--border);
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 600;
  color: var(--text-light);
  position: relative;
  z-index: 1;
  transition: all .25s;
  font-family: var(--font-sans);
}
.step.active .step-num,
.step.done   .step-num {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}
.step-label {
  font-size: .65rem;
  color: var(--text-light);
  margin-top: 6px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.step.active .step-label { color: var(--gold-dark); }

.modal-body { padding: 24px 32px 32px; }

.step-panel { display: none; }
.step-panel.active { display: block; }

/* Service summary */
.service-summary {
  background: var(--cream);
  border-left: 2px solid var(--gold);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.service-summary-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--navy);
}
.service-summary-meta {
  font-size: .75rem;
  color: var(--text-light);
  margin-top: 3px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.service-summary-price {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--gold-dark);
  white-space: nowrap;
}

/* Calendar */
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cal-nav {
  background: none;
  border: 1px solid var(--border);
  width: 32px; height: 32px;
  cursor: pointer;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  color: var(--text-mid);
}
.cal-nav:hover { border-color: var(--gold); color: var(--gold-dark); }
.cal-month-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-day-header {
  text-align: center;
  font-size: .65rem;
  font-weight: 700;
  color: var(--text-light);
  padding: 6px 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  cursor: pointer;
  transition: all .15s;
  font-weight: 500;
  color: var(--text-mid);
}
.cal-day.inactive        { color: var(--border); cursor: default; pointer-events: none; }
.cal-day.today           { color: var(--gold-dark); font-weight: 700; }
.cal-day.available:hover { background: var(--cream); color: var(--navy); }
.cal-day.selected        { background: var(--gold); color: var(--navy); font-weight: 700; }

.slots-section { margin-top: 24px; }
.slots-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}
.slots-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.slot-btn {
  padding: 10px 18px;
  border: 1px solid var(--border);
  background: var(--warm-white);
  color: var(--text-mid);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all .15s;
  font-family: var(--font-sans);
}
.slot-btn:hover   { border-color: var(--gold); color: var(--gold-dark); }
.slot-btn.active  { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.slots-loading    { color: var(--text-light); font-size: .85rem; }
.slots-empty      { color: var(--text-light); font-size: .85rem; background: var(--cream); padding: 16px; text-align: center; }

/* Booking summary */
.booking-summary {
  background: var(--cream);
  padding: 20px;
  margin-bottom: 24px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-label { color: var(--text-light); font-size: .82rem; letter-spacing: .5px; }
.summary-value { font-weight: 600; color: var(--navy); }
.summary-total .summary-label { color: var(--navy); font-size: .82rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.summary-total .summary-value { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; color: var(--gold-dark); }
.summary-discount .summary-value { color: #2e9e6b; }

.coupon-row { display: flex; gap: 8px; margin-bottom: 20px; }
.coupon-row input {
  flex: 1;
  border: 1px solid var(--border);
  padding: 12px 14px;
  font-size: .88rem;
  font-family: monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--warm-white);
  color: var(--text);
}
.coupon-row input:focus { outline: none; border-color: var(--gold); }
.coupon-msg { font-size: .82rem; margin-top: 6px; padding: 8px 12px; }
.coupon-msg.ok    { background: #eafaf1; color: #2e9e6b; }
.coupon-msg.error { background: #fdf0f0; color: #c05050; }

.modal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.modal-nav .btn { min-width: 130px; justify-content: center; }

/* ── TOAST ─────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .5px;
  z-index: 9999;
  box-shadow: var(--shadow);
  transform: translateY(100px);
  opacity: 0;
  transition: all .3s ease;
  max-width: 320px;
  border-left: 3px solid var(--gold);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { border-left-color: #e07070; }
.toast.success { border-left-color: #5ec893; }

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1024px) {
  section { padding: 80px 32px; }
  .hero-inner { padding: 120px 32px 80px; }
  .hero-photo { width: 42%; }
  .about-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 24px; gap: 20px; border-top: 1px solid rgba(201,168,76,.2); }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }

  section { padding: 64px 24px; }
  .hero-inner { padding: 100px 24px 60px; }
  .hero-photo { display: none; }
  .hero h1 { font-size: clamp(2.8rem, 10vw, 4rem); }
  .hero-stats { gap: 28px; margin-top: 48px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-badge { left: -12px; }

  .gallery-strip { grid-template-columns: repeat(3, 1fr); height: 220px; }
  .gallery-strip .gallery-item:nth-child(n+4) { display: none; }

  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  .tabs {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .tabs::-webkit-scrollbar { display: none; }
  .tab-btn { padding: 12px 18px; white-space: nowrap; flex-shrink: 0; }

  .coupon-wrapper { padding: 36px 24px; }
  .coupon-amounts { grid-template-columns: repeat(2, 1fr); }

  .modal { max-height: 95vh; border-radius: 0; position: fixed; bottom: 0; left: 0; right: 0; max-width: 100%; }
  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal-body { padding: 20px 24px 28px; }
  .modal-header { padding: 20px 24px 16px; }
  .steps { padding: 16px 24px 0; }
  .service-summary { flex-direction: column; align-items: flex-start; }
  .modal-nav .btn { flex: 1; min-width: 0; }

  footer { flex-direction: column; text-align: center; padding: 28px 24px; }
}

@media (max-width: 480px) {
  .coupon-amounts { grid-template-columns: repeat(3, 1fr); }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip .gallery-item:nth-child(n+3) { display: none; }
  .team-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}
