/* ============================================================
   ROYALTY LANDWORKS — Shared Design System
   Gold #FFD230 · Black #0D0D0D · White #FFFFFF
   Headings: Bebas Neue (Pro) · Subheads: Barlow Condensed
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;500;600;700;800&family=Barlow:wght@400;500;600;700&display=swap');

:root {
  /* Brand */
  --gold:        #FFD230;
  --gold-deep:   #E5A823;
  --gold-bright: #FFE27A;
  --gold-soft:   #FFF6DC;
  --black:       #0D0D0D;
  --ink:         #161513;
  --ink-2:       #211F1B;
  --cream:       #FAF6EC;
  --cream-2:     #F2ECDC;
  --white:       #FFFFFF;
  --line:        #E4DCC8;
  --line-dark:   #2C2A24;
  --muted:       #6E6859;
  --muted-light: #B7AE97;

  /* Type */
  --display: 'Bebas Neue', 'Oswald', sans-serif;
  --cond:    'Barlow Condensed', sans-serif;
  --body:    'Barlow', system-ui, sans-serif;

  /* Brushed gunmetal surface (per brand spec) */
  --metal-base: #1a1c1f;
  --metal-img:
    repeating-linear-gradient(0deg, rgba(255,255,255,.045) 0px, rgba(255,255,255,.045) 1px, rgba(0,0,0,.07) 1px, rgba(0,0,0,.07) 3px),
    radial-gradient(120% 78% at 50% 36%, rgba(255,255,255,.12), transparent 60%),
    radial-gradient(155% 135% at 50% 50%, transparent 50%, rgba(0,0,0,.62) 100%),
    linear-gradient(90deg, #121417 0%, #2c3135 50%, #121417 100%);

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(13,13,13,.08);
  --shadow:    0 14px 40px rgba(13,13,13,.14);
  --shadow-lg: 0 30px 80px rgba(13,13,13,.22);
  --gold-grad: linear-gradient(135deg, #FFE27A 0%, #FFD230 38%, #E5A823 100%);
  --radius:    16px;
  --radius-lg: 26px;
  --ease:      cubic-bezier(.16,.84,.34,1);
  --maxw:      1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
h1,h2,h3 { font-family: var(--display); font-weight: 400; margin: 0; line-height: .92; letter-spacing: .01em; }
.kicker {
  font-family: var(--cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .82rem;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.kicker::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--gold-deep);
  display: inline-block;
}
.kicker.center::after {
  content: "";
  width: 34px; height: 2px;
  background: var(--gold-deep);
  display: inline-block;
}
.kicker.on-dark { color: var(--gold); }
.kicker.on-dark::before, .kicker.on-dark.center::after { background: var(--gold); }

h1 { font-size: clamp(3.4rem, 8vw, 7.5rem); }
h2 { font-size: clamp(2.6rem, 5.2vw, 4.8rem); }
h3 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
p  { line-height: 1.65; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--muted); line-height: 1.6; }

.section { padding: clamp(64px, 9vw, 130px) 0; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 820px; }
.dark { background: var(--black); color: var(--white); }
.dark .lead { color: var(--muted-light); }
.eyebrow-row { display:flex; align-items:center; gap:18px; flex-wrap:wrap; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 1.02rem;
  padding: 16px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  line-height: 1;
}
.btn:hover { transform: translateY(-3px); }
.btn-gold { background: var(--gold-grad); color: var(--black); box-shadow: 0 10px 26px rgba(229,168,35,.4); }
.btn-gold:hover { box-shadow: 0 16px 38px rgba(229,168,35,.55); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--ink-2); }
.btn-ghost { background: transparent; border-color: currentColor; }
.btn-ghost.on-dark { color: var(--white); }
.btn-ghost.on-dark:hover { background: var(--white); color: var(--black); }
.btn-ghost:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  /* no backdrop-filter here: it turns .site-nav into the containing block
     for the fixed .nav-links panel, collapsing the mobile menu background */
  background: rgba(13,13,13,.97);
  border-bottom: 1px solid var(--line-dark);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 28px; gap: 18px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-full { height: 50px; width: auto; display: block; filter: drop-shadow(0 2px 6px rgba(0,0,0,.45)); }
