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

:root {
  --black:        #0C0C0C;
  --charcoal:     #1C1C1C;
  --dark:         #2E2C2A;
  --mid:          #4A4644;
  --light:        #7A736E;
  --pale:         #C8C3BC;
  --border:       #DDD8D2;
  --border-light: #EDEAE6;
  --off-white:    #F8F5F1;
  --warm:         #FAF8F6;
  --white:        #FFFFFF;
  --gold:         #8B6E3C;
  --gold-light:   #B8934A;
  --gold-pale:    #EFE4D0;
  --shadow-sm:    0 1px 8px rgba(12,12,12,0.06);
  --shadow-md:    0 4px 24px rgba(12,12,12,0.09);
  --shadow-lg:    0 16px 48px rgba(12,12,12,0.12);
  --transition:   0.28s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.7;
  background: var(--white);
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── TYPOGRAPHY ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--black);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 400; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.5rem; font-weight: 400; }
h4 { font-size: 1.1rem; font-weight: 500; letter-spacing: 0.01em; }
p  { color: var(--mid); font-weight: 400; }

strong { font-weight: 500; color: var(--dark); }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--light);
  max-width: 560px;
  margin: 0.75rem auto 0;
  text-align: center;
  font-weight: 300;
}

/* Fine horizontal rule (replaces gold-rule) */
.rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem 0;
}
.rule.centered { margin: 1.25rem auto; }

/* Legacy class support */
.gold-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem 0;
  border-radius: 0;
}
.gold-rule.centered { margin: 1.25rem auto; }

/* ── LAYOUT ───────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
.section    { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.bg-cream   { background: var(--off-white); }
.bg-warm    { background: var(--warm); }
.bg-black   { background: var(--black); }
.bg-white   { background: var(--white); }

/* ── NAVIGATION ───────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 82px;
  width: auto;
}
.nav__logo-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.04em;
}
.nav__logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__link {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: width var(--transition);
}
.nav__link:hover        { color: var(--black); }
.nav__link:hover::after { width: 100%; }
.nav__link.active       { color: var(--black); }
.nav__link.active::after{ width: 100%; }

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-black:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-outline-black {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-black:hover {
  background: var(--black);
  color: var(--white);
}
.btn-outline-navy {
  background: transparent;
  color: var(--black);
  border-color: var(--dark);
}
.btn-outline-navy:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 0.82rem; }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.68) 0%,
      rgba(0,0,0,0.58) 55%,
      rgba(0,0,0,0.72) 100%),
    url('https://images.pexels.com/photos/5865384/pexels-photo-5865384.jpeg?auto=compress&cs=tinysrgb&w=1920')
    center/cover no-repeat;
  color: var(--white);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: #FFFFFF;
  margin-bottom: 1.75rem;
  font-weight: 400;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero__sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  color: rgba(255,255,255,0.92);
  max-width: 600px;
  margin-bottom: 0.75rem;
  line-height: 1.65;
  font-style: italic;
  font-weight: 300;
}
.hero__tagline {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 3rem;
}
.hero__ctas { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(1.1); }
}

/* Smaller page hero */
.page-hero {
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,0.72) 0%,
      rgba(0,0,0,0.45) 100%),
    url('https://images.pexels.com/photos/5865384/pexels-photo-5865384.jpeg?auto=compress&cs=tinysrgb&w=1920')
    center/cover no-repeat;
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 520px; font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; }
.page-hero__deco { display: none; }

