/* ============================================
   Andrew Frech Homes — Editorial Real Estate
   Forest Green + Off-White
   ============================================ */

/* ─── Reset & Base ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-900: #0B2218;
  --green-800: #1B4332;
  --green-700: #2D6A4F;
  --green-600: #40916C;
  --green-500: #52B788;
  --gold-400: #D4A84B;
  --gold-300: #E2C07A;
  --cream-50: #FAFAF5;
  --cream-100: #F5F5EE;
  --cream-200: #EDEDE0;
  --cream-300: #E4E4D4;
  --text-dark: #1A1A16;
  --text-mid: #3D3D35;
  --text-light: #6B6B60;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream-50);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ─── */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

em {
  font-style: italic;
  color: var(--green-700);
}

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav.scrolled {
  border-bottom-color: var(--cream-300);
  box-shadow: 0 1px 20px rgba(27, 67, 50, 0.06);
}

.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green-800);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.nav__logo em {
  font-style: italic;
  color: var(--gold-400);
  font-weight: 600;
}

.nav__logo-icon {
  color: var(--green-800);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin-left: auto;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: 100px;
  transition: color 0.25s, background 0.25s;
  letter-spacing: 0.01em;
}

.nav__link:hover {
  color: var(--green-800);
  background: var(--cream-200);
}

.nav__link--cta {
  background: var(--green-800);
  color: var(--white) !important;
  margin-left: 8px;
  transition: background 0.25s, transform 0.2s var(--ease-out);
}

.nav__link--cta:hover {
  background: var(--green-700);
  transform: translateY(-1px);
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-800);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream-50);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--green-800);
  padding: 12px 24px;
  display: block;
  transition: color 0.25s;
}

.mobile-menu__link:hover {
  color: var(--green-600);
}

.mobile-menu__link--cta {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  background: var(--green-800);
  color: var(--white) !important;
  border-radius: 100px;
  padding: 14px 32px;
  margin-top: 16px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn--primary {
  background: var(--green-800);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--green-800);
  border: 1.5px solid var(--green-800);
}

.btn--ghost:hover {
  background: var(--green-800);
  color: var(--white);
}

.btn--light {
  background: var(--white);
  color: var(--green-800);
}

.btn--light:hover {
  background: var(--cream-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.btn--ghost-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn--full {
  width: 100%;
}

/* ─── Section Header ─── */
.section-header {
  max-width: 720px;
  margin-bottom: 64px;
}

.section-header--centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-600);
  margin-bottom: 16px;
}

.section-header__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-header__subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--cream-50);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(45, 106, 79, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-600);
  margin-bottom: 24px;
}

.hero__headline {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.hero__subheadline {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
}

.hero__trust-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-800);
  line-height: 1;
}

.hero__trust-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-top: 4px;
}

.hero__trust-separator {
  width: 1px;
  height: 40px;
  background: var(--cream-300);
}

.hero__image-wrap {
  position: relative;
}

.hero__image-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(27, 67, 50, 0.15);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--green-700);
  border-radius: 16px;
  z-index: -1;
  opacity: 0.3;
}

/* ─── Services ─── */
.services {
  padding: 120px 0;
  background: var(--white);
}

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

.service-card {
  padding: 48px 40px;
  border-radius: 20px;
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(27, 67, 50, 0.1);
  border-color: var(--green-500);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 28px;
}

.service-card__title {
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.service-card__body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ─── About ─── */
.about {
  padding: 120px 0;
  background: var(--cream-50);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image-stack {
  position: relative;
}

.about__image-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(27, 67, 50, 0.12);
}

.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__image-floating {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(27, 67, 50, 0.15);
  border: 4px solid var(--cream-50);
}

.about__image-floating-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__eyebrow {
  margin-bottom: 16px;
}

.about__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 28px;
  color: var(--text-dark);
}

.about__body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.about__values {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.about__value-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-700);
  opacity: 0.5;
  min-width: 36px;
}

