/* ============================================================
   Aura Clinic & Spa
   Layout & composition mirror Seléne Day Spa (selenespa.com.au)
   re-skinned LIGHT with a teal/blue palette per client brief.
   Type: Cormorant Garamond (display/logo) + Jost (UI/body)
   ============================================================ */

:root {
  /* Aura brand palette — from the logo: deep petrol-teal + dusty sage + white */
  --bg:        #F3F7F6;   /* light, faint sage-tinted white */
  --bg-alt:    #E3EDEC;   /* pale sage band */
  --band:      #4A6C75;   /* brand petrol-teal, lightened a touch per client */
  --band-deep: #3B5963;
  --surface:   #FFFFFF;
  --ink:       #2A444C;   /* deep petrol for text */
  --ink-soft:  #51686E;
  --muted:     #88A0A3;
  --line:      #DCE7E6;
  --teal:      #4A6C75;   /* primary action = brand petrol (lightened) */
  --teal-deep: #355058;
  --teal-soft: #C7D8DA;   /* soft sage */
  --sage:      #9DB6BB;   /* brand light sage */
  --shadow:    0 30px 70px -36px rgba(46, 73, 81, 0.34);
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Jost', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---------- Type ---------- */
.display { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; line-height: 1.04; letter-spacing: 0.005em; }
.display em { font-style: italic; color: var(--teal-deep); }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
.eyebrow {
  font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.30em; text-transform: uppercase; color: var(--teal-deep);
}
.label { font-size: 11px; letter-spacing: 0.20em; text-transform: uppercase; color: var(--muted); font-weight: 500; }

/* ---------- Layout ---------- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 56px; }
@media (max-width: 1024px) { .wrap { padding: 0 36px; } }
@media (max-width: 640px)  { .wrap { padding: 0 22px; } }
section.section { padding: 110px 0; }
@media (max-width: 768px) { section.section { padding: 68px 0; } }
.center { text-align: center; }
.section-title { font-size: clamp(34px, 5vw, 62px); }
.section-intro { color: var(--ink-soft); font-size: 17px; line-height: 1.8; max-width: 60ch; }

/* ---------- Buttons (gold→teal pills, like Seléne) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 999px;
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.20em; text-transform: uppercase;
  border: 1px solid var(--teal); cursor: pointer;
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.btn-fill { background: var(--teal); color: #fff; }
.btn-fill:hover { background: var(--teal-deep); border-color: var(--teal-deep); }
.btn-outline { background: transparent; color: var(--teal-deep); }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-light { border-color: rgba(255,255,255,.7); color: #fff; background: rgba(255,255,255,.06); backdrop-filter: blur(4px); }
.btn-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn:active { transform: translateY(1px); }
/* Primary CTA on dark petrol bands: teal-on-teal disappears, so use a solid white pill */
.xband .btn-fill, .closing .btn-fill, .site-footer .btn-fill {
  background: #fff; color: var(--band); border-color: #fff;
}
.xband .btn-fill:hover, .closing .btn-fill:hover, .site-footer .btn-fill:hover {
  background: var(--sage); color: var(--band-deep); border-color: var(--sage);
}

/* ============================================================
   HEADER (centered stacked logo + nav — mirrors Seléne)
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--band);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, padding .3s;
}
.site-header.scrolled { background: rgba(59,89,99,0.97); backdrop-filter: blur(12px) saturate(140%); -webkit-backdrop-filter: blur(12px) saturate(140%); }
.header-inner { display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; line-height: 1; color: #fff; }
.brand-logo { height: 72px; width: auto; display: block; }
@media (max-width: 640px) { .brand-logo { height: 52px; } }
.mainnav { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; }
.mainnav a { font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,.95); position: relative; transition: color .2s; }
.mainnav a:hover, .mainnav a.active { color: #fff; }
.mainnav a.active::after { content:''; position:absolute; left:0; right:0; bottom:-7px; height:1px; background: var(--sage); }
.mainnav a.book { color: #fff; font-weight: 500; border: 1px solid rgba(255,255,255,.6); border-radius: 999px; padding: 8px 18px; }
.mainnav a.book:hover { background: #fff; color: var(--band); border-color: #fff; }
.mainnav a.book.active::after { display: none; }

.nav-toggle { display: none; position: absolute; right: 22px; top: 24px; background: none; border: 0; color: #fff; cursor: pointer; z-index: 70; }
@media (max-width: 900px) {
  .header-inner { padding: 16px 0; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .mainnav { position: fixed; inset: 0 0 0 auto; width: min(82vw, 320px); flex-direction: column;
    align-items: flex-start; justify-content: center; gap: 24px; padding: 40px; background: var(--band-deep);
    transform: translateX(100%); transition: transform .4s cubic-bezier(.16,1,.3,1); box-shadow: var(--shadow); }
  .mainnav.open { transform: translateX(0); }
  .mainnav a { font-size: 15px; }
}

/* ============================================================
   HERO (full-bleed image, copy bottom-left — mirrors Seléne)
   ============================================================ */
.hero {
  position: relative; min-height: 86vh; min-height: 86svh;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  color: #fff;
}
@media (max-width: 768px) { .hero { min-height: 72vh; } }
.hero-bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero::after { content:''; position:absolute; inset:0; z-index: 1;
  /* teal duotone wash (ties warm photo to brand) + strong left-to-right scrim for legibility */
  background:
    linear-gradient(105deg, rgba(33,53,59,.86) 0%, rgba(33,53,59,.55) 42%, rgba(33,53,59,.18) 72%, rgba(33,53,59,.05) 100%),
    linear-gradient(0deg, rgba(33,53,59,.45) 0%, rgba(33,53,59,.10) 38%, rgba(33,53,59,0) 60%),
    rgba(46,73,81,.18); }
.hero-inner { position: relative; z-index: 2; align-self: flex-end; padding-bottom: 92px; max-width: 720px; }
.hero h1 { font-size: clamp(52px, 8vw, 104px); margin: 14px 0 0; }
.hero .hero-eyebrow { color: #fff; opacity: .92; }
.hero-tag { margin-top: 18px; font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; opacity: .9; }
.hero-line { margin-top: 14px; font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; opacity: .95; }
.hero .btn { margin-top: 34px; }

/* ---------- Split hero (portrait video) ---------- */
.hero-split { background: var(--bg); color: var(--ink); }
.hero-split-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; padding: 60px 0 84px; }
@media (max-width: 900px) { .hero-split-inner { grid-template-columns: 1fr; gap: 36px; padding: 36px 0 56px; text-align: center; } }
.hero-split-copy .eyebrow { margin-bottom: 22px; }
.hero-split-copy h1 { font-size: clamp(44px, 6vw, 86px); }
.hero-split-copy .hero-tag { margin-top: 18px; font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); }
.hero-split-copy .hero-line { margin-top: 14px; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px; color: var(--ink-soft); }
.hero-split-copy .btn { margin-top: 34px; }
@media (max-width: 900px) { .hero-split-copy .eyebrow { justify-content: center; } }
.hero-video-frame { justify-self: center; width: 100%; max-width: 430px; }
.hero-video { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 40%; border-radius: 1000px 1000px 12px 12px; box-shadow: var(--shadow); background: var(--bg-alt); }
@media (max-width: 900px) { .hero-video-frame { max-width: 340px; } }

