*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --nv: #0f1b2d;
  --nv-lt: #1a3356;
  --gld: #c9a84c;
  --gld-hv: #b08f3a;
  --gld-lt: #e8d5a3;
  --ivory: #f8f6f1;
  --wht: #ffffff;
  --chrl: #1a1a2e;
  --slt: #6b7280;
  --slt-lt: #9ca3af;
  --brd: #e5e7eb;
  --err: #dc2626;
  --ok: #16a34a;
  --wht-a-08: rgba(255,255,255,0.08);
  --nv-a-06: rgba(15,27,45,0.06);
  --nv-a-95: rgba(15,27,45,0.95);
  --nv-a-60: rgba(15,27,45,0.60);
  --shd: 0 4px 24px rgba(0,0,0,0.06);
  --shd-lg: 0 12px 48px rgba(0,0,0,0.10);
  --rad: 12px;
  --rad-sm: 8px;
  --rad-lg: 20px;
  --ff: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --ff-mono: 'SF Mono', ui-monospace, 'Cascadia Code', Consolas, monospace;
  --tr: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --tr-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
  --nav-h: 72px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff);
  color: var(--chrl);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--gld);
  color: var(--nv);
  padding: 12px 24px;
  border-radius: var(--rad-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: 840px;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--nv);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
p  { margin-bottom: 16px; color: var(--slt); }
a  { color: var(--gld); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--gld-hv); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gld);
  margin-bottom: 8px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--tr);
  text-decoration: none;
  line-height: 1;
}
.btn--primary {
  background: var(--gld);
  color: var(--nv);
}
.btn--primary:hover {
  background: var(--gld-hv);
  color: var(--nv);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--wht);
  border: 2px solid var(--wht);
}
.btn--outline:hover {
  background: var(--wht);
  color: var(--nv);
  transform: translateY(-2px);
}
.btn--outline-dark {
  background: transparent;
  color: var(--nv);
  border: 2px solid var(--nv);
}
.btn--outline-dark:hover {
  background: var(--nv);
  color: var(--wht);
  transform: translateY(-2px);
}
.btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ── Navbar ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: all var(--tr);
}
.nav--scrolled {
  background: var(--nv-a-95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shd);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav__logo-img {
  height: 52px;
  width: auto;
  border-radius: 10px;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color var(--tr);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gld);
  transition: width var(--tr);
}
.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--wht);
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after {
  width: 100%;
}
.nav__lang {
  display: flex;
  gap: 6px;
  margin-left: 8px;
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.nav__lang a {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px !important;
  border-radius: 4px;
  color: rgba(255,255,255,0.5) !important;
}
.nav__lang a::after { display: none !important; }
.nav__lang a[aria-current="page"],
.nav__lang a:hover {
  color: var(--gld) !important;
  background: rgba(201,168,76,0.12);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--wht);
  border-radius: 2px;
  transition: all var(--tr);
  transform-origin: center;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--nv);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(26,51,86,0.4) 0%, transparent 50%);
  pointer-events: none;
}
.hero__slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__bg.is-active {
  opacity: 0.35;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}
.hero__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gld);
  margin-bottom: 16px;
}
.hero h1 {
  color: var(--wht);
  max-width: 700px;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--gld); }
.hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--wht);
  line-height: 1;
}
.hero__stat-num span { color: var(--gld); }
.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce-down 2s infinite;
}
@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Sections ── */
.section {
  padding: 100px 0;
}
.section--dark {
  background: var(--nv);
}
.section--dark h2 { color: var(--wht); }
.section--dark h3 { color: var(--wht); }
.section--dark .section-label { color: var(--gld-lt); }
.section--ivory {
  background: var(--ivory);
}
.section--white {
  background: var(--wht);
}
.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section__header p {
  font-size: 1.05rem;
}

/* ── Trust Strip ── */
.trust {
  background: var(--wht);
  border-bottom: 1px solid var(--brd);
  padding: 20px 0;
}
.trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--slt);
  font-weight: 500;
}
.trust__item i {
  color: var(--gld);
  font-size: 1rem;
}

