/* =============================================================
   1. Tokens — Blanco Puro & Dorado
   ============================================================= */
:root {
  --bg:        #ffffff;
  --bg-2:      #f7f7f5;
  --bg-3:      #f2f0ed;
  --bg-card:   #ffffff;
  --ink:       #1a1a1a;
  --ink-soft:  #3a3a3a;
  --ink-mute:  #888880;

  --gold:      #c9a84c;
  --gold-2:    #dfc06a;
  --gold-3:    #a07830;
  --gold-l:    rgba(201,168,76,.10);
  --gold-line: rgba(201,168,76,.22);

  --sans:   'Manrope', system-ui, sans-serif;
  --serif:  'Cormorant Garamond', Georgia, serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.09);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.10);
  --glow-gold: 0 0 32px rgba(201,168,76,.12);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1,h2,h3,h4 { text-wrap: balance; line-height: 1.1; }
ul[role="list"] { list-style: none; padding: 0; }
::selection { background: var(--gold); color: #fff; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -120px; left: 1rem;
  padding: .6rem 1.2rem; background: var(--ink); color: #fff;
  z-index: 10000; border-radius: 4px; font-weight: 600;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }
.container {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.section { padding-block: clamp(5rem, 10vw, 8rem); }
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Custom Cursor
   ============================================================= */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  display: none; opacity: 0;
  transition: opacity .25s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; will-change: transform;
}
.cursor-dot { width: 5px; height: 5px; margin: -2.5px; background: var(--gold); border-radius: 50%; }
.cursor-ring {
  width: 28px; height: 28px; margin: -14px;
  border: 1.5px solid var(--gold); border-radius: 50%;
  transition: width .3s var(--ease-out), height .3s var(--ease-out), margin .3s var(--ease-out);
}
.cursor.is-interactive .cursor-ring { width: 44px; height: 44px; margin: -22px; }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* =============================================================
   5. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 9998;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  animation: splashOut 4.5s forwards;
  pointer-events: none;
}
.splash-logo-wrap {
  display: flex; flex-direction: column; align-items: center;
  animation: splashFade 1s .3s var(--ease-out) both;
}
.splash-logo-wrap img { width: clamp(160px, 22vw, 220px); }
@keyframes splashFade {
  from { opacity: 0; transform: scale(.94); }
  to   { opacity: 1; transform: none; }
}
@keyframes splashOut {
  0%,70%  { opacity: 1; pointer-events: all; }
  90%     { opacity: 0; }
  100%    { opacity: 0; pointer-events: none; }
}

/* =============================================================
   6. NAV
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 5vw, 3rem);
  transition: background .35s, box-shadow .35s, padding .35s;
}
.nav.is-solid {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,.07);
  padding-block: .75rem;
}
.nav-logo { display: flex; align-items: center; transition: opacity .2s; }
.nav-logo:hover { opacity: .75; }
.nav-logo img { height: 48px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none; padding: 0;
}
.nav-links a {
  font-size: .8rem; font-weight: 500; letter-spacing: .1em;
  color: var(--ink-mute); text-transform: uppercase;
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav-links a:hover { color: var(--gold-3); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  padding: .5rem 1.4rem !important; background: var(--ink) !important;
  color: #fff !important; border-radius: 2px !important;
  font-size: .78rem !important; letter-spacing: .1em !important;
  transition: background .2s, transform .2s var(--ease-bounce) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-3) !important; transform: scale(1.04) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }

/* =============================================================
   7. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .8rem 2rem; border-radius: 2px;
  font-family: var(--sans); font-size: .82rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  transition: transform .25s var(--ease-bounce), background .2s, box-shadow .2s, color .2s, border-color .2s;
}
.btn:hover { transform: scale(1.03); }
.btn:active { transform: scale(.98); }
.btn-primary {
  background: var(--ink); color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn-primary:hover { background: var(--gold-3); box-shadow: 0 6px 24px rgba(160,120,48,.25); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid rgba(0,0,0,.14);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-3); background: var(--gold-l); }
.btn-lg { padding: 1rem 2.5rem; font-size: .88rem; }

/* =============================================================
   8. Hero
   ============================================================= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 7rem;
  background: #fff;
}

/* Very subtle warm tint behind hero */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 55% 55% at 12% 25%, rgba(201,168,76,.07) 0%, transparent 70%),
    radial-gradient(ellipse 45% 50% at 88% 75%, rgba(201,168,76,.05) 0%, transparent 70%);
}

