/* ═══════════════════════════════════════════════════════
   NORDIC MINIMAL — Design Language #2
   Meridian Wealth Advisors
   
   Feel: clean, restrained, precise
   Palette: snow, cloud, graphite, steel blue
   Type: DM Serif Display + DM Sans
   Motion: subtle, quick, fade-only
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --snow:        #fafafa;
  --cloud:       #f2f2f0;
  --graphite:    #1c1c1e;
  --slate:       #2c2c2e;
  --ash:         #a0a0a0;
  --accent:      #4a6fa5;
  --accent-soft: rgba(74, 111, 165, 0.12);
  --accent-muted:rgba(74, 111, 165, 0.3);
  --text-light:  rgba(255, 255, 255, 0.75);
  --text-body:   #1c1c1e;
  --text-muted:  rgba(28, 28, 30, 0.55);
  --border:      rgba(28, 28, 30, 0.12);

  --serif:  'DM Serif Display', Georgia, serif;
  --sans:   'DM Sans', -apple-system, sans-serif;
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; background: var(--snow); }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text-body);
  background: var(--snow);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--accent-muted); color: var(--graphite); }
img { max-width: 100%; display: block; }

/* ── LOADER ─────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--graphite);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.5rem;
  transition: opacity .8s var(--ease), visibility .8s;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-bar {
  width: 48px; height: 2px;
  background: rgba(255,255,255,0.06);
  position: relative; overflow: hidden; border-radius: 1px;
}
.loader-bar::after {
  content: ''; position: absolute; inset: 0;
  background: var(--accent);
  animation: load-sweep 1.4s ease-in-out infinite;
}
@keyframes load-sweep { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }
.loader-text {
  font-family: var(--sans); font-size: .6rem;
  letter-spacing: .5em; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* ── DEMO BANNER ────────────────────────────────────── */
