/* ============================================================
   SHAPES GLOW STUDIO — styles.css
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap');

/* ── Variables ── */
:root {
  --plum:    #3d1a4e;
  --plum2:   #5a2870;
  --plum3:   #7a3a90;
  --gold:    #c9a84c;
  --gold2:   #e8c97a;
  --gold3:   #f5e8c0;
  --cream:   #faf7f2;
  --warm:    #fff9f4;
  --blush:   #f0e0d6;
  --dark:    #1a0a22;
  --charcoal:#120810;
  --txt:     #2a1a30;
  --txt2:    #5a4060;
  --txt3:    #7a6085;
  --border:  rgba(201,168,76,.18);
  --borderl: rgba(201,168,76,.09);
  --sh:      0 20px 60px rgba(61,26,78,.13);

  /* Font scale — minimum 1rem for body */
  --fs-xs:   0.9rem;    /* labels, tags        */
  --fs-sm:   1rem;      /* captions, meta      */
  --fs-base: 1.1rem;    /* body copy           */
  --fs-md:   1.2rem;    /* sub-headings        */
  --fs-lg:   1.4rem;    /* section intros      */
  --fs-xl:   clamp(2rem, 3.5vw, 2.8rem);
  --fs-2xl:  clamp(2.4rem, 4.5vw, 3.8rem);
  --fs-hero: clamp(3rem, 6vw, 5.5rem);

  --gap:     1.5rem;
  --radius:  2px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--txt);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.75;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── Custom Cursor ── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all .14s ease;
  opacity: .5;
}

/* ── Typography helpers ── */
.label {
  font-size: var(--fs-xs);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  display: block;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.1;
  letter-spacing: -.01em;
}

p {
  font-size: var(--fs-base);
  line-height: 1.85;
  font-weight: 300;
}

/* ── Layout helpers ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4rem;
}

.section {
  padding: 7rem 0;
}

/* ── Buttons ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--charcoal);
  font-size: var(--fs-xs);
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: opacity .3s;
  white-space: nowrap;
}
.btn-gold:hover { opacity: .85; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2.2rem;
  border: 1px solid rgba(201,168,76,.38);
  color: var(--cream);
  font-size: var(--fs-xs);
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  transition: border-color .3s, color .3s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold2); }

.btn-outline-plum {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2.2rem;
  border: 1px solid var(--plum);
  color: var(--plum);
  font-size: var(--fs-xs);
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  transition: background .3s, color .3s;
}
.btn-outline-plum:hover { background: var(--plum); color: var(--cream); }

/* ── Reveal animation ── */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.rv.vi { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 500;
  height: 72px;
  transition: background .4s, box-shadow .4s;
}
.site-header.scrolled {
  background: rgba(250,247,242,.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-sizing: border-box;
}

/* Logo */
.nav-logo {
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo .wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--plum);
  letter-spacing: .07em;
  display: block;
}
.nav-logo .wordmark span { color: var(--gold); }
.nav-logo .tagline {
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .75;
  display: block;
  margin-top: 3px;
}
/* Force light text when over hero (not scrolled) */
.site-header:not(.scrolled) .nav-logo .wordmark { color: var(--cream); }
.site-header:not(.scrolled) .nav-logo .tagline   { color: var(--gold2); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--txt2);
  text-decoration: none;
  position: relative;
  transition: color .3s;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover { color: var(--plum); }
.nav-links a:hover::after { width: 100%; }
.site-header:not(.scrolled) .nav-links a { color: rgba(250,247,242,.75); }
.site-header:not(.scrolled) .nav-links a:hover { color: var(--gold2); }

/* Book button */
.nav-book {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.6rem;
  background: var(--plum);
  color: var(--gold2);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .3s, color .3s, border-color .3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-book:hover {
  background: transparent;
  color: var(--plum);
  border-color: var(--plum);
}
.site-header:not(.scrolled) .nav-book {
  background: var(--gold);
  color: var(--charcoal);
  border-color: transparent;
}
.site-header:not(.scrolled) .nav-book:hover {
  background: var(--gold2);
}

/* Mobile toggle */
.mob-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.mob-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--plum);
  transition: all .3s;
  border-radius: 1px;
}
.site-header:not(.scrolled) .mob-btn span { background: var(--cream); }

