/* =========================================
   EVERGREEN TINY HOMES — v4
   Clean Modern Design
   ========================================= */

/* Fonts loaded via <link> tags in HTML for faster rendering */

/* --- Design Tokens --- */
:root {
  /* Clean Palette — no pink */
  --cream:         #FAFAFA;
  --cream-alt:     #F3F5F2;
  --cream-border:  #DEE2DA;
  --white:         #FFFFFF;

  /* Greens */
  --green-deep:    #172D09;
  --green-dark:    #1F3E0D;
  --green-mid:     #2E5A15;
  --green-light:   #E5EFD9;
  --green-accent:  #4A7A25;

  /* Warm accents */
  --gold:          #C49A3C;
  --gold-light:    #F5E9CC;

  /* Text */
  --ink:           #1A1610;
  --ink-mid:       #4A4438;
  --ink-light:     #7A7268;

  /* Fonts */
  --serif:  'Hind', system-ui, sans-serif;
  --sans:   'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-pad:  100px;
  --max-width:    1200px;
  --radius:       0px;
  --radius-lg:    0px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.section         { padding: var(--section-pad) 0; background: var(--cream); }
.section--alt    { padding: var(--section-pad) 0; background: var(--cream-alt); }
.section--dark   { padding: var(--section-pad) 0; background: var(--green-deep); color: var(--white); }
.section--white  { padding: var(--section-pad) 0; background: var(--white); }

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow--light { color: rgba(255,255,255,0.5); }
.eyebrow--light::before { background: var(--gold); }
.eyebrow--ruled::after {
  content: '';
  display: inline-block;
  width: 24px; height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--serif);
  line-height: 1.15;
  font-weight: 700;
  color: var(--ink);
  font-style: normal;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 1rem; font-family: var(--sans); font-weight: 600; }

p { color: var(--ink-mid); max-width: 58ch; line-height: 1.8; }
p.wide { max-width: 72ch; }

/* Divider line */
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  border: 1.5px solid var(--green-dark);
}
.btn-primary:hover { background: var(--green-deep); border-color: var(--green-deep); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--cream-border);
}
.btn-outline:hover { border-color: var(--ink); }

.btn-outline-green {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
}
.btn-outline-green:hover { background: var(--green-dark); color: var(--white); }

.btn-light {
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
  box-shadow: 0 4px 12px rgba(196, 154, 60, 0.35);
}
.btn-light:hover { background: #b08a32; border-color: #b08a32; box-shadow: 0 6px 16px rgba(196, 154, 60, 0.45); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-light:hover { border-color: var(--white); }

/* =========================================
   MOBILE CTA BAR
   ========================================= */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--cream-border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  padding: 10px 16px;
  gap: 10px;
}
.mobile-cta-bar__call {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex: 1; padding: 13px;
  border: 1.5px solid var(--green-dark);
  border-radius: var(--radius);
  font-size: 13px; font-weight: 600; color: var(--green-dark);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.mobile-cta-bar__call svg { width: 15px; height: 15px; }
.mobile-cta-bar__estimate {
  display: flex; align-items: center; justify-content: center;
  flex: 1; padding: 13px;
  background: var(--green-dark); color: var(--white);
  border-radius: var(--radius);
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
}

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-border);
  transition: box-shadow 0.2s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.06); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 48px; width: auto; display: block; }
.nav__logo-text {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--green-dark);
  line-height: 1.25;
  font-style: italic;
}
.nav__links {
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: center;
}
.nav__links a {
  font-size: 13px; font-weight: 500;
  color: var(--ink-mid);
  padding: 6px 13px;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
  letter-spacing: 0.01em;
}
.nav__links a:hover { color: var(--green-dark); background: var(--green-light); }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown > a { display: flex; align-items: center; gap: 8px; }
.nav__dropdown > a::after {
  content: '';
  display: inline-block; width: 8px; height: 5px;
  margin-left: 6px;
  position: relative; top: -1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 5'%3E%3Cpath d='M1 1l3 3 3-3' stroke='%234A4438' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  padding: 8px; min-width: 220px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.15s, transform 0.15s;
}
/* Invisible bridge to keep dropdown open when moving mouse from trigger to menu */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu a {
  display: block; padding: 9px 14px;
  font-size: 13px; border-radius: var(--radius);
  color: var(--ink-mid);
}
.nav__dropdown-menu a:hover { background: var(--cream); color: var(--green-dark); }

.nav__cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav__cta .btn-primary {
  padding: 10px 20px;
  font-size: 12px;
  box-shadow: 0 2px 8px rgba(23,45,9,0.35);
}
.nav__cta .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(23,45,9,0.45);
}
.nav__phone {
  font-size: 13px; font-weight: 600;
  color: var(--ink-mid); letter-spacing: 0.01em;
}
.nav__phone:hover { color: var(--green-dark); }

.nav__toggle {
  display: none; flex-direction: column;
  gap: 5px; padding: 8px; cursor: pointer;
}
.nav__toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); border-radius: 2px; transition: all 0.25s;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  display: grid;
  grid-template-columns: 7fr 3fr;
  margin-top: 80px;
  padding: 32px 40px;
  gap: 24px;
  background: var(--white);
}
.hero__title-short { display: none; }

