/* ============================================================
   Seoul Lashes — Main Stylesheet
   Design: Playfair Display + DM Sans · Blush · Gold · Editorial
   ============================================================ */

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

/* ── Variables ──────────────────────────────────────────── */
:root {
  --bg:         #FDFAF7;
  --bg-blush:   #FDF0EB;
  --text:       #1A1A1A;
  --text-muted: #6B5E58;
  --blush:      #E8C4B8;
  --blush-dark: #D4A090;
  --gold:       #C9A96E;
  --gold-dark:  #A8844A;
  --sage:       #B5C4B1;
  --dark:       #2C1810;
  --white:      #FFFFFF;
  --border:     rgba(201,169,110,0.25);
  --shadow:     0 8px 32px rgba(44,24,16,0.08);
  --shadow-lg:  0 16px 48px rgba(44,24,16,0.12);
  --radius:     20px;
  --radius-sm:  12px;
  --radius-pill:50px;
  --transition: 0.22s ease;
  --max-w:      1140px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
p  { font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: var(--text-muted); }

.label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-blush {
  background: var(--blush);
  color: var(--dark);
}
.btn-blush:hover {
  background: var(--blush-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.875rem; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(253,250,247,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(44,24,16,0.06);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--dark); }
.nav-cta { margin-left: 16px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--transition); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  padding: 100px 24px 40px;
  flex-direction: column;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 600; color: var(--dark); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FDF0EB 0%, #FDFAF7 40%, #F5EDE8 70%, #EDD5C8 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 80vh;
  background: radial-gradient(circle, rgba(232,196,184,0.4) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 40vw; height: 50vh;
  background: radial-gradient(circle, rgba(201,169,110,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-label { margin-bottom: 20px; }
.hero h1 {
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── STRIP (trust bar) ───────────────────────────────────── */
.trust-strip {
  background: var(--dark);
  padding: 18px 0;
  overflow: hidden;
}
.trust-strip-inner {
  display: flex;
  gap: 64px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.trust-strip span {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.trust-strip span strong { color: var(--gold); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── WHAT IS ─────────────────────────────────────────────── */
.what-is { background: var(--white); }
.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.what-is-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #EDD5C8 0%, #E8C4B8 50%, #D4A090 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.what-is-image img { width: 100%; height: 100%; object-fit: cover; }
.what-is-image .img-placeholder {
  font-size: 4rem;
  opacity: 0.4;
}
.what-is-text .label { margin-bottom: 16px; }
.what-is-text h2 { color: var(--dark); margin-bottom: 20px; }
.what-is-text p { margin-bottom: 32px; }
.feature-list { list-style: none; margin-bottom: 36px; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  color: var(--text);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── SERVICES ────────────────────────────────────────────── */
.services { background: var(--bg); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .label { margin-bottom: 12px; }
.section-header h2 { color: var(--dark); margin-bottom: 16px; }
.section-header p { max-width: 480px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-card.signature {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--white) 0%, #FDF8F2 100%);
}
.signature-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.founding-badge {
  display: inline-block;
  background: var(--bg-blush);
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.service-card h3 { color: var(--dark); margin-bottom: 8px; }
.service-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.duration-pill {
  background: var(--bg-blush);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  font-family: 'Playfair Display', serif;
}
.service-card p { margin-bottom: 24px; font-size: 0.9rem; }
.founding-note {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: var(--bg-blush);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
}
.founding-note strong { color: var(--gold-dark); }

/* ── EXPERIENCE ──────────────────────────────────────────── */
.experience {
  background: var(--dark);
  padding: 96px 0;
}
.experience .section-header .label { color: var(--blush); }
.experience .section-header h2 { color: var(--white); }
.experience .section-header p { color: rgba(255,255,255,0.6); }
.experience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.exp-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(201,169,110,0.2);
  transition: all var(--transition);
}
.exp-item:hover {
  background: rgba(201,169,110,0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.exp-icon { font-size: 2rem; margin-bottom: 16px; }
.exp-item h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}
.exp-item p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  background: linear-gradient(135deg, #EDD5C8, #E8C4B8);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,24,16,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 600; font-size: 0.9rem; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(44,24,16,0.3);
  font-size: 2rem;
}
.gallery-placeholder span { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.05em; }

/* ── BOOKING ─────────────────────────────────────────────── */
.booking { background: var(--bg-blush); }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.booking-intro .label { margin-bottom: 12px; }
.booking-intro h2 { color: var(--dark); margin-bottom: 16px; }
.booking-intro p { margin-bottom: 32px; }
.booking-quick {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.booking-quick-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  font-weight: 500;
}
.booking-quick-btn:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.booking-quick-btn .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.icon-wa { background: #25D366; }
.icon-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.icon-email { background: var(--blush); }

.booking-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Steps */
.book-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 36px;
  box-shadow: var(--shadow);
}
.book-step-hidden { display: none !important; }
.step-hd {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Service list */
.svc-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.svc-row {
  display: flex;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background 0.15s;
}
.svc-row:last-child { border-bottom: none; }
.svc-row:hover { background: var(--off-white); }
.svc-row.selected { background: #FDF8F2; }
.svc-accent {
  width: 4px;
  align-self: stretch;
  background: var(--border);
  flex-shrink: 0;
  transition: background 0.2s;
}
.svc-row.selected .svc-accent { background: var(--gold); }
.svc-info { flex: 1; padding: 18px 16px; }
.svc-name {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.svc-meta { font-size: 0.82rem; color: var(--text-muted); margin-top: 3px; }
.svc-meta strong { color: var(--dark); }
.svc-badge {
  font-size: 0.68rem;
  font-weight: 600;
  background: var(--blush);
  color: var(--gold-dark);
  padding: 2px 8px;
  border-radius: 20px;
}
.svc-badge-bridal { background: #F5EFE6; color: #8B5E3C; }
.svc-tick {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-right: 16px;
  flex-shrink: 0;
  transition: all 0.2s;
}
.svc-row.selected .svc-tick {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* Step 2 selected-service pill */
.selected-svc-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}
.change-svc-btn {
  background: none;
  border: none;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-family: inherit;
}
.slot-date-label { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 10px; }
.slot-date-label strong { color: var(--dark); }

/* Selected day highlight in calendar */
.fc-day-selected .fc-daygrid-day-frame { background: rgba(201,169,110,.12) !important; }

/* Calendar */
#booking-calendar {
  margin-bottom: 24px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.fc .fc-toolbar-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--dark); }
.fc .fc-button-primary { background: var(--gold) !important; border-color: var(--gold) !important; border-radius: 8px !important; }
.fc .fc-button-primary:hover { background: var(--gold-dark) !important; border-color: var(--gold-dark) !important; }
.fc .fc-day-today { background: rgba(201,169,110,0.1) !important; }
.fc .fc-daygrid-day:hover { background: rgba(232,196,184,0.2); cursor: pointer; }
.fc-day-unavailable { background: rgba(44,24,16,0.04) !important; cursor: not-allowed !important; }
.fc-day-unavailable .fc-daygrid-day-number { opacity: 0.3; }

/* Form */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; margin-top: 8px; }
.form-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* Slot picker */
.slot-picker { margin-bottom: 18px; }
.slot-picker label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.slot-btn {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg);
  transition: all var(--transition);
}
.slot-btn:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--white);
}
.slot-btn.selected {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.slot-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.no-slots { color: var(--text-muted); font-size: 0.875rem; font-style: italic; }

/* Alerts */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: none;
}
.alert.show { display: block; }
.alert-success { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }
.alert-error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

/* ── POLICIES ────────────────────────────────────────────── */
.policies { background: var(--white); padding: 64px 0; }
.policies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.policy-item {
  padding: 28px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  text-align: center;
}
.policy-icon { font-size: 1.6rem; margin-bottom: 12px; }
.policy-item h4 { color: var(--dark); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.policy-item p { font-size: 0.82rem; }

/* ── FIND US ─────────────────────────────────────────────── */
.find-us { background: var(--bg); }
.find-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.find-us-info .label { margin-bottom: 12px; }
.find-us-info h2 { color: var(--dark); margin-bottom: 24px; }
.address-block {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 28px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.address-block h4 { color: var(--dark); font-size: 0.9rem; margin-bottom: 8px; }
.address-block p { font-size: 0.9rem; }
.contact-links { display: flex; flex-direction: column; gap: 12px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}
.contact-link:hover { color: var(--gold); }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrap iframe { display: block; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
}
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

/* ── SUCCESS / TOAST ─────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--dark);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 999;
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast .toast-icon { color: var(--gold); margin-right: 8px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  section { padding: 72px 0; }
  .what-is-grid,
  .booking-grid,
  .find-us-grid { grid-template-columns: 1fr; gap: 40px; }
  .what-is-image { aspect-ratio: 16/9; }
  .services-grid { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .policies-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 540px) {
  section { padding: 56px 0; }
  .hero-ctas { flex-direction: column; }
  .experience-grid { grid-template-columns: 1fr; }
  .policies-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
