/* ELISE HARTWELL — Warm Luxury Editorial (Improved Readability) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

:root {
  --navy:    #0f1a2e;
  --navy-2:  #1a2d4a;
  --ivory:   #f5f0e8;
  --ivory-2: #ede6d6;
  --gold:    #b8965a;
  --gold-l:  #d4b07a;
  --muted:   #5a5a5a;      /* darker than before (#7a7a7a) */
  --rule:    #ddd5c4;
  --white:   #faf8f4;

  --display: 'Cormorant Garamond', Georgia, serif;
  --mark:    'Cormorant SC', Georgia, serif;
  --body:    'Outfit', sans-serif;
  --max-w:   1200px;
  --trans:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body { background: var(--ivory); color: #1a1a1a; font-family: var(--body); }
.container { width: 90%; max-width: var(--max-w); margin: 0 auto; }
.section { padding: 120px 0; }

.label { 
  font-family: var(--mark); 
  font-size: 0.8rem;        /* increased from 0.65rem */
  letter-spacing: 0.2em; 
  color: var(--gold); 
  display: block; 
  margin-bottom: 1.2rem; 
}
.section__heading { 
  font-family: var(--display); 
  font-size: clamp(2.5rem, 5vw, 4rem); /* slightly larger */
  font-weight: 400;          /* bolder */
  line-height: 1.12; 
  color: var(--navy); 
  margin-bottom: 1.6rem; 
}
.section__heading em { 
  font-style: italic; 
  color: var(--gold); 
}
.body-text { 
  font-size: 1.05rem;        /* increased from 0.95rem */
  line-height: 1.85; 
  color: #2c2c2c;            /* darker, not grey */
  font-weight: 350; 
  max-width: 520px; 
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* BUTTONS */
.btn { 
  font-family: var(--mark); 
  font-size: 0.75rem;        /* increased */
  letter-spacing: 0.16em; 
  padding: 1rem 2.2rem; 
  border: 1px solid transparent; 
  display: inline-block; 
  transition: all var(--trans); 
}
.btn--navy { background: var(--navy); color: var(--ivory); border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-2); border-color: var(--gold); color: var(--gold-l); }
.btn--ghost { background: transparent; color: rgba(245,240,232,0.9); border-color: rgba(245,240,232,0.4); }
.btn--ghost:hover { border-color: var(--gold-l); color: var(--gold-l); }
.btn--outline { background: transparent; color: var(--navy); border-color: rgba(15,26,46,0.3); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--full { width: 100%; text-align: center; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.8rem 5%; transition: background var(--trans), padding var(--trans); }
.nav.scrolled { background: rgba(15,26,46,0.97); padding: 1rem 5%; backdrop-filter: blur(10px); }
.nav__logo { font-family: var(--display); font-size: 1.4rem; font-weight: 400; letter-spacing: 0.04em; color: var(--ivory); }
.nav__links { display: flex; align-items: center; gap: 2.5rem; }
.nav__links a { font-family: var(--mark); font-size: 0.7rem; letter-spacing: 0.14em; color: rgba(245,240,232,0.8); transition: color var(--trans); }
.nav__links a:hover { color: var(--gold-l); }
.nav__cta { border: 1px solid rgba(184,150,90,0.6) !important; padding: 0.5rem 1.3rem; color: var(--gold) !important; }
.nav__cta:hover { background: var(--gold) !important; color: var(--navy) !important; }
.nav__toggle { display: none; flex-direction: column; gap: 6px; padding: 4px; }
.nav__toggle span { display: block; width: 22px; height: 1px; background: var(--ivory); transition: all var(--trans); }

/* HERO — SPLIT */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; background: var(--navy); overflow: hidden; }

.hero__left {
  display: flex; align-items: center;
  padding: 0 6% 0 5%;
  position: relative;
}
.hero__left::after {
  content: '';
  position: absolute; right: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184,150,90,0.3), transparent);
}

.hero__left::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 70px, rgba(184,150,90,0.05) 70px, rgba(184,150,90,0.05) 71px),
    repeating-linear-gradient(90deg, transparent, transparent 70px, rgba(184,150,90,0.05) 70px, rgba(184,150,90,0.05) 71px);
  pointer-events: none;
}

