﻿/* =============================================
   MIGUEL ARCANJO ADVOCACIA — styles.css
   Palette: #d3a14a (gold) | #242424 (dark) | #f4f4f4 (light)
   Font: Gotham-inspired → Montserrat + DM Serif Display
============================================= */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=DM+Serif+Display:ital@0;1&family=Cormorant+Garamond:ital,wght@0,300;0,600;1,300&display=swap");

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

:root {
  --gold: #d3a14a;
  --gold-lt: #e8c07a;
  --dark: #1a1a1a;
  --dark2: #242424;
  --mid: #3a3a3a;
  --light: #f4f4f4;
  --white: #ffffff;
  --font-display: "DM Serif Display", serif;
  --font-body: "Montserrat", sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* ── Utility ───────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.gold {
  color: var(--gold);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-lt);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease);
}
.btn:hover::before {
  transform: translateX(0);
}
.btn span,
.btn svg {
  position: relative;
  z-index: 1;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border: 2px solid var(--gold);
}
.btn-ghost {
  background: transparent;
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost::before {
  background: rgba(255, 255, 255, 0.08);
}

/* ── Navigation ────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: all 0.4s var(--ease);
}
nav.scrolled {
  padding: 0.9rem 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(211, 161, 74, 0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 36px;
  filter: brightness(1);
  transition: 0.3s;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: rgba(244, 244, 244, 0.7);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--light);
  transition: 0.3s;
}

/* ── Hero ──────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 70% 50%,
    rgba(211, 161, 74, 0.06) 0%,
    transparent 70%
  );
}
.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-lines::before,
.hero-lines::after {
  content: "";
  position: absolute;
  width: 1px;
  background: rgba(211, 161, 74, 0.12);
  top: 0;
  bottom: 0;
}
.hero-lines::before {
  left: 33.33%;
}
.hero-lines::after {
  left: 66.66%;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem 4rem 0;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
}
.hero-tag::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  font-weight: 400;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(244, 244, 244, 0.65);
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.8rem;
}
.stat {
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(244, 244, 244, 0.5);
  margin-top: 0.2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-image-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 55% 38%,
      rgba(211, 161, 74, 0.12),
      transparent 34%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 58%);
}
.hero-img {
  width: min(92%, 620px);
  height: 92%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  filter: grayscale(8%) drop-shadow(0 34px 55px rgba(0, 0, 0, 0.42));
  z-index: 1;
}
.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      var(--dark) 0%,
      transparent 30%,
      transparent 70%,
      var(--dark) 100%
    ),
    linear-gradient(to top, var(--dark) 0%, transparent 28%);
  z-index: 2;
  pointer-events: none;
}
.hero-image-wrap::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: -3rem;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(211, 161, 74, 0.2);
  border-radius: 50%;
  z-index: 0;
}
.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(211, 161, 74, 0.2);
  border-radius: 4px;
  padding: 0.9rem 1.2rem;
}
.badge-icon {
  color: var(--gold);
}
.badge-text {
  font-size: 0.72rem;
  line-height: 1.4;
}
.badge-oab {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.badge-text strong {
  display: block;
  font-weight: 700;
}
.badge-text span {
  color: rgba(244, 244, 244, 0.5);
}

/* ── Audience Toggle ───────────────────────── */
#audience {
  padding: 6rem 0;
  background: var(--dark2);
  position: relative;
}
.audience-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.2;
  font-weight: 400;
}
.audience-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 5px;
  width: fit-content;
  margin: 0 auto 3rem;
}
.toggle-btn {
  padding: 0.8rem 2.5rem;
  border: none;
  background: none;
  color: rgba(244, 244, 244, 0.5);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}
.toggle-btn.active {
  background: var(--gold);
  color: var(--dark);
}
.audience-panels {
  position: relative;
}
.panel {
  display: none;
}
.panel.active {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* ── Situation Cards ───────────────────────── */
.situation-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  padding: 2rem 1.8rem;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.situation-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s var(--ease);
}
.situation-card:hover {
  background: rgba(211, 161, 74, 0.05);
  border-color: rgba(211, 161, 74, 0.2);
  transform: translateY(-4px);
}
.situation-card:hover::before {
  transform: scaleY(1);
}
.card-icon,
.diff-icon,
.loc-icon,
.badge-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(211, 161, 74, 0.28);
  color: rgba(232, 192, 122, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.025);
}
.card-icon svg,
.diff-icon svg,
.loc-icon svg,
.badge-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card-icon {
  margin-bottom: 1rem;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  line-height: 1.25;
}
.card-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(244, 244, 244, 0.55);
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 1.2rem;
  transition: gap 0.2s;
}
.card-link:hover {
  gap: 0.8rem;
}

