/* ============================================================
   NEST & HAVENS — Home Renovation Studio
   Design system: warm cream, deep forest, terracotta, gold
   ============================================================ */

:root {
  --ink: #22322A;
  --forest-950: #12201A;
  --forest-900: #182720;
  --forest-800: #20362B;
  --forest-700: #2A4636;
  --forest-600: #355844;
  --moss: #6F8A77;
  --cream: #F7F3EA;
  --cream-soft: #F1EBDE;
  --sand: #E4DAC6;
  --white: #FFFDF8;
  --terracotta: #C0603F;
  --terracotta-dark: #A24A2E;
  --gold: #D9A441;
  --gold-soft: rgba(217, 164, 65, .14);
  --muted: #5D6D62;
  --shadow-sm: 0 6px 18px -8px rgba(24, 39, 32, .18);
  --shadow-md: 0 18px 40px -18px rgba(24, 39, 32, .32);
  --shadow-lg: 0 34px 70px -30px rgba(19, 31, 25, .5);
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Work Sans', 'Segoe UI', Tahoma, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--forest-800);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.01em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

.container { max-width: 1200px; }

.ico { width: 1em; height: 1em; display: inline-block; vertical-align: -0.12em; }
.ico-lg { width: 26px; height: 26px; }

/* ---------------- Navigation ---------------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1030;
  transition: background .35s ease, box-shadow .35s ease;
}
.site-header .navbar { background: transparent; padding: .9rem 0; transition: padding .3s ease; }
.site-header.navbar-solid {
  background: rgba(247, 243, 234, .93);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px -18px rgba(19, 31, 25, .45);
}
.site-header.navbar-solid .navbar { padding: .45rem 0; }

.brand { display: flex; align-items: center; gap: .65rem; }
.brand-mark { width: 44px; height: 44px; flex: none; }
.brand-text {
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
  letter-spacing: .01em;
  transition: color .3s;
}
.brand-text em { color: var(--gold); font-style: italic; }
.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, .55);
  margin-top: .28rem;
  transition: color .3s;
}
.navbar-solid .brand-text { color: var(--forest-800); }
.navbar-solid .brand-sub { color: rgba(42, 70, 54, .55); }

.nav-menu { list-style: none; display: flex; align-items: center; gap: .25rem; margin: 0; padding: 0; }
.nav-link-custom {
  color: rgba(247, 243, 234, .85);
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem .85rem;
  border-radius: 999px;
  transition: color .25s, background .25s;
  white-space: nowrap;
}
.nav-link-custom:hover { color: #fff; background: rgba(255, 255, 255, .1); }
.nav-link-custom.active { color: #fff; background: rgba(255, 255, 255, .16); }
.navbar-solid .nav-link-custom { color: var(--ink); }
.navbar-solid .nav-link-custom:hover { color: var(--forest-700); background: rgba(42, 70, 54, .08); }
.navbar-solid .nav-link-custom.active { color: var(--forest-700); background: rgba(42, 70, 54, .1); }

.nav-cta { margin-left: .75rem; }

.nav-toggle {
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(247, 243, 234, .35);
  background: rgba(247, 243, 234, .08);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: border-color .3s, background .3s;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: transform .3s, opacity .3s, background .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.navbar-solid .nav-toggle { border-color: rgba(42, 70, 54, .3); background: rgba(42, 70, 54, .06); }
.navbar-solid .nav-toggle span { background: var(--forest-800); }
.site-header.navbar-solid .nav-toggle span { background: var(--forest-800); }

@media (max-width: 991.98px) {
  .nav-collapse.show {
    background: var(--cream);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    margin-top: .75rem;
    padding: .75rem;
  }
  .nav-menu { flex-direction: column; align-items: stretch; gap: .15rem; }
  .nav-link-custom, .navbar-solid .nav-link-custom { color: var(--ink); padding: .7rem 1rem; border-radius: .75rem; }
  .nav-link-custom.active, .navbar-solid .nav-link-custom.active { background: rgba(42, 70, 54, .1); color: var(--forest-700); }
  .nav-cta { margin: .5rem 0 .25rem; width: 100%; }
  .nav-cta .btn-haven { width: 100%; justify-content: center; }
}

/* ---------------- Buttons & chips ---------------- */

.btn-haven {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--terracotta);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: .85rem 1.7rem;
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  box-shadow: 0 14px 30px -14px rgba(192, 96, 63, .65);
  transition: transform .25s, background .25s, box-shadow .25s;
}
.btn-haven:hover, .btn-haven:focus {
  background: var(--terracotta-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 38px -14px rgba(192, 96, 63, .7);
}
.btn-haven .arrow { transition: transform .25s; }
.btn-haven:hover .arrow { transform: translateX(4px); }

.btn-ghost-light {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  border: 1.5px solid rgba(247, 243, 234, .55);
  color: var(--cream);
  border-radius: 999px;
  padding: .85rem 1.7rem;
  font-weight: 600;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.btn-ghost-light:hover { background: var(--cream); color: var(--forest-800); border-color: var(--cream); transform: translateY(-2px); }

.btn-line {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  border: 1.5px solid rgba(42, 70, 54, .4);
  color: var(--forest-700);
  border-radius: 999px;
  padding: .8rem 1.6rem;
  font-weight: 600;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.btn-line:hover { background: var(--forest-700); color: var(--cream); border-color: var(--forest-700); transform: translateY(-2px); }

.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--cream-soft);
  color: var(--forest-700);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .42rem .9rem;
  border-radius: 999px;
}
.chip-gold { background: var(--gold-soft); color: #8a6420; }

.text-link {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--terracotta);
  font-weight: 600;
  transition: gap .25s, color .25s;
}
.text-link:hover { color: var(--terracotta-dark); gap: .7rem; }

/* ---------------- Hero (home) ---------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
  padding: 8.5rem 0 6.5rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(100deg, rgba(15, 25, 20, .93) 0%, rgba(15, 25, 20, .74) 40%, rgba(15, 25, 20, .28) 72%, rgba(15, 25, 20, .5) 100%),
    url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
}
.hero-inner { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(247, 243, 234, .1);
  border: 1px solid rgba(247, 243, 234, .28);
  padding: .5rem 1.15rem;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--cream);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.hero-eyebrow .ico { color: var(--gold); }
.hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.7rem);
  color: var(--white);
  font-weight: 600;
  margin: 1.5rem 0 1.25rem;
  max-width: 15ch;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 500; }
.hero-lead { max-width: 34rem; font-size: 1.14rem; color: rgba(247, 243, 234, .85); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.4rem; }
.hero-scroll {
  position: absolute;
  bottom: 1.7rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(247, 243, 234, .55);
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  z-index: 1;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 46px;
  background: linear-gradient(rgba(247, 243, 234, .75), transparent);
  animation: drip 2.4s ease-in-out infinite;
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------------- Ticker strip ---------------- */

.ticker {
  background: var(--forest-900);
  color: rgba(247, 243, 234, .82);
  overflow: hidden;
  padding: 1rem 0;
  border-top: 1px solid rgba(247, 243, 234, .08);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 36s linear infinite;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 3rem; padding-right: 3rem; }
.ticker-item .ico { color: var(--gold); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------------- Sections ---------------- */

.section { padding: 5.5rem 0; }
.section-tight { padding: 4rem 0; }
.section-cream-soft { background: var(--cream-soft); }
.section-white { background: var(--white); }
.section-forest { background: var(--forest-900); }

.section-head { max-width: 44rem; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin: .9rem 0 1rem; }
.section-lead { color: var(--muted); font-size: 1.05rem; }
.section-forest .section-title { color: var(--cream); }
.section-forest .section-lead { color: rgba(247, 243, 234, .7); }
.section-forest .eyebrow { color: var(--gold); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.eyebrow::before { content: ''; width: 36px; height: 2px; background: var(--gold); border-radius: 2px; }
.eyebrow.center::after { content: ''; width: 36px; height: 2px; background: var(--gold); border-radius: 2px; }

/* ---------------- Service cards ---------------- */

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(42, 70, 54, .08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.service-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.service-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.service-card:hover .service-media img { transform: scale(1.06); }
.service-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(18, 32, 26, .3));
  pointer-events: none;
}
.service-body { padding: 1.6rem 1.6rem 1.75rem; display: flex; flex-direction: column; flex: 1; gap: .8rem; }
.service-body h3 { font-size: 1.3rem; margin: 0; }
.service-body p { color: var(--muted); font-size: .94rem; margin: 0; flex: 1; }
.card-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; color: var(--terracotta);
  margin-top: .35rem;
}
.card-cta .arrow { transition: transform .25s; }
.service-card:hover .card-cta .arrow { transform: translateX(4px); }

/* accent cards (no photo) */
.service-card.accent {
  background: linear-gradient(150deg, var(--forest-700), var(--forest-900));
  border: none;
  justify-content: center;
  padding: 2.2rem 1.9rem;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.service-card.accent::before {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 164, 65, .22), transparent 65%);
  top: -100px; right: -80px;
}
.service-card.accent.terra { background: linear-gradient(150deg, var(--terracotta), var(--terracotta-dark)); }
.accent-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(247, 243, 234, .12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  position: relative;
}
.accent-icon .ico { width: 28px; height: 28px; }
.service-card.accent h3 { color: var(--white); position: relative; }
.service-card.accent p { color: rgba(247, 243, 234, .78); position: relative; }
.service-card.accent .card-cta { color: var(--gold); }
.service-card.accent.terra .card-cta { color: var(--cream); }
.service-card.accent .card-cta::after { content: none; }