.hero__content { position: relative; z-index: 1; padding: 8rem 0 6rem; }

.hero__eyebrow { font-family: var(--mark); font-size: 0.7rem; letter-spacing: 0.2em; color: var(--gold); display: block; margin-bottom: 2rem; }

.hero__heading { font-family: var(--display); font-size: clamp(3rem, 5vw, 5rem); font-weight: 400; line-height: 1.08; color: var(--ivory); margin-bottom: 2rem; }
.hero__heading em { font-style: italic; color: var(--gold-l); }

.hero__sub { font-size: 1.1rem; line-height: 1.8; color: rgba(245,240,232,0.85); font-weight: 350; max-width: 440px; margin-bottom: 2.8rem; }

.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero__social-proof { display: flex; align-items: center; gap: 2rem; padding-top: 2.5rem; border-top: 1px solid rgba(184,150,90,0.25); }
.hero__sp-item { display: flex; flex-direction: column; gap: 0.3rem; }
.hero__sp-num { font-family: var(--display); font-size: 1.8rem; font-weight: 400; color: var(--gold-l); line-height: 1; }
.hero__sp-label { font-size: 0.75rem; color: rgba(245,240,232,0.7); font-weight: 400; }
.hero__sp-div { width: 1px; height: 36px; background: rgba(184,150,90,0.3); }

/* HERO RIGHT (unchanged visual panel) */
.hero__right { position: relative; display: flex; align-items: center; justify-content: center; padding: 8rem 5% 6rem 6%; }
.hero__visual { width: 100%; max-width: 420px; display: flex; flex-direction: column; gap: 1.5rem; }
.hero__visual-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 70% at 60% 50%, rgba(184,150,90,0.1) 0%, transparent 60%); pointer-events: none; }
.hero__visual-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(184,150,90,0.3); padding: 2.5rem; position: relative; z-index: 1; }
.hero__visual-card-label { font-family: var(--mark); font-size: 0.65rem; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 1rem; }
.hero__visual-card-heading { font-family: var(--display); font-size: 2rem; font-weight: 400; color: var(--ivory); line-height: 1.15; margin-bottom: 1.5rem; }
.hero__visual-card-stat { display: flex; align-items: center; gap: 0.8rem; font-family: var(--mark); font-size: 0.7rem; letter-spacing: 0.1em; color: rgba(245,240,232,0.6); margin-bottom: 1.5rem; }
.hero__visual-card-dot { color: var(--gold); }
.hero__visual-card-bar { width: 100%; height: 2px; background: rgba(255,255,255,0.1); position: relative; margin-bottom: 0.6rem; }
.hero__visual-card-fill { height: 100%; background: var(--gold); }
.hero__visual-card-sub { font-size: 0.7rem; color: rgba(245,240,232,0.5); }
.hero__visual-quote { border-left: 2px solid var(--gold); padding-left: 1.5rem; position: relative; z-index: 1; }
.hero__visual-quote p { font-family: var(--display); font-size: 1.1rem; font-style: italic; color: rgba(245,240,232,0.6); line-height: 1.6; font-weight: 300; }

/* DIVIDER STRIP */
.divider-strip { background: var(--navy-2); border-top: 1px solid rgba(184,150,90,0.15); border-bottom: 1px solid rgba(184,150,90,0.15); padding: 1.5rem 0; overflow: hidden; }
.divider-strip__inner { width: 90%; max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.divider-strip__inner span { font-family: var(--mark); font-size: 0.7rem; letter-spacing: 0.16em; color: rgba(245,240,232,0.6); }
.divider-strip__dot { color: var(--gold) !important; font-size: 0.6rem !important; }

/* ABOUT */
.about { background: var(--ivory); }
.about__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 7rem; align-items: center; }
.about__image-col { position: relative; }
.about__portrait-wrap { width: 100%; aspect-ratio: 3/4; overflow: hidden; }
.about__portrait { width: 100%; height: 100%; background: linear-gradient(160deg, var(--navy-2) 0%, var(--navy) 100%); position: relative; }
.about__portrait::before { content: 'Photo'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 0.8rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.2); }
.about__badge { position: absolute; bottom: -2rem; right: -2rem; background: var(--gold); padding: 1.8rem 2rem; text-align: center; }
.about__badge-num { font-family: var(--display); font-size: 2.5rem; font-weight: 500; color: var(--navy); line-height: 1; }
.about__badge-label { font-size: 0.7rem; color: var(--navy); margin-top: 0.3rem; opacity: 0.8; font-weight: 500; }
.about__text-col .body-text + .body-text { margin-top: 1.2rem; }