/* ── About ─────────────────────────────────── */
#about {
  padding: 8rem 0;
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  background:
    radial-gradient(
      circle at 52% 36%,
      rgba(211, 161, 74, 0.11),
      transparent 38%
    ),
    rgba(255, 255, 255, 0.02);
  overflow: visible;
}
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: contain;
  object-position: center bottom;
  filter: grayscale(12%) drop-shadow(0 24px 42px rgba(0, 0, 0, 0.38));
  display: block;
}
.about-frame {
  position: absolute;
  inset: -20px -20px 20px 20px;
  border: 1px solid rgba(211, 161, 74, 0.2);
  z-index: -1;
}
.about-quote {
  position: absolute;
  bottom: 1.25rem;
  right: -1.25rem;
  background: var(--gold);
  color: var(--dark);
  padding: 1.5rem;
  width: min(250px, 68%);
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.4;
  z-index: 2;
}
.oab {
  font-weight: 700;
  font-size: 0.75rem;
  font-family: var(--font-body);
  margin-top: 0.5rem;
}
.about-content {
}
.about-content .section-tag {
  text-align: left;
}
.about-content .section-title {
  margin-bottom: 1.5rem;
}
.about-text {
  font-size: 0.92rem;
  line-height: 1.9;
  color: rgba(244, 244, 244, 0.65);
  margin-bottom: 2rem;
}
.differentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(211, 161, 74, 0.05);
  border-left: 2px solid var(--gold);
}
.diff-icon {
  flex-shrink: 0;
}
.diff-text {
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(244, 244, 244, 0.7);
}
.diff-text strong {
  display: block;
  color: var(--light);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

/* ── FAQ ───────────────────────────────────── */
#faq {
  padding: 7rem 0;
  background: var(--dark2);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}
.faq-intro .section-title {
  margin-bottom: 1.5rem;
}
.faq-intro p {
  color: rgba(244, 244, 244, 0.55);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.faq-content {
  min-width: 0;
}
.faq-toggle {
  margin: 0 0 1.5rem;
  max-width: 560px;
  width: 100%;
}
.faq-toggle .toggle-btn {
  padding-inline: 1.6rem;
  flex: 1;
}
.faq-panels {
  position: relative;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-panel.panel {
  display: none;
}
.faq-panel.panel.active {
  display: flex;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  color: var(--light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--gold);
}
.faq-q .faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.82rem;
  transition: all 0.3s;
}
.faq-item.open .faq-q {
  color: var(--gold);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s var(--ease),
    padding 0.3s;
}
.faq-a p {
  padding-bottom: 1.4rem;
  color: rgba(244, 244, 244, 0.55);
  font-size: 0.85rem;
  line-height: 1.8;
}
.faq-item.open .faq-a {
  max-height: 300px;
}

/* ── CTA Band ──────────────────────────────── */
.cta-band {
  padding: 5rem 0;
  background: var(--gold);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(0, 0, 0, 0.07);
  border-radius: 50%;
  top: -200px;
  left: -100px;
}
.cta-band .section-title {
  color: var(--dark);
  margin-bottom: 1rem;
  position: relative;
}
.cta-band p {
  color: rgba(26, 26, 26, 0.7);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  position: relative;
}
.btn-dark {
  background: var(--dark);
  color: var(--light);
  border: 2px solid var(--dark);
}
.btn-dark::before {
  background: #333;
}

/* ── Location ──────────────────────────────── */
#location {
  padding: 6rem 0;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.location-info .section-tag,
.location-info .section-title {
  margin-bottom: 0.5rem;
}
.location-info .section-title {
  margin-bottom: 1.2rem;
}
.location-info p {
  color: rgba(244, 244, 244, 0.55);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.loc-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.loc-item .loc-icon {
  flex-shrink: 0;
}
.loc-item span {
  font-size: 0.85rem;
  color: rgba(244, 244, 244, 0.7);
}
.loc-item a {
  color: rgba(244, 244, 244, 0.72);
  text-decoration: none;
  border-bottom: 1px solid rgba(211, 161, 74, 0.28);
  transition:
    color 0.2s,
    border-color 0.2s;
}
.loc-item a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.map-frame {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(211, 161, 74, 0.15);
  border-radius: 2px;
  overflow: hidden;
  height: 380px;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(40%) contrast(1.1);
}

/* ── Footer ────────────────────────────────── */
footer {
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  height: 32px;
  margin-bottom: 1.2rem;
}
.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(244, 244, 244, 0.4);
  max-width: 260px;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col ul a {
  color: rgba(244, 244, 244, 0.45);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(244, 244, 244, 0.25);
}

/* ── WhatsApp Float ────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}
.wa-btn {
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
  animation: pulse 2.5s infinite;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
.wa-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}
.wa-label {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s;
  pointer-events: none;
}
.wa-float:hover .wa-label {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  }
  50% {
    box-shadow:
      0 4px 30px rgba(37, 211, 102, 0.6),
      0 0 0 8px rgba(37, 211, 102, 0.1);
  }
}

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

/* ── Responsive ────────────────────────────── */
@media (max-width: 1024px) {
  #hero {
    grid-template-columns: 1fr;
  }
  .hero-image-wrap {
    height: 50vh;
  }
  .hero-img {
    width: min(88%, 460px);
    height: 96%;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image-wrap {
    max-width: 400px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta .btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .about-quote {
    right: 1rem;
    bottom: 1rem;
    width: min(250px, calc(100% - 2rem));
  }
  .differentials {
    grid-template-columns: 1fr;
  }
  .panel.active {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
  .faq-toggle .toggle-btn {
    padding-inline: 0.85rem;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }
  .cta-band {
    padding: 3.5rem 1.5rem;
  }
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(20px);
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav a {
  color: var(--light);
  font-family: var(--font-display);
  font-size: 2rem;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav a:hover {
  color: var(--gold);
}