/* ---------------- Feature cards (why us) ---------------- */

.feature {
  display: flex; flex-direction: column; gap: .8rem;
  padding: 1.8rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(42, 70, 54, .08);
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--forest-700), var(--forest-600));
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
}
.feature-icon .ico { width: 26px; height: 26px; }
.feature h4 { font-size: 1.16rem; margin: 0; }
.feature p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ---------------- Checklists ---------------- */

.check-list { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: .9rem; }
.check-list li { display: flex; gap: .85rem; align-items: flex-start; color: var(--ink); font-size: .98rem; }
.check-ico {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--forest-700);
  display: flex; align-items: center; justify-content: center;
  margin-top: .1rem;
}
.check-ico .ico { width: 15px; height: 15px; }

/* ---------------- Collage / imagery ---------------- */

.about-collage { position: relative; }
.about-collage .main {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-collage .sub {
  position: absolute;
  width: 52%;
  bottom: -1.8rem; right: -1.2rem;
  border: 8px solid var(--cream);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}
.about-collage .frame {
  position: absolute;
  inset: 1.6rem -1.4rem -1.4rem 1.6rem;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.img-badge {
  position: absolute;
  top: 1.4rem; left: 1.4rem;
  background: rgba(255, 253, 248, .95);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  padding: .95rem 1.15rem;
  display: flex; gap: .8rem; align-items: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.img-badge .badge-ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--forest-700);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.img-badge strong { display: block; font-size: .92rem; color: var(--ink); line-height: 1.3; }
.img-badge span { font-size: .78rem; color: var(--muted); }

.img-rounded { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* ---------------- Testimonials ---------------- */

.quote-card {
  background: var(--cream-soft);
  border-radius: var(--radius-lg);
  padding: 2.1rem;
  height: 100%;
  border: 1px solid rgba(42, 70, 54, .07);
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.quote-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.quote-mark { font-family: var(--font-display); font-size: 3.6rem; line-height: .8; color: var(--gold); }
.quote-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.07rem;
  color: var(--forest-800);
  line-height: 1.65;
  margin: 1rem 0 0;
  flex: 1;
}
.quote-who { display: flex; align-items: center; gap: .8rem; margin-top: 1.5rem; }
.quote-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--forest-700);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1rem;
}
.quote-who strong { display: block; font-size: .95rem; color: var(--ink); line-height: 1.3; }
.quote-who span { font-size: .82rem; color: var(--muted); }

/* ---------------- Blog cards ---------------- */

.blog-card { display: flex; flex-direction: column; height: 100%; }
.blog-card .card-cta { color: var(--forest-700); }
.blog-card:hover .card-cta { color: var(--terracotta); }
.blog-card .card-cta .arrow { transition: transform .25s; }
.blog-card:hover .card-cta .arrow { transform: translateX(4px); }

/* ---------------- CTA band ---------------- */

.cta-band {
  position: relative;
  background: linear-gradient(115deg, var(--forest-800) 0%, var(--forest-900) 55%, var(--forest-950) 100%);
  border-radius: 2rem;
  padding: 4rem 3rem;
  color: var(--cream);
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 164, 65, .22), transparent 65%);
  top: -220px; right: -140px;
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 96, 63, .2), transparent 65%);
  bottom: -240px; left: -120px;
  pointer-events: none;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 3.4vw, 2.6rem); position: relative; z-index: 1; }