.about__value-text {
  font-size: 1.0625rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* ─── Areas ─── */
.areas {
  padding: 120px 0;
  background: var(--white);
}

.areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.area-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  cursor: pointer;
}

.area-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.area-card:hover .area-card__image {
  transform: scale(1.06);
}

.area-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 34, 24, 0.85) 0%, rgba(11, 34, 24, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.4s;
}

.area-card:hover .area-card__overlay {
  background: linear-gradient(to top, rgba(11, 34, 24, 0.9) 0%, rgba(11, 34, 24, 0.3) 60%, transparent 100%);
}

.area-card__name {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.area-card__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

/* ─── Testimonials ─── */
.testimonials {
  padding: 120px 0;
  background: var(--cream-50);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  padding: 44px 36px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--cream-200);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(27, 67, 50, 0.08);
}

.testimonial-card__quote {
  color: var(--green-500);
  opacity: 0.4;
  margin-bottom: 20px;
}

.testimonial-card__body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card__name {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-card__location {
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* ─── CTA Banner ─── */
.cta-banner {
  padding: 120px 0;
  background: var(--green-800);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 75, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(82, 183, 136, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta-banner__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-400);
  margin-bottom: 20px;
}

.cta-banner__headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 24px;
}

.cta-banner__headline em {
  color: var(--gold-300);
}

.cta-banner__body {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Contact ─── */
.contact {
  padding: 120px 0;
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 20px;
}

.contact__body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 40px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  flex-shrink: 0;
}

.contact__detail-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact__detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.contact__detail-value {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.contact__detail-link {
  font-size: 1rem;
  color: var(--green-700);
  font-weight: 500;
  transition: color 0.25s;
}

.contact__detail-link:hover {
  color: var(--green-500);
}

/* Form */
.contact__form-wrap {
  background: var(--cream-50);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--cream-200);
}

.form__group {
  margin-bottom: 24px;
}

.form__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form__input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--cream-300);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  -webkit-appearance: none;
}

.form__input::placeholder {
  color: var(--text-light);
}

.form__input:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.12);
}

.form__select {
  cursor: pointer;
  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 d='M1 1l5 5 5-5' stroke='%236B6B60' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--green-800);
  color: var(--white);
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-top: 16px;
}

.form__success.show {
  display: flex;
}

.form__success svg {
  flex-shrink: 0;
  color: var(--green-500);
}

/* ─── Footer ─── */
.footer {
  padding: 80px 0 0;
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.7);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__logo em {
  font-style: italic;
  color: var(--gold-400);
  font-weight: 600;
}

.footer__tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__link:hover {
  color: var(--white);
}

.footer__bottom {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  max-width: 480px;
  text-align: right;
  line-height: 1.5;
}

/* ─── Scroll Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero__grid {
    gap: 48px;
  }

  .about__grid {
    gap: 48px;
  }

  .contact__grid {
    gap: 48px;
  }

  .areas__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__image-wrap {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero__image-frame {
    border-radius: 12px;
  }

  .hero__image-accent {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero__trust {
    justify-content: flex-start;
  }

  .services {
    padding: 80px 0;
  }

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

  .service-card {
    padding: 36px 28px;
  }

  .about {
    padding: 80px 0;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__image-stack {
    max-width: 480px;
  }

  .about__image-floating {
    right: -16px;
    bottom: -24px;
  }

  .areas {
    padding: 80px 0;
  }

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

  .area-card {
    aspect-ratio: 16 / 9;
  }

  .testimonials {
    padding: 80px 0;
  }

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

  .cta-banner {
    padding: 80px 0;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .contact {
    padding: 80px 0;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__form-wrap {
    padding: 32px 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__disclaimer {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .nav__inner {
    padding: 0 16px;
  }

  .hero__headline {
    font-size: 2.25rem;
  }

  .hero__trust {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero__trust-separator {
    display: none;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .about__image-floating {
    right: -8px;
    bottom: -16px;
  }
}
