@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400;1,500;1,700&family=Poppins:wght@400;500;600;700&family=Inter:wght@400;500&display=swap');

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; }

/* === TOKENS === */
:root {
  --blue-deep:    #1c3f85;
  --blue-mid:     #046bd2;
  --blue-soft:    #eef3fc;
  --navy:         #0a1e4a;
  --navy-dark:    #060f28;
  --white:        #ffffff;
  --off-white:    #f8fafd;
  --text-dark:    #0a1e4a;
  --text-mid:     #4a5978;
  --text-light:   #8896b3;
  --border:       #dce5f0;
  --gold:         #c9903c;
  --gold-dark:    #a87230;
  --radius:       8px;
  --radius-lg:    16px;
  --shadow-sm:    0 1px 4px rgba(10,30,74,0.08);
  --shadow-md:    0 4px 16px rgba(10,30,74,0.12);
  --shadow-lg:    0 8px 32px rgba(10,30,74,0.18);
  --max-w:        1200px;
  --t:            0.2s ease;
}

/* === BASE === */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
}
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { color: var(--text-mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--blue-mid); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--blue-deep); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 80px 0; }

.section-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 12px;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; margin: 0; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--t);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-mid);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-deep);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--blue-deep);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,144,60,0.35);
}
.btn-outline-gold {
  background: transparent;
  border-color: rgba(201,144,60,0.5);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: rgba(201,144,60,0.1);
  border-color: var(--gold);
}

/* === TOP BAR === */
.top-bar {
  background: var(--navy);
  padding: 9px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color var(--t);
}
.top-bar-item:hover { color: var(--white); }
.top-bar-item svg { width: 13px; height: 13px; flex-shrink: 0; }
.social-links { display: flex; align-items: center; gap: 12px; }
.social-link { color: rgba(255,255,255,0.5); transition: color var(--t); }
.social-link:hover { color: var(--white); }
.social-link svg { width: 15px; height: 15px; }

/* === NAV === */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.logo { text-decoration: none; }
.logo-primary {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-deep);
  line-height: 1.1;
  display: block;
}
.logo-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-menu > li > a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--t);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  background: var(--blue-soft);
  color: var(--blue-deep);
}
.nav-menu > li > a.concierge-link {
  color: var(--gold-dark);
}
.nav-menu > li > a.concierge-link:hover {
  background: #fdf5e8;
  color: var(--gold-dark);
}

/* Dropdown */
.has-drop { position: relative; }
.has-drop > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.5;
  margin-left: 2px;
}
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--t);
  z-index: 200;
}
.has-drop:hover .dropdown,
.has-drop:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 9px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-mid);
  border-radius: 0;
}
.dropdown a:hover {
  background: var(--blue-soft);
  color: var(--blue-deep);
}

.nav-cta { margin-left: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.mobile-nav a.concierge-link { color: var(--gold-dark); }
.mobile-nav .btn { display: flex; justify-content: center; margin-top: 16px; width: 100%; }

/* === HERO === */
.hero {
  background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 40%, var(--blue-deep) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: #7eb8f7; }
.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.portrait-circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid rgba(255,255,255,0.18);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(4,107,210,0.2);
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--blue-deep);
  padding: 18px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 32px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.75; }

/* === ABOUT PREVIEW === */
.about-preview { background: var(--off-white); }
.about-preview .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-portrait {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--blue-deep);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.badge-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.badge-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  opacity: 0.8;
  display: block;
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.about-content .section-label { text-align: left; }
.about-content h2 { margin-bottom: 16px; }
.creds-list { list-style: none; margin: 20px 0 28px; }
.creds-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 0.88rem;
}
.creds-list li:last-child { border-bottom: none; }
.check-icon {
  width: 20px;
  height: 20px;
  background: var(--blue-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon svg { width: 10px; height: 10px; color: var(--blue-deep); }

/* === SERVICES SECTION === */
.services-section { padding: 80px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--t);
}
.service-card:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 24px; height: 24px; color: var(--blue-mid); }
.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.service-card p { font-size: 0.875rem; }

/* === SPECIALTIES === */
.specialties-section { background: var(--blue-soft); }
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.specialty-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--t);
  border: 1px solid transparent;
}
.specialty-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-mid);
  transform: translateY(-2px);
}
.specialty-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.specialty-icon-wrap svg { width: 22px; height: 22px; color: var(--blue-deep); }
.specialty-card h4 { margin-bottom: 8px; }
.specialty-card p { font-size: 0.83rem; }

