/* ============================================
   EXCLUSIVE DETAILING — Main Stylesheet
   ============================================ */

:root {
  --navy:        #0B2222;
  --navy-dark:   #191919;
  --gold:        #EDE9E6;
  --gold-light:  #f5f2ef;
  --teal:        #0B2222;
  --cream:       #EDE9E6;
  --white:       #FFFFFF;
  --gray-100:    #F5F5F5;
  --gray-200:    #E5E5E5;
  --gray-400:    #9CA3AF;
  --gray-600:    #6B7280;
  --text-dark:   #191919;
  --text-body:   #4A4848;

  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  --max-w:       1200px;
  --sp:          5rem 0;
  --sp-sm:       3.5rem 0;
  --pad:         0 1.5rem;
  --radius:      0.5rem;
  --radius-lg:   1rem;
  --t:           0.3s ease;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 4px 24px rgba(0,0,0,.13);
  --shadow-lg:   0 8px 48px rgba(0,0,0,.2);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); color: var(--text-dark); line-height: 1.6; background: var(--white); overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; }

.eyebrow {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: .02em;
}

.body-text { font-size: 1rem; line-height: 1.75; color: var(--text-body); }

/* ---- Layout ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: var(--pad); }
.section    { padding: var(--sp); }
.section--cream     { background: var(--cream); }
.section--navy      { background: var(--navy); }
.section--navy-dark { background: var(--navy-dark); }

.section--navy h1,
.section--navy h2,
.section--navy h3   { color: var(--white); }

.text-center { text-align: center; }

.gold-divider      { width: 56px; height: 3px; background: var(--navy); margin: .875rem auto; }
.gold-divider--left{ margin: .875rem 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .875rem 2rem;
  font-family: var(--font-heading);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: .25rem;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  gap: .5rem;
}

.btn--gold          { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.btn--gold:hover    { background: var(--gold-light); border-color: var(--gold-light); }

.btn--outline-white         { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--outline-white:hover   { background: rgba(255,255,255,.1); border-color: var(--white); }

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

.btn--navy          { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--navy:hover    { background: var(--navy-dark); border-color: var(--navy-dark); }

.btn--dark          { background: var(--navy-dark); color: var(--white); border-color: var(--navy-dark); }
.btn--dark:hover    { background: #000; border-color: #000; }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(237,233,230,.1);
  transition: box-shadow var(--t);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .875rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.navbar__logo img { height: 96px; width: auto; }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar__links a {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  position: relative;
  transition: color var(--t);
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--t);
}
.navbar__links a:hover,
.navbar__links a.active { color: var(--gold); }
.navbar__links a:hover::after,
.navbar__links a.active::after { width: 100%; }

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.navbar__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all var(--t);
}

.navbar__mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,.08);
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--t);
}
.navbar__mobile a:last-child { border-bottom: none; }
.navbar__mobile a:hover { color: var(--gold); }
.navbar__mobile .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* ---- Photo Placeholders ---- */
.photo-ph {
  background: #C5CFCF;
  border: 2px dashed #88A8A8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #4A6262;
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  gap: .625rem;
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  padding: 1rem;
}
.photo-ph--hero   { width: 100%; height: 420px; }
.photo-ph--wide   { width: 100%; height: 380px; border-radius: 0; border-left: none; border-right: none; }
.photo-ph--sq     { width: 100%; aspect-ratio: 1; }
.photo-ph--rect   { width: 100%; height: 300px; }
.photo-ph--ba     { width: 100%; height: 280px; }
.photo-ph--circle { width: 160px; height: 160px; border-radius: 50%; margin: 0 auto; }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 8rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

/* Video background — uncomment in HTML when ready */
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark overlay so text stays readable over video */
.hero__overlay {
  position: absolute; inset: 0;
  background: rgba(11,34,34,.62);
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 span { color: var(--gold); }
.hero__sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255,255,255,.68);
  margin-bottom: 2.5rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* Page hero (inner pages) */
