/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1B2A4A;
  background: #FFFAF0;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: #1B2A4A; color: #FFFAF0; padding: 8px 16px; border-radius: 0 0 8px 8px;
  z-index: 9999; font-size: 14px;
}
.skip-link:focus { top: 0; }

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

/* ── Typography ───────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 12px;
}
.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: #C9A84C;
  border-radius: 2px;
}
.section-eyebrow--light { color: #F9F0D0; }
.section-eyebrow--light::before { background: #F9F0D0; }
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: #1B2A4A;
  margin-bottom: 16px;
}
.text-gold { color: #C9A84C; }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn--gold {
  background: #C9A84C;
  color: #1B2A4A;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}
.btn--gold:hover {
  background: #B8963A;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.45);
}
.btn--outline {
  background: transparent;
  color: #FFFAF0;
  border: 2px solid rgba(255, 250, 240, 0.5);
}
.btn--outline:hover {
  background: rgba(255, 250, 240, 0.1);
  border-color: #FFFAF0;
  transform: translateY(-2px);
}
.btn--white {
  background: #FFFAF0;
  color: #1B2A4A;
}
.btn--white:hover {
  background: #F9F0D0;
  transform: translateY(-2px);
}
.btn--lg { padding: 18px 36px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }

/* ── Navigation ───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(27, 42, 74, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: background 0.3s ease;
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo-mark {
  width: 40px;
  height: 40px;
  background: #C9A84C;
  color: #1B2A4A;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
}
.nav__logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  color: #FFFAF0;
  letter-spacing: 0.02em;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 250, 240, 0.78);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: #FFFAF0; background: rgba(255, 250, 240, 0.08); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: #C9A84C;
  color: #1B2A4A;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-left: 8px;
  transition: background 0.2s, transform 0.2s;
}
.nav__cta:hover { background: #B8963A; transform: translateY(-1px); }
.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #FFFAF0;
  transition: background 0.2s;
}
.nav__toggle:hover { background: rgba(255,250,240,0.08); }
.nav__toggle-icon { transition: transform 0.3s; }
.nav__toggle[aria-expanded="true"] .nav__toggle-icon { transform: rotate(90deg); }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1B2A4A;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/7755474/pexels-photo-7755474.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1600&h=900') center/cover no-repeat;
  opacity: 0.22;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 41, 0.92) 0%, rgba(27, 42, 74, 0.82) 50%, rgba(46, 76, 145, 0.6) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  padding: 120px 0 80px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: #F9F0D0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__eyebrow-line {
  width: 40px;
  height: 2px;
  background: #C9A84C;
  border-radius: 2px;
  flex-shrink: 0;
}
.hero__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: #FFFAF0;
  margin-bottom: 24px;
}
.hero__accent {
  color: #C9A84C;
  font-style: italic;
}
.hero__sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 250, 240, 0.75);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 250, 240, 0.1);
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFAF0;
}
.hero__stat-label {
  font-size: 12px;
  color: rgba(255, 250, 240, 0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 250, 240, 0.15);
}
.hero__visual {
  position: relative;
  height: 680px;
}
.hero__card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.hero__card--primary {
  width: 320px;
  height: 420px;
  top: 40px;
  right: 0;
  z-index: 2;
}
.hero__card--secondary {
  width: 220px;
  height: 160px;
  top: 0;
  left: 20px;
  z-index: 3;
  border: 4px solid rgba(201, 168, 76, 0.4);
}
.hero__card--tertiary {
  width: 180px;
  height: 180px;
  bottom: 40px;
  left: 40px;
  z-index: 3;
  border: 4px solid rgba(201, 168, 76, 0.3);
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hero__card:hover .hero__img { transform: scale(1.05); }
.hero__card-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(27, 42, 74, 0.88);
  backdrop-filter: blur(8px);
  color: #F9F0D0;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 250, 240, 0.4);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__scroll svg { animation: bounce 2s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── Services ─────────────────────────────────────────── */
.services {
  padding: 100px 0;
  background: #FFFAF0;
}
.services__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}
.services__header .section-desc {
  color: #5B7EC6;
  font-size: 16px;
  line-height: 1.7;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(27, 42, 74, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(27, 42, 74, 0.12);
}
.service-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.service-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__img-wrap img { transform: scale(1.08); }
.service-card__icon {
  position: absolute;
  bottom: -18px;
  right: 20px;
  width: 52px;
  height: 52px;
  background: #C9A84C;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B2A4A;
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.4);
  z-index: 1;
}
.service-card__body {
  padding: 32px 24px 24px;
}
.service-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #1B2A4A;
  margin-bottom: 8px;
}
.service-card__desc {
  font-size: 14px;
  color: #5B7EC6;
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #C9A84C;
  letter-spacing: 0.04em;
  transition: gap 0.2s;
}
.service-card:hover .service-card__link { gap: 10px; }

