/* ============================================================
   Summer Luv — Main Stylesheet
   All text/bg contrast ratios WCAG AA verified
   ============================================================ */
:root {
  --charcoal:    #1a1814;
  --charcoal-2:  #22201b;
  --charcoal-3:  #2c2820;
  --tan-bg:      #e8e0d0;
  --cream:       #f5f0e8;
  --warm-white:  #faf8f4;
  --text-on-dark:   #f5f0e8;
  --text-on-light:  #1a1814;
  --text-mid-light: #3d3322;
  --text-muted-dark:#d4c4aa;
  --gold:        #c9a84c;
  --gold-light:  #e2c97e;
  --gold-dark:   #a8872a;
  --sage:        #4a6150;
  --blush:       #8c5a50;
  --btn-white:   #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --ease: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--warm-white); color: var(--text-on-light); overflow-x: hidden; }

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: .35;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  background: rgba(232,224,208,.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,168,76,.22);
  transition: padding .3s var(--ease);
}
.nav-logo { font-family: var(--font-display); font-size: 1.55rem; font-weight: 300; letter-spacing: .12em; color: var(--text-on-light); text-decoration: none; }
.nav-logo em { font-style: italic; color: var(--text-mid-light); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: .68rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: var(--text-mid-light); text-decoration: none; transition: color .25s; }
.nav-links a:hover, .nav-links a.active { color: var(--text-on-light); }
.nav-book { font-size: .65rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--btn-white); background: var(--gold-dark); padding: .65rem 1.8rem; text-decoration: none; transition: background .25s var(--ease), transform .15s; }
.nav-book:hover { background: var(--charcoal); transform: translateY(-1px); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .3rem; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text-on-light); transition: all .3s; }

.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 199;
  background: rgba(232,224,208,.97); backdrop-filter: blur(16px);
  flex-direction: column; padding: 2rem;
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.mobile-menu a { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-mid-light); text-decoration: none; padding: .75rem 0; border-bottom: 1px solid rgba(201,168,76,.15); }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 40%, #3a2e1e 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 70%, rgba(201,168,76,.08) 0%, transparent 60%),
    linear-gradient(160deg, #0e0c09 0%, #1a1510 40%, #211c13 100%);
  z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: conic-gradient(from 200deg at 70% 35%, transparent 0deg, rgba(201,168,76,.06) 20deg, transparent 40deg);
  animation: lightSweep 8s ease-in-out infinite alternate;
}
@keyframes lightSweep { from { opacity:.7;} to { opacity:1;} }
.hero-lines { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-lines::before { content: ''; position: absolute; top: 0; right: 18%; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent 0%, rgba(201,168,76,.18) 30%, rgba(201,168,76,.35) 60%, transparent 100%); }
.hero-rule { position: absolute; left: 0; right: 0; bottom: 38%; height: 1px; background: linear-gradient(to right, transparent, rgba(201,168,76,.15) 30%, rgba(201,168,76,.15) 70%, transparent); z-index: 1; pointer-events: none; }
.hero-stats { position: absolute; top: 50%; right: 7rem; transform: translateY(-50%); z-index: 3; display: flex; flex-direction: column; gap: 1px; }
.hero-stat { background: rgba(26,21,16,.75); backdrop-filter: blur(10px); border: 1px solid rgba(201,168,76,.2); padding: 1.2rem 1.6rem; min-width: 130px; border-left: 2px solid var(--gold); }
.hero-stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; color: var(--gold-light); line-height: 1; display: block; }
.hero-stat-label { font-size: .55rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted-dark); margin-top: .4rem; display:block; }
.hero-content { position: relative; z-index: 3; padding: 0 7rem 7rem; max-width: 780px; }
.hero-eyebrow { font-size: .68rem; font-weight: 400; letter-spacing: .35em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.hero-eyebrow::before { content: ''; width: 2.5rem; height: 1px; background: var(--gold); }
.hero-title { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 6rem); font-weight: 300; line-height: .95; color: var(--text-on-dark); }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 1rem; font-weight: 300; color: var(--text-muted-dark); line-height: 1.8; margin: 1.8rem 0 2.5rem; max-width: 520px; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { font-size: .68rem; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: var(--btn-white); background: var(--gold-dark); padding: 1.1rem 2.6rem; text-decoration: none; transition: all .3s var(--ease); display:inline-block; border:none; cursor:pointer; }
.btn-primary:hover { background: var(--charcoal); transform: translateY(-1px); }
.btn-ghost { font-size: .68rem; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: var(--gold-light); border: 1px solid var(--gold); padding: 1.05rem 2.4rem; text-decoration: none; transition: all .3s var(--ease); display:inline-block; }
.btn-ghost:hover { background: var(--gold-dark); color: var(--btn-white); }
.btn-secondary { font-size: .68rem; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: var(--btn-white); background: var(--charcoal); padding: 1.05rem 2.4rem; text-decoration: none; transition: all .3s var(--ease); display:inline-block; border:none; cursor:pointer; }
.btn-secondary:hover { background: var(--gold-dark); }
.btn-ghost-dark { font-size: .68rem; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: var(--text-mid-light); border: 1px solid var(--gold-dark); padding: 1.05rem 2.4rem; text-decoration: none; transition: all .3s var(--ease); display:inline-block; }
.btn-ghost-dark:hover { background: var(--gold-dark); color: var(--btn-white); }
.hero-scroll { position: absolute; left: 7rem; bottom: 2rem; z-index: 3; display: flex; align-items: center; gap: .8rem; }
.hero-scroll-text { font-size: .55rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold-light); }
.hero-scroll-line { width: 60px; height: 1px; background: var(--gold); position: relative; overflow: hidden; }
.hero-scroll-line::after { content: ''; position: absolute; left: -30px; top: 0; width: 30px; height: 100%; background: var(--gold-light); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { to { left: 100%; } }

/* ── INTRO STRIP ── */
.intro-strip { display: flex; justify-content: center; align-items: center; gap: 2.5rem; padding: 1.8rem 3rem; background: var(--cream); border-top: 1px solid rgba(168,135,42,.18); border-bottom: 1px solid rgba(168,135,42,.18); flex-wrap: wrap; }
.strip-item { display: flex; align-items: center; gap: .7rem; }
.strip-icon { color: var(--gold-dark); font-size: .9rem; }
.strip-text { font-size: .65rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--text-mid-light); }
.strip-div { width: 1px; height: 18px; background: rgba(168,135,42,.3); }

