/* ============================================================
   Obed Méndez Fotografía — Landing
   Style: Exaggerated / Editorial Minimalism
   Palette: Warm ink + paper + champagne gold
   Type: Playfair Display (display) + Inter (UI/body)
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Color */
  --ink:        #1C1917;   /* primary text / dark surfaces */
  --ink-deep:   #0C0A09;   /* near black */
  --paper:      #FAF9F7;   /* page background */
  --paper-2:    #F2EFEA;   /* alt surface */
  --card:       #FFFFFF;
  --gold:       #A1740C;   /* WCAG-safe gold on light (4.5:1+) */
  --gold-bright:#CBA35C;   /* decorative gold on dark surfaces */
  --gold-soft:  #E8D9B8;
  --muted:      #6B6259;   /* secondary text on light */
  --muted-light:#B9B2A8;   /* secondary text on dark */
  --border:     #E5E0D8;
  --border-dark:#2A2622;

  /* Typography */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing scale (8pt) */
  --space-section: clamp(4.5rem, 9vw, 8rem);
  --container: 1200px;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  /* Effects */
  --shadow-sm: 0 2px 10px rgba(28, 25, 23, 0.06);
  --shadow-md: 0 14px 40px rgba(28, 25, 23, 0.12);
  --shadow-lg: 0 30px 70px rgba(28, 25, 23, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 240ms;

  /* Z-index scale */
  --z-nav: 100;
  --z-totop: 200;
  --z-lightbox: 1000;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- Helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.section { padding-block: var(--space-section); }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow--light { color: var(--gold-bright); }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-lead { color: var(--muted); margin-top: 1rem; font-size: 1.05rem; max-width: 54ch; }
.accent-italic { font-style: italic; color: var(--gold-bright); }

.skip-link {
  position: absolute; left: 1rem; top: -100px;
  background: var(--ink); color: #fff; padding: 0.7rem 1.1rem;
  border-radius: var(--radius-sm); z-index: 1100; transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.95rem 1.9rem; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
              color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--gold { background: var(--gold); color: #fff; box-shadow: 0 10px 24px rgba(161, 116, 12, 0.28); }
.btn--gold:hover { background: #8c6309; box-shadow: 0 14px 30px rgba(161, 116, 12, 0.36); }
.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark:hover { background: var(--ink-deep); }
.btn--ghost { background: rgba(255,255,255,0.08); color: #fff; border: 1.5px solid rgba(255,255,255,0.55); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,0.18); border-color: #fff; }
.btn--block { width: 100%; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav);
  transition: box-shadow var(--dur) var(--ease), padding var(--dur) var(--ease);
  padding-block: 1.1rem;
}
/* El fondo difuminado vive en un pseudo-elemento, NO en .navbar.
   Si el blur estuviera en .navbar, este se convertiría en bloque
   contenedor de sus hijos position:fixed y rompería el menú móvil
   (el panel quedaba atrapado dentro de la barra superior). */
.navbar::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(250, 249, 247, 0.92);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.navbar.scrolled::before { opacity: 1; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  padding-block: 0.6rem;
}

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-logo {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; box-shadow: var(--shadow-sm);
  transition: width var(--dur) var(--ease), height var(--dur) var(--ease);
}
.navbar.scrolled .brand-logo { width: 42px; height: 42px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display); font-weight: 600; font-size: 1.2rem;
  color: #fff; letter-spacing: 0.01em; transition: color var(--dur) var(--ease);
}
.brand-tag {
  font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-bright); font-weight: 600;
}
.navbar.scrolled .brand-name { color: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-size: 0.92rem; font-weight: 500; color: rgba(255,255,255,0.92);
  position: relative; transition: color var(--dur) var(--ease);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gold-bright); transition: width var(--dur) var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.navbar.scrolled .nav-link { color: var(--ink); }
.navbar.scrolled .nav-link::after { background: var(--gold); }

.nav-cta {
  padding: 0.6rem 1.4rem; border-radius: var(--radius-pill);
  background: var(--gold); color: #fff; font-weight: 600; font-size: 0.9rem;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); background: #8c6309; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: calc(var(--z-nav) + 1); }
.nav-toggle span {
  width: 26px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), background var(--dur) var(--ease);
}
.navbar.scrolled .nav-toggle span { background: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 22s ease-out forwards; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(12,10,9,0.82) 0%, rgba(12,10,9,0.45) 55%, rgba(12,10,9,0.25) 100%),
    linear-gradient(to top, rgba(12,10,9,0.7) 0%, rgba(12,10,9,0) 45%);
}
@keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1); } }