/* === CONCIERGE BANNER (homepage teaser) === */
.concierge-banner {
  background: linear-gradient(140deg, #040c22 0%, #091840 50%, #0d2460 100%);
  padding: 80px 0;
}
.concierge-banner .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.concierge-banner .section-label { color: var(--gold); }
.concierge-banner h2 { color: var(--white); margin-bottom: 14px; }
.concierge-banner p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.concierge-bullets { list-style: none; margin: 20px 0 0; }
.concierge-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  padding: 5px 0;
}
.concierge-bullets li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.concierge-cta-col { flex-shrink: 0; }

/* === INSURANCE === */
.insurance-section {
  background: var(--off-white);
  padding: 60px 0;
}
.insurance-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ins-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}
.ins-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.8rem;
  margin-top: 16px;
}

/* === HOURS === */
.hours-section { padding: 80px 0; }
.hours-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.hours-table th {
  background: var(--blue-deep);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 16px;
  text-align: left;
}
.hours-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 0.875rem;
  background: var(--white);
}
.hours-table tr:last-child td { border-bottom: none; }
.closed { color: var(--text-light); font-style: italic; }
.hours-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 12px;
  font-style: italic;
}

/* === BOOKING CTA === */
.booking-cta {
  background: var(--blue-mid);
  padding: 64px 0;
  text-align: center;
}
.booking-cta h2 { color: var(--white); margin-bottom: 10px; }
.booking-cta p { color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.booking-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* === FOOTER === */
.site-footer {
  background: var(--navy);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-primary { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.35); }
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.83rem;
  margin-top: 14px;
  line-height: 1.7;
}
.footer-col h4 {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: color var(--t);
}
.footer-col ul li a:hover { color: var(--white); }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,0.4); }
.contact-item a { color: rgba(255,255,255,0.55); }
.contact-item a:hover { color: var(--white); }

.crisis-bar {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin: 16px 0 40px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.crisis-dot {
  width: 32px;
  height: 32px;
  background: #c0392b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.crisis-dot svg { width: 15px; height: 15px; color: white; }
.crisis-bar p {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  margin: 0;
}
.crisis-bar strong { color: var(--white); }
.crisis-bar a { color: #ff9090; font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.77rem; color: rgba(255,255,255,0.35); }
.footer-legal-links { font-size: 0.77rem; color: rgba(255,255,255,0.35); }
.footer-legal-links a { color: rgba(255,255,255,0.35); margin-left: 16px; }
.footer-legal-links a:hover { color: rgba(255,255,255,0.65); }
.gfe-line {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.28);
  text-align: right;
  max-width: 460px;
  line-height: 1.5;
}

/* ===========================================
   ABOUT PAGE
   =========================================== */
.about-hero {
  background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 40%, var(--blue-deep) 100%);
  padding: 72px 0;
  color: var(--white);
}
.about-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-hero h1 { color: var(--white); margin-bottom: 16px; }
.about-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }
.about-hero-img { display: flex; justify-content: flex-end; }
.about-hero-img .portrait-circle { width: 320px; height: 320px; }

.bio-section { padding: 80px 0; }
.bio-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.bio-portrait {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 500px;
}

.philosophy-section { background: var(--blue-soft); }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.philosophy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.philosophy-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.philosophy-icon svg { width: 26px; height: 26px; color: var(--blue-deep); }
.philosophy-card h3 { margin-bottom: 10px; }
.philosophy-card p { font-size: 0.875rem; }

.creds-section { padding: 80px 0; }
.creds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.cred-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.cred-abbr {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-deep);
  display: block;
  margin-bottom: 8px;
}
.cred-full { font-size: 0.875rem; color: var(--text-mid); line-height: 1.5; }
.cred-since { font-size: 0.78rem; color: var(--text-light); margin-top: 6px; font-style: italic; }

/* ===========================================
   SERVICES PAGE
   =========================================== */
.services-page-hero {
  background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 40%, var(--blue-deep) 100%);
  padding: 64px 0;
  text-align: center;
  color: var(--white);
}
.services-page-hero h1 { color: var(--white); margin-bottom: 12px; }
.services-page-hero p { color: rgba(255,255,255,0.75); max-width: 540px; margin: 0 auto; }

