/* =====================================================
   AYAN AFRICAN HAIR SALON — MAIN STYLESHEET
   ===================================================== */

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

:root {
  --gold:       #C9922A;
  --gold-lt:    #F0C55A;
  --gold-grad:  linear-gradient(135deg, #C9922A 0%, #F0C55A 50%, #C9922A 100%);
  --brown:      #2C1810;
  --brown-md:   #5C3520;
  --brown-lt:   #8B5E3C;
  --cream:      #FAF7F0;
  --cream-dk:   #F2EAD8;
  --text:       #1A0E05;
  --text-lt:    #7A5A40;
  --white:      #FFFFFF;
  --shadow-sm:  0 4px 16px rgba(44,24,16,.10);
  --shadow:     0 8px 32px rgba(44,24,16,.14);
  --shadow-lg:  0 20px 60px rgba(44,24,16,.20);
  --radius:     16px;
  --radius-sm:  10px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; object-fit: cover; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ---- SECTION HEADER ---- */
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .desc { margin: 0 auto; }

.label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.label.light { color: rgba(240,197,90,.8); }

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-header.dark h2 { color: #fff; }

.section-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.desc {
  font-size: 16px;
  color: var(--text-lt);
  line-height: 1.75;
  max-width: 540px;
}

/* ---- GOLD LINE ---- */
.gold-line {
  width: 56px;
  height: 3px;
  background: var(--gold-grad);
  border-radius: 3px;
  margin-bottom: 24px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: var(--brown);
  color: var(--gold-lt);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
}

.btn-primary:hover {
  background: var(--brown-md);
  color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44,24,16,.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  background: transparent;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 4px;
  cursor: pointer;
  transition: all .25s;
}

.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.7);
  color: #fff;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  padding: 13px 32px;
  background: transparent;
  color: var(--brown);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--brown);
  border-radius: 4px;
  cursor: pointer;
  transition: all .25s;
}

.btn-outline-dark:hover {
  background: var(--brown);
  color: var(--gold-lt);
}

.btn-book {
  width: 100%;
  padding: 17px;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all .25s;
  margin-top: 8px;
}

.btn-book:hover {
  background: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,146,42,.3);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background .3s, box-shadow .3s;
}

#nav.scrolled {
  background: rgba(250,247,240,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(44,24,16,.1);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(201,146,42,.35));
}
.nav-logo .logo-sub {
  font-size: 7px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: color .3s;
}
#nav.scrolled .logo-sub { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 38px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  position: relative;
  transition: color .25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s;
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

#nav.scrolled .nav-links a { color: var(--brown-md); }
#nav.scrolled .nav-links a:hover { color: var(--brown); }

.nav-book {
  padding: 10px 26px;
  background: var(--brown);
  color: var(--gold-lt) !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all .25s;
}

.nav-book:hover {
  background: var(--gold);
  color: var(--brown) !important;
}

#nav.scrolled .nav-book { background: var(--brown); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,.8);
  transition: all .3s;
}
#nav.scrolled .hamburger span { background: var(--brown); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--brown);
  padding: 24px 48px 32px;
  border-top: 1px solid rgba(201,146,42,.2);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
}
.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 20px; }
.mobile-menu a {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold-lt); }
.mobile-menu .mobile-book {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gold);
  color: var(--brown) !important;
  border-radius: 3px;
  margin-top: 8px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--brown);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Subtle pattern overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(201,146,42,.03) 0, rgba(201,146,42,.03) 2px, transparent 2px, transparent 26px),
    repeating-linear-gradient(-45deg, rgba(201,146,42,.03) 0, rgba(201,146,42,.03) 2px, transparent 2px, transparent 26px);
  z-index: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 60px 80px 80px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  background: rgba(201,146,42,.12);
  border: 1px solid rgba(201,146,42,.35);
  color: var(--gold-lt);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 32px;
  width: fit-content;
}

.hero-badge .dot {
  width: 7px; height: 7px;
  background: #4caf50;
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 20px;
}

.hero h1 .italic { font-style: italic; color: var(--gold); }

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.info-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

.chip-mark {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Payment badge (replaces emoji icon) */
.po-badge {
  width: 36px;
  height: 36px;
  background: var(--brown);
  color: var(--gold-lt);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* SVG inside bd-icon */
.bd-icon svg { display: block; }

/* Hero right — image */
.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #4a2c14 0%, #2c1810 40%, #1a0e00 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
}

.hero-photo-placeholder .hp-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(201,146,42,.06) 0, rgba(201,146,42,.06) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(201,146,42,.06) 0, rgba(201,146,42,.06) 1px, transparent 1px, transparent 40px);
}