/* ---------- Experience band (dark, 3 pills — mirrors Seléne) ---------- */
.xband { background: var(--band); color: #fff; text-align: center; padding: 56px 0; }
.xband p { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px, 3vw, 32px); font-style: italic; }
.xband .pills { margin-top: 28px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.xband .btn-fill { border-color: var(--teal); }

/* ============================================================
   Treatments checklist (two-col + image — mirrors Seléne)
   ============================================================ */
.checklist-sec { background: var(--surface); }
.checklist-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 900px) { .checklist-grid { grid-template-columns: 1fr; gap: 40px; } }
.checklist-mark { font-family: 'Cormorant Garamond', serif; font-size: 30px; color: var(--teal-deep); letter-spacing: .1em; }
.checklist-grid h2 { font-size: clamp(30px, 4vw, 50px); margin: 14px 0 18px; }
.checklist { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 4px; }
.checklist li { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); font-family: 'Cormorant Garamond', serif; font-size: 22px; }
.checklist li:last-child { border-bottom: 0; }
.checklist .tick { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--teal-soft); color: var(--teal-deep); display: grid; place-items: center; }
.checklist-img { position: relative; aspect-ratio: 3/4; border-radius: 1000px 1000px 8px 8px; background-size: cover; background-position: center; box-shadow: var(--shadow); }