.service-block { padding: 80px 0; border-bottom: 1px solid var(--border); }
.service-block:nth-child(even) { background: var(--off-white); }
.service-block .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-block:nth-child(odd) .service-img { order: 2; }
.service-block:nth-child(odd) .service-text { order: 1; }
.service-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  max-height: 380px;
}
.service-text .section-label { text-align: left; }
.service-text h2 { margin-bottom: 14px; }
.service-expect {
  margin-top: 20px;
  padding: 20px;
  background: var(--blue-soft);
  border-radius: var(--radius);
  border-left: 3px solid var(--blue-mid);
}
.service-expect h4 { font-size: 0.85rem; color: var(--blue-deep); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.service-expect p { font-size: 0.875rem; margin: 0; }

/* ===========================================
   SPECIALTIES PAGE
   =========================================== */
.specialties-page-hero {
  background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 40%, var(--blue-deep) 100%);
  padding: 64px 0;
  text-align: center;
  color: var(--white);
}
.specialties-page-hero h1 { color: var(--white); margin-bottom: 12px; }
.specialties-page-hero p { color: rgba(255,255,255,0.75); max-width: 540px; margin: 0 auto; }

.specialty-block { padding: 80px 0; border-bottom: 1px solid var(--border); }
.specialty-block:nth-child(even) { background: var(--off-white); }
.specialty-block .container {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
}
.specialty-num {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--blue-soft);
  line-height: 1;
  user-select: none;
}
.specialty-block h2 { margin-bottom: 12px; }
.approach-box {
  margin-top: 20px;
  padding: 20px;
  background: var(--blue-soft);
  border-radius: var(--radius);
  border-left: 3px solid var(--blue-mid);
}
.approach-box h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--blue-deep); margin-bottom: 8px; }
.approach-box p { font-size: 0.875rem; margin: 0; }

/* ===========================================
   CONCIERGE PAGE -- SPECIAL
   =========================================== */
body.concierge-page { background: #060f28; }

.conc-hero {
  background: linear-gradient(160deg, #030810 0%, #0a1835 45%, #0e2560 100%);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.conc-orb-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4,107,210,0.12) 0%, transparent 70%);
  top: -250px;
  right: -150px;
  pointer-events: none;
}
.conc-orb-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,144,60,0.08) 0%, transparent 70%);
  bottom: -200px;
  left: -100px;
  pointer-events: none;
}
.conc-hero .container {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.conc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,144,60,0.1);
  border: 1px solid rgba(201,144,60,0.25);
  border-radius: 40px;
  padding: 7px 20px;
  margin-bottom: 36px;
}
.conc-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.conc-eyebrow span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.conc-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 24px;
  line-height: 1.12;
}
.conc-hero h1 .line2 {
  display: block;
  color: #7eb8f7;
  font-size: 0.75em;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.conc-hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.conc-hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* Differentiators bar */
.conc-diff {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
}
.conc-diff .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.diff-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 28px;
  color: rgba(255,255,255,0.65);
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.diff-item:last-child { border-right: none; }
.diff-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* Problem section */
.conc-problem {
  background: #08101e;
  padding: 96px 0;
}
.conc-problem .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.conc-problem-img img {
  border-radius: var(--radius-lg);
  width: 100%;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.conc-problem .section-label { color: var(--gold); }
.conc-problem h2 { color: var(--white); margin-bottom: 18px; }
.conc-problem p { color: rgba(255,255,255,0.65); }
.pain-list { list-style: none; margin-top: 28px; }
.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}
.pain-list li:last-child { border-bottom: none; }
.pain-n {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201,144,60,0.12);
  border: 1px solid rgba(201,144,60,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

/* Who it's for */
.conc-who {
  background: #060f28;
  padding: 96px 0;
}
.conc-who .section-header { margin-bottom: 16px; }
.conc-who .section-label { color: var(--gold); }
.conc-who h2 { color: var(--white); }
.conc-who-sub {
  color: rgba(255,255,255,0.5);
  text-align: center;
  max-width: 540px;
  margin: 0 auto 48px;
  font-size: 0.95rem;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.who-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: all 0.25s ease;
}
.who-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(201,144,60,0.3);
}
.who-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,144,60,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.who-icon svg { width: 18px; height: 18px; color: var(--gold); }
.who-card h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 6px; }
.who-card p { color: rgba(255,255,255,0.45); font-size: 0.82rem; margin: 0; }

