/* ============================================
   MASONRY ASIA — Stone + Brass Theme
   Option C: Raw Concrete + Brushed Brass
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── CSS Variables ── */
:root {
  --stone-50:  #F7F6F3;
  --stone-100: #EDECE8;
  --stone-200: #D6D4CE;
  --stone-300: #B8B5AE;
  --stone-400: #9C9A94;
  --stone-600: #5C5A54;
  --stone-800: #2E2C28;
  --stone-900: #1C1A16;
  --accent:    #B8956A;
  --accent-dark:#9A7A52;
  --accent-light: #D4B48A;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius: 0.5rem;
  --radius-lg: 1rem;
  --shadow-sm: 0 1px 3px rgba(46,44,40,0.08), 0 1px 2px rgba(46,44,40,0.06);
  --shadow-md: 0 4px 12px rgba(46,44,40,0.10), 0 2px 4px rgba(46,44,40,0.06);
  --shadow-lg: 0 12px 32px rgba(46,44,40,0.12), 0 4px 8px rgba(46,44,40,0.08);

  --header-height: 72px;
  --transition: 200ms ease-out;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--stone-50);
  color: var(--stone-800);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--stone-900);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--stone-600); }

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,246,243,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone-200);
  height: var(--header-height);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}
.header__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--stone-900);
  white-space: nowrap;
}
.header__logo span { color: var(--accent); }
.header__logo img { height: 56px; width: auto; }

.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav a {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--stone-600);
  transition: color var(--transition), background var(--transition);
}
.nav a:hover, .nav a.active {
  color: var(--stone-900);
  background: var(--stone-100);
}

.header__actions { display: flex; align-items: center; gap: 0.75rem; }

/* Language Toggle */
.lang-toggle {
  display: flex;
  background: var(--stone-100);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-toggle button {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--stone-400);
  transition: all var(--transition);
  letter-spacing: 0.03em;
}
.lang-toggle button.active {
  background: white;
  color: var(--stone-800);
  box-shadow: var(--shadow-sm);
}

/* WhatsApp Nav Button */
.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: #25D366;
  color: white;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,211,102,0.35);
}
.btn-whatsapp svg { width: 18px; height: 18px; }

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.mobile-menu-btn span {
  width: 22px; height: 2px;
  background: var(--stone-800);
  border-radius: 2px;
  transition: all var(--transition);
}

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .header__logo img { height: 44px; }
  .header__logo { font-size: 0.9rem; }
  .header__actions { gap: 0.35rem; }
  .btn-whatsapp { padding: 0.45rem; border-radius: var(--radius); }
  .btn-whatsapp span { display: none; }
  .btn-whatsapp svg { width: 22px; height: 22px; }
  .btn-whatsapp:hover { transform: none; }
  .lang-toggle { padding: 2px; }
  .lang-toggle button { padding: 3px 7px; font-size: 0.7rem; }
  :root { --header-height: 60px; }
  .header { border-bottom-color: var(--stone-200); }
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--stone-50);
  z-index: 200;
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: var(--radius);
  color: var(--stone-800);
  transition: background var(--transition);
}
.mobile-nav a:hover { background: var(--stone-100); }
.mobile-nav__close {
  align-self: flex-end;
  padding: 0.5rem;
  font-size: 1.5rem;
  color: var(--stone-600);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--stone-800);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,9,8,0.90) 0%, rgba(20,18,15,0.60) 100%),
    url('hero-marble.png') center/cover no-repeat;
  mix-blend-mode: normal;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(184,149,106,0.2);
  border: 1px solid var(--accent);
  color: var(--accent-light);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  color: white;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.9);
}
.hero h1 em {
  font-style: normal;
  color: var(--accent-light);
}
.hero__sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 560px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

@media (max-width: 600px) {
  .hero__sub { font-size: 0.95rem; }
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
}
.btn--primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 2px 8px rgba(184,149,106,0.3);
}
.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,149,106,0.4);
}
.btn--secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
}
.btn--secondary:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}
.btn--stone {
  background: var(--stone-100);
  color: var(--stone-800);
  border: 1px solid var(--stone-200);
}
.btn--stone:hover {
  background: var(--stone-200);
  transform: translateY(-1px);
}

/* ── Section spacing ── */
.section { padding: 5rem 0; }
.section--alt { background: var(--stone-100); }
.section__header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.section__header p { margin-top: 0.75rem; font-size: 1.05rem; }
.section__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--stone-200);
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: white;
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; }

/* ── Stats ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.stat__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat__label {
  font-size: 0.9rem;
  color: var(--stone-600);
  margin-top: 0.5rem;
}

/* ── Featured Projects (Home) ── */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.featured-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  border: 1px solid var(--stone-200);
  transition: all var(--transition);
}
.featured-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.featured-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
  cursor: pointer;
}
.featured-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.featured-card:hover .featured-card__img img { transform: scale(1.03); }
.featured-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,28,24,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.featured-card__overlay span {
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(0,0,0,0.4);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}
.featured-card__body { padding: 1.25rem; }
.featured-card__body h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.featured-card__body p { font-size: 0.8rem; }