.nav-logo-mini { display: none; height: 46px; width: auto; filter: drop-shadow(0 2px 5px rgba(0,0,0,.5)); }
.nav-badge {
  height: 48px; width: auto; flex: none;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,.5));
}
.nav-logo-text { display: flex; flex-direction: column; line-height: .82; }
.nav-logo-text .r1 { font-family: var(--display); font-size: 1.55rem; color: var(--gold); letter-spacing: .04em; }
.nav-logo-text .r2 { font-family: var(--cond); font-weight: 600; font-size: .62rem; letter-spacing: .34em; color: var(--white); margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 1px; }
.nav-links a {
  font-family: var(--cond); font-weight: 600; text-transform: uppercase;
  letter-spacing: .05em; font-size: .92rem; color: #DCD7C9;
  padding: 9px 12px; border-radius: 8px; position: relative; transition: color .2s;
  white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; line-height: 1;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 7px; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn-gold { font-weight: 800; letter-spacing: .14em; padding: 13px 28px; justify-content: center; text-align: center; }
.nav-phone { display:flex; align-items:center; gap:8px; font-family:var(--cond); font-weight:700; color:var(--white); letter-spacing:.04em; }
.nav-phone svg { width:18px; height:18px; color: var(--gold); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--gold); transition: .3s; }
.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: ""; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor; display: inline-block;
  transition: transform .2s var(--ease); opacity: .85;
}
.has-dropdown:hover > a::after { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 220px;
  background: var(--ink); border: 1px solid var(--line-dark); border-radius: 14px;
  padding: 8px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: .22s var(--ease);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 11px 14px; border-radius: 8px; }
.dropdown a:hover { background: var(--ink-2); color: var(--gold); }

.nav-scrim {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(0,0,0,.55);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.nav-scrim.show { opacity: 1; visibility: visible; }
body.nav-locked { overflow: hidden; }
@media (max-width: 1000px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
    background: var(--ink); flex-direction: column; align-items: stretch;
    padding: 90px 20px 30px; gap: 4px; transform: translateX(100%);
    transition: transform .35s var(--ease); box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.2rem; padding: 14px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: transparent; padding: 0 0 0 14px; }
  .nav-phone { display: none; }
}
@media (max-width: 560px){
  .nav-logo-full { display: none; }
  .nav-logo-mini { display: block; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: #CFC9B9; padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-grid h4 { font-family: var(--cond); font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--white); font-size: 1rem; margin: 0 0 18px; }
.footer-grid a { display: block; padding: 6px 0; color: #CFC9B9; transition: color .2s; font-size: .98rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-grid a.btn { color: var(--black); display: inline-flex; justify-content: center; text-align: center; padding: 16px 30px; }
.footer-grid a.btn:hover { color: var(--black); }
.footer-logo { display: flex; align-items: center; gap: 14px; }
.footer-logo .foot-full { height: 86px; width: auto; max-width: 100%; filter: drop-shadow(0 3px 10px rgba(0,0,0,.5)); }
.footer-logo .r1 { font-family: var(--display); font-size: 2.4rem; color: var(--gold); line-height: .9; }
.footer-logo .r2 { font-family: var(--cond); font-weight: 600; letter-spacing: .3em; font-size: .72rem; color: var(--white); }
.footer-tagline { font-family: var(--cond); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-top: 18px; font-size: .9rem; }
.footer-legal { border-top: 1px solid var(--line-dark); margin-top: 56px; padding-top: 24px; display: flex; flex-wrap: wrap; gap: 8px 26px; }
.footer-legal a { color: var(--muted-light); font-family: var(--cond); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; transition: color .2s; }
.footer-legal a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line-dark); margin-top: 24px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: .85rem; color: var(--muted-light); }
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }

/* ---- Footer accordion (Services / Company) ---- */
.footer-acc summary { list-style: none; }
.footer-acc summary::-webkit-details-marker { display: none; }
.footer-acc summary h4 { display: inline; }
@media (min-width: 821px){
  /* Desktop: always open, summary is just the heading */
  .footer-acc summary { pointer-events: none; margin: 0 0 18px; }
  .footer-acc summary h4 { margin: 0; }
}
@media (max-width: 820px){
  .footer-acc summary {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    cursor: pointer; padding: 13px 16px; margin-bottom: 6px;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,210,48,.35); border-radius: 12px;
    -webkit-tap-highlight-color: transparent;
  }
  .footer-acc summary h4 { margin: 0; }
  .footer-acc summary::after {
    content: "+"; flex: none; width: 26px; height: 26px; border-radius: 50%;
    background: var(--gold); color: var(--black);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem; line-height: 1;
  }
  .footer-acc[open] summary::after { content: "–"; }
  .footer-acc[open] summary { border-color: var(--gold); }
  .footer-acc .footer-acc-links { padding: 2px 16px 10px; }
}