/* What's different */
.conc-different {
  background: #08101e;
  padding: 96px 0;
}
.conc-different .section-label { color: var(--gold); }
.conc-different h2 { color: var(--white); margin-bottom: 48px; }
.different-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.diff-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.diff-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.diff-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(201,144,60,0.2);
  transform: translateY(-2px);
}
.diff-card-num {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,144,60,0.1);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.diff-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.diff-card p { color: rgba(255,255,255,0.5); font-size: 0.875rem; margin: 0; line-height: 1.65; }

/* Services included */
.conc-services {
  background: #060f28;
  padding: 96px 0;
}
.conc-services .section-label { color: var(--gold); }
.conc-services h2 { color: var(--white); margin-bottom: 48px; }
.conc-svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.conc-svc-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background var(--t);
}
.conc-svc-item:hover { background: rgba(255,255,255,0.03); }
.conc-svc-item:nth-child(even) { border-right: none; }
.conc-svc-item:nth-last-child(-n+2) { border-bottom: none; }
.svc-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201,144,60,0.1);
  border: 1px solid rgba(201,144,60,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.svc-check svg { width: 14px; height: 14px; color: var(--gold); }
.conc-svc-item h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.conc-svc-item p { color: rgba(255,255,255,0.45); font-size: 0.82rem; margin: 0; }

/* Process */
.conc-process {
  background: #08101e;
  padding: 96px 0;
}
.conc-process .section-label { color: var(--gold); }
.conc-process h2 { color: var(--white); margin-bottom: 48px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.66% + 16px);
  width: calc(66.66% - 32px);
  height: 1px;
  background: rgba(201,144,60,0.25);
}
.process-step { text-align: center; }
.step-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(201,144,60,0.1);
  border: 2px solid rgba(201,144,60,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.process-step h3 { color: var(--white); font-size: 1rem; margin-bottom: 10px; }
.process-step p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin: 0; }

/* Inquiry form */
.conc-form-section {
  background: linear-gradient(160deg, #060f28 0%, #030810 100%);
  padding: 100px 0;
}
.conc-form-wrapper { max-width: 700px; margin: 0 auto; }
.conc-form-section .section-label { color: var(--gold); text-align: center; }
.conc-form-section h2 { color: var(--white); text-align: center; margin-bottom: 10px; }
.conc-form-intro {
  color: rgba(255,255,255,0.55);
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 48px;
}
.conc-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 52px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--t), background var(--t);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,144,60,0.45);
  background: rgba(255,255,255,0.07);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.22); }
.form-group select { color: rgba(255,255,255,0.65); cursor: pointer; }
.form-group select option { background: #0a1428; color: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-privacy {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  margin-bottom: 28px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.025);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
}
.form-privacy strong { color: rgba(255,255,255,0.55); }
/* Passcode block */
.form-passcode-block {
  background: rgba(201,144,60,0.06);
  border: 1px solid rgba(201,144,60,0.2);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 20px;
}
.passcode-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.passcode-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201,144,60,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.passcode-icon svg { width: 14px; height: 14px; color: var(--gold); }
.passcode-header strong {
  display: block;
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 3px;
}
.passcode-header span {
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
}
.passcode-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,144,60,0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--t);
  margin-bottom: 12px;
}
.passcode-input:focus { border-color: rgba(201,144,60,0.5); }
.passcode-input::placeholder { color: rgba(255,255,255,0.2); font-style: italic; }
.passcode-note {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  margin: 0;
}
.passcode-note em { color: rgba(255,255,255,0.55); font-style: normal; }

/* Architecture note */
.form-architecture-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.arch-icon {
  flex-shrink: 0;
  margin-top: 1px;
}
.arch-icon svg { width: 15px; height: 15px; color: rgba(255,255,255,0.3); }
.arch-text {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
}
.arch-text strong {
  display: block;
  color: rgba(255,255,255,0.5);
  font-family: 'Poppins', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.btn-form-submit {
  width: 100%;
  padding: 17px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}
.btn-form-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,144,60,0.3);
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 32px;
}
.form-success.visible { display: block; }
.form-success .success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201,144,60,0.15);
  border: 2px solid rgba(201,144,60,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success .success-icon svg { width: 28px; height: 28px; color: var(--gold); }
.form-success h3 { color: var(--white); margin-bottom: 10px; }
.form-success p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin: 0; }

