/* ============================================================
   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); }

/* Hamburger */
.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 */
.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 — cinematic ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: #0e0c09; /* dark fallback shown before video loads */
  z-index: 0;
  overflow: hidden;
}
/* Subtle gold shimmer on top of the video */
.hero-bg::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: conic-gradient(from 200deg at 70% 35%, transparent 0deg, rgba(201,168,76,.04) 20deg, transparent 40deg);
  animation: lightSweep 8s ease-in-out infinite alternate;
  pointer-events: none;
}
.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-lines::after { content: ''; position: absolute; top: 0; right: calc(18% + 3px); width: 1px; height: 100%; background: linear-gradient(to bottom, transparent 0%, rgba(201,168,76,.06) 40%, rgba(201,168,76,.12) 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; }

/* Stats — desktop: right-side panel */
.hero-stats {
  position: absolute;
  top: 50%;
  right: 7rem;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1px;
  animation: fadeIn 1.4s var(--ease) .9s both;
}
.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: .52rem; letter-spacing: .22em; text-transform: uppercase; color: var(--text-muted-dark); margin-top: .3rem; display: block; }

/* Hero content — desktop */
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 7rem 6rem;
  max-width: 820px;
  animation: fadeUp 1.1s var(--ease) .15s both;
}
.hero-eyebrow { font-size: .65rem; font-weight: 500; letter-spacing: .38em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.75rem; display: flex; align-items: center; gap: 1.2rem; }
.hero-eyebrow::before { content: ''; width: 3rem; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero-title { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 7.5rem); font-weight: 300; line-height: .98; color: var(--text-on-dark); margin-bottom: 2rem; letter-spacing: -.01em; }
.hero-title em { font-style: italic; color: var(--gold-light); display: block; }
.hero-sub { font-size: .92rem; font-weight: 300; line-height: 1.85; color: var(--text-muted-dark); max-width: 480px; margin-bottom: 3rem; letter-spacing: .025em; }
.hero-cta { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: .5rem; animation: fadeIn 1.5s var(--ease) 1.2s both; }
.hero-scroll-text { font-size: .5rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(201,168,76,.6), transparent); animation: scrollPulse 2s ease-in-out infinite; }

/* ── BUTTONS ── */
.btn-primary { font-size: .65rem; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: var(--btn-white); background: var(--gold-dark); padding: 1rem 2.5rem; text-decoration: none; display: inline-block; border: none; cursor: pointer; transition: background .25s var(--ease), transform .15s; }
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); }
.btn-secondary { font-size: .65rem; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: var(--text-on-dark); background: var(--charcoal); padding: 1rem 2.5rem; text-decoration: none; display: inline-block; border: none; cursor: pointer; transition: background .25s var(--ease), transform .15s; }
.btn-secondary:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-ghost { font-size: .65rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: var(--text-on-dark); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 3px; transition: color .25s, border-color .25s; }
.btn-ghost:hover { color: var(--gold-light); border-color: var(--gold-light); }
.btn-ghost-dark { font-size: .65rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: var(--text-mid-light); text-decoration: none; border-bottom: 2px solid var(--gold-dark); padding-bottom: 3px; transition: color .25s; }
.btn-ghost-dark:hover { color: var(--charcoal); }

/* ── INTRO STRIP ── */
.intro-strip { background: var(--charcoal); padding: 1.8rem 7rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; overflow: hidden; flex-wrap: wrap; }
.strip-item { display: flex; align-items: center; gap: .8rem; white-space: nowrap; }
.strip-icon { color: var(--gold-light); font-size: .9rem; }
.strip-text { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted-dark); font-weight: 300; }
.strip-div { width: 1px; height: 1.8rem; background: rgba(201,168,76,.3); flex-shrink: 0; }

