/* ===== ASCENSION MOVING — EDITORIAL LUXURY ===== */
:root {
  --navy: #0A1628;
  --navy-deep: #060E1A;
  --vermillion: #D94825;
  --gold: #D4A740;
  --gold-lt: #E8C36A;
  --cream: #FAF8F4;
  --warm: #F5F0E8;
  --text: #2A2A2A;
  --white: #FFFFFF;
  --max-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text); background: var(--cream);
  line-height: 1.75; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
h1,h2,h3,h4 { line-height: 1.15; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.slide-left { opacity: 0; transform: translateX(-50px); transition: opacity .8s ease, transform .8s ease; }
.slide-left.visible { opacity: 1; transform: translateX(0); }
.slide-right { opacity: 0; transform: translateX(50px); transition: opacity .8s ease, transform .8s ease; }
.slide-right.visible { opacity: 1; transform: translateX(0); }

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--vermillion), var(--gold));
  z-index: 9999; transition: width .1s linear;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 100;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: var(--gold); border: 1px solid rgba(212,167,64,.25);
  font-size: 1.2rem; cursor: pointer;
  opacity: 0; transform: translateY(20px);
  transition: all .3s ease; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--navy); }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,.7); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(212,167,64,.08); transition: all .4s;
}
.nav.scrolled { background: rgba(10,22,40,.97); box-shadow: 0 4px 30px rgba(0,0,0,.25); border-bottom-color: rgba(212,167,64,.2); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700;
  color: var(--white); letter-spacing: .12em; text-transform: uppercase;
}
.brand-accent { color: var(--vermillion); }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a {
  font-family: 'Source Sans 3', sans-serif; font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.6); letter-spacing: .08em; text-transform: uppercase;
  transition: color .25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: width .3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-phone a { color: var(--gold-lt); font-weight: 600; font-size: .85rem; }
.btn-cta {
  display: inline-block; padding: .65rem 1.5rem;
  background: var(--vermillion); color: var(--white);
  font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  border-radius: 6px; border: none; cursor: pointer; transition: transform .25s, box-shadow .25s;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(217,72,37,.4); }
.btn-cta::after { display: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(10,22,40,.98); backdrop-filter: blur(20px);
  padding: 1.5rem 2rem; flex-direction: column; gap: 1.25rem;
  border-bottom: 2px solid var(--vermillion);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,.85); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img, .hero-bg video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,14,26,.88) 0%, rgba(10,22,40,.7) 50%, rgba(6,14,26,.65) 100%);
}
.sound-toggle {
  position: absolute; bottom: 2rem; right: 2rem; z-index: 10;
  background: rgba(255,255,255,.12); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 50px;
  padding: .6rem 1.2rem; color: var(--white); cursor: pointer;
  font-family: 'Source Sans 3', sans-serif; font-size: .8rem;
  font-weight: 600; letter-spacing: .05em;
  transition: all .3s ease;
}
.sound-toggle:hover {
  background: rgba(255,255,255,.2); border-color: var(--gold);
}
.hero-content { position: relative; z-index: 2; padding: 10rem 0 6rem; width: 100%; }
.hero-label {
  font-family: 'JetBrains Mono', monospace; font-size: .82rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
}
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(3.2rem,6vw,5.5rem);
  font-weight: 700; color: var(--white); margin-bottom: 1.5rem; letter-spacing: -.02em;
  max-width: 700px;
}
.hero-content h1 em { font-style: italic; color: var(--gold-lt); }
.hero-sub {
  font-family: 'Source Sans 3', sans-serif; font-size: 1.2rem; font-weight: 300;
  color: rgba(255,255,255,.7); margin-bottom: 2.5rem; max-width: 480px; line-height: 1.6;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-cta--lg { padding: .85rem 2.2rem; font-size: .85rem; }
.btn-outline { display: inline-block; padding: .7rem 1.6rem; border: 1.5px solid rgba(212,167,64,.5); color: var(--gold); font-weight: 600; font-size: .85rem; letter-spacing: .05em; text-transform: uppercase; border-radius: 6px; transition: all .3s; }
.btn-outline--hero:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--navy); padding: 1.25rem 0; border-bottom: 1px solid rgba(212,167,64,.12); }
.trust-items { display: flex; justify-content: center; align-items: center; gap: 0; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: .6rem; padding: 0 2rem;
  font-family: 'JetBrains Mono', monospace; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7); font-weight: 500;
}
.trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.trust-divider { width: 1px; height: 16px; background: rgba(255,255,255,.12); }

