/* ============================================
   WOODED MOUNTAIN BUILDERS — styles.css
   ============================================ */

/* --- FONT FACES --- */
@font-face { font-family: 'Nacelle'; src: url('../fonts/Nacelle-Regular.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Nacelle'; src: url('../fonts/Nacelle-Italic.otf') format('opentype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Nacelle'; src: url('../fonts/Nacelle-SemiBold.otf') format('opentype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Nacelle'; src: url('../fonts/Nacelle-Bold.otf') format('opentype'); font-weight: 700; font-style: normal; }
@font-face { font-family: 'Nacelle'; src: url('../fonts/Nacelle-BoldItalic.otf') format('opentype'); font-weight: 700; font-style: italic; }
@font-face { font-family: 'Nacelle'; src: url('../fonts/Nacelle-Heavy.otf') format('opentype'); font-weight: 800; font-style: normal; }
@font-face { font-family: 'Nacelle'; src: url('../fonts/Nacelle-HeavyItalic.otf') format('opentype'); font-weight: 800; font-style: italic; }
@font-face { font-family: 'Nacelle'; src: url('../fonts/Nacelle-Black.otf') format('opentype'); font-weight: 900; font-style: normal; }
@font-face { font-family: 'Nacelle'; src: url('../fonts/Nacelle-BlackItalic.otf') format('opentype'); font-weight: 900; font-style: italic; }

/* --- CSS VARIABLES --- */
:root {
  --color-page-bg: #ffffff;
  --color-nav-bg: #ffffff;
  --color-nav-active-pill: #ECECEC;
  --color-cta-bg: #DB9945;
  --color-cta-text: #ffffff;
  --color-accent-dot: #EB5729;
  --color-eyebrow: #ffffff;
  --color-headline: #ffffff;
  --font-main: 'Nacelle', sans-serif;
  --card-radius: 24px;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--color-page-bg);
  font-family: var(--font-main);
  font-weight: 400;
  min-height: 100vh;
}

/* ============================================
   STICKY NAV
   ============================================ */
.site-nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 30px 24px 0;
  pointer-events: none;
}

.site-nav {
  pointer-events: all;
  background-color: var(--color-nav-bg);
  border-radius: 40px;
  padding: 4px 10px 4px 32px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1128px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.13);
  overflow: visible;
}

/* Logo — far left, fixed width */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 80px;
  margin-right: 12px;
}

.nav-logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
}

/* Center section — takes all remaining space, centers links */
.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 15px;
  color: #1a1a1a;
  text-decoration: none;
  padding: 8px 24px;
  border-radius: 40px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background-color: var(--color-nav-active-pill);
}

.nav-links li.active a {
  background-color: var(--color-nav-active-pill);
}

.nav-links .dropdown-arrow {
  font-size: 10px;
  opacity: 0.6;
}

/* CTA — far right, fixed width to mirror logo side */
.nav-cta {
  flex-shrink: 0;
}

.nav-cta a {
  display: inline-block;
  background-color: var(--color-cta-bg);
  color: var(--color-cta-text);
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  padding: 12px 26px;
  margin-right: 10px;
  border-radius: 40px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.nav-cta a:hover { opacity: 0.85; }
.nav-cta a em { font-style: italic; }

/* ============================================
   HERO CARD
   ============================================ */
.hero-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  position: relative;
  width: calc(100% - 48px);
  margin: -85px auto 0;
  min-height: 740px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Video wrapper — covers full card, no interaction */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  /* This is the key Safari fix — wrapping in a container
     prevents Safari from overlaying its play button */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.hero-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Hide all native controls in every browser */
  pointer-events: none;
}

/* Suppress Safari/WebKit native video UI */
.hero-video-wrap video::-webkit-media-controls { display: none !important; }
.hero-video-wrap video::-webkit-media-controls-enclosure { display: none !important; }
.hero-video-wrap video::-webkit-media-controls-panel { display: none !important; }
.hero-video-wrap video::-webkit-media-controls-play-button { display: none !important; }
.hero-video-wrap video::-webkit-media-controls-start-playback-button { display: none !important; }

/* Gradient overlay for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  z-index: 1;
}

/* Hero text */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 48px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-accent-dot);
  flex-shrink: 0;
}