.hero-content { position: relative; z-index: 1; max-width: 760px; padding-block: 7rem 4rem; }
.hero-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.8rem, 8.5vw, 6.2rem);
  line-height: 1.02; letter-spacing: -0.03em; margin-bottom: 1.4rem;
}
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255,255,255,0.88); max-width: 52ch; margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }
.hero-rating { display: flex; align-items: center; gap: 0.7rem; font-size: 0.9rem; color: rgba(255,255,255,0.82); }
.stars { color: var(--gold-bright); letter-spacing: 0.15em; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-pill); z-index: 1;
}
.scroll-cue span {
  position: absolute; left: 50%; top: 8px; transform: translateX(-50%);
  width: 4px; height: 8px; background: #fff; border-radius: 2px;
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue { 0% { opacity: 0; top: 8px; } 50% { opacity: 1; } 100% { opacity: 0; top: 22px; } }

/* ============================================================
   MARQUEE — chips infinitos
   ============================================================ */
.marquee-section {
  background: var(--ink);
  padding-block: clamp(1.6rem, 4vw, 2.6rem);
  display: flex; flex-direction: column; gap: 1rem;
  border-block: 1px solid var(--border-dark);
}
.marquee { display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; flex-shrink: 0; gap: 1rem; padding-right: 1rem; will-change: transform; animation: marquee linear infinite; }
.marquee--reverse .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.chip {
  display: inline-flex; align-items: center; gap: 0.6rem; white-space: nowrap;
  padding: 0.7rem 1.5rem; border-radius: var(--radius-pill);
  border: 1px solid rgba(203, 163, 92, 0.4);
  color: var(--paper); background: rgba(255,255,255,0.03);
  font-size: 0.95rem; font-weight: 500; letter-spacing: 0.02em;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.chip:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-bright); flex-shrink: 0; }
.chip:hover::before { background: #fff; }

/* ============================================================
   SERVICIOS
   ============================================================ */
.services-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}
.service-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--card); box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-media { aspect-ratio: 4 / 5; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.service-card:hover .service-media img { transform: scale(1.06); }
.service-body { padding: 1.4rem 1.5rem 1.6rem; }
.service-body h3 { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; margin-bottom: 0.4rem; }
.service-body p { color: var(--muted); font-size: 0.95rem; }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--paper-2); padding-block: clamp(3rem, 6vw, 4.5rem); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; text-align: center; }
.stat-num, .stat-suffix {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 3.6rem); color: var(--ink);
  font-variant-numeric: tabular-nums; line-height: 1;
}
.stat-suffix { color: var(--gold); }
.stat-label { margin-top: 0.6rem; color: var(--muted); font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase; }

/* ============================================================
   PORTAFOLIO — galería masonry
   ============================================================ */
