/* ==========================================================================
   Star Musical Entertainer — design system
   Brand colours are taken directly from the logo: the red of the crown and
   wordmark, the deep green of the flourishes, and a gold accent for the
   premium layer. Everything else is derived from those three.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --red:          #F03409;
  --red-dark:     #C22706;
  --red-light:    #FF5B33;
  --green:        #0E5C4A;
  --green-light:  #15806A;
  --gold:         #D4A542;
  --gold-light:   #E8C87A;
  --gold-dark:    #A87C28;

  /* Surfaces */
  --ink:          #150A08;
  --ink-2:        #1F0F0C;
  --ink-3:        #2A1512;
  --wine:         #4A120C;
  --wine-2:       #6B1A10;

  /* Text */
  --cream:        #FDF7EF;
  --sand:         #E8D7C7;
  --muted:        #B39A8B;
  --muted-dark:   #8A7265;

  /* Semantic */
  --success:      #1C8A5F;
  --danger:       #C62828;
  --warning:      #D98A0B;

  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent:  'Marcellus', 'Playfair Display', serif;

  /* Spacing scale */
  --sp-1: .25rem;  --sp-2: .5rem;   --sp-3: .75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;    --sp-7: 3rem;    --sp-8: 4rem;
  --sp-9: 6rem;    --sp-10: 8rem;

  /* Layout */
  --container:    1240px;
  --container-nar: 900px;
  --radius:       14px;
  --radius-sm:    9px;
  --radius-lg:    22px;

  /* Effects */
  --shadow-sm:  0 2px 8px rgba(0,0,0,.16);
  --shadow:     0 10px 30px rgba(0,0,0,.28);
  --shadow-lg:  0 24px 60px rgba(0,0,0,.42);
  --glow-gold:  0 0 30px rgba(212,165,66,.28);

  --ease:       cubic-bezier(.22,.61,.36,1);
  --dur:        .38s;

  --header-h:   78px;
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Offset anchor targets so the sticky header never covers a heading. */
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.72;
  color: var(--sand);
  background: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, svg { max-width: 100%; display: block; }
img { height: auto; }

a { color: var(--gold); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--gold-light); }

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

ul, ol { margin: 0; padding: 0; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--cream);
}

p { margin: 0 0 var(--sp-4); }
p:last-child { margin-bottom: 0; }

/* Visible focus for keyboard users only. */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--red); color: #fff; }

/* --------------------------------------------------------------------------
   3. Typography scale — fluid, so it reads well from 360px to 1920px
   -------------------------------------------------------------------------- */
.h-hero    { font-size: clamp(2.4rem, 6.2vw, 5rem); }
.h-1       { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.h-2       { font-size: clamp(1.65rem, 3.2vw, 2.6rem); }
.h-3       { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }
.h-4       { font-size: clamp(1.1rem, 1.6vw, 1.3rem); }

.lead      { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--muted); }
.small     { font-size: .875rem; }
.tiny      { font-size: .78rem; }

.text-gold  { color: var(--gold); }
.text-red   { color: var(--red); }
.text-cream { color: var(--cream); }
.text-muted { color: var(--muted); }

/* Gradient wordmark treatment used in headings. */
.text-grad {
  background: linear-gradient(100deg, var(--gold-light) 0%, var(--gold) 45%, var(--red-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.container-narrow { max-width: var(--container-nar); }

.section { padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; }
.section-sm { padding-block: clamp(2.5rem, 5vw, 4rem); }

/* Alternating section surfaces */
.bg-ink    { background: var(--ink); }
.bg-ink-2  { background: var(--ink-2); }
.bg-wine   { background: linear-gradient(160deg, var(--wine) 0%, var(--ink-2) 78%); }
.bg-deep   { background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%); }

/* Subtle repeating texture that echoes the logo's ornamental feel. */
.bg-pattern::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(240,52,9,.09), transparent 46%),
    radial-gradient(circle at 88% 76%, rgba(212,165,66,.07), transparent 46%);
  pointer-events: none;
}

.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }

.flex      { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: var(--sp-2); } .gap-3 { gap: var(--sp-3); }
.gap-4 { gap: var(--sp-4); } .gap-5 { gap: var(--sp-5); }

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-4 { margin-top: var(--sp-4); } .mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); } .mb-4 { margin-bottom: var(--sp-4); }
.mb-5 { margin-bottom: var(--sp-5); } .mb-6 { margin-bottom: var(--sp-6); }

/* --------------------------------------------------------------------------
   5. Section headings
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-accent);
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: .45rem 1.1rem;
  border: 1px solid rgba(212,165,66,.32);
  border-radius: 100px;
  background: rgba(212,165,66,.07);
  margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
}

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: var(--sp-3); }

/* Ornamental divider echoing the logo flourish */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-3); margin: var(--sp-5) 0;
}
.divider::before, .divider::after {
  content: ''; height: 1px; flex: 1; max-width: 90px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.divider::after { background: linear-gradient(90deg, var(--gold), transparent); }
.divider span { color: var(--gold); font-size: 1.05rem; }

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: .92rem 1.9rem;
  border: 1px solid transparent;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .93rem;
  letter-spacing: .015em;
  text-align: center;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(240,52,9,.3);
}
.btn-primary:hover { color: #fff; box-shadow: 0 12px 32px rgba(240,52,9,.44); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #2A1512;
  box-shadow: 0 8px 24px rgba(212,165,66,.26);
}
.btn-gold:hover { color: #2A1512; box-shadow: 0 12px 32px rgba(212,165,66,.4); }

.btn-green {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(14,92,74,.3);
}
.btn-green:hover { color: #fff; }

.btn-outline {
  background: transparent;
  border-color: rgba(232,215,199,.3);
  color: var(--cream);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,165,66,.08);
}

.btn-ghost {
  background: rgba(255,255,255,.05);
  color: var(--cream);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.11); color: #fff; }

.btn-sm { padding: .6rem 1.25rem; font-size: .84rem; }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

.btn-icon { width: 42px; height: 42px; padding: 0; border-radius: 50%; }

/* --------------------------------------------------------------------------
   7. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              backdrop-filter var(--dur) var(--ease);
}
.site-header.scrolled {
  background: rgba(21,10,8,.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,.44);
  border-bottom: 1px solid rgba(212,165,66,.14);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); width: 100%; }

.brand { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }

/*
 * The crest is roughly a fifth dark green, which measures 1.15:1 against the
 * hero red and 2.45:1 against the scrolled header — far below the 3:1 minimum
 * for graphics, so those flourishes simply vanish. A light badge behind the
 * mark lifts the green to 7.9:1 and makes the whole crest legible.
 */
.brand-badge {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  padding: 5px;
  border-radius: 15px;
  background: linear-gradient(150deg, #FFFFFF 0%, #FDF7EF 100%);
  border: 1px solid rgba(212,165,66,.45);
  box-shadow: 0 4px 14px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.9);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.brand:hover .brand-badge {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,.34), 0 0 0 3px rgba(212,165,66,.18);
}

/* The header mark is the square crest, so height and width match. */
.brand-badge img,
.brand img { height: 100%; width: 100%; object-fit: contain; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.14; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .01em;
}
.brand-sub {
  font-family: var(--font-accent);
  font-size: .6rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Primary navigation */
.nav { display: flex; align-items: center; gap: var(--sp-1); }
.nav a {
  position: relative;
  padding: .55rem .82rem;
  font-size: .89rem;
  font-weight: 600;
  color: var(--sand);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.nav a:hover, .nav a.active { color: var(--gold); }
.nav a.active::after {
  content: '';
  position: absolute;
  left: .82rem; right: .82rem; bottom: .28rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

/* Dropdown for the services menu */
.nav-item { position: relative; }
.nav-drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 268px;
  background: var(--ink-2);
  border: 1px solid rgba(212,165,66,.18);
  border-radius: var(--radius);
  padding: var(--sp-2);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--dur) var(--ease);
}
.nav-item:hover .nav-drop,
.nav-item:focus-within .nav-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop a {
  display: block;
  padding: .58rem .8rem;
  font-size: .86rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
}
.nav-drop a:hover { background: rgba(212,165,66,.1); color: var(--gold); }
.nav-drop a::after { display: none; }

.header-cta { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(212,215,199,.14);
  border-radius: var(--radius-sm);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: linear-gradient(120deg, #3D0D08 0%, #6B1A10 42%, #2A0F0A 100%);
}

/* Layered radial glows give depth without an extra image request. */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 22% 32%, rgba(240,52,9,.42), transparent 62%),
    radial-gradient(ellipse 60% 50% at 82% 68%, rgba(212,165,66,.2), transparent 60%);
}
/* Fine diagonal line texture referencing the logo's engraved feel. */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    115deg, transparent 0 3px, rgba(255,255,255,.022) 3px 4px
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  width: 100%;
}

