/* Leadra Marketing Agency — design system
   Palette pulled from the provided logo: black ground, gold dragon mark, chrome/silver wordmark. */

:root{
  --bg: #07070a;
  --bg-soft: #0d0d12;
  --surface: #111116;
  --surface-2: #16161d;
  --border: #26262f;
  --border-soft: #1c1c24;

  --text: #f3f2ee;
  --text-dim: #b9b6ae;
  --text-mute: #86837c;

  --gold: #d4af5a;
  --gold-bright: #f0cf85;
  --gold-deep: #a97e2f;
  --gold-gradient: linear-gradient(135deg, #f0cf85 0%, #d4af5a 45%, #a97e2f 100%);
  --gold-glow: rgba(212, 175, 90, 0.22);

  --silver: #d7d7dc;
  --silver-bright: #f5f5f7;
  --silver-gradient: linear-gradient(135deg, #f5f5f7 0%, #cfcfd6 50%, #9c9ca4 100%);

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 9px;
  --radius-pill: 999px;

  --shadow-card: 0 1px 0 rgba(255,255,255,0.03) inset, 0 20px 40px -24px rgba(0,0,0,0.7);
  --shadow-lift: 0 30px 60px -30px rgba(0,0,0,0.85);

  --max-w: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

[id]{ scroll-margin-top: 104px; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; }
ul{ list-style: none; margin: 0; padding: 0; }

.wrap{
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4{
  font-family: 'Manrope', 'Inter', sans-serif;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.01em;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: var(--gold-glow);
  border: 1px solid rgba(212,175,90,0.35);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
}

.eyebrow::before{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-gradient);
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-gold{
  background: var(--gold-gradient);
  color: #171208;
  box-shadow: 0 16px 32px -14px var(--gold-glow), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.btn-gold:hover{ transform: translateY(-2px); box-shadow: 0 22px 40px -14px rgba(212,175,90,0.4); }

.btn-ghost{
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover{ border-color: rgba(212,175,90,0.45); background: rgba(212,175,90,0.06); }

.btn-block{ width: 100%; }
.btn-lg{ padding: 18px 36px; font-size: 16.5px; }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,7,10,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}

.site-header .wrap{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 84px;
  gap: 24px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  justify-self: start;
}

.brand img{ height: 40px; width: auto; }

.brand-fallback{
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.04em;
  background: var(--silver-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.main-nav{
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a{
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dim);
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}
.main-nav a:hover{ color: var(--text); background: rgba(255,255,255,0.04); }
.main-nav a.active{ color: var(--gold-bright); }

.header-cta{ display: flex; align-items: center; gap: 12px; flex-shrink: 0; justify-self: end; }

.nav-toggle{
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

/* Mobile nav */
@media (max-width: 980px){
  .main-nav{
    position: fixed;
    inset: 84px 0 0 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px;
    gap: 4px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    overflow-y: auto;
  }
  .main-nav.open{ opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a{ padding: 16px 10px; font-size: 17px; border-bottom: 1px solid var(--border-soft); border-radius: 0; }
  .header-cta .btn-ghost{ display: none; }
  .nav-toggle{ display: inline-flex; }
}

/* Hero */
.hero{
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before{
  content: "";
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0.7;
}

.hero .wrap{ position: relative; z-index: 1; }

.hero-inner{
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.hero h1{
  font-size: clamp(38px, 5.4vw, 68px);
  font-weight: 800;
  line-height: 1.08;
}

.hero h1 .accent,
.page-hero h1 .accent{
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lede{
  font-size: 19px;
  color: var(--text-dim);
  max-width: 620px;
  line-height: 1.65;
}

.hero-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

.hero-trust{
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
  color: var(--text-mute);
  font-size: 13.5px;
}

.hero-trust span{ display: inline-block; text-align: center; }
.hero-trust span::before{
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 8px;
  vertical-align: middle;
}
.hero-trust strong{ color: var(--text); font-weight: 700; }

/* Section shells */
.section{ padding: 90px 0; }
.section-tight{ padding: 60px 0; }
.section-alt{ background: var(--bg-soft); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }

.section-head{
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-head h2{
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  line-height: 1.15;
}

.section-head p{
  color: var(--text-dim);
  font-size: 16.5px;
  line-height: 1.65;
}

.section-head.left{ margin: 0 0 44px; text-align: left; align-items: flex-start; }

/* Service grid (interactive hover) */
.service-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 900px){ .service-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px){ .service-grid{ grid-template-columns: 1fr; } }

.service-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(212,175,90,0.10), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.service-card:hover{
  border-color: rgba(212,175,90,0.4);
  transform: translateY(-4px);
  background: var(--surface-2);
}
.service-card:hover::after{ opacity: 1; }

.service-card .tag{
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.service-card h3{ font-size: 18px; font-weight: 700; line-height: 1.35; }
.service-card p{ color: var(--text-dim); font-size: 14.5px; line-height: 1.6; }

.service-card .sub-list{
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.35s ease;
}

.service-card:hover .sub-list,
.service-card:focus-within .sub-list,
.service-card.is-open .sub-list{
  max-height: 240px;
  opacity: 1;
  margin-top: 2px;
}

.service-card .sub-list a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-dim);
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.service-card .sub-list a span:last-child{ font-size: 12px; font-weight: 700; }
.service-card .sub-list a:hover{
  color: var(--gold-bright);
  border-color: rgba(212,175,90,0.3);
  background: rgba(212,175,90,0.07);
}

.service-card .view-all{
  margin-top: auto;
  padding-top: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gold-bright);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Full service directory (services index page) */
.category-block{ margin-bottom: 52px; }
.category-block:last-child{ margin-bottom: 0; }

.category-head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
}

.category-head h2{ font-size: 22px; font-weight: 800; }
.category-head span{ color: var(--text-mute); font-size: 13.5px; }

.service-icon-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1080px){ .service-icon-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px){ .service-icon-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){ .service-icon-grid{ grid-template-columns: 1fr; } }

.service-icon-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.service-icon-card:hover{ border-color: rgba(212,175,90,0.4); background: var(--surface-2); transform: translateY(-3px); }

.service-icon-badge{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gold-glow);
  border: 1px solid rgba(212,175,90,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  flex-shrink: 0;
}

.service-icon-card h3{ font-size: 15.5px; font-weight: 700; line-height: 1.35; }
.service-icon-card p{ color: var(--text-dim); font-size: 13.5px; line-height: 1.55; flex: 1; }
.service-icon-card .btn{ font-size: 13.5px; padding: 10px 22px; margin-top: 2px; }

/* Process steps */
.process-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px){ .process-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .process-grid{ grid-template-columns: 1fr; } }

.process-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}

.process-card .num{
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--gold-bright);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: block;
}

.process-card h3{ font-size: 17px; margin-bottom: 10px; font-weight: 700; }
.process-card p{ color: var(--text-dim); font-size: 14px; line-height: 1.6; }

/* Stat band */
.stat-band{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
@media (max-width: 760px){ .stat-band{ grid-template-columns: repeat(2, 1fr); } }

.stat-band-2{ grid-template-columns: repeat(2, 1fr); max-width: 560px; margin: 0 auto; }

.stat{ display: flex; flex-direction: column; gap: 6px; }
.stat .value{
  font-family: 'Manrope', sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .label{ color: var(--text-mute); font-size: 13.5px; }

/* Pricing */
.pricing-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 1080px){ .pricing-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px){ .pricing-grid{ grid-template-columns: 1fr; } }

.price-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.price-card.featured{
  border-color: rgba(212,175,90,0.55);
  background: linear-gradient(180deg, rgba(212,175,90,0.08), var(--surface) 40%);
  box-shadow: var(--shadow-lift);
}

.price-card .badge-pop{
  position: absolute;
  top: -13px;
  left: 26px;
  background: var(--gold-gradient);
  color: #171208;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.price-card .tier-name{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.price-card .tier-title{ font-size: 24px; font-weight: 800; }

.price-card .tier-price{
  font-family: 'Manrope', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-card .tier-price .per{ font-size: 15px; font-weight: 600; color: var(--text-mute); }

.price-card .tier-desc{ color: var(--text-dim); font-size: 14.5px; line-height: 1.6; }

.price-card .bundle-line{
  font-size: 13px;
  color: var(--text-mute);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 14px 0;
}
.price-card .bundle-line strong{ color: var(--gold-bright); }

.price-card .tier-features{
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.price-card .tier-features .feature-row{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

.feature-row .check{
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(212,175,90,0.14);
  color: var(--gold-bright);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 2px;
}

/* Pricing comparison table */
.compare-table-wrap{
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.compare-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.compare-table th,
.compare-table td{
  padding: 15px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-soft);
  font-size: 13.5px;
  white-space: nowrap;
}

.compare-table td.compare-label,
.compare-table th.compare-label{
  text-align: left;
  color: var(--text-dim);
  font-weight: 600;
  white-space: normal;
  min-width: 220px;
}

.compare-table thead th{
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
  padding-top: 22px;
  border-bottom: 1px solid var(--border);
}

.compare-price{
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  color: var(--gold-bright);
  margin-top: 4px;
}

.compare-table th.compare-featured,
.compare-table td.compare-featured{
  background: rgba(212,175,90,0.07);
}

.compare-table tbody tr:last-child td{ border-bottom: none; }

.compare-yes{ color: var(--gold-bright); font-size: 16px; }
.compare-no{ color: var(--text-mute); font-size: 14px; }

/* Bundle detail page spec rows */
.spec-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14.5px;
}
.spec-row:last-child{ border-bottom: none; }
.spec-row .spec-label{ color: var(--text-dim); }
.spec-row .spec-value{ color: var(--text); font-weight: 600; text-align: right; }
.spec-row .compare-yes{ font-size: 18px; }

/* Testimonials marquee */
.testi-marquee{
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.testi-track{
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  animation-name: testi-scroll;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  padding: 4px 0 4px 28px;
}

.testi-marquee:hover .testi-track{ animation-play-state: paused; }

@keyframes testi-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(var(--testi-translate, -50%)); }
}

@media (prefers-reduced-motion: reduce){
  .testi-track{ animation: none; }
}

.testi-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 360px;
  flex-shrink: 0;
}
.testi-card .stars{ color: var(--gold-bright); font-size: 14px; letter-spacing: 2px; }
.testi-card p.quote{
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testi-card .who{ display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-card .who-text{ display: flex; flex-direction: column; gap: 2px; }
.testi-card .who .n{ font-weight: 700; font-size: 13.5px; color: var(--text); }
.testi-card .who .r{ font-size: 12px; color: var(--text-mute); }

.testi-avatar{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.testi-avatar-fallback{
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #171208;
  background: var(--gold-gradient);
}

@media (max-width: 620px){
  .testi-card{ width: 280px; }
}

/* Team */
.team-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px){ .team-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .team-grid{ grid-template-columns: 1fr; } }

.team-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.team-avatar{
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #171208;
  background: var(--gold-gradient);
  object-fit: cover;
}

.team-card h3{ font-size: 15.5px; font-weight: 700; }
.team-card .role{ color: var(--gold-bright); font-size: 12.5px; font-weight: 700; margin: 4px 0 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.team-card p.bio{ color: var(--text-dim); font-size: 13.5px; line-height: 1.6; }

/* Contact form */
.contact-form{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row:has(.form-field:only-child){ grid-template-columns: 1fr; }

.form-field{ display: flex; }
.form-field textarea{ resize: vertical; min-height: 130px; }

.contact-form select{
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4af5a' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.contact-form select:focus{ outline: none; border-color: rgba(212,175,90,0.5); }
.contact-form select option{ background: var(--surface); color: var(--text); }

/* Checkout step indicator */
.checkout-steps{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.checkout-step{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-mute);
}
.checkout-step .dot{
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: var(--text-dim);
}
.checkout-step.active{ color: var(--text); }
.checkout-step.active .dot{ background: var(--gold-gradient); border-color: transparent; color: #171208; }
.checkout-step-line{ flex: 1; height: 1px; background: var(--border); }

.contact-form input,
.contact-form textarea{
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  transition: border-color 0.2s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{ color: var(--text-mute); }
.contact-form input:focus,
.contact-form textarea:focus{ outline: none; border-color: rgba(212,175,90,0.5); }

@media (max-width: 620px){
  .form-row{ grid-template-columns: 1fr; }
}

/* Booking / Calendly */
.booking-shell{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.booking-shell .calendly-inline-widget{ min-width: 280px; }

/* CTA band */
.cta-band{
  background: var(--surface);
  border: 1px solid rgba(212,175,90,0.3);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cta-band h2{ font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; max-width: 620px; }
.cta-band p{ color: var(--text-dim); max-width: 520px; }

/* Footer */
.site-footer{ border-top: 1px solid var(--border-soft); padding: 64px 0 32px; background: var(--bg-soft); }

.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 900px){ .footer-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }

.footer-col h4{ font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-mute); margin-bottom: 16px; }
.footer-col ul{ display: flex; flex-direction: column; gap: 10px; }
.footer-col a{ font-size: 14px; color: var(--text-dim); transition: color 0.2s ease; }
.footer-col a:hover{ color: var(--gold-bright); }
.footer-col p{ color: var(--text-dim); font-size: 14px; line-height: 1.7; max-width: 280px; }

.footer-bottom{
  border-top: 1px solid var(--border-soft);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-mute);
  font-size: 13px;
}

/* Page hero (inner pages) */
.page-hero{ padding: 64px 0 60px; text-align: center; }
.page-hero .eyebrow{ margin-bottom: 20px; }
.page-hero h1{ font-size: clamp(32px, 4.6vw, 52px); font-weight: 800; margin-bottom: 18px; }
.page-hero p{ color: var(--text-dim); font-size: 17px; max-width: 640px; margin: 0 auto; line-height: 1.65; }

/* Service detail page */
.detail-layout{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px){ .detail-layout{ grid-template-columns: 1fr; } }

.detail-block{ margin-bottom: 40px; }
.detail-block:last-child{ margin-bottom: 0; }
.detail-block h2{ font-size: 24px; font-weight: 800; margin-bottom: 16px; }
.detail-block p{ color: var(--text-dim); font-size: 15.5px; line-height: 1.75; margin-bottom: 14px; }

.included-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 560px){ .included-grid{ grid-template-columns: 1fr; } }

.included-row{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}

.sidebar-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 108px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sidebar-card h3{ font-size: 16px; font-weight: 700; }
.sidebar-card p{ color: var(--text-dim); font-size: 13.5px; line-height: 1.6; }
.sidebar-card .related{ display: flex; flex-direction: column; gap: 8px; }
.sidebar-card .related a{ font-size: 13.5px; color: var(--text-dim); padding: 8px 0; border-bottom: 1px solid var(--border-soft); }
.sidebar-card .related a:hover{ color: var(--gold-bright); }

.breadcrumb{ display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-mute); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a{ color: var(--text-mute); }
.breadcrumb a:hover{ color: var(--gold-bright); }

/* Utility */
.mt-0{ margin-top: 0; }
.text-center{ text-align: center; }
.hide-mobile{ display: initial; }
@media (max-width: 620px){ .hide-mobile{ display: none; } }