/* ── Service Cards ── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--wht);
  border-radius: var(--rad);
  padding: 36px 28px;
  border: 1px solid var(--brd);
  transition: all var(--tr);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gld);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shd-lg);
  border-color: var(--gld);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--rad-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gld);
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.2rem; }
.service-card p  { font-size: 0.92rem; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gld);
  margin-top: 8px;
}
.service-card__link i { transition: transform var(--tr); }
.service-card__link:hover i { transform: translateX(4px); }
.service-card--dark {
  background: linear-gradient(160deg, #16263f 0%, #0c1726 100%);
  border-color: rgba(201,168,76,0.18);
  color: var(--wht);
}
.service-card--dark h3 { color: var(--wht); }
.service-card--dark p { color: rgba(255,255,255,0.72); }
.service-card--dark .service-card__icon {
  background: rgba(201,168,76,0.16);
  color: var(--gld-lt);
}
.service-card--dark:hover {
  border-color: var(--gld);
  box-shadow: 0 20px 40px rgba(6,12,22,0.35);
}

/* ── About / Why Us ── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__image {
  border-radius: var(--rad);
  overflow: hidden;
}
.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.about__list li {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--slt);
}
.about__list li i {
  color: var(--gld);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ── Gallery ── */
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 28px;
}
.gallery__filter {
  border: 1px solid var(--brd);
  background: var(--wht);
  color: var(--slt);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--tr);
}
.gallery__filter:hover {
  border-color: var(--gld);
  color: var(--nv);
}
.gallery__filter.is-active {
  background: var(--nv);
  border-color: var(--nv);
  color: var(--wht);
}
.gallery__item.is-hidden {
  display: none;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery__item {
  position: relative;
  border-radius: var(--rad-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--brd);
  aspect-ratio: 4/3;
  opacity: 0;
  transform: translateY(24px);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shd-lg);
}
.gallery__item:hover img {
  transform: scale(1.08);
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}
.gallery__item:hover::after {
  opacity: 1;
}
.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 16px 14px;
  color: var(--wht);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
  z-index: 2;
  transform: translateY(12px);
  opacity: 0;
  transition: all 0.35s ease 0.05s;
  pointer-events: none;
}
.gallery__item:hover .gallery__caption {
  transform: translateY(0);
  opacity: 1;
}
.gallery__item.reveal {
  transition: none;
}
.gallery__item.reveal--visible {
  animation: galleryFadeIn 0.5s ease forwards;
  animation-delay: calc(var(--i, 0) * 0.05s);
}
@keyframes galleryFadeIn {
  to { opacity: 1; transform: translateY(0); }
}
.gallery__item--placeholder {
  background: linear-gradient(135deg, var(--brd) 0%, var(--ivory) 100%);
  border: 2px dashed var(--slt-lt);
  color: var(--slt-lt);
}
.gallery__more {
  text-align: center;
  margin-top: 32px;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr);
}
.lightbox--open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--rad-sm);
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--wht);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--tr);
  padding: 8px;
}
.lightbox__close:hover { opacity: 1; }

/* ── Testimonials ── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--wht);
  border-radius: var(--rad);
  padding: 32px;
  border: 1px solid var(--brd);
}
.testimonial__stars {
  color: var(--gld);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial blockquote {
  font-size: 0.95rem;
  color: var(--slt);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}
.testimonial__author {
  font-weight: 700;
  color: var(--nv);
  font-size: 0.9rem;
}
.testimonial__role {
  font-size: 0.8rem;
  color: var(--slt-lt);
}

/* ── FAQ ── */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--wht);
  border: 1px solid var(--brd);
  border-radius: var(--rad-sm);
  overflow: hidden;
  transition: border-color var(--tr);
}
.faq-item--open {
  border-color: var(--gld);
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--nv);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: color var(--tr);
}
.faq-item__question i {
  font-size: 0.85rem;
  color: var(--gld);
  flex-shrink: 0;
  transition: transform var(--tr);
}
.faq-item--open .faq-item__question i {
  transform: rotate(180deg);
}
.faq-item__answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--slt);
  line-height: 1.7;
}
.faq-item--open .faq-item__answer {
  display: block;
}