/* ===== SECTION HEADERS ===== */
.section-header { margin-bottom: 3.5rem; }
.section-header--center { text-align: center; }
.section-label {
  font-family: 'JetBrains Mono', monospace; font-size: .82rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--vermillion);
  font-weight: 500; margin-bottom: .75rem;
}
.section-label--light { color: var(--gold-lt); }
.section-title {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem,3.5vw,2.8rem);
  font-weight: 700; color: var(--navy); margin-bottom: .75rem;
}
.section-title--light { color: var(--white); }
.section-desc { font-size: 1.05rem; color: #555; max-width: 560px; line-height: 1.7; }
.section-desc--light { color: rgba(255,255,255,.75); }
.section-rule { width: 48px; height: 2px; background: var(--gold); margin: 1.25rem auto 0; border-radius: 1px; }
.section-header:not(.section-header--center) .section-rule { margin-left: 0; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 6rem 0; background: var(--cream); }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: .5rem; }
.step-card { background: var(--white); border-radius: 16px; overflow: hidden; transition: transform .4s, box-shadow .4s; }
.step-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(10,22,40,.1); }
.step-img { aspect-ratio: 4/3; overflow: hidden; }
.step-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.step-card:hover .step-img img { transform: scale(1.05); }
.step-body { padding: 1.75rem; }
.step-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: .5rem; display: block;
}
.step-body h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: .5rem; }
.step-body p { font-size: .9rem; color: #666; line-height: 1.7; }

/* ===== SERVICES ===== */
.services { padding: 6rem 0; background: var(--warm); }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.service-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(10,22,40,.05); transition: all .4s; display: block;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(10,22,40,.1); }
.service-img { aspect-ratio: 3/2; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-body { padding: 1.5rem; }
.service-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: .4rem; }
.service-body p { font-size: .88rem; color: #666; line-height: 1.7; margin-bottom: .75rem; }
.service-link {
  font-family: 'JetBrains Mono', monospace; font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--vermillion); font-weight: 500;
}

/* ===== WHY ASCENSION ===== */
.why { padding: 6rem 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; }
.why-card { text-align: center; padding: 2rem 1.5rem; border-radius: 16px; transition: all .4s; }
.why-card:hover { background: var(--warm); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(10,22,40,.06); }
.why-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600;
  color: var(--gold); display: block; margin-bottom: 1rem;
}
.why-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: .75rem; }
.why-card p { font-size: .95rem; color: #555; line-height: 1.75; }

/* ===== PRICING ===== */
.pricing { padding: 6rem 0; background: var(--navy-deep); color: var(--white); position: relative; overflow: hidden; }
.pricing::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(212,167,64,.04), transparent 70%); }
.pricing .section-header { position: relative; z-index: 1; }
.pricing-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; max-width: 640px; position: relative; z-index: 1; }
.pricing .section-header:not(.section-header--center) + .pricing-cards { margin-top: 0; }
.pricing-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(212,167,64,.15);
  border-radius: 20px; padding: 3rem 2rem; text-align: center;
  transition: all .4s; backdrop-filter: blur(6px);
}
.pricing-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.pricing-label {
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.75); margin-bottom: 1rem;
}
.pricing-rate { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 700; color: var(--gold); line-height: 1; }
.pricing-dollar { font-size: 2rem; vertical-align: super; margin-right: 2px; }
.pricing-per { font-size: 1rem; color: rgba(255,255,255,.75); font-family: 'Source Sans 3', sans-serif; }
.pricing-note { font-size: .9rem; color: rgba(255,255,255,.75); margin-top: 2.5rem; max-width: 640px; position: relative; z-index: 1; }
.pricing-note a { color: var(--gold-lt); border-bottom: 1px solid rgba(232,195,106,.25); transition: border-color .3s; }
.pricing-note a:hover { border-color: var(--gold-lt); }