.hero__eyebrow {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.0;
  color: var(--gold);
  margin-top: 0;
  margin-bottom: 14px;
}

.hero__img {
  position: relative;
  overflow: hidden;
  min-height: 0;
}
.hero__img img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__content-panel {
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
}
.hero__content {
  flex: 0 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: 0 0 20px;
}
.hero__content p,
.hero__content h1 {
  max-width: none;
  width: 100%;
  box-sizing: border-box;
}
.hero h1 {
  color: var(--green-deep);
  font-style: normal;
  font-size: clamp(1.8rem, 2.4vw, 2.9rem);
  margin-top: 0;
  margin-bottom: 14px;
  line-height: 1.08;
}
.hero h1 strong {
  font-style: normal;
  display: block;
  font-size: 0.45em;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 14px;
}
.hero__sub {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 18px;
  line-height: 1.7;
}
.hero__proof {
  display: flex; align-items: center;
  gap: 10px; margin-bottom: 0; flex-wrap: wrap;
}
.hero__stars { color: #D4A843; font-size: 1.0625rem; letter-spacing: 2px; display: inline; }
.hero__proof-text { font-size: 15px; color: var(--text-light); display: inline; }

/* =========================================
   HERO FORM  — dark green CTA block
   ========================================= */
.hero-form {
  background: var(--green-deep);
  padding: 28px 36px 36px;
}
.hero-form__step--hidden { display: none !important; }

/* Hero CTA button block */
.hero-cta-block {
  background: var(--green-deep);
  padding: 32px 36px 36px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
}
.hero-cta-btn {
  display: block;
  width: 100%;
  background: var(--white);
  color: var(--green-deep);
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  padding: 18px 24px;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s, transform 0.15s;
}
.hero-cta-btn:hover {
  background: var(--gold);
  color: var(--green-deep);
  transform: translateY(-2px);
}
.hero-cta-micro {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-align: center;
  margin: 10px 0 0;
  max-width: none;
  line-height: 1.4;
}
.hero-cta-steps {
  margin-top: 24px;
}
.hero-cta-steps__label {
  font-size: 0.78rem;
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin: 0 0 12px;
  max-width: none;
}
.hero-cta-steps__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: steps;
}
.hero-cta-steps__list li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 10px;
}
.hero-cta-steps__list li:last-child { margin-bottom: 0; }
.hero-cta-steps__list li::before {
  content: counter(steps);
  min-width: 22px;
  height: 22px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Step 1 — type grid */
.hero-form__headline {
  font-size: 1rem;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.2;
}
.hero-form__label {
  font-size: 0.68rem;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.hero-form__types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.hero-form__type-btn {
  background: var(--white);
  border: none;
  color: var(--green-deep);
  padding: 13px 8px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--sans);
  cursor: pointer;
  text-align: center;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}
.hero-form__type-btn:hover {
  background: var(--green-mid);
  color: var(--white);
}

/* Step 2 — contact fields */
.hero-form__back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  margin-bottom: 14px;
  user-select: none;
}
.hero-form__back:hover { color: rgba(255,255,255,0.9); }
.hero-form__back-arrow { font-size: 0.8rem; }
.hero-form__back-change {
  margin-left: auto;
  font-size: 0.7rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: rgba(255,255,255,0.4);
}
.hero-form__fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-form__name-row {
  display: flex;
  gap: 8px;
}
.hero-form__name-row input {
  flex: 1;
}
.hero-form__fields input {
  width: 100%;
  padding: 11px 13px;
  border: none;
  background: var(--white);
  color: var(--green-deep);
  font-size: 0.88rem;
  font-family: var(--sans);
  outline: none;
  box-sizing: border-box;
  transition: box-shadow 0.15s;
}
.hero-form__fields input:focus {
  box-shadow: 0 0 0 2px var(--gold);
}
.hero-form__fields input::placeholder { color: #999; }
.hero-form__phone-row {
  display: flex;
  gap: 8px;
}
.hero-form__phone-row input {
  flex: 1;
}
.hero-form__contact-toggle {
  display: flex;
  flex-shrink: 0;
  gap: 4px;
}
.hero-form__toggle-btn {
  background: var(--green-mid);
  border: none;
  color: rgba(255,255,255,0.7);
  padding: 0 14px;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--sans);
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.hero-form__toggle-btn:first-child { border-left: none; }
.hero-form__toggle-btn.active {
  background: var(--white);
  color: var(--green-deep);
  font-weight: 700;
}
.hero-form__toggle-btn:hover:not(.active) { color: var(--white); }
.hero-form__email-link {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  display: block;
  margin-top: -2px;
}
.hero-form__email-link:hover { color: rgba(255,255,255,0.7); }
.hero-form__submit {
  width: 100%;
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 14px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--sans);
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 6px;
}
.hero-form__submit:hover { background: #b38a34; }

/* Thank you state */
.hero-form__thanks { text-align: center; padding: 16px 0; }
.hero-form__thanks-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 14px;
}
.hero-form__thanks h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 6px; }
.hero-form__thanks p  { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

/* =========================================
   STATS BAR
   ========================================= */
.stats { background: var(--green-dark); padding: 0; }
.stats__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-left: 1px solid rgba(255,255,255,0.07);
}
.stats__item {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.stats__number {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
  font-style: normal;
}
.stats__star { color: #D4A843; font-size: 1.6rem; letter-spacing: 4px; }
.stats__label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--cream-border);
  padding: 14px 0;
}
.trust-bar__inner {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap; gap: 0;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 24px;
  font-size: 12px; font-weight: 500;
  color: var(--ink-mid);
  letter-spacing: 0.02em;
}
.trust-badge svg {
  width: 16px; height: 16px;
  color: var(--green-accent); flex-shrink: 0;
}
.trust-bar__divider {
  width: 1px; height: 16px;
  background: var(--cream-border);
}

