/* =========
   Base
   ========= */
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #111827; /* gray-900 */
  background: #ffffff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

:root{
  --brand: #0ea5e9;       /* sky-500 */
  --brand-dark: #0284c7;  /* sky-600 */
  --text-muted: #4b5563;  /* gray-600 */
  --bg-soft: #f8fafc;     /* slate-50 */
  --border: #e5e7eb;      /* gray-200 */
  --accent: #10b981;      /* emerald-500 */
}

.container{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* =========
   Header / Nav
   ========= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffffcc;
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
}
.logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.logo-img{
  height: 60px;
    width: auto;
    display: inline-block;
    border-radius: 6px;
}
.logo-mark{
  width: 28px; height: 28px;
  background: var(--brand);
  border-radius: 6px;
  display: inline-block;
}
.nav-links{
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav-links a{
  color: #111827;
  font-weight: 600;
}
.cta-call{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--brand);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
}
.menu-btn{
  display: none;
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
}
.mobile-open .nav-links{
  display: flex;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 12px;
}

/* =========
   Hero
   ========= */
.hero{
  background: linear-gradient(180deg, #e0f2fe 0%, #ffffff 60%);
  padding: 48px 0 24px;
}
.hero-inner{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}
.eyebrow{
  color: var(--brand-dark);
  font-weight: 800;
  letter-spacing: .4px;
}
.hero h1{
  font-size: 44px;
  line-height: 1.05;
  margin: 8px 0 12px;
}
.hero p{
  color: var(--text-muted);
  font-size: 18px;
}
.hero-cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.stat{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
}
.stat .num{ font-size: 20px; font-weight: 800; }
.stat .cap{ color: var(--text-muted); font-size: 12px; }

.hero-cta{
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid transparent;
}
.btn-primary{ background: var(--brand); color: #fff; }
.btn-primary:hover{ background: var(--brand-dark); }
.btn-outline{ background: #fff; border-color: var(--border); color: #111827; }
.btn-outline:hover{ border-color: #cbd5e1; }

/* =========
   Sections
   ========= */
section{ padding: 42px 0; }
section h2{ font-size: 28px; margin: 0 0 8px; }
section p.lead{ color: var(--text-muted); margin: 0 0 18px; }
.grid-3{ display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.grid-2{ display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.grid-4{ display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}
.badge{ display: inline-block; padding: 4px 8px; background: #eef2ff; color: #3730a3; border-radius: 999px; font-size: 12px; font-weight: 700; }

/* Programs */
.program{ display: flex; flex-direction: column; gap: 10px; }
.program h3{ margin: 0; font-size: 18px; }
.program .price{ color: var(--text-muted); font-weight: 600; }

/* Reviews */
.review{ display: flex; flex-direction: column; gap: 8px; }
.stars{ color: #f59e0b; }
.review cite{ color: var(--text-muted); font-style: normal; }

/* Areas */
.areas{ display: flex; flex-wrap: wrap; gap: 10px; }
.area{ padding: 8px 12px; border:1px solid var(--border); border-radius: 999px; background: #fff; }

/* =========
   Footer
   ========= */
.site-footer{
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 28px 0;
  margin-top: 24px;
  color: #111827;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 16px;
}
.footer-col h4{ margin: 0 0 8px; font-size: 14px; text-transform: uppercase; letter-spacing: .5px; }
.footer-col a{ color: #111827; }
.copyright{
  border-top: 1px solid var(--border);
  margin-top: 18px;
  padding-top: 12px;
  color: var(--text-muted);
  font-size: 14px;
}

/* =========
   Utilities
   ========= */
.muted{ color: var(--text-muted); }
.divider{ height: 1px; background: var(--border); margin: 24px 0; }

/* Generic helpers */
.rounded{ border-radius: 12px; overflow: hidden; }
.shadow-md{ box-shadow: 0 10px 30px rgba(0,0,0,0.08); }

/* =========
   Cookie Banner
   ========= */
.cookie-banner{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 14px;
  display: none;
}
.cookie-banner.show{ display: block; }
.cookie-row{
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-text{ color: #111827; }
.cookie-actions{ display:flex; gap:10px; }
.cookie-btn{
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid var(--border);
  background:#fff;
  cursor: pointer;
}
.cookie-accept{ background: var(--brand); color:#fff; border-color: transparent; }
.cookie-accept:hover{ background: var(--brand-dark); }
.cookie-manage{ background:#fff; }

/* =========
   Map Embed
   ========= */
.map-embed{
  width: 100%;
  height: 320px;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.map-embed--footer{
  height: 260px;
}

/* =========
   Brand Banner
   ========= */
.brand-banner{
  position: relative;
  isolation: isolate;
  margin: 12px 0 0;
  min-height: 340px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brand-banner__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  z-index: -2;
}
.brand-banner::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.45), rgba(0,0,0,0.25));
  z-index: -1;
}
.brand-banner__content{
  text-align: center;
  color: #fff;
}
.brand-logo{
  width: 140px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.35));
  margin: 8px auto 10px;
}
.brand-banner__content h2{
  margin: 6px 0 10px;
  font-size: 26px;
}
.brand-banner .btn-outline{
  background: transparent;
  border-color: #cbd5e1;
  color: #fff;
}
.brand-banner .btn-outline:hover{
  background: rgba(255,255,255,0.08);
  border-color: #e2e8f0;
}
@media (max-width: 640px){
  .brand-logo{ width: 110px; }
  .brand-banner{ min-height: 300px; }
}

/* =========
   Video Background Section
   ========= */
.video-hero{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  min-height: 420px;
  display: grid;
  align-items: center;
}
.video-hero__media{
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-hero::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
}
.video-hero__content{
  padding: 28px 0;
  color: #fff;
  max-width: 720px;
}
.video-hero__content h2{
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.1;
}
.video-hero__content p{
  margin: 0 0 16px;
  color: rgba(255,255,255,0.88);
  font-size: 18px;
}
.video-hero .btn-outline{
  background: transparent;
  border-color: rgba(226,232,240,0.8);
  color: #fff;
}
.video-hero .btn-outline:hover{
  background: rgba(255,255,255,0.10);
  border-color: rgba(226,232,240,1);
}
@media (max-width: 640px){
  .video-hero{ min-height: 360px; }
  .video-hero__content h2{ font-size: 28px; }
  .video-hero__content p{ font-size: 16px; }
}

/* =========
   Gallery images
   ========= */
.gallery-img{
  width: 100%;
  aspect-ratio: 16 / 9;    /* unify ratio */
  height: auto;
  object-fit: cover;       /* crop to fill frame */
  object-position: center; /* default subject position */
  display: block;
}
.gallery-img--focus-top{
  object-position: 50% 30%; /* lift subject for better crop */
}
@media (max-width: 640px){
  .gallery-img{ aspect-ratio: 4 / 3; }
}

/* =========
   Responsive
   ========= */
@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr 1fr; }
  .grid-4{ grid-template-columns: 1fr 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .nav-links{ display: none; }
  .menu-btn{ display: inline-block; }
  .hero h1{ font-size: 34px; }
  .hero-cards{ grid-template-columns: 1fr 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-4{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
}