.hero-content { max-width: 640px; }
.hero h1 { margin-bottom: var(--sp-4); }
.hero-title-sub {
  display: block;
  font-family: var(--font-accent);
  font-size: clamp(.9rem, 1.8vw, 1.2rem);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: var(--sp-3);
}
.hero-text {
  font-size: clamp(.98rem, 1.4vw, 1.1rem);
  color: rgba(253,247,239,.86);
  max-width: 560px;
  margin-bottom: var(--sp-5);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-5); }

.hero-trust { display: flex; flex-wrap: wrap; gap: var(--sp-5); }
.hero-trust-item { display: flex; align-items: center; gap: var(--sp-2); }
.hero-trust-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-trust-label { font-size: .76rem; color: rgba(253,247,239,.66); line-height: 1.3; }

/* Artist cut-out on the right of the hero */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: flex-end; height: 100%; }
.hero-visual img {
  max-height: min(70vh, 580px);
  width: auto;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,.62));
  animation: floatY 7s ease-in-out infinite;
}
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* Decorative rotating ring behind the artist */
.hero-ring {
  position: absolute;
  width: min(420px, 74%);
  aspect-ratio: 1;
  border: 1px dashed rgba(212,165,66,.28);
  border-radius: 50%;
  top: 46%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 44s linear infinite;
}
.hero-ring::after {
  content: '';
  position: absolute; inset: 26px;
  border: 1px solid rgba(240,52,9,.18);
  border-radius: 50%;
}
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* Scrolling service marquee beneath the hero */
.marquee {
  background: linear-gradient(90deg, var(--red-dark), var(--red) 50%, var(--red-dark));
  padding: .9rem 0;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.marquee-track {
  display: flex;
  gap: var(--sp-7);
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: var(--sp-3);
  font-family: var(--font-accent);
  font-size: .8rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(255,255,255,.94);
  white-space: nowrap;
}
.marquee-item::after { content: '✦'; color: rgba(255,255,255,.5); font-size: .7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   9. Cards
   -------------------------------------------------------------------------- */
.card {
  background: linear-gradient(155deg, rgba(42,21,18,.92), rgba(31,15,12,.96));
  border: 1px solid rgba(212,165,66,.16);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,165,66,.42);
  box-shadow: var(--shadow), var(--glow-gold);
}
.card-body { padding: var(--sp-5); flex: 1; display: flex; flex-direction: column; }
.card h3 { margin-bottom: var(--sp-3); }
.card p { color: var(--muted); font-size: .92rem; }
.card-footer { margin-top: auto; padding-top: var(--sp-4); }

/* Service card icon medallion */
.card-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(212,165,66,.2), rgba(240,52,9,.14));
  border: 1px solid rgba(212,165,66,.3);
  margin-bottom: var(--sp-4);
  color: var(--gold);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.card:hover .card-icon {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(140deg, rgba(212,165,66,.32), rgba(240,52,9,.24));
}
.card-icon svg { width: 26px; height: 26px; }

/* Media card with image on top */
.card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--ink-3); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card-media img { transform: scale(1.07); }
.card-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(21,10,8,.86) 0%, transparent 52%);
}

