:root {
  --brand-green: #d1a42f;
  --brand-green-dark: #b28414;
  --ink: #151d34;
  --paper: #ffffff;
  --soft-paper: #f2f3f1;
  --copy: #455161;
  --header-height: 108px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--paper);
  background: #e7e9ea;
  line-height: 1.55;
}

.container {
  width: min(1320px, 100% - 64px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.985);
  border-bottom: 1px solid rgba(16, 22, 31, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.site-header.compact {
  box-shadow: 0 12px 30px rgba(10, 15, 28, 0.16);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 74px;
  width: auto;
  display: block;
}

.header-right {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 13px;
}

.top-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-meta a {
  color: #b58c1d;
  text-decoration: none;
  font-size: 0.84rem;
  letter-spacing: 0.015em;
  font-weight: 600;
}

.top-meta .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.top-meta .social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.login-btn {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: #ffffff;
  background: #c2951f;
  padding: 11px 18px;
  font-weight: 600;
  font-size: 0.72rem;
}

.top-meta a.login-btn {
  color: #ffffff;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
}

.main-nav a {
  color: #aa8317;
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #7c5e0c;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  margin-left: auto;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #334;
  margin: 5px 0;
  transition: transform 200ms ease, opacity 200ms ease;
}

.hero {
  min-height: 98svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.zoom-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  will-change: transform;
}

.hero .zoom-bg {
  transform-origin: center center;
  animation: heroZoom 22s ease-out forwards;
}

.display-home .zoom-bg {
  transform-origin: center center;
}

.display-home.is-visible .zoom-bg {
  animation: sectionZoom 18s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(94deg, rgba(8, 12, 22, 0.78) 0%, rgba(10, 16, 27, 0.48) 42%, rgba(8, 14, 24, 0.26) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: 140px;
  max-width: 710px;
  text-align: left;
}

.section-light {
  background: var(--soft-paper);
  color: #2f3a46;
  padding: 98px 0 0;
}

.narrow-wrap {
  width: min(960px, 100% - 56px);
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 14px;
  color: #b08818;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
}

.section-title {
  margin: 0 0 18px;
  color: #111a31;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.05rem, 2.7vw + 0.85rem, 3.35rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
}

.section-copy {
  margin: 0 auto;
  max-width: 920px;
  color: var(--copy);
  font-size: clamp(1.05rem, 0.85vw + 0.7rem, 1.5rem);
  line-height: 1.65;
}

.section-copy strong {
  color: #263140;
  font-weight: 700;
}

.cta-center {
  margin-top: 34px;
}

.center-divider {
  display: block;
  margin: 24px auto 0;
  width: 2px;
  height: 136px;
  background: linear-gradient(180deg, #c79d28 0%, #121c39 100%);
}

.display-home {
  position: relative;
  min-height: 860px;
  padding: 150px 0 120px;
  overflow: hidden;
}

.display-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250, 251, 252, 0.46) 0%, rgba(248, 249, 250, 0.25) 44%, rgba(252, 252, 252, 0.4) 100%);
  z-index: 1;
}

.display-card {
  position: relative;
  z-index: 2;
  background: rgba(243, 244, 244, 0.96);
  color: #1d2430;
  padding: 56px 46px 44px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 28px 58px rgba(11, 17, 28, 0.18);
  backdrop-filter: blur(2px);
}

.section-split {
  padding: 88px 0;
  background: #eef0ee;
  color: var(--ink);
}

.section-split.split-reverse {
  background: #f3f4f2;
  padding-top: 36px;
  padding-bottom: 112px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  align-items: center;
  gap: 52px;
}

.split-reverse .showcase-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
}

.showcase-media {
  margin: 0;
}

.media-shell {
  position: relative;
  overflow: hidden;
  background: #cfd6d8;
  box-shadow: 0 26px 56px rgba(14, 20, 34, 0.14);
}

.video-feature .media-shell {
  aspect-ratio: 1.48;
}

.static-feature .media-shell {
  aspect-ratio: 1.66;
}

.media-shell img:not(.media-logo) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.16);
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.media-reveal {
  opacity: 0;
  transform: translateY(26px);
}

.media-reveal.is-visible {
  animation: mediaLift 760ms ease forwards;
}

.media-reveal.is-visible .media-shell img:not(.media-logo) {
  transform: scale(1);
}

.media-logo {
  position: absolute;
  top: 14px;
  right: 14px;
  height: 54px;
  width: auto;
  z-index: 2;
  filter: drop-shadow(0 8px 16px rgba(12, 18, 30, 0.2));
}