/* Floating orbs */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.orb-1 {
  width: 480px; height: 480px; top: -120px; left: -180px;
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 70%);
  animation: orbFloat 20s ease-in-out infinite alternate;
}
.orb-2 {
  width: 360px; height: 360px; bottom: -80px; right: -100px;
  background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 70%);
  animation: orbFloat 26s ease-in-out infinite alternate-reverse;
}
@keyframes orbFloat {
  from { transform: translate(0,0); }
  to   { transform: translate(14px,-18px); }
}

/* Hero corner ornaments */
.hero-ornament { position: absolute; z-index: 1; pointer-events: none; opacity: .25; }
.hero-ornament-tl { top: 5.5rem; left: 2rem; }
.hero-ornament-br { bottom: 2.5rem; right: 2rem; transform: rotate(180deg); }

.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 760px;
  padding-inline: clamp(1.25rem, 5vw, 2rem);
}
.hero-logo {
  margin: 0 auto 2rem;
  width: clamp(180px, 28vw, 280px);
  opacity: 0; animation: fadeUp .9s .4s var(--ease-out) forwards;
}
.hero-eyebrow {
  font-size: .73rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-3); font-weight: 600; margin-bottom: .6rem;
  opacity: 0; animation: fadeUp .8s .75s var(--ease-out) forwards;
}
/* Gold rule */
.hero-rule {
  display: flex; align-items: center; justify-content: center; gap: .7rem;
  margin-bottom: 1.2rem;
  opacity: 0; animation: fadeUp .7s .85s var(--ease-out) forwards;
}
.hero-rule::before, .hero-rule::after {
  content: ''; width: 55px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-rule::after { background: linear-gradient(90deg, var(--gold), transparent); }
.hero-rule-diamond { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }

.hero-title {
  font-family: var(--serif); font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 300; color: var(--ink); margin-bottom: 1rem; letter-spacing: .01em;
  opacity: 0; animation: fadeUp .9s 1s var(--ease-out) forwards;
}
.hero-title em { font-style: italic; color: var(--gold-3); }
.hero-sub {
  font-size: clamp(.9rem, 2.5vw, 1.05rem); color: var(--ink-mute);
  line-height: 1.8; max-width: 460px; margin: 0 auto 2.5rem;
  opacity: 0; animation: fadeUp .8s 1.15s var(--ease-out) forwards;
}
.hero-ctas {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem;
  opacity: 0; animation: fadeUp .8s 1.3s var(--ease-out) forwards;
}
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s 1.45s var(--ease-out) forwards;
}
.stat { text-align: center; }
.stat-num {
  display: block; font-family: var(--serif); font-size: 2rem;
  font-weight: 300; color: var(--gold-3); line-height: 1;
}
.stat-label { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.stat-divider { width: 1px; height: 32px; background: rgba(0,0,0,.1); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* =============================================================
   9. Marquee
   ============================================================= */
.marquee-strip {
  background: var(--ink); color: rgba(255,255,255,.5);
  overflow: hidden; padding-block: .8rem;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500;
}
.marquee-inner { display: flex; width: max-content; animation: marqueeScroll 32s linear infinite; }
.marquee-inner span { color: var(--gold); }
.marquee-inner:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================================
   10. Section shared
   ============================================================= */
.section-header { text-align: center; margin-bottom: clamp(3rem, 6vw, 4.5rem); }
.section-eyebrow {
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-3); font-weight: 600; margin-bottom: .75rem;
}
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300; color: var(--ink); margin-bottom: .75rem;
}
.section-title em { font-style: italic; color: var(--gold-3); }
.section-sub { color: var(--ink-mute); max-width: 480px; margin-inline: auto; font-size: .95rem; }