.card-tag {
  position: absolute; top: var(--sp-3); left: var(--sp-3);
  z-index: 2;
  padding: .3rem .8rem;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  background: rgba(240,52,9,.94);
  color: #fff;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.card-link {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: .85rem; font-weight: 700; color: var(--gold);
}
.card-link svg { width: 15px; height: 15px; transition: transform var(--dur) var(--ease); }
.card:hover .card-link svg { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   10. Stats / counters
   -------------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,200px),1fr)); gap: var(--sp-4); }
.stat {
  text-align: center;
  padding: var(--sp-5) var(--sp-4);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(212,165,66,.15);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.stat:hover { border-color: rgba(212,165,66,.4); background: rgba(212,165,66,.05); }
.stat-icon { color: var(--gold); margin-bottom: var(--sp-3); display: flex; justify-content: center; }
.stat-icon svg { width: 30px; height: 30px; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1;
  color: var(--cream);
  margin-bottom: var(--sp-2);
}
.stat-num .suffix { color: var(--red); }
.stat-label { font-size: .82rem; color: var(--muted); letter-spacing: .04em; }

/* --------------------------------------------------------------------------
   11. Gallery
   -------------------------------------------------------------------------- */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: var(--sp-2);
  justify-content: center; margin-bottom: var(--sp-6);
}
.filter-btn {
  padding: .55rem 1.25rem;
  border-radius: 100px;
  border: 1px solid rgba(212,165,66,.26);
  background: transparent;
  color: var(--sand);
  font-size: .85rem;
  font-weight: 600;
  transition: all var(--dur) var(--ease);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 18px rgba(240,52,9,.32);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
  gap: var(--sp-4);
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--ink-3);
  border: 1px solid rgba(212,165,66,.12);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.gallery-item:hover {
  transform: translateY(-5px) scale(1.015);
  border-color: rgba(212,165,66,.45);
  box-shadow: var(--shadow);
}
.gallery-item img, .gallery-item picture { width: 100%; height: 100%; object-fit: cover; }
.gallery-item picture img { transition: transform .8s var(--ease); }
.gallery-item:hover img { transform: scale(1.1); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(21,10,8,.94) 0%, rgba(21,10,8,.24) 52%, transparent 100%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-4);
}
.gallery-item:hover .gallery-overlay, .gallery-item:focus-within .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-size: .95rem; margin-bottom: var(--sp-1); }
.gallery-overlay span { font-size: .74rem; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; }

.gallery-zoom {
  position: absolute; top: var(--sp-3); right: var(--sp-3);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(212,165,66,.94);
  color: var(--ink);
  display: grid; place-items: center;
  transform: scale(.4);
  opacity: 0;
  transition: all var(--dur) var(--ease);
}
.gallery-item:hover .gallery-zoom { transform: scale(1); opacity: 1; }

/* Hidden state used by the JS category filter. */
.gallery-item.is-hidden { display: none; }

/* --------------------------------------------------------------------------
   12. Lightbox
   -------------------------------------------------------------------------- */
.lightbox {
  position: fixed; inset: 0;
  z-index: 3000;
  background: rgba(10,5,4,.97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox.open { display: flex; animation: fadeIn .28s var(--ease); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox-content { position: relative; max-width: 100%; max-height: 100%; text-align: center; }
.lightbox-content img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin-inline: auto;
}
.lightbox-caption { margin-top: var(--sp-4); color: var(--sand); }
.lightbox-caption h4 { margin-bottom: var(--sp-1); }
.lightbox-caption span { font-size: .8rem; color: var(--gold); }

.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  transition: all var(--dur) var(--ease);
  z-index: 2;
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--red); border-color: var(--red); }
.lightbox-close { top: -8px; right: -8px; }
.lightbox-prev { left: clamp(-64px, -5vw, -18px); top: 50%; transform: translateY(-50%); }
.lightbox-next { right: clamp(-64px, -5vw, -18px); top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: absolute; top: -8px; left: 0;
  font-size: .82rem; color: var(--muted);
  background: rgba(0,0,0,.5); padding: .3rem .8rem; border-radius: 100px;
}