/* ── Projects Page ── */
.projects-hero {
  position: relative;
  padding: 4rem 0 3rem;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(10,9,8,0.90) 0%, rgba(20,18,15,0.60) 100%), url('hero-marble.png') center/cover no-repeat;
}
.projects-hero h1 { color: white; margin-bottom: 0.75rem; text-shadow: 0 2px 20px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.9); }
.projects-hero p { color: rgba(255,255,255,0.6); }

/* Category Filter */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1.5px solid var(--stone-200);
  color: var(--stone-600);
  background: white;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(184,149,106,0.06);
}

/* New Projects Banner */
.new-projects-banner {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.new-projects-banner__text { color: white; }
.new-projects-banner__text h3 { color: white; margin-bottom: 0.25rem; }
.new-projects-banner__text p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.new-projects-banner .btn--secondary { border-color: rgba(255,255,255,0.4); }

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.project-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--stone-200);
  transition: all var(--transition);
}
.project-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--accent-light);
}
.project-card__gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
}
.project-card__gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}
.project-card:hover .project-card__gallery img { transform: scale(1.04); }
.project-card__gallery__label {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  display: flex;
  gap: 0.25rem;
}
.project-card__gallery__label span {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
}
.project-card__body { padding: 1.25rem; }
.project-card__year {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}
.project-card__body h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.project-card__body p { font-size: 0.8rem; }
.project-card__category {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.cat-residential { background: rgba(184,149,106,0.12); color: var(--accent-dark); }
.cat-commercial   { background: rgba(92,90,84,0.1);    color: var(--stone-600); }
.cat-school       { background: rgba(30,100,80,0.1);   color: #1e6450; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox__inner { position: relative; max-width: 900px; width: 100%; }
.lightbox__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.lightbox__images img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--stone-800);
}
.lightbox__caption {
  text-align: center;
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
  font-size: 0.9rem;
}
.lightbox__close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  color: white;
  font-size: 2rem;
  padding: 0.5rem;
  opacity: 0.8;
  transition: opacity var(--transition);
}
.lightbox__close:hover { opacity: 1; }

/* Before/After Modal */
.ba-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 500;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
}
.ba-modal.open { display: flex; }
.ba-modal__title {
  color: white;
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}
.ba-modal__meta {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.ba-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 900px;
  width: 100%;
}
.ba-modal__grid img {
  width: 100%;
  max-height: 60vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--stone-800);
}
.ba-modal__labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 900px;
  width: 100%;
  margin-bottom: 1.5rem;
}
.ba-modal__labels span {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.ba-modal__close {
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1.5rem;
  opacity: 0.7;
  transition: opacity var(--transition);
  margin-top: 1rem;
}
.ba-modal__close:hover { opacity: 1; }
@media (max-width: 600px) {
  .footer__brand img { height: 28px; }
  .ba-modal__grid { grid-template-columns: 1fr; }
  .ba-modal__labels { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .projects-grid .project-card { border-radius: 0; border-left: none; border-right: none; }
  .projects-grid .project-card__body { display: none; }
  .projects-grid .project-card__gallery { height: auto; }
  .projects-grid .project-card__gallery img { aspect-ratio: 1 / 1; height: 100%; }
  .hero__content { padding: 0 0.5rem; }
  .hero h1 { font-size: clamp(1.6rem, 8vw, 2.5rem); }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 1.5rem; }
  .projects-hero { padding: 3rem 0 2rem; }
  .projects-hero h1 { font-size: 1.8rem; }
  .section { padding: 3rem 0; }
}

/* ── Contact Page ── */
.contact-page { padding-top: 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2rem; }
.contact-methods { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-method__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--stone-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-method__icon svg { width: 20px; height: 20px; }
.contact-method__label {
  font-size: 0.8rem;
  color: var(--stone-400);
  margin-bottom: 2px;
}
.contact-method__value {
  font-weight: 600;
  color: var(--stone-900);
}
.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: #25D366;
  color: white;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(37,211,102,0.3);
}
.contact-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-1px);
}
.contact-whatsapp svg { width: 18px; height: 18px; }

/* Form */
.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--stone-200);
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--stone-800);
  margin-bottom: 0.4rem;
}
.form-label span { color: var(--accent); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--stone-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--stone-800);
  background: var(--stone-50);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,149,106,0.12);
  background: white;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239C9A94' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--accent);
  color: white;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(184,149,106,0.3);
  margin-top: 0.5rem;
}
.form-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,149,106,0.4);
}
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.show { display: block; }
.form-success__icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: white;
}
.form-success__icon svg { width: 28px; height: 28px; }
.form-success h3 { margin-bottom: 0.5rem; }

/* ── Footer ── */
.footer {
  background: linear-gradient(to bottom, rgba(18,18,18,0.85), rgba(18,18,18,0.95)), url('footer-bg.png') center/cover no-repeat;
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 2rem;
  font-size: 0.875rem;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__brand img {
  height: 36px;
  width: auto;
  display: block;
}

/* ── Utilities ── */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
