/* ─────────────────────────────────────────────────────────────────
   Business Butlers — Design System
   Palette: Navy #1A2332 · Gold #C5A028 · Cream #F9F6F1 · White #FFFFFF
   ───────────────────────────────────────────────────────────────── */

/* ─── Variables ─────────────────────────────────────────────────── */
:root {
  --navy:        #1A2332;
  --navy-deep:   #0E1620;
  --navy-mid:    #243044;
  --gold:        #C5A028;
  --gold-light:  #D4B84A;
  --gold-dim:    rgba(197, 160, 40, 0.18);
  --cream:       #F9F6F1;
  --cream-dark:  #EDE9E2;
  --white:       #FFFFFF;
  --slate:       #4A5568;
  --slate-light: #718096;
  --border:      #E2DDD6;
  --border-dark: #CCC7BF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 2px;
  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 4px 24px rgba(14, 22, 32, 0.08);
  --shadow-lg: 0 12px 48px rgba(14, 22, 32, 0.14);
  --t:         0.28s ease;

  --max-w: 1160px;
  --nav-h: 76px;
}

/* ─── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ─── Typography scale ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Layout utilities ───────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 96px 0; }
.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy-deep); color: var(--white); }
.section--navy-mid { background: var(--navy); color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .eyebrow { display: block; margin-bottom: 16px; }
.section-header h2 { margin-bottom: 20px; }
.section-header p {
  font-size: 1.0625rem;
  color: var(--slate);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}
.section--navy .section-header h2   { color: var(--white); }
.section--navy .section-header p    { color: rgba(255,255,255,0.55); }
.section--navy-mid .section-header h2 { color: var(--white); }
.section--navy-mid .section-header p  { color: rgba(255,255,255,0.55); }

/* ─── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

.btn--primary {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}
.btn--primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
  border: 1px solid var(--gold);
  font-weight: 600;
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* ─── Navigation ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t), box-shadow var(--t);
}
.nav.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}
.nav.scrolled .nav__logo          { color: var(--navy); }
.nav.scrolled .nav__logo span     { color: var(--gold); }
.nav.scrolled .nav__link          { color: var(--slate); }
.nav.scrolled .nav__link:hover    { color: var(--navy); }
.nav.scrolled .nav__cta-btn       { border-color: var(--navy); color: var(--navy); }
.nav.scrolled .nav__cta-btn:hover { background: var(--navy); color: var(--white); }
.nav.scrolled .nav__bar           { background: var(--navy); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color var(--t);
  flex-shrink: 0;
}
.nav__logo span { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav__link {
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--t);
}
.nav__link:hover { color: var(--white); }

.nav__cta-btn {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.9);
  transition: all var(--t);
}
.nav__cta-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav__bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: all var(--t);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px 2rem 28px;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  display: block;
  padding: 12px 0;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  border-bottom: 1px solid var(--cream-dark);
  transition: color var(--t);
}
.nav__mobile a:last-of-type { border-bottom: none; }
.nav__mobile a:hover { color: var(--navy); }
.nav__mobile .btn { margin-top: 16px; justify-content: center; }

/* ─── Hero ───────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

/* Layered geometric decoration */
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 55%;
  height: 120%;
  background:
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(197,160,40,0.055), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--gold) 40%, var(--gold) 60%, transparent 95%);
  opacity: 0.2;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 2rem 100px;
}

.hero__eyebrow { display: block; margin-bottom: 28px; }

.hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(3.6rem, 7vw, 5.8rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero__heading em {
  font-style: normal;
  color: var(--gold);
}

.hero__sub {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.58);
  max-width: 500px;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Decorative frame — right column */
.hero__ornament {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 400px;
}
.hero__ornament::before {
  content: '';
  position: absolute;
  top: 32px; right: 0;
  left: 32px; bottom: 0;
  border: 1px solid rgba(197,160,40,0.18);
  border-radius: var(--radius-sm);
}
.hero__ornament::after {
  content: '';
  position: absolute;
  top: 0; right: 32px;
  left: 0; bottom: 32px;
  border: 1px solid rgba(197,160,40,0.1);
  border-radius: var(--radius-sm);
}
.hero__ornament-inner {
  position: absolute;
  inset: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  gap: 20px;
}
.hero__ornament-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.hero__ornament-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

/* ─── Trust strip ────────────────────────────────────────────────── */
.trust-strip {
  padding: 28px 0;
  background: var(--navy);
  border-top: 1px solid rgba(197,160,40,0.15);
  border-bottom: 1px solid rgba(197,160,40,0.08);
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 44px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  position: relative;
}
.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(197,160,40,0.25);
}
.trust-item svg {
  width: 15px; height: 15px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── Service grid cards ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 44px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
}
.service-card:nth-child(3n) { border-right: none; }
.service-card:nth-last-child(-n+3) { border-bottom: none; }
.service-card:hover { background: var(--cream); }