.media-logo-left {
  top: 12px;
  left: 12px;
  right: auto;
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 78px;
  height: 54px;
  transform: translate(-50%, -50%);
  background: #ff1833;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(255, 24, 51, 0.28);
}

.play-badge::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 16px;
  width: 0;
  height: 0;
  border-left: 18px solid #ffffff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

.showcase-media figcaption {
  margin-top: 14px;
  color: #bc951f;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
}

.showcase-copy {
  max-width: 760px;
}

.text-reveal {
  opacity: 0;
  transform: translateX(58px);
}

.text-reveal.is-visible {
  animation: slideInRight 820ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.section-split .section-title.left {
  margin-bottom: 18px;
  max-width: 700px;
}

.section-split .section-copy.left {
  margin-bottom: 18px;
}

.advantage-section {
  background: linear-gradient(180deg, #f4f5f2 0%, #eef0ee 100%);
  padding: 82px 0 70px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.benefit-card {
  position: relative;
  text-align: center;
  padding: 28px 24px 34px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--ink);
}

.benefit-card::before,
.benefit-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #bf9825 0%, #d7b246 100%);
}

.benefit-card::before {
  left: 0;
}

.benefit-card::after {
  right: 0;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 14px;
}

.benefit-icon svg {
  width: 56px;
  height: 56px;
  stroke: #c49c27;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  line-height: 1.35;
  color: #111931;
}

.benefit-card p {
  margin: 0 auto 24px;
  max-width: 280px;
  color: #4d5967;
  font-size: 1rem;
  line-height: 1.9;
}

.benefit-card .cta-btn {
  padding-inline: 24px;
}

.benefit-card:nth-child(2).is-visible {
  animation-delay: 120ms;
}

.benefit-card:nth-child(3).is-visible {
  animation-delay: 240ms;
}

.testimonial-section {
  padding: 30px 0 38px;
  background-color: #f1f2ef;
  background-image:
    linear-gradient(30deg, rgba(17, 24, 47, 0.035) 12%, transparent 12.5%, transparent 87%, rgba(17, 24, 47, 0.035) 87.5%, rgba(17, 24, 47, 0.035)),
    linear-gradient(150deg, rgba(17, 24, 47, 0.035) 12%, transparent 12.5%, transparent 87%, rgba(17, 24, 47, 0.035) 87.5%, rgba(17, 24, 47, 0.035)),
    linear-gradient(90deg, rgba(17, 24, 47, 0.028) 2%, transparent 2.5%, transparent 97%, rgba(17, 24, 47, 0.028) 97.5%, rgba(17, 24, 47, 0.028));
  background-size: 38px 66px, 38px 66px, 38px 66px;
  background-position: 0 0, 0 0, 19px 33px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  min-height: 420px;
  background: rgba(247, 247, 245, 0.96);
  padding: 78px 48px 44px;
  text-align: center;
  border-bottom: 4px solid #cda432;
  box-shadow: 0 14px 32px rgba(20, 28, 44, 0.06);
}

.quote-mark {
  display: inline-block;
  margin-bottom: 18px;
  color: #cda432;
  font-size: 5.2rem;
  line-height: 0.7;
  font-family: Georgia, serif;
}

.testimonial-card h3 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  color: #121930;
}

.testimonial-card p {
  margin: 0 auto;
  max-width: 330px;
  color: #455160;
  font-size: 1rem;
  line-height: 1.8;
}

.testimonial-card:nth-child(2).is-visible {
  animation-delay: 120ms;
}

.testimonial-card:nth-child(3).is-visible {
  animation-delay: 240ms;
}

.expert-cta {
  padding: 8px 0;
  background: linear-gradient(90deg, #0f1430 0%, #121739 52%, #0e122c 100%);
  border-bottom: 4px solid #cba12d;
}

.expert-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 56px 0;
}

.expert-copy {
  color: #ffffff;
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
}

.expert-copy h2 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 2vw + 1rem, 3rem);
  line-height: 1.1;
}

.expert-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 0.7vw + 0.8rem, 1.35rem);
  line-height: 1.65;
}

.portfolio-section {
  padding: 88px 0;
  background: #f0f1ee;
}

.portfolio-title {
  margin: 0 0 68px;
  text-align: center;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 2.5vw + 0.8rem, 2.8rem);
  color: #111931;
  line-height: 1.2;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.design-card {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(17, 24, 47, 0.07);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.design-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(17, 24, 47, 0.12);
}

.design-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.3;
  min-height: 260px;
  background: linear-gradient(180deg, #d7dfeb 0%, #eef3f8 100%);
}

.design-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.design-card:hover .design-image img,
.design-card.is-visible .design-image img {
  transform: scale(1.08);
}

