/* ===========================================================
   E&L Assets — Shared Stylesheet
   Brand: warm, trustworthy, approachable. Sage + forest green + cream.
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root{
  --cream:        #f8f5ec;
  --cream-deep:   #f1ecdf;
  --sage:         #9aa37c;
  --sage-light:   #c3c9a8;
  --forest:       #3f4a3d;
  --forest-deep:  #2b332a;
  --ink:          #232b21;
  --muted:        #5b6354;
  --line:         #ddd6c2;
  --white:        #ffffff;
  --gold:         #b08d57;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --ease: cubic-bezier(.22,1,.36,1);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *,*::before,*::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4,.font-serif{
  font-family: 'Fraunces', serif;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
  margin: 0;
}

a{ text-decoration:none; color:inherit; }
img{ max-width:100%; display:block; }
button{ font-family: inherit; }

.container{
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px){ .container{ padding: 0 40px; } }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(154,163,124,.16);
  padding: 7px 14px;
  border-radius: 999px;
}
.eyebrow svg{ width:14px; height:14px; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15.5px;
  cursor: pointer;
  border: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn:active{ transform: scale(.97); }
.btn-primary{
  background: var(--forest-deep);
  color: var(--cream);
  box-shadow: 0 10px 30px -10px rgba(43,51,42,.55);
}
.btn-primary:hover{ background: var(--forest); transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(43,51,42,.6); }
.btn-outline{
  background: transparent;
  border: 1.5px solid var(--forest-deep);
  color: var(--forest-deep);
}
.btn-outline:hover{ background: var(--forest-deep); color: var(--cream); transform: translateY(-2px); }
.btn-light{
  background: var(--cream);
  color: var(--forest-deep);
}
.btn-light:hover{ background: var(--white); transform: translateY(-2px); }
.btn-block{ width:100%; }

/* ---------- Nav ---------- */
.nav-wrap{
  position: fixed;
  top: 16px; left: 16px; right: 16px;
  z-index: 100;
  display:flex; justify-content:center;
}
.nav{
  width:100%;
  max-width: 1280px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  background: rgba(248,245,236,.78);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(63,74,61,.1);
  border-radius: 999px;
  padding: 10px 12px 10px 18px;
  box-shadow: 0 8px 30px -12px rgba(43,51,42,.18);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.nav.is-scrolled{ background: rgba(248,245,236,.95); box-shadow: 0 12px 34px -10px rgba(43,51,42,.25); }

.brand{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.brand img{ height: 34px; width:auto; }
.brand-text{ font-family:'Fraunces', serif; font-weight:600; font-size: 18px; color: var(--forest-deep); letter-spacing: -.01em;}

.nav-links{ display:none; align-items:center; gap: 28px; list-style:none; margin:0; padding:0; }
.nav-links a{
  font-size: 14.5px; font-weight: 600; color: var(--forest); position:relative; padding: 6px 2px;
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:2px; background: var(--gold);
  transition: width .25s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }
.nav-links a.active{ color: var(--forest-deep); }

@media (min-width: 980px){ .nav-links{ display:flex; } }

.nav-cta{ display:none; align-items:center; gap: 14px; }
@media (min-width: 640px){ .nav-cta{ display:flex; } }
.nav-phone{
  display:flex; align-items:center; gap:8px;
  font-weight: 700; font-size: 14.5px; color: var(--forest-deep);
}
.nav-phone svg{ width:18px; height:18px; color: var(--gold); }

.nav-toggle{
  display:flex; align-items:center; justify-content:center;
  width: 44px; height:44px; border-radius:50%;
  background: var(--forest-deep); color: var(--cream); border:none; cursor:pointer;
}
@media (min-width: 980px){ .nav-toggle{ display:none; } }

.mobile-menu{
  position: fixed; inset: 0; z-index: 99;
  background: var(--forest-deep);
  color: var(--cream);
  display:flex; flex-direction:column;
  padding: 110px 28px 40px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform .45s var(--ease), opacity .35s var(--ease);
  pointer-events: none;
}
.mobile-menu.open{ transform: translateY(0); opacity:1; pointer-events: auto; }
.mobile-menu a{ font-family:'Fraunces',serif; font-size: 34px; padding: 14px 0; border-bottom: 1px solid rgba(248,245,236,.12); }
.mobile-menu .btn{ margin-top: 28px; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  padding: 150px 0 90px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.hero-blob{
  position:absolute; border-radius: 50%; filter: blur(60px); opacity:.5; z-index:0;
  animation: float 14s ease-in-out infinite;
}
.hero-blob.b1{ width: 480px; height: 480px; background: var(--sage-light); top: -180px; right: -160px; }
.hero-blob.b2{ width: 360px; height: 360px; background: var(--gold); opacity:.18; bottom: -140px; left: -120px; animation-delay: -6s; }
@keyframes float{ 0%,100%{ transform: translate(0,0) scale(1); } 50%{ transform: translate(20px,-30px) scale(1.06); } }

/* ---------- Hero Video Background ---------- */
.hero-video{ background: var(--forest-deep); }
.hero-video-bg{
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  background: var(--forest-deep);
}
.hero-video-bg video{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: brightness(.62) saturate(1.05);
  transition: opacity 1.4s var(--ease);
  will-change: opacity;
}
.hero-video-bg video.is-active{ opacity: 1; }
.hero-video-bg .hero-poster{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.62);
  transition: opacity .8s var(--ease);
}
/* Uniform dark wash so every scene (bright or dark) stays readable */
.hero-video-bg::after{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,24,19,.8) 0%, rgba(20,24,19,.8) 42%, rgba(20,24,19,.55) 62%, rgba(20,24,19,.3) 100%);
  z-index: 1;
}
.hero-video .hero-blob{ display: none; }
.hero-video .hero-grid{ z-index: 2; position: relative; }
.hero-video .hero-grid > *{ position: relative; z-index: 1; }
.hero-video h1, .hero-video p.lead{ color: var(--cream); text-shadow: 0 2px 16px rgba(0,0,0,.55), 0 1px 3px rgba(0,0,0,.7); }
.hero-video h1 em{ color: var(--sage-light); }
.hero-video p.lead{ color: rgba(248,245,236,.92); }
.hero-video .hero-trust div{ color: var(--cream); text-shadow: 0 1px 8px rgba(0,0,0,.6); }
.hero-video .hero-trust svg{ color: var(--sage-light); }
.hero-video .stat-num{ color: var(--cream); text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.hero-video .stat-label{ color: rgba(248,245,236,.85); text-shadow: 0 1px 6px rgba(0,0,0,.5); }
.hero-video .eyebrow{
  background: rgba(20,24,19,.45);
  color: var(--cream);
  border: 1px solid rgba(248,245,236,.25);
  backdrop-filter: blur(6px);
}

.hero-scene-tags{
  position: absolute; bottom: 28px; left: 24px; z-index: 2;
  display: flex; gap: 8px;
}
@media (min-width: 768px){ .hero-scene-tags{ left: 40px; } }
.hero-scene-tags span{
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  padding: 7px 13px; border-radius: 999px;
  background: rgba(248,245,236,.14);
  color: rgba(248,245,236,.6);
  border: 1px solid rgba(248,245,236,.22);
  transition: background .4s, color .4s, border-color .4s;
}
.hero-scene-tags span.is-active{
  background: var(--cream);
  color: var(--forest-deep);
  border-color: var(--cream);
}

.hero-grid{
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
/* Mobile: lead with the offer form (conversion-first), keep headline first in DOM for SEO/a11y */
.hero-grid > *:nth-child(1){ order: 2; }
.hero-grid > *:nth-child(2){ order: 1; }
@media (min-width: 1024px){
  .hero-grid{ grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
  .hero-grid > *:nth-child(1){ order: 1; }
  .hero-grid > *:nth-child(2){ order: 2; }
}

.hero h1{
  font-size: clamp(2.4rem, 5.6vw, 4.1rem);
  line-height: 1.04;
  font-weight: 600;
}
.hero h1 em{ font-style: italic; color: var(--sage); font-weight: 500; }

/* ---------- Hero Cycling Headline ---------- */
.cycle-wrap{
  position: relative;
  display: inline-block;
  height: 1.15em;
  overflow: hidden;
  vertical-align: top;
  width: 100%;
}
.cycle-word{
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  font-style: italic;
  font-weight: 500;
  color: var(--sage);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.hero-video .cycle-word{ color: var(--sage-light); }
.cycle-word.is-active{
  opacity: 1;
  transform: translateY(0);
}
.cycle-word.is-leaving{
  opacity: 0;
  transform: translateY(-40px);
}
@media (prefers-reduced-motion: reduce){
  .cycle-word{ transition: opacity .3s linear; transform: none; }
  .cycle-word.is-leaving{ transform: none; }
}
.hero p.lead{
  margin-top: 20px;
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
}
.hero-trust{ display:flex; flex-wrap:wrap; gap: 22px; margin-top: 34px; }
.hero-trust div{ display:flex; align-items:center; gap:10px; font-weight:700; font-size: 14px; color: var(--forest-deep); }
.hero-trust svg{ width: 20px; height:20px; color: var(--sage); flex-shrink:0; }

.hero-stats{ display:flex; gap: 36px; margin-top: 44px; flex-wrap:wrap; }
.hero-stats .stat-num{ font-family:'Fraunces',serif; font-size: 34px; font-weight:600; color: var(--forest-deep); }
.hero-stats .stat-label{ font-size: 13px; color: var(--muted); font-weight:600; }

/* ---------- Lead Form Card ---------- */
.lead-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 30px 70px -20px rgba(43,51,42,.28);
  border: 1px solid var(--line);
  position: relative;
}
.lead-card .badge{
  position:absolute; top:-16px; right: 28px;
  background: #846941; color: var(--white);
  font-size: 12.5px; font-weight: 800; letter-spacing:.06em; text-transform:uppercase;
  padding: 8px 16px; border-radius: 999px;
  box-shadow: 0 8px 18px -6px rgba(176,141,87,.6);
}
.lead-card h3{ font-size: 24px; font-weight:600; }
.lead-card .sub{ color: var(--muted); font-size: 14.5px; margin-top:6px; }

.field{ margin-top: 16px; }
.field label{ display:block; font-size: 12.5px; font-weight:700; color: var(--forest); margin-bottom:6px; text-transform: uppercase; letter-spacing:.04em; }
.field input, .field select{
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--cream);
  font-size: 15.5px;
  font-family: inherit;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder{ color: #a6a796; }
.field input:focus, .field select:focus{
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(154,163,124,.22);
}
.field-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-card .btn{ margin-top: 22px; }
.lead-card .fine{ font-size: 11.5px; color: var(--muted); margin-top: 14px; text-align:center; line-height:1.5; }
.lead-card .fine a{ text-decoration: underline; }

/* ---------- Sections ---------- */
section{ position: relative; padding: 88px 0; }
.section-head{ max-width: 680px; margin-bottom: 52px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(2rem, 3.6vw, 2.85rem); font-weight: 600; margin-top: 16px; }
.section-head p{ color: var(--muted); font-size: 17px; margin-top: 16px; }

.bg-forest{ background: var(--forest-deep); color: var(--cream); }
.bg-forest h2, .bg-forest h3, .bg-forest .font-serif{ color: var(--cream); }
.bg-forest .eyebrow{ background: rgba(248,245,236,.12); color: var(--cream); }
.bg-cream-deep{ background: var(--cream-deep); }

/* ---------- Process Steps ---------- */
.steps{ display:grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 860px){ .steps{ grid-template-columns: repeat(4, 1fr); } }
.step{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
}
.step:hover{ transform: translateY(-8px); box-shadow: 0 24px 50px -20px rgba(43,51,42,.22); }
.step .num{
  font-family:'Fraunces',serif; font-size: 15px; font-weight:700; color: var(--sage);
  margin-bottom: 14px; display:block;
}
.step .icon-wrap{
  width: 52px; height:52px; border-radius: 14px;
  background: rgba(154,163,124,.18);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 18px; color: var(--forest-deep);
}

/* Mobile: connected timeline instead of 4 identical stacked boxes */
@media (max-width: 859px){
  .steps{ gap: 0; }
  .step{
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 36px 0;
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 18px;
  }
  .step:last-child{ padding-bottom: 0; }
  .step:hover{ transform: none; box-shadow: none; }
  .step .num{
    position: absolute;
    top: -7px; left: 36px;
    background: #846941;
    color: var(--white);
    width: 22px; height: 22px;
    border-radius: 50%;
    font-size: 10.5px;
    display: flex; align-items: center; justify-content: center;
    margin: 0;
    z-index: 2;
    box-shadow: 0 4px 10px -2px rgba(176,141,87,.6);
  }
  .step .icon-wrap{
    grid-column: 1; grid-row: 1 / span 2;
    margin-bottom: 0;
    align-self: start;
    position: relative; z-index: 1;
  }
  .step h3{ grid-column: 2; grid-row: 1; align-self: center; }
  .step p{ grid-column: 2; grid-row: 2; margin-top: 6px; }
  .step:not(:last-child)::after{
    content: '';
    position: absolute;
    left: 25px; top: 52px; bottom: 8px;
    width: 2px;
    background: var(--line);
  }
}
.step .icon-wrap svg{ width: 26px; height:26px; }
.step h3{ font-size: 19px; font-weight:600; }
.step p{ color: var(--muted); font-size: 14.5px; margin-top: 8px; }

/* ---------- Value Grid ---------- */
.value-grid{ display:grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 700px){ .value-grid{ grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px){ .value-grid{ grid-template-columns: repeat(3, 1fr); } }
.value-card{
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), border-color .3s;
}
.value-card:hover{ transform: translateY(-6px); border-color: var(--sage); }
.value-card svg{ width: 30px; height:30px; color: var(--gold); margin-bottom: 16px; }
.value-card h3{ font-size: 18.5px; font-weight: 600; }
.value-card p{ color: var(--muted); font-size: 14.5px; margin-top:8px; }

/* ---------- Comparison Table ---------- */
.compare{ width:100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-md); overflow:hidden; box-shadow: 0 20px 50px -25px rgba(43,51,42,.2); }
.compare th, .compare td{ padding: 16px 20px; text-align:left; font-size: 14.5px; border-bottom: 1px solid var(--line); }
.compare th{ font-family:'Fraunces',serif; font-size: 16px; background: var(--cream-deep); font-weight:600; }
.compare td.yes{ color: var(--forest-deep); font-weight:700; }
.compare td.no{ color: #b5482f; }
.compare tr:last-child td{ border-bottom:none; }
.compare-scroll{ overflow-x:auto; border-radius: var(--radius-md); }

/* Mobile: collapse the comparison table into stacked cards instead of horizontal scroll */
@media (max-width: 640px){
  .compare-scroll{ overflow-x: visible; }
  .compare{ display: block; box-shadow: none; background: transparent; border-spacing: 0; }
  .compare thead{ display: none; }
  .compare tbody{ display: flex; flex-direction: column; gap: 14px; }
  .compare tr{
    display: block;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 14px 30px -18px rgba(43,51,42,.18);
  }
  .compare td{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding: 13px 18px;
    font-size: 14px;
  }
  .compare tr td:first-child{
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 15px;
    background: var(--cream-deep);
    color: var(--forest-deep);
    justify-content: flex-start;
  }
  .compare td[data-label]::before{
    content: attr(data-label);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--muted);
  }
  .compare tr td:last-child{ border-bottom: none; }
}

/* ---------- Property / Flip Cards ---------- */
.prop-grid{ display:grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 700px){ .prop-grid{ grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px){ .prop-grid{ grid-template-columns: repeat(3, 1fr); } }
.prop-card{
  background: var(--white);
  border-radius: var(--radius-md);
  overflow:hidden;
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.prop-card:hover{ transform: translateY(-8px); box-shadow: 0 26px 55px -22px rgba(43,51,42,.25); }
.prop-img{ position:relative; height: 220px; overflow:hidden; }
.prop-img img{ width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.prop-card:hover .prop-img img{ transform: scale(1.08); }
.prop-tag{
  position:absolute; top:14px; left:14px;
  background: var(--forest-deep); color: var(--cream);
  font-size: 11.5px; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.prop-body{ padding: 22px; }
.prop-body .loc{ font-size: 13px; color: var(--muted); font-weight:600; }
.prop-body h3{ font-size: 19px; font-weight:600; margin-top: 4px; }
.prop-meta{ display:flex; gap:16px; margin-top: 14px; font-size: 13.5px; color: var(--muted); }
.prop-meta span{ display:flex; align-items:center; gap:6px; }
.prop-meta svg{ width:15px; height:15px; color: var(--sage); }

/* ---------- Testimonials ---------- */
.test-track-wrap{ overflow:hidden; mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent); }
.test-track{ display:flex; gap: 24px; width: max-content; animation: scroll-left 38s linear infinite; }
.test-track:hover{ animation-play-state: paused; }
@keyframes scroll-left{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
.test-card{
  width: 360px; flex-shrink:0;
  background: var(--white); border-radius: var(--radius-md); padding: 28px;
  border: 1px solid var(--line);
}
.test-stars{ display:flex; gap:3px; color: var(--gold); margin-bottom: 14px; }
.test-stars svg{ width:16px; height:16px; }
.test-card p{ font-size: 15px; color: var(--ink); line-height: 1.6; }

/* Mobile: swipeable snap-scroll instead of continuous auto-scroll marquee */
@media (max-width: 768px){
  .test-track-wrap{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    mask-image: none;
    padding: 4px 24px 18px;
    scrollbar-width: none;
  }
  .test-track-wrap::-webkit-scrollbar{ display: none; }
  .test-track{
    animation: none !important;
    width: auto;
  }
  .test-card{
    scroll-snap-align: start;
    width: 82vw;
    flex-shrink: 0;
  }
}
.test-who{ display:flex; align-items:center; gap: 12px; margin-top: 18px; }
.test-avatar{ width:42px; height:42px; border-radius:50%; background: var(--sage-light); display:flex; align-items:center; justify-content:center; font-family:'Fraunces',serif; font-weight:700; color: var(--forest-deep); }
.test-who .name{ font-weight:700; font-size:14px; }
.test-who .loc{ font-size: 12.5px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-item{ border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-q{ display:flex; align-items:center; justify-content:space-between; cursor:pointer; gap: 16px; border-radius: var(--radius-sm); }
.faq-q:focus-visible{ outline: 2px solid var(--sage); outline-offset: 4px; }
.faq-q h4{ font-size: 17px; font-weight: 600; color: var(--forest-deep); font-family:'Plus Jakarta Sans',sans-serif; }
.faq-q .plus{ width: 32px; height:32px; border-radius:50%; background: var(--cream-deep); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition: transform .3s var(--ease), background .3s; }
.faq-q svg{ width:16px; height:16px; transition: transform .3s var(--ease); }
.faq-item.open .faq-q .plus{ background: var(--forest-deep); color: var(--cream); transform: rotate(180deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .35s var(--ease); }
.faq-a-inner{ padding-top: 14px; color: var(--muted); font-size: 15px; max-width: 700px; }
.faq-item.open .faq-a{ max-height: 240px; }

/* ---------- CTA Banner ---------- */
.cta-banner{
  border-radius: var(--radius-lg);
  background: var(--forest-deep);
  padding: 64px 40px;
  text-align:center;
  position: relative;
  overflow:hidden;
}
.cta-banner::before{
  content:''; position:absolute; width:500px; height:500px; border-radius:50%;
  background: var(--sage); opacity:.18; filter: blur(70px); top:-220px; right:-150px;
}
.cta-banner h2{ color: var(--cream); font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
.cta-banner p{ color: rgba(248,245,236,.78); margin-top: 14px; font-size: 16.5px; max-width: 520px; margin-left:auto; margin-right:auto; }
.cta-banner .btn{ margin-top: 30px; }

/* ---------- Footer ---------- */
footer{ background: var(--forest-deep); color: rgba(248,245,236,.82); padding: 70px 0 28px; }
.footer-grid{ display:grid; grid-template-columns: 1fr; gap: 44px; }
@media (min-width: 860px){ .footer-grid{ grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
footer h4{ color: var(--cream); font-family:'Fraunces',serif; font-size: 16.5px; margin-bottom: 18px; font-weight:600; }
footer .brand-text{ color: var(--cream); }
footer p{ font-size: 14.5px; line-height:1.7; }
footer ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap: 12px; }
footer a{ font-size: 14.5px; transition: color .2s; }
footer a:hover{ color: var(--sage-light); }
.footer-bottom{ border-top: 1px solid rgba(248,245,236,.12); margin-top: 50px; padding-top: 24px; display:flex; flex-wrap:wrap; gap: 14px; justify-content:space-between; font-size: 13px; color: rgba(248,245,236,.55); }
.social-row{ display:flex; gap: 12px; margin-top: 18px; }
.social-row a{ width: 38px; height:38px; border-radius:50%; background: rgba(248,245,236,.08); display:flex; align-items:center; justify-content:center; }
.social-row svg{ width:17px; height:17px; }
.social-row a:hover{ background: var(--sage); color: var(--forest-deep); }

/* ---------- Page Hero (sub-pages) ---------- */
.page-hero{ padding: 150px 0 70px; background: var(--cream-deep); text-align:center; }
.page-hero h1{ font-size: clamp(2.2rem, 4.8vw, 3.4rem); font-weight:600; }
.page-hero p{ color: var(--muted); max-width: 600px; margin: 18px auto 0; font-size: 17px; }
.breadcrumb{ display:flex; align-items:center; justify-content:center; gap:8px; font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.breadcrumb svg{ width: 13px; height:13px; }

/* ---------- Utilities ---------- */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform: translateY(0); }
.reveal-stagger > *{ opacity:0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal-stagger.in > *{ opacity:1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1){ transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2){ transition-delay: .15s; }
.reveal-stagger.in > *:nth-child(3){ transition-delay: .25s; }
.reveal-stagger.in > *:nth-child(4){ transition-delay: .35s; }

/* Motion variety: distinct treatments per section type instead of one fade-up everywhere */
.reveal-left{ opacity:0; transform: translateX(-36px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-left.in{ opacity:1; transform: translateX(0); }
.reveal-right{ opacity:0; transform: translateX(36px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-right.in{ opacity:1; transform: translateX(0); }
.reveal-scale{ opacity:0; transform: scale(.93); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-scale.in{ opacity:1; transform: scale(1); }
.reveal-stagger-scale > *{ opacity:0; transform: scale(.9); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal-stagger-scale.in > *{ opacity:1; transform: scale(1); }
.reveal-stagger-scale.in > *:nth-child(1){ transition-delay: .05s; }
.reveal-stagger-scale.in > *:nth-child(2){ transition-delay: .14s; }
.reveal-stagger-scale.in > *:nth-child(3){ transition-delay: .23s; }
.reveal-stagger-scale.in > *:nth-child(4){ transition-delay: .32s; }
.reveal-stagger-scale.in > *:nth-child(5){ transition-delay: .41s; }
.reveal-stagger-scale.in > *:nth-child(6){ transition-delay: .5s; }
@media (prefers-reduced-motion: reduce){
  .reveal-left, .reveal-right, .reveal-scale, .reveal-stagger-scale > *{ transform: none; }
}

/* Per-page focal heading: one section per page gets visual emphasis instead of uniform weight */
.heading-feature{
  font-size: clamp(2.3rem, 4.4vw, 3.3rem) !important;
  letter-spacing: -0.015em;
}

.grid-2{ display:grid; grid-template-columns:1fr; gap: 48px; }
@media (min-width: 980px){ .grid-2{ grid-template-columns: 1fr 1fr; align-items:center; } }

.img-frame{ border-radius: var(--radius-lg); overflow:hidden; position:relative; }
.img-frame img{ width:100%; height:100%; object-fit:cover; }
.floating-card{
  position:absolute; bottom: -24px; left: -24px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 20px 24px; box-shadow: 0 20px 50px -20px rgba(43,51,42,.3);
  display:flex; align-items:center; gap: 14px;
  max-width: 260px;
}
.floating-card .ic{ width:46px; height:46px; border-radius:12px; background: rgba(154,163,124,.2); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.floating-card .ic svg{ width:22px; height:22px; color: var(--forest-deep); }
.floating-card .t{ font-weight:700; font-size: 14.5px; }
.floating-card .s{ font-size: 12px; color: var(--muted); }

.tag-pill{ display:inline-flex; align-items:center; gap:6px; background: var(--white); border:1px solid var(--line); border-radius:999px; padding:8px 14px; font-size:13px; font-weight:600; color: var(--forest); }

.scroll-top{
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 48px; height:48px; border-radius:50%;
  background: var(--forest-deep); color: var(--cream);
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transform: translateY(10px);
  transition: opacity .3s, transform .3s;
  box-shadow: 0 14px 30px -10px rgba(43,51,42,.4);
}
.scroll-top.show{ opacity:1; pointer-events:auto; transform: translateY(0); }
.scroll-top svg{ width:20px; height:20px; }

.skeleton{ background: linear-gradient(90deg, var(--cream-deep) 25%, var(--line) 37%, var(--cream-deep) 63%); background-size: 400% 100%; animation: skeleton 1.4s ease infinite; border-radius: var(--radius-md); }
@keyframes skeleton{ 0%{ background-position: 100% 50%; } 100%{ background-position: 0 50%; } }
