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

:root {
  --black:     #0A0908;
  --charcoal:  #16130F;
  --charcoal2: #1F1A14;
  --gold:      #C9A24B;
  --gold-l:    #E6CC8C;
  --gold-d:    #96772F;
  --cream:     #FAF5EA;
  --ivory:     #F3ECDC;
  --muted:     #C9BEA9;
  --white:     #FFFFFF;
  --ink:       #1A1613;
  --green-wa:  #25D366;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--ink);
  line-height: 1.6;
}

::selection { background: var(--gold); color: var(--black); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: rgba(10,9,8,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,162,75,0.22);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-l);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color .2s;
}

.nav-links a:hover { color: var(--gold-l); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-l);
  cursor: pointer;
  padding: 4px;
}
.nav-toggle svg { width: 24px; height: 24px; }

.nav-bag-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,75,0.4);
  background: rgba(201,162,75,0.08);
  color: var(--gold-l);
  cursor: pointer;
  transition: all .2s;
}
.nav-bag-btn:hover { background: rgba(201,162,75,0.18); }
.nav-bag-btn svg { width: 18px; height: 18px; }

.bag-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
}
.bag-count[data-count="0"] { display: none; }

/* ── HERO ── */
.hero {
  margin-top: 72px;
  min-height: calc(100vh - 72px);
  background:
    radial-gradient(circle at 85% 15%, rgba(201,162,75,0.10) 0%, transparent 50%),
    linear-gradient(160deg, #0A0908 0%, #16130F 55%, #0A0908 100%);
  display: flex;
  align-items: center;
  padding: 6rem 5vw;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 1.75rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201,162,75,0.3);
  border-radius: 100px;
}

.hero-tag .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-l), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.hero-urgency {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 2.5rem;
}

.hero-urgency svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--gold-d); }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all .25s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(120deg, var(--gold-l), var(--gold) 60%, var(--gold-d));
  color: var(--black);
  box-shadow: 0 6px 24px rgba(201,162,75,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,162,75,0.5);
}

.btn-whatsapp {
  background: var(--green-wa);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold-l);
  border: 2px solid rgba(201,162,75,0.5);
}

.btn-outline:hover {
  background: rgba(201,162,75,0.1);
  border-color: var(--gold);
}

.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 1.1rem 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(201,162,75,0.15);
  border-bottom: 1px solid rgba(201,162,75,0.15);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.trust-item strong { color: var(--gold-l); }
.trust-item svg { color: var(--gold); width: 18px; height: 18px; }

/* ── SECTIONS ── */
section { padding: 5.5rem 5vw; }
.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.section-sub {
  font-size: 1rem;
  color: #6B6053;
  max-width: 560px;
  line-height: 1.7;
}

/* ── PAGE HEADER (páginas internas) ── */
.page-header {
  margin-top: 72px;
  background: linear-gradient(160deg, #0A0908 0%, #16130F 55%, #0A0908 100%);
  padding: 3.5rem 5vw 2.75rem;
}
.page-header .breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.page-header .breadcrumb a { color: var(--gold-l); text-decoration: none; }
.page-header .breadcrumb a:hover { text-decoration: underline; }
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--cream);
}

/* ── PRODUTOS / SACOLA ── */
.produtos { background: var(--charcoal); }
.produtos .section-title { color: var(--cream); }
.produtos .section-sub { color: var(--muted); }

.produtos-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding: 0;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
  max-width: 640px;
}
.produtos-note svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--gold-d); }

.prod-group { margin-top: 3.5rem; }
.prod-group + .prod-group { margin-top: 3rem; }

.prod-group h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--gold-l);
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(201,162,75,0.15);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.25rem 2rem;
}

.prod-card {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.prod-card-text h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.prod-card-text p {
  font-size: 0.82rem;
  color: var(--muted);
}

.add-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0;
  background: transparent;
  border: none;
  color: var(--gold-l);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity .2s;
}

.add-btn:hover { opacity: 0.7; }

.add-btn.added { color: var(--muted); }

.add-btn svg { width: 15px; height: 15px; }

