:root, [data-theme="light"] {
  --color-bg: #f7f6f2;
  --color-surface: #f9f8f5;
  --color-surface-2: #fbfbf9;
  --color-surface-offset: #f3f0ec;
  --color-surface-offset-2: #edeae5;
  --color-surface-dynamic: #e6e4df;
  --color-divider: #dcd9d5;
  --color-border: #d4d1ca;
  --color-text: #28251d;
  --color-text-muted: #6a6964;
  --color-text-faint: #bab9b4;
  --color-text-inverse: #f9f8f4;
  --color-primary: #01696f;
  --color-primary-hover: #0c4e54;
  --color-primary-active: #0f3638;
  --color-primary-highlight: #cedcd8;
  --color-primary-soft: #e8f2f0;
  --color-warning: #964219;
  --color-success: #437a22;
  --color-gold: #d19900;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1.25rem;
  --radius-full: 9999px;
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 2px oklch(0.2 0.01 80 / 0.06);
  --shadow-md: 0 4px 12px oklch(0.2 0.01 80 / 0.08);
  --shadow-lg: 0 12px 32px oklch(0.2 0.01 80 / 0.12);
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --font-display: 'Cabinet Grotesk', 'Helvetica Neue', sans-serif;
  --font-body: 'Satoshi', 'Helvetica Neue', sans-serif;
}

[data-theme="dark"] {
  --color-bg: #171614;
  --color-surface: #1c1b19;
  --color-surface-2: #201f1d;
  --color-surface-offset: #1d1c1a;
  --color-surface-offset-2: #22211f;
  --color-surface-dynamic: #2d2c2a;
  --color-divider: #262523;
  --color-border: #393836;
  --color-text: #cdccca;
  --color-text-muted: #898884;
  --color-text-faint: #5a5957;
  --color-text-inverse: #2b2a28;
  --color-primary: #4f98a3;
  --color-primary-hover: #227f8b;
  --color-primary-active: #1a626b;
  --color-primary-highlight: #313b3b;
  --color-primary-soft: #1e2e2f;
  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
  --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
  --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: none; text-size-adjust: none;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-height: 100dvh; line-height: 1.6;
  font-family: var(--font-body) !important;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  color: var(--color-text) !important;
  background-color: var(--color-bg) !important;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display) !important;
  text-wrap: balance; line-height: 1.15; font-weight: 700;
  color: var(--color-text) !important;
}
p, li, figcaption { text-wrap: pretty; max-width: 72ch; }

::selection { background: oklch(from var(--color-primary) l c h / 0.25); color: var(--color-text); }

:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important; scroll-behavior: auto !important;
  }
}

button { cursor: pointer; background: none; border: none; }
a { color: var(--color-primary); transition: color var(--transition-interactive); }
a:hover { color: var(--color-primary-hover); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; }

.skip-link { position: absolute; top: -100px; left: 0; background: var(--color-primary); color: var(--color-text-inverse); padding: 0.75rem 1rem; z-index: 1000; text-decoration: none; border-radius: 0 0 var(--radius-md) 0; }
.skip-link:focus { top: 0; }

:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
}

.container { max-width: var(--content-wide); margin-inline: auto; padding-inline: clamp(1rem, 5vw, 3rem); }
.section { padding-block: clamp(3rem, 8vw, 6rem); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: var(--radius-full);
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 500;
  text-decoration: none; white-space: nowrap; min-height: 44px; border: 1px solid transparent;
  transition: color var(--transition-interactive), background var(--transition-interactive),
              border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}
.btn-primary { background: var(--color-primary); color: var(--color-text-inverse) !important; }
.btn-primary:hover { background: var(--color-primary-hover); box-shadow: var(--shadow-md); color: var(--color-text-inverse) !important; }
.btn-secondary { background: var(--color-surface-2); color: var(--color-text) !important; border-color: var(--color-border); }
.btn-secondary:hover { background: var(--color-surface-offset); border-color: var(--color-text-faint); color: var(--color-text) !important; }
.btn-ghost { color: var(--color-text) !important; border-color: transparent; }
.btn-ghost:hover { color: var(--color-primary) !important; }
.btn-lg { padding: 1rem 2rem; font-size: var(--text-base); }

.pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.25rem 0.75rem; border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: 500;
  background: var(--color-primary-soft); color: var(--color-primary); letter-spacing: 0.02em;
}

/* ============================================
   HEADER (site-wide)
   ============================================ */
.olc-site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in oklch, var(--color-bg) 92%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-divider);
}
.olc-header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-block: 0.75rem; max-width: var(--content-wide);
  margin-inline: auto; padding-inline: clamp(1rem, 5vw, 3rem);
}
.olc-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; color: var(--color-primary); font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); }
.olc-logo svg { width: 36px; height: 36px; flex-shrink: 0; }
.olc-logo-text { color: var(--color-text); }
.olc-nav-desktop { display: flex; align-items: center; gap: 1.5rem; }
.olc-nav-desktop a { text-decoration: none; color: var(--color-text-muted); font-size: var(--text-sm); font-weight: 500; }
.olc-nav-desktop a:hover { color: var(--color-primary); }
.olc-header-actions { display: flex; align-items: center; gap: 0.75rem; }
.olc-header-phone { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; color: var(--color-text); font-size: var(--text-sm); font-weight: 500; }
.olc-header-phone:hover { color: var(--color-primary); }
.olc-header-phone svg { width: 18px; height: 18px; color: var(--color-primary); }
.olc-theme-toggle { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-full); color: var(--color-text-muted); border: 1px solid var(--color-border); background: none; cursor: pointer; }
.olc-theme-toggle:hover { color: var(--color-primary); border-color: var(--color-primary); }
.olc-mobile-menu-btn { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: var(--radius-md); color: var(--color-text); background: none; border: none; cursor: pointer; }
.olc-mobile-nav { display: none; flex-direction: column; gap: 0.25rem; padding: 1rem; border-bottom: 1px solid var(--color-divider); background: var(--color-bg); }
.olc-mobile-nav.open { display: flex; }
.olc-mobile-nav a { text-decoration: none; color: var(--color-text); font-size: var(--text-base); font-weight: 500; padding: 0.75rem 0.5rem; border-radius: var(--radius-md); }
.olc-mobile-nav a:hover { background: var(--color-surface-offset); color: var(--color-primary); }
.olc-mobile-nav .btn { margin-top: 0.5rem; justify-content: center; }

@media (max-width: 900px) {
  .olc-nav-desktop { display: none; }
  .olc-header-phone { display: none; }
  .olc-mobile-menu-btn { display: flex; }
  .olc-header-actions .btn-primary { display: none; }
}

/* ============================================
   CONTENT WRAPPER (for pages using the shell)
   ============================================ */
.olc-content-wrap {
  min-height: 60vh;
  padding-block: clamp(2rem, 5vw, 4rem);
}

/* ============================================
   FOOTER (site-wide)
   ============================================ */
.olc-site-footer { background: var(--color-surface-offset); padding-block: clamp(2rem, 5vw, 3rem) 1.5rem; }
.olc-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; max-width: var(--content-wide); margin-inline: auto; padding-inline: clamp(1rem, 5vw, 3rem); }
@media (max-width: 768px) { .olc-footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
@media (max-width: 480px) { .olc-footer-grid { grid-template-columns: 1fr; } }
.olc-footer-brand p { font-size: var(--text-sm); color: var(--color-text-muted); margin-top: 0.75rem; max-width: 280px; }
.olc-footer-col h4 { font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-muted); margin-bottom: 0.75rem; font-family: var(--font-body) !important; font-weight: 500; }
.olc-footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; list-style: none; padding: 0; margin: 0; }
.olc-footer-col a { text-decoration: none; color: var(--color-text); font-size: var(--text-sm); }
.olc-footer-col a:hover { color: var(--color-primary); }
.olc-footer-bottom { border-top: 1px solid var(--color-divider); padding-top: 1.25rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; max-width: var(--content-wide); margin-inline: auto; padding-inline: clamp(1rem, 5vw, 3rem); }
.olc-footer-bottom p { font-size: var(--text-xs); color: var(--color-text-muted); }
.olc-footer-bottom-links { display: flex; gap: 1rem; }
.olc-footer-bottom-links a { font-size: var(--text-xs); color: var(--color-text-muted); text-decoration: none; }
.olc-footer-bottom-links a:hover { color: var(--color-primary); }