.cta-band p { color: rgba(247, 243, 234, .78); position: relative; z-index: 1; }
.cta-band .eyebrow { color: var(--gold); }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; position: relative; z-index: 1; }

/* ---------------- Page banner (subpages) ---------------- */

.page-banner {
  position: relative;
  padding: 9.5rem 0 5rem;
  color: var(--cream);
  background: var(--forest-900);
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(247, 243, 234, .13) 1px, transparent 1.5px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(105deg, transparent 20%, #000 70%);
  mask-image: linear-gradient(105deg, transparent 20%, #000 70%);
  pointer-events: none;
}
.page-banner::after {
  content: '';
  position: absolute;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 164, 65, .16), transparent 65%);
  top: -260px; right: -180px;
  pointer-events: none;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner .crumbs {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, .55);
  margin-bottom: 1.1rem;
  display: flex; gap: .6rem; align-items: center;
}
.page-banner .crumbs a { transition: color .25s; }
.page-banner .crumbs a:hover { color: var(--gold); }
.page-banner .crumbs .sep { color: var(--gold); }
.page-banner h1 { color: var(--white); font-size: clamp(2.4rem, 4.6vw, 3.5rem); margin: 0 0 1rem; }
.page-banner .banner-lead { max-width: 38rem; color: rgba(247, 243, 234, .78); font-size: 1.08rem; }
.page-banner .eyebrow { color: var(--gold); }
.page-banner.img {
  background-size: cover;
  background-position: center;
}
.page-banner.img::before { display: none; }

