:root{
  --bg: #0a0b0f;
  --bg2: #0e111a;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.08);
  --text: rgba(255,255,255,0.94);
  --muted: rgba(255,255,255,0.70);
  --faint: rgba(255,255,255,0.55);
  --line: rgba(255,255,255,0.12);

  --gold: #caa15a;
  --gold2: #e3cf9b;

  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 18px 60px rgba(0,0,0,0.55);
  --shadow-soft: 0 14px 34px rgba(0,0,0,0.35);
  --container: 1120px;

  --base-font: 100%;
}

*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  font-size: var(--base-font);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(900px 580px at 20% 8%, rgba(202,161,90,0.14), transparent 60%),
    radial-gradient(860px 520px at 86% 12%, rgba(227,207,155,0.12), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  line-height:1.55;
  padding-bottom: 72px;
}

body.a11y-contrast{
  --text: rgba(255,255,255,0.98);
  --muted: rgba(255,255,255,0.82);
  --faint: rgba(255,255,255,0.72);
  --line: rgba(255,255,255,0.20);
  --panel: rgba(255,255,255,0.10);
  --panel2: rgba(255,255,255,0.14);
}

body.a11y-motion *{
  scroll-behavior: auto !important;
  transition: none !important;
  animation: none !important;
}

a{color:inherit}
.container{ width:min(var(--container), calc(100% - 40px)); margin-inline:auto; }
.narrow{ width:min(760px, calc(100% - 40px)); margin-inline:auto; }
.muted{ color:var(--muted); }
.fineprint{ color: var(--faint); font-size: 12px; margin: 10px 0 0; }
.small{ font-size: 13px; }
.lead{ color:var(--muted); font-size:18px; margin:0 0 18px; max-width: 62ch; }
.hr{ border:none; border-top: 1px solid var(--line); margin: 22px 0; }

.skip-link{
  position:absolute; left:-999px; top:12px;
  background:#fff; color:#000;
  padding:10px 12px;
  border-radius:12px;
}
.skip-link:focus{ left:12px; z-index:9999; }