.service-card__icon {
  width: 38px; height: 38px;
  color: var(--gold);
  margin-bottom: 22px;
}
.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}
.service-card__body {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--slate);
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color var(--t);
}
.service-card__link svg { width: 13px; height: 13px; transition: transform var(--t); }
.service-card__link:hover { color: var(--gold); }
.service-card__link:hover svg { transform: translateX(4px); }

/* ─── Why us grid ────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 88px;
}
.why-item { display: flex; gap: 24px; align-items: flex-start; }
.why-item__num {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(197,160,40,0.22);
  flex-shrink: 0;
  width: 42px;
  text-align: right;
}
.why-item__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0;
}
.why-item__body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.48);
}

/* ─── Plan cards ─────────────────────────────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t), transform var(--t);
  position: relative;
}
.plan-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.plan-card--featured {
  border-color: var(--gold);
  background: var(--navy-deep);
}
.plan-card--featured::before {
  content: 'Most Comprehensive';
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-card__tier {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.plan-card__name {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.0;
  color: var(--navy);
  margin-bottom: 14px;
}
.plan-card--featured .plan-card__name { color: var(--white); }
.plan-card__for {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--slate);
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.plan-card--featured .plan-card__for {
  color: rgba(255,255,255,0.5);
  border-color: rgba(255,255,255,0.1);
}

.plan-card__features { margin-bottom: 36px; flex: 1; }
.plan-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--slate);
  border-bottom: 1px solid var(--cream-dark);
}
.plan-card__feature:last-child { border-bottom: none; }
.plan-card--featured .plan-card__feature {
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.07);
}
.plan-card__feature svg {
  width: 15px; height: 15px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-card__note {
  font-size: 0.8rem;
  color: var(--slate-light);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}
.plan-card--featured .plan-card__note { color: rgba(255,255,255,0.35); }

.plan-card .btn { width: 100%; justify-content: center; }

/* ─── Gathering banner ───────────────────────────────────────────── */
.gathering-banner {
  background: var(--navy-deep);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.gathering-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 90% at 85% 50%, rgba(197,160,40,0.07), transparent);
  pointer-events: none;
}
.gathering-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  position: relative;
}
.gathering-banner__eyebrow { display: block; margin-bottom: 18px; }
.gathering-banner__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.1;
}
.gathering-banner__body {
  font-size: 1.0625rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.52);
  max-width: 560px;
}

/* ─── Final CTA ──────────────────────────────────────────────────── */
.final-cta {
  padding: 120px 0;
  background: var(--cream);
  text-align: center;
}
.final-cta h2 {
  color: var(--navy);
  margin-bottom: 22px;
  max-width: 700px;
  margin-left: auto; margin-right: auto;
}
.final-cta p {
  font-size: 1.0625rem;
  color: var(--slate);
  max-width: 480px;
  margin: 0 auto 42px;
  line-height: 1.75;
}

/* ─── Footer ─────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  padding: 64px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--white);
  display: inline-block;
  margin-bottom: 16px;
}
.footer__logo span { color: var(--gold); }
.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.38);
  max-width: 250px;
}
.footer__col h5 {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.42);
  transition: color var(--t);
}
.footer__col ul a:hover { color: rgba(255,255,255,0.9); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  transition: color var(--t);
}
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* ─── Page hero (inner pages) ────────────────────────────────────── */
.page-hero {
  background: var(--navy-deep);
  padding: calc(var(--nav-h) + 56px) 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--gold) 40%, var(--gold) 60%, transparent 95%);
  opacity: 0.18;
}
.page-hero .eyebrow { display: block; margin-bottom: 16px; }
.page-hero h1 { color: var(--white); margin-bottom: 18px; }
.page-hero p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  line-height: 1.78;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.32);
  margin-bottom: 28px;
}
.breadcrumb a { color: rgba(255,255,255,0.32); transition: color var(--t); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.18); }