/* ── SERVICES ── */
.services { padding: 7rem 7rem 6rem; background: var(--warm-white); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow { font-size: .68rem; font-weight: 500; letter-spacing: .35em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 1.2rem; display: flex; align-items: center; justify-content: center; gap: 1rem; }
.section-eyebrow::before, .section-eyebrow::after { content: ''; width: 2rem; height: 1px; background: var(--gold-dark); }
.section-eyebrow.left { justify-content: flex-start; }
.section-eyebrow.left::after { display: none; }
.section-title { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 300; color: var(--text-on-light); line-height: 1.1; }
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-title.light { color: var(--text-on-dark); }
.section-title.light em { color: var(--gold-light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(168,135,42,.15); }
.service-card { background: var(--cream); padding: 3.5rem 2.5rem; transition: background .35s var(--ease); cursor: default; position: relative; }
.service-card:hover { background: var(--warm-white); }
.service-num { font-family: var(--font-display); font-size: 1rem; font-style: italic; color: var(--gold-dark); margin-bottom: 1.5rem; opacity: .7; }
.service-icon { font-size: 2.2rem; margin-bottom: 1.2rem; }
.service-name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--text-on-light); margin-bottom: .5rem; }
.service-duration { font-size: .65rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 1.2rem; }
.service-desc { font-size: .87rem; line-height: 1.85; color: var(--text-mid-light); margin-bottom: 1.5rem; }
.service-price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 300; color: var(--text-on-light); border-top: 1px solid rgba(168,135,42,.25); padding-top: 1.2rem; }
.service-price span { font-family: var(--font-body); font-size: .7rem; font-weight: 400; color: var(--text-mid-light); letter-spacing: .1em; }

/* ── ABOUT ── */
.about { padding: 7rem 7rem; background: var(--cream); display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: center; }
.about-visual { position: relative; }
.about-img-box { aspect-ratio: 4/5; background: linear-gradient(160deg, #2c2418 0%, #4a3828 60%, #c9a84c33 100%); position: relative; overflow: hidden; }
.about-img-box::before { content: ''; position: absolute; inset: 1.2rem; border: 1px solid rgba(201,168,76,.3); }
.about-img-box-inner { position: absolute; inset: 2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; color: var(--gold-light); font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; opacity: .4; text-align: center; }
.about-accent { position: absolute; bottom: -2rem; right: -2rem; width: 130px; height: 130px; background: var(--gold-dark); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--btn-white); padding: 1rem; }
.about-accent-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 300; line-height: 1; }
.about-accent-text { font-size: .55rem; letter-spacing: .25em; text-transform: uppercase; margin-top: .3rem; text-align: center; line-height: 1.5; }
.about-body { font-size: .92rem; font-weight: 300; line-height: 1.95; color: var(--text-mid-light); margin-bottom: 1.5rem; max-width: 520px; }
.about-qualities { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.5rem; margin: 2.5rem 0; }
.quality { font-size: .75rem; color: var(--text-on-light); padding-left: 1.2rem; position: relative; }
.quality::before { content: '✦'; position: absolute; left: 0; color: var(--gold-dark); font-size: .7rem; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 7rem 7rem 6rem; background: var(--charcoal); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(201,168,76,.18); }
.review { background: var(--charcoal-2); padding: 3rem 2.5rem; transition: background .3s; }
.review:hover { background: var(--charcoal-3); }
.review-stars { color: var(--gold-light); font-size: .9rem; letter-spacing: .15em; margin-bottom: 1.5rem; }
.review-text { font-family: var(--font-display); font-size: 1.05rem; font-weight: 300; font-style: italic; line-height: 1.75; color: var(--text-on-dark); margin-bottom: 2rem; }
.reviewer { display: flex; align-items: center; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(201,168,76,.18); }
.reviewer-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gold-dark); color: var(--btn-white); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: .85rem; }
.reviewer-name { font-size: .82rem; font-weight: 500; color: var(--text-on-dark); }
.reviewer-since { font-size: .65rem; letter-spacing: .15em; color: var(--text-muted-dark); margin-top: .15rem; }