/* ============================================
   HERO (landing page only)
   ============================================ */
.hero { position: relative; overflow: hidden; padding-top: clamp(2rem, 6vw, 4rem); padding-bottom: clamp(3rem, 8vw, 6rem); }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 80% 20%, var(--color-primary-soft), transparent), radial-gradient(ellipse 50% 40% at 20% 80%, color-mix(in oklch, var(--color-primary-soft) 50%, transparent), transparent); z-index: 0; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 768px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-content { max-width: 560px; }
.hero-eyebrow { margin-bottom: 1rem; }
.hero h1 { font-size: var(--text-3xl); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 1rem; color: var(--color-text); }
.hero-subtitle { font-size: var(--text-lg); color: var(--color-text-muted); line-height: 1.5; margin-bottom: 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; }
.hero-trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: var(--text-sm); color: var(--color-text-muted); font-weight: 500; }
.hero-trust-item svg { width: 18px; height: 18px; color: var(--color-primary); flex-shrink: 0; }
.hero-image-wrap { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge { position: absolute; bottom: 1rem; left: 1rem; background: var(--color-surface-2); border-radius: var(--radius-lg); padding: 0.75rem 1rem; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 0.75rem; }
.hero-badge-stars { display: flex; gap: 2px; }
.hero-badge-stars svg { width: 16px; height: 16px; color: var(--color-gold); fill: var(--color-gold); }
.hero-badge-text { font-size: var(--text-xs); color: var(--color-text-muted); line-height: 1.3; }
.hero-badge-text strong { color: var(--color-text); display: block; font-size: var(--text-sm); }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar { background: var(--color-surface); border-block: 1px solid var(--color-divider); padding-block: 2rem; }
.trust-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: var(--content-wide); margin-inline: auto; padding-inline: clamp(1rem, 5vw, 3rem); }
@media (max-width: 768px) { .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
.trust-item { display: flex; align-items: center; gap: 0.75rem; }
.trust-item svg { width: 28px; height: 28px; color: var(--color-primary); flex-shrink: 0; }
.trust-item span { font-size: var(--text-sm); font-weight: 500; color: var(--color-text); }

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-head { text-align: center; max-width: 600px; margin-inline: auto; margin-bottom: clamp(2rem, 5vw, 3rem); }
.section-head .pill { margin-bottom: 0.75rem; }
.section-head h2 { font-size: var(--text-2xl); letter-spacing: -0.01em; margin-bottom: 0.75rem; }
.section-head p { color: var(--color-text-muted); font-size: var(--text-lg); }

/* ============================================
   SERVICES
   ============================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); gap: 1.25rem; }
.service-card { background: var(--color-surface); border: 1px solid var(--color-divider); border-radius: var(--radius-xl); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; transition: box-shadow var(--transition-interactive), border-color var(--transition-interactive); }
.service-card:hover { box-shadow: var(--shadow-md); border-color: var(--color-text-faint); }
.service-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-lg); background: var(--color-primary-soft); color: var(--color-primary); margin-bottom: 0.5rem; }
.service-card h3 { font-size: var(--text-lg); color: var(--color-text) !important; }
.service-price { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--color-primary); }
.service-price small { font-size: var(--text-sm); font-weight: 400; color: var(--color-text-muted); }
.service-card p { color: var(--color-text-muted); font-size: var(--text-sm); flex: 1; }
.service-card a { display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; color: var(--color-primary); font-size: var(--text-sm); font-weight: 500; margin-top: 0.5rem; }
.service-card a:hover { color: var(--color-primary-hover); }

/* ============================================
   WHY US
   ============================================ */
.why-us { background: var(--color-surface); border-block: 1px solid var(--color-divider); }
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 768px) { .why-us-grid { grid-template-columns: 1fr; } }
.why-us-image { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 5 / 4; box-shadow: var(--shadow-lg); }
.why-us-image img { width: 100%; height: 100%; object-fit: cover; }
.why-us-content h2 { font-size: var(--text-2xl); letter-spacing: -0.01em; margin-bottom: 1rem; }
.why-us-content > p { color: var(--color-text-muted); font-size: var(--text-lg); margin-bottom: 1.5rem; }
.why-us-list { display: flex; flex-direction: column; gap: 1.25rem; }
.why-us-item { display: flex; gap: 1rem; }
.why-us-item-icon { width: 44px; height: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-md); background: var(--color-primary-soft); color: var(--color-primary); }
.why-us-item-icon svg { width: 22px; height: 22px; }
.why-us-item h4 { font-size: var(--text-base); font-weight: 700; margin-bottom: 0.25rem; color: var(--color-text) !important; }
.why-us-item p { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ============================================
   PROCESS
   ============================================ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; position: relative; }