.portfolio { padding-bottom: var(--space-section); }
.gallery {
  columns: 3; column-gap: 1rem;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem); max-width: 1280px; margin-inline: auto;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 1rem; position: relative;
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; transition: transform 600ms var(--ease); }
.gallery-item::after {
  content: attr(data-cat); position: absolute; inset: 0;
  display: flex; align-items: flex-end; padding: 1.1rem 1.2rem;
  color: #fff; font-weight: 600; letter-spacing: 0.02em;
  background: linear-gradient(to top, rgba(12,10,9,0.6), transparent 55%);
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { opacity: 1; }

/* ============================================================
   SOBRE MÍ
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 4/5; object-fit: cover; }
.about-badge {
  position: absolute; right: -10px; bottom: 28px;
  background: var(--ink); color: #fff; padding: 1rem 1.3rem; border-radius: var(--radius);
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
}
.about-badge-num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: var(--gold-bright); line-height: 1; }
.about-badge-text { font-size: 0.78rem; color: var(--muted-light); max-width: 9ch; margin-top: 0.2rem; }
.about-text p { color: var(--muted); margin-top: 1rem; }
.about-list { margin: 1.6rem 0; display: flex; flex-direction: column; gap: 0.7rem; }
.about-list li { display: flex; align-items: center; gap: 0.7rem; color: var(--ink); font-weight: 500; }
.about-list .ic { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.about-text .btn { margin-top: 0.6rem; }

/* SVG icon defaults */
.ic { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testimonials { background: var(--paper-2); }
.testimonial-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.testimonial {
  background: var(--card); border-radius: var(--radius); padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 1rem;
}
.testimonial .stars { font-size: 1.05rem; }
.testimonial blockquote { font-family: var(--font-display); font-size: 1.18rem; font-style: italic; line-height: 1.5; color: var(--ink); }
.testimonial figcaption { display: flex; flex-direction: column; }
.testimonial figcaption strong { font-weight: 600; }
.testimonial figcaption span { color: var(--muted); font-size: 0.85rem; }

/* ============================================================
   CONTACTO
   ============================================================ */
.contact { background: var(--ink); color: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.contact .section-title { color: #fff; }
.contact-lead { color: var(--muted-light); margin-top: 1rem; max-width: 46ch; }
.contact-info { margin: 2rem 0; display: flex; flex-direction: column; gap: 1rem; }
.contact-info li { display: flex; align-items: center; gap: 0.9rem; color: var(--paper); }
.contact-info .ic { width: 22px; height: 22px; color: var(--gold-bright); flex-shrink: 0; }
.contact-info a:hover { color: var(--gold-bright); }

.socials { display: flex; gap: 0.8rem; }
.social {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.social .ic { width: 20px; height: 20px; }
.social:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }

/* Form */
.contact-form {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark);
  border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.2rem);
  display: flex; flex-direction: column; gap: 1.1rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { font-size: 0.85rem; font-weight: 500; color: var(--paper); letter-spacing: 0.02em; }
.req { color: var(--gold-bright); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06); border: 1px solid var(--border-dark);
  color: #fff; font: inherit; font-size: 0.95rem; min-height: 48px;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.4); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-bright); background: rgba(255,255,255,0.1);
}
.field select option { color: #111; }
.field.invalid input, .field.invalid textarea { border-color: #E07A5F; }
.error { color: #F0A38C; font-size: 0.8rem; min-height: 1em; }
.form-success {
  background: rgba(203,163,92,0.16); border: 1px solid var(--gold-bright);
  color: var(--gold-soft); padding: 0.9rem 1rem; border-radius: var(--radius-sm);
  text-align: center; font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink-deep); color: var(--muted-light); padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.footer-logo { border-radius: 50%; margin-bottom: 1rem; }
.footer-brand p { max-width: 30ch; font-size: 0.92rem; }
.footer-col h4 { color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-bottom: 1rem; }
.footer-col a, .footer-col span { display: block; color: var(--muted-light); font-size: 0.92rem; padding-block: 0.3rem; transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-dark);
  font-size: 0.82rem; color: #6b6259;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.to-top {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: var(--z-totop);
  width: 50px; height: 50px; border-radius: 50%; background: var(--gold); color: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.to-top svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { background: #8c6309; transform: translateY(-3px); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: var(--z-lightbox);
  background: rgba(12,10,9,0.92); backdrop-filter: blur(6px);
  display: grid; place-items: center; padding: 4rem 1rem;
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.lightbox.open { opacity: 1; }
.lightbox[hidden] { display: none; }
.lb-img { max-width: min(92vw, 1100px); max-height: 84vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lb-close, .lb-nav {
  position: absolute; color: #fff; width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2); transition: background var(--dur) var(--ease);
}
.lb-close svg, .lb-nav svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,0.25); }
.lb-close { top: 1.4rem; right: 1.4rem; }
.lb-prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.4rem; top: 50%; transform: translateY(-50%); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .gallery { columns: 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); z-index: 1;
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem;
    background: var(--paper); padding: 5.5rem 2rem 2rem; box-shadow: var(--shadow-lg);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    transform: translateX(100%); transition: transform var(--dur) var(--ease);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { color: var(--ink); font-size: 1.1rem; }
  .nav-link::after { background: var(--gold); }
  .nav-cta { background: var(--gold); color: #fff; }
  body.nav-open { overflow: hidden; }
  body.nav-open::after { content: ""; position: fixed; inset: 0; background: rgba(12,10,9,0.5); z-index: calc(var(--z-nav) - 1); }
  .nav-toggle.active span { background: var(--ink); }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; margin-inline: auto; order: -1; }
  .field-row { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
  .gallery { columns: 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 auto; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none !important; }
  .hero-media img { animation: none !important; transform: none; }
}