/* ── ABOUT ── */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.about-visual {
  background: linear-gradient(155deg, var(--charcoal) 0%, var(--black) 100%);
  border: 1px solid rgba(201,162,75,0.25);
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-item { display: flex; align-items: center; gap: 1rem; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-l);
  min-width: 90px;
  line-height: 1;
}

.stat-label { font-size: 0.9rem; color: var(--muted); line-height: 1.4; }
.stat-divider { height: 1px; background: rgba(201,162,75,0.2); }

.about-text .section-sub { margin-bottom: 1.25rem; }

.values-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }

.value-tag {
  background: var(--black);
  color: var(--gold-l);
  border: 1px solid rgba(201,162,75,0.3);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── QUEM SOMOS ── */
.quemsomos { background: var(--ivory); }
.quemsomos .section-title { color: var(--ink); }

.historia-text { max-width: 760px; margin-top: 0.5rem; }
.historia-text p {
  font-size: 1rem;
  color: #5A5044;
  line-height: 1.9;
  margin-bottom: 1.15rem;
}

.timeline {
  display: flex;
  gap: 2rem;
  margin: 3.5rem 0;
  flex-wrap: wrap;
}

.timeline-item {
  flex: 1;
  min-width: 160px;
  padding-top: 1.1rem;
  border-top: 2px solid var(--gold);
}

.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold-d);
  margin-bottom: 0.4rem;
}

.timeline-desc { font-size: 0.85rem; color: #6B6053; line-height: 1.55; }

.team-intro {
  margin-top: 4rem;
  margin-bottom: 2.5rem;
}

.team-intro h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.team-intro p { font-size: 0.95rem; color: #6B6053; max-width: 560px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem 2rem;
}

.team-card { text-align: center; }

.team-avatar {
  width: 104px; height: 104px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  border: 2px solid var(--gold);
  padding: 3px;
}

.team-avatar img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.75rem;
  color: var(--gold-d);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.team-bio { font-size: 0.87rem; color: #6B6053; line-height: 1.65; }

@media (max-width: 640px) {
  .timeline { flex-direction: column; gap: 1.5rem; }
}

/* ── BRANDS ── */
.brands { background: var(--black); }
.brands .section-title { color: var(--cream); }
.brands .section-sub { color: var(--muted); }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}

.brand-card {
  background: rgba(201,162,75,0.05);
  border: 1px solid rgba(201,162,75,0.18);
  border-radius: 12px;
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: all .3s;
}

.brand-card:hover {
  background: rgba(201,162,75,0.12);
  border-color: rgba(201,162,75,0.5);
  transform: translateY(-4px);
}

.brand-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--gold-l);
  margin-bottom: 0.4rem;
}

.brand-card p { font-size: 0.8rem; color: var(--muted); }

/* ── WHATSAPP CTA ── */
.wa-section {
  background: linear-gradient(135deg, #0B2E1B 0%, #124528 50%, #0A2416 100%);
  text-align: center;
  border-top: 1px solid rgba(201,162,75,0.2);
  border-bottom: 1px solid rgba(201,162,75,0.2);
}

.wa-section .section-title { color: var(--white); }
.wa-section .section-sub { color: rgba(255,255,255,0.7); margin: 0 auto 2.5rem; }

.wa-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

.wa-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold-l);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.btn-wa-big {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--green-wa);
  color: var(--white);
  padding: 1.1rem 2.5rem;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: all .25s;
}

.btn-wa-big:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(37,211,102,0.5);
}

.btn-wa-big svg { width: 26px; height: 26px; }

/* ── LOCATION ── */
.location { background: var(--cream); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

@media (max-width: 768px) { .location-grid { grid-template-columns: 1fr; } }

.location-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(150,119,47,0.2);
}

.info-row:last-child { border-bottom: none; }

.info-icon {
  width: 40px; height: 40px;
  background: var(--black);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold-l);
}

.info-icon svg { width: 18px; height: 18px; }

.info-content strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8A7D68;
  margin-bottom: 0.2rem;
}

