/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:        #5a5248;
  --teal-dark:   #3a3530;
  --teal-light:  #f0ebe2;
  --warm:        #f5f0e8;
  --text:        #2a2520;
  --text-light:  #6b6158;
  --white:       #ffffff;
  --shadow:      0 4px 24px rgba(0,0,0,0.07);
  --radius:      12px;
  --font:        'Cormorant Garamond', Georgia, serif;
  --sans:        'Jost', 'Helvetica Neue', Arial, sans-serif;
  --gold:        #a89070;
  --gold-light:  #ddd0bc;
  --ivory:       #faf8f4;
  --cream:       #f0ebe0;
  --stone-mid:   #c8b8a2;
  --stone-dark:  #7a6e62;
}

html { scroll-behavior: smooth; }

/* ===== PAGE TRANSITIONS ===== */
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-weight: 400;
  opacity: 0;
  transition: opacity 0.35s ease;
}
body.page-loaded { opacity: 1; }
body.page-exit { opacity: 0 !important; transition: opacity 0.3s ease; }

/* ===== CUSTOM CURSOR ===== */
@media (pointer: fine) { body, a, button { cursor: none !important; } }
.js-cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  top: 0; left: 0;
  transform: translate(-100px, -100px);
  transition: width 0.25s, height 0.25s, background 0.25s, border 0.25s;
  mix-blend-mode: multiply;
}
.js-cursor.hover {
  width: 36px; height: 36px;
  background: transparent;
  border: 1.5px solid var(--gold);
  mix-blend-mode: normal;
}

/* ===== FROSTED GLASS NAV ===== */
.nav { transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease; }
.nav.scrolled {
  background: rgba(255,255,255,0.78) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  background: var(--ivory);
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--stone-dark);
  padding: 0 32px;
  font-family: var(--sans);
  font-weight: 400;
}
.marquee-track span.dot {
  color: var(--gold);
  padding: 0;
  font-size: 1rem;
  letter-spacing: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== HERO GRAIN TEXTURE ===== */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  border-radius: 0;
}

/* ===== HERO ORNAMENT ===== */
.hero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 14px auto 22px;
  width: 220px;
}
.hero__ornament::before,
.hero__ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.5));
}
.hero__ornament::after {
  background: linear-gradient(to left, transparent, rgba(255,255,255,0.5));
}
.hero__ornament-diamond {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.7);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: scrollBounce 2s ease-in-out infinite;
  cursor: pointer;
}
.scroll-indicator__line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}
.scroll-indicator__dot {
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ===== BADGE POP ANIMATION ===== */
.badge-pop { animation: badgePop 0.5s ease forwards; }
@keyframes badgePop {
  0%   { transform: scale(0.8); opacity: 0; }
  60%  { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

/* ===== STAGGERED CARDS ===== */
.card-hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.card-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ===== HEADSHOT HOVER GLOW ===== */
.intro__img { transition: box-shadow 0.4s ease; }
.intro__img:hover {
  box-shadow: 0 16px 64px rgba(168,144,112,0.45), 0 0 0 1px rgba(168,144,112,0.2);
}
.bio-img { transition: box-shadow 0.4s ease; }
.bio-img:hover {
  box-shadow: 0 16px 64px rgba(168,144,112,0.45);
}

/* ===== HERO position for absolute children ===== */
.hero { position: relative; }

/* ===== ORIGINAL body styles ===== */
  letter-spacing: 0.01em;
}

img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }

h1, h2, h3, h4 {
  font-family: var(--font);
  line-height: 1.25;
  color: var(--text);
  font-weight: 500;
}

/* ===== FADE-IN ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ===== GOLD DIVIDER ===== */
.gold-divider {
  height: 1px;
  border: none;
  background: linear-gradient(to right, transparent 0%, var(--gold-light) 30%, var(--gold) 50%, var(--gold-light) 70%, transparent 100%);
  margin: 0;
}

/* ===== UTILITIES ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 90px 0; }
.section--warm { background: var(--cream); }
.section--teal { background: var(--ivory); }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  letter-spacing: 0.5px;
}
.btn-primary:hover { background: var(--teal-dark); color: var(--white); }
.btn-outline {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.85);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,0.3); color: var(--white); }
/* Non-hero outline buttons */
.section .btn-outline, .section--warm .btn-outline, .section--teal .btn-outline {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
  backdrop-filter: none;
}
.section .btn-outline:hover, .section--warm .btn-outline:hover, .section--teal .btn-outline:hover {
  background: var(--teal); color: var(--white);
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #eee;
  padding: 0 24px;
}
.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo img {
  height: 48px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.nav__logo:hover img { opacity: 1; }
.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav__links a {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--teal); }
.nav__links a.active { color: var(--teal); }
.nav__cta { margin-left: 16px; }

/* Dropdown */
.nav__item { position: relative; }
.nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 200px;
  padding: 8px 0;
  list-style: none;
}
.nav__item:hover .nav__dropdown { display: block; }
.nav__dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--text);
}
.nav__dropdown a:hover { background: var(--teal-light); color: var(--teal); }