.eyebrow-text {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-eyebrow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-headline {
  font-family: var(--font-main);
  font-size: 48px;
  line-height: 1.15;
  color: var(--color-headline);
}

.hero-headline .line-regular {
  font-weight: 400;
  font-style: normal;
  display: block;
}

.hero-headline .line-italic {
  font-weight: 400;
  font-style: italic;
  display: block;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background-color: #ffffff;
  padding: 100px 24px;
}

.services-inner {
  max-width: 1128px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.eyebrow-label {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  color: #111111;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-headline {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  color: #111111;
  text-align: center;
  margin-bottom: 36px;
}

.services-cta {
  display: inline-block;
  background-color: #111111;
  color: #ffffff;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 40px;
  margin-bottom: 72px;
  transition: opacity 0.2s ease;
}

.services-cta:hover {
  opacity: 0.8;
}

/* Two-column card grid */
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  align-self: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
  border-radius: 20px;
  overflow: hidden;
  background: #f7f7f7;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card-img {
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
}

.service-card-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.service-card-title {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 22px;
  color: #111111;
  margin-bottom: 10px;
  padding: 16px 20px 0;
}

.service-card-desc {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  color: #777777;
  line-height: 1.6;
  padding: 0 20px 24px;
}

/* ============================================
   FOR HOMEOWNERS SECTION
   ============================================ */
.homeowners-section {
  background-color: #ffffff;
  padding: 100px 24px;
}

.homeowners-inner {
  max-width: 1128px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left column */
.homeowners-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.homeowners-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.homeowners-headline {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  color: #111111;
  margin-bottom: 48px;
}

.homeowners-headline em {
  font-style: italic;
}

.homeowners-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 48px;
  width: 100%;
}

.homeowners-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.homeowners-icon {
  width: 44px;
  height: 44px;
  background-color: var(--color-accent-dot);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.homeowners-item-text {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 15px;
  color: #777777;
  line-height: 1.65;
}

.homeowners-cta {
  display: inline-block;
  background-color: #111111;
  color: #ffffff;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 40px;
  transition: opacity 0.2s ease;
}

.homeowners-cta:hover {
  opacity: 0.8;
}

/* Right column — image */
.homeowners-right {
  display: flex;
  justify-content: flex-end;
}

.homeowners-img-wrap {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.homeowners-img-wrap img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  display: block;
}

/* ============================================
   ABOUT US STATEMENT SECTION
   ============================================ */
.about-statement-section {
  background-color: #ffffff;
  padding: 100px 24px;
}

.about-statement-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-statement-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
}

.about-statement-text {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  color: #111111;
}

/* ============================================
   FOR INVESTORS SECTION
   ============================================ */
.investors-section {
  background-color: #ffffff;
  padding: 100px 24px;
}

.investors-inner {
  max-width: 1128px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.investors-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.investors-headline {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 48px;
  color: #111111;
  text-align: center;
  margin-bottom: 28px;
}

.investors-cta {
  display: inline-block;
  background-color: #111111;
  color: #ffffff;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 40px;
  margin-bottom: 56px;
  transition: opacity 0.2s ease;
}

.investors-cta:hover { opacity: 0.8; }

/* Three cards row */
.investors-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  width: 100%;
  margin-bottom: 48px;
}

.investors-card {
  background-color: #f7f7f7;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.investors-card-icon {
  width: 44px;
  height: 44px;
  background-color: var(--color-accent-dot);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.investors-card-text {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  color: #777777;
  line-height: 1.65;
}

/* Full-width photo */
.investors-photo {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.investors-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
  background-color: #ffffff;
  padding: 100px 24px;
}

.reviews-inner {
  max-width: 1128px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.reviews-headline {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 48px;
  color: #111111;
  text-align: center;
  margin-bottom: 16px;
}

.reviews-headline em {
  font-style: italic;
}

.reviews-subhead {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 15px;
  color: #777777;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 56px;
}

/* Three review cards */
.reviews-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  width: 100%;
}

.review-card {
  background-color: #f7f7f7;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  min-height: 260px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.review-card:hover {
  background-color: #111111;
}

.review-text {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 15px;
  color: #333333;
  line-height: 1.65;
  transition: color 0.3s ease;
}

.review-card:hover .review-text {
  color: #ffffff;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  color: #555555;
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.review-card:hover .review-avatar {
  background-color: #333333;
  color: #ffffff;
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-name {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  color: #111111;
  transition: color 0.3s ease;
}

.review-card:hover .review-name {
  color: #ffffff;
}

.review-location {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 13px;
  color: #999999;
  transition: color 0.3s ease;
}

.review-card:hover .review-location {
  color: #888888;
}

/* ============================================
   BANNER SECTION
   ============================================ */
.banner-section {
  padding: 0 24px;
  margin-bottom: 0;
}

.banner-img-wrap {
  position: relative;
  width: 100%;
  max-width: 1128px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  height: 460px;
}

.banner-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.0) 70%);
}

.banner-text {
  position: absolute;
  top: 48px;
  left: 48px;
  z-index: 2;
}

.banner-text h2 {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.2;
  color: #ffffff;
}

.banner-text h2 em {
  font-style: italic;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 100px 24px;
}

.contact-inner {
  max-width: 1128px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

/* Left column */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.contact-headline {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  color: #111111;
  margin-bottom: 20px;
}

.contact-headline em {
  font-style: italic;
}

.contact-subhead {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  color: #777777;
  line-height: 1.65;
  margin-bottom: 48px;
}

.contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  background-color: var(--color-accent-dot);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Right column — dark form */
.contact-right {
  background-color: #111111;
  border-radius: 24px;
  padding: 36px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hidden {
  display: none;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field label {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 13px;
  color: #aaaaaa;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  background-color: #1e1e1e;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--font-main);
  font-size: 14px;
  color: #ffffff;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.contact-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23aaaaaa' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #555555;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #444444;
}

.contact-field textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-field select option {
  background-color: #1e1e1e;
  color: #ffffff;
}

.contact-submit {
  background-color: #ffffff;
  color: #111111;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 15px;
  border: none;
  border-radius: 40px;
  padding: 14px 28px;
  cursor: pointer;
  align-self: flex-start;
  transition: opacity 0.2s ease;
  margin-top: 4px;
}

.contact-submit:hover {
  opacity: 0.85;
}

/* ============================================
   CALENDLY POPUP
   ============================================ */
.calendly-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.calendly-overlay.active { display: flex; }

.calendly-popup {
  background: #fff;
  border-radius: 16px;
  width: 90%;
  max-width: 700px;
  height: 80vh;
  overflow: hidden;
  position: relative;
}

.calendly-popup iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.calendly-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: #131313;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: #111111;
  border-radius: 24px;
  margin: 0 24px 24px;
  padding: 64px;
}

.footer-inner {
  max-width: 1128px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-brand {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-desc {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  color: #888888;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  background-color: #222222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  text-decoration: none;
}

.footer-social-icon:hover {
  background-color: #333333;
}

.footer-col-title {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  color: #888888;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  color: #888888;
  line-height: 1.5;
}

/* ============================================
   SERVICES DROPDOWN NAV
   ============================================ */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.13);
  list-style: none;
  min-width: 220px;
  padding: 8px;
  z-index: 200;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  border-radius: 10px;
  font-family: var(--font-main);
  font-size: 14px;
  color: #111111;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.nav-dropdown-menu li:first-child a {
  color: #777777;
  font-size: 13px;
}

.nav-dropdown-menu li a:hover {
  background-color: #f4f4f4;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

/* ============================================
   HERO TEXT ANIMATION — fade up, light & subtle
   ============================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Home hero */
.hero-eyebrow {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.1s;
}
.hero-headline {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.25s;
}
.hero-subhead {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.4s;
}
.hero-cta-group {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.5s;
}

/* Sub-page heroes (new construction, renovations, custom, investment) */
.sub-hero-content .hero-eyebrow {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.15s;
}
.sub-hero-content h1 {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.3s;
}
.sub-hero-content p {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.45s;
}

/* Services hero */
.svc-hero-content .hero-eyebrow {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.15s;
}
.svc-hero-content .svc-hero-headline {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.3s;
}

/* About hero */
.about-hero-eyebrow {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.1s;
}
.about-hero-headline {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.25s;
}
.about-hero-body {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.4s;
}

/* Contact hero */
.contact-page-hero .services-eyebrow {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.1s;
}
.contact-page-headline {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.25s;
}
.contact-page-subhead {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.4s;
}

/* Landing page heroes */
.lp-hero-eyebrow {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.15s;
}
.lp-hero-headline {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.3s;
}