/* =========================================
   INTRO / ABOUT
   ========================================= */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px; align-items: center;
}
.intro__text h2 { margin-bottom: 0; }
.intro__text .divider { margin: 20px 0 24px; }
.intro__text p { margin-bottom: 18px; }
.intro__image { position: relative; }
.intro__img-main {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; border-radius: var(--radius-lg);
}
.intro__img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: var(--cream-alt);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-light); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.intro__badge {
  position: absolute; bottom: -28px; left: -28px;
  background: var(--green-dark);
  color: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 12px 40px rgba(23,45,9,0.3);
}
.intro__badge-num {
  font-family: var(--serif); font-size: 2.8rem;
  font-weight: 700; line-height: 1;
  font-style: normal; display: block;
}
.intro__badge-text {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); display: block; margin-top: 6px;
}

/* Internal CTA strip */
.internal-cta {
  background: var(--green-dark);
  padding: 28px 0;
}
.internal-cta__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.internal-cta__text {
  font-size: 14px; color: rgba(255,255,255,0.65);
}
.internal-cta__text strong {
  color: var(--white); font-weight: 600;
}

/* =========================================
   PORTFOLIO
   ========================================= */
.portfolio__header {
  display: flex; justify-content: center;
  align-items: center; margin-bottom: 32px;
  text-align: center;
}
.portfolio__header .eyebrow { margin-bottom: 13px; }
.portfolio__header h2 { margin-bottom: 0; }
.portfolio__types-list {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px 4px; margin: 0; max-width: 100%;
  font-size: 14px; font-weight: 500; color: var(--ink);
}
.portfolio__types-list span { white-space: nowrap; }
.portfolio__types-list .portfolio__types-sep { color: var(--cream-border); font-size: 11px; }
.portfolio__types-list ✓,
.portfolio__types-list span:not(.portfolio__types-sep) { color: var(--ink); }
.portfolio__types-list span:not(.portfolio__types-sep)::first-letter { color: var(--green-mid); font-weight: 700; }
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 8px;
}
.portfolio__item {
  border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  background: var(--cream-alt);
}
.portfolio__item--tall { grid-row: span 2; }
.portfolio__img {
  width: 100%; height: 100%; position: relative; overflow: hidden;
}
.portfolio__img img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.5s ease;
}
.portfolio__item:hover .portfolio__img img { transform: scale(1.04); }
.portfolio__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-light);
}
.portfolio__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,20,5,0.75) 0%, transparent 100%);
  padding: 40px 20px 18px;
  display: flex; align-items: flex-end; justify-content: space-between;
  opacity: 0; transition: opacity 0.3s;
}
/* .portfolio__item:hover .portfolio__caption { opacity: 1; } */
.portfolio__type { font-size: 13px; font-weight: 600; color: var(--white); }
.portfolio__city { display: none; }

/* =========================================
   SERVICES
   ========================================= */
.services__header { margin-bottom: 32px; text-align: center; }
.services__header h2 { margin-bottom: 0; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.service-card {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 3 / 4;
  text-decoration: none;
  cursor: pointer;
}
.service-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__bg {
  transform: scale(1.06);
}
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,20,3,0.70) 0%, rgba(5,20,3,0.25) 30%, rgba(5,20,3,0.02) 55%, transparent 100%);
  transition: background 0.4s ease;
}
.service-card:hover .service-card__overlay {
  background: linear-gradient(to top, rgba(5,20,3,0.82) 0%, rgba(5,20,3,0.42) 35%, rgba(5,20,3,0.08) 60%, transparent 100%);
}
.service-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  z-index: 2;
}
.service-card__title {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.2;
}
.service-card__desc {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin-top 0.3s ease;
}
.service-card:hover .service-card__desc {
  max-height: 150px;
  opacity: 1;
  margin-top: 10px;
}

/* =========================================
   CATALOG LEAD MAGNET
   ========================================= */
.catalog-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
}
.catalog-cta__img {
  background: var(--cream-alt);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}