/* ── Contact ── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact__info-item i {
  width: 20px;
  color: var(--gld);
  font-size: 1.1rem;
  margin-top: 2px;
}
.contact__info-item h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.contact__info-item p,
.contact__info-item a {
  font-size: 0.92rem;
  color: var(--slt);
}
.contact__info-item a:hover { color: var(--gld); }
.contact__social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.contact__social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  transition: all var(--tr);
  border: 1px solid rgba(255,255,255,0.12);
}
.contact__social a:hover {
  background: var(--gld);
  color: var(--nv);
  border-color: var(--gld);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

/* ── Form ── */
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form__group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--chrl);
}
.form__group input,
.form__group select,
.form__group textarea {
  padding: 14px 16px;
  border: 1px solid var(--brd);
  border-radius: var(--rad-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--chrl);
  background: var(--wht);
  transition: border-color var(--tr), box-shadow var(--tr);
  outline: none;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--gld);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form__group textarea {
  resize: vertical;
  min-height: 120px;
}
.form__group .error-message {
  font-size: 0.8rem;
  color: var(--err);
  display: none;
}
.form__group.has-error input,
.form__group.has-error textarea {
  border-color: var(--err);
}
.form__group.has-error .error-message {
  display: block;
}
.form__success {
  text-align: center;
  padding: 40px;
  display: none;
}
.form__success i {
  font-size: 3rem;
  color: var(--ok);
  margin-bottom: 16px;
}
.form__success h3 { color: var(--ok); }
.form__success--visible { display: block; }
.form__error {
  display: none;
  align-items: flex-start;
  gap: 12px;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid var(--err);
  border-radius: var(--rad-sm);
  padding: 14px 16px;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--err);
}
.form__error i { font-size: 1.2rem; margin-top: 2px; }
.form__error a { color: var(--err); font-weight: 700; }
.form__error--visible { display: flex; }
.form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.btn.is-loading {
  pointer-events: none;
  opacity: 0.75;
}
.btn.is-loading i {
  animation: btnSpin 1s linear infinite;
}
@keyframes btnSpin {
  to { transform: rotate(360deg); }
}
.form--submitted .form__group,
.form--submitted button[type="submit"],
.form--submitted .form__error {
  display: none;
}

/* ── Map ── */
.map-wrap {
  margin-top: 48px;
  border-radius: var(--rad);
  overflow: hidden;
  background: var(--brd);
}
.map-wrap iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: none;
}
.contact__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.contact__media .map-wrap { margin-top: 0; }
.video-wrap {
  border-radius: var(--rad);
  overflow: hidden;
  background: var(--brd);
}
.video-wrap video {
  display: block;
  max-width: 100%;
  max-height: 360px;
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  background: #000;
}

/* ── WhatsApp Button ── */
.whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--wht);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: all var(--tr);
  text-decoration: none;
}
.whatsapp:hover {
  transform: scale(1.1);
  color: var(--wht);
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
}
.whatsapp__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--nv);
  color: var(--wht);
  padding: 8px 16px;
  border-radius: var(--rad-sm);
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr);
}
.whatsapp:hover .whatsapp__tooltip { opacity: 1; }

/* ── Footer ── */
.footer {
  background: var(--nv);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer__brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 320px;
}
.footer h4 {
  color: var(--wht);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color var(--tr);
}
.footer__links a:hover { color: var(--gld); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
.footer__bottom a {
  color: var(--gld);
}

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__image { order: -1; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__media { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--nv);
    flex-direction: column;
    padding: 96px 32px 32px;
    gap: 8px;
    transition: right var(--tr);
    box-shadow: -4px 0 24px rgba(0,0,0,0.2);
    align-items: stretch;
  }
  .nav__links--open { right: 0; }
  .nav__links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav__lang {
    margin: 16px 0 0;
    padding: 16px 0 0;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav__toggle { display: flex; }
  .hero { min-height: 90vh; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .hero__stat-num { font-size: 1.4rem; }
  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .contact__social { justify-content: center; }
  .whatsapp__tooltip { display: none; }
}

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

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

/* ── 404 Page ── */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--nv);
  color: var(--wht);
  padding: 24px;
}
.page-404 h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--gld);
  line-height: 1;
  margin-bottom: 8px;
}
.page-404 h2 { color: var(--wht); margin-bottom: 12px; }
.page-404 p { color: rgba(255,255,255,0.5); margin-bottom: 32px; }