a:focus-visible, button:focus-visible, .btn:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible{
  outline:none;
  box-shadow: 0 0 0 4px rgba(202,161,90,0.22);
  border-radius: 12px;
}

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10,11,15,0.72);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}
.brand{ display:flex; align-items:center; gap:12px; text-decoration:none; min-width:0; }
.brand-mark-wrap{
  display: inline-block;
  cursor: pointer;
  line-height: 0;
  -webkit-tap-highlight-color: transparent;
}
.brand-mark-wrap:focus-within .brand-mark{ outline: 2px solid rgba(202,161,90,0.6); outline-offset: 2px; }
.brand-mark{
  width:36px; height:36px; border-radius:14px;
  border:1px solid rgba(202,161,90,0.26);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.brand-text{ display:flex; flex-direction:column; min-width:0; }
.brand-name{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight:800;
  letter-spacing:0.3px;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.brand-tag{ font-size:12px; color:var(--muted); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

.site-nav{ display:flex; align-items:center; gap:14px; }
.site-nav a{
  text-decoration:none; color:var(--muted);
  font-weight:750; font-size:14px;
  padding:10px 12px; border-radius:14px;
}
.site-nav a:hover{ color:var(--text); background: rgba(255,255,255,0.06); }

.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background: rgba(255,255,255,0.06);
  color:var(--text);
  border-radius:14px;
  width:44px; height:44px;
  align-items:center; justify-content:center;
}
.burger{ width:18px; height:2px; background: currentColor; position:relative; border-radius:2px; }
.burger::before,.burger::after{ content:""; position:absolute; left:0; width:18px; height:2px; background: currentColor; border-radius:2px; }
.burger::before{ top:-6px; } .burger::after{ top:6px; }

/* Typography */
h1,h2,h3{ font-family: ui-serif, Georgia, "Times New Roman", Times, serif; letter-spacing:0.25px; }
h1{ font-size: clamp(34px, 4.6vw, 56px); line-height:1.05; margin:0 0 14px; }
.section-head h2{ margin:0; font-size: 30px; }
.prose h2{ margin-top: 26px; }
.prose ul{ color: var(--muted); }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 16px;
  min-height:44px;
  border-radius: 999px;
  border:1px solid rgba(202,161,90,0.32);
  background: linear-gradient(135deg, rgba(202,161,90,0.22), rgba(227,207,155,0.18));
  text-decoration:none;
  font-weight:900;
  letter-spacing:0.2px;
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.btn:hover{ transform: translateY(-1px); border-color: rgba(227,207,155,0.45); }
.btn:active{ transform: translateY(0px); }
.btn-small{ padding:10px 14px; font-size:14px; }
.btn-ghost{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
  box-shadow:none;
}
.link{
  color: var(--text);
  font-weight:850;
  text-decoration:none;
}
.link:hover{ text-decoration:underline; }
.card-link{ color: inherit; text-decoration:none; }
.card-link:hover{ text-decoration:underline; }

/* Hero */
.hero{
  padding: 54px 0 18px;
  min-height: 100svh;
}
.hero-grid{
  display:grid;
  gap:18px;
  grid-template-columns: 1.12fr 0.88fr;
  align-items:stretch;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  color: var(--muted);
  font-weight:850;
  letter-spacing:1px;
  text-transform:uppercase;
  font-size:12px;
  margin:0 0 12px;
}
.hero-cta{ display:flex; flex-wrap:wrap; gap:12px; margin:14px 0 8px; }
.microcopy{ color:var(--faint); font-size:13px; margin: 10px 0 0; }

.trust-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top: 16px;
}
.trust-item{
  background: var(--panel);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:12px;
  box-shadow: var(--shadow-soft);
}
.trust-title{ display:block; font-weight:900; font-size:14px; }
.trust-sub{ display:block; color:var(--muted); font-size:12px; margin-top:4px; }

.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border:1px solid rgba(202,161,90,0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.hero-art{ padding:18px 18px 0; color: var(--gold2); }
.hero-art .hero-img{
  width:100%;
  height:auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}
.hero-mini{ padding:18px; border-top:1px solid rgba(255,255,255,0.10); }
.card-title{ margin:0 0 10px; font-size:18px; }
.steps{ margin:0 0 12px; padding-left: 18px; color: var(--muted); }
.steps li{ margin:10px 0; }
.steps strong{ color: var(--text); }

/* Sections */
.section{ padding: 64px 0; }
.section-alt{
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:18px; margin-bottom: 18px;
}
.section-head p{ margin:0; color:var(--muted); max-width: 62ch; }

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
  margin-top:16px;
}
.card{
  background: var(--panel2);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow-soft);
}
.card h3{ margin:0 0 8px; font-size:16px; }
.card p{ margin:0 0 10px; color:var(--muted); }
.bullets{ margin:0; padding-left:18px; color:var(--muted); }
.bullets li{ margin:8px 0; }

.cards.single{ grid-template-columns: 1fr; }

.note{
  margin-top:16px;
  background: rgba(202,161,90,0.10);
  border:1px solid rgba(202,161,90,0.18);
  border-radius: var(--radius);
  padding:14px 16px;
  color: var(--muted);
}

/* Two-col / features */
.two-col{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:18px;
  align-items:start;
}
.feature-list{ display:grid; gap:12px; margin-top:14px; }
.feature{
  background: var(--panel2);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px;
  box-shadow: var(--shadow-soft);
}
.feature h3{ margin:0 0 6px; font-size:16px; }
.feature p{ margin:0; color:var(--muted); }

.aside-card{
  background: linear-gradient(180deg, rgba(202,161,90,0.10), rgba(255,255,255,0.04));
  border:1px solid rgba(202,161,90,0.18);
  border-radius: var(--radius-lg);
  padding:16px;
  box-shadow: var(--shadow);
}
.aside-actions{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 12px; }
.divider{ height:1px; background: rgba(255,255,255,0.12); margin: 16px 0; }

