/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #FDF8F7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── Custom Properties ── */
:root {
  --burgundy: #7B2D3B;
  --burgundy-deep: #5C1F2B;
  --blush: #F4E0DC;
  --blush-light: #FDF8F7;
  --blush-mid: #F9E8E3;
  --cream: #FFF9F8;
  --dark: #1A1A1A;
  --gray: #6B6B6B;
  --gray-light: #9A9A9A;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(123, 45, 59, 0.08);
  --shadow-lg: 0 12px 48px rgba(123, 45, 59, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}

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

/* ── Geometric Background Shapes ── */
.geo-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.geo-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.geo-circle--1 {
  width: 600px; height: 600px;
  background: var(--burgundy);
  top: -200px; right: -150px;
}
.geo-circle--2 {
  width: 400px; height: 400px;
  background: var(--burgundy);
  bottom: 10%; left: -100px;
}
.geo-square {
  position: absolute;
  width: 200px; height: 200px;
  background: var(--burgundy);
  opacity: 0.04;
  top: 40%; right: 5%;
  transform: rotate(45deg);
}
.geo-triangle {
  position: absolute;
  width: 0; height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 173px solid var(--burgundy);
  opacity: 0.03;
  bottom: 20%; right: 15%;
  transform: rotate(-15deg);
}
.geo-dots {
  position: absolute;
  width: 120px; height: 120px;
  top: 30%; left: 3%;
  background-image: radial-gradient(var(--burgundy) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.12;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253, 248, 247, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(123, 45, 59, 0.08);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(253, 248, 247, 0.95);
  box-shadow: 0 2px 20px rgba(123, 45, 59, 0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo__name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--burgundy);
}
.logo__sub {
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.logo__name--light { color: var(--blush); }
.logo__sub--light { color: rgba(244, 224, 220, 0.7); }

/* ── Nav ── */
.nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  padding: 8px 16px;
  border-radius: 100px;
  transition: var(--transition);
}
.nav__link:hover {
  color: var(--burgundy);
  background: rgba(123, 45, 59, 0.06);
}
.nav__link--cta {
  background: var(--burgundy);
  color: white;
}
.nav__link--cta:hover {
  background: var(--burgundy-deep);
  color: white;
}

/* ── Mobile Nav Toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--burgundy);
  color: white;
  box-shadow: 0 4px 16px rgba(123, 45, 59, 0.3);
}
.btn--primary:hover {
  background: var(--burgundy-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(123, 45, 59, 0.4);
}
.btn--ghost {
  background: white;
  color: var(--dark);
  border: 2px solid rgba(26, 26, 26, 0.15);
}
.btn--ghost:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
  transform: translateY(-2px);
}
.btn--white {
  background: white;
  color: var(--burgundy);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.btn--outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  background: white;
  color: var(--burgundy);
  border-color: white;
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* ── Section Label ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--burgundy);
  margin-bottom: 16px;
}
.section-label__dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--burgundy);
  border-radius: 50%;
}

/* ── Section Title ── */
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 24px;
}
.section-title__accent {
  color: var(--burgundy);
}
.section-title__accent-light {
  color: var(--blush);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero__stripe {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--burgundy) 0px,
    var(--burgundy) 40px,
    var(--blush) 40px,
    var(--blush) 80px
  );
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(123, 45, 59, 0.08);
  border: 1px solid rgba(123, 45, 59, 0.15);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 28px;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  background: var(--burgundy);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero__title {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--dark);
}
.hero__title-accent {
  color: var(--burgundy);
  display: block;
}
.hero__desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero__stat {
  display: flex;
  flex-direction: column;
}
.hero__stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--burgundy);
}
.hero__stat-label {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(123, 45, 59, 0.2);
}

/* ── Hero Visual ── */
.hero__visual {
  position: relative;
}
.hero__image-stack {
  position: relative;
  height: 600px;
}
.hero__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__img--main {
  width: 380px;
  height: 480px;
  position: absolute;
  top: 0;
  right: 0;
}
.hero__img--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__img--accent {
  width: 260px;
  height: 200px;
  position: absolute;
  bottom: 40px;
  left: 0;
  border: 6px solid var(--blush-light);
}
.hero__img--accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__floating-card {
  position: absolute;
  background: white;
  padding: 14px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}
.hero__floating-card--1 {
  top: 60px;
  left: 20px;
}
.hero__floating-card--2 {
  bottom: 120px;
  right: -10px;
  animation-delay: 2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── Services ── */
.services {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  position: relative;
  background: white;
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: var(--transition);
  border: 1px solid rgba(123, 45, 59, 0.06);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--burgundy);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card--featured {
  background: var(--burgundy);
  border-color: transparent;
  color: white;
}
.service-card--featured .service-card__title { color: white; }
.service-card--featured .service-card__desc { color: rgba(255,255,255,0.8); }
.service-card--featured .service-card__link { color: var(--blush); }
.service-card--featured::before { background: var(--blush); }
.service-card__icon {
  width: 56px; height: 56px;
  background: var(--blush);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card--featured .service-card__icon {
  background: rgba(255,255,255,0.15);
  color: white;
}
.service-card:hover .service-card__icon {
  transform: scale(1.05);
}
.service-card__title {
  font-size: 20px;
  margin-bottom: 12px;
}
.service-card__desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--burgundy);
  transition: var(--transition);
}
.service-card__link:hover { gap: 10px; }