.home-designs-page .portfolio-grid .media-reveal {
  opacity: 1;
  transform: none;
}

.home-designs-page .portfolio-grid .media-reveal.is-visible {
  animation: none;
}

.design-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #151d34;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-family: "Sora", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 20px;
}

.design-info {
  padding: 22px 20px 26px;
}

.design-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  color: #d1a42f;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.design-specs {
  margin: 0;
  color: #7a7e8c;
  font-size: 0.92rem;
  padding-bottom: 10px;
  border-bottom: 3px solid #d1a42f;
}

@media (max-width: 960px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .portfolio-section {
    padding: 64px 0;
  }

  .portfolio-title {
    margin-bottom: 48px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .design-badge {
    font-size: 0.62rem;
    padding: 6px 10px;
  }

  .design-card h3 {
    font-size: 1.1rem;
  }
}

.newsletter-section {
  background: #ffffff;
  padding: 88px 0;
}

.newsletter-content {
  max-width: 800px;
  text-align: center;
}

.newsletter-label {
  display: inline-block;
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: 0.38em;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.newsletter-content h2 {
  margin: 0 0 22px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw + 0.5rem, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #10182f;
}

.newsletter-content p {
  margin: 0 0 32px;
  font-size: 1.08rem;
  color: #5a6066;
  line-height: 1.55;
}

.newsletter-form {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border: 3px solid var(--brand-green);
  border-right: none;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: #10182f;
  background: #ffffff;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.newsletter-input::placeholder {
  color: #9a9fa6;
}

.newsletter-input:focus {
  border-color: var(--brand-green-dark);
  box-shadow: inset 0 0 0 1px rgba(209, 164, 47, 0.3);
}

.newsletter-btn {
  padding: 14px 30px;
  background: #10182f;
  color: #f7fbec;
  border: 3px solid #10182f;
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.newsletter-btn:hover,
.newsletter-btn:focus-visible {
  background: #0c1226;
  border-color: #0c1226;
  transform: translateY(-2px);
}

@media (max-width: 960px) {
  .newsletter-section {
    padding: 64px 0;
  }

  .newsletter-content p {
    font-size: 1rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    border-right: 3px solid var(--brand-green);
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .newsletter-section {
    padding: 48px 0;
  }

  .newsletter-label {
    font-size: 0.75rem;
  }

  .newsletter-content h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

  .newsletter-content p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .newsletter-input,
  .newsletter-btn {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}

.page-intro {
  padding: 44px 0 0;
  margin-bottom: 0;
}

.intro-divider {
  height: 3px;
  background: var(--brand-green);
  margin: 0;
}

/* ── Building With Vista ── */
.bwv-page-intro {
  padding: 128px 0 32px;
  background: #ffffff;
}

.bwv-kicker {
  display: inline-block;
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: 0.38em;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.bwv-page-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3vw + 0.8rem, 3rem);
  font-weight: 800;
  color: #10182f;
  line-height: 1.1;
}

.bwv-intro-section {
  padding: 64px 0;
  background: #ffffff;
}

.bwv-intro-content {
  max-width: 820px;
}

.bwv-intro-content h2 {
  margin: 0 0 20px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.2rem);
  font-weight: 800;
  color: #10182f;
  line-height: 1.15;
}

.bwv-sub-kicker {
  display: block;
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  margin-bottom: 22px;
  line-height: 1.6;
}

.bwv-intro-content p {
  margin: 0 0 18px;
  font-size: 1.05rem;
  color: #3a4252;
  line-height: 1.7;
}

.bwv-intro-content p:last-child {
  margin-bottom: 0;
}

.bwv-split-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.bwv-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.bwv-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.bwv-photo-item {
  aspect-ratio: 1.1;
  overflow: hidden;
}

.bwv-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.bwv-photo-item:hover img {
  transform: scale(1.05);
}

.bwv-split-text h2 {
  margin: 14px 0 18px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
  font-weight: 800;
  color: #10182f;
  line-height: 1.15;
}

.bwv-split-text p {
  font-size: 1.02rem;
  color: #3a4252;
  line-height: 1.7;
  margin: 0;
}

.bwv-journey-section {
  padding: 80px 0;
  background: #ffffff;
}

.bwv-journey-alt {
  background: #f9f9f9;
}

.bwv-section-heading {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 2vw + 0.6rem, 2.1rem);
  font-weight: 800;
  color: #10182f;
  margin: 0 0 52px;
}

.bwv-faq-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 56px;
}

.bwv-faq-row:last-child {
  margin-bottom: 0;
}

.bwv-faq-row-reverse {
  grid-template-columns: 1fr 160px;
}

.bwv-faq-row-reverse .bwv-faq-text {
  order: -1;
}

.bwv-icon-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}