/* --------------------------------------------------------------------------
   13. Video module
   -------------------------------------------------------------------------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 330px), 1fr));
  gap: var(--sp-5);
}
.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid rgba(212,165,66,.16);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.video-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,165,66,.42);
  box-shadow: var(--shadow);
}
.video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #000; cursor: pointer; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.video-card:hover .video-thumb img { transform: scale(1.06); }

.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(21,10,8,.34);
  transition: background var(--dur) var(--ease);
}
.video-card:hover .video-play { background: rgba(21,10,8,.18); }
.video-play-btn {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: rgba(240,52,9,.94);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 8px 28px rgba(240,52,9,.5);
  transition: transform var(--dur) var(--ease);
}
.video-card:hover .video-play-btn { transform: scale(1.12); }
/* Pulsing ring to draw the eye to playable media. */
.video-play-btn::before {
  content: '';
  position: absolute;
  width: 66px; height: 66px;
  border-radius: 50%;
  border: 2px solid rgba(240,52,9,.6);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.7); opacity: 0; }
}
.video-play-btn svg { width: 24px; height: 24px; margin-left: 3px; }

.video-info { padding: var(--sp-4); }
.video-info h3 { font-size: 1.02rem; margin-bottom: var(--sp-2); }
.video-info p { font-size: .86rem; color: var(--muted); margin: 0; }

/* Inline player replaces the thumbnail once activated. */
.video-player { width: 100%; aspect-ratio: 16/9; background: #000; display: block; }

/* --------------------------------------------------------------------------
   14. Testimonials
   -------------------------------------------------------------------------- */
.testimonial {
  background: linear-gradient(155deg, rgba(42,21,18,.9), rgba(31,15,12,.95));
  border: 1px solid rgba(212,165,66,.18);
  border-radius: var(--radius);
  padding: var(--sp-5);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 8px; right: 22px;
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 1;
  color: rgba(212,165,66,.16);
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: var(--sp-3); color: var(--gold); }
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial-text { font-size: .93rem; color: var(--sand); font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: var(--sp-3); margin-top: var(--sp-4); padding-top: var(--sp-4); border-top: 1px solid rgba(212,165,66,.14); }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--cream); font-size: .92rem; }
.testimonial-meta { font-size: .76rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   15. Process steps
   -------------------------------------------------------------------------- */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,230px),1fr)); gap: var(--sp-5); }
.process-step { position: relative; text-align: center; padding: var(--sp-4); }
.process-num {
  width: 62px; height: 62px;
  margin: 0 auto var(--sp-4);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(212,165,66,.1);
  border: 2px solid rgba(212,165,66,.34);
  position: relative;
  z-index: 2;
}
.process-step h3 { font-size: 1.06rem; margin-bottom: var(--sp-2); }
.process-step p { font-size: .87rem; color: var(--muted); }
/* Connector line between steps on wide screens only. */
@media (min-width: 960px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 31px; left: calc(50% + 40px); right: calc(-50% + 40px);
    height: 1px;
    background: linear-gradient(90deg, rgba(212,165,66,.42), rgba(212,165,66,.1));
  }
}

/* --------------------------------------------------------------------------
   16. Forms
   -------------------------------------------------------------------------- */
.form-group { margin-bottom: var(--sp-4); }
.form-label {
  display: block;
  margin-bottom: var(--sp-2);
  font-size: .85rem;
  font-weight: 600;
  color: var(--sand);
}
.form-label .req { color: var(--red); }

.form-control {
  width: 100%;
  padding: .82rem 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,165,66,.2);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-size: .93rem;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.form-control::placeholder { color: var(--muted-dark); }
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.07);
}
.form-control.is-invalid { border-color: var(--danger); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }
/* Native select options need an explicit dark background on Windows. */
select.form-control option { background: var(--ink-2); color: var(--cream); }