.catalog-cta__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.22));
}
.catalog-cta__form-panel {
  background: var(--cream-alt);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 52px;
  border-left: 1px solid var(--cream-border);
}
.catalog-cta__heading {
  font-size: clamp(1.4rem, 2vw, 2rem);
  color: var(--green-deep);
  margin-bottom: 10px;
  line-height: 1.15;
}
.catalog-cta__sub {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}
.catalog-cta__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.catalog-name-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.catalog-name-row input {
  flex: 1 1 120px;
}
.catalog-cta__form input {
  padding: 14px 16px;
  border: 1px solid var(--cream-border);
  background: var(--white);
  font-size: 0.95rem;
  font-family: var(--sans);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
}
.catalog-cta__form input:focus {
  border-color: var(--green-mid);
}
.catalog-cta__form input::placeholder {
  color: var(--text-light);
}
.catalog-cta__form button {
  padding: 16px 24px;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--sans);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 12px rgba(196, 154, 60, 0.35);
  margin-top: 4px;
}
.catalog-cta__form button:hover {
  background: #b08a32;
  box-shadow: 0 6px 16px rgba(196, 154, 60, 0.45);
}
.catalog-cta__thanks {
  display: none;
  background: var(--white);
  border-left: 3px solid var(--green-mid);
  padding: 14px 16px;
  font-size: 0.9rem;
  color: var(--green-deep);
  margin-top: 4px;
}
.catalog-cta__privacy {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

/* Catalog Post-Submit Quiz */
.catalog-quiz {
  animation: quizFadeIn 0.5s ease;
}
@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes quizSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.catalog-quiz__header {
  text-align: center;
  margin-bottom: 20px;
}
.catalog-quiz__icon {
  width: 44px;
  height: 44px;
  background: var(--green-mid);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 12px;
}
.catalog-quiz__greeting {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 8px;
}
.catalog-quiz__intro {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
}
.catalog-quiz__progress {
  height: 4px;
  background: var(--cream-alt);
  border-radius: 2px;
  margin-bottom: 24px;
  overflow: hidden;
}
.catalog-quiz__progress-bar {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.4s ease;
}
.catalog-quiz__question {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 14px;
  text-align: center;
}
.catalog-quiz__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.catalog-quiz__opt {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cream-alt);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green-deep);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}
.catalog-quiz__opt:hover {
  border-color: var(--gold);
  background: rgba(196, 154, 60, 0.06);
}
.catalog-quiz__opt.selected {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
}
.catalog-quiz__done {
  text-align: center;
  animation: quizFadeIn 0.5s ease;
}
.catalog-quiz__done-heading {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.catalog-quiz__done-msg {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 16px;
}
.catalog-quiz__done-cta {
  font-size: 0.9rem;
  color: var(--green-deep);
  font-weight: 600;
}
.catalog-quiz__done-cta a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}
.catalog-quiz__done-cta a:hover {
  text-decoration: underline;
}

/* Catalog Thank You */
.catalog-thanks-flip {
  text-align: center;
  animation: quizFadeIn 0.5s ease;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.catalog-thanks-flip__icon {
  width: 52px;
  height: 52px;
  background: var(--green-mid);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 12px;
  box-shadow: 0 4px 20px rgba(58, 90, 64, 0.3);
}
.catalog-thanks-flip__heading {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.catalog-thanks-flip__msg {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}

/* =========================================
   WHY EVERGREEN
   ========================================= */
.why__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 96px; align-items: center;
}
.why__image {
  aspect-ratio: 1;
  background: var(--cream-alt);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-light); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.why__image img { width: 100%; height: 100%; object-fit: cover; }
.why__points { display: flex; flex-direction: column; gap: 36px; }
.why__point { display: flex; gap: 20px; align-items: flex-start; }
.why__icon {
  width: 42px; height: 42px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green-dark);
}
.why__icon svg { width: 18px; height: 18px; }
.why__point h4 { margin-bottom: 5px; color: var(--green-dark); font-size: 0.9rem; }
.why__point p { font-size: 14px; max-width: 100%; }

/* =========================================
   PROCESS
   ========================================= */
.process__header { text-align: center; margin-bottom: 48px; }
.process__header h2 { margin-bottom: 0; }
.process__header .divider { margin: 20px auto; }
.process__steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; position: relative;
}
.process__steps::before { display: none; }
.process__step {
  position: relative; z-index: 1;
  padding: 28px 24px;
  min-height: 140px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
  display: flex; align-items: center;
  cursor: default;
}
.process__step:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(196,154,60,0.4);
  transform: translateY(-3px);
}
/* Number + title sit side by side */
.process__step-front {
  display: flex; align-items: center; gap: 14px;
  transition: opacity 0.3s ease;
}
.process__step-num {
  width: 40px; height: 40px;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 0.95rem; font-style: normal; font-weight: 700;
  flex-shrink: 0;
}
.process__step h4 { margin: 0; font-size: 0.92rem; line-height: 1.3; }
.process__step p { font-size: 13px; max-width: 100%; }
.process__cta { text-align: center; margin-top: 56px; }

/* Hover swap: front hides, desc shows */
.process__step--hover .process__step-desc {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  padding: 24px;
  display: flex; align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  margin: 0;
}
.process__step--hover:hover .process__step-front,
.process__step--hover:focus-within .process__step-front {
  opacity: 0;
}
.process__step--hover:hover .process__step-desc,
.process__step--hover:focus-within .process__step-desc {
  opacity: 1;
}

