:root{
  --pink:#e8a2b4;      /* blush */
  --nude:#f4e7df;
  --gold:#c8a24a;
  --brown:#5a3b2e;
  --black:#0c0c0f;
  --white:#ffffff;

  /* LIGHT THEME SYSTEM */
  --bg: #fbfaf9;
  --bg2: #fff7f4;
  --text: #1a1619;
  --muted: rgba(26,22,25,.72);
  --soft: rgba(26,22,25,.08);
  --line: rgba(26,22,25,.10);

  --card: rgba(255,255,255,.78);
  --shadow: 0 18px 50px rgba(26,22,25,.10);

  --radius: 18px;
  --radius-lg: 26px;
  --container: 1100px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 800px at 15% -10%, rgba(232,162,180,.30), transparent 55%),
    radial-gradient(900px 700px at 90% 10%, rgba(200,162,74,.20), transparent 55%),
    linear-gradient(180deg, var(--bg2) 0%, var(--bg) 55%, #ffffff 100%);
  color: var(--text);
}

a{ color:inherit; text-decoration:none; }
.container{ max-width:var(--container); margin:0 auto; padding:0 16px; }

/* TOPBAR (still slightly dark for contrast, but softer) */
.topbar{
  background: rgba(20,18,22,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px; padding:10px 0;
}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  font-size:14px;
}
.pill-ghost{ cursor:pointer; background: transparent; }
.pill a{ text-decoration:underline; text-decoration-color: rgba(200,162,74,.55); }

/* NAV (light, premium) */
.nav{
  background: rgba(255,255,255,.92);
  color: var(--text);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(26,22,25,.08);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width: 240px;
}

.brand-logo{
  width:100px;
  height:100px;
  border-radius:50%;
  overflow:hidden;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  border:2px solid rgba(232,162,180,.35);
}

.brand-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.brand-logo img{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  object-fit: cover;
  display:block;
}

@media (max-width: 480px){
  .brand-logo img{ width: 48px; height: 48px; }
}

.brand-name{
  font-weight:800;
  font-size:18px;
  letter-spacing:.2px;
  color:#1a1113;
}

.brand-name{ font-weight:900; letter-spacing:.2px; }

.nav-toggle{
  display:inline-flex;
  flex-direction:column;
  gap:6px;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.02);
  align-items:center; justify-content:center;
}
.nav-toggle span{ width:18px; height:2px; background:#19171e; border-radius:2px; }

.nav-links{ display:none; gap:12px; align-items:center; }
.nav-links a{
  padding:10px 10px;
  border-radius:12px;
  font-weight:800;
  color: var(--text);
}
.nav-links a.active{ background: rgba(232,162,180,.22); }

@media (min-width: 860px){
  .nav-toggle{ display:none; }
  .nav-links{ display:flex; }
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius: 16px;
  font-weight:900;
  cursor:pointer;
  border:1px solid transparent;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: linear-gradient(135deg, var(--pink), var(--gold));
  color:#1a1113;
  box-shadow: 0 18px 40px rgba(232,162,180,.18);
}
.btn-outline{
  background: rgba(255,255,255,.70);
  border-color: rgba(26,22,25,.12);
  color: var(--text);
}
.btn-gold{
  background: linear-gradient(135deg, rgba(200,162,74,1), rgba(232,162,180,1));
  color:#1a1113;
}

/* HERO (light, airy; keep image bloom) */
.hero{
  position:relative;
  overflow:hidden;
  padding: 38px 0 28px;
  border-bottom: 1px solid rgba(26,22,25,.08);
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  filter: blur(28px) saturate(1.15);
  opacity:.18;
  transform: scale(1.18);
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(900px 520px at 18% 15%, rgba(232,162,180,.35), transparent 65%),
    radial-gradient(900px 520px at 85% 25%, rgba(200,162,74,.22), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.78));
}
.hero-inner{ position:relative; display:grid; gap: 22px; }
.hero-copy{ padding: 6px 0; }

