:root {
  --bg: #0a0a0a;
  --bg-2: #111110;
  --text: #f4f2ee;
  --muted: #a8a49c;
  --dim: #7d7a72;
  --gold: #f2b32c;
  --gold-soft: #c8901a;
  --line: #232320;
  --cream: #f0ede6;
  --ink: #141310;
  --ink-muted: #5f5b52;
  --font-display: "Anton", sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: #ffca55;
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
}

.btn {
  display: inline-block;
  font-weight: 700;
  border-radius: 100px;
  transition: opacity 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover {
  opacity: 0.92;
  color: inherit;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
  padding: 17px 34px;
  font-size: 16px;
}

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--text);
  padding: 16px 32px;
  font-size: 16px;
}

.btn-ghost:hover {
  color: var(--text);
}

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px clamp(16px, 4vw, 48px);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(12px, 1.2vw, 15px);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  line-height: 1.1;
}

.brand-logo {
  display: block;
  height: 32px;
  width: auto;
  background: #fff;
  border-radius: 6px;
  padding: 3px 6px;
  box-sizing: content-box;
}

.brand-text {
  display: flex;
  flex-direction: column;
  color: var(--text);
  line-height: 1.05;
}

.brand-line {
  display: block;
}

.brand:hover {
  color: var(--text);
}

.brand:hover .brand-text {
  color: var(--text);
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--bg);
  letter-spacing: -1px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  justify-self: center;
}

.nav a {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.nav a:hover {
  color: var(--gold);
}

.header-cta {
  justify-self: end;
  padding: 12px 22px;
  font-size: 14px;
  color: var(--bg);
}

.header-cta:hover {
  color: var(--bg);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--text);
  border-radius: 8px;
  padding: 8px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  justify-self: end;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade,
.hero-shade-v {
  position: absolute;
  inset: 0;
}

.hero-shade {
  background: linear-gradient(
    180deg,
    rgba(8, 8, 8, 0.75) 0%,
    rgba(8, 8, 8, 0.55) 40%,
    rgba(8, 8, 8, 0.82) 100%
  );
}

.hero-shade-v {
  background: radial-gradient(
    ellipse at 50% 40%,
    rgba(8, 8, 8, 0.15) 0%,
    rgba(8, 8, 8, 0.55) 70%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 56px;
  padding-bottom: 80px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-copy {
  max-width: 820px;
}

.hero h1 {
  font-size: clamp(44px, 6.5vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.5px;
}

.hero h1 span {
  color: var(--gold);
}

.hero-lead {
  margin: 28px auto 0;
  max-width: 540px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: #c9c6bf;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
  align-items: center;
  justify-content: center;
}

/* Sections */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
}

.section-dark {
  background: var(--bg);
  border-top: 1px solid #1c1c1c;
}

.section-alt {
  background: var(--bg-2);
}

.section-cream {
  background: var(--cream);
  color: var(--ink);
}

.section h2 {
  font-size: clamp(34px, 4.4vw, 60px);
}

.fade {
  color: #5a5750;
}

.gold {
  color: var(--gold);
}

.lead {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

/* Problem */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.problem-quote {
  border-left: 2px solid var(--gold);
  padding-left: 32px;
  padding-top: 6px;
}

.problem-quote > p {
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.5;
  color: #e8e5de;
  font-weight: 500;
}

.pain-list {
  margin-top: 34px;
  display: grid;
  gap: 22px;
}

.pain-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pain-num {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-item p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.pain-item strong {
  color: var(--text);
}

/* Services cards */
.services-intro {
  max-width: 720px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
}

.card-num {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 16px;
}

.card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* How */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: clamp(40px, 6vw, 72px);
  border-top: 1px solid var(--line);
  padding-top: 44px;
}

.step-num {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 19px;
  margin-bottom: 22px;
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.step p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Facilities */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-top: clamp(40px, 6vw, 64px);
}

.facility {
  background: var(--bg);
  padding: 28px;
}

.facility h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.facility p {
  color: #8f8c84;
  font-size: 14px;
  line-height: 1.55;
}

/* Service rows */
.service-rows {
  margin-top: clamp(40px, 6vw, 64px);
  border-top: 1px solid #d5d0c5;
}

.service-row {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr 0.7fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
  padding: clamp(28px, 3.5vw, 44px) 0;
  border-bottom: 1px solid #d5d0c5;
}

.service-row h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.3vw, 30px);
  text-transform: uppercase;
  line-height: 1.05;
}

.service-row p {
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.55;
}

.service-tag {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--gold-soft);
  text-transform: uppercase;
  text-align: right;
}

.section-cream .eyebrow {
  color: var(--gold-soft);
}

/* Pricing */
.pricing-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(44px, 6vw, 72px);
}