/* =============================================================
   11. Services
   ============================================================= */
.services { background: var(--bg-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 4px; padding: 2.25rem 2rem;
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s, border-color .4s;
  cursor: default;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .4s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold-line); }
.service-card:hover::before { opacity: 1; }
.card-numeral {
  position: absolute; top: 1.25rem; right: 1.5rem;
  font-family: var(--serif); font-size: .88rem;
  color: var(--gold); opacity: .3; letter-spacing: .05em;
  transition: opacity .3s;
}
.service-card:hover .card-numeral { opacity: .65; }
.service-card::after {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 2px; background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .4s;
}
.service-card:hover::after { opacity: 1; }
.card-icon-wrap {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,168,76,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; background: var(--gold-l);
  transition: border-color .3s, background .3s;
}
.service-card:hover .card-icon-wrap { border-color: var(--gold); background: rgba(201,168,76,.15); }
.card-icon-wrap svg {
  width: 20px; height: 20px;
  stroke: var(--gold-3); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.card-title {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
  color: var(--ink); margin-bottom: .55rem;
}
.card-desc { font-size: .88rem; color: var(--ink-mute); line-height: 1.7; }
.card-line {
  position: absolute; bottom: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold-3), var(--gold));
  transition: width .5s var(--ease-out);
}
.service-card:hover .card-line { width: 100%; }

/* =============================================================
   12. About
   ============================================================= */
.about { background: var(--bg); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem); align-items: center;
}
.about-visual { position: relative; }

/* White card that shows logo as designed */
.about-img-frame {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: center;
  min-height: 420px;
  transition: box-shadow .5s, border-color .4s;
}
.about-img-frame:hover { box-shadow: var(--shadow-lg), var(--glow-gold); border-color: var(--gold-line); }
.about-img-frame img { width: 100%; max-width: 280px; }

.about-badge {
  position: absolute; bottom: 1.5rem; right: -1.2rem;
  background: #fff; border: 1px solid rgba(0,0,0,.08);
  border-radius: 6px; padding: .9rem 1.4rem;
  box-shadow: var(--shadow-md); text-align: center;
}
.badge-num { display: block; font-family: var(--serif); font-size: 1.5rem; color: var(--gold-3); }
.badge-label { font-size: .7rem; color: var(--ink-mute); letter-spacing: .1em; text-transform: uppercase; }

.about-p { color: var(--ink-mute); margin-bottom: 1.25rem; font-size: .98rem; line-height: 1.8; }
.about-pillars { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1rem; margin-top: 1.75rem; }
.pillar {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(0,0,0,.07); border-radius: 4px; background: var(--bg-2);
  transition: border-color .3s, box-shadow .3s;
}
.pillar:hover { border-color: var(--gold-line); box-shadow: var(--shadow-sm); }
.pillar-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-line); border-radius: 50%; background: var(--gold-l);
}
.pillar-icon svg { width: 15px; height: 15px; stroke: var(--gold-3); fill: none; stroke-width: 1.6; }
.pillar strong { display: block; font-size: .83rem; font-weight: 600; color: var(--ink); margin-bottom: .2rem; letter-spacing: .05em; text-transform: uppercase; }
.pillar p { font-size: .85rem; color: var(--ink-mute); }

/* =============================================================
   13. Testimonials
   ============================================================= */