/* Concierge footer */
.conc-footer { background: #020609; }
.conc-footer .footer-bottom { border-top-color: rgba(255,255,255,0.06); }

/* ===========================================
   CONCIERGE GATE
   =========================================== */
.gate-panel {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  text-align: center;
}
.gate-lock-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201,144,60,0.1);
  border: 1px solid rgba(201,144,60,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.gate-lock-icon svg { width: 22px; height: 22px; color: var(--gold); }
.gate-code-section { max-width: 420px; margin: 0 auto; }
.gate-heading {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.gate-subtext {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-bottom: 18px;
  line-height: 1.55;
}
.gate-code-row { display: flex; gap: 10px; }
.gate-code-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  outline: none;
  transition: border-color var(--t), background var(--t);
}
.gate-code-input:focus { border-color: rgba(201,144,60,0.45); background: rgba(255,255,255,0.08); }
.gate-code-input::placeholder { text-transform: none; letter-spacing: 0; color: rgba(255,255,255,0.25); font-weight: 400; }
.gate-verify-btn {
  padding: 12px 20px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t);
  white-space: nowrap;
}
.gate-verify-btn:hover { background: var(--gold-dark); }
.gate-code-error {
  display: none;
  color: #ff8a8a;
  font-size: 0.78rem;
  margin-top: 10px;
}
.gate-code-error.visible { display: block; }
.gate-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px auto;
  max-width: 380px;
}
.gate-divider::before, .gate-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.gate-divider span {
  color: rgba(255,255,255,0.3);
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.gate-direct-label {
  color: rgba(255,255,255,0.5);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.category-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.category-chip {
  padding: 10px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 40px;
  color: rgba(255,255,255,0.7);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.category-chip:hover {
  background: rgba(201,144,60,0.1);
  border-color: rgba(201,144,60,0.4);
  color: var(--gold);
  transform: translateY(-1px);
}
.category-chip.selected { background: rgba(201,144,60,0.15); border-color: var(--gold); color: var(--gold); }
.gate-direct-note {
  color: rgba(255,255,255,0.3);
  font-size: 0.77rem;
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto;
}
.gate-locked { display: none; }
.access-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 28px;
  border: 1px solid rgba(201,144,60,0.25);
  background: rgba(201,144,60,0.07);
}
.access-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201,144,60,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.access-badge-icon svg { width: 15px; height: 15px; color: var(--gold); }
.access-badge strong {
  display: block;
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.access-badge span { display: block; color: rgba(255,255,255,0.5); font-size: 0.78rem; }
@media (max-width: 600px) {
  .gate-panel { padding: 32px 20px; }
  .gate-code-row { flex-direction: column; }
  .gate-verify-btn { width: 100%; }
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }
  .hero h1, .hero .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: flex-start; }
  .concierge-banner .container { grid-template-columns: 1fr; }
  .concierge-cta-col { text-align: left; }
  .about-preview .container,
  .bio-section .container,
  .about-hero .container,
  .conc-problem .container { grid-template-columns: 1fr; gap: 40px; }
  .about-hero-img { justify-content: flex-start; }
  .hours-section .container { grid-template-columns: 1fr; gap: 48px; }
  .service-block .container { grid-template-columns: 1fr; gap: 40px; }
  .service-block:nth-child(odd) .service-img,
  .service-block:nth-child(odd) .service-text { order: unset; }
  .different-grid { grid-template-columns: 1fr; }
  .conc-svc-grid { grid-template-columns: 1fr; }
  .conc-svc-item { border-right: none; }
  .conc-svc-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .conc-svc-item:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero .container { text-align: center; }
  .hero-actions { justify-content: center; }
  .trust-bar .container { flex-direction: column; align-items: flex-start; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); width: 100%; padding: 10px 0; }
  .trust-item:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .specialties-grid { grid-template-columns: 1fr 1fr; }
  .philosophy-grid, .creds-grid { grid-template-columns: 1fr; }
  .about-badge { position: static; margin-top: 20px; display: inline-block; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }
  .gfe-line { text-align: left; }
  .conc-hero { padding: 80px 0 60px; }
  .conc-diff .container { flex-direction: column; align-items: flex-start; padding: 0 24px; gap: 8px; }
  .diff-item { border-right: none; padding: 4px 0; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .process-step { display: flex; align-items: flex-start; gap: 20px; text-align: left; }
  .step-circle { margin: 0; flex-shrink: 0; }
  .form-row { grid-template-columns: 1fr; }
  .conc-form { padding: 32px 24px; }
  .specialty-block .container { grid-template-columns: 1fr; }
  .specialty-num { font-size: 2rem; }
  .conc-eyebrow { text-align: center; }
}

@media (max-width: 480px) {
  .specialties-grid, .who-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.75rem; }
  .conc-hero h1 { font-size: 1.9rem; }
  .btn { padding: 12px 20px; font-size: 0.85rem; }
  .top-bar .container { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* =====================================================
 * EDITORIAL LAYER -- magazine-spread design language
 * Used site-wide for sections that should read as feature
 * editorial rather than SaaS marketing. Playfair display
 * for serif moments; existing sans for body chrome.
 * ===================================================== */

:root {
  --paper:          #fafaf7;
  --paper-warm:     #f5efe1;
  --ink:            #0a1828;
  --ink-soft:       #2a313f;
  --ink-mute:       #4a5160;
  --rule-faint:     rgba(28,63,133,0.18);
  --gold-soft:      #c9a55c;
  --serif:          'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:           'Inter', 'Source Sans 3', system-ui, sans-serif;
}

/* --- chrome: folio, rule, kicker, section-num, caption --- */

.ed-folio {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
}
.ed-folio span + span::before {
  content: "·";
  margin-right: 0.55rem;
  opacity: 0.5;
}
.ed-folio--light { color: var(--paper); mix-blend-mode: difference; }

.ed-rule {
  width: 56px;
  height: 2px;
  background: var(--gold-soft);
  border: none;
  margin: 0 0 1.5rem;
}
.ed-rule--center { margin-left: auto; margin-right: auto; }
.ed-rule--full {
  width: 100%;
  height: 1px;
  background: var(--rule-faint);
  margin: 4rem 0;
}

.ed-kicker {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue-deep);
  font-weight: 700;
  margin: 0 0 1.2rem;
}

.ed-section-num {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold-soft);
  line-height: 1;
  margin-right: 0.6rem;
}