.bwv-icon-wrap svg {
  width: 120px;
  height: auto;
}

.bwv-faq-text .bwv-kicker {
  display: block;
  margin-bottom: 12px;
}

.bwv-faq-text p {
  margin: 0;
  font-size: 1.02rem;
  color: #3a4252;
  line-height: 1.7;
}

@media (max-width: 960px) {
  .bwv-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bwv-faq-row,
  .bwv-faq-row.bwv-faq-row-reverse {
    grid-template-columns: 100px 1fr;
    gap: 28px;
  }

  .bwv-faq-row-reverse .bwv-faq-text {
    order: 0;
  }

  .bwv-icon-wrap svg {
    width: 80px;
  }

  .bwv-journey-section {
    padding: 60px 0;
  }

  .bwv-split-section {
    padding: 60px 0;
  }
}

@media (max-width: 640px) {
  .bwv-page-intro {
    padding: 96px 0 24px;
  }

  .bwv-intro-section {
    padding: 48px 0;
  }

  .bwv-faq-row,
  .bwv-faq-row.bwv-faq-row-reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bwv-icon-wrap {
    justify-content: flex-start;
  }

  .bwv-icon-wrap svg {
    width: 64px;
  }

  .bwv-journey-section {
    padding: 48px 0;
  }

  .bwv-section-heading {
    margin-bottom: 36px;
  }

  .bwv-photo-grid {
    gap: 4px;
  }
}

.bwv-article-section {
  padding: 78px 0;
  background: #ffffff;
}

.bwv-costs-section {
  padding-top: 24px;
}

.bwv-article-wrap {
  max-width: 1280px;
}

.bwv-article-title {
  margin: 0 0 28px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 2.2vw + 1rem, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #10182f;
}

.bwv-bullet-list {
  margin: 0;
  padding-left: 28px;
}

.bwv-bullet-list li {
  margin-bottom: 26px;
  color: #3a4252;
}

.bwv-bullet-list li:last-child {
  margin-bottom: 0;
}

.bwv-bullet-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(1.12rem, 0.5vw + 0.95rem, 1.45rem);
  line-height: 1.24;
  color: #202a3a;
  font-weight: 700;
}

.bwv-bullet-list p {
  margin: 0;
  font-size: clamp(1.02rem, 0.42vw + 0.9rem, 1.28rem);
  line-height: 1.65;
  color: #3f4654;
}

.bwv-costs-intro {
  max-width: 980px;
  margin: 0 0 24px;
  font-size: clamp(1.04rem, 0.45vw + 0.9rem, 1.3rem);
  line-height: 1.65;
  color: #3f4654;
}

.bwv-numbered-list {
  margin: 0;
  padding-left: 30px;
}

.bwv-numbered-list li {
  margin-bottom: 18px;
  color: #3a4252;
}

.bwv-numbered-list li:last-child {
  margin-bottom: 0;
}

.bwv-numbered-list strong {
  font-size: clamp(1.1rem, 0.42vw + 0.98rem, 1.38rem);
  line-height: 1.28;
  color: #202a3a;
  font-weight: 700;
}

.bwv-numbered-list p {
  margin: 6px 0 0;
  font-size: clamp(1rem, 0.38vw + 0.9rem, 1.22rem);
  line-height: 1.62;
  color: #3f4654;
}

.tips-hero {
  position: relative;
  padding: 150px 0 78px;
  background:
    linear-gradient(102deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.58) 46%, rgba(15, 23, 42, 0.45) 100%),
    url("https://images.unsplash.com/photo-1600585152915-d208bec867a1?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  color: #f9fbff;
}

.tips-hero-inner {
  max-width: 830px;
}

.tips-kicker {
  display: inline-block;
  color: #dfb342;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
}

.tips-hero h1 {
  margin: 16px 0 18px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.1rem, 3.8vw + 0.8rem, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.tips-hero p {
  margin: 0;
  font-size: clamp(1.04rem, 0.5vw + 0.9rem, 1.28rem);
  line-height: 1.65;
  color: rgba(248, 251, 255, 0.92);
}

.about-hero {
  background: #ffffff;
  padding: 132px 0 70px;
}

.about-hero-inner {
  max-width: 860px;
}

.about-kicker {
  display: inline-block;
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: 0.36em;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.about-hero h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: #10182f;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 3.4vw + 0.8rem, 4rem);
}

.about-split-section {
  padding: 78px 0;
  background: #f4f4f4;
}

.about-split-alt {
  padding-top: 42px;
}

.about-split-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.25fr);
  gap: 76px;
  align-items: center;
}