.testimonials { background: var(--bg-2); }
.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}
.test-card {
  background: #fff; border: 1px solid rgba(0,0,0,.07);
  border-radius: 4px; padding: 2.25rem;
  position: relative;
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.test-card::before {
  content: '\201C'; position: absolute; top: 1rem; right: 1.5rem;
  font-family: var(--serif); font-size: 5rem; color: var(--gold);
  opacity: .08; line-height: 1; pointer-events: none;
}
.test-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.test-stars { color: var(--gold); font-size: .95rem; margin-bottom: 1rem; letter-spacing: .05em; }
.test-quote {
  font-family: var(--serif); font-size: 1.05rem; font-style: italic;
  color: var(--ink-soft); line-height: 1.7; margin-bottom: 1.25rem;
}
.test-author { font-size: .78rem; color: var(--ink-mute); letter-spacing: .1em; text-transform: uppercase; }
.test-cta-note { text-align: center; margin-top: 2.5rem; }
.link-underline {
  font-size: .85rem; color: var(--gold-3); font-weight: 500;
  border-bottom: 1px solid var(--gold-line); padding-bottom: 2px; letter-spacing: .06em;
  transition: color .2s, border-color .2s;
}
.link-underline:hover { color: var(--gold); border-color: var(--gold); }

/* =============================================================
   14. Contact — dark section for contrast
   ============================================================= */
.contact { background: var(--ink); position: relative; overflow: hidden; }
.contact-mesh {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.05) 1px, transparent 1px);
  background-size: 56px 56px;
}
.contact-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,168,76,.07) 0%, transparent 70%);
  pointer-events: none;
}
.contact-inner { position: relative; z-index: 1; text-align: center; }
.contact .section-eyebrow { color: var(--gold); }
.contact .section-title { color: #f5f5f3; }
.contact .section-title em { color: var(--gold); }
.contact-sub { color: rgba(255,255,255,.45); max-width: 520px; margin: 0 auto 2.5rem; font-size: .98rem; line-height: 1.8; }
.contact .btn-primary { background: var(--gold); color: var(--ink); box-shadow: 0 4px 20px rgba(201,168,76,.3); }
.contact .btn-primary:hover { background: var(--gold-2); }
.contact .btn-ghost { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.15); }
.contact .btn-ghost:hover { border-color: var(--gold); background: rgba(201,168,76,.1); color: var(--gold); }
.contact-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem; flex-wrap: wrap; margin-bottom: 3rem;
}
.contact-info-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(201,168,76,.18); border-radius: 4px;
  background: rgba(255,255,255,.03);
  max-width: 700px; margin-inline: auto;
}
.info-item { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: rgba(255,255,255,.4); }
.info-icon { color: var(--gold); }
.info-item a { color: rgba(255,255,255,.4); transition: color .2s; }
.info-item a:hover { color: var(--gold); }

/* =============================================================
   15. Footer
   ============================================================= */
.footer {
  background: #111;
  border-top: 1px solid rgba(201,168,76,.12);
  padding-block: 3.5rem; text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: .85rem; }

/* Logo in footer on dark bg — white version */
.footer-logo {
  width: 140px; margin-bottom: .25rem;
  filter: brightness(0) invert(1);
  opacity: .85;
}
.footer-tagline { font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--gold); }
.footer-divider { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.footer-loc { font-size: .8rem; color: rgba(255,255,255,.28); letter-spacing: .04em; }
.footer-gmaps {
  font-size: .8rem; color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,.2); padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.footer-gmaps:hover { color: var(--gold-2); }
.footer-ig {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; color: rgba(255,255,255,.3); transition: color .2s;
}
.footer-ig:hover { color: var(--gold); }
.footer-copy { font-size: .72rem; color: rgba(255,255,255,.15); margin-top: .25rem; letter-spacing: .06em; }

/* =============================================================
   16. Responsive
   ============================================================= */
@media (max-width: 720px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: .5rem; }
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: rgba(255,255,255,.98); z-index: 998;
    flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: flex; z-index: 999; }
  .hero-ornament { display: none; }
  .contact-info-strip { gap: 1.25rem; flex-direction: column; }
  .stat-divider { height: 24px; }
}
@media (max-width: 540px) {
  .hero-ctas, .contact-actions { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { display: none; }
}

/* =============================================================
   17. Reduced-motion
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .orb-1, .orb-2, .marquee-inner { animation: none; }
}

/* =============================================================
   GALLERY
   ============================================================= */
.gallery { background: var(--bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

/* Masonry-like layout */
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 1; }
.gallery-item:nth-child(2) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 1; }
.gallery-item:nth-child(4) { grid-column: span 6; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 6; grid-row: span 1; }

.gallery-item {
  position: relative; overflow: hidden; border-radius: 6px;
  cursor: pointer;
  aspect-ratio: 1 / 1.05;
  background: var(--bg-3);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }

/* Overlay on hover */
.gallery-item::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 50%);
  opacity: 0; transition: opacity .35s;
  display: flex; align-items: flex-end;
  padding: 1.25rem;
  font-size: .82rem; color: #fff; font-weight: 500; letter-spacing: .06em;
}
.gallery-item:hover::after { opacity: 1; }