.pricing-intro .lead {
  margin-top: 20px;
  font-size: 17px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: #161512;
  border: 1.5px solid var(--gold);
  position: relative;
  box-shadow: 0 0 60px rgba(242, 179, 44, 0.12);
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}

.price-name {
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-card.featured .price-name {
  color: var(--gold);
}

.price-range {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 10px;
}

.price-amount {
  margin: 28px 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount strong {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  font-weight: 400;
}

.price-amount span {
  font-size: 16px;
  color: #8f8c84;
}

.price-divider {
  height: 1px;
  background: var(--line);
  margin-bottom: 24px;
}

.price-card.featured .price-divider {
  background: #2e2b22;
}

.price-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
  flex: 1;
}

.price-list li {
  display: flex;
  gap: 12px;
  color: #c9c6bf;
  font-size: 15px;
  line-height: 1.4;
}

.price-card.featured .price-list li {
  color: #e8e5de;
}

.price-list .check {
  color: var(--gold);
}

.price-card .btn {
  text-align: center;
  padding: 15px;
  font-size: 15px;
}

.price-card .btn-ghost {
  color: var(--text);
}

.price-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--dim);
}

/* FAQ */
.faq-intro {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-2);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 28px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(17px, 1.7vw, 21px);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.faq-sign {
  color: var(--gold);
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 240px;
}

.faq-a p {
  padding: 0 28px 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

/* Contact */
.contact {
  position: relative;
  background: radial-gradient(circle at 15% 20%, rgba(242, 179, 44, 0.22), transparent 45%),
    var(--bg);
  border-top: 1px solid #1c1c1c;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}

.contact h2 {
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.96;
}

.contact-side {
  border-left: 1px solid #2a2a26;
  padding-left: clamp(24px, 4vw, 56px);
}

.contact-side p {
  font-size: 18px;
  line-height: 1.6;
  color: #c9c6bf;
  margin-bottom: 32px;
}

.contact-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--dim);
  font-style: italic;
}

/* Footer */
.site-footer {
  background: var(--bg);
  border-top: 1px solid #1c1c1c;
  padding: 40px clamp(20px, 5vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand .brand-mark {
  width: 38px;
  height: 38px;
  font-size: 18px;
  border-radius: 8px;
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-copy {
  font-size: 13px;
  color: #6f6c65;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .brand {
    grid-column: 1;
  }

  .header-cta {
    grid-column: 2;
    padding: 10px 16px;
    font-size: 13px;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 3;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #121210;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 12px;
    border-radius: 8px;
  }

  .problem-grid,
  .card-grid,
  .steps,
  .facility-grid,
  .price-grid,
  .contact-grid,
  .service-row {
    grid-template-columns: 1fr;
  }

  .service-tag {
    text-align: left;
  }

  .contact-side {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #2a2a26;
    padding-top: 28px;
  }
}

@media (max-width: 640px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .facility-grid {
    grid-template-columns: 1fr 1fr;
  }

  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    grid-column: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .faq-a {
    transition: none;
  }
}