/* ===== ABOUT LOGAN ===== */
.about { position: relative; padding: 7rem 0; overflow: hidden; }
.about-bg { position: absolute; inset: 0; }
.about-bg img { width: 100%; height: 100%; object-fit: cover; }
.about-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,14,26,.92) 0%, rgba(10,22,40,.88) 100%); }
.about .container { position: relative; z-index: 2; }
.about-inner { display: grid; grid-template-columns: 300px 1fr; gap: 4rem; align-items: center; }
.about-photo-frame {
  width: 280px; height: 350px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(212,167,64,.15), rgba(217,72,37,.1));
  border: 1px solid rgba(212,167,64,.2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.about-photo-frame::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--vermillion), var(--gold)); border-radius: 0 0 16px 16px; }
.about-initials { font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 700; color: rgba(255,255,255,.08); }
.about-photo-caption { font-family: 'JetBrains Mono', monospace; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-top: 1rem; text-align: center; }
.about-headline { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--white); margin-bottom: 1.5rem; }
.about-quote {
  font-family: 'Cormorant Garamond', serif; font-size: 2.1rem; font-style: italic;
  color: var(--gold); line-height: 1.45; margin-bottom: 2rem;
  padding: 1rem 0; border: none; background: none; border-radius: 0;
  position: relative; max-width: 520px;
}
.about-quote::before { display: none; }
.about-quote::after { display: none; }
.quote-mark {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  color: rgba(212,167,64,.5); font-size: 3.2rem; line-height: 0; vertical-align: -0.3em;
}
.quote-open { margin-right: .1em; }
.quote-close { margin-left: .05em; }
.about-content p { font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 1.1rem; line-height: 1.85; max-width: 520px; }
.about-content p em { color: var(--vermillion); font-weight: 600; }
.about-sig {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-style: italic;
  color: var(--gold); margin-top: 1.5rem;
}

/* ===== BILL OF RIGHTS ===== */
.rights { padding: 6rem 0; background: var(--cream); }
.rights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 3rem; margin-top: 2.5rem; }
.rights-item { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.25rem; border-radius: 12px; transition: all .3s; }
.rights-item:hover { background: var(--white); box-shadow: 0 8px 20px rgba(10,22,40,.04); transform: translateX(4px); }
.rights-num {
  flex-shrink: 0; width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700;
}
.rights-item h4 { font-family: 'Source Sans 3', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; }
.rights-item p { font-size: 1rem; color: #444; line-height: 1.75; }
.rights-item:hover { background: var(--warm); box-shadow: 0 8px 20px rgba(10,22,40,.04); transform: translateX(4px); }

/* ===== REVIEWS ===== */
.reviews { padding: 6rem 0; background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.review-card {
  background: var(--warm); border-radius: 16px; padding: 2.25rem;
  border-left: 3px solid var(--gold); position: relative; transition: all .4s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(10,22,40,.07); }
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 3px; }
.review-card p { font-size: .95rem; color: #555; font-style: italic; margin-bottom: 1.25rem; line-height: 1.75; }
.review-author { font-weight: 700; font-size: .85rem; color: var(--navy); font-style: normal; display: block; }
.reviews-note { text-align: center; margin-top: 2.5rem; font-size: .95rem; color: #666; font-style: italic; }

/* ===== QUOTE FORM ===== */
.quote { padding: 6rem 0; background: var(--navy); position: relative; overflow: hidden; }
.quote::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 30% 70%, rgba(217,72,37,.05), transparent 60%); }
.quote .section-header { position: relative; z-index: 1; }
.quote-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  max-width: 720px; margin: 0 auto; position: relative; z-index: 1;
}
.form-group--full { grid-column: 1 / -1; }
.quote-form label {
  font-size: .82rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.75); margin-bottom: .5rem; display: block;
}
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; padding: .85rem 1rem; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15); border-radius: 8px; color: var(--white);
  font-family: 'Source Sans 3', sans-serif; font-size: .95rem; transition: all .3s;
}
.quote-form input::placeholder, .quote-form textarea::placeholder { color: rgba(255,255,255,.4); }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 3px rgba(212,167,64,.1);
}
.quote-form textarea { min-height: 110px; resize: vertical; }
.quote-form select option { background: var(--navy); color: var(--white); }
.btn-submit {
  grid-column: 1 / -1; padding: 1rem 2rem;
  background: var(--vermillion); color: var(--white);
  font-weight: 700; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase;
  border: none; border-radius: 8px; cursor: pointer; transition: all .3s; margin-top: .25rem;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(217,72,37,.4); }