/* ─── Services detail page ───────────────────────────────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 72px;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail__sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  height: fit-content;
}
.service-detail__sidebar .eyebrow { display: block; margin-bottom: 10px; }
.service-detail__icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-detail__sidebar h3 { color: var(--navy); line-height: 1.2; }

.service-detail__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.detail-box {
  padding: 28px 28px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.detail-box h5 {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.detail-box p {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--slate);
}

/* ─── How it works steps ─────────────────────────────────────────── */
.steps { max-width: 720px; margin: 0 auto; }
.step {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 28px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.step:last-child { border-bottom: none; }
.step__num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(197,160,40,0.2);
  text-align: center;
}
.step h3 { color: var(--navy); margin-bottom: 10px; }
.step p  { font-size: 0.9375rem; line-height: 1.72; color: var(--slate); }

/* ─── Gathering page ─────────────────────────────────────────────── */
.gathering-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.gathering-feature {
  text-align: center;
  padding: 44px 28px;
}
.gathering-feature__icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin: 0 auto 20px;
}
.gathering-feature h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
}
.gathering-feature p {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.45);
}

.tier-access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier-access-card {
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
}
.tier-access-card--highlight {
  background: var(--navy-deep);
  border-color: var(--gold);
}
.tier-access-card .plan-card__tier { margin-bottom: 10px; }
.tier-access-card h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.tier-access-card--highlight h4 { color: var(--white); }
.tier-access-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--slate);
}
.tier-access-card--highlight p { color: rgba(255,255,255,0.5); }

/* ─── Values grid ────────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  padding: 36px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.value-card h4 {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--slate);
}

/* ─── Contact form ───────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: flex-start;
}
.contact-info h3 { font-size: 1.8rem; color: var(--navy); margin-bottom: 18px; }
.contact-info p  { font-size: 1rem; line-height: 1.75; color: var(--slate); margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.6;
}
.contact-detail svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 1px; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 0.9375rem;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--t), background var(--t);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A5568' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* Honeypot — invisible to humans */
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

.form-notice {
  font-size: 0.78rem;
  color: var(--slate-light);
  margin-top: 14px;
  line-height: 1.6;
}
#form-error {
  color: #c0392b;
  font-size: 0.875rem;
  margin-top: 12px;
}

/* ─── Legal pages ────────────────────────────────────────────────── */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 {
  font-size: 1.6rem;
  color: var(--navy);
  margin: 48px 0 14px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 0.9375rem;
  line-height: 1.82;
  color: var(--slate);
  margin-bottom: 16px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
}
.legal-content ul li {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--slate);
  margin-bottom: 6px;
}
.legal-date {
  font-size: 0.85rem;
  color: var(--slate-light);
  margin-bottom: 40px;
  font-style: italic;
}

/* ─── Thanks & 404 ───────────────────────────────────────────────── */
.centered-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 2rem;
  padding-top: calc(var(--nav-h) + 40px);
}
.centered-page--dark { background: var(--navy-deep); }
.centered-page--light { background: var(--cream); }