/* ── About ── */
.about {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__visual {
  position: relative;
}
.about__image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__image-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about__image-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--blush-light);
}
.about__image-secondary img {
  width: 280px;
  height: 210px;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  top: -20px;
  left: 20px;
  background: var(--burgundy);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
}
.about__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 16px;
}
.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.highlight {
  display: flex;
  align-items: center;
  gap: 12px;
}
.highlight__mark {
  width: 28px; height: 28px;
  min-width: 28px;
  background: rgba(123, 45, 59, 0.1);
  color: var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.highlight__text {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

/* ── Why Us ── */
.why-us {
  padding: 100px 0;
  background: var(--burgundy);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(244, 224, 220, 0.05);
}
.why-us::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(244, 224, 220, 0.04);
}
.why-us__header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.why-us__header .section-label { color: var(--blush); }
.why-us__header .section-label__dot { background: var(--blush); }
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.why-card__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(244, 224, 220, 0.2);
  line-height: 1;
  margin-bottom: 20px;
}
.why-card__title {
  font-size: 20px;
  color: white;
  margin-bottom: 12px;
}
.why-card__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ── CTA ── */
.cta {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.cta__inner {
  background: var(--blush);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta__geo {
  position: absolute;
  top: -60px; right: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: var(--burgundy);
  opacity: 0.08;
}
.cta__title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}
.cta__title-accent {
  color: var(--burgundy);
}
.cta__desc {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
}
.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

/* ── Contact ── */
.contact {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact__detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact__detail-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  background: var(--blush);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
}
.contact__detail-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-light);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact__detail-value {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.6;
}
.contact__detail-link {
  color: var(--burgundy);
  transition: var(--transition);
}
.contact__detail-link:hover {
  color: var(--burgundy-deep);
  text-decoration: underline;
}
.contact__map {
  margin-top: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact__form-wrap {
  position: sticky;
  top: 100px;
}
.contact__form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(123, 45, 59, 0.06);
}
.contact__form-title {
  font-size: 24px;
  margin-bottom: 8px;
}
.contact__form-desc {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(123, 45, 59, 0.12);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--dark);
  background: var(--blush-light);
  transition: var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--burgundy);
  background: white;
  box-shadow: 0 0 0 4px rgba(123, 45, 59, 0.08);
}
.form-input::placeholder { color: var(--gray-light); }
.form-select { cursor: pointer; appearance: none; 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='%237B2D3B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success__icon {
  margin: 0 auto 16px;
  width: 72px; height: 72px;
  background: rgba(123, 45, 59, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success__title {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--burgundy);
}
.form-success__text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}
.form-success__text a {
  color: var(--burgundy);
  font-weight: 600;
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: white;
  padding: 64px 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}
.footer__heading {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blush);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer__links ul, .footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer__links a:hover { color: white; }
.footer__contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.footer__contact a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer__contact a:hover { color: white; }
.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer__bottom a {
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer__bottom a:hover { color: white; }

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero__grid { gap: 40px; }
  .hero__img--main { width: 300px; height: 400px; }
  .hero__img--accent { width: 200px; height: 160px; }
  .hero__image-stack { height: 480px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .cta__inner { grid-template-columns: 1fr; padding: 48px; }
  .cta__actions { flex-direction: row; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: var(--blush-light);
    padding: 80px 32px 32px;
    transform: translateX(100%);
    transition: var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  }
  .nav.open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav__link { padding: 14px 16px; border-radius: var(--radius-sm); }
  .nav__link--cta { text-align: center; margin-top: 8px; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero__stats { flex-wrap: wrap; }

  .services__grid { grid-template-columns: 1fr; }
  .services__grid .service-card--featured { order: -1; }

  .about__grid { grid-template-columns: 1fr; }
  .about__visual { order: -1; }
  .about__image-secondary { right: 10px; bottom: -20px; }
  .about__image-secondary img { width: 200px; height: 160px; }
  .about__highlights { grid-template-columns: 1fr; }

  .why-us__grid { grid-template-columns: 1fr; }

  .contact__grid { grid-template-columns: 1fr; }
  .contact__form-wrap { position: static; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta__inner { padding: 32px 24px; }
  .cta__actions { flex-direction: column; }
  .cta__actions .btn { width: 100%; justify-content: center; }
  .contact__form-card { padding: 24px; }
}
