:root {
  --bg: #0f0f10;
  --card: #17181a;
  --soft: #f5f2eb;
  --gold: #cba968;
  --gold-2: #b9934e;
  --text: #151515;
  --muted: #666;
  --white: #fff;
  --border: rgba(255,255,255,0.1);
  --shadow: 0 18px 50px rgba(0,0,0,0.15);
  --radius: 20px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(10,10,10,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  min-width: 0;
}
.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.brand span {
  font-weight: 700;
  font-size: 0.98rem;
}
nav {
  display: flex;
  gap: 24px;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}
nav a:hover { color: var(--gold); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 1px solid transparent;
}
.button:hover { transform: translateY(-1px); }
.button-small { padding: 11px 18px; }
.button-gold {
  background: linear-gradient(135deg, #d7ba7f, #b8914a);
  color: #111;
  box-shadow: 0 10px 30px rgba(185,147,78,0.22);
}
.button-outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
}
.button-dark {
  background: #111;
  color: #fff;
}
.button-outline-dark {
  border-color: #222;
  color: #111;
  background: transparent;
}
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: url('assets/hero.jpg') center/cover no-repeat;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.84) 0%, rgba(10,10,10,0.54) 40%, rgba(10,10,10,0.20) 100%);
}
.hero-content {
  position: relative;
  color: #fff;
  padding: 110px 0 90px;
  max-width: 720px;
}
.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--gold-2);
  margin-bottom: 14px;
}
.gold { color: var(--gold); }
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
  margin: 0 0 14px;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; }
.subtext {
  max-width: 620px;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.92);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 22px;
}
.mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mini-points span,
.pill-row span {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.11);
  color: #fff;
  font-size: 0.92rem;
  border: 1px solid rgba(255,255,255,0.12);
}
.trust-strip {
  background: #111;
  color: #fff;
  padding: 20px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-grid div {
  padding: 10px 0;
}
.trust-grid strong {
  display: block;
  font-size: 1.05rem;
  color: var(--gold);
}
.trust-grid span {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
}
.section { padding: 84px 0; }
.section-dark {
  background: #111;
  color: #fff;
}
.section-soft { background: var(--soft); }
.two-column,
.split-banner,
.review-summary,
.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}
.image-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ddd;
}
.image-card img { width: 100%; height: 100%; object-fit: cover; }
.image-card.tall { min-height: 500px; }
.check-list {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 24px 0;
}
.check-list li {
  position: relative;
  padding-left: 28px;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-2);
  font-weight: 900;
}
.cta-row { margin-top: 24px; }
.feature-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.feature-box,
.review-card,
.copy-card,
.score-card,
.cta-box {
  border-radius: var(--radius);
}
.feature-box {
  background: #1a1a1c;
  padding: 24px;
  border: 1px solid var(--border);
}
.split-banner { align-items: stretch; }
.copy-card {
  background: #161616;
  color: #fff;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.pill-row span {
  background: rgba(203,169,104,0.15);
  color: var(--gold-2);
  border: 1px solid rgba(203,169,104,0.2);
}
.review-summary {
  align-items: stretch;
  margin-top: 30px;
}
.score-card,
.review-card {
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow);
}
.big-score {
  font-size: 4rem;
  line-height: 1;
  font-weight: 800;
}
.stars {
  letter-spacing: 0.18em;
  color: var(--gold-2);
  margin: 12px 0;
}
.quote {
  font-size: 1.2rem;
  line-height: 1.7;
}
.reviewer {
  margin-top: 20px;
  font-weight: 700;
  color: #444;
}
.review-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
}
.review-grid .review-card span {
  display: inline-block;
  margin-top: 16px;
  color: #666;
  font-size: 0.92rem;
}
.cta-section { background: #fff; }
.cta-box {
  background: linear-gradient(135deg, #111 0%, #1f1f20 100%);
  color: #fff;
  padding: 38px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer {
  background: #0b0b0c;
  color: #ddd;
  padding-top: 56px;
}
.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: start;
}
.footer-grid h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-logo {
  width: 110px;
  border-radius: 18px;
  margin-bottom: 14px;
}
.footer-grid a { color: #fff; }
.copyright {
  padding: 24px 0 36px;
  color: #888;
  text-align: center;
  font-size: 0.92rem;
}
@media (max-width: 980px) {
  nav { display: none; }
  .trust-grid,
  .feature-grid,
  .review-grid,
  .two-column,
  .split-banner,
  .review-summary,
  .footer-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }
  .cta-box {
    display: grid;
  }
}
@media (max-width: 640px) {
  .hero { min-height: 82vh; }
  .hero-content { padding-top: 92px; }
  .section { padding: 64px 0; }
  .brand span { display: none; }
  .button { width: 100%; }
  .hero-actions .button { width: auto; }
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0 10px;
}
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  color: #111 !important;
  font-weight: 700;
  width: fit-content;
  min-width: 180px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.contact-button:hover {
  background: var(--gold);
}
.contact-detail {
  color: #aaa;
  word-break: break-word;
}