.kicker{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.70);
  border:1px solid rgba(26,22,25,.10);
  font-weight:900;
  letter-spacing:.6px;
  text-transform: uppercase;
  font-size:12px;
}
.hero h1{
  margin:14px 0 10px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.05;
  color: var(--text);
}
.lead{
  margin:0 0 16px;
  color: var(--muted);
  font-size: 16px;
  max-width: 62ch;
}
.hero-cta{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 14px; }

.hero-badges{ display:flex; gap:10px; flex-wrap:wrap; }
.badge{
  font-weight:900;
  font-size:13px;
  padding:9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(26,22,25,.10);
  color: rgba(26,22,25,.82);
}

.hero-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media (max-width: 860px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-cards{ grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px){
  .hero-inner{ grid-template-columns: 1.25fr .75fr; align-items: center; }
  .hero-cards{ grid-template-columns: 1fr; }
}

.main{ padding: 22px 0 0; }

/* SECTIONS */
.section{ padding: 18px 0 6px; }
.section-head{ display:flex; flex-direction:column; gap:6px; margin-bottom: 14px; }
.section-head h2{ margin:0; font-size: 26px; color: var(--text); }
.section-head p{ margin:0; color: var(--muted); }

.grid2{ display:grid; gap:12px; grid-template-columns: 1fr; }
.grid3{ display:grid; gap:14px; grid-template-columns: 1fr; }
@media(min-width: 760px){
  .grid2{ grid-template-columns: 1fr 1fr; }
  .grid3{ grid-template-columns: repeat(3, 1fr); }
}

/* CARDS */
.card{
  background: var(--card);
  border: 1px solid rgba(26,22,25,.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.img-card{
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid rgba(26,22,25,.10);
  background: rgba(255,255,255,.80);
}
.img-card-bg{
  position:absolute; inset:0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  filter: blur(18px) saturate(1.12);
  transform: scale(1.18);
  opacity:.48;
}
.img-card img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
}

.service-card{
  padding: 14px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.service-card h3{ margin:0; font-size: 18px; color: var(--text); }
.service-card ul{ margin:0; padding-left: 18px; color: var(--muted); }
.service-card .actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 8px; }

.global-carousel{ padding: 18px 0; }
.carousel{
  overflow:hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26,22,25,.10);
  background: rgba(255,255,255,.78);
}
.carousel-track{
  display:flex;
  gap: 10px;
  padding: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.carousel-item{ min-width: 200px; scroll-snap-align: start; }
@media(min-width: 960px){ .carousel-item{ min-width: 260px; } }
.carousel-cta{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 12px; }

.footer-blog{ padding: 22px 0; border-top: 1px solid rgba(26,22,25,.08); }

.post-card{
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid rgba(26,22,25,.10);
  background: rgba(255,255,255,.82);
}
.post-cover{ display:block; border-radius: 0; border: none; }
.post-body{ padding: 14px; }
.post-body h3{ margin: 0 0 6px; font-size: 18px; color: var(--text); }
.post-body p{ margin: 0 0 10px; color: var(--muted); }
.link{ font-weight: 900; color: rgba(144,70,92,.95); }

/* FOOTER */
.footer{
  border-top: 1px solid rgba(26,22,25,.08);
  padding: 26px 0 18px;
  background: rgba(255,255,255,.68);
}
.footer-inner{
  display:grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media(min-width: 860px){
  .footer-inner{ grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand{ font-weight: 900; font-size: 20px; color: var(--text); }
.footer-cta{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 10px; }
.footer-links{ display:flex; flex-direction:column; gap:8px; }
.footer-links a{ color: rgba(26,22,25,.85); font-weight:800; }
.footer-bottom{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(26,22,25,.08);
  color: rgba(26,22,25,.65);
  font-size: 13px;
}

.muted{ color: var(--muted); }
.small{ font-size: 13px; }

/* FORMS (LIGHT + BEAUTY) */
.form{ display:flex; flex-direction:column; gap: 12px; }
label{ display:flex; flex-direction:column; gap:8px; font-weight:900; font-size:14px; color: var(--text); }

input, textarea, select{
  border-radius: 14px;
  border: 1px solid rgba(26,22,25,.14);
  background: rgba(255,255,255,.92);
  color: var(--text);
  padding: 12px 12px;
  outline: none;
  box-shadow: 0 10px 24px rgba(26,22,25,.06);
}
input::placeholder, textarea::placeholder{ color: rgba(26,22,25,.45); }

input:focus, textarea:focus, select:focus{
  border-color: rgba(232,162,180,.70);
  box-shadow: 0 0 0 4px rgba(232,162,180,.20), 0 14px 28px rgba(26,22,25,.08);
}

/* IMPORTANT: dropdown options */
select{ color: var(--text); }
select option, select optgroup{
  background: #ffffff;
  color: #111;
}

/* Floating CTA */
.fab{
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 90;
  border: none;
  padding: 14px 16px;
  border-radius: 999px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  color:#1a1113;
  box-shadow: 0 18px 40px rgba(26,22,25,.18);
  cursor:pointer;
}

/* MODAL (light panel) */
.modal{
  position: fixed;
  inset: 0;
  display:none;
  z-index: 120;
}
.modal[aria-hidden="false"]{ display:block; }
.modal-backdrop{
  position:absolute; inset:0;
  background: rgba(26,22,25,.55);
  backdrop-filter: blur(10px);
}
.modal-panel{
  position:relative;
  width: min(620px, calc(100% - 22px));
  margin: 6vh auto;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(26,22,25,.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 80px rgba(26,22,25,.22);
  padding: 14px;
}
.modal-head{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px; padding: 6px 2px 10px;
}
.modal-head h3{ margin:0; font-size: 18px; color: var(--text); }
.icon-btn{
  border:none;
  background: rgba(26,22,25,.06);
  color: rgba(26,22,25,.92);
  width: 44px; height: 44px;
  border-radius: 14px;
  cursor:pointer;
}

/* =========================
   HERO / PAGE HEADER FIXES
   ========================= */

/* Make hero feel premium, not washed-out */
.hero{
  padding: 44px 0 34px;              /* more breathing space */
  border-bottom: 1px solid rgba(26,22,25,.08);
}

/* Background blur stays, but reduce the "fog" */
.hero::before{
  filter: blur(26px) saturate(1.2);
  opacity: .22;                      /* slightly stronger image presence */
  transform: scale(1.16);
}

/* THIS is the main culprit: the overlay was too strong and whitening everything */
.hero::after{
  background:
    radial-gradient(900px 520px at 18% 15%, rgba(232,162,180,.22), transparent 62%),
    radial-gradient(900px 520px at 85% 25%, rgba(200,162,74,.18), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.62));
}

/* Ensure hero content is aligned + consistent */
.hero-inner{
  grid-template-columns: 1.2fr .8fr; /* consistent desktop layout */
  align-items: center;
  gap: 26px;
}

/* On mobile keep it clean */
@media (max-width: 960px){
  .hero-inner{
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Fix text contrast in hero (your typography was still dark-theme tuned) */
.kicker{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(26,22,25,.12);
  color: rgba(26,22,25,.85);
}

.hero h1{
  color: #171318;
  text-shadow: 0 10px 30px rgba(26,22,25,.08);
}

.lead{
  color: rgba(26,22,25,.74);
  font-weight: 600;
}

/* Make CTA buttons look "alive" on light backgrounds */
.hero .btn-primary{
  box-shadow: 0 18px 46px rgba(232,162,180,.22);
}
.hero .btn-outline{
  background: rgba(255,255,255,.78);
  border-color: rgba(26,22,25,.12);
}

/* Right mosaic column: stop it from floating oddly */
.hero-cards{
  justify-self: end;
  width: min(420px, 100%);
}
@media (max-width: 960px){
  .hero-cards{
    justify-self: start;
    width: 100%;
  }
}

/* Make hero image cards pop (they look faded right now) */
.hero .img-card{
  border-color: rgba(26,22,25,.10);
  background: rgba(255,255,255,.85);
}
.hero .img-card-bg{
  opacity: .38;                      /* reduce blur dominance */
}
.hero .img-card img{
  filter: contrast(1.05) saturate(1.05);
}

/* =========================
   PAGE HEADERS (if you have .page-hero)
   ========================= */
/* If internal pages use a different header class, this keeps it sharp too */
.page-hero{
  position: relative;
  overflow: hidden;
  padding: 44px 0 30px;
  border-bottom: 1px solid rgba(26,22,25,.08);
}
.page-hero::before{
  content:"";
  position:absolute; inset:0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  filter: blur(26px) saturate(1.2);
  opacity: .22;
  transform: scale(1.16);
}
.page-hero::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(900px 520px at 18% 15%, rgba(232,162,180,.22), transparent 62%),
    radial-gradient(900px 520px at 85% 25%, rgba(200,162,74,.18), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.62));
}
.page-hero .container{ position: relative; }
.page-hero h1{ color:#171318; margin:0; }
.page-hero p{ color: rgba(26,22,25,.74); margin: 8px 0 0; }

/* =========================
   FOOTER: KEEP DARK THEME
   ========================= */
.footer{
  background: linear-gradient(180deg, rgba(16,14,18,.98), rgba(10,9,12,.98));
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer,
.footer a,
.footer .footer-brand{
  color: rgba(255,255,255,.92);
}
.footer-links a{ color: rgba(255,255,255,.82); }
.footer-bottom{ color: rgba(255,255,255,.68); border-top-color: rgba(255,255,255,.10); }
.footer .btn-outline{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
}
/* ===== Header & Hero polish (light theme) ===== */

.topbar-left{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.pill-hours{
  opacity:.92;
}

/* Ensure hero structure is consistent everywhere */
.hero .container{ position: relative; }
.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  align-items:center;
}
@media (max-width: 960px){
  .hero-inner{ grid-template-columns: 1fr; gap: 18px; }
}

/* Reduce the “washed-out” overlay */
.hero::after{
  background:
    radial-gradient(900px 520px at 18% 15%, rgba(232,162,180,.20), transparent 62%),
    radial-gradient(900px 520px at 85% 25%, rgba(200,162,74,.16), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.58));
}

/* Make hero images pop */
.hero .img-card-bg{ opacity:.38; }
.hero .img-card img{ filter: contrast(1.06) saturate(1.06); }

/* Small helper line under badges */
.hero-mini{
  margin-top: 10px;
  color: rgba(26,22,25,.72);
  font-weight: 650;
}

/* If your mobile nav uses JS to toggle a class, make sure it reveals */
.nav-links.is-open{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap: 10px;
  padding: 12px 0 6px;
}

/* ===== Mobile nav open state (works with new JS) ===== */
@media (max-width: 859px){
  .nav-links{
    display:none;
    width: 100%;
    padding: 0;
    margin-top: 10px;
  }
  .nav-links.is-open{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap: 8px;
    padding: 12px 0 6px;
  }
  .nav-links a{
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(0,0,0,.03);
    border: 1px solid rgba(0,0,0,.06);
  }
  .nav-links button.btn{
    width: 100%;
    justify-content:center;
  }
}

/* ---------- Mobile nav dropdown (fix overflow) ---------- */
.nav-inner{ position:relative; }

.nav-links{
  /* desktop keeps as-is in your existing CSS */
}

/* Mobile dropdown panel */
@media (max-width: 859px){
  .nav-links{
    position:absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;                 /* <- full width so it never goes off-screen */
    display: none;           /* JS toggles this */
    flex-direction: column;
    align-items: stretch;
    gap: 10px;

    padding: 12px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
    z-index: 200;
  }

  .nav-links a{
    display:block;
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
  }

  .nav-links .btn{
    width: 100%;
    justify-content: center;
  }
}
/* ----------------------------------------------- */

/* ===== Hero: premium collage layout ===== */
/* Desktop: 1 tall image on left, 2 stacked on right */
@media (min-width: 960px){
  .hero-cards{
    width: min(460px, 100%);
    display:grid;
    grid-template-columns: 1.1fr .9fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    justify-self: end;
    align-self: center;
  }
  .hero-cards .img-card:nth-child(1){
    grid-row: 1 / span 2;
    grid-column: 1;
    aspect-ratio: 3 / 4; /* tall */
  }
  .hero-cards .img-card:nth-child(2),
  .hero-cards .img-card:nth-child(3){
    grid-column: 2;
    aspect-ratio: 1 / 1;
  }
}

/* Mobile: keep 3 across but tidy */
@media (max-width: 959px){
  .hero-cards{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

/* Make hero feel sharp (avoid faded look) */
.hero::after{
  background:
    radial-gradient(900px 520px at 18% 15%, rgba(232,162,180,.20), transparent 62%),
    radial-gradient(900px 520px at 85% 25%, rgba(200,162,74,.16), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.58));
}
.hero .img-card-bg{ opacity:.36; }
.hero .img-card img{ filter: contrast(1.06) saturate(1.06); }

/* Hours pill spacing on top bar */
.pill-hours{ opacity:.92; }
.topbar-left{ flex-wrap:wrap; }


/* ===== HERO: remove faded / washed-out look ===== */

/* 1) Make the hero background image show through more */
.hero::before{
  opacity: .32 !important;               /* was ~.22 */
  filter: blur(20px) saturate(1.35) contrast(1.12) !important;
}

/* 2) Reduce the white overlay that’s washing everything out */
.hero::after{
  background:
    radial-gradient(900px 520px at 18% 15%, rgba(232,162,180,.14), transparent 62%),
    radial-gradient(900px 520px at 85% 25%, rgba(200,162,74,.12), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.44), rgba(255,255,255,.01)) !important;
}

/* 3) Force hero text contrast (your h1/lead are still too pale) */
.hero .kicker{
  color: rgba(26,22,25,.92) !important;
  background: rgba(255,255,255,.82) !important;
  border-color: rgba(26,22,25,.12) !important;
}

.hero h1{
  color: #141014 !important;
  font-weight: 950 !important;
  letter-spacing: -0.6px;
  text-shadow: 0 18px 45px rgba(0,0,0,.10);
}

.hero .lead{
  color: rgba(26,22,25,.82) !important;
  font-weight: 650;
}

/* 4) Make hero cards less “foggy” */
.hero .img-card-bg{ opacity: .22 !important; }  /* was ~.36 */
.hero .img-card img{ filter: contrast(1.10) saturate(1.12) !important; }

/* 5) Optional (recommended): a subtle glass panel behind the copy */
.hero-copy{
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(26,22,25,.08);
  box-shadow: 0 18px 55px rgba(26,22,25,.10);
  backdrop-filter: blur(8px);
}

@media (max-width: 960px){
  .hero-copy{ padding: 14px; }
}

/* ===== Footer visibility fixes + logo ===== */
.footer{
  background: linear-gradient(180deg, rgba(16,14,18,.98), rgba(10,9,12,.98));
  color: rgba(255,255,255,.92);
}

.footer .footer-h{
  margin: 0 0 10px;
  color: rgba(255,255,255,.92);
  font-weight: 900;
  letter-spacing: .2px;
}

.footer .footer-muted{
  color: rgba(255,255,255,.78);
  margin: 10px 0 0;
}

.footer .footer-strong{
  color: rgba(255,255,255,.92);
}

.footer .footer-link{
  color: rgba(255,255,255,.86);
  text-decoration: none;
}
.footer .footer-link:hover{
  text-decoration: underline;
  text-decoration-color: rgba(200,162,74,.65);
}

.footer-brand-row{
  display:flex;
  gap:14px;
  align-items:center;
}

.footer-logo{
  width:64px;
  height:64px;
  border-radius:50%;
  overflow:hidden;
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(200,162,74,.35);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}
.footer-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.footer-brand{
  font-weight: 950;
  font-size: 20px;
  color: rgba(255,255,255,.95);
}

.footer-hours{
  margin-top: 2px;
  font-weight: 800;
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-bottom{
  color: rgba(255,255,255,.62);
  border-top: 1px solid rgba(255,255,255,.10);
}

@media (max-width: 640px){
  .footer-logo{ width:56px; height:56px; }
}

/* ===== Lightbox ===== */
.lightbox{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 200;
}
.lightbox[aria-hidden="false"]{ display:block; }

.lightbox-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(8px);
}

.lightbox-panel{
  position: relative;
  width: min(980px, calc(100% - 18px));
  margin: 4vh auto;
  border-radius: 22px;
  background: rgba(12,12,16,.92);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  overflow: hidden;
}

.lightbox-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.lightbox-count{
  color: rgba(255,255,255,.80);
  font-weight: 900;
  font-size: 13px;
}

.lightbox-stage{
  position: relative;
  height: min(78vh, 720px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 10px;
  touch-action: pan-y; /* allow vertical scroll on mobile page, but we handle horizontal swipe */
}

.lightbox-img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
}

.lightbox-nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  font-size: 34px;
  line-height: 0;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.lightbox-nav:hover{ background: rgba(255,255,255,.12); }
.lightbox-nav.prev{ left: 12px; }
.lightbox-nav.next{ right: 12px; }

@media (max-width: 640px){
  .lightbox-panel{ margin: 2.5vh auto; }
  .lightbox-stage{ height: 74vh; }
  .lightbox-nav{
    width: 48px; height: 48px; border-radius: 14px;
  }
}

/* Make clickable cards keep your existing look */
.lightbox-trigger{
  padding:0;
  cursor:pointer;
  appearance:none;
  background: transparent;
  border: none;
  text-align: inherit;
}
.lightbox-trigger:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(232,162,180,.18);
  border-radius: var(--radius-lg);
}

/* Post page layout */
.post-card-wrap{
  padding: 14px;
  overflow: hidden;
}

.post-cover{
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.65);
  margin-bottom: 14px;

  /* controlled height */
  aspect-ratio: 16 / 9;
  max-height: 520px;
}

/* Slightly taller on small screens (still not full-screen) */
@media (max-width: 640px){
  .post-cover{
    aspect-ratio: 4 / 3;
    max-height: 420px;
  }
}

.post-cover-bg{
  position:absolute;
  inset:0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  filter: blur(18px) saturate(1.1);
  transform: scale(1.12);
  opacity: .55;
}

.post-cover-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center;
}

/* Post text */
.post-content{ padding: 2px 4px 6px; }
.post-title{ margin: 0 0 8px; }
.post-excerpt{ margin: 0 0 14px; color: rgba(0,0,0,.65); font-weight: 600; }

/* Ensure blog body text is readable on light theme */
.post-body{
  color: rgba(0,0,0,.78);
  line-height: 1.75;
}
.post-body p{ margin: 0 0 14px; }
.post-body h3, .post-body h4{ margin: 18px 0 10px; }
.post-body a{ text-decoration: underline; text-decoration-thickness: 2px; }

.post-actions{
  margin-top: 16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* =========================
   Mobile-friendly modals
   - panel scrolls, not body
   - header stays visible
   ========================= */

.modal{
  position: fixed;
  inset: 0;
  display:none;
  z-index: 120;
  /* allow iOS momentum scrolling inside panel */
}

.modal[aria-hidden="false"]{ display:block; }

.modal-backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
}

.modal-panel{
  position:relative;
  width: min(620px, calc(100% - 22px));
  margin: 6vh auto;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);

  /* KEY FIX */
  max-height: calc(100vh - 12vh);
  overflow: auto;
  -webkit-overflow-scrolling: touch;

  padding: 14px;
}

.modal-head{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
  padding: 6px 2px 10px;

  /* KEY FIX: keep title/close visible while scrolling */
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  z-index: 2;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.modal-head h3{ margin:0; font-size: 18px; }

/* Improve tap + spacing on small screens */
@media (max-width: 520px){
  .modal-panel{
    width: calc(100% - 16px);
    margin: 10px auto;
    max-height: calc(100vh - 20px);
    padding: 12px;
  }
}

/* Ensure modals are scrollable on mobile */
.modal-panel{
  max-height: calc(100vh - 24px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