.demo-banner {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 150;
  background: var(--accent); padding: .5rem 1rem;
  text-align: center;
  font-family: var(--sans); font-size: .65rem; font-weight: 400;
  letter-spacing: .04em; color: #fff;
}
.demo-banner a { color: #fff; text-decoration: underline; margin-left: .3rem; }

/* ── PROGRESS BAR ───────────────────────────────────── */
.progress-bar {
  position: fixed; top: 28px; left: 0;
  height: 2px; background: var(--accent);
  z-index: 200; width: 0; pointer-events: none;
}

/* ── NAVIGATION ─────────────────────────────────────── */
.nav {
  position: fixed; top: 28px; left: 0; width: 100%;
  z-index: 100; padding: 1.6rem clamp(1.5rem, 4vw, 3rem);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled {
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-brand {
  font-family: var(--serif); font-size: 1.2rem;
  color: #fff; text-decoration: none;
  transition: color .3s var(--ease);
}
.nav.scrolled .nav-brand { color: var(--graphite); }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-family: var(--sans); font-size: .7rem; font-weight: 400;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); text-decoration: none;
  transition: color .3s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }
.nav.scrolled .nav-links a { color: rgba(28, 28, 30, 0.5); }
.nav.scrolled .nav-links a:hover { color: var(--graphite); }
.nav.scrolled .nav-links a.active { color: var(--accent); }
.nav-cta-btn {
  font-family: var(--sans); font-size: .65rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .6rem 1.4rem; border-radius: 4px;
  background: var(--accent); color: #fff !important;
  text-decoration: none;
  transition: background .3s var(--ease), transform .2s var(--ease);
}
.nav-cta-btn:hover { background: #3d5f90; transform: translateY(-1px); }
.nav.scrolled .nav-cta-btn { color: #fff !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 102;
}
.hamburger span { display: block; width: 20px; height: 1.5px; background: #fff; transition: all .3s var(--ease); border-radius: 1px; }
.nav.scrolled .hamburger span { background: var(--graphite); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
.hamburger.open span { background: #fff !important; }

/* Mobile overlay — left-aligned, Sanctuary-style */
.mobile-menu {
  position: fixed; inset: 0; z-index: 101;
  background: var(--graphite);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 0 clamp(2rem, 6vw, 3.5rem); gap: .4rem;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a.mob-link {
  font-family: var(--serif); font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 400; line-height: 1.35;
  color: rgba(255,255,255,0.6); text-decoration: none;
  transition: color .3s var(--ease);
}
.mobile-menu a.mob-link:hover, .mobile-menu a.mob-link.active { color: #fff; }
.mob-divider {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 1.2rem 0;
}
.mobile-menu .mob-cta {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 1rem; margin-top: .5rem;
  background: var(--accent); color: #fff !important;
  font-family: var(--sans); font-size: .65rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  text-decoration: none; border-radius: 4px;
  transition: background .3s var(--ease);
}
.mobile-menu .mob-cta:hover { background: #3d5f90; }
.mob-secondary {
  font-family: var(--sans); font-size: .78rem; font-weight: 400;
  color: rgba(255,255,255,0.35) !important; text-decoration: none;
  margin-top: .5rem; transition: color .3s var(--ease);
}
.mob-secondary:hover { color: rgba(255,255,255,0.7) !important; }

/* ── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; height: 100svh; min-height: 680px;
  display: flex; align-items: center;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
  overflow: hidden; background: var(--graphite);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: .35;
  transition: transform 6s var(--ease-out);
}
.hero.loaded .hero-bg img { transform: scale(1.02); }
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
}
.hero-label {
  font-family: var(--sans); font-size: .6rem;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.5rem;
  opacity: 0; transition: opacity .6s var(--ease);
}
.hero.loaded .hero-label { opacity: 1; }
.hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.12; letter-spacing: -.01em;
  color: #fff; margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(12px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.hero.loaded h1 { opacity: 1; transform: translateY(0); }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-family: var(--sans); font-size: .95rem; font-weight: 300;
  line-height: 1.75; color: rgba(255,255,255,0.65);
  max-width: 500px; margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity .8s var(--ease) .2s, transform .8s var(--ease) .2s;
}
.hero.loaded .hero-sub { opacity: 1; transform: translateY(0); }
.hero-actions {
  display: flex; gap: 1rem; align-items: center;
  opacity: 0; transform: translateY(8px);
  transition: opacity .8s var(--ease) .4s, transform .8s var(--ease) .4s;
}
.hero.loaded .hero-actions { opacity: 1; transform: translateY(0); }

/* Hero buttons */
.btn-fill {
  font-family: var(--sans); font-size: .7rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .85rem 2rem; border-radius: 4px;
  background: var(--accent); color: #fff;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .3s var(--ease), transform .2s var(--ease);
}
.btn-fill:hover { background: #3d5f90; transform: translateY(-1px); }
.btn-ghost {
  font-family: var(--sans); font-size: .7rem; font-weight: 400;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .85rem 2rem; border-radius: 4px;
  background: transparent; color: rgba(255,255,255,0.6);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all .3s var(--ease);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: #fff; }

/* ── SECTIONS ───────────────────────────────────────── */
.section {
  padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 4vw, 3rem);
}
.section--snow { background: var(--snow); }
.section--cloud { background: var(--cloud); }
.section--graphite { background: var(--graphite); color: #fff; }
.section--slate { background: var(--slate); color: #fff; }
.container { max-width: min(88%, 1000px); margin: 0 auto; }
.container--narrow { max-width: 640px; margin: 0 auto; }
.container--wide { max-width: min(90%, 1100px); margin: 0 auto; }

/* Section headers */
.sh-label {
  font-family: var(--sans); font-size: .6rem;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.2rem; font-weight: 500;
}
.sh-label--light { color: rgba(74, 111, 165, 0.7); }
.sh-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2; color: var(--text-body);
  margin-bottom: 1rem;
}
.sh-title--light { color: #fff; }
.sh-body {
  font-family: var(--sans); font-size: .9rem; font-weight: 300;
  line-height: 1.75; color: var(--text-muted);
  max-width: 520px;
}
.sh-body--light { color: rgba(255,255,255,0.5); }
.divider-line {
  width: 32px; height: 2px;
  background: var(--accent); margin: 2rem 0;
  border-radius: 1px;
}
.divider-line--center { margin: 2rem auto; }

/* ── GRID LAYOUTS ───────────────────────────────────── */
.grid-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem); align-items: start;
}
.grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2rem);
}
.grid-4 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}

/* ── SERVICE CARDS ──────────────────────────────────── */
.service-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(28, 28, 30, 0.16);
  border-radius: 6px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover {
  border-color: var(--accent-muted);
  box-shadow: 0 8px 32px rgba(74, 111, 165, 0.06);
}
.service-card .sc-icon {
  width: 40px; height: 40px;
  color: var(--accent); margin-bottom: 1.5rem;
}
.service-card h3 {
  font-family: var(--serif); font-size: 1.15rem;
  font-weight: 400; margin-bottom: .8rem;
}
.service-card p {
  font-family: var(--sans); font-size: .85rem;
  font-weight: 300; line-height: 1.7; color: var(--text-muted);
}

/* ── STATS BAR ──────────────────────────────────────── */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 0;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff; margin-bottom: .4rem;
}
.stat-label {
  font-family: var(--sans); font-size: .6rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ── APPROACH STEPS ─────────────────────────────────── */
.steps { list-style: none; counter-reset: step; }
.steps li {
  font-family: var(--sans); font-size: .9rem; font-weight: 300;
  line-height: 1.6; color: rgba(255, 255, 255, 0.65);
  padding: 1.2rem 0; 
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; gap: 1.2rem; align-items: baseline;
}
.steps li::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--sans); font-size: .6rem;
  letter-spacing: .1em; color: var(--accent);
  flex-shrink: 0; min-width: 1.5rem;
}
/* FAQ on dark backgrounds */
.section--graphite .faq-item { border-color: rgba(255,255,255,0.08); }
.section--graphite .faq-q { color: #fff; }
.section--graphite .faq-q::after { color: var(--accent); }
.section--graphite .faq-a { color: rgba(255,255,255,0.55); }

/* ── TESTIMONIAL CARDS ──────────────────────────────── */
.testimonials { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.testi-card {
  padding: 2rem;
  border: 1px solid rgba(28, 28, 30, 0.14); border-radius: 6px;
  transition: border-color .3s var(--ease);
}
.testi-card:hover { border-color: var(--accent-muted); }
.testi-card blockquote {
  font-family: var(--sans); font-size: .88rem; font-weight: 300;
  line-height: 1.7; color: var(--text-body);
  margin-bottom: 1.2rem; opacity: .75;
}
.testi-card cite {
  font-family: var(--sans); font-size: .65rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); font-style: normal;
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  font-family: var(--sans); font-size: .95rem; font-weight: 400;
  padding: 1.3rem 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q::after {
  content: '+'; font-size: 1rem; color: var(--accent);
  transition: transform .25s var(--ease); flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-family: var(--sans); font-size: .85rem; font-weight: 300;
  line-height: 1.75; color: var(--text-muted);
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding .3s var(--ease);
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.3rem; }

/* ── LEAD MAGNET ─────────────────────────────────────── */
.lead-box {
  background: var(--graphite); border-radius: 8px;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}
.lead-box .sh-label { color: rgba(74,111,165,0.7); }
.lead-box h3 {
  font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: #fff; margin-bottom: 1rem; line-height: 1.25;
}
.lead-box p {
  font-family: var(--sans); font-size: .85rem; font-weight: 300;
  line-height: 1.7; color: rgba(255,255,255,0.45);
  max-width: 420px; margin: 0 auto 2rem;
}

/* ── EMAIL INPUT ─────────────────────────────────────── */
.email-row {
  display: flex; gap: 0; max-width: 420px; margin: 0 auto;
  border-radius: 4px; overflow: hidden;
}
.email-row input {
  flex: 1; font-family: var(--sans); font-size: .85rem; font-weight: 300;
  padding: .85rem 1.2rem; border: 1px solid var(--border);
  background: transparent; color: var(--text-body); outline: none;
  border-radius: 4px 0 0 4px;
  transition: border-color .3s var(--ease);
}
.email-row input:focus { border-color: var(--accent); }
.email-row input::placeholder { color: var(--ash); }
.email-row button {
  font-family: var(--sans); font-size: .65rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .85rem 1.5rem;
  background: var(--accent); color: #fff;
  border: 1px solid var(--accent);
  border-radius: 0 4px 4px 0; cursor: pointer;
  transition: background .3s var(--ease);
}
.email-row button:hover { background: #3d5f90; }
/* Dark variant */
.lead-box .email-row input {
  border-color: rgba(255,255,255,0.1);
  color: #fff; background: rgba(255,255,255,0.04);
}
.lead-box .email-row input::placeholder { color: rgba(255,255,255,0.25); }

/* ── CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  position: relative; padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3rem);
  overflow: hidden; text-align: center;
}
.cta-banner-bg { position: absolute; inset: 0; }
.cta-banner-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .2;
}
.cta-banner-overlay {
  position: absolute; inset: 0;
  background: var(--graphite);
}
.cta-banner-content { position: relative; z-index: 2; max-width: 580px; margin: 0 auto; }

/* ── CONTACT FORM ────────────────────────────────────── */
.form { max-width: 520px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--sans); font-size: .6rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase; color: var(--ash);
}
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--sans); font-size: .88rem; font-weight: 300;
  padding: .8rem 1rem; border: 1px solid var(--border);
  border-radius: 4px; background: transparent;
  color: var(--text-body); outline: none;
  transition: border-color .3s var(--ease);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%234a6fa5' opacity='.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.form-submit {
  font-family: var(--sans); font-size: .7rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .9rem 2.5rem; border-radius: 4px;
  background: var(--accent); color: #fff; border: none;
  cursor: pointer; margin-top: 1rem;
  transition: background .3s var(--ease), transform .2s var(--ease);
}
.form-submit:hover { background: #3d5f90; transform: translateY(-1px); }

/* ── FOOTER ──────────────────────────────────────────── */
.footer { background: var(--graphite); padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem) 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem; max-width: min(88%, 1000px); margin: 0 auto;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand h3 {
  font-family: var(--serif); font-size: 1.3rem;
  color: #fff; margin-bottom: .8rem; line-height: 1.3;
}
.footer-brand p {
  font-family: var(--sans); font-size: .8rem; font-weight: 300;
  line-height: 1.7; color: rgba(255,255,255,0.3); margin-bottom: 1.5rem;
}
.footer-brand a.footer-link {
  font-family: var(--sans); font-size: .65rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); text-decoration: none;
  transition: opacity .3s var(--ease);
}
.footer-brand a.footer-link:hover { opacity: .7; }
.footer-col h4 {
  font-family: var(--sans); font-size: .55rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-family: var(--sans); font-size: .78rem; font-weight: 300;
  color: rgba(255,255,255,0.4); text-decoration: none;
  margin-bottom: .5rem; transition: color .2s var(--ease);
}
.footer-col a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom-bar {
  max-width: min(88%, 1000px); margin: 0 auto;
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy {
  font-family: var(--sans); font-size: .6rem; font-weight: 300;
  color: rgba(255,255,255,0.15);
}
.footer-legal-links { display: flex; gap: 1.2rem; }
.footer-legal-links a {
  font-family: var(--sans); font-size: .6rem; font-weight: 300;
  color: rgba(255,255,255,0.2); text-decoration: none;
  transition: color .2s var(--ease);
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.45); }
.footer-disclaimer {
  max-width: min(88%, 1000px); margin: 1.5rem auto 0;
  font-family: var(--sans); font-size: .58rem; font-weight: 300;
  line-height: 1.8; color: rgba(255,255,255,0.12);
}

/* ── REVEALS ─────────────────────────────────────────── */
/* Nordic Minimal: fade-only, no vertical movement */
.fade { opacity: 0; transition: opacity .8s var(--ease); }
.fade.visible { opacity: 1; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; }

/* ── CREDENTIALS PILLS ──────────────────────────────── */
.cred-grid { display: flex; gap: 1rem; flex-wrap: wrap; }
.cred-pill {
  padding: 1.5rem 2rem; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  flex: 1; min-width: 200px; text-align: center;
  transition: border-color .3s var(--ease);
}
.cred-pill:hover { border-color: var(--accent-muted); }
.cred-pill h4 {
  font-family: var(--serif); font-size: 1.1rem; color: #fff;
  margin-bottom: .5rem;
}
.cred-pill p {
  font-family: var(--sans); font-size: .78rem; font-weight: 300;
  line-height: 1.6; color: rgba(255,255,255,0.4);
}

/* ── CONTACT INFO BLOCK ─────────────────────────────── */
.contact-info { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.ci-label {
  font-family: var(--sans); font-size: .6rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ash); margin-bottom: 1rem;
}
.ci-line {
  font-family: var(--sans); font-size: .88rem; font-weight: 300;
  margin-bottom: .4rem;
}
.ci-line a { color: inherit; text-decoration: none; }
.ci-address {
  font-family: var(--sans); font-size: .82rem; font-weight: 300;
  color: var(--ash); margin-top: 1.2rem; line-height: 1.6;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET (max-width: 1024px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max-width: 768px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 580px; padding: 0 1.5rem; }
  .hero:not([style]) { height: auto; min-height: 100svh; padding-top: 6rem; padding-bottom: 3rem; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-sub { font-size: .88rem; }
  .hero-actions { flex-direction: column; gap: .8rem; align-items: flex-start; }

  .section { padding: clamp(3rem, 6vw, 4rem) 1.2rem; }

  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4, .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .testimonials { grid-template-columns: 1fr; }

  .email-row { flex-direction: column; border-radius: 4px; }
  .email-row input { border-radius: 4px; border-right: 1px solid var(--border) !important; }
  .email-row button { border-radius: 4px; }
  .lead-box .email-row input { border-color: rgba(255,255,255,0.1); }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-bar { flex-direction: column; align-items: flex-start; }

  .cred-grid { flex-direction: column; }
  .cred-pill { min-width: unset; }
}

/* ── BOOKING WIDGET ─────────────────────────────────── */
.contact-tabs {
  display: flex; gap: 0; margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.contact-tab {
  font-family: var(--sans); font-size: .7rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .8rem 1.5rem; cursor: pointer;
  color: var(--text-muted); border: none; background: none;
  position: relative; transition: color .3s var(--ease);
}
.contact-tab::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 100%; height: 2px; background: var(--accent);
  transform: scaleX(0); transition: transform .3s var(--ease);
}
.contact-tab.active { color: var(--text-body); }
.contact-tab.active::after { transform: scaleX(1); }
.contact-tab:hover { color: var(--text-body); }

.contact-panel { display: none; }
.contact-panel.active { display: block; }

/* Calendar widget */
.booking-widget {
  background: #fff;
  border: 1px solid rgba(28, 28, 30, 0.12);
  border-radius: 8px;
  overflow: hidden;
}
.bw-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(28, 28, 30, 0.06);
}
.bw-month {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 400;
  color: var(--text-body);
}
.bw-nav { display: flex; gap: .5rem; }
.bw-nav button {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(28, 28, 30, 0.1);
  background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: border-color .2s, color .2s, background .2s;
}
.bw-nav button:hover {
  border-color: var(--accent); color: var(--accent);
  background: rgba(74, 111, 165, 0.04);
}
.bw-body { padding: 0 1.5rem 1.5rem; }
.bw-days-header {
  display: grid; grid-template-columns: repeat(7, 1fr);
  text-align: center; padding: .8rem 0 .4rem;
}
.bw-days-header span {
  font-family: var(--sans); font-size: .55rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted);
}
.bw-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.bw-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: .8rem; font-weight: 400;
  border-radius: 50%; cursor: default; color: rgba(28, 28, 30, 0.25);
  border: none; background: none;
  transition: all .2s var(--ease);
}
.bw-day.available {
  color: var(--text-body); cursor: pointer; font-weight: 500;
}
.bw-day.available:hover {
  background: rgba(74, 111, 165, 0.08); color: var(--accent);
}
.bw-day.selected {
  background: var(--accent); color: #fff !important; font-weight: 600;
}
.bw-day.today {
  border: 1px solid var(--accent);
}
.bw-day.empty { visibility: hidden; }

/* Time slots panel */
.bw-times {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(28, 28, 30, 0.06);
  display: none;
}
.bw-times.visible { display: block; }
.bw-times-label {
  font-family: var(--sans); font-size: .6rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); padding: 1rem 0 .6rem;
}
.bw-slots { display: flex; flex-wrap: wrap; gap: .5rem; }
.bw-slot {
  padding: .55rem 1rem; border-radius: 6px;
  border: 1px solid rgba(28, 28, 30, 0.12);
  font-family: var(--sans); font-size: .78rem; font-weight: 400;
  color: var(--text-body); cursor: pointer; background: none;
  transition: all .2s var(--ease);
}
.bw-slot:hover {
  border-color: var(--accent); color: var(--accent);
  background: rgba(74, 111, 165, 0.04);
}
.bw-slot.selected {
  background: var(--accent); border-color: var(--accent);
  color: #fff; font-weight: 500;
}

/* Confirm area */
.bw-confirm {
  padding: 0 1.5rem 1.5rem;
  display: none;
}
.bw-confirm.visible { display: block; }
.bw-confirm-btn {
  width: 100%; padding: .9rem;
  background: var(--accent); color: #fff; border: none;
  font-family: var(--sans); font-size: .7rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 6px; cursor: pointer;
  transition: background .3s var(--ease);
}
.bw-confirm-btn:hover { background: #3d5f90; }
.bw-confirm-summary {
  font-family: var(--sans); font-size: .78rem; font-weight: 300;
  color: var(--text-muted); text-align: center;
  padding: .6rem 0 1rem; line-height: 1.5;
}
.bw-timezone {
  font-family: var(--sans); font-size: .55rem; font-weight: 400;
  color: rgba(28, 28, 30, 0.3); text-align: center;
  padding: 0 1.5rem .8rem;
}
.bw-timezone svg {
  width: 10px; height: 10px; vertical-align: -1px;
  margin-right: 3px; stroke: currentColor; fill: none;
}
.bw-meeting-type {
  display: flex; align-items: center; gap: .6rem;
  padding: 0 1.5rem .8rem;
}
.bw-meeting-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(74, 111, 165, 0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bw-meeting-icon svg {
  width: 16px; height: 16px; stroke: var(--accent); fill: none;
}
.bw-meeting-info {
  font-family: var(--sans);
}
.bw-meeting-name {
  font-size: .82rem; font-weight: 500; color: var(--text-body);
}
.bw-meeting-duration {
  font-size: .65rem; font-weight: 400; color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — SMALL PHONE (max-width: 480px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero { min-height: 500px; }
  .hero:not([style]) { padding-top: 5rem; }
  .hero h1 { font-size: clamp(1.5rem, 8vw, 2rem); }
  .section { padding: 2.5rem 1rem; }
  .sh-title { font-size: 1.3rem; }
  .stats-bar { padding: 1.5rem 0; }
  .stat-num { font-size: 1.5rem; }
  .nav { padding: 1rem; }
}
