:root {
  --rose: #e8a0be;
  --rose-deep: #c9607e;
  --rose-pale: #f9ecf1;
  --rose-mid: #f0ccd9;
  --blue: #9bbdd4;
  --blue-deep: #4f86ad;
  --cream: #faf7f5;
  --white: #ffffff;
  --ink: #1a1018;
  --ink-light: #6b4f5d;
  --nav-h: 72px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}


/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 9000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px;
  transition: background .5s, box-shadow .5s;
}
#nav.scrolled {
  background: rgba(250,247,245,.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(200,150,170,.12);
}
#nav.hero-mode { background: transparent; }

.nav-logo { cursor: pointer; text-decoration: none; display: flex; align-items: center; }
.nav-logo img { height: 42px; width: auto; transition: filter .4s, opacity .4s; }
#nav.hero-mode .nav-logo img { filter: brightness(0) invert(1); opacity: .88; }
#nav.scrolled .nav-logo img { filter: none; opacity: 1; }

.nav-menu { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-menu a {
  font-size: .58rem; font-weight: 400; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(255,255,255,.8);
  text-decoration: none; cursor: pointer; position: relative; transition: color .3s;
}
#nav.scrolled .nav-menu a { color: var(--ink-light); }
.nav-menu a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 1px; background: var(--rose-deep);
  transition: right .35s cubic-bezier(.4,0,.2,1);
}
.nav-menu a:hover::after, .nav-menu a.active::after { right: 0; }
.nav-menu a:hover, .nav-menu a.active { color: var(--rose-deep) !important; }

.nav-book {
  font-size: .58rem; letter-spacing: .22em; text-transform: uppercase;
  padding: 11px 26px; border: 1px solid rgba(255,255,255,.6);
  color: var(--white); background: transparent; cursor: pointer;
  font-family: 'Montserrat', sans-serif; transition: all .3s;
}
.nav-book:hover { background: var(--rose-deep); border-color: var(--rose-deep); }
#nav.scrolled .nav-book { border-color: var(--rose-deep); color: var(--rose-deep); }
#nav.scrolled .nav-book:hover { background: var(--rose-deep); color: var(--white); }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: #1a0818;
}
.hero-vid-wrap { position: absolute; inset: 0; }
.hero-vid-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(15,5,12,.7) 0%, rgba(15,5,12,.25) 50%, rgba(15,5,12,.55) 100%),
    linear-gradient(to bottom, rgba(15,5,12,.1) 0%, transparent 35%, rgba(15,5,12,.78) 100%);
  z-index: 1;
}
.hero-grain {
  position: absolute; inset: 0; z-index: 2; opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px; pointer-events: none;
}
.hero-dots {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(232,160,190,.5) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(155,189,212,.3) 1.5px, transparent 1.5px);
  background-size: 30px 30px, 60px 60px;
  background-position: 0 0, 15px 15px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0,0,0,.65) 0%, rgba(0,0,0,.35) 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0,0,0,.65) 0%, rgba(0,0,0,.35) 50%, transparent 100%);
  animation: dotsPulse 8s ease-in-out infinite alternate;
}
@keyframes dotsPulse { from { opacity: .65; } to { opacity: 1; } }

.hero-lines { position: absolute; inset: 0; z-index: 3; overflow: hidden; pointer-events: none; }
.h-line {
  position: absolute; left: -100%; width: 300%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,160,190,.18), transparent);
  animation: lineSlide var(--d, 7s) var(--delay, 0s) linear infinite;
}
@keyframes lineSlide { from { transform: translateX(0); } to { transform: translateX(33.33%); } }