/* Process section on dark background */
.section--dark h2 { color: var(--white); }
.section--dark h4 { color: rgba(255,255,255,0.9); }
.section--dark p   { color: rgba(255,255,255,0.55); }
.section--dark .divider { background: rgba(255,255,255,0.25); }
.section--dark .process__step h4 { color: rgba(255,255,255,0.9); }
.section--dark .process__step p  { color: rgba(255,255,255,0.45); }
.section--dark .process__step--hover:hover .process__step-desc,
.section--dark .process__step--hover:focus-within .process__step-desc { color: rgba(255,255,255,0.85); }
.section--dark .process__step-num {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}

/* =========================================
   FLOOR PLANS
   ========================================= */
.plans__header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 48px;
}
.plans__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.plan-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none; color: inherit; display: block;
}
.plan-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.plan-card__img {
  aspect-ratio: 4/3;
  background: var(--cream-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-light); overflow: hidden;
}
.plan-card__img img { width: 100%; height: 100%; object-fit: cover; }
.plan-card__body { padding: 32px; }
.plan-card__tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 0; margin-bottom: 14px;
}
.plan-card h3 { margin-bottom: 10px; }
.plan-card p { font-size: 14px; max-width: 100%; margin-bottom: 24px; }
.plan-card__link {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green-accent);
  display: inline-flex; align-items: center; gap: 6px;
}
.plan-card__link::after { content: '→'; transition: transform 0.15s; }
.plan-card:hover .plan-card__link::after { transform: translateX(4px); }

/* =========================================
   REVIEWS
   ========================================= */
.reviews__header { text-align: center; margin-bottom: 32px; }
.reviews__header .eyebrow { margin-bottom: 13px; }
.reviews__aggregate {
  display: flex; align-items: center;
  justify-content: center; gap: 8px;
  flex-wrap: wrap;
}
.reviews__stars { color: #D4A843; font-size: 1rem; letter-spacing: 3px; }
.reviews__score {
  font-family: var(--serif); font-size: 1.1rem;
  color: var(--ink); font-style: normal; font-weight: 700;
}
.reviews__count { font-size: 12px; color: var(--ink-light); }

/* Marquee */
.reviews__marquee { overflow: hidden; padding: 4px 0; }
.reviews__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: reviews-scroll 90s linear infinite;
}
.reviews__track:hover { animation-play-state: paused; }
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Cards */
.review-card {
  background: var(--green-dark);
  border: none;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  width: 360px;
  min-height: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.review-card blockquote { flex: 1; }
.review-card__author { margin-top: auto; }
.review-card__stars {
  color: #D4A843; font-size: 0.85rem;
  letter-spacing: 3px; margin-bottom: 16px;
}
.review-card blockquote {
  font-family: var(--sans);
  font-size: 0.9rem; line-height: 1.7;
  color: rgba(255,255,255,0.75);
  font-style: normal; margin-bottom: 16px;
}
.review-card__author { display: flex; align-items: center; gap: 14px; }
.review-card__avatar {
  width: 38px; height: 38px;
  background: var(--green-mid); border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: var(--white); flex-shrink: 0;
}
.review-card__name { font-size: 13px; font-weight: 600; color: var(--white); }
.review-card__location { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* =========================================
   TEAM
   ========================================= */
.team__header { text-align: center; margin-bottom: 32px; }
.team__header .divider { margin: 18px auto; }
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.team-card { text-align: center; }
.team-card__img {
  width: 212px; height: 212px;
  border-radius: 50%; overflow: visible;
  margin: 0 auto 24px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-light); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.team-card__img::before {
  content: '';
  position: absolute;
  top: -8px; left: -8px; right: -8px; bottom: -8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  z-index: 0;
}
.team-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 50%; position: relative; z-index: 1; }
.team-card__name {
  font-family: var(--serif); font-size: 1.2rem;
  color: var(--green-dark); margin-bottom: 4px; font-style: normal; font-weight: 700;
}
.team-card__title {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.team-card p { font-size: 14px; max-width: 100%; margin: 0 auto; }

/* =========================================
   FAQ
   ========================================= */
.faq__header { margin-bottom: 17px; text-align: center; }
.faq__header h2 { margin-bottom: 0; }
.faq__list {
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 2px;
}
.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--cream-border);
}
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 28px;
  text-align: left; font-size: 14.5px; font-weight: 500;
  color: var(--ink); background: none; transition: background 0.15s;
}
.faq__q:hover { background: var(--cream); }
.faq__icon {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--gold); transition: transform 0.2s;
}
.faq__item.open .faq__icon { transform: rotate(180deg); }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s;
  padding: 0 28px;
}
.faq__item.open .faq__a { max-height: 300px; padding: 0 28px 24px; }
.faq__a p {
  font-size: 14px; line-height: 1.8;
  max-width: 100%; color: var(--ink-mid);
}
.faq__a a { color: var(--green-accent); text-decoration: underline; }

/* =========================================
   CITIES
   ========================================= */