/* Seléne signature image motifs */
.arch { border-radius: 1000px 1000px 8px 8px !important; }
.feature-media.arch { border: 1px solid var(--line); }
.feature-media.pframe { box-shadow: inset 0 0 0 16px #fff, var(--shadow); }
.img-circle { border-radius: 50% !important; aspect-ratio: 1/1 !important; }

/* Two arched cards (Who We Cater To | Gift — mirrors Seléne) */
.cards2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 820px) { .cards2 { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }
.acard { position: relative; display: block; }
.acard .aimg { aspect-ratio: 3/4; border-radius: 1000px 1000px 8px 8px; background-size: cover; background-position: center; box-shadow: var(--shadow); position: relative; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.acard:hover .aimg { transform: translateY(-6px); }
.acard .aimg::after { content: ''; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(180deg, rgba(15,40,36,0) 52%, rgba(15,40,36,.66)); }
.acard .acap { position: absolute; left: 0; right: 0; bottom: 30px; z-index: 2; text-align: center; color: #fff; }
.acard .acap h3 { font-family: 'Cormorant Garamond', serif; font-size: 30px; }
.acard .acap .plus { display: inline-grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; margin-top: 12px; transition: background .25s, color .25s; }
.acard:hover .acap .plus { background: var(--teal); border-color: var(--teal); }

/* ============================================================
   Alternating feature split (text/image — mirrors Seléne)
   ============================================================ */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 900px) { .feature { grid-template-columns: 1fr; gap: 36px; } }
.feature.flip .feature-media { order: 2; }
@media (max-width: 900px) { .feature.flip .feature-media { order: 0; } }
.feature-media { position: relative; aspect-ratio: 5/4; border-radius: 4px; background-size: cover; background-position: center; box-shadow: var(--shadow); }
.feature h2 { font-size: clamp(30px, 4.2vw, 52px); margin-bottom: 20px; }
.feature h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--teal-deep); margin: 24px 0 12px; }
.feature p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.85; margin-bottom: 14px; max-width: 52ch; }

/* ---------- Cater list ---------- */
.cater { background: var(--bg-alt); }
.cater-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 900px) { .cater-grid { grid-template-columns: 1fr; gap: 36px; } }
.cater-media { aspect-ratio: 4/5; border-radius: 4px; background-size: cover; background-position: center; box-shadow: var(--shadow); }
.cater ul { list-style: none; padding: 0; margin: 26px 0 0; columns: 2; column-gap: 32px; }
@media (max-width: 520px) { .cater ul { columns: 1; } }
.cater li { font-family: 'Cormorant Garamond', serif; font-size: 21px; padding: 9px 0; display: flex; align-items: center; gap: 12px; break-inside: avoid; }
.cater li::before { content:''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex: none; }

/* ============================================================
   Brands we stock (3 image cards — client request)
   ============================================================ */
.brands { background: var(--surface); }
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 820px) { .brand-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.brand-card { display: block; }
.brand-card .bimg { aspect-ratio: 4/5; border-radius: 1000px 1000px 8px 8px; background-color: #F1F2F2; background-size: cover; background-repeat: no-repeat; background-position: center; border: 1px solid var(--line); box-shadow: inset 0 0 0 16px #fff, var(--shadow); transition: transform .5s cubic-bezier(.16,1,.3,1); }
.brand-card:hover .bimg { transform: translateY(-6px); }
.brand-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 30px; margin-top: 20px; text-align: center; }
.brand-card p { text-align: center; color: var(--ink-soft); font-size: 14.5px; line-height: 1.7; margin-top: 8px; }
.brand-card .blink { display: block; text-align: center; margin-top: 12px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--teal-deep); }

/* ---------- Gift voucher CTA ---------- */
.gift { background: var(--bg-alt); }
.gift-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 900px) { .gift-grid { grid-template-columns: 1fr; gap: 36px; } }
.gift-media { aspect-ratio: 5/4; border-radius: 4px; background-size: cover; background-position: center; box-shadow: var(--shadow); }
.gift h2 { font-size: clamp(30px, 4.2vw, 50px); margin-bottom: 18px; }
.gift p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.85; max-width: 50ch; margin-bottom: 26px; }

