/*
  LINEAGE ESTATES — lineageestates.com
  Premium Senior Transition Concierge | Northwest Twin Cities
  ─────────────────────────────────────────────────────
  Palette:  #1F3D34 #14302A #6E8B7E #B08A4F  |  #F5F1E8 #FBF9F3 #E4DDCE  |  #23211C #5A5750 #A8A296
  Fonts:    Cormorant Garamond (display) · Source Serif 4 · Source Sans 3
*/

/* ━━━ RESET ━━━ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

/* ━━━ TOKENS ━━━ */
:root {
  --green:     #1F3D34;
  --pine:      #14302A;
  --sage:      #6E8B7E;
  --gold:      #B08A4F;
  --gold-lt:   #C9A46E;
  --parchment: #F5F1E8;
  --ivory:     #FBF9F3;
  --stone:     #E4DDCE;
  --ink:       #23211C;
  --slate:     #5A5750;
  --faint:     #A8A296;

  --display: 'Cormorant Garamond', Georgia, serif;
  --script:  'Great Vibes', cursive;
  --serif:   'Source Serif 4', Georgia, serif;
  --sans:    'Source Sans 3', Calibri, Arial, sans-serif;

  --wrap:   min(1200px, calc(100% - 3rem));
  --radius: 2px;
  --ease:   cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 4px 28px rgba(20,48,42,.10);
  --shadow-lg: 0 16px 56px rgba(20,48,42,.18);
}

/* ━━━ BASE ━━━ */
html  { font-size: 17px; scroll-behavior: smooth; }
body  {
  font-family: var(--sans);
  background: var(--parchment);
  color: var(--ink);
  line-height: 1.78;
}

/* ━━━ TYPOGRAPHY ━━━ */
h1, h2, h3 { line-height: 1.15; }

h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.5rem, 7vw, 4.75rem);
  color: var(--green);
  letter-spacing: -.01em;
}
h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--green);
  letter-spacing: -.01em;
}
h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--green);
}
h4 {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--gold);
  letter-spacing: .04em;
  text-transform: none;
}
p   { max-width: 66ch; }
em  { font-style: italic; }

/* ━━━ KEYFRAMES ━━━ */
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50%       { opacity: .8; transform: scaleY(.7); }
}
@keyframes goldShimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes drawLine {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ━━━ LAYOUT ━━━ */
.wrap        { width: var(--wrap); margin-inline: auto; }
.section     { padding: 6rem 0; }
.section--sm { padding: 3.5rem 0; }
.section--ivory { background: var(--ivory); }
.section--stone { background: var(--stone); }
.section--green { background: var(--green);  color: var(--parchment); }
.section--dark  { background: var(--pine);   color: var(--parchment); }
.section--green h2, .section--green h3,
.section--dark  h2, .section--dark  h3 { color: var(--parchment); }

/* ━━━ ORNAMENT (gold diamond divider) ━━━ */
.ornament {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: .9rem auto 1.5rem;
  width: fit-content;
}
.ornament::before,
.ornament::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}
.ornament-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: .8;
}
.ornament--left  { margin-left: 0; }
.ornament--light::before,
.ornament--light::after { background: rgba(245,241,232,.4); }
.ornament--light .ornament-diamond { background: rgba(245,241,232,.5); }

/* Legacy gold-rule kept for compatibility */
.gold-rule {
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
  margin: .9rem auto 1.4rem;
  opacity: .6;
}
.gold-rule--left { margin-left: 0; }

/* ━━━ BUTTONS ━━━ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .95rem 2.25rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .2s var(--ease),
              box-shadow .25s var(--ease);
  min-height: 48px;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .2s;
}
.btn:hover::after { background: rgba(255,255,255,.06); }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--green);
  color: var(--parchment);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--pine);
  border-color: var(--pine);
  color: var(--parchment);
  box-shadow: 0 6px 24px rgba(20,48,42,.3);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--parchment);
  box-shadow: 0 6px 24px rgba(20,48,42,.2);
}
.btn-outline-light {
  background: transparent;
  color: var(--parchment);
  border-color: rgba(245,241,232,.45);
}
.btn-outline-light:hover {
  background: var(--parchment);
  color: var(--pine);
  border-color: var(--parchment);
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
}
.btn-gold {
  background: var(--gold);
  color: var(--ivory);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  color: var(--pine);
  box-shadow: 0 6px 24px rgba(176,138,79,.3);
}

/* ━━━ SKIP NAV ━━━ */
.skip-nav {
  position: absolute;
  top: -110%;
  left: 1rem;
  background: var(--green);
  color: var(--parchment);
  padding: .5rem 1.25rem;
  font-weight: 600;
  z-index: 300;
  transition: top .12s;
}
.skip-nav:focus { top: 0; }