.ed-caption {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 600;
}

/* --- typography: headline, body, dropcap, pullquote --- */

.ed-headline {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw + 0.4rem, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--ink);
  font-weight: 700;
  margin: 0 0 1.4rem;
}
.ed-headline em {
  font-style: italic;
  color: var(--blue-deep);
  font-weight: 500;
}

.ed-headline--lg {
  font-size: clamp(2.6rem, 5vw + 0.4rem, 4.4rem);
}

.ed-headline--display {
  font-size: clamp(3rem, 7vw + 0.5rem, 5.4rem);
  line-height: 1.0;
  letter-spacing: -0.022em;
}

.ed-deck {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 0.6vw + 0.95rem, 1.25rem);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 1.4rem;
  max-width: 36em;
}

.ed-body {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1.2rem;
  max-width: 36em;
}

.ed-body--lead::first-letter {
  float: left;
  font-family: var(--serif);
  font-size: 4.2rem;
  line-height: 0.86;
  padding: 0.4rem 0.7rem 0 0;
  color: var(--blue-deep);
  font-weight: 700;
}

.ed-pullquote {
  margin: 2.25rem 0 2.25rem -0.4rem;
  padding-left: 1.6rem;
  border-left: 2px solid var(--gold-soft);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.32;
  color: var(--blue-deep);
  max-width: 32em;
}
.ed-pullquote-cite {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 700;
}

/* --- spread: full-bleed image + asymmetric editorial column --- */

.ed-spread {
  position: relative;
  background: var(--paper);
  overflow: hidden;
}
.ed-spread--reverse .ed-spread-grid { direction: rtl; }
.ed-spread--reverse .ed-spread-grid > * { direction: ltr; }
.ed-spread-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.ed-spread-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 100%;
}
.ed-spread-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8,16,30,0.10) 0%, rgba(8,16,30,0) 60%);
  pointer-events: none;
}
.ed-spread-folio-overlay {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 2;
}
.ed-spread-folio-overlay--right {
  left: auto;
  right: 2rem;
}
.ed-spread-text {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  position: relative;
}

.ed-cover-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem 0.4rem 0.4rem;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 1.2rem;
  align-self: flex-start;
}
.ed-cover-tag::before {
  content: "★";
  display: inline-block;
  background: var(--gold-soft);
  color: var(--ink);
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  text-align: center;
  line-height: 1.4rem;
  font-size: 0.8rem;
  letter-spacing: 0;
}

/* --- marginalia: 3-up small numbered notes --- */

.ed-marginalia {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule-faint);
}
.ed-marginalia-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.ed-marginalia-h {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  margin: 0 0 0.4rem;
}
.ed-marginalia-p {
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0;
}

