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

:root {
  --bg:           #FAFAF8;
  --surface:      #FFFFFF;
  --navy:         #1A2332;
  --navy-light:   #243044;
  --charcoal:     #2C3E50;
  --gold:         #C9A84C;
  --gold-light:   #E2C06A;
  --gold-pale:    #F5EDD2;
  --muted:        #6B7280;
  --text:         #1F2937;
  --border:       #E5E7EB;
  --border-light: #F3F4F6;

  --font-body:    'Inter', system-ui, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;

  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h:        72px;
  --radius:       12px;
  --radius-sm:    8px;
}

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

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

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── Container ──────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* ── Scroll animations ──────────────────────────────────────────────────── */
.animate-on-scroll,
.animate-fade-up,
.animate-fade-right,
.animate-fade-left {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.animate-on-scroll   { transform: translateY(36px); }
.animate-fade-up     { transform: translateY(40px); }
.animate-fade-right  { transform: translateX(-40px); }
.animate-fade-left   { transform: translateX(40px); }

.animate-on-scroll.is-visible,
.animate-fade-up.is-visible,
.animate-fade-right.is-visible,
.animate-fade-left.is-visible {
  opacity: 1;
  transform: translate(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.38s; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.5rem;
  transition: background 0.25s var(--ease), transform 0.15s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transition: left 0.55s var(--ease);
}
.btn:hover::after  { left: 150%; }
.btn:hover         { transform: translateY(-2px); }
.btn:active        { transform: translateY(0); }

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(201,168,76,0.35);
}
.btn--primary:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 20px rgba(201,168,76,0.45);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn--nav {
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
  border-radius: 6px;
}
.btn--nav:hover { background: var(--gold-light); }

.btn--lg { padding: 0.9375rem 2rem; font-size: 1rem; }

.btn--full { width: 100%; justify-content: center; }

/* ── Section commons ────────────────────────────────────────────────────── */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  line-height: 1.22;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section__subtitle {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* ── Navigation ─────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(250, 250, 248, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.nav__logo-icon { color: var(--gold); }
.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  position: relative;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0.75rem; right: 0.75rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav__link:hover { color: var(--navy); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: linear-gradient(135deg, var(--navy) 0%, #243356 50%, var(--charcoal) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }

.hero__bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.hero__bg-shape--1 {
  width: 600px; height: 600px;
  background: var(--gold);
  top: -200px; right: -100px;
}
.hero__bg-shape--2 {
  width: 400px; height: 400px;
  background: #4A6FA5;
  bottom: -100px; left: -100px;
}
.hero__bg-shape--3 {
  width: 300px; height: 300px;
  background: var(--gold-light);
  top: 40%; left: 35%;
  opacity: 0.08;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero__content { color: #fff; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(4px);
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 1.25rem;
}
.hero__headline::before {
  content: '';
  position: absolute;
  left: 0; top: 0.15em; bottom: 0.15em;
  width: 4px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 2.25rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Hero card on right */
.hero__visual { display: flex; justify-content: center; }

.hero__card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 340px;
  text-align: center;
}

.hero__card-brush {
  color: var(--gold);
  margin-bottom: 1.75rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero__card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.hero__mini-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.875rem 0.5rem;
}
.hero__mini-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.375rem;
  color: var(--gold-light);
  line-height: 1.2;
}
.hero__mini-stat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.2rem;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.hero__scroll-hint:hover { border-color: var(--gold); }
.hero__scroll-hint span {
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%   { transform: translateY(0);  opacity: 0.6; }
  50%  { transform: translateY(8px); opacity: 0.2; }
  100% { transform: translateY(0);  opacity: 0.6; }
}

/* ── Services ───────────────────────────────────────────────────────────── */
.services { background: var(--bg); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-pale), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  border-color: var(--gold);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon-wrap {
  width: 60px; height: 60px;
  background: var(--gold-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease-bounce);
}
.service-card:hover .service-card__icon-wrap {
  background: var(--gold);
  transform: rotate(-5deg) scale(1.1);
}

.service-card__icon { color: var(--gold); transition: color 0.3s; }
.service-card:hover .service-card__icon { color: var(--navy); }

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  color: var(--navy);
  margin-bottom: 0.625rem;
  position: relative;
  z-index: 1;
}
.service-card__desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.service-card__arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.75rem;
  font-size: 1.25rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Gallery ────────────────────────────────────────────────────────────── */
.gallery { background: var(--navy); }
.gallery .section__title { color: #fff; }
.gallery .section__subtitle { color: rgba(255,255,255,0.6); }
.gallery .section__label { color: var(--gold-light); }

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

.gallery__item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: brightness(0.9);
}
.gallery__item:hover img { transform: scale(1.07); filter: brightness(1); }

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,35,50,0.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.gallery__item:hover .gallery__overlay { opacity: 1; }

.gallery__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  width: fit-content;
}

.gallery__caption {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  transform: translateY(8px);
  transition: transform 0.35s var(--ease);
}
.gallery__item:hover .gallery__caption { transform: translateY(0); }

.gallery__zoom {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  transform: scale(0.7);
  opacity: 0;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease-bounce);
}
.gallery__item:hover .gallery__zoom { opacity: 1; transform: scale(1); }

/* ── About ──────────────────────────────────────────────────────────────── */
.about { background: var(--surface); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about__image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.about__image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
}

.about__image-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 0.9375rem;
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
  white-space: nowrap;
}

.about__headline {
  text-align: left;
  max-width: none;
  margin-bottom: 1rem;
}
.section__title.about__headline { font-size: clamp(1.5rem, 2.8vw, 2.25rem); }

.about__para {
  color: var(--muted);
  font-size: 0.9875rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}
.about__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}
.about__feature-icon { color: var(--gold); flex-shrink: 0; }