/* ── BOOKING (homepage preview) ── */
.booking { padding: 7rem 7rem 6rem; background: var(--warm-white); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: stretch; }
.booking-info { padding-right: 2rem; }
.booking-body { font-size: .9rem; font-weight: 300; line-height: 1.9; color: var(--text-mid-light); margin-bottom: 2.5rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-item { display: flex; gap: 1.2rem; align-items: center; }
.contact-icon { width: 38px; height: 38px; background: var(--cream); border: 1px solid rgba(168,135,42,.3); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.contact-label { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--text-mid-light); }
.contact-value { font-size: .9rem; color: var(--text-on-light); margin-top: .15rem; }

/* ── FORMS ── */
.form-wrap { background: var(--cream); padding: 3rem; }
.form-title { font-family: var(--font-display); font-size: 1.9rem; font-weight: 300; color: var(--text-on-light); margin-bottom: .4rem; }
.form-sub { font-size: .7rem; font-weight: 300; color: var(--text-mid-light); letter-spacing: .06em; margin-bottom: 1.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-size: .62rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--text-mid-light); margin-bottom: .5rem; }
.form-input, .form-select, .form-textarea { width: 100%; font-family: var(--font-body); font-size: .9rem; color: var(--text-on-light); background: var(--warm-white); border: 1px solid rgba(168,135,42,.25); padding: .85rem 1rem; transition: border-color .25s, background .25s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--gold-dark); background: var(--btn-white); }
.form-textarea { min-height: 110px; resize: vertical; font-family: var(--font-body); }
.btn-submit { width: 100%; font-size: .68rem; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: var(--btn-white); background: var(--gold-dark); padding: 1.1rem; text-decoration: none; transition: background .3s; border: none; cursor: pointer; }
.btn-submit:hover { background: var(--charcoal); }

.alert { padding: 1rem 1.2rem; margin-bottom: 1.2rem; font-size: .82rem; line-height: 1.6; border-left: 3px solid; }
.alert-success { background: rgba(74,97,80,.12); border-color: var(--sage); color: var(--text-on-light); }
.alert-error   { background: rgba(140,90,80,.12); border-color: var(--blush); color: var(--text-on-light); }
.alert-info    { background: rgba(201,168,76,.12); border-color: var(--gold-dark); color: var(--text-on-light); }

/* ── FOOTER ── */
footer { background: var(--charcoal); padding: 5rem 7rem 2rem; color: var(--text-muted-dark); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(201,168,76,.15); }
.footer-brand { font-family: var(--font-display); font-size: 1.8rem; font-weight: 300; color: var(--text-on-dark); letter-spacing: .12em; margin-bottom: 1rem; }
.footer-brand em { font-style: italic; color: var(--gold-light); }
.footer-tagline { font-size: .82rem; line-height: 1.85; color: var(--text-muted-dark); max-width: 380px; }
.footer-col-title { font-size: .65rem; font-weight: 500; letter-spacing: .25em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.4rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .85rem; }
.footer-links a { font-size: .82rem; color: var(--text-muted-dark); text-decoration: none; transition: color .25s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; flex-wrap: wrap; gap: 1.2rem; }
.footer-copy { font-size: .72rem; letter-spacing: .08em; color: var(--text-muted-dark); }
.footer-social { display: flex; gap: .6rem; }
.social-link { width: 34px; height: 34px; border: 1px solid rgba(201,168,76,.3); color: var(--gold-light); display: flex; align-items: center; justify-content: center; text-decoration: none; font-weight: 600; font-size: .85rem; transition: all .25s; }
.social-link:hover { background: var(--gold-dark); color: var(--btn-white); border-color: var(--gold-dark); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ── PAGE HERO (subpages) ── */
.page-hero {
  position: relative; padding: 9rem 7rem 5rem;
  background: linear-gradient(160deg, #1a1510 0%, #211c13 60%, #2c2418 100%);
  overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(168,135,42,.12) 0%, transparent 70%); }
.page-hero-eyebrow { font-size: .62rem; font-weight: 500; letter-spacing: .35em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; display: flex; align-items: center; gap: 1rem; position: relative; z-index: 1; }
.page-hero-eyebrow::before { content: ''; width: 2rem; height: 1px; background: var(--gold); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 300; color: var(--text-on-dark); line-height: 1.05; position: relative; z-index: 1; }
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero-sub { font-size: .9rem; font-weight: 300; color: var(--text-muted-dark); max-width: 540px; margin-top: 1.5rem; line-height: 1.8; position: relative; z-index: 1; }

.content-section { padding: 6rem 7rem; }
.content-section.cream { background: var(--cream); }
.content-section.white { background: var(--warm-white); }

/* ============================================================
   GALLERY PAGE — clean, masonry, working filters & lightbox
   ============================================================ */
.gallery-page { padding: 0 0 8rem; background: var(--warm-white); }

.gallery-filter-bar {
  background: var(--warm-white); padding: 2rem 7rem;
  display: flex; align-items: center; gap: .5rem;
  border-bottom: 1px solid rgba(168,135,42,.2); flex-wrap: wrap;
}
.gallery-filter-label { font-size: .6rem; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: var(--text-mid-light); margin-right: 1rem; }
.gallery-filter-btn {
  font-family: var(--font-body); font-size: .62rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-mid-light); background: none;
  border: 1px solid rgba(168,135,42,.3); padding: .5rem 1.3rem; cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
}
.gallery-filter-btn:hover, .gallery-filter-btn.active { background: var(--charcoal); color: var(--text-on-dark); border-color: var(--charcoal); }