/* ---------------- Contact ---------------- */

.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.9rem;
  border: 1px solid rgba(42, 70, 54, .08);
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.info-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(192, 96, 63, .12);
  color: var(--terracotta);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.info-icon .ico { width: 24px; height: 24px; }
.info-card h4 { font-size: 1.12rem; margin-bottom: .4rem; }
.info-card p { color: var(--muted); font-size: .93rem; margin: 0 0 .5rem; }
.info-card a.contact-value { color: var(--forest-700); font-weight: 600; font-size: 1rem; }
.info-card a.contact-value:hover { color: var(--terracotta); }

.form-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.6rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(42, 70, 54, .08);
}
.form-panel h3 { font-size: 1.6rem; margin-bottom: .4rem; }
.form-panel .panel-sub { color: var(--muted); font-size: .95rem; margin-bottom: 1.6rem; }
.form-label { font-weight: 600; font-size: .86rem; color: var(--forest-800); letter-spacing: .02em; margin-bottom: .4rem; }
.form-control, .form-select {
  background: var(--cream);
  border: 1.5px solid var(--sand);
  border-radius: .8rem;
  padding: .78rem 1rem;
  color: var(--ink);
  font-size: .95rem;
}
.form-control::placeholder { color: rgba(93, 109, 98, .6); }
.form-control:focus, .form-select:focus {
  background: var(--white);
  border-color: var(--terracotta);
  box-shadow: 0 0 0 .22rem rgba(192, 96, 63, .14);
}
.form-note { font-size: .82rem; color: var(--muted); }

.form-check-input {
  border: 1.5px solid var(--sand);
  background-color: var(--cream);
  width: 1.15rem;
  height: 1.15rem;
  margin-top: .2rem;
}
.form-check-input:checked {
  background-color: var(--terracotta);
  border-color: var(--terracotta);
}
.form-check-input:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 .22rem rgba(192, 96, 63, .14);
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--white);
  height: 100%;
  min-height: 340px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* form success */
.form-success {
  background: rgba(53, 88, 68, .08);
  border: 1.5px solid rgba(53, 88, 68, .25);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  text-align: center;
}
.form-success .success-ico {
  width: 62px; height: 62px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: var(--forest-700);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.form-success .success-ico .ico { width: 30px; height: 30px; }
.form-success h4 { font-size: 1.35rem; margin-bottom: .5rem; }
.form-success p { color: var(--muted); max-width: 26rem; margin: 0 auto 1.4rem; }

/* ---------------- Legal pages ---------------- */

.legal-wrap { max-width: 52rem; }
.legal-wrap section { margin-bottom: 2.4rem; }
.legal-wrap h2 {
  font-size: 1.45rem;
  margin-bottom: .7rem;
  display: flex; align-items: center; gap: .7rem;
}
.legal-wrap h2::before {
  content: '';
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex: none;
}
.legal-wrap p, .legal-wrap li { color: var(--muted); }
.legal-wrap ul { padding-left: 1.3rem; }
.legal-wrap li { margin-bottom: .4rem; }
.legal-wrap a { color: var(--terracotta); font-weight: 500; }
.legal-wrap a:hover { color: var(--terracotta-dark); }
.update-chip {
  display: inline-flex;
  background: var(--white);
  border: 1px solid rgba(42, 70, 54, .15);
  border-radius: 999px;
  padding: .35rem .95rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--muted);
  margin-top: 1.2rem;
}

/* ---------------- Newsletter pages ---------------- */