.btn-submit:disabled { background: #3a6; cursor: default; transform: none; box-shadow: none; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-deep); padding: 4.5rem 0 2rem; border-top: 1px solid rgba(212,167,64,.08); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-brand {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700;
  color: var(--white); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.footer p { font-size: .92rem; color: rgba(255,255,255,.75); line-height: 1.8; }
.footer h4 {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white);
  margin-bottom: 1.25rem; position: relative; padding-bottom: .6rem;
}
.footer h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 24px; height: 2px; background: var(--gold); }
.footer a { color: rgba(255,255,255,.75); font-size: .95rem; transition: color .25s; display: inline-block; }
.footer a:hover { color: var(--gold); }
.footer-links { display: flex; flex-direction: column; gap: .7rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.55); }
.footer-genesis { font-size: .82rem; color: rgba(255,255,255,.55); }
.footer-genesis span { background: linear-gradient(135deg, #00C9A7, #00B4D8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; }

/* ===== INSTANT ESTIMATE ===== */
.estimate { padding: 6rem 0; background: var(--navy); position: relative; overflow: hidden; }
.estimate::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 60% 40%, rgba(212,167,64,.06), transparent 60%); }
.estimate .container { position: relative; z-index: 1; }
.estimate-calc {
  max-width: 680px; margin: 0 auto; background: rgba(255,255,255,.03);
  border: 1px solid rgba(212,167,64,.15); border-radius: 20px; padding: 2.5rem;
  backdrop-filter: blur(6px);
}
.estimate-inputs { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-bottom: 2rem; }
.estimate-field label {
  font-size: .78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.75); margin-bottom: .5rem; display: block;
  font-family: 'JetBrains Mono', monospace;
}
.estimate-field select {
  width: 100%; padding: .85rem 1rem; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1); border-radius: 8px; color: var(--white);
  font-family: 'Source Sans 3', sans-serif; font-size: .95rem; transition: all .3s;
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4A740' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.estimate-field select:focus { outline: none; border-color: var(--gold); background-color: rgba(255,255,255,.06); box-shadow: 0 0 0 3px rgba(212,167,64,.1); }
.estimate-field select option { background: var(--navy); color: var(--white); }
.estimate-result { text-align: center; padding: 1.75rem 0; border-top: 1px solid rgba(212,167,64,.1); border-bottom: 1px solid rgba(212,167,64,.1); }
.estimate-label-text { font-family: 'JetBrains Mono', monospace; font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-bottom: .5rem; }
.estimate-range { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1.1; }
.estimate-disclaimer { font-size: .85rem; color: rgba(255,255,255,.75); margin-top: .75rem; }
.estimate-cta { text-align: center; padding-top: 1.75rem; }
.estimate-cta p { font-size: .95rem; color: rgba(255,255,255,.75); margin-bottom: 1rem; }

/* ===== THE ASCENSION STANDARD BADGE ===== */
.standard { padding: 5rem 0; background: var(--warm); position: relative; overflow: hidden; }
.standard::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(212,167,64,.06) 0%, transparent 60%),
    repeating-conic-gradient(from 0deg, transparent 0deg 8deg, rgba(212,167,64,.015) 8deg 10deg);
}
.standard-badge { text-align: center; position: relative; z-index: 1; }
.standard-seal {
  width: 320px; height: 320px; margin: 0 auto; border-radius: 50%;
  background: var(--navy); border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow:
    0 0 0 8px var(--warm),
    0 0 0 10px rgba(212,167,64,.3),
    0 0 0 18px var(--warm),
    0 0 0 20px rgba(212,167,64,.15),
    0 0 0 28px var(--warm),
    0 0 0 30px rgba(212,167,64,.08),
    0 24px 64px rgba(10,22,40,.2);
}
.standard-seal::before {
  content: ''; position: absolute; inset: 8px; border-radius: 50%;
  border: 1.5px solid rgba(212,167,64,.3);
}
.standard-seal::after {
  content: ''; position: absolute; inset: 20px; border-radius: 50%;
  border: 1px dashed rgba(212,167,64,.18);
}
.standard-seal-inner { padding: 2rem; text-align: center; }
.standard-seal-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700;
  color: var(--gold); letter-spacing: .1em; text-transform: uppercase; line-height: 1.3;
}
.standard-seal-rule { width: 40px; height: 2px; background: var(--gold); margin: .75rem auto; border-radius: 1px; }
.standard-pillars {
  font-family: 'JetBrains Mono', monospace; font-size: .7rem;
  letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.8); line-height: 2.2;
}
.standard-dot { color: var(--gold); margin: 0 .35rem; }
.standard-tagline {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-style: italic;
  color: var(--navy); margin-top: 2rem; letter-spacing: .02em;
}