/* ── SECTION COMMONS ── */
.section-header { text-align: center; margin-bottom: 5rem; }
.section-eyebrow { font-size: .6rem; font-weight: 500; letter-spacing: .38em; text-transform: uppercase; color: var(--text-mid-light); margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; gap: 1.5rem; }
.section-eyebrow::before, .section-eyebrow::after { content: ''; width: 3rem; height: 1px; background: var(--gold-dark); }
.section-eyebrow.left { justify-content: flex-start; }
.section-eyebrow.left::before { display: none; }
.section-title { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 300; color: var(--text-on-light); line-height: 1.15; }
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-title.light { color: var(--text-on-dark); }

/* ── SERVICES ── */
.services { padding: 8rem 7rem; background: var(--warm-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card { background: var(--cream); padding: 3rem 2.5rem; position: relative; overflow: hidden; cursor: pointer; transition: transform .3s var(--ease); }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform .4s var(--ease); }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); }
.service-num { font-family: var(--font-display); font-size: 3.8rem; font-weight: 300; color: rgba(168,135,42,.35); line-height: 1; margin-bottom: 1rem; }
.service-icon { font-size: 1.6rem; margin-bottom: .8rem; }
.service-name { font-family: var(--font-display); font-size: 1.55rem; font-weight: 400; color: var(--text-on-light); margin-bottom: .4rem; }
.service-duration { font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: var(--text-mid-light); margin-bottom: .9rem; }
.service-desc { font-size: .83rem; font-weight: 300; line-height: 1.8; color: var(--text-mid-light); margin-bottom: 1.5rem; }
.service-price { font-family: var(--font-display); font-size: 1.9rem; font-weight: 400; color: var(--text-on-light); border-top: 1px solid rgba(168,135,42,.3); padding-top: 1rem; }
.service-price span { font-family: var(--font-body); font-size: .75rem; font-weight: 300; color: var(--text-mid-light); }