/* ━━━ SITE HEADER ━━━ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background .4s var(--ease), box-shadow .4s var(--ease),
              padding .3s var(--ease);
  padding: .25rem 0;
}
.site-header.scrolled {
  background: var(--pine);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
  padding: 0;
}
/* Non-hero pages: header is always solid */
.site-header--solid {
  background: var(--pine) !important;
  box-shadow: 0 1px 10px rgba(0,0,0,.3) !important;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: .9rem;
  transition: padding .3s var(--ease);
}
.site-header.scrolled .wrap { padding-block: .7rem; }

/* Logo image */
.logo-img {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity .2s;
  flex-shrink: 0;
}
.logo-img:hover { opacity: .85; }
.logo-img img {
  display: block;
  height: 58px;
  width: auto;
  max-width: 220px;
}

/* Nav links */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.site-nav a {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(245,241,232,.65);
  transition: color .2s;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -.2rem;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.site-nav a:hover,
.site-nav a.active { color: var(--parchment); }
.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); }
.site-nav a.btn::after { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  min-height: 44px; min-width: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--parchment);
  transition: transform .28s var(--ease), opacity .2s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ━━━ HERO ━━━ */
.hero {
  min-height: 100svh;
  background: var(--pine);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0 7rem;
}
/* Subtle gold grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(176,138,79,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176,138,79,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
/* Top-center gold radial glow */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 45% at 50% -10%, rgba(176,138,79,.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero-wrap {
  position: relative;
  z-index: 1;
}
/* Staggered hero entrance animation */
.hero-content > * {
  opacity: 0;
  animation: heroReveal .95s var(--ease) forwards;
}
.hero-content > *:nth-child(1) { animation-delay: .1s; }
.hero-content > *:nth-child(2) { animation-delay: .28s; }
.hero-content > *:nth-child(3) { animation-delay: .42s; }
.hero-content > *:nth-child(4) { animation-delay: .54s; }
.hero-content > *:nth-child(5) { animation-delay: .64s; }
.hero-content > *:nth-child(6) { animation-delay: .74s; }

.hero-eyebrow {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.1rem;
}
.hero-headline {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(5.5rem, 14vw, 10.5rem);
  color: var(--parchment);
  line-height: .92;
  letter-spacing: -.015em;
  margin-bottom: 1.25rem;
}
.hero-headline em {
  font-style: italic;
  color: rgba(245,241,232,.65);
  display: block;
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.hero-divider-line {
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--gold);
  opacity: .45;
}
.hero-divider-diamond {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: .75;
  flex-shrink: 0;
}
.hero-tagline {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: rgba(245,241,232,.65);
  display: block;
  margin-bottom: 1.5rem;
  letter-spacing: .01em;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(245,241,232,.62);
  max-width: 50ch;
  margin-bottom: 2.75rem;
  line-height: 1.78;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(245,241,232,.3);
  font-size: .65rem;
  font-family: var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color .2s;
  z-index: 2;
}
.hero-scroll:hover { color: var(--gold); }
.hero-scroll-line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, transparent, rgba(176,138,79,.5));
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ━━━ TRUST BAR ━━━ */
.trust-bar {
  background: var(--green);
  color: var(--parchment);
  padding: .9rem 0;
  font-size: .78rem;
  letter-spacing: .06em;
}
.trust-bar-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-bar-items span { opacity: .78; }
.trust-sep { color: var(--gold); opacity: .4; }