/* ── About ────────────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: #EFF3FA;
}
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__img-stack {
  position: relative;
  height: 600px;
}
.about__img-main {
  width: 80%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27, 42, 74, 0.15);
}
.about__img-main img { width: 100%; height: 100%; object-fit: cover; }
.about__img-accent {
  position: absolute;
  width: 55%;
  height: 200px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(27, 42, 74, 0.18);
  border: 4px solid #fff;
}
.about__img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about__img-accent--bottom { bottom: 0; right: 0; }
.about__content .section-title { margin-bottom: 20px; }
.about__text {
  font-size: 15px;
  line-height: 1.8;
  color: #3D61B2;
  margin-bottom: 16px;
}
.about__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.about__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about__feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #C9A84C;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B2A4A;
}
.about__feature strong {
  display: block;
  font-size: 15px;
  color: #1B2A4A;
  margin-bottom: 2px;
}
.about__feature span {
  font-size: 13px;
  color: #5B7EC6;
  line-height: 1.5;
}

/* ── Gallery ──────────────────────────────────────────── */
.gallery {
  padding: 100px 0;
  background: #FFFAF0;
}
.gallery__header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 48px;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery__item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: 0 4px 20px rgba(27, 42, 74, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.gallery__item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 36px rgba(27, 42, 74, 0.14);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.06); }

/* ── Reviews ──────────────────────────────────────────── */
.reviews {
  padding: 100px 0;
  background: #EFF3FA;
}
.reviews__header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 48px;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(27, 42, 74, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(27, 42, 74, 0.1);
}
.review-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.review-card__text {
  font-size: 15px;
  line-height: 1.75;
  color: #3D61B2;
  margin-bottom: 24px;
  font-style: italic;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar { flex-shrink: 0; }
.review-card__name {
  display: block;
  font-size: 14px;
  color: #1B2A4A;
}
.review-card__role {
  font-size: 12px;
  color: #C9A84C;
  font-weight: 500;
}

/* ── CTA ──────────────────────────────────────────────── */
.cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: #1B2A4A;
}
.cta__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/7755447/pexels-photo-7755447.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1600&h=600') center/cover no-repeat;
  opacity: 0.12;
}
.cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: #FFFAF0;
  margin-bottom: 20px;
}
.cta__title em { color: #C9A84C; font-style: italic; }
.cta__text {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 250, 240, 0.7);
  margin-bottom: 36px;
}
.cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── Contact ──────────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: #FFFAF0;
}
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact__info .section-title { margin-bottom: 16px; }
.contact__desc {
  font-size: 15px;
  color: #5B7EC6;
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact__detail-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #C9A84C;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B2A4A;
}
.contact__detail strong {
  display: block;
  font-size: 14px;
  color: #1B2A4A;
  margin-bottom: 2px;
}
.contact__detail span,
.contact__detail a {
  font-size: 14px;
  color: #3D61B2;
  line-height: 1.5;
}
.contact__detail a:hover { color: #C9A84C; }
.contact__map { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(27, 42, 74, 0.08); }

/* ── Contact Form ─────────────────────────────────────── */
.contact__form-wrap { }
.contact__form-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(27, 42, 74, 0.08);
}
.contact__form-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #1B2A4A;
  margin-bottom: 8px;
}
.contact__form-desc {
  font-size: 14px;
  color: #5B7EC6;
  margin-bottom: 28px;
  line-height: 1.6;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1B2A4A;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #D6E0F0;
  border-radius: 12px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: #1B2A4A;
  background: #FFFAF0;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #C9A84C;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #849FD4; }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── Success Message ──────────────────────────────────── */
.contact__success {
  text-align: center;
  padding: 32px;
  display: none;
}
.contact__success.show { display: block; }
.success-icon {
  width: 64px;
  height: 64px;
  background: #C9A84C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.contact__success h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  color: #1B2A4A;
  margin-bottom: 8px;
}
.contact__success p {
  font-size: 14px;
  color: #5B7EC6;
  line-height: 1.6;
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: #0F1729;
  padding: 64px 0 0;
  color: rgba(255, 250, 240, 0.6);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.08);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__logo-mark {
  width: 40px;
  height: 40px;
  background: #C9A84C;
  color: #1B2A4A;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
}
.footer__logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  color: #FFFAF0;
}
.footer__tagline {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__link-col strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #C9A84C;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__link-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__link-col li a,
.footer__link-col li {
  font-size: 14px;
  color: rgba(255, 250, 240, 0.55);
  transition: color 0.2s;
}
.footer__link-col li a:hover { color: #FFFAF0; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255, 250, 240, 0.35);
}
.footer__bottom a { color: rgba(255, 250, 240, 0.55); transition: color 0.2s; }
.footer__bottom a:hover { color: #C9A84C; }

/* ── Scroll Reveal ────────────────────────────────────── */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Default state: visible for accessibility; JS adds revealed class */
.reveal { transform: translateY(20px); opacity: 0; }
.reveal.revealed { transform: translateY(0); opacity: 1; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 120px 0 100px;
  }
  .hero__visual { display: none; }
  .hero__stats { justify-content: flex-start; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__layout { grid-template-columns: 1fr; gap: 40px; }
  .about__img-stack { height: 400px; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__layout { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__list {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(15, 23, 41, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  }
  .nav__list.open { transform: translateY(0); }
  .nav__link { padding: 12px 16px; font-size: 16px; }
  .nav__cta { margin-left: 0; margin-top: 8px; justify-content: center; }
  .nav__toggle { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__stats { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero__stat-divider { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__inner { padding: 100px 0 80px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .gallery__grid { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr; }
  .contact__form-card { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