.centered-page__icon {
  width: 60px; height: 60px;
  color: var(--gold);
  margin-bottom: 28px;
}
.centered-page--dark .centered-page__num {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 18vw, 9rem);
  font-weight: 300;
  line-height: 1;
  color: rgba(197,160,40,0.15);
  margin-bottom: 20px;
}
.centered-page h1 {
  color: var(--navy);
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
}
.centered-page--dark h1 { color: var(--white); }
.centered-page p {
  font-size: 1.0625rem;
  color: var(--slate);
  max-width: 420px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.centered-page--dark p { color: rgba(255,255,255,0.45); }

/* ─── Cookie banner ──────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px;
  max-width: 580px;
  background: var(--navy);
  border: 1px solid rgba(197,160,40,0.18);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 200;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  transform: translateY(calc(100% + 24px));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.visible { transform: none; }
.cookie-banner__text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  flex: 1;
}
.cookie-banner__text a { color: var(--gold); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ─── Our Model section ──────────────────────────────────────────── */
.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(197,160,40,0.15);
  border-radius: var(--radius);
  overflow: hidden;
}
.model-item {
  padding: 48px 36px;
  background: var(--navy-deep);
  position: relative;
}
.model-item::before {
  content: '';
  position: absolute;
  top: 0; left: 36px; right: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.4;
}
.model-item__num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(197,160,40,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.model-item h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0;
}
.model-item p {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.48);
}

/* ─── Butler cards ───────────────────────────────────────────────── */
.butler-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.butler-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow var(--t), transform var(--t);
}
.butler-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.butler-monogram {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 2px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.butler-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.butler-card__specialty {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--slate-light);
}
.senior-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.senior-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 44px 36px;
  text-align: center;
}
.senior-monogram {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 2px solid rgba(197,160,40,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--gold);
}
.senior-card__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 6px;
}
.senior-card__role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.senior-card__expertise {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--slate);
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.expertise-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 32px;
  background: var(--cream);
  border-radius: var(--radius);
}
.expertise-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(197,160,40,0.3);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}
.expertise-card h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0;
}
.expertise-card ul { list-style: disc; padding-left: 16px; }
.expertise-card ul li {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--slate);
  margin-bottom: 4px;
}
.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.region-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--t), box-shadow var(--t);
}
.region-card:hover { border-color: var(--gold-dim); box-shadow: var(--shadow); }
.region-card--new  { border-color: rgba(197,160,40,0.3); }
.region-card__flag { font-size: 1.75rem; margin-bottom: 12px; }
.region-card__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.region-card__new-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(197,160,40,0.35);
  border-radius: 20px;
  padding: 3px 8px;
  white-space: nowrap;
}
.region-card__cities { font-size: 0.8125rem; color: var(--slate-light); margin-bottom: 12px; }
.region-card ul    { display: flex; flex-direction: column; gap: 4px; }
.region-card ul li {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--slate);
  padding-left: 12px;
  position: relative;
}
.region-card ul li::before { content: '–'; position: absolute; left: 0; color: var(--gold); font-size: .75rem; }

@media (max-width: 1024px) {
  .butler-grid    { grid-template-columns: repeat(3, 1fr); }
  .regions-grid   { grid-template-columns: repeat(2, 1fr); }
  .model-grid     { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .butler-grid    { grid-template-columns: repeat(2, 1fr); }
  .senior-grid    { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .regions-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .regions-grid   { grid-template-columns: 1fr; }
}

/* ─── Scroll animations ──────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

/* ─── Responsive breakpoints ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 0; }
  .hero__ornament { display: none; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-detail__sidebar { position: static; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .gathering-features { grid-template-columns: repeat(2, 1fr); }
  .tier-access-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  section { padding: 64px 0; }

  .nav__links, .nav__cta-btn { display: none; }
  .nav__hamburger { display: flex; }

  .hero__heading { font-size: clamp(2.8rem, 11vw, 4.2rem); }
  .hero__inner { padding: 48px 2rem 72px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; }
  .service-card:nth-child(3n) { border-right: none; }
  .service-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .service-card:last-child { border-bottom: none; }

  .why-grid { grid-template-columns: 1fr; gap: 32px; }

  .plans-grid { grid-template-columns: 1fr; }

  .gathering-banner__inner { grid-template-columns: 1fr; gap: 36px; }

  .gathering-features { grid-template-columns: 1fr; }
  .tier-access-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .service-detail__body { grid-template-columns: 1fr; }

  .steps { max-width: 100%; }
  .step { grid-template-columns: 48px 1fr; gap: 18px; }
  .step__num { font-size: 2.5rem; }

  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 14px; text-align: center; }

  .trust-item { padding: 10px 20px; }
  .trust-item + .trust-item::before { display: none; }
  .trust-strip__inner { flex-direction: column; }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 0; left: 0;
    max-width: none;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
}