/* Hamburger */
.nav__toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px 30px;
    gap: 16px;
    border-bottom: 1px solid #eee;
    box-shadow: var(--shadow);
  }
  .nav__links.open { display: flex; }
  .nav__dropdown { position: static; box-shadow: none; padding: 4px 0 4px 16px; display: block; }
  .nav__cta { display: none; }
}

/* ===== HERO ===== */
.hero {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(90,82,72,0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 10%, rgba(200,184,162,0.4) 0%, transparent 50%),
    linear-gradient(155deg, #2a2520 0%, #4a4238 25%, #7a6e62 50%, #c8b8a2 72%, #e8ddd0 88%, #f5f0e8 100%);
  padding: 110px 24px;
  text-align: center;
  position: relative;
}
.hero__logo {
  margin-bottom: 32px;
}
.hero__logo img {
  height: 130px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.35)) brightness(1.08);
}
@media (max-width: 600px) {
  .hero__logo img { height: 90px; }
}

.hero__eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}
.hero__title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 24px;
  color: #fff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 16px rgba(61, 40, 20, 0.35);
}
.hero__subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.92);
  max-width: 580px;
  margin: 0 auto 40px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__badge {
  margin-top: 60px;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero__badge-item strong {
  font-size: 1.5rem;
  color: #fff;
  font-family: var(--font);
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}
.hero__badge-item span { font-size: 0.85rem; color: rgba(255,255,255,0.85); }

/* ===== INSURANCE STRIP ===== */
.insurance-strip {
  background: #2a2520;
  color: rgba(255,255,255,0.88);
  padding: 14px 24px;
  text-align: center;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
}
.insurance-strip strong { margin-right: 8px; }
.insurance-strip span { opacity: 0.85; }

/* ===== INTRO / ABOUT PREVIEW ===== */
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.intro__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.14);
  background: var(--teal-light);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.9rem;
  position: relative;
}
.intro__img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(168,144,112,0.25);
  pointer-events: none;
}
.intro__img img { width: 100%; height: 100%; object-fit: cover; }
.intro__content p { color: var(--text-light); margin-bottom: 20px; }
.intro__content .creds {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.cred-tag {
  background: var(--ivory);
  color: var(--teal);
  border: 1px solid var(--gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.4px;
}
@media (max-width: 768px) {
  .intro { grid-template-columns: 1fr; }
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border-radius: 18px;
  padding: 44px 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.09);
  border-top: 2px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-light), var(--gold), var(--gold-light));
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 56px rgba(0,0,0,0.13);
}
.service-card__icon { font-size: 2.2rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 14px; color: var(--teal-dark); font-family: var(--font); font-weight: 500; }
.service-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 18px; line-height: 1.8; }
.service-card ul { list-style: none; padding: 0; border-top: 1px solid var(--gold-light); padding-top: 16px; }
.service-card ul li {
  padding: 5px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card ul li::before { content: "·"; color: var(--gold); font-weight: 700; font-size: 1.1rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 52px;
}
.testimonial-card {
  background: var(--ivory);
  border-radius: 18px;
  padding: 40px 36px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.07);
  border: 1px solid var(--gold-light);
  position: relative;
}
.testimonial-card__quote {
  font-family: var(--font);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.6;
}
.testimonial-card p {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.8;
  font-family: var(--font);
}
.testimonial-card__author {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--stone-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ===== TESTIMONIAL CAROUSEL ===== */
.t-carousel {
  position: relative;
  margin-top: 52px;
  overflow: hidden;
}
.t-carousel__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.t-carousel__track .testimonial-card {
  min-width: 100%;
  box-sizing: border-box;
}
.t-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.t-carousel__btn {
  background: var(--ivory);
  border: 1px solid var(--gold-light);
  color: var(--teal-dark);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-carousel__btn:hover {
  background: var(--gold-light);
  border-color: var(--gold);
}
.t-carousel__dots {
  display: flex;
  gap: 8px;
}
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.t-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #2a2520 0%, #4a4238 60%, #5a5248 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
}
.cta-banner h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 16px; color: var(--white); }
.cta-banner p { font-size: 1.1rem; opacity: 0.85; max-width: 520px; margin: 0 auto 36px; }
.cta-banner .btn-primary { background: var(--white); color: var(--teal-dark); }
.cta-banner .btn-primary:hover { background: var(--teal-light); }