/* ---------- Reveal animation (keyframe-based for preview reliability) ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); }
[data-reveal].in { animation: revealIn .8s var(--ease) forwards; }
@keyframes revealIn { to { opacity: 1; transform: none; } }
[data-reveal-delay="1"].in { animation-delay: .08s; }
[data-reveal-delay="2"].in { animation-delay: .16s; }
[data-reveal-delay="3"].in { animation-delay: .24s; }
[data-reveal-delay="4"].in { animation-delay: .32s; }
@media (prefers-reduced-motion: reduce){ [data-reveal]{opacity:1;transform:none;} [data-reveal].in{animation:none;} }

/* ---------- Reusable bits ---------- */
.badge-shield { /* gold shield SVG container */ display:inline-block; }
.pill {
  font-family: var(--cond); font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  font-size: .78rem; padding: 7px 14px; border-radius: 999px; background: var(--gold-soft);
  color: var(--gold-deep); border: 1px solid #F0E2B8; display: inline-block;
}
.pill.on-dark { background: rgba(255,210,48,.12); color: var(--gold); border-color: rgba(255,210,48,.3); }

.card {
  background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--line);
  overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.media-ph {
  background:
    repeating-linear-gradient(45deg, rgba(255,210,48,.08) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, var(--ink) 0%, #242017 100%);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  font-family: var(--cond); text-transform: uppercase; letter-spacing: .14em; font-weight: 600;
  font-size: .9rem; gap: 8px; text-align:center; padding: 16px;
}
.media-ph svg { width: 40px; height: 40px; opacity: .7; }

.grid-3 { display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.grid-4 { display:grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.grid-2 { display:grid; grid-template-columns: repeat(2,1fr); gap: 36px; align-items:center; }
@media (max-width: 940px){ .grid-3,.grid-4 { grid-template-columns: repeat(2,1fr); } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 560px){ .grid-3,.grid-4 { grid-template-columns: 1fr; } }

.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head h2 { margin: 16px 0 0; }
.section-head p { margin-top: 18px; }

/* page hero (interior pages) */
/* Compact strip (2026-07-12, Jason): page content & images pop above the fold */
.page-hero { background: var(--black); color: var(--white); padding: clamp(26px,4vw,44px) 0 clamp(22px,3vw,34px); position: relative; overflow: hidden; }
.page-hero::after {
  content:""; position:absolute; right:-120px; top:-120px; width:420px; height:420px; border-radius:50%;
  background: radial-gradient(circle, rgba(255,210,48,.22), transparent 70%);
}
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
.page-hero .lead { margin-top: 8px !important; font-size: 1.02rem; }
/* mobile sticky Call / Quote bar (pages with body[data-sticky-cta]) */
.sticky-cta { display: none; }
@media (max-width: 680px) {
  .sticky-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    display: flex; gap: 10px; padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    background: rgba(13,13,13,.97); border-top: 1px solid var(--line-dark);
  }
  .sticky-cta a {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--cond); font-weight: 800; text-transform: uppercase;
    letter-spacing: .07em; font-size: 1rem; padding: 12px 0; border-radius: 10px;
  }
  .sticky-cta .sc-call { border: 1px solid var(--gold); color: var(--gold); }
  .sticky-cta .sc-quote { background: var(--gold); color: var(--black); }
  .sticky-cta svg { width: 16px; height: 16px; }
  body.has-sticky-cta { padding-bottom: 64px; }
  body.nav-locked .sticky-cta { display: none; }
}
.crumbs { font-family: var(--cond); font-weight:600; letter-spacing:.1em; text-transform:uppercase; font-size:.82rem; color:var(--muted-light); margin-bottom: 18px; display:flex; gap:10px; align-items:center; }
.crumbs a:hover { color: var(--gold); }
.crumbs span { color: var(--gold); }

/* ---------- Reviews Modal (site-wide) ---------- */
.rv-overlay {
  position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center;
  background: rgba(13,13,13,.66); backdrop-filter: blur(8px); padding: 24px;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
}
.rv-overlay.open { opacity: 1; visibility: visible; }
.rv-modal {
  background: var(--cream); width: min(760px, 100%); max-height: 88vh; border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
  transform: translateY(24px) scale(.98); transition: transform .35s var(--ease);
}
.rv-overlay.open .rv-modal { transform: none; }
.rv-head { background: var(--black); color: var(--white); padding: 28px 30px; display: flex; align-items: center; justify-content: space-between; gap: 20px; position: relative; }
.rv-head .rv-score { display: flex; align-items: center; gap: 16px; }
.rv-head .rv-big { font-family: var(--display); font-size: 3.4rem; color: var(--gold); line-height: 1; }
.rv-head .rv-meta .stars { color: var(--gold); font-size: 1.15rem; letter-spacing: 2px; }
.rv-head .rv-meta .sub { font-family: var(--cond); font-weight: 600; letter-spacing: .04em; color: var(--muted-light); font-size: .9rem; margin-top: 4px; }
.rv-head h3 { color: var(--white); font-size: 2rem; }
.rv-close { background: rgba(255,255,255,.1); border: 0; color: var(--white); width: 42px; height: 42px; border-radius: 50%; cursor: pointer; font-size: 1.3rem; flex: none; transition: .2s; display:flex; align-items:center; justify-content:center; }
.rv-close:hover { background: var(--gold); color: var(--black); }
.rv-filters { display: flex; gap: 8px; padding: 18px 30px 0; flex-wrap: wrap; }
.rv-filter { font-family: var(--cond); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); cursor: pointer; transition: .2s; color: var(--ink); }
.rv-filter.active { background: var(--black); color: var(--gold); border-color: var(--black); }
.rv-list { overflow-y: auto; padding: 22px 30px 30px; display: grid; gap: 16px; }
.rv-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; }
.rv-card .rv-top { display: flex; align-items: center; gap: 12px; }
.rv-card .rv-av { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-grad); display: flex; align-items: center; justify-content: center; font-family: var(--display); color: var(--black); font-size: 1.3rem; flex: none; }
.rv-card .rv-name { font-family: var(--cond); font-weight: 700; font-size: 1.15rem; line-height: 1.1; }
.rv-card .rv-where { color: var(--muted); font-size: .85rem; }
.rv-card .rv-src { margin-left: auto; font-family: var(--cond); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: .68rem; color: var(--muted); padding: 4px 10px; border: 1px solid var(--line); border-radius: 999px; }
.rv-card .stars { color: var(--gold-deep); letter-spacing: 1px; margin: 12px 0 8px; }
.rv-card p { margin: 0; color: var(--ink); line-height: 1.6; }
.rv-card .rv-date { color: var(--muted-light); font-size: .8rem; margin-top: 10px; }
.rv-foot { padding: 18px 30px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 16px; background: var(--white); flex-wrap: wrap; }
.rv-foot span { font-family: var(--cond); font-weight: 600; color: var(--muted); }
body.rv-locked { overflow: hidden; }
.g-logo { width: 16px; height: 16px; display: inline-block; vertical-align: middle; flex: none; }
.rv-head .rv-meta .sub { display: flex; align-items: center; gap: 6px; }
.rv-card .rv-src { display: inline-flex; align-items: center; gap: 6px; border: 0; padding: 4px; }
.rv-card .rv-src .g-logo { width: 18px; height: 18px; }
.rv-more { color: var(--gold-deep); font-weight: 700; white-space: nowrap; }
.rv-more:hover { text-decoration: underline; }
.rv-foot .rv-powered { display: inline-flex; align-items: center; gap: 8px; font-family: var(--cond); font-weight: 600; color: var(--muted); }
/* Google attribution badge + inline logo (used on testimonials, strips, featured quotes) */
.gbadge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--cond); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; font-size: .8rem; }
.gbadge .g-logo { width: 16px; height: 16px; }
.g-inline { display: inline-flex; align-items: center; vertical-align: middle; }
.g-inline .g-logo { width: 18px; height: 18px; }
@media (max-width: 540px){ .rv-head { flex-wrap: wrap; } .rv-head h3 { display:none; } }