.about-split-grid-reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 1fr);
}

.about-values-card {
  background: #ffffff;
  border: 1px solid rgba(16, 24, 47, 0.1);
  box-shadow: 0 10px 30px rgba(16, 24, 47, 0.08);
  padding: 20px;
}

.about-values-card svg {
  width: 100%;
  height: auto;
  display: block;
}

.about-copy h2 {
  margin: 8px 0 16px;
  color: #10182f;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 2vw + 0.75rem, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.about-copy p {
  margin: 0 0 18px;
  color: #3b4352;
  line-height: 1.63;
  font-size: clamp(1.03rem, 0.4vw + 0.9rem, 1.28rem);
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-handshake {
  min-height: 360px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(16, 24, 47, 0.14);
}

.about-handshake img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tips-search {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  max-width: 700px;
}

.tips-search input {
  width: 100%;
  border: 2px solid #dfb342;
  border-right: none;
  background: rgba(255, 255, 255, 0.98);
  color: #11182f;
  padding: 14px 18px;
  font-size: 0.98rem;
  font-family: "Manrope", sans-serif;
}

.tips-search button {
  border: 2px solid #dfb342;
  background: #dfb342;
  color: #11182f;
  padding: 14px 22px;
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.tips-search button:hover,
.tips-search button:focus-visible {
  background: #c99822;
  transform: translateY(-1px);
}

.tips-categories {
  background: #ffffff;
  border-bottom: 1px solid rgba(16, 24, 47, 0.08);
}

.tips-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0 30px;
}

.tips-tags a {
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a243b;
  padding: 10px 14px;
  border: 1px solid rgba(16, 24, 47, 0.2);
  background: #f8f9f7;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.tips-tags a:hover,
.tips-tags a:focus-visible {
  border-color: #cf9f2f;
  background: #fff7e6;
  transform: translateY(-1px);
}

.tips-featured {
  padding: 72px 0;
  background: #f3f4f1;
}

.tips-featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 42px;
  align-items: stretch;
}

.tips-featured-image {
  min-height: 380px;
}

.tips-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tips-featured-copy {
  background: #ffffff;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tips-featured-copy h2 {
  margin: 14px 0 16px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.6rem, 2vw + 0.7rem, 2.3rem);
  color: #11182f;
  line-height: 1.15;
}

.tips-featured-copy p {
  margin: 0 0 22px;
  font-size: 1.03rem;
  line-height: 1.68;
  color: #3c4454;
}

.tips-grid-section {
  background: #ffffff;
  padding: 84px 0;
}

.tips-section-title {
  margin: 0 0 28px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.6rem, 2vw + 0.5rem, 2.4rem);
  color: #11182f;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tips-card {
  background: #f8f9f7;
  border: 1px solid rgba(16, 24, 47, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.tips-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(16, 24, 47, 0.1);
}

.tips-card img {
  width: 100%;
  aspect-ratio: 1.62;
  object-fit: cover;
}

.tips-card-body {
  padding: 18px 18px 20px;
}

.tips-card-body span {
  display: inline-block;
  margin-bottom: 8px;
  color: #bf9722;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: "Sora", sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
}

.tips-card-body h3 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
  line-height: 1.28;
  color: #11182f;
}

.tips-card-body p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.62;
  color: #3b4352;
}

.tips-checklist {
  padding: 76px 0;
  background: linear-gradient(180deg, #f4f3ef 0%, #eceee8 100%);
}

.tips-checklist-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 30px;
}

.tips-checklist-copy h2 {
  margin: 14px 0 14px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 1.8vw + 0.7rem, 2.3rem);
  color: #11182f;
}

.tips-checklist-copy p {
  margin: 0 0 14px;
  color: #3d4554;
  font-size: 1.03rem;
  line-height: 1.68;
}

.tips-checklist-copy ul {
  margin: 0 0 20px;
  padding-left: 20px;
}

.tips-checklist-copy li {
  margin-bottom: 8px;
  color: #2f3645;
  font-size: 0.98rem;
}

.tips-checklist-card {
  background: #11182f;
  color: #f8fbff;
  padding: 26px;
}

.tips-checklist-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
}

.tips-checklist-card ol {
  margin: 0;
  padding-left: 18px;
}

.tips-checklist-card li {
  margin-bottom: 9px;
  line-height: 1.55;
  color: rgba(248, 251, 255, 0.95);
}