/* ---------- Closing CTA ---------- */
.closing { background: var(--band); color: #fff; text-align: center; padding: 110px 0; }
.closing .eyebrow { color: var(--teal-soft); }
.closing h2 { font-size: clamp(38px, 6vw, 78px); margin: 16px 0 0; }
.closing .caddr { margin-top: 26px; font-family: 'Cormorant Garamond', serif; font-size: 24px; }
.closing .btn { margin-top: 32px; }
.closing .btn-fill { border-color: var(--teal); }

/* ============================================================
   Interior page hero (compact, image band)
   ============================================================ */
.page-hero { position: relative; min-height: 46vh; display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; background-size: cover; background-position: center; }
.page-hero::after { content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(33,53,59,.40), rgba(33,53,59,.62)), rgba(46,73,81,.18); }
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; padding: 80px 24px; }
.page-hero .eyebrow { color: #fff; opacity: .9; }
.page-hero h1 { font-size: clamp(40px, 6vw, 80px); margin: 14px 0 0; }
.page-hero p { margin-top: 18px; font-size: 17px; line-height: 1.7; opacity: .95; max-width: 56ch; margin-left:auto; margin-right:auto; }

/* ---------- Services menu ---------- */
.menu-group + .menu-group { margin-top: 56px; }
.menu-group h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 3vw, 40px); }
.menu-group .gsub { color: var(--muted); font-size: 14px; margin: 4px 0 16px; }
.menu-row { display: grid; grid-template-columns: 1.3fr 2fr auto; gap: 28px; align-items: baseline; padding: 18px 0; border-top: 1px solid var(--line); transition: padding .3s, background .3s; }
.menu-row:hover { padding-left: 14px; padding-right: 14px; background: var(--surface); }
.menu-row .mname { font-family: 'Cormorant Garamond', serif; font-size: 22px; }
.menu-row .mdesc { color: var(--ink-soft); font-size: 14.5px; }
.menu-row .mprice { font-family: 'Cormorant Garamond', serif; font-size: 20px; white-space: nowrap; text-align: right; }
.menu-row .mprice.consult { font-style: italic; color: var(--ink-soft); font-size: 16px; }
@media (max-width: 760px) { .menu-row { grid-template-columns: 1fr; gap: 4px; } .menu-row .mprice { text-align: left; } }