/* ---------- Lightbox ---------- */
.lb-overlay { position: fixed; inset: 0; z-index: 1100; background: rgba(8,8,8,.94); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .3s; padding: 30px; }
.lb-overlay.open { opacity: 1; visibility: visible; }
.lb-stage { max-width: 1100px; width: 100%; }
.lb-frame { border-radius: var(--radius); overflow: hidden; border: 2px solid rgba(255,210,48,.3); }
.lb-frame image-slot, .lb-frame img { width: 100%; max-height: 76vh; }
.lb-cap { color: var(--gold); font-family: var(--cond); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; text-align: center; margin-top: 16px; font-size: .95rem; }
.lb-btn { position: fixed; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.12); border: 0; color: #fff; font-size: 1.6rem; cursor: pointer; transition: .2s; display:flex;align-items:center;justify-content:center; }
.lb-btn:hover { background: var(--gold); color: var(--black); }
.lb-prev { left: 24px; } .lb-next { right: 24px; }
.lb-x { position: fixed; top: 24px; right: 24px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.12); border: 0; color: #fff; font-size: 1.4rem; cursor: pointer; }
.lb-x:hover { background: var(--gold); color: var(--black); }
@media (max-width:600px){ .lb-prev{left:8px;} .lb-next{right:8px;} .lb-btn{width:46px;height:46px;} }