/* OFFER */
.offer { background: var(--navy); }
.offer .label { color: var(--gold); }
.offer .section__heading { color: var(--ivory); }
.offer .section__heading em { color: var(--gold-l); }
.offer__header { text-align: center; margin-bottom: 5rem; }
.offer__header .section__heading { margin: 0 auto 1.2rem; }
.offer__sub { font-size: 1rem; line-height: 1.75; color: rgba(245,240,232,0.8); max-width: 560px; margin: 0 auto; font-weight: 350; }
.offer__modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.08); }
.offer__module { background: var(--navy); padding: 2.8rem 2.4rem; display: flex; gap: 1.5rem; border: 1px solid rgba(184,150,90,0.12); transition: background var(--trans), border-color var(--trans); }
.offer__module:hover { background: var(--navy-2); border-color: rgba(184,150,90,0.3); }
.offer__module-num { font-family: var(--display); font-size: 2.8rem; font-weight: 400; color: rgba(184,150,90,0.3); line-height: 1; flex-shrink: 0; }
.offer__module h3 { font-family: var(--display); font-size: 1.4rem; font-weight: 500; color: var(--ivory); margin-bottom: 0.7rem; }
.offer__module p { font-size: 0.95rem; line-height: 1.75; color: rgba(245,240,232,0.7); font-weight: 350; }
.offer__investment { text-align: center; margin-top: 5rem; border: 1px solid rgba(184,150,90,0.3); padding: 4rem; display: inline-block; width: 100%; max-width: 500px; margin-left: auto; margin-right: auto; display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.offer__investment-label { font-family: var(--mark); font-size: 0.7rem; letter-spacing: 0.2em; color: var(--gold); }
.offer__investment-price { font-family: var(--display); font-size: 5rem; font-weight: 400; color: var(--ivory); line-height: 1; }
.offer__investment-note { font-size: 0.85rem; color: rgba(245,240,232,0.5); margin-bottom: 1rem; }

/* TESTIMONIALS */
.testimonials { background: var(--ivory-2); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.testimonial { background: var(--ivory); padding: 2.8rem; border-bottom: 3px solid var(--gold); }
.testimonial__text { font-family: var(--display); font-size: 1.1rem; font-style: italic; line-height: 1.75; color: #1e1e1e; font-weight: 400; margin-bottom: 2rem; }
.testimonial__author { display: flex; align-items: center; gap: 1rem; }
.testimonial__av { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.testimonial__av--1 { background: linear-gradient(135deg, var(--navy-2), var(--navy)); }
.testimonial__av--2 { background: linear-gradient(135deg, var(--navy), var(--navy-2)); }
.testimonial__av--3 { background: linear-gradient(135deg, #1a2540, var(--navy-2)); }
.testimonial__name { font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.testimonial__role { font-size: 0.75rem; color: var(--muted); margin-top: 0.2rem; }

/* FAQ */
.faq { background: var(--ivory); }
.faq__grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 7rem; align-items: start; }
.faq__left { position: sticky; top: 100px; }
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; font-size: 1rem; font-weight: 500; color: var(--navy); text-align: left; gap: 1rem; transition: color var(--trans); }
.faq__q:hover { color: var(--gold); }
.faq__q span { color: var(--gold); font-size: 1.4rem; font-weight: 300; transition: transform var(--trans); flex-shrink: 0; }
.faq__q[aria-expanded="true"] span { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq__a.open { max-height: 200px; padding-bottom: 1.2rem; }
.faq__a p { font-size: 0.95rem; line-height: 1.8; color: #3a3a3a; font-weight: 350; }

/* CONTACT */
.contact { background: var(--navy); }
.contact .label { color: var(--gold); }
.contact .section__heading { color: var(--ivory); }
.contact .section__heading em { color: var(--gold-l); }
.contact .body-text { color: rgba(245,240,232,0.8); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: start; }
.contact__caveat { margin-top: 2rem; font-family: var(--display); font-size: 1rem; font-style: italic; color: rgba(245,240,232,0.5); border-left: 2px solid var(--gold); padding-left: 1.2rem; line-height: 1.6; }

form { display: flex; flex-direction: column; gap: 1.5rem; }
.form__group { display: flex; flex-direction: column; gap: 0.5rem; }
.form__group label { font-family: var(--mark); font-size: 0.65rem; letter-spacing: 0.14em; color: rgba(245,240,232,0.7); }
.form__group input, .form__group select, .form__group textarea { background: rgba(255,255,255,0.06); border: none; border-bottom: 1px solid rgba(255,255,255,0.15); color: var(--ivory); font-family: var(--body); font-size: 0.95rem; font-weight: 350; padding: 0.75rem 0; outline: none; transition: border-color var(--trans); border-radius: 0; -webkit-appearance: none; width: 100%; }
.form__group input::placeholder, .form__group textarea::placeholder { color: rgba(245,240,232,0.3); }
.form__group input:focus, .form__group select:focus, .form__group textarea:focus { border-bottom-color: var(--gold); }
.form__group textarea { resize: vertical; }
.form__group select option { background: var(--navy); }
.form__note { font-size: 0.7rem; color: rgba(245,240,232,0.4); text-align: center; }

.form__success { display: none; padding: 3rem 0; }
.form__success.visible { display: block; }
.form__success-icon { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--gold); margin-bottom: 1.5rem; }
.form__success h3 { font-family: var(--display); font-size: 2.2rem; font-weight: 400; color: var(--ivory); margin-bottom: 0.5rem; }
.form__success p { font-size: 0.9rem; color: rgba(245,240,232,0.6); }

/* FOOTER */
.footer { background: #060f1c; padding: 4.5rem 0 2.5rem; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; text-align: center; }
.footer__logo { font-family: var(--display); font-size: 1.8rem; font-weight: 400; color: var(--ivory); letter-spacing: 0.03em; }
.footer__tagline { font-family: var(--mark); font-size: 0.65rem; letter-spacing: 0.16em; color: var(--gold); }
.footer__nav { display: flex; gap: 2rem; }
.footer__nav a { font-family: var(--mark); font-size: 0.65rem; letter-spacing: 0.1em; color: rgba(245,240,232,0.4); transition: color var(--trans); }
.footer__nav a:hover { color: var(--gold-l); }
.footer__legal { font-size: 0.65rem; color: rgba(245,240,232,0.2); margin-top: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.04); width: 100%; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__right { display: none; }
  .hero__left { padding: 0 5%; }
  .about__grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about__badge { bottom: -1rem; right: -0.5rem; }
  .offer__modules { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__grid .testimonial:last-child { display: none; }
  .faq__grid { grid-template-columns: 1fr; gap: 3rem; }
  .faq__left { position: static; }
  .contact__inner { grid-template-columns: 1fr; gap: 3.5rem; }
}
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav__links { position: fixed; top: 0; right: -100%; width: 72%; max-width: 300px; height: 100vh; background: rgba(15,26,46,0.98); flex-direction: column; justify-content: center; gap: 2.5rem; padding: 2rem; transition: right var(--trans); border-left: 1px solid rgba(184,150,90,0.12); }
  .nav__links.open { right: 0; }
  .nav__toggle { display: flex; }
  .offer__modules { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__grid .testimonial:last-child { display: block; }
  .hero__social-proof { flex-wrap: wrap; gap: 1.5rem; }
  .divider-strip__inner { gap: 1rem; }
}