/* ===== SERVICE AREA MAP ===== */
.area { padding: 6rem 0; background: var(--cream); }
.area-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.area-map { display: flex; align-items: center; justify-content: center; }
.area-map-container { width: 100%; max-width: 560px; }
.clean-map {
  width: 100%; aspect-ratio: 1; border-radius: 16px; overflow: hidden;
  background: radial-gradient(ellipse at 48% 47%, #1a2d1e 0%, #0f1a14 30%, #0a1210 60%, #060e0a 100%);
  position: relative;
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.map-rings-svg { width: 100%; height: 100%; }
.area-rings { position: relative; display: flex; align-items: center; justify-content: center; }
.area-ring {
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 2px solid transparent; transition: all .4s;
}
.area-ring--5 { width: 340px; height: 340px; background: rgba(212,167,64,.04); border-color: rgba(212,167,64,.08); }
.area-ring--4 { width: 280px; height: 280px; background: rgba(212,167,64,.06); border-color: rgba(212,167,64,.12); }
.area-ring--3 { width: 220px; height: 220px; background: rgba(212,167,64,.09); border-color: rgba(212,167,64,.18); }
.area-ring--2 { width: 160px; height: 160px; background: rgba(212,167,64,.14); border-color: rgba(212,167,64,.28); }
.area-ring--1 { width: 100px; height: 100px; background: rgba(212,167,64,.22); border-color: var(--gold); }
.area-center { text-align: center; }
.area-center-label {
  font-family: 'Playfair Display', serif; font-size: .75rem; font-weight: 700;
  color: var(--navy); line-height: 1.3; display: block;
}
.area-center-sub {
  font-family: 'JetBrains Mono', monospace; font-size: .55rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--vermillion); display: block; margin-top: 2px;
}
.area-zones { display: flex; flex-direction: column; gap: 1rem; }
.area-zone-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.25rem; border-radius: 12px; transition: all .3s;
}
.area-zone-card:hover { background: var(--white); box-shadow: 0 8px 20px rgba(10,22,40,.04); transform: translateX(4px); }
.area-zone-dot {
  flex-shrink: 0; width: 14px; height: 14px; border-radius: 50%; margin-top: 4px;
  border: 2px solid transparent;
}
.area-zone-dot--1 { background: var(--gold); border-color: var(--gold); }
.area-zone-dot--2 { background: rgba(212,167,64,.6); border-color: var(--gold); }
.area-zone-dot--3 { background: rgba(212,167,64,.35); border-color: rgba(212,167,64,.5); }
.area-zone-dot--4 { background: rgba(212,167,64,.2); border-color: rgba(212,167,64,.35); }
.area-zone-dot--5 { background: rgba(212,167,64,.1); border-color: rgba(212,167,64,.2); }
.area-zone-card h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy); margin-bottom: .15rem; }
.area-zone-fee { font-family: 'JetBrains Mono', monospace; font-size: .85rem; color: var(--vermillion); font-weight: 500; letter-spacing: .04em; }
.area-zone-areas { font-size: .9rem; color: #666; margin-top: .15rem; }
.area-note {
  margin-top: 2.5rem; padding: 1.5rem 2rem; background: var(--white);
  border-radius: 12px; border-left: 3px solid var(--gold);
}
.area-note p { font-size: .92rem; color: #555; line-height: 1.7; }
.area-note strong { color: var(--navy); }

/* ===== GOOGLE REVIEW CTA ===== */
.review-cta { padding: 5rem 0; background: var(--warm); }
.review-cta-inner { text-align: center; max-width: 520px; margin: 0 auto; }
.review-cta-headline {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  color: var(--navy); margin-bottom: .75rem;
}
.review-cta-text { font-size: 1.05rem; color: #555; line-height: 1.7; margin-bottom: 1.75rem; }
.btn-review {
  display: inline-block; padding: .85rem 2.2rem;
  background: var(--vermillion); color: var(--white);
  font-weight: 700; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase;
  border-radius: 6px; transition: transform .25s, box-shadow .25s;
}
.btn-review:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(217,72,37,.4); }
.review-cta-small { font-size: .92rem; color: #666; margin-top: 1.25rem; font-style: italic; }

/* ===== THE ASCENSION EXPERIENCE (full-bleed) ===== */
.experience { position: relative; padding: 7rem 0; overflow: hidden; }
.experience-bg { position: absolute; inset: 0; }
.experience-bg img { width: 100%; height: 100%; object-fit: cover; }
.experience-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,14,26,.9) 0%, rgba(10,22,40,.85) 50%, rgba(6,14,26,.92) 100%);
}
.experience .container { position: relative; z-index: 2; }
.experience-headline {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem,3.5vw,2.8rem);
  font-weight: 700; color: var(--white); margin-bottom: .75rem; line-height: 1.25;
}
.experience-phases {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem;
  margin-top: 1rem;
}
.experience-phase {
  text-align: center; padding: 2rem 1.25rem;
  border-radius: 16px; background: rgba(255,255,255,.03);
  border: 1px solid rgba(212,167,64,.1); transition: all .4s;
}
.experience-phase:hover {
  background: rgba(255,255,255,.06); border-color: rgba(212,167,64,.3);
  transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
.experience-phase-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700;
  color: var(--gold); line-height: 1; display: block; margin-bottom: .75rem;
}
.experience-phase h3 {
  font-family: 'Source Sans 3', sans-serif; font-size: 1.25rem; font-weight: 700;
  color: var(--white); margin-bottom: .6rem;
}
.experience-phase p { font-size: 1rem; color: rgba(255,255,255,.8); line-height: 1.75; }
.experience-quote {
  font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-style: italic;
  color: var(--gold); text-align: center; max-width: 680px; margin: 3.5rem auto 0;
  line-height: 1.6; padding: 0 2rem; position: relative;
}
.experience-quote::before {
  content: ''; display: block; width: 48px; height: 2px;
  background: var(--gold); margin: 0 auto 1.5rem; border-radius: 1px;
}