.hp-text {
  text-align: center;
  color: rgba(240,197,90,.3);
  position: relative;
  z-index: 1;
}
.hp-icon { font-size: 36px; margin-bottom: 8px; }
.hp-text p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 15px; letter-spacing: 3px; }

/* Hero image — real photo */
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ============================================================
   CURATION OF STYLE
   ============================================================ */
.curation {
  padding: 100px 0;
  background: var(--cream);
}

.curation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.curation-card {
  padding: 40px 28px 36px;
  background: var(--white);
  border: 1px solid rgba(44,24,16,.07);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.curation-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: var(--brown);
  transition: height .3s;
  z-index: 0;
}

.curation-card:hover::after { height: 100%; }

.cc-accent {
  width: 32px; height: 32px;
  background: var(--brown);
  margin-bottom: 24px;
  transition: background .3s;
  position: relative; z-index: 1;
}

.curation-card:hover .cc-accent { background: var(--gold); }

.cc-content { position: relative; z-index: 1; }
.cc-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 14px;
  transition: color .3s;
}
.curation-card:hover .cc-num { color: var(--gold-lt); }

.cc-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 10px;
  transition: color .3s;
}
.curation-card:hover .cc-content h3 { color: var(--gold-lt); }

.cc-content p {
  font-size: 14px;
  color: var(--text-lt);
  line-height: 1.65;
  transition: color .3s;
}
.curation-card:hover .cc-content p { color: rgba(255,255,255,.6); }

/* ============================================================
   CATALOGUE SECTION
   ============================================================ */
.catalogue-section {
  padding: 100px 0;
  background: var(--cream-dk);
}

/* Filter tabs */
.catalogue-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.filter-btn {
  padding: 10px 24px;
  background: transparent;
  border: 1.5px solid rgba(44,24,16,.2);
  color: var(--brown-md);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all .25s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--brown);
  color: var(--gold-lt);
  border-color: var(--brown);
}

/* Catalogue grid */
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

/* Braid card */
.braid-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44,24,16,.07);
  transition: transform .3s, box-shadow .3s;
}

.braid-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.braid-image {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.braid-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.braid-card:hover .braid-image img { transform: scale(1.06); }

/* Geometric braid-pattern overlay on placeholders */
.braid-pattern {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    repeating-linear-gradient(30deg, rgba(201,146,42,.07) 0, rgba(201,146,42,.07) 1px, transparent 1px, transparent 22px),
    repeating-linear-gradient(-30deg, rgba(201,146,42,.07) 0, rgba(201,146,42,.07) 1px, transparent 1px, transparent 22px),
    repeating-linear-gradient(90deg, rgba(201,146,42,.04) 0, rgba(201,146,42,.04) 1px, transparent 1px, transparent 44px);
}

.braid-photo-placeholder {
  position: absolute; inset: 0; z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.braid-ph-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: rgba(240,197,90,.55);
  letter-spacing: 2px;
  text-align: center;
  padding: 0 16px;
}

.braid-tags {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.braid-tag {
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.tag-popular    { background: var(--gold);   color: var(--brown); }
.tag-bestseller { background: var(--brown);  color: var(--gold-lt); }
.tag-trending   { background: #e07b39;       color: #fff; }
.tag-premium    { background: #1a2a4a;       color: #a8c0e0; }
.tag-exclusive  { background: var(--brown);  color: var(--gold-lt); }
.tag-cultural   { background: #3a2a00;       color: var(--gold); }

/* Braid card body */
.braid-info {
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.braid-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--brown);
}

.braid-desc {
  font-size: 13px;
  color: var(--text-lt);
  line-height: 1.6;
}

.braid-duration {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .5px;
}

/* Unique price */
.price-unique {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--brown);
  margin: 4px 0;
}

/* Size selector inside card */
.size-selector {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.size-opt { flex: 1; cursor: pointer; }
.size-opt input { display: none; }

.size-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 6px;
  border: 1.5px solid rgba(44,24,16,.15);
  border-radius: var(--radius-sm);
  transition: all .2s;
  background: var(--cream);
}

.size-btn .sz {
  font-size: 15px;
  font-weight: 800;
  color: var(--brown);
  letter-spacing: 1px;
}

.size-btn .sz-price {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-lt);
}

.size-opt input:checked + .size-btn,
.size-btn.selected {
  background: var(--brown);
  border-color: var(--brown);
}

.size-opt input:checked + .size-btn .sz,
.size-btn.selected .sz { color: var(--gold-lt); }

.size-opt input:checked + .size-btn .sz-price,
.size-btn.selected .sz-price { color: rgba(240,197,90,.7); }

.size-btn:hover {
  border-color: var(--brown);
  background: rgba(44,24,16,.05);
}

/* Book card button */
.btn-book-card {
  margin-top: 6px;
  width: 100%;
  padding: 13px;
  background: var(--brown);
  color: var(--gold-lt);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .25s;
}

.btn-book-card:hover {
  background: var(--gold);
  color: var(--brown);
  letter-spacing: 3px;
}

/* Catalogue bottom CTA */
.catalogue-cta {
  margin-top: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.catalogue-cta p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--text-lt);
}

/* ============================================================
   STORY SECTION
   ============================================================ */
.story {
  padding: 100px 0;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}

.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}

.story-img { overflow: hidden; }

.img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}

