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

:root {
  --gold: #C9A84C;
  --gold-light: #E2C47A;
  --gold-dim: rgba(201,168,76,0.12);
  --gold-rule: rgba(201,168,76,0.28);
  --bg: #0D0D0D;
  --bg-card: #141414;
  --bg-card2: #191919;
  --bg-form: #0f0f0f;
  --text: #F0EDE6;
  --muted: #8A8680;
  --muted-light: #B0ADA8;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --max: 1100px;
  --form-max: 700px;
  --pad: clamp(1.25rem, 5vw, 3rem);
  --radius: 10px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.nav-brand {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}
.nav-brand span { color: var(--gold); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-rule);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-dim); }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(5rem, 12vw, 9rem) var(--pad) clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  text-align: center;
}

/* Mosaic background */
.hero-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  z-index: 0;
}
.mosaic-panel {
  position: relative;
  overflow: hidden;
}
.mosaic-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 8s ease;
}
.mosaic-panel:hover img { transform: scale(1.04); }

/* dark gradient overlay over mosaic */
.hero-mosaic::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.82) 70%, rgba(13,13,13,0.95) 100%);
  z-index: 1;
  pointer-events: none;
}

/* gold vignette grid lines */
.hero-mosaic-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.08) 1px, transparent 1px);
  background-size: 33.333% 50%;
}

/* Special panel spans */
.mosaic-panel:nth-child(5) {
  grid-column: 2 / 4;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-rule);
  background: rgba(13,13,13,0.6);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.hero-badge span {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
h1 em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: rgba(240,237,230,0.8);
  max-width: 560px;
  margin: 0 auto 2.25rem;
  font-weight: 300;
  line-height: 1.75;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-bottom: 2.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 11px;
  letter-spacing: 0.07em;
  color: var(--muted-light);
  text-transform: uppercase;
  font-weight: 500;
  background: rgba(13,13,13,0.5);
  backdrop-filter: blur(6px);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(201,168,76,0.15);
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2.5rem;
  background: var(--gold);
  color: #0D0D0D;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(201,168,76,0.25);
}
.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
}

/* Service label pills on mosaic */
.service-labels {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.service-label {
  display: flex;
  align-items: flex-end;
  padding: 0.6rem 0.75rem;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(240,237,230,0.55);
  font-family: var(--sans);
  border: 0.5px solid rgba(201,168,76,0.06);
}
.service-label:nth-child(5) { grid-column: 2 / 4; }

/* ── UTILITY ── */
.wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.wrap--narrow { max-width: var(--form-max); }
.rule { width: 40px; height: 1px; background: var(--gold); margin: 0 auto 1.75rem; }
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
  text-align: center;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  text-align: center;
  margin-bottom: 1.25rem;
}
h2 em { font-style: italic; color: var(--gold-light); }
.section-intro {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--muted);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
  font-weight: 300;
}

/* ── ENQUIRY FORM ── */
#enquiry {
  padding: clamp(4rem, 9vw, 6rem) 0;
  background: linear-gradient(180deg, transparent 0%, rgba(201,168,76,0.04) 50%, transparent 100%);
  border-top: 1px solid var(--gold-rule);
}
.form-card {
  background: var(--bg-form);
  border: 1px solid var(--gold-rule);
  border-radius: 18px;
  padding: clamp(2rem, 6vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.form-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.form-title em { font-style: italic; color: var(--gold-light); }
.form-desc {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 2rem;
  font-weight: 300;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-light);
}
label .req { color: var(--gold); margin-left: 2px; }
input, select, textarea {
  width: 100%;
  background: var(--bg-card2);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8680' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: var(--bg-card2);
  padding-right: 2.5rem;
  cursor: pointer;
}
select option { background: #1a1a1a; color: var(--text); }
textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
input::placeholder, textarea::placeholder { color: var(--muted); opacity: 0.7; }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
input.error, select.error, textarea.error {
  border-color: #e05252;
  box-shadow: 0 0 0 3px rgba(224,82,82,0.08);
}
.error-msg { font-size: 11px; color: #e07070; display: none; margin-top: 2px; }
.error-msg.show { display: block; }
.submit-btn {
  width: 100%;
  margin-top: 1.25rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: #0D0D0D;
  border: none;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(201,168,76,0.2);
}
.submit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.3);
}
.submit-btn:active { transform: translateY(0); }
.form-privacy {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* Success */
.success-msg {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.success-msg.show { display: flex; }
.success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-rule);
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text);
}
.success-title em { font-style: italic; color: var(--gold-light); }
.success-body { font-size: 0.95rem; color: var(--muted); max-width: 380px; line-height: 1.7; }

/* ── WHY CHOOSE US ── */
#why {
  padding: clamp(4rem, 9vw, 6rem) 0;
  border-top: 1px solid var(--gold-rule);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.13);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}