/* ── GALLERY ── */
.gallery { padding: 0 0 8rem; background: var(--warm-white); }
.gallery-header { text-align: center; padding: 0 7rem 4rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 260px 260px; gap: 3px; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; background: var(--charcoal-2); }
.gallery-item:nth-child(1) { grid-column: 1 / 3; }
.gallery-item:nth-child(5) { grid-column: 3 / 5; }
.gallery-inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: transform .5s var(--ease); }
.gallery-item:hover .gallery-inner { transform: scale(1.04); }
.gallery-item:nth-child(1) .gallery-inner { background: linear-gradient(135deg, #2c2418 0%, #4a3828 60%, #c9a84c22 100%); }
.gallery-item:nth-child(2) .gallery-inner { background: linear-gradient(160deg, #1e2a22 0%, #2e4035 100%); }
.gallery-item:nth-child(3) .gallery-inner { background: linear-gradient(135deg, #2a1e1a 0%, #4a2e28 100%); }
.gallery-item:nth-child(4) .gallery-inner { background: linear-gradient(160deg, #231e14 0%, #3c3020 100%); }
.gallery-item:nth-child(5) .gallery-inner { background: linear-gradient(135deg, #1a1814 0%, #2c2418 50%, #c9a84c18 100%); }
.gallery-item:nth-child(6) .gallery-inner { background: linear-gradient(160deg, #1e1e2a 0%, #2e2840 100%); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(26,24,20,0); display: flex; align-items: flex-end; padding: 1.5rem; transition: background .35s var(--ease); }
.gallery-item:hover .gallery-overlay { background: rgba(26,24,20,.55); }
.gallery-label { font-family: var(--font-display); font-size: 1rem; font-style: italic; color: var(--text-on-dark); opacity: 0; transform: translateY(10px); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.gallery-item:hover .gallery-label { opacity: 1; transform: translateY(0); }
.gallery-placeholder-icon { font-size: 2.4rem; opacity: .22; margin-bottom: .4rem; }
.gallery-placeholder-text { font-size: .55rem; letter-spacing: .25em; text-transform: uppercase; color: var(--text-on-dark); opacity: .3; }

/* ── ABOUT ── */
.about { padding: 8rem 7rem; background: var(--cream); display: grid; grid-template-columns: 1fr 1.2fr; gap: 7rem; align-items: center; }
.about-visual { position: relative; }
.about-img-box { width: 100%; padding-bottom: 118%; background: linear-gradient(145deg, var(--charcoal-3) 0%, var(--charcoal) 100%); position: relative; overflow: hidden; border: 1px solid rgba(201,168,76,.2); }
.about-img-box-inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; font-size: .55rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(201,168,76,.38); }
.about-img-box img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-accent { position: absolute; bottom: -2rem; right: -2rem; width: 190px; height: 190px; background: var(--charcoal); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .3rem; border: 1px solid rgba(201,168,76,.2); }
.about-accent-num { font-family: var(--font-display); font-size: 3rem; font-weight: 300; color: var(--gold-light); line-height: 1; }
.about-accent-text { font-size: .55rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted-dark); text-align: center; line-height: 1.5; }
.about-body { font-size: .88rem; font-weight: 300; line-height: 1.95; color: var(--text-mid-light); margin-bottom: 1.25rem; }
.about-qualities { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin: 2rem 0; }
.quality { display: flex; align-items: center; gap: .7rem; font-size: .78rem; font-weight: 400; color: var(--text-on-light); }
.quality::before { content: '◆'; color: var(--gold-dark); font-size: .45rem; flex-shrink: 0; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 8rem 7rem; background: var(--charcoal); position: relative; overflow: hidden; }
.testimonials::before { content: '"'; position: absolute; top: -3rem; left: 4rem; font-family: var(--font-display); font-size: 24rem; font-weight: 300; color: rgba(201,168,76,.06); line-height: 1; pointer-events: none; }
.testimonials .section-eyebrow { color: var(--gold-light); }
.testimonials .section-eyebrow::before, .testimonials .section-eyebrow::after { background: var(--gold); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
.review { border: 1px solid rgba(201,168,76,.18); padding: 2.5rem; transition: border-color .3s; }
.review:hover { border-color: var(--gold); }
.review-stars { color: var(--gold-light); font-size: .8rem; letter-spacing: .1em; 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; }
.reviewer-avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark) 0%, var(--blush) 100%); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; color: var(--btn-white); }
.reviewer-name { font-size: .7rem; font-weight: 400; letter-spacing: .08em; color: var(--text-on-dark); }
.reviewer-since { font-size: .55rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted-dark); margin-top: .2rem; }

/* ── BOOKING SECTION (index) ── */
.booking { padding: 8rem 7rem; background: var(--warm-white); display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: start; }
.booking-info .section-eyebrow { justify-content: flex-start; }
.booking-info .section-eyebrow::before { display: none; }
.booking-info .section-title { text-align: left; margin-bottom: 2rem; }
.booking-body { font-size: .88rem; font-weight: 300; line-height: 1.9; color: var(--text-mid-light); }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1.5rem; padding: 1.4rem 1.5rem; background: var(--cream); border-left: 2px solid var(--gold); }
.contact-icon { font-size: 1.1rem; padding-top: .1rem; }
.contact-label { font-size: .55rem; letter-spacing: .25em; text-transform: uppercase; color: var(--text-mid-light); margin-bottom: .3rem; }
.contact-value { font-family: var(--font-display); font-size: 1.1rem; font-weight: 300; color: var(--text-on-light); }

/* ── 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); margin-bottom: 2.5rem; letter-spacing: .06em; }
.form-group { margin-bottom: 1.4rem; }
.form-label { display: block; font-size: .55rem; font-weight: 500; letter-spacing: .25em; text-transform: uppercase; color: var(--text-mid-light); margin-bottom: .5rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--warm-white); border: 1px solid var(--gold-dark);
  padding: .85rem 1rem; font-family: var(--font-body); font-size: .83rem; font-weight: 300;
  color: var(--text-on-light); outline: none; transition: border-color .25s;
  appearance: none; -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--charcoal); outline: 2px solid var(--gold); outline-offset: 1px; }
.form-textarea { height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit { width: 100%; background: var(--charcoal); color: var(--text-on-dark); border: none; padding: 1.1rem; font-family: var(--font-body); font-size: .65rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; cursor: pointer; margin-top: .5rem; transition: background .25s var(--ease), transform .15s; }
.btn-submit:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* Alert messages */
.alert { padding: 1rem 1.5rem; margin-bottom: 1.5rem; font-size: .82rem; font-weight: 400; border-left: 3px solid; }
.alert-success { background: #e8f5e9; color: #1b5e20; border-color: #4a6150; }
.alert-error   { background: #fce4ec; color: #880e4f; border-color: #c0392b; }

/* ── INTERIOR PAGE HERO ── */
.page-hero {
  padding: 9rem 7rem 5rem;
  background: var(--charcoal);
  position: relative; 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; }
.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 SECTIONS ── */
.content-section { padding: 6rem 7rem; }
.content-section.cream { background: var(--cream); }
.content-section.white { background: var(--warm-white); }
.content-section.dark  { background: var(--charcoal); }

.prose { max-width: 720px; }
.prose h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--text-on-light); margin-bottom: 1rem; }
.prose h2 em { font-style: italic; color: var(--gold-dark); }
.prose p  { font-size: .9rem; font-weight: 300; line-height: 1.9; color: var(--text-mid-light); margin-bottom: 1.25rem; }
.prose ul { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose ul li { font-size: .9rem; font-weight: 300; line-height: 1.9; color: var(--text-mid-light); margin-bottom: .4rem; }
.prose.light h2 { color: var(--text-on-dark); }
.prose.light p, .prose.light li { color: var(--text-muted-dark); }

/* ── GIFT CARD ── */
.gift-card-visual {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-3) 100%);
  border: 1px solid rgba(201,168,76,.3);
  padding: 3rem;
  max-width: 500px;
  position: relative;
  overflow: hidden;
}
.gift-card-visual::before { content: ''; position: absolute; top: -30px; right: -30px; width: 150px; height: 150px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,.2) 0%, transparent 70%); }
.gift-card-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 300; color: var(--text-on-dark); margin-bottom: 2rem; }
.gift-card-logo em { font-style: italic; color: var(--gold-light); }
.gift-card-amount { font-family: var(--font-display); font-size: 4rem; font-weight: 300; color: var(--gold-light); line-height: 1; margin-bottom: .5rem; }
.gift-card-label { font-size: .55rem; letter-spacing: .25em; text-transform: uppercase; color: var(--text-muted-dark); }
.gift-card-divider { width: 100%; height: 1px; background: rgba(201,168,76,.2); margin: 2rem 0; }
.gift-card-tagline { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; font-weight: 300; color: var(--text-muted-dark); }

/* ── HEALTH INTAKE ── */
.intake-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

/* ── FOOTER ── */
footer { background: var(--charcoal); padding: 4.5rem 7rem 2.5rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(201,168,76,.15); margin-bottom: 2rem; }
.footer-brand { font-family: var(--font-display); font-size: 1.9rem; font-weight: 300; color: var(--text-on-dark); margin-bottom: 1rem; }
.footer-brand em { font-style: italic; color: var(--gold-light); }
.footer-tagline { font-size: .76rem; font-weight: 300; line-height: 1.85; color: var(--text-muted-dark); max-width: 270px; }
.footer-col-title { font-size: .55rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.5rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.footer-links a { font-size: .76rem; font-weight: 300; color: var(--text-muted-dark); text-decoration: none; transition: color .25s; }
.footer-links a:hover { color: var(--text-on-dark); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .62rem; letter-spacing: .1em; color: var(--text-muted-dark); }
.footer-social { display: flex; gap: 1rem; }
.social-link { width: 2rem; height: 2rem; border: 1px solid rgba(201,168,76,.3); display: flex; align-items: center; justify-content: center; color: var(--gold-light); text-decoration: none; font-size: .7rem; font-weight: 500; transition: background .25s, border-color .25s, color .25s; }
.social-link:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--btn-white); }

/* ── ADMIN ── */
.admin-body { background: #f0ede8; font-family: var(--font-body); }
.admin-nav { background: var(--charcoal); padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; }
.admin-nav-logo { font-family: var(--font-display); font-size: 1.2rem; color: var(--text-on-dark); }
.admin-nav-logo em { font-style: italic; color: var(--gold-light); }
.admin-nav a { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted-dark); text-decoration: none; transition: color .2s; }
.admin-nav a:hover { color: var(--text-on-dark); }
.admin-wrap { max-width: 1200px; margin: 0 auto; padding: 3rem 2rem; }
.admin-header { margin-bottom: 2.5rem; }
.admin-header h1 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; color: var(--text-on-light); }
.admin-header h1 em { font-style: italic; color: var(--gold-dark); }
.admin-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
.admin-stat-card { background: var(--btn-white); padding: 1.5rem; border-bottom: 3px solid var(--gold); }
.admin-stat-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; color: var(--text-on-light); line-height: 1; }
.admin-stat-label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-mid-light); margin-top: .3rem; }
.admin-table-wrap { background: var(--btn-white); overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-mid-light); padding: 1rem 1.2rem; text-align: left; background: var(--cream); border-bottom: 1px solid rgba(168,135,42,.2); }
.admin-table td { font-size: .8rem; color: var(--text-on-light); padding: 1rem 1.2rem; border-bottom: 1px solid #ede8e0; vertical-align: top; }
.admin-table tr:hover td { background: #f8f4ee; }
.admin-badge { display: inline-block; font-size: .55rem; letter-spacing: .15em; text-transform: uppercase; padding: .25rem .7rem; border-radius: 2px; font-weight: 500; }
.admin-badge.new    { background: #e8f5e9; color: #2e7d32; }
.admin-badge.read   { background: #e3f2fd; color: #1565c0; }
.admin-filter { display: flex; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; align-items: center; }
.admin-filter select, .admin-filter input { background: var(--btn-white); border: 1px solid rgba(168,135,42,.4); padding: .5rem .8rem; font-family: var(--font-body); font-size: .78rem; color: var(--text-on-light); outline: none; }

/* Login page */
.login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--charcoal); }
.login-box { background: var(--cream); padding: 3rem; width: 100%; max-width: 400px; }
.login-logo { font-family: var(--font-display); font-size: 1.6rem; font-weight: 300; color: var(--text-on-light); text-align: center; margin-bottom: 2rem; }
.login-logo em { font-style: italic; color: var(--gold-dark); }

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

/* ── KEYFRAMES ── */
@keyframes fadeUp    { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn    { from { opacity: 0; } to { opacity: 1; } }
@keyframes lightSweep { from { opacity: .6; } to { opacity: 1; } }
@keyframes scrollPulse { 0%, 100% { opacity: .4; } 50% { opacity: 1; } }

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

/* ── 1200px — Large tablet / small laptop ── */
@media (max-width: 1200px) {
  /* Hero: shrink stats right offset so they don't crowd the title */
  .hero-stats { right: 3rem; }
  .hero-content { padding: 0 5rem 6rem; max-width: 680px; }
}

/* ── 1100px ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 220px); }
  .gallery-item:nth-child(1), .gallery-item:nth-child(5) { grid-column: auto; }
  .admin-stats-row { grid-template-columns: repeat(2, 1fr); }

  /* Hero: stats move below the decorative line so they don't overlap title */
  .hero-stats {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    flex-direction: row;
    align-self: flex-start;
    margin: 0 5rem 2rem;
    gap: 2px;
    animation: fadeIn 1.4s var(--ease) .9s both;
  }
  .hero-stat { min-width: auto; flex: 1; }
  .hero-content { padding: 0 5rem 5rem; max-width: 100%; }
  .hero-rule { display: none; }
  .hero-lines::before, .hero-lines::after { display: none; }
}

/* ── 900px — Tablet ── */
@media (max-width: 900px) {
  nav { padding: 1.1rem 2rem; }
  .nav-links, .nav-book { display: none; }
  .nav-hamburger { display: flex; }

  /* ── Hero responsive fix ── */
  .hero {
    justify-content: flex-end;
  }
  .hero-stats {
    position: relative;
    top: auto; right: auto; bottom: auto;
    transform: none;
    flex-direction: row;
    align-self: stretch;
    margin: 0;
    gap: 0;
    padding: 0 1.5rem;
    animation: fadeIn 1.4s var(--ease) .9s both;
    /* Push stats above the content block */
    order: -1;
    margin-bottom: 0;
  }
  .hero-stat {
    flex: 1;
    min-width: 0;
    padding: 1rem 1.2rem;
    border-left: none;
    border-top: 2px solid var(--gold);
    border-bottom: 1px solid rgba(201,168,76,.15);
  }
  .hero-stat-num { font-size: 1.6rem; }
  .hero-stat-label { font-size: .48rem; }

  /* Stack hero content underneath stats */
  .hero-content {
    padding: 1.5rem 1.5rem 5rem;
    max-width: 100%;
    order: 0;
  }
  .hero-title { margin-bottom: 1.25rem; }
  .hero-sub { font-size: .85rem; margin-bottom: 2rem; max-width: 100%; }
  .hero-cta { gap: 1rem; }
  .hero-eyebrow { margin-bottom: 1.25rem; }
  .hero-rule { display: none; }

  /* Sections */
  .services, .testimonials, .booking, .about { padding: 5rem 2rem; }
  .services-grid, .reviews-grid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .booking { grid-template-columns: 1fr; gap: 3rem; }
  .intro-strip { padding: 1.5rem 2rem; }
  footer { padding: 3rem 2rem 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery { padding-bottom: 5rem; }
  .gallery-header { padding: 0 2rem 3rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 180px); }
  .page-hero, .content-section { padding-left: 2rem; padding-right: 2rem; }
  .intake-grid { grid-template-columns: 1fr; }
  .admin-stats-row { grid-template-columns: 1fr 1fr; }
}

/* ── 680px — Large phone / small tablet ── */
@media (max-width: 680px) {
  /* Hero: ensure nothing overflows or overlaps */
  .hero-stats {
    padding: 0 1rem;
    gap: 0;
  }
  .hero-stat {
    padding: .75rem .9rem;
  }
  .hero-stat-num { font-size: 1.35rem; }
  .hero-content {
    padding: 1.25rem 1rem 4.5rem;
  }
  .hero-eyebrow { font-size: .58rem; gap: .8rem; margin-bottom: 1rem; }
  .hero-eyebrow::before { width: 1.5rem; }
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: .85rem;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
  }

  /* Intro strip: two per row */
  .intro-strip { gap: 1rem; justify-content: center; }
  .strip-div { display: none; }
  .strip-item { flex: 0 0 45%; justify-content: center; }

  /* Section headers */
  .section-header { margin-bottom: 3rem; }
}

/* ── 560px — Mobile ── */
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(6, 200px); }
  .form-row { grid-template-columns: 1fr; }
  .admin-stats-row { grid-template-columns: 1fr; }

  /* Hero: tighten further */
  .hero-stats { flex-direction: column; gap: 0; padding: 0; }
  .hero-stat {
    border-top: none;
    border-left: 2px solid var(--gold);
    border-bottom: 1px solid rgba(201,168,76,.12);
    padding: .85rem 1.2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .hero-stat-num { font-size: 1.4rem; }
  .hero-stat-label { margin-top: 0; }
  .hero-content { padding: 1rem 1.25rem 4rem; }

  /* About accent box: scale down so it doesn't overflow */
  .about-accent { width: 130px; height: 130px; right: -1rem; bottom: -1rem; }
  .about-accent-num { font-size: 2.2rem; }

  /* Footer */
  .footer-top { gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .75rem; }
}

/* ── 400px — Very small phones ── */
@media (max-width: 400px) {
  nav { padding: 1rem 1.25rem; }
  .nav-logo { font-size: 1.2rem; }

  .hero-content { padding: 1rem 1rem 3.5rem; }
  .hero-eyebrow { display: none; } /* too cramped, hide decorative line */

  .services { padding: 4rem 1.25rem; }
  .content-section { padding-left: 1.25rem; padding-right: 1.25rem; }
  .page-hero { padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* ── GALLERY PAGE (gallery.php) ── */
/* Layout, masonry grid, and item styles are defined inline in gallery.php */

.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 guide and lightbox styles are defined inline in gallery.php */