.hero-content {
  position: relative; z-index: 5;
  text-align: center; max-width: 760px; padding: 0 32px;
}
.hero-pre {
  font-size: .6rem; letter-spacing: .45em; text-transform: uppercase;
  color: var(--rose); opacity: 0;
  animation: riseIn 1.2s .2s cubic-bezier(.16,1,.3,1) forwards;
  margin-bottom: 28px;
}
.hero-logo-wrap {
  opacity: 0;
  animation: riseIn 1.4s .55s cubic-bezier(.16,1,.3,1) forwards;
  margin-bottom: 32px;
}
.hero-logo-wrap img {
  height: clamp(120px, 17vw, 200px);
  width: auto; display: block; margin: 0 auto;
  filter: drop-shadow(0 6px 40px rgba(210,100,140,.5));
}
.hero-sub {
  font-family: 'Cormorant', serif;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.72); letter-spacing: .12em;
  opacity: 0; animation: riseIn 1.2s 1s cubic-bezier(.16,1,.3,1) forwards;
  margin-bottom: 44px;
}
.hero-ctas {
  display: flex; gap: 20px; justify-content: center;
  opacity: 0; animation: riseIn 1.2s 1.25s cubic-bezier(.16,1,.3,1) forwards;
}
.btn-primary {
  font-size: .58rem; letter-spacing: .25em; text-transform: uppercase;
  padding: 15px 38px; background: var(--rose-deep);
  color: var(--white); border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-weight: 400; transition: all .35s;
}
.btn-primary:hover { background: #a84060; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(185,80,110,.35); }
.btn-ghost {
  font-size: .58rem; letter-spacing: .25em; text-transform: uppercase;
  padding: 15px 38px; background: transparent;
  color: var(--white); border: 1px solid rgba(255,255,255,.5);
  cursor: pointer; font-family: 'Montserrat', sans-serif; font-weight: 400; transition: all .35s;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: riseIn 1.2s 1.6s forwards;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1px solid rgba(255,255,255,.45); border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 7px; background: var(--rose); border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(8px); opacity: 0; }
}
.scroll-label { font-size: .48rem; letter-spacing: .35em; text-transform: uppercase; color: rgba(255,255,255,.4); }
@keyframes riseIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* ── MARQUEE ── */
.marquee-bar {
  background: #110810; padding: 14px 0; overflow: hidden;
  position: relative; z-index: 10;
  border-top: 1px solid rgba(200,100,140,.1);
  border-bottom: 1px solid rgba(200,100,140,.1);
}
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee-item {
  white-space: nowrap; font-size: .52rem; letter-spacing: .38em;
  text-transform: uppercase; color: rgba(232,160,190,.7); padding: 0 52px;
}
.marquee-dot { color: var(--rose-deep); padding: 0 8px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── SECTIONS ── */
.section { padding: 96px 64px; }
.section-label { font-size: .52rem; letter-spacing: .45em; text-transform: uppercase; color: var(--rose-deep); margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 300; color: var(--ink); line-height: 1.15; margin-bottom: 16px; }
.section-sub { font-family: 'Cormorant', serif; font-size: 1.1rem; font-weight: 300; font-style: italic; color: var(--ink-light); margin-bottom: 56px; }

/* ── MODEL CARDS ── */
.mc { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 3/4; background: #1a0818; }
.mc-inner { position: absolute; inset: 0; }
.card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .7s cubic-bezier(.4,0,.2,1); }
.mc:hover .card-bg { transform: scale(1.06); }

/* If girl has a photo set as featured image, use it */
.mc.has-photo .card-bg { background-size: cover; background-position: top center; }

.gbg-1 { background: linear-gradient(145deg, #f0b8cc 0%, #c9607e 40%, #9bbdd4 100%); }
.gbg-2 { background: linear-gradient(145deg, #d4748e 0%, #8c4060 50%, #4f86ad 100%); }
.gbg-3 { background: linear-gradient(145deg, #c9a0d4 0%, #8c5098 40%, #d4748e 100%); }
.gbg-4 { background: linear-gradient(145deg, #9bbdd4 0%, #4f86ad 40%, #d4748e 100%); }
.gbg-5 { background: linear-gradient(145deg, #f0ccd9 0%, #e8a0be 45%, #c5dcea 100%); }
.gbg-6 { background: linear-gradient(145deg, #8c4060 0%, #c9607e 45%, #b8a0d4 100%); }
.gbg-7 { background: linear-gradient(145deg, #c5dcea 0%, #9bbdd4 40%, #e8a0be 100%); }
.gbg-8 { background: linear-gradient(145deg, #d4b0c4 0%, #b880a0 45%, #8088c0 100%); }

.card-mono { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 30%, rgba(10,5,8,.82) 100%); }
.card-letter {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.08);
  transition: all .5s; pointer-events: none;
}
.mc:hover .card-letter { opacity: 0; }
.card-ov { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px 22px; }
.card-arrow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0; transition: opacity .4s;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: .78rem; letter-spacing: .18em; color: var(--white); white-space: nowrap;
}
.mc:hover .card-arrow { opacity: 1; }
.card-avail {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4caf82; margin-bottom: 10px;
  box-shadow: 0 0 10px rgba(76,175,130,.8);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(76,175,130,.7); }
  50% { box-shadow: 0 0 16px rgba(76,175,130,.9); }
}
.card-new {
  position: absolute; top: 16px; right: 16px;
  font-size: .45rem; letter-spacing: .28em; text-transform: uppercase;
  padding: 5px 10px; background: var(--rose-deep); color: var(--white);
}
.card-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 400; color: var(--white); line-height: 1; margin-bottom: 4px; }
.card-orig { font-family: 'Cormorant', serif; font-size: .82rem; font-style: italic; color: rgba(255,255,255,.6); letter-spacing: .06em; }
.mc.hidden { display: none; }
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity .7s, transform .7s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── TODAY GRID ── */
.today-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; grid-template-rows: auto auto; gap: 3px; }
.today-grid .mc:first-child { grid-row: span 2; aspect-ratio: unset; }

/* ── MODELS GRID ── */
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; }
.filter-btn {
  font-size: .52rem; letter-spacing: .25em; text-transform: uppercase;
  padding: 9px 22px; border: 1px solid rgba(200,150,170,.4);
  background: transparent; color: var(--ink-light);
  cursor: pointer; font-family: 'Montserrat', sans-serif; transition: all .3s;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--rose-deep); background: var(--rose-deep); color: var(--white); }
.models-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }

/* ── PROFILE ── */
.profile-wrap { display: grid; grid-template-columns: 1fr 1.1fr; min-height: 100vh; }
.profile-visual { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.pv-bg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; }

/* Photo support for profiles */
.pv-bg.has-photo { background-size: cover !important; background-position: top center !important; }
.pv-bg.has-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(15,5,12,.7) 100%); }

.pv-watermark {
  font-family: 'Playfair Display', serif;
  font-size: clamp(7rem, 14vw, 12rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.07); position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  white-space: nowrap; pointer-events: none;
}
.pv-avail {
  position: absolute; bottom: 36px; left: 36px;
  display: flex; align-items: center; gap: 10px;
  font-size: .55rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.8); z-index: 2;
}
.pv-dot { width: 9px; height: 9px; border-radius: 50%; background: #4caf82; box-shadow: 0 0 12px rgba(76,175,130,.9); animation: pulse 2s infinite; }
.profile-content { padding: 100px 60px 80px; }
.profile-back {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .55rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-light); cursor: pointer; margin-bottom: 52px;
  transition: color .3s; background: none; border: none;
  font-family: 'Montserrat', sans-serif;
}
.profile-back:hover { color: var(--rose-deep); }
.profile-name { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 300; color: var(--ink); line-height: 1; margin-bottom: 6px; }
.profile-orig { font-family: 'Cormorant', serif; font-size: 1.1rem; font-style: italic; color: var(--ink-light); margin-bottom: 36px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(200,150,170,.15); margin-bottom: 40px; }
.stat-cell { background: var(--cream); padding: 18px 20px; }
.stat-label { font-size: .45rem; letter-spacing: .32em; text-transform: uppercase; color: var(--rose-deep); margin-bottom: 6px; }
.stat-val { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--ink); }
.profile-bio { font-family: 'Cormorant', serif; font-size: 1.08rem; line-height: 1.8; color: var(--ink-light); margin-bottom: 36px; font-weight: 300; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 44px; }
.ptag { font-size: .48rem; letter-spacing: .25em; text-transform: uppercase; padding: 7px 16px; border: 1px solid var(--blue-deep); color: var(--blue-deep); }
.profile-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── RATES ── */
.rates-wrap { max-width: 860px; }
.rate-table { width: 100%; border-collapse: collapse; margin-bottom: 52px; }
.rate-table tr { border-bottom: 1px solid rgba(200,150,170,.15); transition: background .2s; }
.rate-table tr:hover { background: rgba(240,204,217,.3); }
.rate-table td { padding: 20px 0; font-size: .78rem; letter-spacing: .06em; }
.rate-table td:first-child { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--ink); padding-right: 32px; width: 55%; }
.rate-table td:last-child { text-align: right; font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--rose-deep); }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-bottom: 40px; }
.pkg { padding: 44px 36px; background: var(--white); border: 1px solid rgba(200,150,170,.15); position: relative; }
.pkg.featured { background: var(--ink); border-color: var(--ink); }
.pkg-label { font-size: .48rem; letter-spacing: .38em; text-transform: uppercase; color: var(--rose); margin-bottom: 10px; }
.pkg.featured .pkg-label { color: var(--rose-mid); }
.pkg-price { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 300; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.pkg.featured .pkg-price { color: var(--white); }
.pkg-dur { font-size: .6rem; letter-spacing: .2em; color: var(--ink-light); margin-bottom: 28px; }
.pkg.featured .pkg-dur { color: rgba(255,255,255,.5); }
.pkg-feature { font-size: .68rem; color: var(--ink-light); line-height: 2; }
.pkg.featured .pkg-feature { color: rgba(255,255,255,.7); }
.pkg-badge { position: absolute; top: -1px; right: -1px; background: var(--rose-deep); color: var(--white); font-size: .44rem; letter-spacing: .28em; text-transform: uppercase; padding: 6px 14px; }
.rates-note { background: var(--ink); color: rgba(255,255,255,.6); padding: 24px 36px; font-size: .68rem; line-height: 1.9; letter-spacing: .04em; }

/* ── SCHEDULE ── */
.sched-wrap { overflow-x: auto; }
.sched-grid { display: grid; grid-template-columns: 80px repeat(7, 1fr); gap: 2px; min-width: 700px; }
.sched-head { background: var(--ink); color: rgba(255,255,255,.6); font-size: .48rem; letter-spacing: .25em; text-transform: uppercase; padding: 14px 12px; text-align: center; }
.sched-head.today { background: var(--rose-deep); color: var(--white); }
.sched-time { background: #f5f0f2; font-size: .52rem; letter-spacing: .1em; color: var(--ink-light); padding: 12px 10px; text-align: right; display: flex; align-items: center; justify-content: flex-end; }
.sched-cell { background: #faf7f5; border: 1px solid rgba(200,150,170,.1); padding: 6px; min-height: 52px; display: flex; flex-direction: column; gap: 4px; }
.sched-cell.today-col { background: #fdf4f7; border-color: rgba(201,96,126,.2); }
.sched-chip { background: var(--rose-mid); padding: 5px 9px; font-size: .48rem; letter-spacing: .06em; cursor: pointer; transition: background .2s; line-height: 1.4; }
.sched-chip:hover { background: var(--rose-deep); color: var(--white); }
.sched-chip strong { display: block; font-weight: 500; color: var(--ink); }
.sched-chip:hover strong { color: var(--white); }
.sched-chip span { color: var(--ink-light); font-size: .44rem; }
.sched-chip:hover span { color: rgba(255,255,255,.7); }

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--ink); padding: 80px 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-strip h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 20px; }
.about-strip p { font-family: 'Cormorant', serif; font-size: 1.05rem; font-style: italic; color: rgba(255,255,255,.55); line-height: 1.85; margin-bottom: 30px; }
.stats-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.stat-box { background: rgba(255,255,255,.04); padding: 36px 28px; border: 1px solid rgba(255,255,255,.06); }
.stat-box-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 300; color: var(--rose); margin-bottom: 8px; }
.stat-box-label { font-size: .55rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.4); }

/* ── MODAL ── */
.modal-bg { position: fixed; inset: 0; background: rgba(15,5,12,.7); backdrop-filter: blur(8px); z-index: 10000; display: none; align-items: center; justify-content: center; }
.modal-bg.open { display: flex; }
.modal { background: var(--white); width: min(520px, 92vw); max-height: 90vh; overflow-y: auto; }
.modal-head { background: var(--ink); padding: 28px 36px; display: flex; justify-content: space-between; align-items: center; }
.modal-head h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 400; color: var(--white); letter-spacing: .06em; }
.modal-close { background: none; border: none; color: rgba(255,255,255,.5); font-size: 1.4rem; cursor: pointer; line-height: 1; padding: 4px; }
.modal-close:hover { color: var(--white); }
.modal-body { padding: 36px; }
.form-row { margin-bottom: 22px; }
.form-label { display: block; font-size: .5rem; letter-spacing: .3em; text-transform: uppercase; color: var(--rose-deep); margin-bottom: 8px; }
.form-input { width: 100%; border: none; border-bottom: 1px solid rgba(200,150,170,.4); padding: 10px 0; font-size: .82rem; font-family: 'Montserrat', sans-serif; color: var(--ink); background: transparent; outline: none; transition: border-color .3s; }
.form-input:focus { border-color: var(--rose-deep); }
.modal-submit { width: 100%; padding: 16px; background: var(--rose-deep); color: var(--white); border: none; font-family: 'Montserrat', sans-serif; font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; cursor: pointer; transition: background .3s; margin-top: 10px; }
.modal-submit:hover { background: #a84060; }
.modal-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-error { display: block; font-size: .52rem; color: #c9607e; margin-top: 5px; min-height: 14px; }
.form-input.invalid { border-color: #c9607e; }
.req { color: var(--rose-deep); }
.booking-success { text-align: center; padding: 32px 20px; }
.success-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--rose-deep); color: var(--white); font-size: 1.4rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.booking-success h4 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 400; margin-bottom: 10px; color: var(--ink); }
.booking-success p { font-size: .75rem; color: var(--ink-light); line-height: 1.7; }

/* ── FOOTER ── */
footer { background: var(--ink); color: rgba(255,255,255,.5); }
.foot-main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 52px; padding: 72px 64px 60px; }
.foot-brand img { height: 36px; width: auto; margin-bottom: 18px; opacity: .8; }
.foot-tagline { font-family: 'Cormorant', serif; font-size: .92rem; font-style: italic; color: rgba(255,255,255,.4); line-height: 1.7; margin-bottom: 20px; }
.foot-hours { font-size: .6rem; letter-spacing: .08em; line-height: 2; }
.foot-col h4 { font-size: .48rem; letter-spacing: .35em; text-transform: uppercase; color: var(--rose); margin-bottom: 22px; }
.foot-col a { display: block; font-size: .65rem; letter-spacing: .06em; color: rgba(255,255,255,.5); text-decoration: none; cursor: pointer; margin-bottom: 10px; transition: color .3s; }
.foot-col a:hover { color: var(--rose-mid); }
.foot-col p { font-size: .65rem; letter-spacing: .06em; line-height: 2; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 22px 64px; display: flex; justify-content: space-between; align-items: center; }
.foot-copy { font-size: .52rem; letter-spacing: .1em; }
.foot-disc { font-size: .5rem; letter-spacing: .04em; color: rgba(255,255,255,.3); max-width: 500px; text-align: right; line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #nav { padding: 0 24px; }
  .nav-menu { display: none; }
  .section { padding: 64px 24px; }
  .today-grid { grid-template-columns: 1fr 1fr; }
  .today-grid .mc:first-child { grid-row: span 1; aspect-ratio: 3/4; }
  .models-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-wrap { grid-template-columns: 1fr; }
  .profile-visual { position: relative; height: 60vw; min-height: 300px; }
  .about-strip { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .foot-main { grid-template-columns: 1fr 1fr; padding: 48px 24px 40px; }
  .foot-bottom { flex-direction: column; gap: 12px; padding: 20px 24px; text-align: center; }
  .foot-disc { text-align: center; }
  .pkg-grid { grid-template-columns: 1fr; }
}