.why-card:hover {
  border-color: var(--gold-rule);
  transform: translateY(-3px);
}
.why-icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold);
}
.why-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.why-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ── SERVICES ── */
#services {
  padding: clamp(4rem, 9vw, 6rem) 0;
  border-top: 1px solid var(--gold-rule);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.service-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.15);
  transition: border-color 0.25s, transform 0.25s;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.3) 60%, transparent 100%);
  z-index: 1;
}
.service-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
  z-index: 2;
}
.service-card-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.service-card-desc {
  font-size: 0.78rem;
  color: var(--muted-light);
  line-height: 1.5;
}
.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s, transform 0.25s;
}
.service-card:hover .service-card-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ── HOW IT WORKS ── */
#how {
  padding: clamp(4rem, 9vw, 6rem) 0;
  border-top: 1px solid var(--gold-rule);
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.03) 50%, transparent);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(16.666% + 1.25rem);
  right: calc(16.666% + 1.25rem);
  height: 1px;
  background: var(--gold-rule);
}
.step { text-align: center; }
.step-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.step-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ── FOUNDER ── */
#founder {
  padding: clamp(4rem, 9vw, 6rem) 0;
  border-top: 1px solid var(--gold-rule);
}
.founder-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: center;
}
.founder-photo-wrap {
  position: relative;
}
.founder-photo-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--gold-rule);
}
.founder-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 20%;
  display: block;
  filter: grayscale(8%) contrast(1.05);
  transform: scale(1.08);
  transform-origin: 60% 20%;
}
/* Gold corner accents */
.founder-photo-frame::before {
  content: '';
  position: absolute;
  top: 12px; left: 12px;
  width: 32px; height: 32px;
  border-top: 1.5px solid var(--gold);
  border-left: 1.5px solid var(--gold);
  z-index: 2;
  border-radius: 2px 0 0 0;
}
.founder-photo-frame::after {
  content: '';
  position: absolute;
  bottom: 12px; right: 12px;
  width: 32px; height: 32px;
  border-bottom: 1.5px solid var(--gold);
  border-right: 1.5px solid var(--gold);
  z-index: 2;
  border-radius: 0 0 2px 0;
}
.founder-bg-accent {
  position: absolute;
  top: 14px; left: 14px; bottom: -14px; right: -14px;
  background: var(--gold-dim);
  border-radius: 16px;
  border: 1px solid var(--gold-rule);
  z-index: -1;
}
.founder-text { }
.founder-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.founder-name {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.founder-name em { font-style: italic; color: var(--gold-light); }
.founder-role {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 1.75rem;
  text-transform: uppercase;
  font-weight: 500;
}
.founder-rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.75rem;
}
.founder-bio {
  font-size: 1.05rem;
  color: var(--muted-light);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2rem;
}
.founder-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.founder-stat {
  text-align: left;
}
.founder-stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.founder-stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ── MARKETING DIRECTOR ── */
#marketing-director {
  padding: clamp(4rem, 9vw, 6rem) 0;
  border-top: 1px solid var(--gold-rule);
  background: linear-gradient(180deg, transparent 0%, rgba(201,168,76,0.03) 50%, transparent 100%);
}

/* ── CONTACT ── */
#contact {
  padding: clamp(3rem, 7vw, 5rem) 0;
  border-top: 1px solid var(--gold-rule);
  text-align: center;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
  margin-top: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted-light);
}
.contact-item a { color: var(--gold); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }
.contact-item svg { color: var(--gold); flex-shrink: 0; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--gold-rule);
  padding: 2rem var(--pad);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
}
.footer-brand span { color: var(--gold); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 11px;
  color: var(--muted);
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .founder-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .founder-photo-wrap {
    max-width: 320px;
    margin: 0 auto;
  }
  .founder-text { text-align: center; }
  .founder-rule { margin: 0 auto 1.75rem; }
  .founder-stats { justify-content: center; }
  .founder-stat { text-align: center; }
  .steps::before { display: none; }
}

@media (max-width: 700px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  /* Stack mosaic vertically on tiny screens */
  .hero-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
  .mosaic-panel:nth-child(5) { grid-column: 1 / 3; }
  .service-labels { display: none; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(5, 1fr); }
  .mosaic-panel:nth-child(5) { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation: none !important; }
}

/* ── BEFORE & AFTER GALLERY ── */
#gallery {
  padding: clamp(4rem, 9vw, 6rem) 0;
  border-top: 1px solid var(--gold-rule);
  background: linear-gradient(180deg, transparent 0%, rgba(201,168,76,0.03) 50%, transparent 100%);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  background: var(--bg-card);
  aspect-ratio: 4/3;
}
.gallery-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.15);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.85rem 1rem 0.75rem;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, transparent 100%);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  letter-spacing: 0.01em;
}

/* Lightbox */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.gallery-lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 1000px;
  width: 100%;
}
.lightbox-inner img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  border: 1px solid var(--gold-rule);
}
.lightbox-caption {
  text-align: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-top: 1rem;
  letter-spacing: 0.02em;
}
.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: var(--muted-light);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  padding: 0.25rem 0.5rem;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13,13,13,0.7);
  border: 1px solid var(--gold-rule);
  color: var(--gold);
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-size: 1.1rem;
}
.lightbox-nav:hover { background: var(--gold-dim); border-color: var(--gold); }
.lightbox-prev { right: calc(100% + 1rem); }
.lightbox-next { left: calc(100% + 1rem); }
.lightbox-counter {
  position: absolute;
  top: -2.4rem;
  left: 0;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox-prev { right: auto; left: 0; top: auto; bottom: -3.5rem; transform: none; }
  .lightbox-next { left: auto; right: 0; top: auto; bottom: -3.5rem; transform: none; }
  .lightbox-counter { bottom: -3.5rem; top: auto; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.wa-tooltip {
  background: #1a1a1a;
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}
.wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 2.5s ease infinite;
}
.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  animation: none;
}
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.65); }
}
.wa-btn svg { width: 30px; height: 30px; }
@media (max-width: 480px) {
  .wa-float { bottom: 1.25rem; right: 1.25rem; }
  .wa-btn { width: 52px; height: 52px; }
}

/* Spin animation for submit-button loading state */
@keyframes spin { to { transform: rotate(360deg); } }