.page-hero {
  background: var(--navy);
  padding: 8rem 1.5rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(237,233,230,.07) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero__inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1     { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.page-hero p      { color: rgba(255,255,255,.68); font-size: 1.0625rem; max-width: 520px; margin: 0 auto; }

/* ---- Package Cards ---- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}

.pkg {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* Essential */
.pkg--essential {
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.pkg--essential .pkg__head { background: var(--teal); color: var(--white); }

/* Premier */
.pkg--premier {
  background: var(--navy);
  border: none;
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}
.pkg--premier:hover { transform: scale(1.04) translateY(-6px); }
.pkg--premier .pkg__head { background: var(--navy-dark); color: var(--gold); }
.pkg--premier .pkg__body { background: var(--navy); }
.pkg--premier .pkg__price { color: var(--gold); }
.pkg--premier .pkg__price-note { color: rgba(255,255,255,.55); }
.pkg--premier .pkg__features li { color: rgba(255,255,255,.82); border-bottom-color: rgba(255,255,255,.1); }
.pkg--premier .pkg__features li::before { color: var(--gold); }
.pkg--premier .pkg__features-label { color: rgba(255,255,255,.4); }
.pkg--premier .pkg__tags span { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }

/* Signature */
.pkg--signature {
  background: var(--white);
  border: 2px solid var(--navy);
  box-shadow: var(--shadow-sm);
}
.pkg--signature .pkg__head { background: var(--navy-dark); color: var(--white); }

/* Badge */
.pkg__badge {
  position: absolute;
  top: 0; right: 1.5rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-heading);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .875rem;
  border-radius: 0 0 .375rem .375rem;
  display: none;
}
.pkg--premier .pkg__badge { display: block; }

.pkg__head { padding: 1.75rem 1.5rem 1.5rem; }
.pkg__tier {
  font-family: var(--font-heading);
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .75;
  margin-bottom: .375rem;
}
.pkg__name {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: .5rem;
}
.pkg__tagline { font-size: .875rem; opacity: .85; font-style: italic; }

.pkg__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.pkg__price { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; color: var(--navy); margin-bottom: .25rem; }
.pkg__price-note { font-size: .8125rem; color: var(--gray-600); margin-bottom: 1.25rem; line-height: 1.4; }

.pkg__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.25rem; }
.pkg__tags span {
  font-family: var(--font-heading);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: var(--gray-100);
  color: var(--gray-600);
  padding: .3rem .75rem;
  border-radius: 50px;
}

.pkg__features       { flex: 1; margin-bottom: 1.5rem; }
.pkg__features-label {
  font-family: var(--font-heading);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: .75rem;
}
.pkg__features li {
  font-size: .9rem;
  color: var(--text-body);
  padding: .5rem 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.pkg__features li:last-child { border-bottom: none; }
.pkg__features li::before { content: '✓'; color: var(--teal); font-weight: 700; font-size: .875rem; flex-shrink: 0; margin-top: .05em; }

/* ---- Service Area Grid ---- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.area-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all var(--t);
}
.area-item:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.area-item__dot {
  width: 8px; height: 8px;
  background: var(--navy);
  border-radius: 50%;
  margin: 0 auto .625rem;
}
.area-item__name {
  font-family: var(--font-heading);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--navy);
}

/* ---- Review Cards ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.review-card__stars { color: var(--navy); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.review-card__quote { font-size: .9375rem; line-height: 1.75; color: var(--text-body); font-style: italic; margin-bottom: 1.25rem; flex: 1; }
.review-card__author { display: flex; align-items: center; gap: .75rem; }
.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.review-card__name   { font-family: var(--font-heading); font-size: .875rem; font-weight: 700; color: var(--navy); }
.review-card__detail { font-size: .8rem; color: var(--gray-600); margin-top: .1rem; }

/* ---- Social Proof Strip ---- */
.proof-strip {
  background: var(--navy);
  padding: 3.5rem 1.5rem;
}
.proof-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.proof-strip__quote {
  font-size: 1.125rem;
  font-style: italic;
  color: rgba(255,255,255,.88);
  max-width: 560px;
  line-height: 1.75;
}
.proof-strip__quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .875rem;
}
.proof-strip__rating { text-align: center; flex-shrink: 0; }
.proof-strip__stars  { color: var(--gold); font-size: 1.25rem; letter-spacing: 3px; margin-bottom: .5rem; }
.proof-strip__score  { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.proof-strip__label  { font-size: .8125rem; color: rgba(255,255,255,.55); margin-top: .25rem; }

/* ---- CTA Banner ---- */
.cta-banner { background: var(--navy); padding: 4.5rem 1.5rem; text-align: center; }
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  letter-spacing: .03em;
  color: var(--white);
  margin-bottom: .75rem;
}
.cta-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Add-ons Note ---- */
.addons-note {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.addons-note__label {
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .5rem;
}
.addons-note p { font-size: .9rem; color: var(--text-body); }

/* ---- Team Cards ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.team-card      { text-align: center; }
.team-card__photo {
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 4px solid var(--navy);
  margin: 0 auto 1.25rem;
  overflow: hidden;
}
.team-card__name   { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: .25rem; }
.team-card__role   { font-family: var(--font-heading); font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); margin-bottom: .875rem; }
.team-card__bio    { font-size: .9375rem; line-height: 1.75; color: var(--text-body); }

/* ---- Values ---- */
.values-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-item {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
}
.value-item__icon  {
  width: 56px; height: 56px;
  background: rgba(237,233,230,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.125rem;
}
.value-item__icon svg { color: var(--gold); }
.value-item__title { font-family: var(--font-heading); font-size: .8125rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.value-item__desc  { font-size: .9375rem; line-height: 1.65; color: rgba(255,255,255,.7); }

/* ---- Before/After ---- */
.ba-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.ba-label {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: .625rem;
  color: var(--navy);
}

/* ---- Contact / Form ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.inquiry-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.form-group { margin-bottom: 1.375rem; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .875rem 1rem;
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: .375rem;
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,34,34,.1);
}
.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='%230B2222' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 120px; }

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

.form-submit { width: 100%; padding: 1rem; font-size: .875rem; margin-top: .25rem; }
.form-note { font-size: .8125rem; color: var(--gray-600); text-align: center; margin-top: .875rem; line-height: 1.5; }

#form-success { display: none; text-align: center; padding: 2.5rem 1.5rem; }
#form-success svg { margin: 0 auto 1rem; color: var(--teal); }
#form-success h3 { color: var(--navy); margin-bottom: .75rem; font-size: 1.375rem; }
#form-success p  { color: var(--text-body); font-size: .9375rem; line-height: 1.7; }

.contact-info { position: sticky; top: 6.5rem; }
.contact-block {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}
.contact-block__label {
  font-family: var(--font-heading);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .875rem;
}
.contact-block__text { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.72); }
.contact-block__cities { display: flex; flex-wrap: wrap; gap: .4rem; }
.contact-block__cities span {
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 600;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
  padding: .3rem .7rem;
  border-radius: 50px;
  letter-spacing: .04em;
}

/* ---- Footer ---- */
.footer {
  background: var(--navy-dark);
  padding: 4.5rem 1.5rem 2rem;
  border-top: 1px solid rgba(237,233,230,.08);
}
.footer__inner { max-width: var(--max-w); margin: 0 auto; }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__logo { height: 42px; margin-bottom: 1.25rem; }
.footer__tagline { font-size: .9375rem; line-height: 1.7; color: rgba(255,255,255,.55); max-width: 300px; }
.footer__col-label {
  font-family: var(--font-heading);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: .625rem; }
.footer__links a { font-size: .9375rem; color: rgba(255,255,255,.6); transition: color var(--t); }
.footer__links a:hover { color: var(--gold); }
.footer__cities { font-size: .9rem; line-height: 1.85; color: rgba(255,255,255,.5); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy  { font-size: .8125rem; color: rgba(255,255,255,.38); }
.footer__badge { font-family: var(--font-heading); font-size: .6875rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); opacity: .6; }

/* ---- Animated Hero Words ---- */
.hero-words {
  display: inline-block;
  position: relative;
  height: 1.15em;
  overflow: hidden;
  vertical-align: bottom;
  width: 100%;
}
.hero-word {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--gold);
  font-weight: 800;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity .45s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
  white-space: nowrap;
}
.hero-word.active {
  opacity: 1;
  transform: translateY(0);
}
.hero-word.exit {
  opacity: 0;
  transform: translateY(-60px);
  transition: opacity .35s ease, transform .45s ease;
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible          { opacity: 1; transform: translateY(0); }
.reveal.d1               { transition-delay: .12s; }
.reveal.d2               { transition-delay: .24s; }
.reveal.d3               { transition-delay: .36s; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* ---- Tablet (≤ 1024px) ---- */
@media (max-width: 1024px) {
  .packages-grid  { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .pkg--premier   { transform: none; }
  .pkg--premier:hover { transform: translateY(-6px); }
  .hero__inner    { max-width: 100%; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info   { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .footer__top    { grid-template-columns: 1fr 1fr; }
  .footer__brand  { grid-column: 1 / -1; }
  .team-grid      { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Mobile (≤ 768px) ---- */
@media (max-width: 768px) {
  :root { --sp: 3rem 0; }

  /* Navbar */
  .navbar__links, .navbar__cta { display: none; }
  .navbar__toggle { display: flex; }
  .navbar__logo img { height: 52px; }

  /* Hero */
  .hero          { padding: 5.5rem 1.25rem 3.5rem; min-height: 92vh; }
  .hero__inner img { height: 140px !important; margin-bottom: 1.5rem !important; }
  .hero h1       { font-size: clamp(1.875rem, 8vw, 2.75rem); margin-bottom: 1.25rem; }
  .hero__eyebrow { font-size: .7rem; margin-bottom: 1rem; }
  .hero__sub     { font-size: .9375rem; margin-bottom: 2rem; }
  .hero__actions { flex-direction: column; align-items: center; gap: .75rem; }
  .hero__actions .btn { width: 100%; max-width: 340px; }

  /* Page hero */
  .page-hero     { padding: 6.5rem 1.25rem 3rem; }
  .page-hero h1  { font-size: clamp(1.75rem, 6vw, 2.5rem); }

  /* Section titles */
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Container */
  .container { padding: 0 1.25rem; }

  /* Layout stacking */
  .two-col      { grid-template-columns: 1fr; gap: 2rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .team-grid    { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; }
  .values-strip { grid-template-columns: 1fr; }
  .area-grid    { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .ba-row       { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
  .footer__top  { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer       { padding: 3.5rem 1.25rem 1.75rem; }

  /* Proof strip */
  .proof-strip  { padding: 3rem 1.25rem; }
  .proof-strip__inner { flex-direction: column; text-align: center; }
  .proof-strip__quote { max-width: 100%; font-size: 1rem; }

  /* CTA banner */
  .cta-banner   { padding: 3rem 1.25rem; }
  .cta-banner .btn { display: block; width: 100%; max-width: 320px; margin-inline: auto; }

  /* Packages */
  .packages-grid { max-width: 100%; }
  .addons-note  { padding: 1.25rem 1.25rem; }

  /* Form — 16px min to prevent iOS auto-zoom on focus */
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 1rem; padding: .8rem .875rem; }
  .form-submit  { font-size: .875rem; padding: 1rem; }

  /* Reviews stats — hide vertical dividers */
  .rating-divider { display: none; }

  /* Misc */
  .navbar__mobile a { font-size: .8125rem; }
  .btn { padding: .875rem 1.5rem; }
}

/* ---- Small mobile (≤ 480px) ---- */
@media (max-width: 480px) {
  :root { --sp: 2.5rem 0; }

  .hero          { padding: 5rem 1rem 3rem; }
  .hero__inner img { height: 110px !important; }
  .hero h1       { font-size: clamp(1.625rem, 7.5vw, 2.25rem); }
  .hero__actions .btn { max-width: 100%; }

  .navbar__logo img { height: 44px; }
  .container    { padding: 0 1rem; }
  .area-grid    { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { max-width: 100%; }
  .page-hero    { padding: 6rem 1rem 2.5rem; }
  .contact-layout { gap: 2rem; }
  .proof-strip  { padding: 2.5rem 1rem; }
  .cta-banner   { padding: 2.5rem 1rem; }
  .footer       { padding: 3rem 1rem 1.5rem; }
  .review-card  { padding: 1.25rem; }
  .pkg__head    { padding: 1.375rem 1.25rem 1.25rem; }
  .pkg__body    { padding: 1.25rem; }
  .inquiry-form { padding: 1.5rem 1.25rem; }
}
