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

:root {
  --midnight: #0d1b2a;
  --midnight-light: #1b2d45;
  --midnight-dark: #070f18;
  --mint: #5ec9b6;
  --mint-light: #7edfc7;
  --mint-dark: #3db39e;
  --mint-pale: #e8f7f4;
  --cream: #faf8f5;
  --warm-gray: #f5f0eb;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a5a;
  --text-light: #7a7a8a;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(13, 27, 42, 0.08);
  --shadow-md: 0 8px 30px rgba(13, 27, 42, 0.12);
  --shadow-lg: 0 20px 60px rgba(13, 27, 42, 0.15);
  --shadow-mint: 0 8px 30px rgba(94, 201, 182, 0.3);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.2;
  font-weight: 400;
}

em {
  font-style: italic;
  color: var(--mint-dark);
}

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

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

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--midnight);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 700;
}
.skip-link:focus { top: 16px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--mint);
  color: var(--midnight);
  border-color: var(--mint);
  box-shadow: var(--shadow-mint);
}
.btn--primary:hover {
  background: var(--mint-light);
  border-color: var(--mint-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(94, 201, 182, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--midnight);
  border-color: var(--midnight);
}
.btn--outline:hover {
  background: var(--midnight);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg { padding: 18px 40px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─── Section Labels ─── */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mint-dark);
  background: var(--mint-pale);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--midnight);
  margin-bottom: 20px;
}
.section-title--light { color: var(--white); }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 560px;
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(13, 27, 42, 0.06);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(250, 248, 245, 0.95);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--midnight);
}
.logo--light { color: var(--white); }

.logo__icon {
  width: 36px;
  height: 36px;
}

.logo__text { font-weight: 400; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav__link {
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: var(--transition);
}
.nav__link:hover {
  color: var(--midnight);
  background: var(--mint-pale);
}

.nav__link--cta {
  background: var(--mint);
  color: var(--midnight) !important;
  margin-left: 8px;
}
.nav__link--cta:hover {
  background: var(--mint-light);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--midnight);
  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);
}

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

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(94, 201, 182, 0.15);
  color: var(--mint);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid rgba(94, 201, 182, 0.25);
}
.hero__badge svg { width: 16px; height: 16px; }

.hero__title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero__title .text-mint { color: var(--mint); }

.hero__description {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.8;
}

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

.hero__stats {
  display: flex;
  gap: 32px;
  align-items: center;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--mint);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Hero visual */
.hero__visual {
  position: relative;
  height: 600px;
}

.hero__image-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__image--main {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 85%;
}
.hero__image--float {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 55%;
  height: 45%;
  border: 4px solid var(--midnight);
}
.hero__image--small {
  position: absolute;
  top: 5%;
  left: 20%;
  width: 40%;
  height: 25%;
  border: 4px solid var(--midnight);
  z-index: 2;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__deco {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  z-index: 0;
}
.hero__deco svg { width: 100%; height: 100%; }

.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.hero__wave svg { width: 100%; height: 80px; }

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

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

.about__images {
  position: relative;
  height: 650px;
}

.about__img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 75%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__img-main img { width: 100%; height: 100%; object-fit: cover; }

.about__img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 45%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}
.about__img-accent img { width: 100%; height: 100%; object-fit: cover; }

.about__quote-card {
  position: absolute;
  top: 55%;
  right: 5%;
  background: var(--midnight);
  color: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 280px;
  z-index: 2;
}
.about__quote-card svg {
  width: 24px;
  height: 24px;
  color: var(--mint);
  margin-bottom: 12px;
  opacity: 0.6;
}
.about__quote-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  color: rgba(255,255,255,0.85);
}

.about__content { max-width: 500px; }
.about__content > p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.about__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--mint-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint-dark);
}
.about__feature-icon svg { width: 22px; height: 22px; }
.about__feature strong {
  display: block;
  font-size: 1rem;
  color: var(--midnight);
  margin-bottom: 2px;
}
.about__feature span {
  font-size: 0.9rem;
  color: var(--text-light);
}

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

.services__header {
  text-align: center;
  margin-bottom: 60px;
}
.services__header .section-subtitle { margin: 0 auto; }

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

.service-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: var(--transition);
  border: 1px solid transparent;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--mint);
  background: var(--white);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--mint-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint-dark);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--mint);
  color: var(--midnight);
}
.service-card__icon svg { width: 26px; height: 26px; }