/* ━━━ PAGE HERO (inner pages) ━━━ */
.page-hero {
  background: var(--pine);
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% -10%, rgba(176,138,79,.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h4 {
  position: relative;
  z-index: 1;
  margin-bottom: .25rem;
}
.page-hero .ornament { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--parchment);
  max-width: 24ch;
  margin-inline: auto;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  letter-spacing: -.01em;
}
.page-hero .lead {
  color: rgba(245,241,232,.68);
  margin-inline: auto;
  font-size: 1.05rem;
  max-width: 54ch;
  position: relative;
  z-index: 1;
}

/* ━━━ SECTION INTRO ━━━ */
.section-intro {
  text-align: center;
  margin-bottom: 4rem;
}
.section-intro h4  { margin-bottom: .15rem; }
.section-intro h2  { margin-bottom: .5rem; }
.section-intro .lead {
  margin-inline: auto;
  color: var(--slate);
  font-size: 1.05rem;
}

/* ━━━ SCROLL REVEAL SYSTEM ━━━ */
/* Elements with .reveal animate on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Stagger modifiers */
.reveal--d1 { transition-delay: .1s; }
.reveal--d2 { transition-delay: .2s; }
.reveal--d3 { transition-delay: .3s; }
.reveal--d4 { transition-delay: .4s; }
.reveal--d5 { transition-delay: .5s; }

/* Stagger container — children animate in sequence */
.stagger-wrap > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.stagger-wrap.is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stagger-wrap.is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: .12s; }
.stagger-wrap.is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: .22s; }
.stagger-wrap.is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: .32s; }
.stagger-wrap.is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: .42s; }

/* Legacy .fade-in support */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
  }
  .fade-in.visible { opacity: 1; transform: none; }
}

/* ━━━ WHO WE HELP — dual path cards ━━━ */
.dual-path {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.path-card {
  background: var(--ivory);
  border: 1px solid var(--stone);
  border-bottom: 3px solid var(--stone);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              border-color .25s, background .2s;
  position: relative;
  overflow: hidden;
}
.path-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--gold);
  transition: width .4s var(--ease);
}
.path-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--stone);
}
.path-card:hover::before { width: 100%; }
.path-card h3 { font-size: 1.35rem; margin-bottom: .35rem; }
.path-card p  { color: var(--slate); font-size: .95rem; max-width: none; }
.path-arrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  padding-top: 1rem;
  transition: letter-spacing .3s var(--ease);
}
.path-card:hover .path-arrow { letter-spacing: .14em; }

/* ━━━ FEATURE GRID ━━━ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 2rem;
}
.feature-card { padding: 1.75rem 0; }
.feature-card h3 { font-size: 1.18rem; margin-bottom: .6rem; }
.feature-card p  { color: var(--slate); font-size: .95rem; }

.feature-grid--bordered .feature-card {
  background: var(--ivory);
  border: 1px solid var(--stone);
  border-bottom: 3px solid var(--stone);
  padding: 2.25rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-grid--bordered .feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.feature-grid--bordered .feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.feature-grid--bordered .feature-card:hover::before { width: 100%; }

/* ━━━ PLATFORM GRID ━━━ */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.platform-card {
  background: var(--ivory);
  border: 1px solid var(--stone);
  border-top: 3px solid var(--gold);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.platform-card-icon {
  font-size: 1.6rem;
  color: var(--gold);
  opacity: .55;
  margin-bottom: .75rem;
  line-height: 1;
}
.platform-card h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
  color: var(--green);
}
.platform-card p {
  color: var(--slate);
  font-size: .92rem;
  max-width: none;
  line-height: 1.65;
}
@media (max-width: 860px) {
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .platform-grid { grid-template-columns: 1fr; }
}

/* ━━━ PROCESS STEPS — horizontal timeline ━━━ */
.process-steps {
  display: flex;
  gap: 0;
  position: relative;
  max-width: 960px;
  margin-inline: auto;
}
/* Gold connecting line between circles */
.process-steps::before {
  content: '';
  position: absolute;
  top: 1.75rem;
  left: calc(5% + 1.75rem);
  right: calc(5% + 1.75rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 8%, var(--gold) 92%, transparent);
  opacity: .35;
  z-index: 0;
  transform-origin: left;
  animation: drawLine 1.2s var(--ease) .5s both;
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 .75rem;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--green);
  border: 1px solid rgba(176,138,79,.35);
  color: var(--parchment);
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
  transition: background .3s, transform .3s var(--ease), box-shadow .3s;
  position: relative;
  z-index: 1;
}
.process-step:hover .step-num {
  background: var(--gold);
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 20px rgba(176,138,79,.3);
}
.step-content h3 {
  font-size: 1rem;
  margin-bottom: .4rem;
  color: var(--green);
}
.step-content p {
  color: var(--slate);
  font-size: .88rem;
  max-width: 18ch;
  margin-inline: auto;
}

