/* ── LORNA HOWELL · SHARED STYLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --gold-pale: #F5EDD6;
  --cream: #FAF6EE;
  --cream-dark: #F0E8D5;
  --brown: #5C4A2A;
  --brown-light: #8B6F47;
  --brown-deep: #2C1F0E;
  --text: #2C1F0E;
  --text-muted: #7A6245;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(250,246,238,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600; color: var(--brown);
  letter-spacing: 0.03em; text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 1.6rem; list-style: none; }
.nav-links a {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--brown-light);
  text-decoration: none; transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--white);
  padding: 0.5rem 1.3rem; border-radius: 2px;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none; transition: background 0.3s;
}
.nav-cta:hover { background: var(--brown); }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  background: var(--gold); color: var(--white);
  padding: 0.85rem 2rem; border-radius: 2px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none; transition: 0.3s;
}
.btn-gold:hover { background: var(--brown); }
.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold); color: var(--gold);
  padding: 0.85rem 2rem; border-radius: 2px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none; transition: 0.3s;
}
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-outline-light {
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.6); color: var(--gold-light);
  padding: 0.85rem 2rem; border-radius: 2px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none; transition: 0.3s;
}
.btn-outline-light:hover { border-color: var(--gold-light); color: var(--cream); }

/* ── SECTION COMMONS ── */
section { padding: 100px 5%; }
.section-tag {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-tag::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.section-tag.light { color: var(--gold-light); }
.section-tag.light::before { background: var(--gold-light); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.15; color: var(--brown);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--gold-light); }
.divider { width: 50px; height: 2px; background: var(--gold); margin: 1.2rem 0 1.8rem; }
.divider.light { background: var(--gold-light); }

/* ── HERO SHARED ── */
.page-hero {
  min-height: 60vh;
  background: linear-gradient(135deg, #2C1F0E 0%, #5C4A2A 55%, #8B6F47 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 140px 5% 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 2; max-width: 760px; }
.page-hero-eyebrow {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem;
}
.page-hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300; line-height: 1.08; color: var(--cream);
  margin-bottom: 1.2rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p {
  font-size: 1rem; font-weight: 300; line-height: 1.8;
  color: rgba(245,237,214,0.72); max-width: 580px; margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── VALUATION CTA BAND ── */
.valuation-band {
  background: var(--gold);
  padding: 50px 5%;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.valuation-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300; color: var(--white); line-height: 1.2;
}
.valuation-band h2 em { font-style: italic; }
.valuation-band p { font-size: 0.88rem; color: rgba(255,255,255,0.82); font-weight: 300; margin-top: 0.4rem; }
.btn-white {
  display: inline-block;
  background: var(--white); color: var(--brown);
  padding: 0.9rem 2.2rem; border-radius: 2px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none; transition: 0.3s; white-space: nowrap;
}
.btn-white:hover { background: var(--brown-deep); color: var(--white); }

/* ── PROOF STRIP ── */
.proof-strip {
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  padding: 36px 5%;
  display: flex; justify-content: center; gap: 0;
}
.proof-item {
  flex: 1; max-width: 200px; text-align: center;
  padding: 0 1.5rem;
  border-right: 1px solid var(--cream-dark);
}
.proof-item:last-child { border-right: none; }
.proof-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 600; color: var(--gold); line-height: 1;
}
.proof-label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.3rem; }

/* ── FAQ / AEO ── */
.faq-section { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.faq-item {
  background: var(--white); padding: 2rem;
  border-left: 3px solid var(--gold); border-radius: 0 4px 4px 0;
}
.faq-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400; color: var(--brown); margin-bottom: 0.75rem;
}
.faq-item p { font-size: 0.87rem; line-height: 1.8; color: var(--text-muted); font-weight: 300; }

/* ── CONTACT FORM ── */
.contact-section { background: linear-gradient(135deg, #2C1F0E 0%, #5C4A2A 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; margin-top: 3rem; }
.contact-info-col p { font-size: 0.95rem; font-weight: 300; line-height: 1.8; color: rgba(245,237,214,0.7); margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
  width: 38px; height: 38px; border-radius: 2px;
  border: 1px solid rgba(201,168,76,0.35);
  display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0;
}
.contact-item-text { font-size: 0.83rem; color: rgba(245,237,214,0.68); line-height: 1.5; }
.contact-item-text strong { color: var(--gold-light); display: block; font-weight: 500; margin-bottom: 0.1rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
  font-size: 0.67rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 500;
}
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 2px; padding: 0.8rem 1rem;
  color: var(--cream); font-family: 'Jost', sans-serif;
  font-size: 0.87rem; font-weight: 300;
  transition: border-color 0.3s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(245,237,214,0.3); }
.form-group select option { background: var(--brown-deep); }
.form-group textarea { height: 100px; resize: none; }
.form-submit {
  background: var(--gold); color: var(--white); border: none;
  padding: 1rem 2rem; border-radius: 2px; cursor: pointer;
  font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; transition: 0.3s; width: 100%;
}
.form-submit:hover { background: var(--gold-light); color: var(--brown); }

/* ── FOOTER ── */
footer {
  background: #1A1008;
  padding: 3rem 5% 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  margin-bottom: 2rem;
}
.footer-brand p { font-size: 0.82rem; color: rgba(245,237,214,0.4); line-height: 1.7; margin-top: 0.75rem; max-width: 260px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--cream); }
.footer-logo span { color: var(--gold); }
.footer-col h4 { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.82rem; color: rgba(245,237,214,0.4); text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.72rem; color: rgba(245,237,214,0.25); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .faq-grid, .contact-grid, .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .valuation-band { flex-direction: column; }
  .proof-strip { flex-wrap: wrap; }
  .proof-item { min-width: 120px; border-right: none; border-bottom: 1px solid var(--cream-dark); padding: 1rem; }
  .proof-item:last-child { border-bottom: none; }
  .nav-links { display: none; }
}

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp 0.65s forwards; }
.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.22s; }
.fade-up:nth-child(3) { animation-delay: 0.36s; }
.fade-up:nth-child(4) { animation-delay: 0.5s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
