:root {
  --bg: #090b0d;
  --bg-soft: #0f1216;
  --panel: rgba(255,255,255,0.04);
  --panel-strong: rgba(255,255,255,0.06);
  --line: rgba(255,255,255,0.08);
  --text: #f5f3ef;
  --muted: #a7afb9;
  --muted-2: #7b8591;
  --accent: #d5b37c;
  --accent-2: #f1dfbc;
  --shadow: 0 24px 60px rgba(0,0,0,0.35);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(213,179,124,0.08), transparent 24%),
    linear-gradient(180deg, #090b0d 0%, #0d1014 38%, #11161d 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }

.topbar {
  padding: 12px 18px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(9,11,13,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #0b0d0f;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 10px 28px rgba(213,179,124,0.26);
}
.brand-lockup { display: flex; flex-direction: column; line-height: 1; }
.brand-lockup strong { font-size: 1.08rem; }
.brand-lockup small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
}
.site-nav a:hover { color: var(--text); }
.nav-cta {
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text) !important;
}
.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1.5rem;
}

.hero-section { padding: 76px 0 42px; }
.hero-layout {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 42px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.hero-copy h1,
.section-head h2,
.featured-copy h2,
.faq-copy h2,
.cta-copy h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.hero-copy h1 { font-size: clamp(2.9rem, 5vw, 5.6rem); max-width: 11ch; }
.hero-text {
  margin: 22px 0 0;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.78;
  font-size: 1.04rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #0b0d0f;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}
.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.small-btn { margin-top: 18px; }

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.hero-points div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
}
.hero-points span {
  display: block;
  color: var(--muted-2);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero-points strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}
.hero-visual {
  position: relative;
  min-height: 620px;
}
.hero-card,
.hero-floating-card,
.category-card,
.why-card,
.process-card,
.contact-card,
.faq-list details,
.mosaic-large,
.mosaic-small {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow);
}
.hero-main-card {
  height: 100%;
  min-height: 560px;
}
.hero-main-card img { height: 100%; object-fit: cover; }
.hero-floating-card {
  position: absolute;
  right: -10px;
  bottom: -24px;
  width: 38%;
}
.hero-floating-card img { height: 100%; object-fit: cover; }

.trust-strip { padding: 18px 0 18px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-grid div {
  padding: 18px 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-grid span {
  display: block;
  color: var(--muted-2);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.trust-grid p { margin: 8px 0 0; font-weight: 600; }

.category-section,
.featured-section,
.why-section,
.process-section,
.faq-section,
.cta-section { padding: 92px 0; }
.section-head.center { text-align: center; max-width: 780px; margin: 0 auto 42px; }
.section-head.left { max-width: 760px; margin-bottom: 34px; }
.section-head h2,
.featured-copy h2,
.faq-copy h2,
.cta-copy h2 { font-size: clamp(2.05rem, 4vw, 4rem); }
.section-head p:last-child,
.featured-copy p,
.faq-copy p,
.cta-copy p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.72;
}

.category-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 22px;
}
.category-card {
  display: flex;
  flex-direction: column;
}
.category-card-large { grid-row: span 2; }
.category-image { padding: 18px; }
.category-image img {
  border-radius: 22px;
  height: 100%;
  object-fit: cover;
}
.category-content { padding: 6px 22px 24px; }
.category-content h3 { margin: 12px 0 10px; font-size: 1.45rem; }
.category-content p { margin: 0; color: var(--muted); line-height: 1.7; }
.category-content ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}
.pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(213,179,124,0.12);
  color: var(--accent-2);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.accent-card {
  background: linear-gradient(135deg, rgba(213,179,124,0.12), rgba(255,255,255,0.04));
}

.featured-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}
.featured-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}
.featured-list div {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.featured-list strong { display: block; }
.featured-list span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.65;
}
.featured-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}
.mosaic-large {
  grid-row: span 2;
  min-height: 620px;
}
.mosaic-large img,
.mosaic-small img { height: 100%; object-fit: cover; }
.mosaic-small { min-height: 300px; }

.why-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-card,
.process-card {
  padding: 26px;
}
.why-number,
.process-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-2);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.why-card h3,
.process-card h3 { margin: 0 0 10px; font-size: 1.18rem; }
.why-card p,
.process-card p { margin: 0; color: var(--muted); line-height: 1.72; }

.faq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 26px;
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-list details {
  padding: 0 20px;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 600;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.72;
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 24px;
  align-items: center;
}
.contact-card { padding: 28px; }
.contact-card h3 { margin: 0; font-size: 1.45rem; }
.contact-items {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.contact-items a {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  font-weight: 600;
}
.contact-checklist {
  margin-top: 24px;
  color: var(--muted);
}
.contact-checklist span {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 600;
}
.contact-checklist ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.85;
}

.site-footer {
  padding: 30px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.9fr;
  gap: 20px;
  align-items: start;
}
.footer-title { margin: 0; font-size: 1.08rem; font-weight: 700; }
.footer-sub,
.footer-meta p { margin: 8px 0 0; color: var(--muted); }
.footer-links {
  display: grid;
  gap: 10px;
  color: var(--muted);
}
.footer-links a:hover { color: var(--text); }
.footer-meta { text-align: right; }

@media (max-width: 1140px) {
  .hero-layout,
  .featured-layout,
  .faq-layout,
  .cta-layout,
  .footer-layout,
  .trust-grid,
  .why-grid,
  .process-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual { min-height: auto; }
  .hero-main-card { min-height: 460px; }
  .hero-floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }
  .category-card-large { grid-row: auto; }
  .featured-mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic-large { grid-row: auto; min-height: 420px; }
  .mosaic-small { min-height: 260px; }
  .footer-meta { text-align: left; }
}

@media (max-width: 840px) {
  .menu-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(9,11,13,0.98);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .site-nav.open { display: flex; }
  .hero-section { padding-top: 48px; }
  .hero-copy h1 { font-size: 2.8rem; max-width: 12ch; }
  .hero-points { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .featured-mosaic { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar { font-size: 11px; letter-spacing: 0.1em; }
  .hero-copy h1,
  .section-head h2,
  .featured-copy h2,
  .faq-copy h2,
  .cta-copy h2 { letter-spacing: -0.05em; }
  .hero-main-card { min-height: 360px; }
}