.gallery-masonry {
  padding: 3rem 7rem;
  column-count: 3;
  column-gap: 12px;
}
.g-item {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--charcoal-2);
  break-inside: avoid; margin-bottom: 12px;
  display: block;
  transition: opacity .3s, transform .3s;
}
.g-item.filtered-out { opacity: .15; pointer-events: none; transform: scale(.98); }
.g-item img { width: 100%; height: auto; display: block; transition: transform .55s cubic-bezier(.25,.46,.45,.94); }
.g-item:hover img { transform: scale(1.06); }

.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,21,16,.78) 0%, transparent 55%);
  opacity: 0; transition: opacity .35s;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.4rem;
  pointer-events: none;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 300; font-style: italic; color: var(--text-on-dark); }
.g-overlay-cat { font-size: .55rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); margin-top: .3rem; }

.gallery-empty {
  text-align: center; padding: 6rem 2rem;
  color: var(--text-mid-light);
}
.gallery-empty-icon { font-size: 3rem; opacity: .35; margin-bottom: 1rem; }
.gallery-empty-text { font-size: .9rem; line-height: 1.8; max-width: 440px; margin: 0 auto; }

/* ── LIGHTBOX ── */
.lb { position: fixed; inset: 0; background: rgba(16,14,10,.96); z-index: 500; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; }
.lb.open { opacity: 1; pointer-events: all; }
.lb-img { max-width: 82vw; max-height: 82vh; object-fit: contain; box-shadow: 0 40px 100px rgba(0,0,0,.6); transform: scale(.95); transition: transform .3s; }
.lb.open .lb-img { transform: scale(1); }
.lb-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: 1px solid rgba(201,168,76,.35); color: var(--gold-light); width: 2.6rem; height: 2.6rem; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .25s; }
.lb-close:hover { background: rgba(201,168,76,.15); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: 1px solid rgba(201,168,76,.28); color: var(--gold-light); width: 3rem; height: 3rem; font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .25s; }
.lb-nav:hover { background: rgba(201,168,76,.15); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-caption { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); text-align: center; }
.lb-caption-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 300; color: var(--text-on-dark); }
.lb-caption-cat { font-size: .58rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold-light); margin-top: .3rem; }

/* ============================================================
   CHAT WIDGET (floating)
   ============================================================ */
.sl-chat-launcher {
  position: fixed; right: 1.6rem; bottom: 1.6rem; z-index: 9000;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold-dark); color: var(--btn-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transition: transform .25s var(--ease), background .25s;
}
.sl-chat-launcher:hover { background: var(--charcoal); transform: scale(1.06); }
.sl-chat-launcher-icon { font-size: 1.55rem; line-height: 1; position: relative; z-index: 1; }
.sl-chat-launcher-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: var(--gold-dark); opacity: .4;
  animation: slPulse 1.8s infinite;
}
@keyframes slPulse { 0% { transform: scale(1); opacity: .4; } 100% { transform: scale(1.7); opacity: 0; } }