.cities__header { text-align: center; margin-bottom: 18px; }
.cities__header .divider { margin: 18px auto; }
.cities__list {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 8px;
}
.cities__list li a {
  display: block; padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 0; font-size: 13px;
  color: var(--ink-mid); transition: all 0.15s;
}
.cities__list li a:hover {
  background: var(--green-dark); border-color: var(--green-dark); color: var(--white);
}

/* =========================================
   CTA BAND
   ========================================= */
.cta-band { background: var(--green-deep); padding: 28px 0; }
.cta-band__inner {
  display: flex; justify-content: space-between;
  align-items: center; gap: 48px;
}
.cta-band h2 { color: var(--white); margin-bottom: 0; max-width: none; font-style: normal; white-space: nowrap; }
.cta-band p { color: rgba(255,255,255,0.55); max-width: 100%; }
.cta-band__inner--row { flex-direction: row; align-items: center; justify-content: space-between; }
.cta-band__actions { display: flex; gap: 12px; flex-shrink: 0; }

/* =========================================
   FOOTER
   ========================================= */
.footer { background: var(--ink); padding: 80px 0 40px; }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 64px;
}
.footer__brand p {
  font-size: 13px; margin-top: 16px;
  max-width: 26ch; color: rgba(255,255,255,0.4); line-height: 1.7;
}
.footer__brand-name {
  font-family: var(--serif); font-size: 1.1rem;
  color: var(--white); font-style: normal; font-weight: 700;
}
.footer__trust { display: flex; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
.footer__trust span { font-size: 11px; color: rgba(255,255,255,0.3); font-weight: 500; }
.footer__col-title {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer__col ul a:hover { color: var(--white); }
.footer__contact p { font-size: 13px; color: rgba(255,255,255,0.5); max-width: 100%; }
.footer__contact a { color: rgba(255,255,255,0.6); }
.footer__contact a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(255,255,255,0.25);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .stats { margin-top: 32px; }
  .intro__grid, .why__grid { gap: 56px; }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .process__steps::before { display: none; }
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .portfolio__item--tall { grid-row: span 1; }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .reviews__grid .review-card:last-child { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  /* Stack hero at 1024px so image and text are full width */
  .hero { grid-template-columns: 1fr; padding: 0; gap: 0; height: auto; max-height: none; }
  .hero__img { min-height: 220px; max-height: 340px; }
  .hero__img img { object-position: center 30%; }
  .hero__content-panel { padding: 0; }
  .hero__content { padding: 16px 24px 24px; }
  .hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-top: 0; margin-bottom: 6px; }
  .hero h1 strong { margin-bottom: 6px; }
  .hero__title-full { display: none; }
  .hero__title-short { display: inline; }
  .stats__item--hide-mobile { display: none; }
  .trust-badge--hide-mobile { display: none; }

  /* Switch to hamburger menu at 1024px — before nav wraps to two lines */
  .mobile-cta-bar { display: flex; width: 100vw; max-width: 100%; }
  body { padding-bottom: 68px; }
  .nav__links, .nav__cta .btn-primary { display: none; }
  .nav__phone { display: none; }
  .nav__toggle { display: flex; }

  /* ---- Mobile menu (slide-down) ---- */
  .nav-open .nav__links {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: var(--white);
    border-bottom: 1px solid var(--cream-border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    padding: 16px 32px 24px;
    gap: 0;
    z-index: 200;
  }
  .nav-open .nav__links > li,
  .nav-open .nav__links > .nav__dropdown {
    padding: 0;
  }
  .nav-open .nav__links > li > a,
  .nav-open .nav__links > .nav__dropdown > a {
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    border-bottom: none;
    display: block;
  }

  /* Show dropdown items inline on mobile */
  .nav-open .nav__dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    min-width: 0;
    display: none;
  }
  .nav-open .nav__dropdown.open .nav__dropdown-menu {
    display: block;
  }
  .nav-open .nav__dropdown-menu a {
    padding: 10px 0;
    font-size: 14px;
    color: var(--ink-light);
    border-bottom: none;
  }

  /* Hamburger → X animation */
  .nav-open .nav__toggle span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
  }
  .nav-open .nav__toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav-open .nav__toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
  }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  html { overflow-x: hidden; width: 100%; }
  body { overflow-x: hidden; width: 100%; }

  .hero__content-panel { padding: 0; }
  .hero__img { min-height: 220px; max-height: 320px; }

  .stats { overflow: hidden; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(1),
  .stats__item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .trust-bar__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .trust-badge { white-space: nowrap; justify-content: flex-start; }
  .trust-bar__divider { display: none; }

  .catalog-cta { grid-template-columns: 1fr; }
  .catalog-cta__img { max-height: 280px; }
  .catalog-cta__form-panel { border-left: none; border-top: 1px solid var(--cream-border); padding: 32px 24px; }

  .intro__grid, .why__grid { grid-template-columns: 1fr; gap: 48px; }
  .why__image img, .why__grid img { max-width: 100%; width: 100%; height: auto; }
  .intro__image { order: -1; }
  .intro__badge { left: 0; bottom: -20px; }

  .internal-cta__inner { flex-direction: column; gap: 16px; }

  .portfolio__grid { grid-template-columns: 1fr 1fr; gap: 8px; grid-template-rows: auto; }
  .portfolio__item--tall { grid-row: span 1; }

  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }

  .process__steps { grid-template-columns: 1fr 1fr; }

  .plans__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .plans__grid { grid-template-columns: 1fr; }

  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__grid .review-card:last-child { display: block; }
  .reviews__grid .review-card:nth-child(2),
  .reviews__grid .review-card:nth-child(3) { display: none; }

  .team__grid { grid-template-columns: 1fr 1fr; justify-items: center; }
  .team-card { max-width: 320px; width: 100%; }
  .team-card__img { width: min(212px, 100%); height: auto; aspect-ratio: 1 / 1; }

  .cta-band__inner, .cta-band__inner--row { flex-direction: column; text-align: center; }
  .cta-band h2 { white-space: normal; font-size: 1.4rem !important; }
  .cta-band__actions { justify-content: center; flex-wrap: wrap; }

  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .stats__inner { grid-template-columns: 1fr 1fr; }
  .team__grid { grid-template-columns: 1fr; justify-items: center; }
  .process__steps { grid-template-columns: 1fr; }
  .portfolio__grid { grid-template-columns: 1fr; }
  .trust-bar { display: block; }
  .page-hero__actions { flex-direction: column; }
}