/* Mobile menu overlay */
.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--plum);
  z-index: 600;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  padding-top: 72px;
  padding-bottom: 5rem;
}
.mob-menu.open { display: flex; }

/* Top bar inside overlay — logo left, X right */
.mob-menu-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,.15);
  flex-shrink: 0;
}
.mob-menu-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: .07em;
  text-decoration: none;
  line-height: 1;
}
.mob-menu-logo span { color: var(--gold2); }

.mob-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: .05em;
  opacity: .9;
  transition: color .2s, opacity .2s;
}
.mob-menu a:hover { color: var(--gold2); opacity: 1; }

/* Close button — circular, clearly visible */
.mob-close {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.35);
  background: rgba(201,168,76,.1);
  color: var(--cream);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
}
.mob-close:hover {
  background: rgba(201,168,76,.25);
  border-color: var(--gold);
}

/* Book link inside menu — gold button at bottom */
.mob-menu .mob-book-link {
  margin-top: .5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--charcoal) !important;
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 1 !important;
  border-radius: 100px;
}

/* ── Floating Book Button (mobile only) ── */
.float-book {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 450;
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--charcoal);
  font-family: 'Jost', sans-serif;
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(201,168,76,.45);
  align-items: center;
  gap: .55rem;
  border-radius: 100px;
  transition: opacity .3s, transform .3s, box-shadow .3s;
}
.float-book:hover {
  opacity: .9;
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 14px 40px rgba(201,168,76,.55);
}
.float-book.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0e0514 0%, #2a0e38 45%, #3d1a4e 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 65% 40%, rgba(201,168,76,.07) 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1280px;
  width: 100%;
  padding: 7rem 4rem 4rem;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}
.hero-badge::before, .hero-badge::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: .4;
  flex-shrink: 0;
}
.hero-badge span {
  font-size: .82rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Hero heading */
.hero h1 {
  font-size: var(--fs-hero);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  opacity: 0;
  animation: fadeUp .9s .4s forwards;
}
.hero h1 em { font-style: italic; color: var(--gold2); }

.hero-sub {
  margin-top: 1.6rem;
  font-size: 1.15rem;
  line-height: 1.85;
  color: rgba(250,247,242,.65);
  font-weight: 300;
  max-width: 440px;
  opacity: 0;
  animation: fadeUp .9s .6s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.4rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s .8s forwards;
}
.hero-stats {
  display: flex;
  gap: 2.2rem;
  margin-top: 2.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(201,168,76,.14);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s 1s forwards;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold2);
  line-height: 1;
}
.stat-label {
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(250,247,242,.4);
  margin-top: .35rem;
}
.hero-visual {
  opacity: 0;
  animation: fadeIn 1.2s .5s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 1.7s forwards;
}
.hero-scroll span {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(201,168,76,.5);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

/* ── Keyframes ── */
@keyframes fadeUp  { from { opacity:0; transform:translateY(28px) } to { opacity:1; transform:translateY(0) } }
@keyframes fadeIn  { from { opacity:0 }                              to { opacity:1 } }
@keyframes scrollDown {
  0%   { transform:scaleY(0); transform-origin:top }
  50%  { transform:scaleY(1); transform-origin:top }
  51%  { transform:scaleY(1); transform-origin:bottom }
  100% { transform:scaleY(0); transform-origin:bottom }
}
@keyframes orbit { to { transform: rotate(360deg); } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  background: var(--plum);
  overflow: hidden;
  padding: .9rem 0;
  border-top: 1px solid rgba(201,168,76,.2);
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.marquee-track {
  display: flex;
  animation: marqueeScroll 32s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0 1.8rem;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(201,168,76,.65);
}
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .4;
  flex-shrink: 0;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-section {
  background: var(--warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 2rem 2.2rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-icon { display: flex; justify-content: center; margin-bottom: .85rem; }
.trust-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--plum);
  font-weight: 500;
  margin-bottom: .3rem;
}
.trust-desc {
  font-size: var(--fs-sm);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--txt3);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  background: var(--plum);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 65% at 100% 50%, rgba(201,168,76,.07) 0%, transparent 70%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5.5rem;
  align-items: center;
}
.why-heading {
  font-size: var(--fs-2xl);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
}
.why-heading em { font-style: italic; color: var(--gold2); }
.why-body {
  margin-top: 1.4rem;
  color: rgba(250,247,242,.62);
}
.why-body + .why-body { margin-top: .9rem; }
.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(201,168,76,.1);
}
.why-card {
  background: rgba(61,26,78,.92);
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(201,168,76,.07);
  transition: border-color .3s, background .3s;
}
.why-card:hover {
  border-color: rgba(201,168,76,.28);
  background: rgba(90,40,112,.55);
}
.why-card-icon { display: flex; margin-bottom: 1rem; }
.why-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold2);
  font-weight: 500;
  margin-bottom: .55rem;
}
.why-card-text {
  font-size: var(--fs-sm);
  line-height: 1.75;
  color: rgba(250,247,242,.55);
  font-weight: 300;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--cream); }