/* --- contents list: table-of-contents treatment --- */

.ed-contents {
  display: grid;
  gap: 0;
  margin-top: 2.4rem;
}
.ed-contents-row {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--rule-faint);
  text-decoration: none;
  color: inherit;
  transition: padding-left var(--t), background var(--t);
}
.ed-contents-row:first-child { border-top: 1px solid var(--rule-faint); }
.ed-contents-row:hover {
  background: rgba(28,63,133,0.025);
  padding-left: 0.5rem;
}
.ed-contents-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold-soft);
  line-height: 1;
}
.ed-contents-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 0.3rem;
}
.ed-contents-desc {
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-mute);
  margin: 0;
}
.ed-contents-arrow {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold-soft);
  line-height: 1;
  align-self: center;
  transition: transform var(--t);
}
.ed-contents-row:hover .ed-contents-arrow { transform: translateX(6px); }

/* --- editorial hero (full-bleed photo with overlay text) --- */

.ed-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
  color: var(--paper);
}
.ed-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,16,30,0.30) 0%, rgba(8,16,30,0.05) 30%, rgba(8,16,30,0.20) 60%, rgba(8,16,30,0.78) 100%);
  pointer-events: none;
}
.ed-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2.5rem 4rem;
  width: 100%;
}
.ed-hero-folio {
  position: absolute;
  top: 1.75rem;
  left: 2.5rem;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.85;
}
.ed-hero-folio span + span::before {
  content: "·";
  margin: 0 0.55rem;
  opacity: 0.6;
}
.ed-hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw + 0.5rem, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--paper);
  font-weight: 700;
  margin: 0 0 1.4rem;
  max-width: 18ch;
}
.ed-hero-headline em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 500;
}
.ed-hero-deck {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 0.6vw + 0.95rem, 1.2rem);
  line-height: 1.5;
  color: rgba(250,250,247,0.88);
  margin: 0 0 2rem;
  max-width: 42em;
}
.ed-hero-meta {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.72);
  font-weight: 600;
}
.ed-hero-meta::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold-soft);
  vertical-align: middle;
}
.ed-hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.ed-hero-actions .btn { flex-shrink: 0; }

/* --- masthead credentials strip (replaces icon trust bar) --- */

.ed-masthead {
  background: var(--paper);
  border-top: 1px solid var(--rule-faint);
  border-bottom: 1px solid var(--rule-faint);
  padding: 1.6rem 0;
}
.ed-masthead-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  flex-wrap: wrap;
}
.ed-masthead-inner > span {
  position: relative;
  white-space: nowrap;
}
.ed-masthead-inner > span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-soft);
  margin-left: 2.5rem;
  vertical-align: middle;
}

/* --- two-column editorial about block --- */

.ed-about {
  background: var(--paper);
  padding: 6rem 2.5rem;
  position: relative;
}
.ed-about-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: start;
}
.ed-about-img {
  position: relative;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  box-shadow: 0 30px 60px rgba(8,16,30,0.18);
}
.ed-about-img-caption {
  position: absolute;
  bottom: -2.5rem;
  left: 1.5rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 600;
}
.ed-about-text { padding-top: 1rem; }

/* --- closing colophon --- */

.ed-colophon {
  background: var(--ink);
  color: var(--paper);
  padding: 5rem 2.5rem;
  text-align: center;
}
.ed-colophon-rule {
  width: 56px;
  height: 2px;
  background: var(--gold-soft);
  margin: 0 auto 2rem;
}
.ed-colophon-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw + 0.5rem, 2.8rem);
  line-height: 1.1;
  color: var(--paper);
  margin: 0 0 1rem;
  font-weight: 600;
}
.ed-colophon-deck {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(250,250,247,0.78);
  max-width: 36em;
  margin: 0 auto 2rem;
}

/* --- responsive: collapse spreads on mobile --- */

@media (max-width: 980px) {
  .ed-spread-grid { grid-template-columns: 1fr; min-height: auto; }
  .ed-spread-photo { min-height: 360px; }
  .ed-spread-text { padding: 3.5rem 1.75rem; }
  .ed-marginalia { grid-template-columns: 1fr; gap: 1.6rem; }
  .ed-spread-folio-overlay { top: 1.25rem; left: 1.25rem; }
  .ed-spread-folio-overlay--right { right: 1.25rem; left: auto; }
  .ed-about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ed-about-img { aspect-ratio: 4/3; max-width: 520px; }
  .ed-hero { min-height: 78vh; }
  .ed-hero-inner { padding: 5rem 1.5rem 3rem; }
  .ed-hero-folio { left: 1.5rem; top: 1.25rem; font-size: 0.62rem; }
  .ed-masthead-inner { gap: 1rem 1.5rem; font-size: 0.7rem; padding: 0 1.5rem; }
  .ed-masthead-inner > span:not(:last-child)::after { margin-left: 1.5rem; }
  .ed-contents-row { grid-template-columns: 3rem 1fr auto; gap: 1rem; }
}