/* ── CARDS ────────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.card--gold-top { border-top: 2px solid var(--gold); }
.card--navy-top { border-top: 2px solid var(--black); }
.card--dark {
  background: var(--charcoal);
  border-color: var(--dark);
  color: var(--white);
}
.card--dark h3, .card--dark h4 { color: var(--white); }
.card--dark p { color: rgba(220,215,208,0.75); }

.card__icon {
  width: 44px;
  height: 44px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 400;
  border: 1px solid var(--border);
}

/* ── GRIDS ────────────────────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

@media (max-width: 900px) {
  .grid-3, .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .grid-4          { grid-template-columns: repeat(2, 1fr); }
  .grid-2          { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4, .grid-6 { grid-template-columns: 1fr; }
}

/* ── STEPS ────────────────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; border: 1px solid var(--border-light); }
.step {
  background: var(--white);
  border-right: 1px solid var(--border-light);
  transition: background var(--transition);
}
.step:last-child { border-right: none; }
.step:hover { background: var(--off-white); }
.step__header {
  background: var(--black);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.step__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  line-height: 1;
}
.step__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.step__body { padding: 2rem; }
.step__body h3 { margin-bottom: 0.75rem; }
.step__body p  { font-size: 0.93rem; }
@media (max-width: 780px) {
  .steps { grid-template-columns: 1fr; }
  .step  { border-right: none; border-bottom: 1px solid var(--border-light); }
  .step:last-child { border-bottom: none; }
}

/* ── STAT BANNER ──────────────────────────────────────────────────────────── */
.stats {
  background: var(--black);
  padding: 5rem 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.06);
}
.stat {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(255,255,255,0.03); }
.stat__num  {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.stat__label{ font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; color: rgba(255,255,255,0.55); margin-bottom: 0.3rem; text-transform: uppercase; }
.stat__sub  { font-size: 0.75rem; color: rgba(255,255,255,0.3); font-style: italic; font-family: 'Cormorant Garamond', serif; }
.stats__note{ text-align: center; margin-top: 2rem; font-size: 0.78rem; color: rgba(255,255,255,0.2); font-style: italic; font-family: 'Cormorant Garamond', serif; }
@media (max-width: 700px) { .stats__grid { grid-template-columns: repeat(2,1fr); } }

/* ── CATEGORY GRID ────────────────────────────────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--border-light); }
.cat-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  text-align: left;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition);
  cursor: default;
  position: relative;
}
.cat-card:nth-child(4n) { border-right: none; }
.cat-card:nth-last-child(-n+4) { border-bottom: none; }
.cat-card:hover { background: var(--off-white); }
.cat-card__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--pale);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.cat-card h4 {
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.45;
}
@media (max-width: 900px) {
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .cat-card:nth-child(2n) { border-right: none; }
  .cat-card:nth-child(4n) { border-right: 1px solid var(--border-light); }
}
@media (max-width: 500px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { border-right: none; }
}

/* ── CTA BANNER ───────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--off-white);
  padding: 6rem 0;
  text-align: center;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.cta-banner h2 { color: var(--black); margin-bottom: 1.25rem; }
.cta-banner p  { color: var(--mid); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.25rem; }
.cta-banner__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── SECTION HEADINGS ─────────────────────────────────────────────────────── */
.section-head { text-align: center; margin-bottom: 4rem; }
.section-head h2 { margin-bottom: 0.5rem; }

/* ── FEATURE ROW ──────────────────────────────────────────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border-light);
}
.feature-row:last-child { border-bottom: none; }
.feature-row.reverse    { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-row__icon {
  width: 60px;
  height: 60px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  border: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
}
.feature-row h3 { font-size: 1.8rem; margin-bottom: 0.75rem; }
.feature-row p  { font-size: 0.98rem; line-height: 1.8; margin-bottom: 1rem; }
.feature-visual {
  background: var(--black);
  padding: 2.75rem;
  color: var(--white);
}
.feature-visual h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.feature-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.93rem;
  color: rgba(220,215,208,0.8);
  font-weight: 300;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before { content: '—'; color: var(--gold); font-weight: 400; flex-shrink: 0; }
@media (max-width: 800px) {
  .feature-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-row.reverse { direction: ltr; }
}

/* ── TWO-COLUMN VALUE ─────────────────────────────────────────────────────── */
.value-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border-light); }
.value-col {
  background: var(--white);
  border-right: 1px solid var(--border-light);
}
.value-col:last-child { border-right: none; }
.value-col__head {
  background: var(--black);
  padding: 1.25rem 2rem;
}
.value-col__head h3 { color: var(--white); font-size: 1.1rem; font-family: 'Inter', sans-serif; font-weight: 400; letter-spacing: 0.03em; }
.value-col__body { padding: 2rem; }
.value-col__body li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.6;
  font-weight: 300;
}
.value-col__body li:last-child { border-bottom: none; }
.value-col__body li::before { content: '—'; color: var(--gold); flex-shrink: 0; font-weight: 400; margin-top: 1px; }
@media (max-width: 700px) { .value-cols { grid-template-columns: 1fr; } .value-col { border-right: none; border-bottom: 1px solid var(--border-light); } }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq { max-width: 720px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--border-light);
  padding: 2rem 0;
}
.faq__item:first-child { border-top: 1px solid var(--border-light); }
.faq__q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.faq__q::before {
  content: 'Q';
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
  text-transform: uppercase;
}
.faq__a { padding-left: 1.75rem; font-size: 0.93rem; color: var(--mid); line-height: 1.8; font-weight: 300; }