@media (max-width: 960px) {
  .about-hero {
    padding: 112px 0 56px;
  }

  .about-split-grid,
  .about-split-grid-reverse {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-split-alt {
    padding-top: 24px;
  }

  .about-handshake {
    min-height: 300px;
  }

  .tips-hero {
    padding: 128px 0 62px;
  }

  .tips-featured-grid,
  .tips-checklist-grid {
    grid-template-columns: 1fr;
  }

  .tips-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 96px 0 42px;
  }

  .about-split-section {
    padding: 48px 0;
  }

  .about-values-card {
    padding: 12px;
  }

  .about-handshake {
    min-height: 220px;
  }

  .tips-hero {
    padding: 106px 0 48px;
  }

  .tips-search {
    grid-template-columns: 1fr;
  }

  .tips-search input {
    border-right: 2px solid #dfb342;
    border-bottom: none;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }

  .tips-featured,
  .tips-grid-section,
  .tips-checklist {
    padding: 52px 0;
  }
}

@media (max-width: 960px) {
  .bwv-article-section {
    padding: 62px 0;
  }

  .bwv-costs-section {
    padding-top: 10px;
  }

  .bwv-article-title {
    margin-bottom: 22px;
  }

  .bwv-bullet-list,
  .bwv-numbered-list {
    padding-left: 24px;
  }
}

@media (max-width: 640px) {
  .bwv-article-section {
    padding: 48px 0;
  }

  .bwv-article-title {
    margin-bottom: 18px;
  }

  .bwv-bullet-list,
  .bwv-numbered-list {
    padding-left: 20px;
  }

  .bwv-bullet-list li {
    margin-bottom: 20px;
  }

  .bwv-numbered-list li {
    margin-bottom: 14px;
  }
}

.listings-section {
  background: #f5f5f5;
  padding: 88px 0;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.listing-card {
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(17, 24, 47, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.listing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(17, 24, 47, 0.12);
}

.listing-image {
  position: relative;
  aspect-ratio: 1.3;
  min-height: 300px;
  overflow: hidden;
  background: linear-gradient(180deg, #d7dfeb 0%, #eef3f8 100%);
}

.listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.listing-card.media-reveal .listing-image img {
  transform: scale(0.95);
}

.listing-card.media-reveal.is-visible .listing-image img {
  animation: mediaLift 700ms ease forwards;
}

.listing-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 200ms ease;
}

.listing-card:hover .listing-overlay {
  opacity: 1;
}

.view-design-link {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: gap 180ms ease;
}

.view-design-link:hover {
  gap: 16px;
}

.featured-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--brand-green);
  color: #ffffff;
  padding: 12px 20px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-family: "Sora", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
}

.listing-tags {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  gap: 8px;
}

.listing-tag {
  display: inline-block;
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: 0.38em;
  font-family: "Sora", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 20px;
}

.listing-tag.single-family {
  background: var(--brand-green);
  color: #ffffff;
}

.listing-tag.for-sale {
  background: #10182f;
  color: #ffffff;
}

.listing-info {
  padding: 20px;
}

.listing-card h3 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
  color: #10182f;
}

.listing-location {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: #5a6066;
  font-weight: 500;
}

.listing-specs {
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--brand-green);
  font-size: 0.9rem;
  color: #7a7a7a;
  font-weight: 500;
}