.info-content span, .info-content a {
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
}

.info-content a:hover { color: var(--gold-d); }

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  height: 380px;
  border: 1px solid rgba(150,119,47,0.25);
}

.map-container iframe { width: 100%; height: 100%; border: none; }

/* ── INSTAGRAM ── */
.instagram {
  text-align: center;
  background: var(--charcoal);
  padding: 5rem 5vw;
}

.instagram .section-tag { color: var(--gold); }
.instagram .section-title { color: var(--cream); }
.instagram .section-sub { color: var(--muted); margin: 0 auto 2rem; }

.instagram-icon {
  width: 44px; height: 44px;
  margin: 0 auto 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
  display: flex; align-items: center; justify-content: center;
}
.instagram-icon svg { width: 24px; height: 24px; color: var(--white); }

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--gold-l);
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(201,162,75,0.4);
  transition: all .25s;
}

.btn-instagram:hover { background: rgba(201,162,75,0.1); border-color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.45);
  padding: 2.5rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(201,162,75,0.15);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold-l);
}

footer p { font-size: 0.82rem; }

/* ── FLOATING BUTTONS ── */
.float-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green-wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: opacity .3s, transform .3s;
  text-decoration: none;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.float-wa.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.float-wa.visible:hover { transform: scale(1.12); box-shadow: 0 10px 36px rgba(37,211,102,0.6); }
.float-wa svg { width: 30px; height: 30px; color: var(--white); }

.float-wa-pulse {
  position: absolute;
  top: 0; right: 0;
  width: 16px; height: 16px;
  background: #FF4444;
  border-radius: 50%;
  border: 2px solid var(--white);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.7; }
}

.float-bag {
  position: fixed;
  bottom: 28px; left: 28px;
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-l), var(--gold));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(201,162,75,0.5);
  transition: opacity .3s, transform .3s;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.float-bag.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.float-bag.visible:hover { transform: scale(1.12); box-shadow: 0 10px 36px rgba(201,162,75,0.6); }
.float-bag svg { width: 28px; height: 28px; color: var(--black); }

.float-bag .bag-count {
  top: -2px; right: -2px;
  border: 2px solid var(--black);
}

/* ── DRAWER / MODAL ── */
.overlay {
  position: fixed; inset: 0;
  background: rgba(10,9,8,0.7);
  backdrop-filter: blur(3px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.overlay.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(420px, 92vw);
  background: var(--charcoal);
  border-left: 1px solid rgba(201,162,75,0.25);
  z-index: 301;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem;
}

.drawer-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--cream);
}

.drawer-close {
  background: none; border: none; color: var(--muted);
  cursor: pointer; font-size: 1.4rem; line-height: 1;
}
.drawer-close:hover { color: var(--gold-l); }

.bag-empty {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem 0;
}

.bag-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(201,162,75,0.15);
}

.bag-item span { color: var(--cream); font-size: 0.92rem; }

.bag-remove {
  background: none; border: none;
  color: #C97A6A; cursor: pointer;
  font-size: 0.8rem;
  text-decoration: underline;
}

.drawer-footer { margin-top: auto; padding-top: 1.5rem; }

.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}
.form-group input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(201,162,75,0.3);
  background: var(--charcoal2);
  color: var(--cream);
  font-family: inherit;
  font-size: 0.92rem;
}
.form-group input:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group input::placeholder { color: #6B6355; }

.form-consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 1.1rem 0 1.4rem;
  line-height: 1.5;
}
.form-consent input { margin-top: 0.2rem; flex-shrink: 0; }

.btn-reservar {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
}

.form-hint { font-size: 0.72rem; color: #8A7D68; margin-top: 0.4rem; }

/* ── RESPONSIVE / MOBILE NAV ── */
@media (max-width: 640px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--black);
    border-bottom: 1px solid rgba(201,162,75,0.22);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .3s ease, opacity .25s ease;
  }
  .nav-links.open { max-height: 420px; opacity: 1; }

  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 1rem 5vw;
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .trust-bar { gap: 1.2rem; }
  .location-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
}