.section-intro { max-width: 580px; margin-bottom: 3.5rem; }
.section-intro h2 {
  font-size: var(--fs-2xl);
  font-weight: 300;
  color: var(--plum);
  margin-top: .7rem;
  line-height: 1.1;
}
.section-intro h2 em { font-style: italic; color: var(--gold); }
.section-intro p {
  margin-top: 1rem;
  color: var(--txt3);
}

.svc-tabs {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}
.tab-btn {
  background: none;
  border: none;
  padding: 1rem 1.6rem;
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--txt3);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .3s, border-color .3s;
}
.tab-btn.active { color: var(--plum); border-bottom-color: var(--gold); }
.tab-btn:hover  { color: var(--plum); }

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

.service-list { display: grid; gap: 0; }
.service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--borderl);
  gap: 2rem;
  transition: padding-left .25s;
}
.service-row:hover { padding-left: .5rem; }
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--txt);
  font-weight: 400;
}
.service-note {
  font-size: var(--fs-sm);
  color: var(--txt3);
  margin-top: .2rem;
}
.service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}
.service-cta {
  text-align: center;
  margin-top: 3.5rem;
}
.service-cta p {
  font-size: var(--fs-sm);
  color: var(--txt3);
  margin-bottom: 1.4rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--warm); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.5rem;
  align-items: center;
}
.about-images { position: relative; height: 560px; }
.about-img-1 {
  position: absolute;
  top: 0; left: 0;
  width: 70%; height: 72%;
  overflow: hidden;
  box-shadow: var(--sh);
}
.about-img-2 {
  position: absolute;
  bottom: 0; right: 0;
  width: 56%; height: 54%;
  border: 4px solid var(--warm);
  box-shadow: var(--sh);
  overflow: hidden;
}
.about-badge {
  position: absolute;
  top: 46%; left: 58%;
  transform: translate(-50%, -50%);
  background: var(--plum);
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 7px var(--warm);
  z-index: 2;
}
.about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold2);
  line-height: 1;
  font-weight: 300;
}
.about-badge-text {
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(250,247,242,.55);
  margin-top: 4px;
  line-height: 1.45;
  padding: 0 8px;
}
.about-content h2 {
  font-size: var(--fs-2xl);
  font-weight: 300;
  color: var(--plum);
  line-height: 1.1;
  margin-top: .75rem;
}
.about-content h2 em { font-style: italic; color: var(--gold); }
.about-content p { color: var(--txt2); margin-top: 1.1rem; }
.cred-tags { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.8rem; }
.cred-tag {
  padding: .45rem 1rem;
  border: 1px solid var(--border);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--txt2);
  background: var(--cream);
}

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.locations-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 55% at 50% 100%, rgba(61,26,78,.75) 0%, transparent 70%);
  pointer-events: none;
}
.locations-inner { position: relative; z-index: 1; }
.locations-heading {
  font-size: var(--fs-2xl);
  font-weight: 300;
  color: var(--cream);
  margin-top: .7rem;
  line-height: 1.1;
}
.locations-heading em { font-style: italic; color: var(--gold2); }
.locations-sub {
  margin-top: .9rem;
  color: rgba(250,247,242,.45);
  max-width: 480px;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201,168,76,.07);
  margin-top: 3.5rem;
}
.location-card {
  background: rgba(18,8,16,.82);
  padding: 2.2rem;
  border: 1px solid rgba(201,168,76,.07);
  transition: border-color .3s;
  position: relative;
  overflow: hidden;
}
.location-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.location-card:hover { border-color: rgba(201,168,76,.22); }
.location-card:hover::after { transform: scaleX(1); }
.location-icon { display: flex; margin-bottom: .9rem; }
.location-area {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold2);
  font-weight: 400;
  margin-bottom: .6rem;
}
.location-desc { font-size: var(--fs-sm); line-height: 1.75; color: rgba(250,247,242,.48); font-weight: 300; }
.location-tag {
  display: inline-block;
  margin-top: 1.1rem;
  padding: .35rem .9rem;
  border: 1px solid rgba(201,168,76,.18);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .75;
}