/* ===== ROOTED IN PORTLAND (photo cards) ===== */
.rooted { padding: 7rem 0; background: var(--cream); }
.rooted-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  max-width: 1000px; margin: 0 auto;
}
.rooted-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(10,22,40,.05); transition: all .4s;
}
.rooted-card:hover {
  transform: translateY(-6px); box-shadow: 0 20px 48px rgba(10,22,40,.1);
}
.rooted-card-img { aspect-ratio: 3/2; overflow: hidden; }
.rooted-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.rooted-card:hover .rooted-card-img img { transform: scale(1.05); }
.rooted-card-body {
  padding: 1.75rem 1.75rem 1.75rem 2rem;
  border-left: 3px solid var(--gold);
  margin-left: .75rem;
}
.rooted-card-body h3 {
  font-family: 'Playfair Display', serif; font-size: 1.15rem;
  color: var(--navy); margin-bottom: .5rem;
}
.rooted-card-body p { font-size: .92rem; color: #555; line-height: 1.8; }

/* ===== THE SECOND MILE ===== */
.second-mile { padding: 7rem 0; background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.second-mile::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 30% 60%, rgba(212,167,64,.06), transparent 60%); }
.second-mile .container { position: relative; z-index: 1; }
.second-mile .section-title { color: var(--white); }
.second-mile-subhead {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  font-style: italic; color: var(--gold); margin-top: .5rem;
}
.second-mile-list {
  max-width: 740px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.second-mile-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto;
}
.sm-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(212,167,64,.12);
  border-radius: 16px; overflow: hidden; transition: all .4s;
}
.sm-card:hover {
  transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,.3);
  border-color: rgba(212,167,64,.3);
}
.sm-card-img { aspect-ratio: 16/9; overflow: hidden; }
.sm-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.sm-card:hover .sm-card-img img { transform: scale(1.05); }
.sm-card-body { padding: 1.5rem 1.75rem; }
.sm-card-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700;
  color: var(--gold); display: block; margin-bottom: .35rem;
}
.sm-card h3 {
  font-family: 'Source Sans 3', sans-serif; font-size: 1.2rem; font-weight: 700;
  color: var(--white); margin-bottom: .5rem;
}
.sm-card p { font-size: 1rem; color: rgba(255,255,255,.8); line-height: 1.75; }
.second-mile-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.75rem 2rem; background: rgba(255,255,255,.04);
  border-radius: 16px; transition: all .4s;
  border: 1px solid rgba(212,167,64,.1);
}
.second-mile-item:hover {
  transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.25);
  background: rgba(255,255,255,.07); border-color: rgba(212,167,64,.25);
}
.second-mile-num {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700;
}
.second-mile-item p { font-size: 1.05rem; color: rgba(255,255,255,.85); line-height: 1.8; }