/* ── CONTACT FORM ─────────────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 5rem; align-items: start; }
@media (max-width: 820px) { .contact-layout { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 2px rgba(12,12,12,0.05);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }

.contact-info-card {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.contact-info-card h3 { font-size: 1.1rem; margin-bottom: 1.25rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  font-size: 0.92rem;
  color: var(--mid);
  border-bottom: 1px solid var(--border-light);
  font-weight: 300;
}
.contact-item:last-child { border-bottom: none; }
.contact-item__icon {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  min-width: 40px;
  font-family: 'Inter', sans-serif;
}

.steps-expect { counter-reset: expect; }
.step-expect {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 0.9rem 0;
  counter-increment: expect;
  border-bottom: 1px solid var(--border-light);
}
.step-expect:last-child { border-bottom: none; }
.step-expect::before {
  content: counter(expect);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--pale);
  flex-shrink: 0;
  line-height: 1.2;
  min-width: 24px;
}
.step-expect__text { font-size: 0.92rem; font-weight: 300; }
.step-expect__text strong { color: var(--black); display: block; font-size: 0.88rem; font-weight: 500; margin-bottom: 0.2rem; font-family: 'Inter', sans-serif; letter-spacing: 0.02em; }

/* ── INTEREST GRID (contact form) ─────────────────────────────────────────── */
.interest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 0.4rem;
}
.interest-option { display: none; }
.interest-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--mid);
  transition: all 0.2s ease;
  user-select: none;
  letter-spacing: 0.02em;
}
.interest-label::before {
  content: '';
  width: 14px; height: 14px;
  min-width: 14px;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: all 0.2s ease;
}
.interest-option:checked + .interest-label {
  border-color: var(--black);
  background: rgba(12,12,12,0.03);
  color: var(--black);
}
.interest-option:checked + .interest-label::before {
  background: var(--gold);
  border-color: var(--gold);
}

/* Form success */
.form-success {
  display: none;
  background: #F7FAF7;
  border: 1px solid #C3D9C3;
  padding: 2rem;
  margin-top: 1.5rem;
  text-align: center;
  color: #2D5A2D;
}
.form-success.show { display: block; }
.form-success h3   { font-size: 1.1rem; margin-bottom: 0.5rem; color: #2D5A2D; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: rgba(220,215,208,0.5);
  padding: 4rem 0 2.5rem;
  border-top: 2px solid var(--gold);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}
.footer__logo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.3rem;
  letter-spacing: 0.04em;
}
.footer__logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__desc { font-size: 0.88rem; line-height: 1.75; max-width: 300px; font-weight: 300; }
.footer__heading {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(220,215,208,0.35);
  margin-bottom: 1.25rem;
}
.footer__links li { padding: 0.35rem 0; }
.footer__links a {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(220,215,208,0.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(220,215,208,0.25);
  flex-wrap: wrap;
  gap: 0.5rem;
  letter-spacing: 0.04em;
}
@media (max-width: 700px) { .footer__grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ── UTILITIES ────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-black  { color: var(--black); }
.text-white  { color: var(--white); }
.text-mid    { color: var(--mid); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.pill {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(139,110,60,0.1);
  color: var(--gold);
  border: 1px solid rgba(139,110,60,0.25);
}

/* ── PREMIUM PILL ─────────────────────────────────────────────────────────── */
.premium-pill {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  vertical-align: middle;
  margin-left: 0.75rem;
}

/* ── DIVIDER BAR ──────────────────────────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border-light);
  margin: 0;
}

/* ── QUICK CONTACT STRIP ─────────────────────────────────────────────────── */
.contact-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border-light);
}
.contact-strip__item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border-light);
  text-align: center;
}
.contact-strip__item:last-child { border-right: none; }
@media (max-width: 700px) {
  .contact-strip { grid-template-columns: 1fr; }
  .contact-strip__item { border-right: none; border-bottom: 1px solid var(--border-light); }
  .contact-strip__item:last-child { border-bottom: none; }
}