.ip-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(201,146,42,.07) 0, rgba(201,146,42,.07) 1px, transparent 1px, transparent 20px);
}

.ip-1 { background: linear-gradient(160deg, #4a2c14, #2c1810); color: rgba(240,197,90,.3); }
.ip-2 { background: linear-gradient(160deg, #3d1a0a, #5c3014); color: rgba(240,197,90,.3); }

.img-placeholder span { position: relative; z-index: 1; }

.story-content {
  padding: 80px 72px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.1;
  margin-bottom: 20px;
}

.story-content h2 em {
  font-style: italic;
  color: var(--gold);
}

.story-content p {
  font-size: 15px;
  color: var(--text-lt);
  line-height: 1.8;
  max-width: 440px;
}

.story-stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(44,24,16,.1);
}

.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--brown);
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-lt);
  text-transform: uppercase;
}

/* ============================================================
   BOOKING SECTION
   ============================================================ */
.booking-section {
  background: var(--brown);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(201,146,42,.03) 0, rgba(201,146,42,.03) 2px, transparent 2px, transparent 28px),
    repeating-linear-gradient(-45deg, rgba(201,146,42,.03) 0, rgba(201,146,42,.03) 2px, transparent 2px, transparent 28px);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.booking-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
}

.booking-left > p {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 36px;
}

.booking-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }

.bd-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.bd-icon {
  width: 44px; height: 44px;
  background: rgba(201,146,42,.15);
  border: 1px solid rgba(201,146,42,.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.bd-item div { display: flex; flex-direction: column; gap: 2px; }
.bd-item strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.bd-item span {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
.bd-item a { color: rgba(255,255,255,.8); transition: color .2s; }
.bd-item a:hover { color: var(--gold-lt); }

.deposit-note {
  padding: 20px;
  background: rgba(201,146,42,.1);
  border: 1px solid rgba(201,146,42,.25);
  border-radius: var(--radius);
}

.deposit-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-lt);
  margin-bottom: 8px;
}

.deposit-note p {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

.booking-right { min-width: 0; }

/* Calendly embed wrapper */
.calendly-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #1a0e08;
  border: 1px solid rgba(201,146,42,.2);
}

.calendly-inline-widget {
  border-radius: var(--radius);
}

/* Fallback shown when Calendly URL is not yet set */
.calendly-not-ready {
  display: none;
  position: absolute;
  inset: 0;
  background: #1a0e08;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  border-radius: var(--radius);
}

/* Show fallback by default; JS adds .calendly-loaded when widget responds */
.calendly-not-ready { display: flex; }
.calendly-wrapper.calendly-loaded .calendly-not-ready { display: none; }

.cnr-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cnr-icon { margin-bottom: 4px; }
.cnr-inner h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--gold-lt);
}
.cnr-inner p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  max-width: 280px;
}

/* Legacy booking form — kept as fallback */
.booking-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.booking-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(44,24,16,.1);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }

.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brown-md);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  background: var(--cream);
  border: 1.5px solid rgba(44,24,16,.12);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: border-color .2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(44,24,16,.3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}

.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 90px; }

/* Booking size selector */
.size-opt-booking { flex: 1; cursor: pointer; }
.size-opt-booking input { display: none; }

.sob {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 8px;
  border: 1.5px solid rgba(44,24,16,.15);
  border-radius: var(--radius-sm);
  transition: all .2s;
  background: var(--cream);
  cursor: pointer;
}