/* ===== ABOUT — NETWORK CALLOUT ===== */
.about-network {
  margin-top: 3.5rem; position: relative; z-index: 2;
}
.about-network-inner {
  padding: 2rem 2.5rem; border-radius: 16px;
  background: rgba(245,240,232,.08); border: 2px solid var(--gold);
  max-width: 680px; margin: 0 auto;
}
.about-network-inner h3 {
  font-family: 'Playfair Display', serif; font-size: 1.2rem;
  color: var(--gold); margin-bottom: .75rem;
}
.about-network-inner p {
  font-size: .95rem; color: rgba(255,255,255,.75); line-height: 1.8;
  max-width: none;
}

/* ===== YOUR BIGGEST FEARS ===== */
.fears { padding: 7rem 0; background: var(--navy); position: relative; overflow: hidden; }
.fears::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(212,167,64,.04), transparent 70%);
}
.fears .container { position: relative; z-index: 1; }
.fears-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
  max-width: 780px; margin: 0 auto;
}
.fears-card {
  padding: 2rem 2.5rem; background: rgba(255,255,255,.03);
  border: 1px solid rgba(212,167,64,.12); border-radius: 16px;
  transition: all .4s;
}
.fears-card:hover {
  background: rgba(255,255,255,.06); border-color: rgba(212,167,64,.3);
  transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.25);
}
.fears-question {
  font-family: 'Source Sans 3', sans-serif; font-size: 1.35rem;
  color: var(--gold); margin-bottom: .75rem; font-weight: 700;
}
.fears-card p { font-size: 1.05rem; color: rgba(255,255,255,.85); line-height: 1.8; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .rights-grid { grid-template-columns: 1fr; }
  .area-content { grid-template-columns: 1fr; }
  .area-map { margin-bottom: 1rem; }
  .experience-phases { grid-template-columns: repeat(2,1fr); }
  .rooted-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 8rem 0 4rem; }
  .hero-content h1 { font-size: 2.8rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .trust-items { flex-wrap: wrap; gap: .75rem; justify-content: center; }
  .trust-divider { display: none; }
  .trust-item { padding: .4rem 1rem; }
  .steps-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .about-photo-frame { margin: 0 auto; }
  .about-photo-caption { text-align: center; }
  .about-quote { text-align: left; }
  .about-content p { text-align: left; }
  .about-sig { text-align: left; }
  .rights-grid { gap: .75rem; }
  .rights-item { padding: .75rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .estimate-inputs { grid-template-columns: 1fr; }
  .estimate-range { font-size: 2.2rem; }
  .estimate-calc { padding: 1.75rem; }
  .standard-seal { width: 280px; height: 280px; }
  .standard-seal-title { font-size: 1.4rem; }
  .standard-pillars { font-size: .6rem; }
  .area-ring--5 { width: 280px; height: 280px; }
  .area-ring--4 { width: 230px; height: 230px; }
  .area-ring--3 { width: 180px; height: 180px; }
  .area-ring--2 { width: 130px; height: 130px; }
  .area-ring--1 { width: 80px; height: 80px; }
  .area-center-label { font-size: .5rem; }
  .community-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .experience-phases { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .experience-headline { font-size: 1.8rem; }
  .experience-quote { font-size: 1.2rem; padding: 0 1rem; }
  .rooted-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .second-mile-item { padding: 1.25rem; gap: 1rem; }
  .second-mile-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .second-mile-num { width: 48px; height: 48px; font-size: 1.3rem; }
  .fears-card { padding: 1.5rem; }
  .fears-question { font-size: 1.1rem; }
  .about-network-inner { padding: 1.5rem; }
  .review-cta-headline { font-size: 1.6rem; }
  .sound-toggle { bottom: 5.5rem; right: 1.25rem; }
  .back-to-top { bottom: 1.25rem; right: 1.25rem; }
  .quote-form { grid-template-columns: 1fr; }
  .form-group--full { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer h4::after { left: 50%; transform: translateX(-50%); }
  .footer-bottom { justify-content: center; text-align: center; }
}