.sl-chat-menu {
  position: fixed; right: 1.6rem; bottom: 6.4rem; z-index: 9001;
  width: 320px; max-width: calc(100vw - 2rem);
  background: var(--warm-white); border: 1px solid rgba(168,135,42,.25);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.sl-chat-menu.open { opacity: 1; transform: none; pointer-events: all; }
.sl-chat-menu-header { padding: 1.2rem 1.3rem; border-bottom: 1px solid rgba(168,135,42,.18); display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.sl-chat-menu-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; color: var(--text-on-light); }
.sl-chat-menu-sub { font-size: .68rem; color: var(--text-mid-light); margin-top: .2rem; }
.sl-chat-menu-close { background: none; border: none; cursor: pointer; color: var(--text-mid-light); font-size: 1rem; padding: .2rem .5rem; }
.sl-chat-option {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.3rem; text-decoration: none; color: var(--text-on-light);
  background: none; border: none; width: 100%; text-align: left; cursor: pointer;
  border-bottom: 1px solid rgba(168,135,42,.1);
  transition: background .2s;
  font-family: var(--font-body);
}
.sl-chat-option:hover { background: var(--cream); }
.sl-chat-option-icon { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1.05rem; flex-shrink: 0; }
.sl-chat-option-text { display: flex; flex-direction: column; gap: .15rem; }
.sl-chat-option-title { font-size: .85rem; font-weight: 500; color: var(--text-on-light); }
.sl-chat-option-desc { font-size: .7rem; color: var(--text-mid-light); }
.sl-chat-menu-footer { padding: .9rem 1.3rem; font-size: .72rem; color: var(--text-mid-light); text-align: center; background: var(--cream); }
.sl-chat-menu-footer a { color: var(--gold-dark); text-decoration: none; font-weight: 500; }

/* Live PHP chat panel */
.sl-chat-panel {
  position: fixed; right: 1.6rem; bottom: 6.4rem; z-index: 9002;
  width: 360px; max-width: calc(100vw - 2rem);
  height: min(560px, calc(100vh - 8rem));
  background: var(--warm-white); display: flex; flex-direction: column;
  border: 1px solid rgba(168,135,42,.25);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.sl-chat-panel.open { opacity: 1; transform: none; pointer-events: all; }
.sl-chat-panel-header { padding: 1rem 1.2rem; background: var(--charcoal); color: var(--text-on-dark); display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.sl-chat-panel-title { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: .08em; }
.sl-chat-panel-title em { color: var(--gold-light); font-style: italic; }
.sl-chat-panel-status { font-size: .68rem; color: var(--text-muted-dark); margin-top: .25rem; display: flex; align-items: center; gap: .4rem; }
.sl-chat-dot { width: 7px; height: 7px; border-radius: 50%; background: #4caf50; box-shadow: 0 0 0 0 rgba(76,175,80,.6); animation: slDot 1.6s infinite; }
@keyframes slDot { 0% { box-shadow: 0 0 0 0 rgba(76,175,80,.6);} 100% { box-shadow: 0 0 0 8px rgba(76,175,80,0);} }
.sl-chat-panel-close { background: none; border: none; cursor: pointer; color: var(--gold-light); font-size: 1rem; padding: .2rem .5rem; }
.sl-chat-prechat { padding: 1.5rem 1.3rem; }
.sl-chat-prechat-intro { font-size: .85rem; color: var(--text-mid-light); margin-bottom: 1.2rem; line-height: 1.6; }
.sl-chat-input { width: 100%; padding: .75rem 1rem; font-size: .88rem; font-family: var(--font-body); background: var(--warm-white); border: 1px solid rgba(168,135,42,.3); margin-bottom: .7rem; color: var(--text-on-light); }
.sl-chat-input:focus { outline: none; border-color: var(--gold-dark); }
.sl-chat-btn { width: 100%; padding: .85rem; background: var(--gold-dark); color: #fff; border: none; font-size: .68rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; cursor: pointer; transition: background .25s; }
.sl-chat-btn:hover { background: var(--charcoal); }
.sl-chat-messages { flex: 1; overflow-y: auto; padding: 1rem 1.2rem; display: flex; flex-direction: column; gap: .6rem; background: var(--cream); }
.sl-msg { max-width: 80%; padding: .65rem .9rem; font-size: .85rem; line-height: 1.5; word-wrap: break-word; }
.sl-msg-time { font-size: .6rem; color: var(--text-mid-light); margin-top: .3rem; opacity: .7; }
.sl-msg.user { align-self: flex-end; background: var(--gold-dark); color: #fff; border-radius: 12px 12px 2px 12px; }
.sl-msg.user .sl-msg-time { color: rgba(255,255,255,.75); }
.sl-msg.staff { align-self: flex-start; background: #fff; color: var(--text-on-light); border: 1px solid rgba(168,135,42,.18); border-radius: 12px 12px 12px 2px; }
.sl-msg.system { align-self: center; background: transparent; color: var(--text-mid-light); font-size: .7rem; font-style: italic; }
.sl-chat-composer { display: flex; gap: .5rem; padding: .8rem; border-top: 1px solid rgba(168,135,42,.18); }
.sl-chat-composer .sl-chat-input { margin-bottom: 0; }
.sl-chat-send { padding: 0 1.1rem; background: var(--gold-dark); color: #fff; border: none; cursor: pointer; font-size: 1.05rem; transition: background .2s; }
.sl-chat-send:hover { background: var(--charcoal); }

/* ============================================================
   VIDEO CALL PAGE
   ============================================================ */
.vc-wrap { padding: 4rem 7rem; background: var(--warm-white); display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.vc-info h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; color: var(--text-on-light); margin-bottom: 1rem; }
.vc-info h2 em { font-style: italic; color: var(--gold-dark); }
.vc-info p { font-size: .92rem; line-height: 1.85; color: var(--text-mid-light); margin-bottom: 1rem; }
.vc-steps { margin: 1.5rem 0 2.5rem; }
.vc-step { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.2rem; }
.vc-step-num { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold-dark); min-width: 1.8rem; }
.vc-step-text { font-size: .87rem; line-height: 1.6; color: var(--text-mid-light); }
.vc-step-text strong { color: var(--text-on-light); }

.vc-launch-card { background: var(--cream); padding: 2.5rem; }
.vc-launch-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--text-on-light); margin-bottom: .3rem; }
.vc-launch-sub { font-size: .75rem; color: var(--text-mid-light); margin-bottom: 1.8rem; }
.vc-frame { width: 100%; height: 540px; border: 1px solid rgba(168,135,42,.3); background: var(--charcoal); display: flex; align-items: center; justify-content: center; color: var(--text-muted-dark); }
.vc-frame iframe { width: 100%; height: 100%; border: 0; }
.vc-controls { margin-top: 1.2rem; display: flex; gap: .8rem; flex-wrap: wrap; }

/* ============================================================
   TRAINING PAGE
   ============================================================ */
.training-wrap { background: var(--warm-white); padding: 0 0 6rem; }
.training-tabs { display: flex; gap: 0; padding: 0 7rem; background: var(--warm-white); border-bottom: 1px solid rgba(168,135,42,.2); }
.training-tab { padding: 1.2rem 2rem; font-size: .68rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--text-mid-light); background: none; border: none; cursor: pointer; border-bottom: 2px solid transparent; transition: all .2s; }
.training-tab:hover { color: var(--text-on-light); }
.training-tab.active { color: var(--gold-dark); border-bottom-color: var(--gold-dark); }

.training-section { padding: 4rem 7rem; }
.training-section.hidden { display: none; }
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 1rem; }
.course-card { background: var(--cream); border: 1px solid rgba(168,135,42,.18); transition: transform .25s, box-shadow .25s; display:flex; flex-direction: column; }
.course-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.course-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, #2c2418 0%, #4a3828 60%, #c9a84c33 100%); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: 2.2rem; }
.course-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.course-thumb-badge { position: absolute; top: .8rem; left: .8rem; background: rgba(26,24,20,.85); color: var(--gold-light); padding: .25rem .6rem; font-size: .55rem; letter-spacing: .2em; text-transform: uppercase; }
.course-thumb-lock { position: absolute; bottom: .8rem; right: .8rem; background: var(--gold-dark); color: #fff; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem; }
.course-body { padding: 1.5rem 1.6rem 1.8rem; flex: 1; display: flex; flex-direction: column; }
.course-cat { font-size: .58rem; font-weight: 500; letter-spacing: .25em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: .6rem; }
.course-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: var(--text-on-light); margin-bottom: .6rem; line-height: 1.3; }
.course-desc { font-size: .82rem; line-height: 1.7; color: var(--text-mid-light); margin-bottom: 1.2rem; flex: 1; }
.course-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 1rem; border-top: 1px solid rgba(168,135,42,.2); }
.course-price { font-family: var(--font-display); font-size: 1.3rem; color: var(--text-on-light); }
.course-price.free { color: var(--sage); }
.course-cta { font-size: .6rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; padding: .55rem 1.2rem; background: var(--gold-dark); color: #fff; text-decoration: none; transition: background .2s; border:none; cursor:pointer; }
.course-cta:hover { background: var(--charcoal); }

.training-empty { text-align: center; padding: 5rem 2rem; color: var(--text-mid-light); }
.training-empty-icon { font-size: 3rem; opacity: .3; margin-bottom: 1rem; }

/* Course access form */
.access-modal { position: fixed; inset: 0; background: rgba(16,14,10,.85); z-index: 800; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .25s; padding: 2rem; }
.access-modal.open { opacity: 1; pointer-events: all; }
.access-box { background: var(--warm-white); padding: 2.5rem; max-width: 420px; width: 100%; }
.access-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--text-on-light); margin-bottom: .5rem; }
.access-sub { font-size: .82rem; color: var(--text-mid-light); margin-bottom: 1.5rem; line-height: 1.6; }
.access-actions { display: flex; gap: .7rem; margin-top: 1rem; }
.access-actions button { flex: 1; padding: .85rem; }
.access-cancel { background: none; border: 1px solid rgba(168,135,42,.4); color: var(--text-mid-light); cursor: pointer; font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; }

/* Live training session list */
.live-list { display: flex; flex-direction: column; gap: 1rem; max-width: 800px; }
.live-row { display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem; align-items: center; padding: 1.4rem 1.6rem; background: var(--cream); border-left: 3px solid var(--gold-dark); }
.live-date { font-family: var(--font-display); text-align: center; min-width: 70px; }
.live-date-day { font-size: 2rem; font-weight: 300; color: var(--text-on-light); line-height: 1; }
.live-date-month { font-size: .55rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold-dark); margin-top: .2rem; }
.live-info-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--text-on-light); margin-bottom: .3rem; }
.live-info-meta { font-size: .75rem; color: var(--text-mid-light); }
.live-join-btn { padding: .8rem 1.5rem; background: var(--gold-dark); color: #fff; text-decoration: none; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; transition: background .2s; }
.live-join-btn:hover { background: var(--charcoal); }
.live-join-btn.disabled { background: rgba(168,135,42,.3); pointer-events: none; }

/* Course player page */
.player-wrap { background: var(--warm-white); padding: 4rem 7rem; }
.player-back { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dark); text-decoration: none; margin-bottom: 1.5rem; display: inline-block; }
.player-title { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; color: var(--text-on-light); margin-bottom: .5rem; }
.player-desc { font-size: .9rem; color: var(--text-mid-light); margin-bottom: 2rem; line-height: 1.7; max-width: 720px; }
.player-video { width: 100%; max-width: 1100px; aspect-ratio: 16/9; background: #000; }
.player-video video, .player-video iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   ADMIN
   ============================================================ */
.admin-body { background: var(--cream); min-height: 100vh; padding: 0; }
.admin-nav { background: var(--charcoal); color: var(--text-on-dark); padding: 1rem 2.5rem; display: flex; justify-content: space-between; align-items: center; }
.admin-nav-logo { font-family: var(--font-display); font-size: 1.2rem; font-weight: 300; letter-spacing: .1em; color: var(--text-on-dark); }
.admin-nav-logo em { color: var(--gold-light); font-style: italic; }
.admin-nav-tabs { display: flex; gap: 0; background: var(--charcoal-2); padding: 0 2.5rem; border-bottom: 1px solid rgba(201,168,76,.2); flex-wrap: wrap; }
.admin-nav-tab { padding: 1rem 1.4rem; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--text-muted-dark); text-decoration: none; border-bottom: 2px solid transparent; transition: all .2s; }
.admin-nav-tab:hover { color: var(--gold-light); }
.admin-nav-tab.active { color: var(--gold-light); border-bottom-color: var(--gold-light); }
.admin-wrap { max-width: 1280px; margin: 0 auto; padding: 2.5rem; }
.admin-header h1 { font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--text-on-light); }
.admin-header h1 em { color: var(--gold-dark); font-style: italic; }
.admin-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 2rem 0; }
.admin-stat-card { background: var(--warm-white); padding: 1.4rem 1.6rem; border-left: 3px solid var(--gold); }
.admin-stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; color: var(--text-on-light); line-height: 1; }
.admin-stat-label { font-size: .58rem; letter-spacing: .25em; text-transform: uppercase; color: var(--text-mid-light); margin-top: .4rem; }
.admin-filter { background: var(--warm-white); padding: 1.2rem; display: flex; gap: .8rem; align-items: center; flex-wrap: wrap; margin-bottom: 1.5rem; border: 1px solid rgba(168,135,42,.18); }
.admin-filter input, .admin-filter select { font-family: var(--font-body); font-size: .82rem; padding: .55rem .75rem; background: var(--cream); border: 1px solid rgba(168,135,42,.3); }
.admin-filter input:focus, .admin-filter select:focus { outline: none; border-color: var(--gold-dark); background: #fff; }
.admin-table-wrap { background: var(--warm-white); overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 900px; }
.admin-table th { background: var(--charcoal); color: var(--text-on-dark); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; padding: .9rem; text-align: left; }
.admin-table td { padding: 1rem .9rem; font-size: .85rem; border-bottom: 1px solid rgba(168,135,42,.12); vertical-align: top; }
.admin-table tr:hover { background: var(--cream); }
.admin-badge { display: inline-block; padding: .2rem .6rem; font-size: .56rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; }
.admin-badge.new { background: #c0392b; color: #fff; }
.admin-badge.read { background: rgba(168,135,42,.18); color: var(--text-mid-light); }

/* Admin upload forms */
.admin-card { background: var(--warm-white); padding: 2rem; border: 1px solid rgba(168,135,42,.18); margin-bottom: 1.5rem; }
.admin-card-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--text-on-light); margin-bottom: 1.5rem; padding-bottom: .8rem; border-bottom: 1px solid rgba(168,135,42,.2); }
.admin-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.admin-item-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.admin-item { position: relative; aspect-ratio: 1; background: var(--cream); overflow: hidden; }
.admin-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.admin-item-overlay { position: absolute; inset: 0; background: rgba(26,24,20,.8); opacity: 0; transition: opacity .2s; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .8rem; padding: 1rem; text-align: center; }
.admin-item:hover .admin-item-overlay { opacity: 1; }
.admin-item-title { color: var(--text-on-dark); font-size: .8rem; font-family: var(--font-display); }
.admin-item-cat { color: var(--gold-light); font-size: .55rem; letter-spacing: .2em; text-transform: uppercase; }
.admin-item-delete { background: var(--blush); color: #fff; padding: .4rem .9rem; font-size: .55rem; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; border:none; cursor:pointer; font-family: var(--font-body); }

.login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.login-box { background: var(--warm-white); padding: 3rem 2.8rem; max-width: 380px; width: 100%; }
.login-logo { font-family: var(--font-display); font-size: 1.8rem; font-weight: 300; color: var(--text-on-light); text-align: center; margin-bottom: 2rem; letter-spacing: .12em; }
.login-logo em { color: var(--gold-dark); font-style: italic; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  nav { padding: 1.2rem 2rem; }
  .hero-content { padding: 0 2rem 5rem; }
  .hero-stats { right: 2rem; }
  .hero-scroll { left: 2rem; }
  .services, .testimonials, .booking, .about { padding: 5rem 2rem; }
  .page-hero { padding: 8rem 2rem 4rem; }
  .gallery-filter-bar, .gallery-masonry { padding-left: 2rem; padding-right: 2rem; }
  .training-tabs, .training-section, .vc-wrap, .player-wrap { padding-left: 2rem; padding-right: 2rem; }
  footer { padding: 4rem 2rem 2rem; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-book { display: none; }
  .hero-stats { display: none; }
  .services-grid, .reviews-grid, .footer-top { grid-template-columns: 1fr; }
  .booking, .about, .vc-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-masonry { column-count: 2; }
  .courses-grid { grid-template-columns: 1fr; }
  .admin-stats-row { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .live-row { grid-template-columns: auto 1fr; }
  .live-row .live-join-btn { grid-column: 1 / -1; text-align: center; }
}
@media (max-width: 560px) {
  .hero-content { padding: 0 1.4rem 4rem; }
  .gallery-masonry { column-count: 1; padding: 1.5rem; }
  .vc-frame { height: 380px; }
  .player-wrap { padding: 2rem 1rem; }
  .sl-chat-launcher { right: 1rem; bottom: 1rem; width: 54px; height: 54px; }
  .sl-chat-menu, .sl-chat-panel { right: 1rem; bottom: 5.4rem; }
}

/* ============================================================
   LEGACY PAGE HELPERS (about, privacy, gift-certificates, intake)
   ============================================================ */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 400; color: var(--text-on-light); margin-bottom: 1rem; }
.prose h2 em { font-style: italic; color: var(--gold-dark); }
.prose h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: var(--text-on-light); margin: 1.8rem 0 .8rem; }
.prose p { font-size: .92rem; font-weight: 300; line-height: 1.95; color: var(--text-mid-light); margin-bottom: 1.2rem; }
.prose ul, .prose ol { margin: 0 0 1.4rem 1.4rem; }
.prose li { font-size: .92rem; line-height: 1.85; color: var(--text-mid-light); margin-bottom: .5rem; }
.prose strong { color: var(--text-on-light); font-weight: 500; }
.prose a { color: var(--gold-dark); text-decoration: none; border-bottom: 1px solid rgba(168,135,42,.3); }
.prose a:hover { border-bottom-color: var(--gold-dark); }

.intake-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 720px) { .intake-grid { grid-template-columns: 1fr; } }