.sob-name { font-size: 13px; font-weight: 600; color: var(--brown); }
.sob-price { font-size: 14px; font-weight: 800; color: var(--brown); }
.sob-key { font-size: 10px; color: var(--text-lt); font-weight: 700; letter-spacing: 1px; }

.sob.active,
.size-opt-booking input:checked + .sob {
  background: var(--brown);
  border-color: var(--brown);
}
.sob.active .sob-name,
.sob.active .sob-price,
.sob.active .sob-key,
.size-opt-booking input:checked + .sob .sob-name,
.size-opt-booking input:checked + .sob .sob-price,
.size-opt-booking input:checked + .sob .sob-key { color: var(--gold-lt); }

/* Price preview */
.price-preview {
  background: var(--cream);
  border: 1px solid rgba(44,24,16,.1);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin: 4px 0 8px;
}

.pp-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-lt);
  padding: 6px 0;
}

.pp-row span:last-child { font-weight: 600; color: var(--text); }

.pp-row.pp-total {
  border-top: 1px solid rgba(44,24,16,.1);
  margin-top: 4px;
  padding-top: 10px;
}
.pp-total span { color: var(--brown); font-weight: 700; font-size: 15px; }

.pp-row.pp-deposit { border-top: none; }
.pp-deposit span:first-child { font-weight: 700; color: var(--gold); }
.pp-deposit span:last-child { font-weight: 800; color: var(--gold); font-size: 16px; }

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
  padding: 100px 0;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
}

.gallery-item { overflow: hidden; border-radius: var(--radius-sm); }
.gi-1 { grid-column: 1 / 6; grid-row: 1 / 3; }
.gi-2 { grid-column: 6 / 9; grid-row: 1 / 2; }
.gi-3 { grid-column: 9 / 13; grid-row: 1 / 2; }
.gi-4 { grid-column: 6 / 10; grid-row: 2 / 3; }
.gi-5 { grid-column: 10 / 13; grid-row: 2 / 3; }

.gallery-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #3d1f0a, #2c1810);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s;
  position: relative;
  overflow: hidden;
}

.gallery-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(201,146,42,.06) 0, rgba(201,146,42,.06) 1px, transparent 1px, transparent 20px);
}

.gallery-placeholder span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 2px;
  color: rgba(240,197,90,.3);
  position: relative;
  z-index: 1;
}

.gallery-item:hover .gallery-placeholder { transform: scale(1.04); }

