/* ============================================================
   JOY HAIR STUDIO — main.css
   Design tokens + component styles
   ============================================================ */

/* Fonts */
@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/playfair-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/playfair-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Design Tokens */
:root {
  --color-bg:        #F5F0E1;
  --color-surface:   #FFFFFF;
  --color-primary:   #1A1A1A;
  --color-accent:    #C67B5C;
  --color-accent-lt: #E8C9B9;
  --color-muted:     #8A7A72;
  --font-heading:    "Playfair Display", Georgia, serif;
  --font-body:       "Inter", "Noto Sans KR", system-ui, sans-serif;
  --radius-card:     16px;
  --radius-btn:      8px;
  --shadow-card:     0 4px 24px rgba(0,0,0,0.06);
  --max-w:           1200px;
  --section-pad:     80px 24px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ---- Nav ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 225, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(198, 123, 92, 0.15);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.logo-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 3px;
  text-decoration: none;
}
.logo-joy {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.36em;
  color: #8a7a72;
  text-transform: uppercase;
}
.logo-divider {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
}
.logo-divider span {
  flex: 1;
  height: 1px;
  background: #C67B5C;
}
.logo-divider .dot {
  flex: none;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #C67B5C;
  margin: 0 4px;
}
.logo-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.5em;
  color: #6b5c54;
  text-transform: uppercase;
}