/* ===== CONTACT FORM ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.contact-info h3 { font-size: 1.3rem; margin-bottom: 20px; color: var(--teal-dark); }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-info-item__icon { font-size: 1.3rem; margin-top: 2px; }
.contact-info-item p { color: var(--text-light); font-size: 0.95rem; }
.contact-info-item strong { display: block; color: var(--text); }

.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--sans);
  color: var(--text);
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 130px; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== BUTTERFLY VIDEO ===== */
.video-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.video-hero__bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
}
.video-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-hero__quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  max-width: 680px;
  color: white;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.video-hero__q {
  font-family: var(--font);
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  line-height: 1.3;
  color: white;
}
.video-hero__a {
  font-family: var(--font);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  line-height: 1.5;
  color: var(--gold-light);
}
.video-hero__link {
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.video-hero__quote:hover .video-hero__link {
  color: var(--gold-light);
  border-color: var(--gold-light);
}
@media (max-width: 600px) { .video-hero { height: 260px; } }

/* ===== CAROUSEL ===== */
.carousel-section { background: #000; }
.carousel { position: relative; overflow: hidden; height: 70vh; min-height: 420px; }
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}
.carousel-slide {
  min-width: 100%;
  height: 100%;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  color: var(--teal-dark);
  transition: background 0.2s;
}
.carousel-btn:hover { background: white; }
.carousel-btn--prev { left: 16px; }
.carousel-btn--next { right: 16px; }
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.carousel-dot.active { background: white; }
@media (max-width: 600px) { .carousel { height: 55vw; min-height: 260px; } }

/* ===== PAGE HERO ===== */
.page-hero {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(90,82,72,0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 10%, rgba(200,184,162,0.35) 0%, transparent 50%),
    linear-gradient(155deg, #2a2520 0%, #4a4238 30%, #7a6e62 55%, #c8b8a2 78%, #f0ebe0 100%);
  padding: 90px 24px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); color: #fff; margin-bottom: 14px; text-shadow: 0 2px 16px rgba(0,0,0,0.3); }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.88); max-width: 580px; margin: 0 auto; text-shadow: 0 1px 8px rgba(0,0,0,0.2); }

/* ===== ABOUT PAGE ===== */
.bio-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.bio-img {
  border-radius: var(--radius);
  background: var(--teal-light);
  aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 0.9rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.bio-img img { width: 100%; height: 100%; object-fit: cover; }
.bio-content p { color: var(--text-light); margin-bottom: 18px; }
.bio-subtitle {
  font-family: var(--font);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
  margin: -6px 0 26px !important;
}
.bio-closing {
  font-family: var(--font);
  font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  line-height: 1.5;
  color: var(--teal-dark) !important;
  margin: 30px 0 24px !important;
}
.bio-signoff {
  font-family: var(--font);
  font-size: 1.15rem;
  color: var(--teal-dark) !important;
  line-height: 1.6;
}
.bio-signoff strong { font-style: italic; font-weight: 600; }
@media (max-width: 768px) { .bio-grid { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq-featured {
  max-width: 760px;
  margin: 8px auto 0;
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 48px);
}
.faq-featured__q {
  font-family: var(--font);
  font-style: italic;
  font-size: clamp(1.7rem, 4.5vw, 2.5rem);
  line-height: 1.25;
  color: var(--teal-dark);
  margin: 14px 0 28px;
}
.faq-featured__a {
  font-family: var(--font);
  font-size: clamp(1.2rem, 2.8vw, 1.6rem);
  line-height: 1.7;
  color: var(--gold);
  letter-spacing: 0.01em;
}
.faq-list { max-width: 740px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid #eee; }
.faq-item summary {
  padding: 20px 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--teal); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 0 20px; color: var(--text-light); }

/* ===== RESOURCES ===== */
.resource-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 40px; }
.resource-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.resource-card__icon { font-size: 2rem; margin-bottom: 12px; }
.resource-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--teal-dark); }
.resource-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px; }

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(160deg, #1a1612 0%, #2a2520 50%, #3a3530 100%);
  color: rgba(255,255,255,0.7);
  padding: 80px 24px 36px;
  position: relative;
}
.footer::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin-bottom: 60px;
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand p { font-size: 0.9rem; line-height: 1.8; max-width: 280px; color: rgba(255,255,255,0.55); margin-top: 12px; }
.footer__col h4 {
  color: var(--white);
  font-size: 0.75rem;
  margin-bottom: 20px;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 12px; }