.conditions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem 1.2rem; }
.conditions-grid label { display: flex; align-items: center; gap: .6rem; font-size: .82rem; color: var(--text-mid-light); cursor: pointer; }
.conditions-grid input[type="checkbox"] { accent-color: var(--gold-dark); width: 16px; height: 16px; }
@media (max-width: 720px) { .conditions-grid { grid-template-columns: 1fr; } }

.about-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: center; }
@media (max-width: 900px) { .about-inner { grid-template-columns: 1fr !important; gap: 3rem !important; } }

/* Gift Certificate page */
.gift-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; max-width: 1200px; margin: 0 auto; align-items: center; }
@media (max-width: 900px) { .gift-wrap { grid-template-columns: 1fr; gap: 3rem; } }
.gift-card-visual {
  aspect-ratio: 1.6/1;
  background: linear-gradient(140deg, #2c2418 0%, #4a3828 50%, #c9a84c 130%);
  position: relative; padding: 2.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid rgba(201,168,76,.4);
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
  color: var(--text-on-dark);
}
.gift-card-visual::before { content: ''; position: absolute; inset: .8rem; border: 1px solid rgba(201,168,76,.3); pointer-events: none; }
.gift-card-logo { font-family: var(--font-display); font-size: 2rem; font-weight: 300; letter-spacing: .12em; color: var(--text-on-dark); }
.gift-card-logo em { color: var(--gold-light); font-style: italic; }
.gift-card-tagline { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold-light); margin-top: 1rem; }
.gift-card-divider { width: 50px; height: 1px; background: var(--gold-light); margin: 1rem 0; }
.gift-card-label { font-size: .55rem; letter-spacing: .25em; text-transform: uppercase; color: var(--text-muted-dark); }
.gift-card-amount { font-family: var(--font-display); font-size: 3rem; font-weight: 300; color: var(--gold-light); line-height: 1; margin-top: .5rem; }