.perk-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.9rem;
  border: 1px solid rgba(42, 70, 54, .08);
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.perk-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.perk-card .info-icon { background: var(--gold-soft); color: #8a6420; }
.perk-card h4 { font-size: 1.12rem; margin-bottom: .45rem; }
.perk-card p { color: var(--muted); font-size: .93rem; margin: 0; }

.side-note-card {
  background: var(--forest-900);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  color: rgba(247, 243, 234, .82);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.side-note-card::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 164, 65, .2), transparent 65%);
  top: -120px; right: -100px;
}
.side-note-card h4 { color: var(--cream); font-size: 1.2rem; position: relative; }
.side-note-card p { font-size: .93rem; position: relative; }
.side-note-card a { color: var(--gold); font-weight: 600; }
.side-note-card a:hover { color: var(--cream); }
.side-note-card .divider { width: 44px; height: 2px; background: var(--gold); border-radius: 2px; margin: 1.3rem 0; }

/* ---------------- Blog post pages ---------------- */

.post-lead {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--forest-700);
  font-weight: 400;
}
.post-body { max-width: 46rem; }
.post-body h2 { font-size: 1.55rem; margin: 2.6rem 0 .9rem; }
.post-body p { color: var(--muted); }
.post-body figure { margin: 2.2rem 0; }
.post-body figure img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.post-body figcaption { font-size: .82rem; color: var(--muted); margin-top: .7rem; text-align: center; font-style: italic; }

.tip-box {
  background: var(--gold-soft);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.7rem 1.9rem;
  margin: 2.4rem 0;
}
.tip-box h4 {
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #8a6420;
  display: flex; align-items: center; gap: .55rem;
  margin-bottom: .6rem;
}
.tip-box p { color: var(--ink); margin: 0; font-size: .98rem; }

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--forest-700);
  text-align: center;
  max-width: 36rem;
  margin: 2.8rem auto;
  line-height: 1.5;
  position: relative;
  padding-top: 2.4rem;
}
.pull-quote::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.related-chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.related-chips a {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white);
  border: 1.5px solid rgba(42, 70, 54, .18);
  border-radius: 999px;
  padding: .55rem 1.1rem;
  font-weight: 600;
  font-size: .88rem;
  color: var(--forest-700);
  transition: all .25s;
}
.related-chips a:hover { background: var(--forest-700); color: var(--cream); border-color: var(--forest-700); }
.related-chips a .ico { color: var(--gold); }

/* ---------------- Footer ---------------- */

.site-footer {
  background: var(--forest-950);
  color: rgba(247, 243, 234, .72);
  padding-top: 4.5rem;
  margin-top: 0;
}
.site-footer h5 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: 1.15rem;
  letter-spacing: .02em;
  font-weight: 600;
}
.footer-blurb { font-size: .95rem; max-width: 24rem; margin-bottom: 1.4rem; }
.footer-contact { display: grid; gap: .45rem; }
.footer-contact a {
  color: var(--cream);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: .6rem;
  transition: color .25s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-contact .ico { color: var(--gold); width: 18px; height: 18px; }
.footer-link {
  display: block;
  color: rgba(247, 243, 234, .68);
  font-size: .92rem;
  padding: .26rem 0;
  transition: color .2s, transform .2s;
  width: fit-content;
}
.footer-link:hover { color: var(--gold); transform: translateX(4px); }
.footer-nl p { font-size: .9rem; margin-bottom: .9rem; }
.footer-nl .btn-haven { padding: .65rem 1.35rem; font-size: .9rem; }
.footer-bottom {
  border-top: 1px solid rgba(247, 243, 234, .12);
  margin-top: 3.5rem;
  padding: 1.5rem 0;
  font-size: .85rem;
  color: rgba(247, 243, 234, .5);
}
.footer-bottom a { color: rgba(247, 243, 234, .75); transition: color .25s; }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom .legal-links a { margin-left: 1.4rem; }

/* ---------------- Reveal animation ---------------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

/* ---------------- Responsive ---------------- */

@media (max-width: 991.98px) {
  .section { padding: 4rem 0; }
  .hero { padding: 8rem 0 6rem; }
  .cta-band { padding: 3rem 2rem; border-radius: var(--radius-lg); }
  .about-collage .sub { right: 0; bottom: -1.4rem; }
  .about-collage .frame { inset: 1.2rem -.6rem -.6rem 1.2rem; }
  .form-panel { padding: 2rem 1.5rem; }
}

@media (max-width: 575.98px) {
  .hero h1 { font-size: 2.5rem; }
  .cta-band { padding: 2.6rem 1.5rem; }
  .form-panel { padding: 1.8rem 1.3rem; }
  .page-banner { padding: 8.5rem 0 4rem; }
}

/* ---------------- Reduced motion ---------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .hero-scroll::after { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