.listing-featured .listing-image {
  position: relative;
  background: linear-gradient(135deg, var(--brand-green) 0%, #b89f2e 100%);
}

.listing-featured .featured-badge {
  font-size: 0.68rem;
  padding: 10px 16px;
  background: #10182f;
}

@media (max-width: 960px) {
  .listings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .listings-section {
    padding: 64px 0;
  }

  .listing-card h3 {
    font-size: 1rem;
  }

  .listing-location,
  .listing-specs {
    font-size: 0.85rem;
  }

  .listing-tag {
    font-size: 0.6rem;
    padding: 5px 10px;
  }
}

@media (max-width: 640px) {
  .listings-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .listings-section {
    padding: 48px 0;
  }

  .listing-card h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .listing-location {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .listing-specs {
    font-size: 0.8rem;
    padding-bottom: 8px;
  }

  .listing-tags {
    bottom: 10px;
    right: 10px;
    gap: 6px;
  }

  .listing-tag {
    font-size: 0.55rem;
    padding: 4px 8px;
  }

  .view-design-link {
    font-size: 0.8rem;
  }
}

.site-footer {
  background: linear-gradient(180deg, #f2f3f1 0%, #eceeea 100%);
  color: #182038;
  padding: 76px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(4, minmax(140px, 1fr));
  gap: 34px;
  align-items: start;
}

.footer-brand {
  padding-right: 28px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo {
  width: min(240px, 100%);
  height: auto;
  display: block;
}

.footer-support-title {
  margin: 0 0 16px;
  color: #bf9722;
  text-transform: uppercase;
  letter-spacing: 0.36em;
  font-family: "Sora", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
}

.support-badge {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(201, 158, 40, 0.18);
  box-shadow: 0 10px 24px rgba(17, 24, 47, 0.06);
}

.support-icon {
  width: 68px;
  height: 84px;
  border-radius: 20px 20px 8px 8px;
  background: linear-gradient(180deg, #0d6b45 0%, #0b5a3b 100%);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  position: relative;
}

.support-icon::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 10px;
  width: 22px;
  height: 22px;
  background: #e5d24b;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 92%, 50% 70%, 21% 92%, 32% 57%, 2% 35%, 39% 35%);
}

.support-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #0d5e3d;
}

.support-copy strong {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.support-copy span {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.05;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 8px;
}

.footer-links a {
  color: #aa8217;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.35;
  width: fit-content;
  border-bottom: 2px solid transparent;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links .footer-link-active {
  color: #10182f;
  border-color: #caa02a;
  transform: translateX(2px);
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(17, 24, 47, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-meta {
  margin: 0;
  color: #10182f;
  font-size: 0.98rem;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c29b24;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 18px rgba(17, 24, 47, 0.07);
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.footer-social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: #ffffff;
  background: #c29b24;
  transform: translateY(-2px);
}

.section-title.left,
.section-copy.left {
  text-align: left;
  max-width: none;
}

.section-copy.left {
  font-size: clamp(1.08rem, 0.62vw + 0.9rem, 1.24rem);
  margin-bottom: 24px;
}

.cta-dark {
  background: #12182f;
  color: #f8fbff;
}

.cta-dark:hover,
.cta-dark:focus-visible {
  background: #0c1226;
}

.hero-title {
  margin: 0 0 22px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.15rem, 3.5vw + 0.85rem, 4.35rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-kicker {
  margin: 0 0 16px;
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: 0.38em;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: clamp(0.74rem, 0.62vw + 0.55rem, 1rem);
}

.cta-btn {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--brand-green);
  color: #f7fbec;
  padding: 17px 30px;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.cta-btn:hover,
.cta-btn:focus-visible {
  background: var(--brand-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(178, 132, 20, 0.32);
}

.panel-reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
}

.panel-reveal.is-visible {
  animation: revealPanel 700ms ease forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: riseIn 720ms ease forwards;
}

.delay-1 {
  animation-delay: 120ms;
}

.delay-2 {
  animation-delay: 220ms;
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealPanel {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mediaLift {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(58px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.14) translate3d(1.5%, 0.5%, 0);
  }
}

@keyframes sectionZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.13) translate3d(-1.3%, 0.7%, 0);
  }
}

@media (max-width: 1180px) {
  :root {
    --header-height: 90px;
  }

  .brand-logo {
    height: 62px;
  }

  .main-nav a {
    font-size: 0.92rem;
  }

  .top-meta {
    gap: 12px;
  }

  .top-meta a {
    font-size: 0.78rem;
  }

  .container {
    width: min(1320px, 100% - 36px);
  }
}

@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
  }

  .header-right {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #ffffff;
    padding: 12px 18px 20px;
    border-top: 1px solid rgba(9, 14, 22, 0.08);
    border-bottom: 1px solid rgba(9, 14, 22, 0.08);
    align-items: flex-start;
    gap: 16px;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 200ms ease, opacity 200ms ease;
  }

  .header-right.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .top-meta {
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .main-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .main-nav a {
    font-size: 0.95rem;
  }

  .hero-content {
    margin-top: 120px;
    max-width: 600px;
  }

  .section-copy {
    font-size: clamp(1.08rem, 1vw + 0.62rem, 1.35rem);
  }

  .display-home {
    min-height: auto;
    padding-top: 118px;
  }

  .display-card {
    padding: 38px 30px 34px;
  }

  .showcase-grid,
  .split-reverse .showcase-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .advantage-grid,
  .testimonial-grid,
  .expert-cta-inner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .expert-cta-inner {
    justify-items: center;
    text-align: center;
    padding: 44px 0;
  }

  .section-split,
  .section-split.split-reverse {
    padding: 70px 0;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    height: 50px;
  }

  .hero-title {
    font-size: clamp(1.9rem, 7.6vw, 2.95rem);
  }

  .section-light {
    padding-top: 72px;
  }

  .narrow-wrap {
    width: min(900px, 100% - 34px);
  }

  .section-title {
    font-size: clamp(1.8rem, 6.8vw, 2.4rem);
  }

  .section-copy {
    font-size: 1.02rem;
    line-height: 1.66;
  }

  .center-divider {
    height: 96px;
  }

  .display-home {
    padding: 80px 0 74px;
  }

  .display-card {
    padding: 26px 18px;
  }

  .showcase-copy {
    order: 2;
  }

  .showcase-media {
    order: 1;
  }

  .media-logo {
    height: 42px;
  }

  .play-badge {
    width: 64px;
    height: 44px;
    border-radius: 14px;
  }

  .play-badge::before {
    left: 25px;
    top: 13px;
    border-left-width: 15px;
    border-top-width: 9px;
    border-bottom-width: 9px;
  }

  .showcase-media figcaption {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
  }

  .advantage-section {
    padding: 64px 0 54px;
  }

  .site-footer {
    padding-top: 64px;
  }

  .benefit-card,
  .testimonial-card {
    padding-left: 22px;
    padding-right: 22px;
  }

  .testimonial-card {
    min-height: auto;
    padding-top: 60px;
  }

  .quote-mark {
    font-size: 4.4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .support-badge {
    width: 100%;
    max-width: 360px;
  }

  .support-copy span {
    font-size: 1.1rem;
  }

  .expert-copy h2 {
    font-size: 2rem;
  }

  .cta-btn {
    padding: 14px 20px;
    letter-spacing: 0.3em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .panel-reveal,
  .panel-reveal.is-visible,
  .media-reveal,
  .media-reveal.is-visible,
  .text-reveal,
  .text-reveal.is-visible,
  .hero .zoom-bg,
  .display-home.is-visible .zoom-bg {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .media-shell img:not(.media-logo) {
    transition: none;
    transform: none;
  }
}

/* =============================================
   CONTACT PAGE
   ============================================= */

/* Hero */
.contact-hero {
  background: #ffffff;
  padding: 132px 0 70px;
}

.contact-hero-inner {
  max-width: 860px;
}

.contact-hero h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: #10182f;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 3.4vw + 0.8rem, 4rem);
}

/* Split section: image + form */
.contact-section {
  background: #f4f4f4;
}

.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  min-height: 680px;
}

.contact-image-panel {
  background-color: #cfd6dc;
  background-size: cover;
  background-position: center;
  min-height: 480px;
}

.contact-form-panel {
  padding: 70px 60px 70px 56px;
  display: flex;
  align-items: flex-start;
}

.contact-form-card {
  width: 100%;
  max-width: 720px;
  background: #ffffff;
  border: 1px solid rgba(16, 24, 47, 0.08);
  box-shadow: 0 8px 28px rgba(16, 24, 47, 0.07);
  padding: 44px 48px 48px;
}

.contact-form-kicker {
  display: block;
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: 0.36em;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

.contact-form-subtitle {
  margin: 0 0 28px;
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-field {
  width: 100%;
}

.contact-input {
  width: 100%;
  background: #ffffff;
  border: 2px solid var(--brand-green);
  border-radius: 0;
  padding: 16px 18px;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  color: #10182f;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

.contact-input::placeholder {
  color: #8a96a3;
  font-size: 0.9rem;
}

.contact-input:focus {
  border-color: var(--brand-green-dark);
  box-shadow: 0 0 0 3px rgba(209, 164, 47, 0.18);
}

.contact-textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-submit {
  background: #10182f;
  color: #ffffff;
  border: none;
  cursor: pointer;
  width: 100%;
  padding: 18px 24px;
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 130ms ease;
  margin-top: 4px;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #1b2e74;
  transform: translateY(-1px);
}

/* Info strip */
.contact-info-strip {
  background: #ffffff;
  padding: 60px 0;
  border-top: 1px solid rgba(16, 24, 47, 0.07);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  color: #10182f;
}

.contact-info-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #2cb2e8;
  margin-top: 2px;
}

.contact-info-item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-item strong {
  font-family: "Sora", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #10182f;
}

.contact-info-item a,
.contact-info-item span {
  font-size: 0.95rem;
  color: #455161;
  text-decoration: none;
  transition: color 160ms ease;
}

.contact-info-item a:hover {
  color: #2cb2e8;
}

/* Nav active state */
.main-nav a.nav-active {
  color: var(--brand-green);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-section-grid {
    grid-template-columns: 1fr;
  }

  .contact-image-panel {
    min-height: 260px;
  }

  .contact-form-panel {
    padding: 40px 24px;
  }

  .contact-form-card {
    padding: 32px 28px 36px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .contact-hero {
    padding: 118px 0 48px;
  }

  .contact-form-panel {
    padding: 32px 16px;
  }

  .contact-form-card {
    padding: 28px 20px 32px;
  }
}