/* =========================================
   INNER PAGE HERO
   ========================================= */
.page-hero {
  margin-top: 80px;
  background: var(--green-deep);
  padding: 80px 0 72px;
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.page-hero > .container > p,
.page-hero__text > p {
  color: rgba(255,255,255,0.6);
  max-width: 52ch;
  margin: 0 auto 28px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
}
.page-hero .eyebrow { margin-bottom: 14px; }
.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}
.hero-checklist li {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.hero-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.hero-checklist--no-checks li::before {
  display: none;
}
.hero-checklist--no-checks li {
  padding-left: 0;
}
@media (max-width: 640px) {
  .hero-checklist { grid-template-columns: 1fr; }
}
.page-hero__split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  text-align: left;
}
.page-hero__split h1 {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}
.page-hero__split p {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  margin-bottom: 0;
}
.page-hero__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.page-hero__actions .btn {
  padding: 12px 20px;
  font-size: 12px;
}

/* Hero Catalog CTA */
.hero-catalog {
  background: var(--cream-alt);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.hero-catalog__img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-alt);
  padding: 0;
}
.hero-catalog__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-catalog__form {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
}
.hero-catalog .hero-catalog__heading {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-deep);
  margin-bottom: 4px;
  line-height: 1.2;
  max-width: none;
  text-align: left;
}
.hero-catalog .hero-catalog__sub {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.5;
  max-width: none;
  text-align: left;
}
.hero-catalog__fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-catalog__fields input {
  padding: 12px 14px;
  border: 1px solid var(--cream-border);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.9rem;
  background: var(--white);
}
.hero-catalog__fields input:focus {
  outline: none;
  border-color: var(--green-mid);
}
.hero-catalog__fields button {
  padding: 16px 24px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(196, 154, 60, 0.35);
  transition: background 0.15s;
}
.hero-catalog__fields button:hover {
  background: #b08a32;
  box-shadow: 0 6px 16px rgba(196, 154, 60, 0.45);
}
.hero-catalog__thanks {
  background: var(--cream-alt);
  padding: 12px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--green-deep);
}
.hero-catalog__privacy {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 8px;
}
@media (max-width: 900px) {
  .page-hero__split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .page-hero__split h1 {
    margin-left: auto;
    margin-right: auto;
  }
  .page-hero__split p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }
  .hero-catalog {
    max-width: 400px;
    margin: 0 auto;
  }
}
.page-hero__breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.page-hero__breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-hero__breadcrumb a:hover { color: rgba(255,255,255,0.7); }

/* =========================================
   INNER PAGE — CONTENT BLOCKS
   ========================================= */
.content-section { padding: var(--section-pad) 0; }
.content-section--alt { background: var(--cream-alt); }
.content-section--white { background: var(--white); }

/* Two-column feature block */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-row--reverse .feature-row__img { order: 2; }
.feature-row--reverse .feature-row__text { order: 1; }
.feature-row__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-row__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.feature-row__text h2 { margin-bottom: 0; }
.feature-row__text .divider { margin: 18px 0 20px; }
.feature-row__text p { margin-bottom: 16px; }
.feature-row__text ul {
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-row__text ul li {
  font-size: 14px;
  color: var(--ink-mid);
  padding-left: 22px;
  position: relative;
}
.feature-row__text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-accent);
  font-weight: 700;
}

/* Benefits / icon grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.benefit-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
}
.benefit-card__icon {
  width: 56px; height: 56px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--green-dark);
}
.benefit-card__icon svg { width: 24px; height: 24px; }
.benefit-card h4 { margin-bottom: 8px; color: var(--green-dark); }
.benefit-card p { font-size: 14px; max-width: 100%; margin: 0 auto; }

/* ---- About page sections ---- */
/* ---- About Intro ---- */
.about-intro { text-align: center; max-width: 900px; margin: 0 auto; }
.about-intro__header { margin-bottom: 24px; }
.about-intro__image { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 28px; }
.about-intro__image img { width: 100%; height: auto; display: block; }
.about-intro__text { font-size: 1.05rem; line-height: 1.7; color: var(--ink-light); max-width: 52ch; margin: 0 auto; }