.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .85rem 1.1rem;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
  color: #fff; font-size: .78rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  transform: translateY(100%); transition: transform .35s var(--ease-out);
}
.gallery-item:hover .gallery-caption { transform: none; }

/* Zoom icon on hover */
.gallery-item::before {
  content: '+';
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.9); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 300; line-height: 1;
  opacity: 0; transform: scale(.7);
  transition: opacity .3s, transform .3s var(--ease-bounce);
}
.gallery-item:hover::before { opacity: 1; transform: scale(1); }

@media (max-width: 720px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .gallery-item:nth-child(1) { grid-column: span 2 !important; }
}

/* =============================================================
   LIGHTBOX
   ============================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(10,8,6,.94);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  animation: lbIn .25s var(--ease-out);
}
.lightbox[hidden] { display: none; }
@keyframes lbIn {
  from { opacity: 0; } to { opacity: 1; }
}
.lightbox-inner {
  max-width: min(90vw, 900px);
  max-height: 90vh;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.lightbox-inner img {
  max-width: 100%; max-height: 80vh;
  border-radius: 4px; object-fit: contain;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
}
.lightbox-caption {
  color: rgba(255,255,255,.55); font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
}
.lightbox-close {
  position: fixed; top: 1.5rem; right: 1.5rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); transform: scale(1.1); }
.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .3s var(--ease-bounce);
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover { background: rgba(255,255,255,.2); transform: translateY(-50%) scale(1.1); }
.lightbox-next:hover { background: rgba(255,255,255,.2); transform: translateY(-50%) scale(1.1); }

/* =============================================================
   VIDEOS
   ============================================================= */
.videos { background: var(--bg-2); }

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.video-card {
  position: relative; border-radius: 6px; overflow: hidden;
  background: #000; aspect-ratio: 9/16;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .35s, transform .35s var(--ease-out);
}
.video-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.video-card video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* Play button overlay */
.video-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.28);
  transition: background .25s;
}
.video-play svg {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  border-radius: 50%; padding: .75rem;
  transition: transform .3s var(--ease-bounce), background .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.video-card:hover .video-play { background: rgba(0,0,0,.1); }
.video-card:hover .video-play svg { transform: scale(1.12); background: #fff; }
.video-card.is-playing .video-play { opacity: 0; pointer-events: none; }
.video-play { cursor: pointer; }

@media (max-width: 720px) {
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .videos-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
}

/* =============================================================
   LANG SWITCHER
   ============================================================= */
.lang-switcher {
  display: flex;
  border: 1.5px solid var(--gold-line);
  border-radius: 3px;
  overflow: hidden;
  margin-left: 1rem;
}
.lang-btn {
  padding: .38rem .75rem;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .08em;
  color: var(--ink-mute);
  background: transparent;
  transition: background .2s, color .2s;
  line-height: 1;
}
.lang-btn:hover { color: var(--gold-3); }
.lang-btn.is-active {
  background: var(--gold);
  color: #fff;
}
.lang-btn + .lang-btn {
  border-left: 1.5px solid var(--gold-line);
}

@media (max-width: 720px) {
  .lang-switcher {
    position: fixed;
    bottom: 1.25rem; right: 1.25rem;
    z-index: 990;
    background: #fff;
    box-shadow: var(--shadow-md);
    border-color: var(--gold-line);
  }
  .lang-btn { padding: .5rem .9rem; font-size: .78rem; }
}