.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,220px),1fr)); gap: var(--sp-4); }
.form-error { color: #ff8a75; font-size: .8rem; margin-top: var(--sp-1); }
.form-note { font-size: .8rem; color: var(--muted); }

.alert {
  padding: var(--sp-4);
  border-radius: var(--radius-sm);
  margin-bottom: var(--sp-4);
  font-size: .9rem;
  border: 1px solid;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}
.alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.alert-success { background: rgba(28,138,95,.14); border-color: rgba(28,138,95,.5); color: #8ff0c4; }
.alert-error   { background: rgba(198,40,40,.14); border-color: rgba(198,40,40,.5); color: #ffb0a5; }
.alert-info    { background: rgba(212,165,66,.12); border-color: rgba(212,165,66,.42); color: var(--gold-light); }

/* --------------------------------------------------------------------------
   17. Page header (interior pages)
   -------------------------------------------------------------------------- */
.page-header {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem));
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
  background: linear-gradient(130deg, #3D0D08 0%, #6B1A10 50%, #2A0F0A 100%);
  overflow: hidden;
  text-align: center;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 62% 60% at 50% 42%, rgba(240,52,9,.34), transparent 66%);
}
.page-header::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, transparent 0 3px, rgba(255,255,255,.02) 3px 4px);
}
.page-header > * { position: relative; z-index: 2; }
.page-header h1 { margin-bottom: var(--sp-3); }
.page-header p { max-width: 640px; margin-inline: auto; color: rgba(253,247,239,.8); }

.breadcrumb {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--sp-2); align-items: center;
  font-size: .82rem; margin-top: var(--sp-4);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(253,247,239,.5); }
.breadcrumb .sep { color: rgba(212,165,66,.5); }

/* --------------------------------------------------------------------------
   18. Content / prose
   -------------------------------------------------------------------------- */
.prose { max-width: 76ch; }
.prose h2 { font-size: clamp(1.4rem,2.6vw,1.9rem); margin: var(--sp-6) 0 var(--sp-3); }
.prose h3 { font-size: clamp(1.15rem,2vw,1.4rem); margin: var(--sp-5) 0 var(--sp-3); color: var(--gold-light); }
.prose p { color: var(--sand); }
.prose ul, .prose ol { margin: 0 0 var(--sp-4); padding-left: 1.35rem; }
.prose li { margin-bottom: var(--sp-2); color: var(--sand); }
.prose ul li::marker { color: var(--gold); }
.prose blockquote {
  margin: var(--sp-5) 0;
  padding: var(--sp-4) var(--sp-5);
  border-left: 3px solid var(--gold);
  background: rgba(212,165,66,.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
}
.prose img { border-radius: var(--radius); margin: var(--sp-5) 0; }
.prose strong { color: var(--cream); font-weight: 700; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

/* Bulleted highlight list used on service detail pages. */
.check-list { list-style: none; padding: 0; display: grid; gap: var(--sp-3); }
.check-list li {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  font-size: .92rem; color: var(--sand);
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 21px; height: 21px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(212,165,66,.16);
  border: 1px solid rgba(212,165,66,.42);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4A542' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* --------------------------------------------------------------------------
   19. Accordion (FAQ)
   -------------------------------------------------------------------------- */
.accordion { display: grid; gap: var(--sp-3); }
.accordion-item {
  border: 1px solid rgba(212,165,66,.18);
  border-radius: var(--radius);
  background: rgba(42,21,18,.55);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}
.accordion-item.open { border-color: rgba(212,165,66,.46); }
.accordion-trigger {
  width: 100%;
  padding: var(--sp-4) var(--sp-5);
  background: none;
  border: 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  font-size: .98rem;
  font-weight: 600;
  color: var(--cream);
  font-family: var(--font-body);
}
.accordion-trigger:hover { color: var(--gold); }
.accordion-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(212,165,66,.4);
  display: grid; place-items: center;
  color: var(--gold);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); background: rgba(212,165,66,.16); }
/* Height animates via max-height; kept generous so long answers are not clipped. */
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}
.accordion-item.open .accordion-panel { max-height: 900px; }
.accordion-body { padding: 0 var(--sp-5) var(--sp-5); color: var(--muted); font-size: .92rem; }

/* --------------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: linear-gradient(180deg, var(--ink-2) 0%, #0E0605 100%);
  border-top: 1px solid rgba(212,165,66,.18);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: var(--sp-7);
}
/*
 * Full lockup on a light plate, for the same reason as the header badge: the
 * green flourishes measure 2.53:1 against the footer background and would be
 * effectively invisible without it.
 */