.footer__col ul li a { color: rgba(255,255,255,0.55); font-size: 0.9rem; transition: color 0.2s; }
.footer__col ul li a:hover { color: var(--gold-light); }
.footer__tagline {
  max-width: 1100px;
  margin: 56px auto 8px;
  padding: 40px 24px 0;
  border-top: 1px solid rgba(221,208,188,0.18);
  text-align: center;
}
.footer__tagline span {
  font-family: var(--font);
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  line-height: 1.3;
  color: var(--gold-light);
  letter-spacing: 0.01em;
}
.footer__bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
}
.footer__social { display: flex; gap: 20px; }
.footer__social a { color: rgba(255,255,255,0.45); font-size: 0.85rem; transition: color 0.2s; letter-spacing: 0.5px; }
.footer__social a:hover { color: var(--gold-light); }
@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; }
}

/* ===== CRISIS BANNER ===== */
.crisis-banner {
  background: #fff3cd;
  border-left: 4px solid #f0a500;
  padding: 14px 20px;
  border-radius: 8px;
  margin: 30px 0;
  font-size: 0.9rem;
  color: #6b4c00;
}

/* ===== WELCOME BANNER + PLUSH CATEGORY COLUMNS ===== */
.welcome-band{
  background:var(--taupe-dark, #3a3530);
  color:var(--ivory, #faf8f4);
  text-align:center;
  padding:78px 24px;
}
.welcome-band h2{
  font-family:var(--font);
  font-weight:500;
  font-size:clamp(2.4rem,5vw,3.4rem);
  color:var(--ivory, #faf8f4);
  margin:0 0 16px;
  letter-spacing:0.5px;
}
.welcome-band p{
  font-family:var(--font);
  font-style:italic;
  font-size:clamp(1.2rem,2.4vw,1.6rem);
  color:var(--gold-light, #ddd0bc);
  max-width:680px;
  margin:0 auto;
  line-height:1.5;
}
.cat-cols{
  display:grid;
  grid-template-columns:repeat(3,1fr);
}
.cat{
  padding:88px 48px 96px;
  text-align:center;
  min-height:560px;
  display:flex;
  flex-direction:column;
  align-items:center;
  transition:transform 0.3s ease;
}
.cat--1{background:#f3eee4;}
.cat--2{background:#e9dfca;}
.cat--3{background:#dccdab;}
.cat:hover{transform:translateY(-6px);}
.cat__num{
  font-family:var(--sans);
  font-weight:300;
  font-size:2.8rem;
  color:var(--gold, #a89070);
  display:block;
  margin-bottom:20px;
  line-height:1;
}
.cat h3{
  font-family:var(--font);
  font-weight:500;
  font-size:clamp(1.7rem,2.6vw,2.15rem);
  color:var(--text, #2a2520);
  margin:0 0 28px;
  padding-bottom:8px;
  border-bottom:1.5px solid rgba(90,82,72,0.35);
}
.cat p{
  font-size:1.08rem;
  line-height:1.9;
  color:var(--text-light, #6b6158);
  max-width:36ch;
  margin:0;
}
@media (max-width:860px){
  .cat-cols{grid-template-columns:1fr;}
  .cat{min-height:0;padding:64px 40px;}
}

/* clickable category columns */
a.cat{ text-decoration:none; color:inherit; cursor:pointer; }
.cat__more{
  margin-top:26px;
  font-family:var(--sans);
  font-size:0.9rem;
  letter-spacing:0.06em;
  color:var(--gold, #a89070);
  opacity:0.85;
  transition:opacity 0.25s ease, transform 0.25s ease;
}
a.cat:hover .cat__more{ opacity:1; transform:translateX(4px); }
a.cat:hover h3{ color:var(--taupe, #5a5248); }

/* ===== SHARE YOUR JANUARY (anonymous review form) ===== */
.share-january{
  max-width:620px;
  margin:64px auto 0;
  text-align:center;
  background:var(--white, #fff);
  border:1px solid #e7ddca;
  border-radius:var(--radius, 12px);
  box-shadow:var(--shadow, 0 4px 24px rgba(0,0,0,0.07));
  padding:44px 40px;
}
.share-january h3{
  font-family:var(--font);
  font-weight:500;
  font-size:1.8rem;
  color:var(--taupe-dark, #3a3530);
  margin:0 0 12px;
}
.share-january > p{
  color:var(--text-light, #6b6158);
  font-size:0.98rem;
  line-height:1.7;
  margin:0 0 26px;
}
.share-form{ display:flex; flex-direction:column; gap:16px; text-align:left; }
.hidden-field{ display:none; }
.share-label{ font-weight:500; color:var(--text, #2a2520); font-size:0.95rem; }
.share-form textarea{
  width:100%;
  padding:16px 18px;
  border:2px solid #e2d9c6;
  border-radius:var(--radius, 12px);
  font-family:var(--sans);
  font-size:1rem;
  color:var(--text, #2a2520);
  resize:vertical;
  line-height:1.7;
  transition:border-color 0.2s;
}
.share-form textarea:focus{ outline:none; border-color:var(--gold, #a89070); }
.share-consent{
  display:flex; align-items:flex-start; gap:10px;
  font-size:0.9rem; color:var(--text-light, #6b6158); cursor:pointer;
}
.share-consent input{ margin-top:3px; width:auto; }
.share-form .btn{ align-self:center; margin-top:6px; }
.share-success, .share-error{ display:none; border-radius:8px; padding:16px 18px; font-size:0.95rem; line-height:1.6; text-align:center; }
.share-success{ background:var(--teal-light, #f0ebe2); color:var(--taupe-dark, #3a3530); }
.share-error{ background:#fff0f0; border:1px solid #ffcccc; color:#c0392b; }
@media (max-width:600px){ .share-january{ padding:32px 22px; margin-top:48px; } }

.share-note{
  text-align:center;
  font-family:var(--font);
  font-style:italic;
  color:var(--text-light, #6b6158);
  font-size:1.02rem;
  margin:44px auto 0;
  max-width:520px;
}

/* ===== SLEEK / COMPACT: Their January + review form ===== */
#testimonials{ padding:66px 0; }
#testimonials .section-subtitle{ font-size:1rem; max-width:520px; }
#testimonials .t-carousel{ margin-top:34px; max-width:760px; margin-left:auto; margin-right:auto; }
#testimonials .testimonial-card{
  background:transparent;
  border:none;
  box-shadow:none;
  padding:8px 40px 4px;
  text-align:center;
}
#testimonials .testimonial-card__quote{ font-size:2.6rem; margin-bottom:0; opacity:0.5; }
#testimonials .testimonial-card p{ font-size:1.12rem; line-height:1.75; margin-bottom:18px; }
#testimonials .t-carousel__controls{ margin-top:20px; }
#testimonials .t-carousel__btn{ width:38px; height:38px; font-size:1.2rem; }

/* review form: collapsed by default, compact + luxe */
.share-january{
  max-width:560px;
  margin:28px auto 0;
  text-align:center;
  background:none;
  border:none;
  box-shadow:none;
  padding:0;
}
.share-toggle{
  background:none;
  border:none;
  cursor:pointer;
  font-family:var(--font);
  font-style:italic;
  font-size:1.3rem;
  color:var(--taupe-dark, #3a3530);
  letter-spacing:0.4px;
  padding:4px 0;
  border-bottom:1px solid var(--gold, #a89070);
  transition:color 0.2s;
}
.share-toggle span{ display:inline-block; color:var(--gold, #a89070); transition:transform 0.25s; }
.share-toggle.open span{ transform:rotate(90deg); }
.share-toggle:hover{ color:var(--gold, #a89070); }
.share-january .share-note{ margin:12px auto 0; font-size:0.86rem; font-style:italic; }
.share-body{ margin-top:24px; text-align:left; }
.share-body .share-form{ gap:14px; }
.share-body textarea{ font-size:0.98rem; }