/* Team */
.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top: 16px;
}
.profile{ display:flex; gap:12px; align-items:flex-start; }
.avatar{
  width:54px; height:54px; border-radius: 16px;
  border:1px solid rgba(202,161,90,0.22);
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(202,161,90,0.38), transparent 62%),
    radial-gradient(18px 18px at 70% 70%, rgba(227,207,155,0.30), transparent 62%),
    rgba(255,255,255,0.05);
  flex: 0 0 auto;
  overflow: hidden;
}
.avatar img{
  width:100%; height:100%; object-fit: cover; display: block;
}
.avatar-btn{
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  -webkit-tap-highlight-color: transparent;
}
.avatar-btn:focus{
  outline: 2px solid rgba(202,161,90,0.6);
  outline-offset: 2px;
}
.avatar-btn:focus:not(:focus-visible){ outline: none; }
.avatar-btn:focus-visible{ outline: 2px solid rgba(202,161,90,0.6); outline-offset: 2px; }

/* Team photo lightbox */
.team-photo-modal{
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}
.team-photo-modal[hidden]{ display: none !important; }
.team-photo-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  cursor: pointer;
}
.team-photo-wrap{
  position: relative;
  max-width: min(90vw, 560px);
  max-height: min(85vh, 800px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: default;
}
.team-photo-close{
  position: absolute;
  top: -44px;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  font-size: 28px;
  line-height: 1;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  -webkit-tap-highlight-color: transparent;
  z-index: 2;
}
.team-photo-close:hover,
.team-photo-close:focus{
  background: rgba(255,255,255,0.15);
}
.team-photo-close:focus{ outline: 2px solid rgba(255,255,255,0.6); outline-offset: 2px; }
.team-photo-img{
  max-width: 100%;
  max-height: calc(85vh - 60px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.team-photo-caption{
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  text-align: center;
}
@media (max-width: 480px){
  .team-photo-modal{ padding: 12px; }
  .team-photo-close{
    top: -40px;
    right: 0;
    width: 48px;
    height: 48px;
    font-size: 32px;
  }
  .team-photo-img{ max-height: calc(80vh - 50px); }
}

/* FAQ */
.faq{ display:grid; gap:12px; max-width: 900px; }
details{
  background: var(--panel2);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: var(--shadow-soft);
}
summary{ cursor:pointer; font-weight:900; }
details p{ margin:10px 0 0; color:var(--muted); }

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
.contact-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin: 14px 0;
}
.contact-card{
  background: var(--panel2);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px;
  box-shadow: var(--shadow-soft);
}
.contact-card h3{
  margin:0 0 6px;
  font-size:12px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:0.9px;
}
.contact-card p{ margin:0; }

.map-card{
  background: var(--panel2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow-soft);
  margin: 12px 0 16px;
}
.map-card iframe{
  width: 100%;
  height: 240px;
  border: 0;
  border-radius: 14px;
}

/* Forms */
.form{
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border:1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow);
}
.form-title{ margin: 0 0 12px; font-size: 18px; }
.form-row{ display:grid; gap:8px; margin-bottom:12px; }
label{ font-weight:900; font-size:14px; }
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.22);
  color: var(--text);
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(202,161,90,0.55);
  box-shadow: 0 0 0 4px rgba(202,161,90,0.12);
}
.field-error{
  min-height: 18px;
  margin: 0;
  color: rgba(255,200,200,0.90);
  font-size: 13px;
}
.form-actions{ display:grid; gap:10px; margin-top: 6px; }

/* Wizard */
.honeypot{ display:none; }
.wizard-progress{
  display:flex; gap:10px; justify-content:center;
  margin: 4px 0 14px;
}
.step-dot{
  width:10px; height:10px; border-radius:999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.12);
}
.step-dot.active{
  background: rgba(202,161,90,0.70);
  border-color: rgba(227,207,155,0.55);
}
.wizard-step{ display:block; }
body.js .wizard-step{ display:none; }
body.js .wizard-step.active{ display:block; }