.footer-logo-plate {
  display: inline-block;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: linear-gradient(150deg, #FFFFFF 0%, #FDF7EF 100%);
  border: 1px solid rgba(212,165,66,.4);
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
  margin-bottom: var(--sp-4);
}
.footer-brand img { width: 190px; height: auto; display: block; }
.footer-about { font-size: .88rem; color: var(--muted); margin-bottom: var(--sp-4); }
.footer h4 {
  font-family: var(--font-accent);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}
.footer-links { list-style: none; display: grid; gap: var(--sp-2); }
.footer-links a { color: var(--muted); font-size: .88rem; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a { transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease); }

.footer-contact { display: grid; gap: var(--sp-3); }
.footer-contact-item { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: .88rem; color: var(--muted); }
.footer-contact-item svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: var(--muted); }
.footer-contact-item a:hover { color: var(--gold); }

.social-links { display: flex; gap: var(--sp-2); margin-top: var(--sp-4); }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(212,165,66,.22);
  color: var(--sand);
  transition: all var(--dur) var(--ease);
}
.social-links a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-3px); }
.social-links svg { width: 17px; height: 17px; }

.footer-bottom {
  border-top: 1px solid rgba(212,165,66,.14);
  padding-block: var(--sp-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--muted-dark);
}
.footer-bottom a { color: var(--muted); }
.footer-legal { display: flex; flex-wrap: wrap; gap: var(--sp-4); }

/* --------------------------------------------------------------------------
   21. Floating action buttons
   -------------------------------------------------------------------------- */
.float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  position: relative;
}
.float-btn:hover { transform: scale(1.1); color: #fff; }
.float-whatsapp { background: #25D366; }
.float-call { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.float-btn svg { width: 26px; height: 26px; }
/* Attention ring on the WhatsApp button. */
.float-whatsapp::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse 2.6s ease-out infinite;
}

.back-to-top {
  position: fixed;
  left: 18px; bottom: 18px;
  z-index: 900;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(42,21,18,.9);
  border: 1px solid rgba(212,165,66,.34);
  color: var(--gold);
  display: grid; place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--dur) var(--ease);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--ink); }

/* --------------------------------------------------------------------------
   22. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: linear-gradient(125deg, var(--wine) 0%, var(--red-dark) 55%, #3D0D08 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.6rem);
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 22% 28%, rgba(212,165,66,.22), transparent 55%);
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { margin-bottom: var(--sp-3); }
.cta-band p { color: rgba(253,247,239,.86); max-width: 620px; margin-inline: auto; margin-bottom: var(--sp-5); }
.cta-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; }

/* --------------------------------------------------------------------------
   23. Blog
   -------------------------------------------------------------------------- */
.post-meta {
  display: flex; flex-wrap: wrap; gap: var(--sp-4);
  font-size: .8rem; color: var(--muted); margin-bottom: var(--sp-3);
}
.post-meta span { display: inline-flex; align-items: center; gap: var(--sp-2); }
.post-meta svg { width: 14px; height: 14px; color: var(--gold); }

.sidebar { display: grid; gap: var(--sp-5); align-content: start; }
.widget {
  background: rgba(42,21,18,.55);
  border: 1px solid rgba(212,165,66,.16);
  border-radius: var(--radius);
  padding: var(--sp-5);
}
.widget h3 {
  font-size: 1rem;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(212,165,66,.18);
}
.widget-list { list-style: none; display: grid; gap: var(--sp-3); }
.widget-list a { color: var(--sand); font-size: .88rem; display: flex; justify-content: space-between; gap: var(--sp-3); }
.widget-list a:hover { color: var(--gold); }
.widget-list .count { color: var(--muted-dark); font-size: .8rem; }