/* ---------- Brushed metal surfaces ---------- */
.brushed,
.dark,
.page-hero,
.site-footer {
  background-color: var(--metal-base);
  background-image: var(--metal-img);
}
.metal-plaque {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,210,48,.22);
  box-shadow: 0 30px 70px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.08);
}

/* ---------- Legal documents ---------- */
.legal-wrap { max-width: 840px; margin: 0 auto; }
.legal-meta { font-family: var(--cond); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; color: var(--muted); margin: 28px 0 0; }
.legal-note { display: flex; gap: 14px; align-items: flex-start; background: var(--gold-soft); border: 1px solid #F0E2B8; border-radius: var(--radius); padding: 18px 22px; margin: 28px 0 8px; color: var(--gold-deep); }
.legal-note svg { width: 22px; height: 22px; flex: none; margin-top: 2px; }
.legal-note p { margin: 0; font-family: var(--cond); font-weight: 600; font-size: 1rem; line-height: 1.5; color: #8a6a16; }
.legal-doc h2 { font-family: var(--cond); font-weight: 700; font-size: 1.7rem; letter-spacing: .01em; line-height: 1.15; margin: 46px 0 0; }
.legal-doc h2:first-of-type { margin-top: 38px; }
.legal-doc p { color: var(--muted); font-size: 1.05rem; margin: 14px 0 0; }
.legal-doc ul { margin: 14px 0 0; padding-left: 22px; color: var(--muted); }
.legal-doc ul li { margin: 8px 0; font-size: 1.05rem; line-height: 1.5; }
.legal-doc a { color: var(--gold-deep); text-decoration: underline; }

/* ---------- FAQ accordion ---------- */
.faq-list { display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--gold-deep); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--cond); font-weight: 700; font-size: 1.2rem; color: var(--ink); line-height: 1.25; }
.faq-q::after { content: "+"; font-family: var(--display); font-size: 1.8rem; color: var(--gold-deep); flex: none; line-height: 1; transition: transform .25s var(--ease); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a p { margin: 0; padding: 0 24px 24px; color: var(--muted); font-size: 1.05rem; line-height: 1.6; }

/* utility */
.text-gold { color: var(--gold); }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 48px; }
.center { text-align: center; }
.btn-row { display:flex; gap:14px; flex-wrap:wrap; }

/* ---- Social icon row (footer + contact) ---- */
.social-row { display:flex; gap:12px; flex-wrap:wrap; margin-top:18px; }
.social-row a { width:40px; height:40px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; border:1px solid rgba(255,210,48,.4); color:var(--gold); transition:transform .2s var(--ease), background .2s, color .2s; }
.social-row a:hover { background:var(--gold); color:var(--black); transform:translateY(-3px); }
.social-row svg { width:18px; height:18px; fill:currentColor; }
.social-label { font-family:var(--cond); font-weight:600; text-transform:uppercase; letter-spacing:.1em; font-size:.74rem; color:var(--muted-light); margin-bottom:6px; }