/* Real Kitomba price-list rows (name + price) */
.svc-list { display: grid; }
.svc-row { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; padding: 12px 14px; margin: 0 -14px; border-top: 1px solid var(--line); border-radius: 6px; cursor: default; transition: background .2s ease, transform .2s ease; }
.svc-row:hover { background: var(--surface); transform: translateX(4px); box-shadow: 0 10px 24px -18px rgba(46,73,81,.5); }
.svc-row:hover .sprice { color: var(--teal-deep); }
.menu-group .svc-row:first-of-type { border-top: 1px solid var(--line); }
.svc-row .sname { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--ink); line-height: 1.25; }
.svc-row .sname .badge { font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-deep); background: var(--teal-soft); padding: 2px 7px; border-radius: 4px; margin-left: 8px; vertical-align: middle; }
.svc-row .sprice { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--ink); white-space: nowrap; }
.svc-row .sprice.consult { font-style: italic; font-size: 15px; color: var(--ink-soft); }
/* Category jump-nav */
.cat-nav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 0 auto 8px; }
.cat-nav a { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; transition: all .2s; }
.cat-nav a:hover { background: var(--band); color: #fff; border-color: var(--band); }
.consult-note { background: var(--bg-alt); border-left: 3px solid var(--teal); padding: 14px 18px; border-radius: 4px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; margin-top: 14px; }
.menu-group { scroll-margin-top: 140px; }

/* ---------- Team ---------- */
.team-banner { display: block; width: 100%; height: auto; border-radius: 8px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
@media (max-width: 880px) { .team-grid { grid-template-columns: repeat(2,1fr); gap: 22px; } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; } }
.member { text-align: center; }
.member-photo { aspect-ratio: 4/5; border-radius: 4px; background-size: cover; background-position: center; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.member:hover .member-photo { transform: translateY(-5px); }
.member-name { font-family: 'Cormorant Garamond', serif; font-size: 26px; margin-top: 16px; }
.member-role { color: var(--teal-deep); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; margin-top: 4px; }
.member-bio { color: var(--ink-soft); font-size: 14.5px; line-height: 1.65; margin-top: 12px; }
.member-ig { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; font-size: 12px; letter-spacing: .04em; color: var(--teal-deep); }
.member-ig:hover { color: var(--band-deep); }
.member-ig svg { width: 14px; height: 14px; }
.member-photo.placeholder { display: grid; place-items: center; background: linear-gradient(150deg, var(--bg-alt), var(--teal-soft)); }
.member-photo.placeholder span { font-family: 'Cormorant Garamond', serif; font-size: 72px; color: var(--band); opacity: .45; }

/* ---------- Products ---------- */
.brand-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.fchip { border: 1px solid var(--line); background: var(--surface); border-radius: 999px; padding: 9px 22px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); cursor: pointer; transition: all .25s; }
.fchip.active, .fchip:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; }
@media (max-width: 920px) { .product-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; } }
.product { display: flex; flex-direction: column; gap: 12px; text-align: center; }
.product-img { aspect-ratio: 4/5; border-radius: 4px; background: var(--bg-alt); background-size: cover; background-position: center; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.product:hover .product-img { transform: translateY(-5px); }
.product-brand { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 19px; line-height: 1.3; }
.product-enquire { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-deep); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 44px; } }
.info-block + .info-block { margin-top: 24px; }
.info-block .label { display: block; margin-bottom: 6px; }
.info-block p, .info-block a { font-family: 'Cormorant Garamond', serif; font-size: 21px; color: var(--ink); line-height: 1.4; }
.info-block a:hover { color: var(--teal-deep); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 4px; }
.hours-table td { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 15px; font-family: 'Jost', sans-serif; }
.hours-table td:last-child { text-align: right; color: var(--ink-soft); }
.hours-table tr:last-child td { border-bottom: 0; }
form.contact-form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field textarea, .field select { font-family: 'Jost', sans-serif; font-size: 15px; color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: 4px; padding: 13px 15px; transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft); }
.field .hint { font-size: 12px; color: var(--muted); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.map-embed { border: 0; width: 100%; height: 360px; border-radius: 4px; margin-top: 6px; filter: grayscale(.2) saturate(1.05); }

/* ---------- Placeholder note ---------- */
.ph-note { background: var(--teal-soft); border: 1px dashed var(--teal); border-radius: 6px; padding: 15px 22px; display: flex; gap: 14px; align-items: center; }
.ph-note p { font-size: 14px; color: var(--teal-deep); }

/* ---------- Disclaimer ---------- */
.disclaimer { background: var(--bg-alt); border-top: 1px solid var(--line); padding: 28px 0; }
.disclaimer-inner { display: grid; grid-template-columns: 150px 1fr; gap: 30px; }
@media (max-width: 700px) { .disclaimer-inner { grid-template-columns: 1fr; gap: 8px; } }
.disclaimer p { font-size: 12.5px; line-height: 1.7; color: var(--ink-soft); max-width: 88ch; }

/* ============================================================
   FOOTER (logo + hours + map — mirrors Seléne)
   ============================================================ */
.site-footer { background: var(--band); color: #fff; padding: 80px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr; gap: 36px; } }
.foot-brand { align-items: flex-start; }
.foot-brand .brand-logo { height: 60px; }
.foot-contact { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.foot-contact li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,.85); font-size: 14px; line-height: 1.6; }
.foot-contact li .fi { flex: none; width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.10); color: var(--teal-soft); display: grid; place-items: center; margin-top: 2px; }
.foot-contact a:hover { color: var(--teal-soft); }
.foot-contact .fhours span { display: block; }
.foot-map { border:0; width:100%; height: 300px; border-radius: 8px; filter: grayscale(.25); }
.foot-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; font-size: 12px; color: rgba(255,255,255,.5); }
.foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-links a { color: rgba(255,255,255,.7); letter-spacing: .04em; }
.foot-links a:hover { color: var(--teal-soft); }
@media (max-width: 620px) { .foot-bottom { flex-direction: column; text-align: center; justify-content: center; } .foot-links { justify-content: center; } }
.foot-social { display: flex; gap: 12px; }
.foot-social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; display: grid; place-items: center; color: #fff; transition: background .25s, border-color .25s; }
.foot-social a:hover { background: var(--teal); border-color: var(--teal); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity:1; transform:none; transition:none; } html { scroll-behavior:auto; } .hero-bg-video { display: none; } }

/* ---------- Mockup banner ---------- */
.mockup-banner { position: fixed; bottom: 14px; right: 14px; z-index: 100; background: var(--band); color: #fff; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; padding: 9px 15px; border-radius: 999px; opacity: .82; }