/* Nav links */
/* Nav links row — always its own row below the banner */
.nav-links-row {
  border-top: 1px solid rgba(198,123,92,0.12);
  background: rgba(245,240,225,0.97);
  width: 100%;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  list-style: none;
  margin: 0 auto;
  padding: 4px 24px;
  max-width: var(--max-w);
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  text-decoration: none;
  padding: 8px 14px;
  white-space: nowrap;
  border-radius: var(--radius-btn);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover {
  color: var(--color-accent);
  background: rgba(198,123,92,0.08);
}

/* Hamburger — gone */
.nav-hamburger { display: none; }
.nav-mobile { display: none !important; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.btn-lang {
  font-size: 13px;
  color: var(--color-primary);
  padding: 7px 16px;
  border-radius: var(--radius-btn);
  border: 1.5px solid #b5a090;
  background: rgba(255,255,255,0.6);
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 500;
}
.btn-lang:hover { background: rgba(255,255,255,0.9); border-color: var(--color-primary); color: var(--color-primary); }
.btn-lang.hidden { display: none; }

.btn-book {
  background: var(--color-accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 400;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.btn-book:hover { background: #b06a4a; transform: translateY(-1px); }
.btn-book:active { transform: translateY(0); }

/* ---- Hero ---- */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px 24px 80px;
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(198,123,92,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 80% at 80% 70%, rgba(107,92,84,0.12) 0%, transparent 55%),
    linear-gradient(160deg, #F5F0E1 0%, #EDE4D0 40%, #D4C5B0 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C67B5C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: 24px;
  white-space: pre-line;
}
.hero h1 em {
  font-style: italic;
  color: var(--color-accent);
}
.hero-sub {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--color-muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.btn-cta {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius-btn);
  font-size: 16px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(198,123,92,0.35);
}
.btn-cta:hover { background: #b06a4a; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(198,123,92,0.45); }

/* ---- Section wrapper ---- */
.section { padding: var(--section-pad); }
#services { padding-top: 16px; }
#what { padding-bottom: 16px; }
#gallery { padding-top: 16px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--color-muted);
  font-size: 16px;
  margin-bottom: 48px;
}

/* ---- What is a Digital Perm ---- */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.what-text p { color: var(--color-muted); line-height: 1.8; margin-bottom: 16px; font-size: 16px; }
.what-text p:last-child { margin-bottom: 0; }

/* Before/After Slider */
.ba-slider {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/5.9;
  min-height: 420px;
  user-select: none;
  max-width: 676px;
  margin: 0 auto;
}
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  font-style: italic;
}
.ba-before {
  background: linear-gradient(135deg, #C9B8A8 0%, #A89080 100%);
  background-size: cover;
  background-position: center;
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}
.ba-after {
  background: linear-gradient(135deg, #6B5C54 0%, #3D2F2A 100%);
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.ba-before-label,
.ba-after-label {
  position: absolute;
  bottom: 16px;
  font-family: var(--font-heading); font-style: italic;
  font-size: 15px; color: rgba(255,255,255,0.9);
  text-shadow: none;
  z-index: 20;
  pointer-events: none;
}
.ba-before-label { left: 16px; }
.ba-after-label  { right: 16px; }

/* Curl decoration in after panel */
.ba-after::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 80px at 30% 30%, rgba(198,123,92,0.3), transparent),
    radial-gradient(circle 60px at 70% 60%, rgba(198,123,92,0.2), transparent),
    radial-gradient(circle 100px at 60% 20%, rgba(232,201,185,0.15), transparent);
}
.ba-after.has-photo::before { display: none; }

.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 10;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
  cursor: ew-resize;
  transition: transform 0.1s;
}
.ba-handle svg { width: 20px; height: 20px; fill: var(--color-accent); }

/* ---- Gallery ---- */
.gallery-section { background: var(--color-surface); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 3/4;
  position: relative;
  background: linear-gradient(135deg, #E8D8C8 0%, #C8B0A0 100%);
}
/* remove stale nth-child overrides that break the portrait ratio */
.gallery-card:nth-child(4),
.gallery-card:nth-child(5) { aspect-ratio: 3/4; }
.gallery-card:nth-child(2) { background: linear-gradient(135deg, #D0C0B0 0%, #A89080 100%); }
.gallery-card:nth-child(3) { background: linear-gradient(135deg, #BDB0A5 0%, #8A7A72 100%); }
.gallery-card:nth-child(4) { background: linear-gradient(135deg, #C8B5A5 0%, #9A8278 100%); aspect-ratio: 3/3.5; }
.gallery-card:nth-child(5) { background: linear-gradient(135deg, #D8C8B8 0%, #B09080 100%); aspect-ratio: 3/3.5; }
.gallery-card:nth-child(6) { background: linear-gradient(135deg, #E0D0C0 0%, #C0A090 100%); }
.gallery-label {
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(26,26,26,0.7), transparent);
  color: #fff;
  font-size: 13px;
  font-style: italic;
  font-family: var(--font-heading);
  width: 100%;
}

/* ---- Services ---- */
.services-featured {
  background: var(--color-primary);
  border-radius: var(--radius-card);
  padding: 40px 36px 40px 36px;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr 90px;
  grid-template-rows: auto auto auto auto;
  column-gap: 20px;
  row-gap: 4px;
  position: relative;
  overflow: hidden;
}
/* Row 1: badge | price (spans rows 1+2) */
.services-featured .featured-badge  { grid-column: 1; grid-row: 1; align-self: end; justify-self: start; padding-left: 15px; }
.services-featured .featured-price  { grid-column: 2; grid-row: 1 / 3; align-self: center; text-align: center; padding-right: 10px; }
/* Row 2: name */
.services-featured .featured-name   { grid-column: 1; grid-row: 2; margin: 0; padding-left: 15px; }
/* Row 3: description (full width) */
.services-featured .featured-desc   { grid-column: 1 / -1; grid-row: 3; margin: 10px 0 12px; padding-left: 15px; padding-right: 51px; }
/* Row 4: duration | book button */
.services-featured .featured-duration { grid-column: 1; grid-row: 4; align-self: center; padding-left: 15px; }
.services-featured .btn-book-service  { grid-column: 1 / -1; grid-row: 4; align-self: center; justify-self: end; width: 180px; margin-right: 15px; }
.services-featured::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(198,123,92,0.12);
}
.services-featured::after {
  content: "";
  position: absolute;
  bottom: -40px; left: 40%;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(198,123,92,0.08);
}
.featured-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.25);
  margin-bottom: 12px;
}
.services-featured .featured-name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(26px, 4vw, 42px);
  color: #fff;
  line-height: 1.1;
}
.services-featured .featured-desc { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.6; }
.services-featured .featured-duration { color: var(--color-accent-lt); font-size: 13px; }

.featured-price {
  text-align: center;
  position: relative;
  z-index: 1;
}
.featured-price .amount {
  font-family: var(--font-heading);
  font-size: 26px;
  color: #fff;
  line-height: 1;
}
.featured-price .from { font-size: 11px; color: rgba(255,255,255,0.5); display: block; margin-bottom: 4px; }
.featured-price .up { font-size: 11px; color: var(--color-accent-lt); display: block; margin-top: 4px; }
.services-featured .btn-book-service {
  display: block;
  background: var(--color-accent);
  color: #fff;
  padding: 10px 8px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 400;
  transition: background 0.2s;
  text-align: center;
  white-space: nowrap;
  line-height: 1.3;
}
.services-featured .btn-book-service:hover { background: #b06a4a; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 14px 16px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.service-card h3 { font-family: var(--font-heading); font-weight: 500; font-size: 17px; margin: 0; }
.service-card p { color: var(--color-muted); font-size: 13px; line-height: 1.5; flex: 1; margin: 0; }
.service-card .price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-top: 6px; }
.service-card .price { color: var(--color-accent); font-size: 15px; }
.service-card .duration { color: var(--color-muted); font-size: 12px; }

/* ---- How It Works ---- */
.how-section { background: var(--color-surface); }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.how-step { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.how-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}
.how-icon svg { width: 32px; height: 32px; }
.how-step-num {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 400;
}
.how-step h3 { font-family: var(--font-heading); font-weight: 500; font-size: 20px; }
.how-step p { color: var(--color-muted); font-size: 15px; line-height: 1.6; }



/* ---- FAQ ---- */
.faq-section { background: var(--color-surface); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(138,122,114,0.15);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-primary);
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--color-accent); }
.faq-q[aria-expanded="true"] { color: var(--color-accent); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  transition: transform 0.25s;
  color: var(--color-muted);
}
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--color-accent); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-a.open { max-height: 300px; }
.faq-a p {
  padding-bottom: 20px;
  color: var(--color-muted);
  line-height: 1.8;
  font-size: 15px;
}

/* ---- Booking ---- */
.booking-section {
  background: linear-gradient(160deg, var(--color-primary) 0%, #2D2520 100%);
  position: relative;
  overflow: hidden;
}
.booking-section::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,123,92,0.15) 0%, transparent 70%);
}
.booking-section .section-title { color: #fff; }
.booking-section .section-sub { color: rgba(255,255,255,0.6); }
.booking-form {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 48px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  position: relative;
  z-index: 1;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label {
  font-size: 13px;
  color: var(--color-muted);
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid rgba(138,122,114,0.2);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-primary);
  background: var(--color-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  min-height: 44px;
}
.form-group textarea { min-height: 96px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(198,123,92,0.12);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A7A72' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-btn);
  font-size: 16px;
  font-family: var(--font-body);
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
  min-height: 52px;
}
.form-submit:hover { background: #b06a4a; transform: translateY(-1px); }
.form-submit:active { transform: none; }
.form-submit:disabled { background: var(--color-muted); cursor: not-allowed; transform: none; }

/* ── Public time slot tiles ── */
.pub-time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 4px 0;
}
.pub-time-placeholder,
.pub-time-loading {
  grid-column: 1 / -1;
  color: var(--color-muted);
  font-size: 14px;
  padding: 8px 0;
  font-style: italic;
}
.pub-time-tile {
  padding: 8px 4px;
  border: 1.5px solid var(--color-border);
  border-radius: 100px;
  background: #fff;
  font-size: 13px;
  font-family: inherit;
  color: var(--color-primary);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  text-align: center;
}
.pub-time-tile:hover { border-color: var(--color-accent); color: var(--color-accent); }
.pub-time-tile.selected {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  font-weight: 600;
}
.form-message {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  display: none;
}
.form-message.success { background: #E8F5E9; color: #2E7D32; display: block; }
.form-message.error { background: #FFF3E0; color: #E65100; display: block; }

/* ---- Footer ---- */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.75);
  padding: 64px 24px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-logo .logo-joy { font-size: 18px; color: rgba(255,255,255,0.9); }
.footer-logo .logo-sub { color: rgba(255,255,255,0.4); }
.footer-logo .logo-divider span { background: rgba(198,123,92,0.6); }
.footer-logo .logo-divider .dot { background: rgba(198,123,92,0.6); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col p, .footer-col li { font-size: 14px; line-height: 1.8; }
.footer-col a { color: var(--color-accent-lt); transition: color 0.2s; }
.footer-col a:hover { color: var(--color-accent); }
.footer-hours-row { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; }
.footer-hours-row .day { color: rgba(255,255,255,0.5); min-width: 70px; }
.footer-hours-row .closed { color: var(--color-muted); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ---- Mobile sticky CTA ---- */
.mobile-cta { display: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  :root { --section-pad: 60px 20px; }

  .what-grid { grid-template-columns: 1fr; gap: 40px; }
  .featured-price { text-align: center; }
  .how-steps { grid-template-columns: 1fr; gap: 32px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-logo { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --section-pad: 48px 16px; }
  .nav-inner { padding: 0 16px; gap: 8px; }
  .nav-links a { font-size: 12px; padding: 7px 10px; }
  .btn-book { font-size: 13px; padding: 9px 16px; }



  .gallery-grid { grid-template-columns: 1fr; }
  .ba-slider { max-width: 100%; }
  .services-featured { padding: 28px 16px; column-gap: 12px; }
  .services-featured .featured-name { font-size: 22px; }
  .services-featured .featured-desc { font-size: 13px; }
  .featured-price .amount { font-size: 22px; }
  .booking-form { padding: 28px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-logo { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }


}

/* ---- Service Checkbox Cards (booking form) ---- */
.service-radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.service-radio-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  background: #fff;
  user-select: none;
}
.service-radio-card:hover { border-color: var(--color-accent); background: rgba(198,123,92,0.03); }
.service-radio-card.selected {
  border-color: var(--color-accent);
  background: rgba(198,123,92,0.08);
}
.src-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1.5px solid #ccc;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  color: transparent;
  background: #fff;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.service-radio-card.selected .src-check {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #fff;
}
.src-info { display: flex; flex-direction: column; gap: 2px; }
.src-name { font-size: 15px; font-weight: 500; color: var(--color-primary); }
.src-meta { font-size: 13px; color: var(--color-muted); }
.service-radio-card.selected .src-name { color: var(--color-accent); }

/* ================================================================
   Hero Image Carousel
   ================================================================ */
.hero-carousel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}
.hero-carousel-slide.active {
  opacity: 1;
}
.hero .hero-content {
  position: relative;
  z-index: 1;
}
/* Cream overlay so text stays readable and image softens to match brand palette */
.hero-carousel-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 240, 225, 0.75); /* --color-bg at 75% opacity */
  z-index: 1;
}

/* Booking pending note */
.booking-pending-note {
  font-size: 13px;
  color: var(--color-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}


/* Date input: styled clearly as interactive on mobile */
.date-input-wrap {
  position: relative;
}
.date-input-wrap input[type="date"] {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius-btn);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23C67B5C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") no-repeat right 14px center;
  cursor: pointer;
  color: var(--color-primary);
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
  box-sizing: border-box;
}
.date-input-wrap input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 44px;
  height: 100%;
  cursor: pointer;
}
.date-hint {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: var(--color-muted);
  pointer-events: none;
  z-index: 1;
}

/* ── Custom Calendar ──────────────────────────────────────── */
.custom-cal-wrap {
  background: #fff;
  border: 1.5px solid #e0d8d0;
  border-radius: 12px;
  padding: 12px;
  user-select: none;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cal-month-label {
  font-weight: 600;
  font-size: 15px;
  color: var(--color-primary);
}
.cal-nav {
  background: none;
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
  border-radius: 6px;
  width: 30px;
  height: 30px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.cal-nav:hover { background: var(--color-accent); color: #fff; }
.cal-dow-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 4px;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-day {
  aspect-ratio: 1;
  border: none;
  border-radius: 8px;
  background: none;
  font-size: 13px;
  cursor: pointer;
  color: var(--color-primary);
  transition: background 0.15s;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal-day:hover:not([disabled]) { background: rgba(198,123,92,0.15); }
.cal-day--today {
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
  font-weight: 600;
}
.cal-day--selected {
  background: var(--color-accent) !important;
  color: #fff !important;
  font-weight: 600;
}
.cal-day--disabled {
  color: #ccc;
  cursor: not-allowed;
}
.cal-day--closed {
  color: #e0b0b0;
  cursor: not-allowed;
  background: #fff5f5;
}
.cal-day--empty {
  pointer-events: none;
}

/* ---- Price display fix: larger prominent amount ---- */
.featured-price .amount {
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: 42px !important;
  font-weight: 500 !important;
  color: #fff !important;
  line-height: 1 !important;
  letter-spacing: -0.01em !important;
}
@media (max-width: 600px) {
  .featured-price .amount { font-size: 32px !important; }
}