.recent-post { display: flex; gap: var(--sp-3); }
.recent-post img { width: 68px; height: 68px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.recent-post h4 { font-size: .85rem; font-family: var(--font-body); font-weight: 600; line-height: 1.4; }
.recent-post time { font-size: .74rem; color: var(--muted-dark); }

.search-form { display: flex; gap: var(--sp-2); }
.search-form .form-control { flex: 1; }

.tag-list { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.tag {
  padding: .32rem .8rem;
  border-radius: 100px;
  background: rgba(212,165,66,.1);
  border: 1px solid rgba(212,165,66,.24);
  font-size: .76rem;
  color: var(--gold);
}
a.tag:hover { background: var(--gold); color: var(--ink); }

/* --------------------------------------------------------------------------
   24. Pagination
   -------------------------------------------------------------------------- */
.pagination {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--sp-2); margin-top: var(--sp-7);
}
.pagination a, .pagination span {
  min-width: 42px; height: 42px;
  padding-inline: .7rem;
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  font-size: .88rem;
  font-weight: 600;
  border: 1px solid rgba(212,165,66,.22);
  color: var(--sand);
  transition: all var(--dur) var(--ease);
}
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .current {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-color: transparent;
  color: #fff;
}
.pagination .disabled { opacity: .35; pointer-events: none; }

/* --------------------------------------------------------------------------
   25. Map
   -------------------------------------------------------------------------- */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212,165,66,.22);
  aspect-ratio: 16/9;
  background: var(--ink-3);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.3) contrast(1.05); }

/* --------------------------------------------------------------------------
   26. Utilities
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
/* Keyboard skip link, visible only when focused. */
.skip-link {
  position: absolute;
  top: -60px; left: 12px;
  z-index: 2000;
  background: var(--gold);
  color: var(--ink);
  padding: .7rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: var(--ink); }

.empty-state { text-align: center; padding: var(--sp-8) var(--sp-4); color: var(--muted); }
.empty-state svg { width: 52px; height: 52px; color: rgba(212,165,66,.4); margin: 0 auto var(--sp-4); }

/* --------------------------------------------------------------------------
   27. Scroll reveal animations
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
/* Stagger children so grids animate in sequence rather than all at once. */
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
[data-reveal-delay="5"] { transition-delay: .40s; }

/* --------------------------------------------------------------------------
   28. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  :root { --header-h: 68px; }

  .nav-toggle { display: flex; }

  /* Off-canvas mobile navigation */
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink-2);
    border-bottom: 1px solid rgba(212,165,66,.2);
    padding: var(--sp-3);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--dur) var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav a { padding: .8rem 1rem; font-size: .95rem; }
  .nav a.active::after { display: none; }
  .nav a.active { background: rgba(212,165,66,.1); }

  /* Dropdown becomes a static, always-open list on mobile. */
  .nav-drop {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid rgba(212,165,66,.24);
    border-radius: 0;
    margin: 0 0 var(--sp-2) var(--sp-4);
    padding: 0 0 0 var(--sp-2);
    min-width: 0;
    background: transparent;
    display: none;
  }
  .nav-item.expanded .nav-drop { display: block; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; margin-inline: auto; }
  .hero-text { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { order: -1; margin-bottom: var(--sp-4); }
  .hero-visual img { max-height: 300px; }
  .hero-ring { width: 260px; }

  .header-cta .btn span { display: none; }
  .header-cta .btn { padding: .7rem; width: 42px; height: 42px; border-radius: 50%; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(min(100%, 150px), 1fr)); gap: var(--sp-3); }
  .brand-badge { width: 46px; height: 46px; padding: 4px; border-radius: 12px; }
  .brand-name { font-size: .95rem; }
  .brand-sub { font-size: .54rem; }
  .float-btn { width: 48px; height: 48px; }
  .float-btn svg { width: 22px; height: 22px; }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  .lightbox-close { top: 4px; right: 4px; }
  .testimonial::before { font-size: 4rem; }
}

/* --------------------------------------------------------------------------
   29. Motion & print
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .float-actions, .back-to-top, .site-footer, .marquee { display: none !important; }
  body { background: #fff; color: #000; }
  h1,h2,h3,h4 { color: #000; }
  .card, .testimonial { border: 1px solid #ccc; }
}