.service-card__title {
  font-size: 1.25rem;
  color: var(--midnight);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─── Camino ─── */
.camino {
  padding: 100px 0;
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}

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

.camino__text {
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.camino__highlights {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.camino__highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.camino__highlight svg {
  width: 20px;
  height: 20px;
  color: var(--mint);
  flex-shrink: 0;
}
.camino__highlight-number {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--mint);
}
.camino__highlight-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.camino__visual { position: relative; }

.camino__image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.camino__img {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.camino__img--1 {
  grid-column: 1 / -1;
  height: 280px;
}
.camino__img--2, .camino__img--3 { height: 220px; }
.camino__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.camino__img:hover img { transform: scale(1.05); }

/* ─── Gallery ─── */
.gallery {
  padding: 100px 0;
  background: var(--cream);
}

.gallery__header {
  text-align: center;
  margin-bottom: 60px;
}

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

.gallery__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.08); }

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }
.gallery__item-overlay span {
  color: var(--white);
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
}

/* ─── CTA ─── */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--mint-dark) 0%, var(--mint) 50%, var(--mint-light) 100%);
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta__title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--midnight);
  margin-bottom: 12px;
}

.cta__text {
  color: rgba(13,27,42,0.7);
  font-size: 1.05rem;
  max-width: 400px;
}

.cta__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta .btn--primary {
  background: var(--midnight);
  color: var(--white);
  border-color: var(--midnight);
  box-shadow: 0 8px 30px rgba(13,27,42,0.3);
}
.cta .btn--primary:hover {
  background: var(--midnight-light);
  border-color: var(--midnight-light);
}
.cta .btn--outline {
  border-color: var(--midnight);
  color: var(--midnight);
}
.cta .btn--outline:hover {
  background: var(--midnight);
  color: var(--white);
}

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

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

.contact__desc {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

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

.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact__detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--mint-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint-dark);
}
.contact__detail-icon svg { width: 22px; height: 22px; }
.contact__detail strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact__detail span,
.contact__detail a {
  color: var(--midnight);
  font-size: 1rem;
  font-weight: 600;
}
.contact__detail a:hover { color: var(--mint-dark); }

.contact__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Form */
.contact__form-wrapper { max-width: 100%; }

.contact__form-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(13,27,42,0.06);
}

.contact__form-title {
  font-size: 1.5rem;
  color: var(--midnight);
  margin-bottom: 8px;
}
.contact__form-subtitle {
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(13,27,42,0.1);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(94, 201, 182, 0.15);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-light); }
.form-textarea { resize: vertical; min-height: 120px; }

.contact__success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  width: 64px;
  height: 64px;
  background: var(--mint-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--mint-dark);
}
.success-icon svg { width: 32px; height: 32px; }
.contact__success h4 {
  font-size: 1.3rem;
  color: var(--midnight);
  margin-bottom: 8px;
}
.contact__success p { color: var(--text-mid); }

/* ─── Footer ─── */
.footer {
  background: var(--midnight-dark);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer__brand p {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer ul a {
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer ul a:hover { color: var(--mint); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

/* ─── Scroll to top ─── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--midnight);
  color: var(--mint);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 99;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--mint);
  color: var(--midnight);
  transform: translateY(-4px);
}
.scroll-top svg { width: 20px; height: 20px; }

/* ─── Animations ─── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero__container { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { display: none; }
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero__content { max-width: 600px; }

  .about__grid { grid-template-columns: 1fr; gap: 60px; }
  .about__images { height: 450px; }

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

  .camino .container { grid-template-columns: 1fr; gap: 40px; }
  .camino__visual { order: -1; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }

  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream);
    padding: 100px 32px 40px;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }
  .nav.open { right: 0; }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .nav__link {
    padding: 14px 16px;
    font-size: 1.05rem;
    border-radius: var(--radius-sm);
  }
  .nav__link--cta {
    margin-left: 0;
    text-align: center;
    margin-top: 16px;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13,27,42,0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .nav-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .hero__title { font-size: 2.4rem; }
  .hero__stats { gap: 20px; }
  .hero__stat-number { font-size: 1.5rem; }

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

  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; aspect-ratio: 16/9; }

  .cta__inner { flex-direction: column; text-align: center; }
  .cta__actions { justify-content: center; }

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

  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .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; }
  .hero__stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero__stat-divider { display: none; }
  .about__images { height: 350px; }
  .about__quote-card { position: relative; top: auto; right: auto; max-width: 100%; }
}