@media (max-width: 540px) {
  .ed-spread-text { padding: 3rem 1.25rem; }
  .ed-pullquote { font-size: 1.2rem; padding-left: 1.1rem; }
  .ed-body--lead::first-letter { font-size: 3.4rem; padding-right: 0.5rem; }
  .ed-cover-tag { font-size: 0.58rem; padding: 0.35rem 0.7rem 0.35rem 0.35rem; }
  .ed-cover-tag::before { width: 1.2rem; height: 1.2rem; line-height: 1.2rem; }
}

/* --- FAQ / Details (pillar pages) --- */
.ed-faq {
  border-top: 1px solid rgba(8, 16, 30, 0.1);
  padding: 1.4rem 0;
}
.ed-faq:last-of-type {
  border-bottom: 1px solid rgba(8, 16, 30, 0.1);
}
.ed-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
}
.ed-faq summary::-webkit-details-marker { display: none; }
.ed-faq summary::after {
  content: '+';
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold-soft);
  margin-left: auto;
  line-height: 1;
  transition: transform 0.2s ease;
}
.ed-faq[open] summary::after { content: '\2212'; }
.ed-faq summary h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.35;
}
.ed-faq p {
  font-family: var(--sans);
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0.9rem 0 0;
  padding-right: 2.4rem;
}
.ed-faq p a {
  color: var(--blue-deep);
  border-bottom: 1px solid var(--gold-soft);
  text-decoration: none;
}

/* --- Referrer page accents (used by /referrers/* pages) --- */
.ref-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  border: 1px solid var(--gold-soft);
  padding: 0.35rem 0.75rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
}
.ref-checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
}
.ref-checklist li {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  padding-left: 1.6rem;
  position: relative;
}
.ref-checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-soft);
  font-weight: 700;
}

/* --- Newsletter signup blocks --- */
.newsletter-block {
  padding: 5rem 2.5rem;
  background: #ffffff;
  text-align: center;
}
.newsletter-block-inner {
  max-width: 640px;
  margin: 0 auto;
}
.newsletter-form {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.6rem;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input[type=email] {
  flex: 1 1 16rem;
  padding: 0.85rem 1rem;
  font-family: var(--sans);
  font-size: 1rem;
  border: 1px solid #c8c2b4;
  background: var(--paper);
  color: var(--ink);
  border-radius: 0;
}
.newsletter-form input[type=email]:focus {
  outline: 2px solid var(--gold-soft);
  outline-offset: -1px;
}
.newsletter-form button {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
  text-transform: uppercase;
  padding: 0.85rem 1.4rem;
  background: var(--blue-deep);
  color: #fff;
  border: 1px solid var(--blue-deep);
  cursor: pointer;
}
.newsletter-form button:disabled { opacity: 0.6; cursor: wait; }
.newsletter-status {
  font-family: var(--sans);
  font-size: 0.9rem;
  margin-top: 0.8rem;
  min-height: 1.2rem;
  color: var(--text-mid);
}
.newsletter-status[data-tone=ok] { color: var(--blue-deep); font-weight: 600; }
.newsletter-status[data-tone=err] { color: #a13030; }
.newsletter-fine {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--text-mid);
  margin-top: 0.8rem;
}

/* footer-compact variant */
.footer-newsletter {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-newsletter h4 { margin-bottom: 0.6rem; }
.footer-newsletter .newsletter-form { justify-content: flex-start; margin-top: 0.4rem; }
.footer-newsletter .newsletter-form input[type=email] {
  flex: 1 1 12rem; min-width: 0;
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: #fff;
}
.footer-newsletter .newsletter-form input[type=email]::placeholder { color: rgba(255,255,255,0.45); }
.footer-newsletter .newsletter-form button { padding: 0.7rem 1rem; font-size: 0.78rem; }
.footer-newsletter .newsletter-status { color: rgba(255,255,255,0.7); font-size: 0.82rem; }