.about__signature {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.about__sig-line {
  width: 40px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.about__sig-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--navy);
}
.about__sig-role { font-size: 0.875rem; color: var(--muted); }

/* ── Stats ──────────────────────────────────────────────────────────────── */
.stats {
  background: var(--navy);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat {
  background: var(--navy);
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.5rem) 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s var(--ease);
}
.stat:hover { background: var(--navy-light); }

.stat__value {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat__label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
  max-width: 120px;
}

/* ── Testimonials ───────────────────────────────────────────────────────── */
.testimonials { background: var(--bg); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.08);
  border-color: var(--gold);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
}
.star-icon { color: var(--gold); }

.testimonial-card__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__name {
  display: block;
  font-size: 0.9375rem;
  color: var(--navy);
}
.testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* ── Contact ────────────────────────────────────────────────────────────── */
.contact {
  background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
}
.contact .section__label { color: var(--gold-light); }
.contact .section__title { color: #fff; }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact__subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-top: 0.75rem;
  margin-bottom: 2.5rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__detail-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
  transition: background 0.25s var(--ease);
}
.contact__detail:hover .contact__detail-icon { background: rgba(201,168,76,0.22); }

.contact__detail-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.2rem;
}
.contact__detail-value {
  font-size: 0.9875rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  transition: color 0.2s;
}
a.contact__detail-value:hover { color: var(--gold-light); }

/* Form */
.contact__form-wrap {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.contact__form-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.375rem; }

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.form-input {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
  outline: none;
  width: 100%;
}
.form-input::placeholder { color: #B0B7C3; }
.form-input:focus {
  border-color: var(--gold);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-textarea { resize: vertical; min-height: 130px; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer__logo { color: #fff; }
.footer__logo span { color: #fff; }

.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.375rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.footer__link:hover { color: var(--gold-light); background: rgba(255,255,255,0.05); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 0;
}
.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ── Lightbox ───────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img {
  max-width: min(900px, 90vw);
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  transform: scale(0.92);
  transition: transform 0.35s var(--ease-bounce);
}
.lightbox.open .lightbox__img { transform: scale(1); }

.lightbox__caption {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,0.12);
  border: none; cursor: pointer;
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.22); }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1.25rem;
    gap: 0.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav__links.open { display: flex; }
  .nav__link { padding: 0.75rem 1rem; border-radius: 8px; }
  .nav__link::after { display: none; }
  .btn--nav { margin-top: 0.5rem; text-align: center; justify-content: center; }
  .nav__hamburger { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero__headline { padding-left: 0; }
  .hero__headline::before { display: none; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__visual { display: none; }
  .hero__scroll-hint { display: none; }

  .about__inner { grid-template-columns: 1fr; }
  .about__image-badge { bottom: -0.75rem; right: -0.75rem; }

  .contact__inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; align-items: flex-start; }

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

@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .stats__grid   { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: 1fr; }
}