/* ============================================================
   VISIT
   ============================================================ */
.visit-section { background: var(--cream); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.5rem;
  align-items: center;
}
.visit-heading {
  font-size: var(--fs-2xl);
  font-weight: 300;
  color: var(--plum);
  margin-top: .7rem;
  line-height: 1.1;
}
.visit-heading em { font-style: italic; color: var(--gold); }
.visit-intro { margin-top: 1.1rem; color: var(--txt2); max-width: 400px; }
.visit-detail {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--borderl);
}
.visit-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.visit-detail-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--plum);
}
.visit-detail-title a { text-decoration: none; transition: color .3s; }
.visit-detail-title a:hover { color: var(--gold); }
.visit-detail-text { font-size: var(--fs-sm); color: var(--txt3); margin-top: .25rem; line-height: 1.6; }
.visit-image-wrap { position: relative; height: 520px; }
.visit-img-main {
  position: absolute;
  right: 0; bottom: 0;
  width: 84%; height: 84%;
  overflow: hidden;
  box-shadow: var(--sh);
}
.visit-img-accent {
  position: absolute;
  top: 0; left: 0;
  width: 48%; height: 48%;
  border: 4px solid var(--cream);
  overflow: hidden;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-section { background: var(--warm); }
.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2px;
  background: var(--borderl);
  margin-top: 3.5rem;
}
.blog-card {
  background: var(--warm);
  text-decoration: none;
  display: block;
  transition: transform .4s;
  overflow: hidden;
}
.blog-card:hover { transform: translateY(-5px); }
.blog-card-img { position: relative; overflow: hidden; }
.blog-card-img svg { transition: transform .6s ease; width: 100%; }
.blog-card:hover .blog-card-img svg { transform: scale(1.04); }
.blog-category {
  position: absolute;
  top: 1.1rem; left: 1.1rem;
  background: var(--plum);
  color: var(--gold2);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  z-index: 1;
}
.blog-body {
  padding: 1.75rem;
  border-top: 1px solid var(--borderl);
}
.blog-date {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--txt3);
  margin-bottom: .65rem;
}
.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--plum);
  line-height: 1.35;
  font-weight: 500;
}
.blog-card:first-child .blog-title { font-size: 1.55rem; }
.blog-excerpt {
  font-size: var(--fs-sm);
  line-height: 1.75;
  color: var(--txt3);
  margin-top: .7rem;
  font-weight: 300;
}
.blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.2rem;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .3s;
}
.blog-card:hover .blog-readmore { gap: .9rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--cream); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 5.5rem;
  margin-top: 3.5rem;
}
details.faq-item { border-bottom: 1px solid var(--border); }
details.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--plum);
  list-style: none;
  transition: color .3s;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary:hover { color: var(--gold); }
