:root {
  --sky: #cce5f5;
  --skylight: #e8f4fb;
  --deep: #0c1c34;
  --brand: #1a63c8;
  --gold: #f5c518;
  --white: #ffffff;
  --soft: #eaf4fb;
  --muted: #5e7a96;
  --r: 14px;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Work Sans',sans-serif; color:var(--deep); background:var(--white); }

/* ── NAV ── */
nav {
  position:relative; z-index:99;
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(14px);
  border-bottom:1.5px solid #d0e6f4;
  padding:0 48px;
  display:flex; align-items:center; justify-content:center; gap:40px;
  height:68px;
  box-shadow:0 2px 12px rgba(12,28,52,0.06);
}

/* ── OFFER BANNER (sticky, always visible, sits above nav) ── */
#ad-banner {
  display:block; background:var(--brand);
  position:sticky; top:0; z-index:100;
}
.ad-banner-inner {
  max-width:1100px; margin:0 auto; padding:12px 0 12px 20px;
  display:flex; align-items:center; gap:16px;
}
.ad-marquee {
  flex:1; overflow:hidden; white-space:nowrap; -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
}
.ad-marquee-track {
  display:inline-flex; align-items:center; gap:60px;
  animation:ad-scroll 18s linear infinite;
}
.ad-banner:hover .ad-marquee-track,
#ad-banner:hover .ad-marquee-track { animation-play-state:paused; }
@keyframes ad-scroll {
  from { transform:translateX(0); }
  to { transform:translateX(-50%); }
}
.ad-banner-text { color:var(--white); font-weight:600; font-size:.92rem; white-space:nowrap; }
.ad-banner-cta {
  background:var(--gold); color:var(--deep); font-weight:800;
  padding:8px 20px; border-radius:50px; text-decoration:none;
  white-space:nowrap; font-size:.88rem; margin-right:20px; flex-shrink:0;
}
@media (max-width:640px) {
  .ad-banner-text { font-size:.8rem; }
  .ad-banner-inner { padding:10px 0 10px 16px; gap:10px; }
  .ad-banner-cta { margin-right:16px; }
}
.nav-logo { display:flex; align-items:center; gap:12px; }
.nav-logo img { height:42px; display:block; }
.nav-tagline {
  font-family:'Fraunces',serif; font-style:italic;
  font-size:.82rem; font-weight:700; color:var(--brand);
  border-left:1.5px solid #cfe2f2; padding-left:12px;
  white-space:nowrap;
}
@media (max-width:900px) { .nav-tagline { display:none; } }
.nav-links { display:flex; align-items:center; gap:4px; }
.nav-links a {
  color:var(--muted); font-weight:600; font-size:0.875rem;
  text-decoration:none; padding:8px 14px; border-radius:8px;
  transition:all .15s;
}
.nav-links a:hover { background:var(--soft); color:var(--deep); }
.nav-cta {
  background:var(--brand); color:var(--white) !important;
  padding:10px 22px !important; border-radius:8px !important;
  font-weight:700 !important; margin-left:8px;
  box-shadow:0 3px 12px rgba(26,99,200,0.25);
}
.nav-cta:hover { background:#154fa8 !important; }
.nav-dropdown { position:relative; }
.nav-dropdown-toggle {
  background:none; border:none; font-family:inherit; cursor:pointer;
  color:var(--muted); font-weight:600; font-size:0.875rem;
  padding:8px 14px; border-radius:8px; transition:all .15s;
  display:flex; align-items:center; gap:5px;
}
.nav-dropdown-toggle::after { content:'▾'; font-size:.65rem; position:relative; top:1px; }
.nav-dropdown-toggle:hover, .nav-dropdown.open .nav-dropdown-toggle { background:var(--soft); color:var(--deep); }
.nav-dropdown-menu {
  display:none; position:absolute; top:calc(100% + 6px); left:0; transform:none;
  background:var(--white); border:1.5px solid #ddeef8; border-radius:12px;
  box-shadow:0 10px 30px rgba(12,28,52,.15); padding:8px; min-width:230px; z-index:120;
}
.nav-dropdown.dd-right .nav-dropdown-menu { left:auto; right:0; }
.nav-dropdown.open .nav-dropdown-menu { display:block; }
.nav-dropdown-menu a {
  display:block; padding:10px 14px; border-radius:8px;
  color:var(--deep); text-decoration:none; font-size:.85rem; font-weight:600;
  white-space:nowrap;
}
.nav-dropdown-menu a:hover { background:var(--soft); }
.nav-dropdown-menu .ddm-divider { height:1px; background:#e8f1f8; margin:6px 4px; }
.reveal-section { display:none; }

/* ── SERVICE DETAIL PAGES ── */
.breadcrumb {
  padding:14px 72px; font-size:.8rem; color:var(--muted);
  background:var(--soft); border-bottom:1px solid #dceaf5;
}
.breadcrumb a { color:var(--brand); text-decoration:none; font-weight:600; }
.breadcrumb a:hover { text-decoration:underline; }
.page-hero {
  padding:64px 72px 48px; text-align:center;
  background:linear-gradient(160deg, var(--sky) 0%, var(--skylight) 55%, #f4faff 100%);
}
.page-hero h1 {
  font-family:'Fraunces',serif; font-size:clamp(2rem,4vw,3rem);
  font-weight:900; line-height:1.1; color:var(--deep); margin-bottom:14px;
}
.page-hero p { font-size:1.05rem; color:var(--muted); max-width:640px; margin:0 auto 28px; line-height:1.7; }
.service-section { padding:56px 72px; text-align:center; }
.service-section:nth-of-type(even) { background:var(--soft); }
.service-list {
  list-style:none; max-width:720px; margin:0 auto; text-align:left;
  display:grid; grid-template-columns:1fr 1fr; gap:12px 24px;
}
.service-list li { font-size:.92rem; color:var(--deep); line-height:1.5; padding-left:20px; position:relative; }
.service-list li::before { content:'✓'; position:absolute; left:0; color:var(--brand); font-weight:800; }
.service-ptable { max-width:520px; margin:0 auto; width:100%; border-collapse:collapse; font-size:.92rem; }
.service-ptable tr { border-bottom:1px solid #e8f1f8; }
.service-ptable td { padding:12px 6px; color:var(--muted); text-align:left; }
.service-ptable td:last-child { text-align:right; font-weight:700; color:var(--brand); }
@media (max-width:700px) {
  .breadcrumb, .page-hero, .service-section { padding-left:20px; padding-right:20px; }
  .service-list { grid-template-columns:1fr; }
}
.hamburger { display:none; background:none; border:none; cursor:pointer; padding:8px; }
.hamburger span { display:block; width:22px; height:2px; background:var(--deep); margin:4px 0; border-radius:2px; }

/* ── HERO ── */
#home {
  background:
    linear-gradient(160deg, rgba(12,28,52,.82) 0%, rgba(12,28,52,.62) 55%, rgba(26,99,200,.55) 100%),
    url('images/hero-bg.jpg') center/cover no-repeat;
  padding:80px 72px 72px;
  display:flex; flex-direction:column; align-items:center; text-align:center;
  gap:40px;
  min-height:calc(100vh - 68px);
  position:relative; overflow:hidden;
}
.hero-left { display:flex; flex-direction:column; align-items:center; max-width:720px; }
#home::after {
  content:''; position:absolute;
  top:-120px; right:-80px; width:480px; height:480px;
  background:radial-gradient(circle, rgba(245,197,24,.1) 0%, transparent 70%);
  border-radius:50%; pointer-events:none;
}
.hero-eyebrow {
  font-size:.72rem; font-weight:700; letter-spacing:2.5px;
  text-transform:uppercase; color:var(--gold); margin-bottom:14px;
}
.hero-eyebrow::before { content:'★ '; color:var(--gold); }
h1 {
  font-family:'Fraunces',serif;
  font-size:clamp(2.4rem,4.5vw,3.8rem);
  font-weight:900; line-height:1.08; color:var(--white); margin-bottom:18px;
  text-shadow:0 2px 20px rgba(0,0,0,.2);
}
h1 em { color:var(--gold); font-style:italic; }
.hero-sub {
  font-size:1.05rem; color:rgba(255,255,255,.85); line-height:1.72;
  margin:0 auto 32px; max-width:520px;
}
.hero-sub strong { color:var(--white); }
.hero-btns { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:32px; justify-content:center; }
.btn-primary {
  background:var(--brand); color:var(--white);
  padding:15px 30px; border-radius:8px; font-weight:700; font-size:.95rem;
  text-decoration:none; transition:all .18s;
  box-shadow:0 4px 16px rgba(26,99,200,.28); display:inline-block;
}
.btn-primary:hover { background:#154fa8; transform:translateY(-1px); }
.btn-outline {
  border:2px solid var(--white); color:var(--white);
  padding:13px 26px; border-radius:8px; font-weight:600; font-size:.95rem;
  text-decoration:none; transition:all .15s; display:inline-block;
}
.btn-outline:hover { background:var(--white); color:var(--deep); }
.chips { display:flex; gap:8px; flex-wrap:wrap; }
.chip {
  background:var(--white); border:1.5px solid #c8e0f0;
  border-radius:50px; padding:6px 13px;
  font-size:.76rem; font-weight:600; color:var(--deep);
  box-shadow:0 1px 4px rgba(12,28,52,.05);
}
.hero-right {
  background:var(--white); border-radius:20px;
  padding:30px; box-shadow:0 6px 30px rgba(12,28,52,.1);
  border:1.5px solid #ddeef8; z-index:1;
  width:100%; max-width:420px; margin:0 auto; text-align:left;
}
.hero-stat-row {
  display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:20px;
}
.hstat {
  background:var(--soft); border-radius:12px; padding:16px;
  text-align:center; border:1px solid #d0e6f4;
}
.hstat .num {
  font-family:'Fraunces',serif;
  font-size:1.9rem; font-weight:900; color:var(--brand);
}
.hstat .lbl { font-size:.72rem; color:var(--muted); margin-top:2px; }
.hero-reviews { margin-bottom:20px; }
.stars-row { color:#e09000; font-size:1rem; letter-spacing:2px; margin-bottom:4px; }
.review-text { font-size:.82rem; color:var(--muted); font-style:italic; line-height:1.6; margin-bottom:4px; }
.review-author { font-size:.74rem; font-weight:700; color:var(--deep); }
.book-cta-box a {
  display:block; background:var(--gold); color:var(--deep);
  text-align:center; padding:14px; border-radius:12px;
  font-weight:800; font-size:.95rem; text-decoration:none;
  box-shadow:0 4px 14px rgba(245,197,24,.3); transition:all .18s;
}
.book-cta-box a:hover { transform:translateY(-1px); box-shadow:0 6px 18px rgba(245,197,24,.4); }
.book-cta-box .phone {
  text-align:center; font-size:.78rem; color:var(--muted); margin-top:10px;
}
.book-cta-box .phone a { color:var(--brand); font-weight:700; text-decoration:none; }

/* ── TRUST BAR ── */
.trust-bar {
  background:var(--deep); padding:18px 72px;
  display:flex; justify-content:center; gap:40px; flex-wrap:wrap;
}
.trust-bar span {
  color:rgba(255,255,255,.8); font-size:.82rem; font-weight:600;
  display:flex; align-items:center; gap:7px;
}

/* ── SECTIONS ── */
section { padding:72px 72px; text-align:center; }
section:nth-child(even) { background:var(--soft); }
.section-label {
  font-size:.72rem; font-weight:700; letter-spacing:2.5px;
  text-transform:uppercase; color:var(--brand); margin-bottom:8px;
}
h2 {
  font-family:'Fraunces',serif;
  font-size:clamp(1.9rem,3vw,2.7rem);
  font-weight:900; line-height:1.1; color:var(--deep); margin-bottom:10px;
}
.section-sub {
  font-size:.97rem; color:var(--muted); line-height:1.72;
  margin:0 auto 36px; max-width:580px;
}
.section-cta {
  display:inline-block; margin-top:40px;
  background:var(--brand); color:var(--white);
  padding:14px 30px; border-radius:8px; font-weight:700; font-size:.92rem;
  text-decoration:none; transition:all .18s;
  box-shadow:0 4px 16px rgba(26,99,200,.22);
}
.section-cta:hover { background:#154fa8; transform:translateY(-1px); }

/* ── HOW IT WORKS ── */
.steps { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.step {
  background:var(--white); border-radius:var(--r);
  padding:28px 22px; text-align:center;
  border:1.5px solid #ddeef8; box-shadow:0 2px 10px rgba(12,28,52,.05);
}
.step-n {
  width:40px; height:40px; border-radius:50%;
  background:var(--brand); color:var(--white);
  font-weight:800; font-size:.95rem;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 12px;
}
.step h3 { font-size:.97rem; font-weight:800; margin-bottom:6px; }
.step p { font-size:.8rem; color:var(--muted); line-height:1.6; }

/* ── SERVICES ── */
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:28px; }
.scard {
  background:var(--white); border-radius:var(--r);
  padding:28px 22px; border:1.5px solid #ddeef8;
  box-shadow:0 2px 10px rgba(12,28,52,.06); position:relative;
}
.scard.featured { background:var(--deep); border-color:var(--deep); }
.badge {
  position:absolute; top:-11px; left:50%; transform:translateX(-50%);
  background:var(--gold); color:var(--deep);
  font-size:.66rem; font-weight:800; padding:4px 14px;
  border-radius:50px; white-space:nowrap; text-transform:uppercase; letter-spacing:.5px;
}
.scard-emoji { font-size:2rem; display:block; margin-bottom:10px; }
.scard-name { display:block; font-weight:800; font-size:1rem; color:var(--deep); margin-bottom:6px; }
.scard-name:hover { color:var(--brand); }
.scard.featured .scard-name { color:var(--white); }
.scard.featured .scard-name:hover { color:var(--gold); }
.scard-more { display:inline-block; margin-top:14px; font-size:.82rem; font-weight:700; color:var(--brand); text-decoration:none; }
.scard-more:hover { text-decoration:underline; }
.scard.featured .scard-more { color:var(--gold); }
.scard-desc { font-size:.8rem; color:var(--muted); line-height:1.5; margin-bottom:14px; }
.scard.featured .scard-desc { color:rgba(255,255,255,.6); }
.ptable { width:100%; font-size:.78rem; border-collapse:collapse; }
.ptable tr { border-bottom:1px solid #e8f1f8; }
.scard.featured .ptable tr { border-bottom:1px solid rgba(255,255,255,.1); }
.ptable td { padding:5px 0; color:var(--muted); }
.scard.featured .ptable td { color:rgba(255,255,255,.65); }
.ptable td:last-child { text-align:right; font-weight:700; color:var(--brand); }
.scard.featured .ptable td:last-child { color:var(--gold); }
.included {
  background:var(--white); border-radius:var(--r); padding:24px 28px;
  border:1.5px solid #ddeef8; box-shadow:0 2px 8px rgba(12,28,52,.05);
}
.included h3 { font-weight:700; font-size:.9rem; margin-bottom:12px; }
.included-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.included-grid div { font-size:.78rem; color:var(--muted); line-height:1.45; padding-left:14px; position:relative; }
.included-grid div::before { content:''; position:absolute; left:0; top:.5em; width:6px; height:6px; border-radius:50%; background:var(--brand); }

/* ── REVIEWS ── */
.reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-bottom:28px; }
.rcard {
  background:var(--white); border-radius:var(--r);
  padding:22px 20px; border:1.5px solid #ddeef8;
  box-shadow:0 2px 8px rgba(12,28,52,.05);
}
.rcard .stars { color:#e09000; font-size:.9rem; letter-spacing:2px; margin-bottom:8px; }
.rcard p { font-size:.83rem; color:var(--deep); line-height:1.62; font-style:italic; margin-bottom:10px; }
.rcard-author { font-size:.74rem; font-weight:700; color:var(--muted); }

/* ── OWNER ── */
.owner-wrap {
  display:grid; grid-template-columns:360px 1fr; gap:52px; align-items:start;
}
.owner-wrap img {
  width:100%; border-radius:18px;
  box-shadow:0 8px 30px rgba(12,28,52,.13); display:block;
}
.owner-bio {
  background:var(--white); border-radius:var(--r);
  padding:32px; border:1.5px solid #ddeef8;
  box-shadow:0 2px 10px rgba(12,28,52,.06); margin-bottom:18px;
}
.owner-bio h3 {
  font-family:'Fraunces',serif; font-size:1.55rem;
  font-weight:900; color:var(--deep); margin-bottom:14px;
}
.owner-bio p { font-size:.87rem; color:var(--muted); line-height:1.78; margin-bottom:10px; }
.owner-stats {
  display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin-bottom:20px;
}
.ostat {
  background:var(--white); border-radius:10px; padding:16px;
  text-align:center; border:1.5px solid #ddeef8;
}
.ostat .n {
  font-family:'Fraunces',serif;
  font-size:1.8rem; font-weight:900; color:var(--brand);
}
.ostat .n.ntext { font-size:1.15rem; }
.ostat .l { font-size:.72rem; color:var(--muted); margin-top:3px; }

/* ── SERVICE AREAS ── */
.areas-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-bottom:28px; }
.acard {
  background:var(--white); border-radius:var(--r);
  padding:22px 18px; border:1.5px solid #ddeef8;
  box-shadow:0 2px 8px rgba(12,28,52,.05);
}
.acard h3 { font-size:.92rem; font-weight:800; color:var(--deep); margin-bottom:6px; }
.acard p { font-size:.78rem; color:var(--muted); line-height:1.6; margin-bottom:10px; }
.acard-zip { font-size:.7rem; color:var(--brand); font-weight:700; }

.seo-block {
  background:var(--white); border-radius:var(--r);
  padding:28px 32px; border:1.5px solid #ddeef8; margin-bottom:24px;
}
.seo-block h3 { font-size:1rem; font-weight:800; color:var(--deep); margin-bottom:12px; }
.seo-block p { font-size:.84rem; color:var(--muted); line-height:1.78; margin-bottom:10px; }
.kw-chips { display:flex; flex-wrap:wrap; gap:8px; margin-top:16px; }
.kw-chip {
  background:var(--sky); border-radius:8px;
  padding:7px 13px; font-size:.74rem; font-weight:700; color:var(--deep);
}

/* ── FAQ ── */
.faq-list { display:flex; flex-direction:column; gap:7px; max-width:820px; margin:0 auto; text-align:left; }
details {
  background:var(--white); border-radius:10px;
  border:1.5px solid #ddeef8; overflow:hidden;
}
summary {
  padding:15px 20px; cursor:pointer;
  font-weight:700; font-size:.875rem; color:var(--deep);
  list-style:none; display:flex; justify-content:space-between; align-items:center; gap:12px;
  user-select:none;
}
summary::-webkit-details-marker { display:none; }
summary::after {
  content:"+"; font-size:1.2rem; color:var(--brand);
  font-weight:300; flex-shrink:0; transition:transform .2s;
}
details[open] summary::after { transform:rotate(45deg); }
.faq-a { padding:0 20px 15px; font-size:.83rem; color:var(--muted); line-height:1.72; }

/* ── BOOK CTA ── */
#book { background:var(--sky) !important; }
.book-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start;
}
.book-left .eyebrow {
  font-size:.72rem; font-weight:700; letter-spacing:2.5px;
  text-transform:uppercase; color:var(--brand); margin-bottom:8px;
}
.book-left h2 { margin-bottom:12px; }
.book-left p { font-size:.9rem; color:var(--muted); line-height:1.7; margin-bottom:24px; }
.book-btn {
  display:inline-block; background:var(--gold); color:var(--deep);
  padding:16px 34px; border-radius:50px; font-weight:800; font-size:1rem;
  text-decoration:none; box-shadow:0 4px 16px rgba(245,197,24,.32); transition:all .18s;
  margin-bottom:12px;
}
.book-btn:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(245,197,24,.42); }
.call-line { font-size:.82rem; color:var(--muted); }
.call-line a { color:var(--brand); font-weight:700; text-decoration:none; }
.trust-list { display:flex; flex-direction:column; gap:18px; }
.ti { display:flex; gap:14px; align-items:flex-start; }
.ti-icon { font-size:1.4rem; flex-shrink:0; margin-top:2px; }
.ti-text strong { display:block; font-weight:700; font-size:.87rem; margin-bottom:2px; }
.ti-text span { font-size:.78rem; color:var(--muted); line-height:1.5; }

.offer-strip {
  background:var(--deep); border-radius:16px;
  padding:28px 36px; display:flex; align-items:center;
  justify-content:space-between; gap:20px; margin-top:36px;
}
.offer-strip h3 {
  font-family:'Fraunces',serif; font-size:1.3rem;
  color:var(--white); margin-bottom:6px;
}
.offer-strip p { font-size:.84rem; color:rgba(255,255,255,.68); line-height:1.6; max-width:460px; }
.offer-btn {
  background:var(--gold); color:var(--deep);
  padding:12px 24px; border-radius:50px; font-weight:800;
  font-size:.88rem; text-decoration:none; white-space:nowrap; flex-shrink:0;
}

/* ── FOOTER ── */
footer {
  background:var(--deep); color:rgba(255,255,255,.62);
  padding:48px 72px 28px; font-size:.78rem; line-height:1.85;
}
.footer-grid { display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:36px; margin-bottom:32px; }
.footer-logo img { height:38px; filter:brightness(0) invert(1); margin-bottom:12px; }
.footer-tagline {
  font-family:'Fraunces',serif; font-style:italic; font-weight:700;
  font-size:.95rem; color:var(--gold); margin-bottom:10px;
}
.footer-desc { font-size:.78rem; color:rgba(255,255,255,.55); line-height:1.7; }
footer h4 { color:var(--white); font-size:.82rem; font-weight:700; margin-bottom:10px; }
footer a { color:rgba(255,255,255,.65); text-decoration:none; display:block; }
footer a:hover { color:var(--white); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:20px; text-align:center; font-size:.74rem;
}

/* ── MOBILE ── */
@media (max-width:860px) {
  nav { padding:0 20px; height:60px; }
  .nav-links { display:none; flex-direction:column; position:fixed; top:100px; left:0; right:0; background:var(--white); padding:16px; border-bottom:1.5px solid #d0e6f4; box-shadow:0 4px 12px rgba(12,28,52,.1); gap:4px; z-index:98; max-height:calc(100vh - 100px); overflow-y:auto; }
  .nav-links.open { display:flex; }
  .hamburger { display:block; }
  .nav-dropdown-toggle { width:100%; justify-content:space-between; }
  .nav-dropdown-menu, .nav-dropdown.dd-right .nav-dropdown-menu { position:static; transform:none; left:auto; right:auto; box-shadow:none; border:none; padding:0 0 0 14px; margin-top:2px; min-width:0; width:100%; }
  #home { padding:36px 20px 28px; min-height:unset; gap:28px; }
  .hero-sub { max-width:100%; }
  section { padding:44px 20px; }
  .steps { grid-template-columns:1fr; gap:12px; }
  .services-grid { grid-template-columns:1fr; gap:14px; }
  .included-grid { grid-template-columns:repeat(2,1fr); }
  .reviews-grid { grid-template-columns:1fr; }
  .owner-wrap { grid-template-columns:1fr; gap:24px; }
  .owner-stats { grid-template-columns:repeat(2,1fr); }
  .areas-grid { grid-template-columns:1fr; }
  .book-grid { grid-template-columns:1fr; gap:28px; }
  .offer-strip { flex-direction:column; padding:24px 20px; }
  .trust-bar { padding:16px 20px; gap:14px; }
  footer { padding:36px 20px 20px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:24px; }
}

/* ── BOOKING EMBED ── */
.book-intro {
  text-align:center; max-width:640px; margin:0 auto 36px;
}
.book-intro h2 { margin-bottom:12px; }
.avail-badge {
  display:inline-block; background:#fff8e1; border:1.5px solid var(--gold);
  color:var(--deep); font-size:.82rem; font-weight:700; border-radius:30px;
  padding:6px 18px; margin-top:12px; letter-spacing:.2px;
}
.bk-embed-wrap {
  max-width:860px; margin:0 auto 48px;
  border-radius:18px; overflow:hidden;
  box-shadow:0 4px 32px rgba(0,0,0,.10);
}
.bk-embed-wrap iframe { display:block; }
/* ── OLD BOOKING FORM (unused, keep namespace for safety) ── */
.booking-form-wrap {
  background: var(--white); border-radius: 18px;
  padding: 36px 40px; border: 1.5px solid #ddeef8;
  box-shadow: 0 4px 24px rgba(12,28,52,.09);
  margin-bottom: 36px;
}
.booking-form-wrap h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.45rem; font-weight: 900; color: var(--deep); margin-bottom: 6px;
}
.booking-form-wrap .form-sub { font-size:.85rem; color:var(--muted); margin-bottom:24px; }
.form-row { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:20px; }
.form-group { display:flex; flex-direction:column; gap:6px; }
.form-group label { font-size:.78rem; font-weight:700; color:var(--deep); text-transform:uppercase; letter-spacing:.5px; }
.form-group select {
  padding:12px 14px; border-radius:10px;
  border:1.5px solid #c8e0f0; font-size:.9rem;
  color:var(--deep); background:var(--soft);
  font-family:'Work Sans',sans-serif;
  cursor:pointer; appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235e7a96' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 14px center;
  padding-right:36px;
}
.form-group select:focus { outline:none; border-color:var(--brand); background-color:var(--white); }
.price-display {
  background:var(--sky); border-radius:14px;
  padding:22px 28px; display:flex; align-items:center;
  justify-content:space-between; gap:20px; margin-bottom:20px;
  border:1.5px solid #b8d8f0;
}
.price-display .est-label { font-size:.78rem; font-weight:700; color:var(--brand); text-transform:uppercase; letter-spacing:.5px; margin-bottom:4px; }
.price-display .est-price { font-family:'Fraunces',serif; font-size:2.4rem; font-weight:900; color:var(--deep); }
.price-display .est-note { font-size:.75rem; color:var(--muted); margin-top:2px; }
.price-display .btn-book-form {
  background:var(--gold); color:var(--deep);
  padding:15px 30px; border-radius:50px; font-weight:800;
  font-size:1rem; text-decoration:none; white-space:nowrap;
  box-shadow:0 4px 14px rgba(245,197,24,.3); transition:all .18s;
  flex-shrink:0;
}
.price-display .btn-book-form:hover { transform:translateY(-1px); box-shadow:0 6px 18px rgba(245,197,24,.42); }
@media (max-width:860px) {
  .form-row { grid-template-columns:1fr; }
  .price-display { flex-direction:column; text-align:center; }
  .booking-form-wrap { padding:24px 20px; }
}


/* ── META OFFER BLOCK ── */
.meta-offer {
  background: linear-gradient(135deg, #0d2f6b 0%, #1557c0 100%);
  border-radius: 24px;
  padding: 52px 48px;
  margin: 48px auto 0;
  max-width: 820px;
  color: #fff;
  text-align: center;
}
.meta-offer-label {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 99px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.meta-offer-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  margin: 0 0 10px;
  color: #fff;
}
.meta-offer-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin: 0 0 36px;
}
.meta-offer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.meta-offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 20px;
}
.mo-icon { font-size: 1.05rem; font-weight:900; flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.meta-offer-list li div { display: flex; flex-direction: column; gap: 3px; }
.meta-offer-list li strong { font-size: 1rem; color: #fff; }
.meta-offer-list li em { color: rgba(255,255,255,0.7); font-style: normal; }
.meta-offer-list li span { font-size: 0.875rem; color: rgba(255,255,255,0.72); line-height: 1.5; }
.meta-offer-cta {
  display: inline-block;
  background: #fff;
  color: #0d2f6b;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: 14px;
  padding: 20px 36px;
  text-decoration: none;
  line-height: 1.4;
  box-shadow: 0 6px 28px rgba(0,0,0,0.25);
  transition: transform .15s, box-shadow .15s;
}
.meta-offer-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(0,0,0,0.3); }
.meta-offer-cta-sub { display: block; font-size: 0.88rem; font-weight: 600; color: #1557c0; margin-top: 4px; }
.meta-offer-fine { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin: 20px 0 0; }
@media (max-width: 600px) {
  .meta-offer { padding: 36px 24px; }
  .meta-offer-cta { font-size: 0.95rem; padding: 18px 24px; }
}