.wizard-actions{
  display:flex; justify-content:flex-end; gap:10px;
  margin-top: 8px;
}

.review-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 12px;
}
.review-list{ margin: 0; padding-left: 18px; color: var(--muted); }
.review-list strong{ color: var(--text); }

/* Footer */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 22px 0 30px;
  background: rgba(0,0,0,0.14);
}
.footer-inner{
  display:flex; align-items:flex-start; justify-content:space-between;
  gap:16px; flex-wrap:wrap;
}
.footer-brand{ display:flex; align-items:center; gap:10px; }
.footer-links{ display:flex; gap:14px; flex-wrap:wrap; flex-direction:column; }
.footer-links a{ text-decoration:none; color:var(--muted); font-weight:850; }
.footer-links a:hover{ color:var(--text); }
.footer-small p{ margin:0; }

.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;
}

/* Reveal */
.reveal{ opacity: 0; transform: translateY(10px); transition: opacity 450ms ease, transform 450ms ease; }
.reveal.in-view{ opacity: 1; transform: translateY(0); }
body.a11y-motion .reveal{ opacity: 1; transform: none; }

/* Sticky CTA */
.sticky-cta{
  position: fixed;
  left: 12px; right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  display:none;
  gap: 10px;
  z-index: 60;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.sticky-btn{
  flex: 1 1 0;
  text-decoration:none;
  text-align:center;
  font-weight: 900;
  padding: 12px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}
.sticky-btn-gold{
  border-color: rgba(202,161,90,0.32);
  background: linear-gradient(135deg, rgba(202,161,90,0.22), rgba(227,207,155,0.18));
}

/* Accessibility UI */
.a11y-fab{
  position: fixed;
  right: 12px;
  bottom: calc(86px + env(safe-area-inset-bottom));
  z-index: 70;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  color: var(--text);
  font-weight: 850;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.a11y-panel{
  position: fixed;
  right: 12px;
  bottom: calc(130px + env(safe-area-inset-bottom));
  z-index: 80;
  width: min(320px, calc(100% - 24px));
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.a11y-panel-inner{
  background: rgba(10,11,15,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 12px;
  box-shadow: var(--shadow);
}
.a11y-panel-head{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  margin-bottom: 10px;
}
.a11y-close{
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-radius: 12px;
  width: 36px; height: 36px;
}
.a11y-row{
  display:flex; align-items:center; justify-content:space-between;
  gap: 12px;
  padding: 10px 6px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.a11y-row:first-of-type{ border-top:none; }
.a11y-controls{ display:flex; gap:8px; }
.a11y-btn, .a11y-reset{
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-radius: 12px;
  padding: 8px 10px;
  font-weight: 850;
}
.a11y-toggle{ display:flex; align-items:center; gap:10px; color: var(--text); font-weight: 800; }

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .two-col{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-cards{ grid-template-columns: 1fr; }
  .trust-row{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .site-nav{
    position:absolute;
    left: 20px;
    right: 20px;
    top: 68px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap: 8px;
    padding: 10px;
    background: rgba(10,11,15,0.92);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .site-nav a{ padding: 12px 12px; }
  .nav-toggle{ display:inline-flex; }
  .site-nav.open{ display:flex; }
  .sticky-cta{
    display:flex;
    position: static;
    margin: 16px 0 0;
  }
  .a11y-fab{
    position: static;
    margin: 16px 0 0 auto;
  }
  .a11y-panel{
    position: static;
    margin: 8px 0 0;
  }
  .btn{
    width:100%;
  }
  .hero-cta .btn + .btn{
    margin-top:12px;
  }
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .btn, .reveal{ transition:none; }
  .btn:hover{ transform:none; }
  .reveal{ opacity: 1; transform:none; }
}