.faq-icon {
  width: 22px; height: 22px;
  min-width: 22px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s;
}
details[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  font-size: var(--fs-base);
  line-height: 1.85;
  color: var(--txt2);
  font-weight: 300;
  padding-bottom: 1.5rem;
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  background: var(--plum);
  padding: 7rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 75% at 50% 50%, rgba(201,168,76,.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: var(--fs-hero);
  font-weight: 300;
  color: var(--cream);
  position: relative;
  z-index: 1;
  line-height: 1.1;
}
.cta-section h2 em { font-style: italic; color: var(--gold2); }
.cta-section p {
  margin-top: 1.2rem;
  font-size: var(--fs-md);
  color: rgba(250,247,242,.55);
  font-weight: 300;
  position: relative; z-index: 1;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.8rem;
  position: relative; z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  padding: 5.5rem 0 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(201,168,76,.1);
}
.footer-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--cream);
  letter-spacing: .06em;
  line-height: 1;
  margin-bottom: .35rem;
}
.footer-logo-name span { color: var(--gold2); }
.footer-tagline {
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(201,168,76,.45);
  margin-bottom: 1.4rem;
}
.footer-about {
  font-size: var(--fs-sm);
  line-height: 1.75;
  color: rgba(250,247,242,.4);
  font-weight: 300;
  max-width: 250px;
}
.footer-col-title {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  font-weight: 400;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-links a {
  font-size: var(--fs-sm);
  color: rgba(250,247,242,.42);
  text-decoration: none;
  transition: color .3s;
  font-weight: 300;
}
.footer-links a:hover { color: var(--gold2); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: .82rem; color: rgba(250,247,242,.22); letter-spacing: .06em; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,168,76,.45);
  text-decoration: none;
  transition: border-color .3s, color .3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold2); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet — 1024px */
@media (max-width: 1024px) {
  .container { padding: 0 2.5rem; }
  .hero-inner { grid-template-columns: 1fr; padding: 7rem 2.5rem 4rem; gap: 2rem; }
  .hero-visual { display: none; }
  .hero h1  { font-size: clamp(2.6rem, 7vw, 4.5rem); }
  .hero-sub { max-width: 100%; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .why-grid          { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-grid        { grid-template-columns: 1fr; gap: 3rem; }
  .about-images      { height: 340px; }
  .about-img-1       { width: 65%; height: 70%; }
  .about-img-2       { width: 55%; height: 55%; }
  .visit-grid        { grid-template-columns: 1fr; gap: 3.5rem; }
  .visit-image-wrap  { height: 340px; }
  .blog-grid         { grid-template-columns: 1fr; }
  .faq-grid          { grid-template-columns: 1fr; gap: 0; }
  .footer-top        { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .locations-grid    { grid-template-columns: repeat(2, 1fr); }
  .header-inner      { padding: 0 1.5rem; max-width: 100%; }
  .nav-links         { gap: 1.4rem; }
  .cta-section       { padding: 5rem 2.5rem; }
}

/* Large mobile — 768px */
@media (max-width: 768px) {
  :root {
    --fs-base: 1.05rem;
    --fs-md:   1.15rem;
  }
  .container { padding: 0 1.5rem; }
  .section   { padding: 5rem 0; }
  .nav-links, .nav-book { display: none; }
  .mob-btn   { display: flex; }
  .header-inner { padding: 0 1.5rem; }
  .hero-inner { padding: 7rem 1.5rem 3rem; }
  .hero-stats { gap: 1.5rem; }
  .why-cards  { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-about { max-width: 100%; }
  .cta-section { padding: 4rem 1.5rem; }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
  :root {
    --fs-xs:   0.82rem;
    --fs-sm:   0.95rem;
    --fs-base: 1rem;
  }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
  .hero-actions { flex-direction: column; }
  .btn-gold, .btn-ghost { justify-content: center; width: 100%; max-width: 320px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .about-images { height: 280px; }
  .visit-image-wrap { height: 280px; }
  .svc-tabs { overflow-x: auto; flex-wrap: nowrap; }
}

/* ── Show float-book button on mobile only ── */
@media (max-width: 768px) {
  .float-book { display: inline-flex; }
  /* extra bottom padding so content isn't hidden behind float btn */
  .site-footer { padding-bottom: 6rem; }
}