/* ━━━ SERVICES LIST ━━━ */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  max-width: 820px;
  margin-inline: auto;
}
.service-item {
  padding-left: 2.25rem;
  border-left: 2px solid var(--gold);
  position: relative;
  transition: border-color .2s;
}
.service-item::before {
  content: '';
  position: absolute;
  left: -4px; top: .35rem;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .7;
}
.service-item:hover { border-color: var(--sage); }
.service-item h3 { font-size: 1.3rem; margin-bottom: .65rem; }
.service-item p  { color: var(--slate); }

/* ━━━ SERVICE TIERS ━━━ */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.tier-card {
  background: var(--ivory);
  border: 1px solid var(--stone);
  padding: 2.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.tier-card--featured {
  background: var(--green);
  border-color: var(--green);
  color: var(--parchment);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.tier-card--featured:hover { transform: translateY(-12px); }
.tier-card--featured h3 { color: var(--parchment); }
.tier-card--featured p, .tier-card--featured li { color: rgba(245,241,232,.8); }
.tier-label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
}
.tier-card h3 { font-family: var(--display); font-weight: 600; font-size: 1.55rem; }
.tier-desc { color: var(--slate); font-size: .92rem; margin-bottom: .5rem; }
.tier-includes {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: .75rem;
}
.tier-includes li {
  padding-left: 1.25rem;
  position: relative;
  font-size: .9rem;
  color: var(--slate);
}
.tier-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.tier-card--featured .tier-includes li { color: rgba(245,241,232,.8); }
.tier-note {
  font-size: .8rem;
  color: var(--faint);
  font-style: italic;
  border-top: 1px solid var(--stone);
  padding-top: .75rem;
  margin-top: auto;
}
.tier-card--featured .tier-note {
  color: rgba(245,241,232,.45);
  border-color: rgba(245,241,232,.12);
}

/* ━━━ PULLQUOTE ━━━ */
.pullquote {
  background: var(--ivory);
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.pullquote::before {
  content: '\201C';
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: 18rem;
  line-height: 1;
  color: var(--stone);
  pointer-events: none;
  user-select: none;
}
.pullquote blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 600;
  color: var(--green);
  max-width: 42ch;
  margin-inline: auto;
  line-height: 1.35;
  position: relative;
  z-index: 1;
}
.pullquote cite {
  display: block;
  font-family: var(--sans);
  font-size: .78rem;
  color: var(--faint);
  font-style: normal;
  margin-top: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* ━━━ CTA BLOCK ━━━ */
.cta-block {
  background: var(--green);
  color: var(--parchment);
  padding: 6.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 110%, rgba(176,138,79,.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-block h2 {
  color: var(--parchment);
  max-width: 28ch;
  margin-inline: auto;
  margin-bottom: 1rem;
}
.cta-block .lead {
  color: rgba(245,241,232,.75);
  margin-inline: auto;
  margin-bottom: 2.75rem;
  font-size: 1.05rem;
  max-width: 54ch;
}

/* ━━━ FAQ ACCORDION ━━━ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  max-width: 820px;
  margin-inline: auto;
}
.faq-item {
  border: 1px solid var(--stone);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--sage); }
.faq-question {
  width: 100%;
  background: var(--ivory);
  border: none;
  padding: 1.35rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--green);
  text-align: left;
  transition: background .15s, color .15s;
  min-height: 48px;
}
.faq-question:hover { background: rgba(228,221,206,.35); }
.faq-icon {
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  font-weight: 300;
  transition: transform .3s var(--ease);
  font-family: var(--sans);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
  background: var(--ivory);
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer p {
  padding: 0 1.6rem 1.6rem;
  color: var(--slate);
  font-size: .95rem;
  max-width: none;
}

/* ━━━ VALUE LIST ━━━ */
.value-list {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  max-width: 820px;
}
.value-item {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
}
.value-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 2rem;
  color: var(--stone);
  line-height: 1;
  min-width: 2.5rem;
  transition: color .3s;
}
.value-item:hover .value-num { color: var(--gold); }
.value-item h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.value-item p  { color: var(--slate); font-size: .95rem; }

/* ━━━ CONTACT ━━━ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: start;
}
.contact-info h2  { margin-bottom: .4rem; }
.contact-info .lead { color: var(--slate); margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-label {
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--sage);
  min-width: 3.5rem;
  padding-top: .12rem;
}
.contact-value { color: var(--slate); font-size: .95rem; }
.contact-value a { color: var(--green); font-weight: 600; }
.contact-value a:hover { text-decoration: underline; }
.calendly-note {
  background: var(--stone);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  font-size: .88rem;
  color: var(--slate);
  margin-top: 1.75rem;
}

/* ━━━ FORM ━━━ */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
  margin-bottom: .45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .9rem 1.1rem;
  background: var(--ivory);
  border: 1px solid var(--stone);
  border-bottom: 2px solid var(--stone);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  border-bottom-color: var(--green);
  box-shadow: 0 2px 0 var(--green);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { font-size: .8rem; color: var(--faint); margin-top: .35rem; }
.form-honeypot { display: none; }

/* ━━━ THANK YOU ━━━ */
.thank-you-wrap {
  max-width: 580px;
  margin-inline: auto;
  text-align: center;
  padding: 5rem 2rem;
}
.thank-you-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: var(--green);
  color: var(--parchment);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(176,138,79,.3);
}

/* ━━━ SITE FOOTER ━━━ */
.site-footer {
  background: var(--pine);
  color: var(--parchment);
  padding: 5rem 0 2.25rem;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: .25;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.75fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(245,241,232,.45);
  margin-top: .9rem;
  margin-bottom: .4rem;
  font-weight: 400;
}
.footer-area {
  font-size: .8rem;
  color: rgba(245,241,232,.32);
  max-width: 26ch;
}
.footer-nav h4 {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .16em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}
.footer-nav ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-nav a {
  color: rgba(245,241,232,.58);
  font-size: .85rem;
  transition: color .2s, letter-spacing .2s;
}
.footer-nav a:hover { color: var(--parchment); letter-spacing: .01em; }
.footer-bottom {
  border-top: 1px solid rgba(228,221,206,.1);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .76rem;
  color: rgba(245,241,232,.3);
}

/* ━━━ UTILITIES ━━━ */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-sage   { color: var(--sage); }
.text-slate  { color: var(--slate); }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3.5rem; }
.mb-md { margin-bottom: 2rem; }

/* ━━━ RESPONSIVE ━━━ */
@media (max-width: 960px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--pine);
    flex-direction: column;
    padding: 1.75rem 2rem 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(176,138,79,.15);
    box-shadow: 0 12px 30px rgba(0,0,0,.3);
  }
  .site-nav.open { display: flex; }
  .hamburger     { display: flex; }
  .site-header   { position: fixed; }
  .dual-path     { grid-template-columns: 1fr; }
  .tiers-grid    { grid-template-columns: 1fr; }
  .tier-card--featured { transform: none; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .contact-grid  { grid-template-columns: 1fr; gap: 3.5rem; }

  /* Process steps — vertical on tablet */
  .process-steps {
    flex-direction: column;
    max-width: 620px;
    gap: 0;
  }
  .process-steps::before { display: none; }
  .process-step {
    flex-direction: row;
    text-align: left;
    padding: 0 0 2.25rem;
    gap: 1.5rem;
  }
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 1.75rem;
    top: 3.5rem;
    bottom: 0;
    width: 1px;
    background: var(--gold);
    opacity: .25;
  }
  .step-num    { margin-bottom: 0; flex-shrink: 0; }
  .step-content { text-align: left; }
  .step-content p { max-width: none; }
}

@media (max-width: 640px) {
  html { font-size: 16px; }
  .section { padding: 4rem 0; }
  .hero { padding: 7rem 0 5rem; }
  .hero-headline { font-size: clamp(3.8rem, 18vw, 6rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .page-hero { padding: 6rem 0 4rem; }
  .pullquote::before { font-size: 10rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row    { grid-template-columns: 1fr; }
  .cta-block   { padding: 4.5rem 0; }
  .process-step { gap: 1.1rem; }
  .step-num { width: 3rem; height: 3rem; font-size: 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================================
   BRAND LOGO SIZING — uses the original Lineage Estates logo
   (the illustrated oval-manor lockup) as-is, at legible sizes.
   ============================================================ */
/* Footer: the full logo, larger, where there is room to breathe */
.site-footer .logo-img img {
  height: 90px;
  width: auto;
  max-width: 260px;
}

/* Small screens: trim the header logo so it clears the menu button */
@media (max-width: 600px) {
  .logo-img img { height: 48px; }
}