/* ---- About Mission ---- */
.about-mission { text-align: center; max-width: 720px; margin: 0 auto; }
.about-mission h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0; line-height: 1.35; font-style: italic; color: var(--ink); }

/* ---- About How / Our Approach ---- */
.about-how__header { text-align: center; margin-bottom: 32px; }
.about-how__header h2 { margin-bottom: 0; }
.about-how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.about-how__card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-border);
}
.about-how__number {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1;
}
.about-how__card h4 { margin-bottom: 12px; }
.about-how__card p { font-size: 0.92rem; line-height: 1.65; color: var(--ink-light); margin: 0 auto; max-width: 30ch; }

/* ---- Core Values ---- */
.core-values { text-align: center; }
.core-values h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 32px; }
.core-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.core-values__card {
  text-align: center;
  padding: 32px 24px;
  background: var(--cream-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-border);
}
.core-values__badge {
  display: inline-block;
  background: var(--green-mid);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.core-values__card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink-light);
  max-width: 34ch;
  margin: 0 auto;
}

/* Contact form page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.contact-info {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
}
.contact-info__map {
  flex: 1;
  min-height: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--cream-border);
  position: relative;
  line-height: 0;
}
.contact-info__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact-info__map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.contact-info__map-circle {
  width: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(23,90,31,0.1);
  border: 2.5px dashed #175a1f;
  box-sizing: border-box;
  max-height: 90%;
}
.contact-info__map-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 8px;
  margin-top: 24px;
}
.contact-info h2 { margin-bottom: 0; }
.contact-info .divider { margin: 18px 0 24px; }
.contact-info p { margin-bottom: 16px; }
.contact-info__item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 24px;
}
.contact-info__item svg {
  width: 20px; height: 20px;
  color: var(--green-accent);
  flex-shrink: 0; margin-top: 2px;
}
.contact-info__item a {
  color: var(--green-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-info__label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-light); margin-bottom: 4px;
}
.contact-info__value { font-size: 15px; color: var(--ink); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h3 {
  margin-bottom: 24px;
  color: var(--green-deep);
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-form label {
  display: block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--cream-border);
  background: var(--cream);
  font-size: 0.95rem;
  font-family: var(--sans);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
  border-radius: var(--radius);
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23555' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green-mid);
}
.contact-form .form-group { margin-bottom: 14px; }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button[type="submit"] {
  width: 100%;
  padding: 15px;
  background: var(--green-deep);
  color: var(--white);
  border: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--sans);
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 8px;
}
.contact-form button[type="submit"]:hover { background: var(--green-dark); }

/* Contact email toggle link */
.contact-email-toggle {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  margin-top: 5px;
}
.contact-email-toggle:hover { color: var(--green-dark); }

/* Contact method toggle */
.contact-toggle {
  display: flex;
  gap: 8px;
  margin-top: 2px;
}
.contact-toggle__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 12px;
  border: 1.5px solid var(--cream-border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink-mid);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}
.contact-toggle__btn:hover {
  border-color: var(--green-mid);
  color: var(--green-dark);
}
.contact-toggle__btn--active {
  border-color: var(--green-mid);
  background: var(--green-light);
  color: var(--green-dark);
}

/* Where We Build — city cards */
.city-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.city-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.2s;
}
.city-card:hover {
  border-color: var(--green-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.city-card h4 { color: var(--green-dark); margin-bottom: 4px; }
.city-card p { font-size: 13px; max-width: 100%; }

/* Floor plan detail page */
.floorplan-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}
.floorplan-detail__img {
  background: var(--cream-alt);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-light);
}
.floorplan-detail__img img { width: 100%; height: 100%; object-fit: cover; }
.floorplan-detail__info h2 { margin-bottom: 0; }
.floorplan-detail__info h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; margin-bottom: 0; }
.floorplan-detail__info .divider { margin: 18px 0 20px; }
.floorplan-detail__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.floorplan-detail__spec {
  background: var(--cream-alt);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.floorplan-detail__spec-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-light); margin-bottom: 4px;
}
.floorplan-detail__spec-value {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
  font-style: normal;
}

/* Responsive — inner pages */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .city-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-row--reverse .feature-row__img { order: -1; }
  .feature-row--reverse .feature-row__text { order: 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .city-cards { grid-template-columns: repeat(2, 1fr); }
  .floorplan-detail { grid-template-columns: 1fr; }
  .page-hero { padding: 60px 0 52px; }
  .core-values__grid { grid-template-columns: 1fr; gap: 20px; }
  .about-how__grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 480px) {
  .city-cards { grid-template-columns: 1fr; }
}

/* =========================================
   PROCESS PAGE — SCROLL TIMELINE
   ========================================= */
.process-timeline { position: relative; }
.process-timeline .section { position: relative; }

.timeline-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}

@media (max-width: 900px) {
  .timeline-svg { display: none; }
}