@media (max-width: 768px) { .process-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.process-step { text-align: center; position: relative; }
.process-number { width: 56px; height: 56px; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-full); background: var(--color-primary); color: var(--color-text-inverse); font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; position: relative; z-index: 1; }
.process-step h4 { font-size: var(--text-base); font-weight: 700; margin-bottom: 0.5rem; color: var(--color-text) !important; }
.process-step p { font-size: var(--text-sm); color: var(--color-text-muted); }
.process-grid::before { content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 2px; background: var(--color-divider); z-index: 0; }
@media (max-width: 768px) { .process-grid::before { display: none; } }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--color-surface); border-block: 1px solid var(--color-divider); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); gap: 1.25rem; }
.testimonial-card { background: var(--color-surface-2); border: 1px solid var(--color-divider); border-radius: var(--radius-xl); padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.testimonial-stars { display: flex; gap: 2px; }
.testimonial-stars svg { width: 18px; height: 18px; color: var(--color-gold); fill: var(--color-gold); }
.testimonial-card blockquote { font-size: var(--text-base); line-height: 1.6; color: var(--color-text); flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: var(--radius-full); background: var(--color-primary-soft); color: var(--color-primary); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm); flex-shrink: 0; }
.testimonial-author-info strong { font-size: var(--text-sm); display: block; color: var(--color-text); }
.testimonial-author-info span { font-size: var(--text-xs); color: var(--color-text-muted); }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: var(--content-default); margin-inline: auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--color-surface); border: 1px solid var(--color-divider); border-radius: var(--radius-lg); overflow: hidden; transition: border-color var(--transition-interactive); }
.faq-item[open] { border-color: var(--color-primary); }
.faq-item summary { padding: 1rem 1.25rem; font-family: var(--font-body); font-weight: 500; font-size: var(--text-base); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { width: 20px; height: 20px; color: var(--color-primary); flex-shrink: 0; transition: transform var(--transition-interactive); }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item p { padding: 0 1.25rem 1.25rem; color: var(--color-text-muted); font-size: var(--text-sm); }

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--color-surface); border-block: 1px solid var(--color-divider); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h2 { font-size: var(--text-2xl); margin-bottom: 1rem; }
.contact-info > p { color: var(--color-text-muted); font-size: var(--text-lg); margin-bottom: 1.5rem; }
.contact-detail { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; text-decoration: none; color: var(--color-text); }
.contact-detail:hover { color: var(--color-primary); }
.contact-detail svg { width: 22px; height: 22px; color: var(--color-primary); flex-shrink: 0; }
.contact-detail strong { font-size: var(--text-base); display: block; }
.contact-detail span { font-size: var(--text-sm); color: var(--color-text-muted); }
.contact-areas { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-divider); }
.contact-areas h4 { font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-muted); margin-bottom: 0.75rem; font-family: var(--font-body); font-weight: 500; }
.area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-tag { padding: 0.25rem 0.75rem; border-radius: var(--radius-full); background: var(--color-surface-offset); font-size: var(--text-xs); color: var(--color-text-muted); }
.contact-form { background: var(--color-surface-2); border: 1px solid var(--color-divider); border-radius: var(--radius-xl); padding: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: var(--text-sm); font-weight: 500; margin-bottom: 0.5rem; color: var(--color-text); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--color-surface); font-size: var(--text-base); color: var(--color-text); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px var(--color-primary-soft); }
.form-group textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { width: 100%; justify-content: center; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band { background: var(--color-primary); color: var(--color-text-inverse); text-align: center; padding-block: clamp(3rem, 6vw, 5rem); }
.cta-band h2 { font-size: var(--text-2xl); color: var(--color-text-inverse) !important; margin-bottom: 0.75rem; }
.cta-band p { color: color-mix(in oklch, var(--color-text-inverse) 80%, transparent); font-size: var(--text-lg); margin-bottom: 1.5rem; max-width: 500px; margin-inline: auto; }
.cta-band .btn-primary { background: var(--color-text-inverse); color: var(--color-primary) !important; }
.cta-band .btn-primary:hover { background: var(--color-surface-offset); color: var(--color-primary) !important; }
.cta-band .btn-secondary { background: transparent; color: var(--color-text-inverse) !important; border-color: color-mix(in oklch, var(--color-text-inverse) 30%, transparent); }
.cta-band .btn-secondary:hover { background: color-mix(in oklch, var(--color-text-inverse) 10%, transparent); border-color: var(--color-text-inverse); color: var(--color-text-inverse) !important; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   MOBILE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
  .hero-image-wrap { aspect-ratio: 16 / 10; }
  .hero-badge { padding: 0.5rem 0.75rem; }
  .hero-badge-text strong { font-size: var(--text-xs); }
  .hero-badge-text { font-size: 0.625rem; }
}

/* ============================================
   OVERRIDE WORDPRESS / THEME DEFAULTS
   ============================================ */
/* Suppress Hello Biz theme styles leaking through */
body.olc-shell, body.olc-shell * {
  font-family: var(--font-body);
}
body.olc-shell .wp-block-button__link {
  font-family: var(--font-body);
}

/* Make WooCommerce pages look reasonable inside our shell */
.olc-content-wrap .woocommerce {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.olc-content-wrap .woocommerce h2,
.olc-content-wrap .woocommerce h3 {
  font-family: var(--font-display) !important;
  color: var(--color-text) !important;
}
.olc-content-wrap .woocommerce .button,
.olc-content-wrap .woocommerce button.button,
.olc-content-wrap .woocommerce input.button {
  background: var(--color-primary) !important;
  color: var(--color-text-inverse) !important;
  border: none !important;
  border-radius: var(--radius-md) !important;
  padding: 0.75rem 1.5rem !important;
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
}
.olc-content-wrap .woocommerce .button:hover,
.olc-content-wrap .woocommerce button.button:hover,
.olc-content-wrap .woocommerce input.button:hover {
  background: var(--color-primary-hover) !important;
}

/* Amelia plugin overrides */
.olc-content-wrap .am-root {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}

/* Gated booking gate */
.olc-gate {
  background: var(--color-surface) !important;
  border: 1px solid var(--color-divider) !important;
  border-radius: var(--radius-xl) !important;
}
.olc-gate h2 { font-family: var(--font-display) !important; color: var(--color-text) !important; }
.olc-gate a { font-family: var(--font-body) !important; border-radius: var(--radius-md) !important; }