.gi-1 .gallery-placeholder { background: linear-gradient(160deg, #4a2c14, #2c1810); }
.gi-2 .gallery-placeholder { background: linear-gradient(160deg, #3d1a0a, #5c2a14); }
.gi-3 .gallery-placeholder { background: linear-gradient(160deg, #1a1500, #3d3200); }
.gi-4 .gallery-placeholder { background: linear-gradient(160deg, #3a1528, #5c2040); }
.gi-5 .gallery-placeholder { background: linear-gradient(160deg, #0f2a0f, #1a4a1a); }

/* ============================================================
   QUOTE / CONTACT SECTION
   ============================================================ */
.quote-section {
  padding: 100px 0;
  background: var(--cream-dk);
}

.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.quote-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.1;
  margin-bottom: 16px;
}

.quote-left > p {
  font-size: 15px;
  color: var(--text-lt);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-options { display: flex; flex-direction: column; gap: 14px; }

.contact-opt {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(44,24,16,.09);
  border-radius: var(--radius-sm);
  transition: all .25s;
  cursor: pointer;
}

.contact-opt:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.co-icon {
  width: 44px; height: 44px;
  background: var(--brown);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-opt > div { display: flex; flex-direction: column; gap: 2px; }
.contact-opt strong { font-size: 14px; font-weight: 700; color: var(--brown); }
.contact-opt span { font-size: 13px; color: var(--text-lt); }

.quote-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(44,24,16,.07);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #1A0E08;
  padding: 72px 0 32px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 2px 16px rgba(201,146,42,.4));
}

.footer-sub {
  font-size: 8px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin: 4px 0 16px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }

.social-btn {
  padding: 8px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all .25s;
  cursor: pointer;
}

.social-btn:hover {
  background: rgba(201,146,42,.15);
  border-color: rgba(201,146,42,.35);
  color: var(--gold-lt);
}

.footer-links h4, .footer-contact h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold-lt); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.fc-item {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}
.fc-item a { color: rgba(255,255,255,.5); transition: color .2s; }
.fc-item a:hover { color: var(--gold-lt); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.25); }

.footer-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold);
  padding: 7px 16px;
  border: 1px solid rgba(201,146,42,.3);
  border-radius: 50px;
}

/* ============================================================
   DEPOSIT MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(26,14,8,.8);
  backdrop-filter: blur(6px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 44px 40px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(26,14,8,.4);
  transform: translateY(16px);
  transition: transform .35s;
}

.modal-overlay.open .modal-box { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: rgba(44,24,16,.08);
  border: none;
  border-radius: 50%;
  font-size: 14px;
  color: var(--brown-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.modal-close:hover { background: var(--brown); color: #fff; }

.modal-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.modal-icon {
  width: 64px; height: 64px;
  background: var(--cream-dk);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}

.modal-icon.success {
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.modal-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
}

.modal-step > p {
  font-size: 14px;
  color: var(--text-lt);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 360px;
}

.appt-summary {
  width: 100%;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(44,24,16,.07);
}
.summary-row:last-child { border-bottom: none; }
.summary-row span { color: var(--text-lt); }
.summary-row strong { color: var(--brown); font-weight: 700; }
.summary-row.highlight strong { color: var(--gold); font-size: 16px; }

.deposit-amount {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: var(--brown);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}
.deposit-amount span { font-size: 13px; font-weight: 600; color: rgba(240,197,90,.7); }
.deposit-amount strong { font-size: 22px; font-weight: 800; color: var(--gold-lt); }

.deposit-note-sm { font-size: 12px; color: var(--text-lt); margin-bottom: 20px; line-height: 1.5; }

.po-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-bottom: 12px;
}

.payment-options { width: 100%; display: flex; flex-direction: column; gap: 10px; }

.pay-option {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 16px 18px;
  background: var(--cream);
  border: 1.5px solid rgba(44,24,16,.12);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: left;
  transition: all .25s;
}

.pay-option:hover {
  border-color: var(--brown);
  background: #fff;
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.po-icon { font-size: 24px; flex-shrink: 0; }

.pay-option div { display: flex; flex-direction: column; gap: 2px; }
.pay-option strong { font-size: 14px; font-weight: 700; color: var(--brown); }
.pay-option span { font-size: 12px; color: var(--text-lt); }

.payment-instructions {
  width: 100%;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin: 12px 0;
  text-align: left;
}

.pi-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.pi-icon { font-size: 28px; }
.pi-header h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
}

.pi-steps {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pi-steps li {
  font-size: 14px;
  color: var(--text-lt);
  line-height: 1.5;
}
.pi-steps li strong { color: var(--brown); }

.confirm-note {
  font-size: 13px;
  color: var(--text-lt);
  font-style: italic;
  margin-top: 4px;
}

.btn-ghost-dark {
  display: block;
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1.5px solid rgba(44,24,16,.2);
  color: var(--text-lt);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .2s;
}
.btn-ghost-dark:hover { border-color: var(--brown); color: var(--brown); }

body.modal-open { overflow: hidden; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .container { padding: 0 36px; }
  nav { padding: 0 36px; }
  .footer-inner { padding: 0 36px; }
  .curation-grid { grid-template-columns: 1fr 1fr; }
  .story { grid-template-columns: 1fr; }
  .story-images { min-height: 400px; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { height: 380px; order: -1; }
  .hero-content { padding: 100px 40px 60px; }
  .booking-layout,
  .quote-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gi-1,
  .gi-2,
  .gi-3,
  .gi-4,
  .gi-5 { grid-column: auto; grid-row: auto; height: 200px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .container { padding: 0 24px; }
  nav { padding: 0 24px; }
  .footer-inner { padding: 0 24px; }

  .hero-content { padding: 90px 24px 48px; }
  .hero h1 { font-size: 44px; }
  .hero-ctas { flex-direction: column; }

  .curation-grid { grid-template-columns: 1fr; gap: 1px; }
  .curation-card { padding: 28px 24px; }

  .catalogue-filters { gap: 6px; }
  .filter-btn { padding: 9px 16px; font-size: 11px; }
  .catalogue-grid { grid-template-columns: 1fr; }

  .story-content { padding: 52px 24px; }
  .story-stats { gap: 20px; flex-wrap: wrap; }

  .booking-form { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gi-1, .gi-2, .gi-3, .gi-4, .gi-5 { height: 200px; }

  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }

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