/* ============================================================
   ELEVATED RMA SERVICES — Master Stylesheet
   Signature: Black · Gold · White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --black:        #0A0A0A;
  --black-rich:   #060606;
  --dark:         #111111;
  --dark-2:       #1A1A1A;
  --dark-3:       #242424;
  --gold:         #C9A96E;
  --gold-light:   #D4BA8A;
  --gold-dark:    #A8783A;
  --gold-dim:     rgba(201,169,110,0.15);
  --white:        #FFFFFF;
  --off-white:    #F8F5EF;
  --grey-light:   #E5DFD6;
  --grey-mid:     #9A9490;
  --grey-dark:    #5A5450;
  --text-on-dark: rgba(255,255,255,0.82);
  --text-muted:   rgba(255,255,255,0.48);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-accent:  'Montserrat', system-ui, sans-serif;

  --nav-h:       80px;
  --max-w:      1280px;
  --max-w-text:  760px;

  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);

  --shadow-sm:   0 2px 12px rgba(0,0,0,0.18);
  --shadow-md:   0 8px 40px rgba(0,0,0,0.28);
  --shadow-lg:   0 24px 80px rgba(0,0,0,0.40);
  --shadow-gold: 0 0 0 1px var(--gold);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
.display-1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.display-2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
}
.display-3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 500; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-accent); }
p  { font-size: 1rem; color: var(--text-on-dark); line-height: 1.8; }
.lead { font-size: 1.15rem; line-height: 1.75; }
.eyebrow {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.text-gold    { color: var(--gold); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.text-white   { color: var(--white); }
.italic       { font-style: italic; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow {
  max-width: var(--max-w-text);
}
.section {
  padding: 6rem 0;
}
.section--dark    { background: var(--dark); }
.section--darker  { background: var(--black); }
.section--darkest { background: var(--black-rich); }
.section--light   { background: var(--off-white); color: var(--black); }
.section--surface { background: var(--dark-2); }
.section-header {
  max-width: 680px;
  margin-bottom: 4rem;
}
.section-header.centered {
  margin: 0 auto 4rem;
  text-align: center;
}
.section-header h2 { margin-top: 0.75rem; }
.section-header p  { margin-top: 1rem; }
.divider {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem 0;
}
.divider--center { margin: 1.25rem auto; }
.grid {
  display: grid;
  gap: 2rem;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-sm { gap: 1rem; }
.gap-md { gap: 2rem; }
.mt-sm  { margin-top: 1rem; }
.mt-md  { margin-top: 2rem; }
.mt-lg  { margin-top: 3rem; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 2px;
  transition: all 300ms var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 300ms;
}
.btn:hover::after { opacity: 0.08; }

.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold::after { background: var(--black); }
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.30);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-1px);
}

.btn--dark {
  background: var(--dark-3);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn--dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--sm { padding: 0.65rem 1.4rem; font-size: 0.72rem; }
.btn--lg { padding: 1.2rem 3rem; font-size: 0.82rem; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ── Navigation ─────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 400ms var(--ease), box-shadow 400ms var(--ease), border-color 400ms;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(6,6,6,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(201,169,110,0.2);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 42px;
  width: auto;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo-sub {
  font-family: var(--font-accent);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a, .nav-drop-btn {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  padding: 0.5rem 0.9rem;
  border-radius: 2px;
  transition: color 200ms;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a:hover, .nav-drop-btn:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(17,17,17,0.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 4px;
  padding: 0.75rem 0;
  min-width: 240px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms, transform 200ms;
  box-shadow: var(--shadow-md);
}
.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown:focus-within .nav-drop-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-menu a {
  display: block;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  transition: color 150ms, background 150ms;
  border-radius: 0;
}
.nav-drop-menu a:hover {
  color: var(--gold);
  background: rgba(201,169,110,0.06);
}
.nav-drop-arrow {
  font-size: 0.6rem;
  transition: transform 200ms;
}
.nav-dropdown:hover .nav-drop-arrow { transform: rotate(180deg); }

.nav-cta { margin-left: 0.5rem; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: all 300ms var(--ease);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(6,6,6,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 2rem;
  transform: translateY(-110%);
  transition: transform 350ms var(--ease);
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
.nav-drawer.open { transform: translateY(0); }
.nav-drawer a {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 150ms;
}
.nav-drawer a:hover { color: var(--gold); }
.nav-drawer .btn { width: 100%; justify-content: center; margin-top: 1.5rem; }
.nav-drawer-section {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 1.5rem 0 0.5rem;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black-rich);
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,6,6,0.85) 0%,
    rgba(6,6,6,0.50) 50%,
    rgba(6,6,6,0.70) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 5rem) 2rem 6rem;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
}
.hero-badge span {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-gold 2s infinite;
}
@keyframes pulse-gold {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 900px;
}
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-on-dark);
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-on-dark);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  transition: opacity 200ms;
}
.hero-scroll:hover { opacity: 0.85; }
.hero-scroll span {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black-rich);
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,0.95) 0%, rgba(6,6,6,0.45) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 4rem) 2rem 0;
  width: 100%;
}
.page-hero-content .eyebrow { margin-bottom: 1rem; }
.page-hero-content h1 { margin-bottom: 1rem; }
.page-hero-content .lead { max-width: 640px; }

/* ── Trust Bar ───────────────────────────────────────────────── */
.trust-bar {
  background: rgba(201,169,110,0.08);
  border-top: 1px solid rgba(201,169,110,0.15);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  padding: 1.25rem 0;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-item span {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  white-space: nowrap;
}

/* ── Stats ───────────────────────────────────────────────────── */
.stats-bar {
  padding: 5rem 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

/* ── Service Cards ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(201,169,110,0.15);
}
.service-card {
  background: var(--dark);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 300ms;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--dark-2); }
.service-card:hover .service-icon { color: var(--gold); }
.service-icon {
  color: var(--gold-dark);
  transition: color 300ms;
}
.service-icon svg { width: 36px; height: 36px; }
.service-card h3 { font-weight: 600; }
.service-card p { font-size: 0.95rem; flex: 1; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 200ms;
  margin-top: auto;
}
.service-card-link:hover { gap: 0.85rem; }

/* Service list page */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-on-dark);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.service-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

/* ── Maintenance Plans ───────────────────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.plan-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 300ms, transform 300ms;
  position: relative;
}
.plan-card:hover {
  border-color: rgba(201,169,110,0.4);
  transform: translateY(-4px);
}
.plan-card.featured {
  background: var(--dark-3);
  border-color: var(--gold);
}
.plan-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-accent);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.plan-price-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.plan-price-period {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.plan-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-on-dark);
  line-height: 1.5;
}
.plan-feature-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.75rem;
}
.plan-card .btn { width: 100%; justify-content: center; }

/* Addon table */
.addon-table {
  width: 100%;
  border-collapse: collapse;
}
.addon-table th {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 1.5rem 0.75rem;
  border-bottom: 1px solid rgba(201,169,110,0.3);
  text-align: left;
}
.addon-table td {
  padding: 0.85rem 1.5rem;
  font-size: 0.92rem;
  color: var(--text-on-dark);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.addon-table td:last-child {
  color: var(--gold);
  font-weight: 600;
  text-align: right;
}
.addon-table tr:hover td { background: rgba(201,169,110,0.04); }

/* Size scaling */
.size-tiers {
  display: flex;
  gap: 0;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 4px;
  overflow: hidden;
}
.size-tier {
  flex: 1;
  padding: 1.25rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(201,169,110,0.15);
}
.size-tier:last-child { border-right: none; }
.size-tier-label {
  font-family: var(--font-accent);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.35rem;
}
.size-tier-range {
  font-size: 0.82rem;
  color: var(--text-on-dark);
  display: block;
  margin-bottom: 0.25rem;
}
.size-tier-mod {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  display: block;
}

/* ── Portfolio / Project Cards ───────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.05);
}
.project-card {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.project-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease), opacity 300ms;
  opacity: 0.7;
}
.project-card:hover .project-card-img {
  transform: scale(1.05);
  opacity: 0.5;
}
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,0.95) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transition: background 300ms;
}
.project-card:hover .project-card-overlay {
  background: linear-gradient(to top, rgba(6,6,6,0.98) 30%, rgba(6,6,6,0.3) 100%);
}
.project-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.tag {
  font-family: var(--font-accent);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold);
  padding: 0.2rem 0.65rem;
  border-radius: 2px;
}
.project-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.project-card-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-accent);
  letter-spacing: 0.08em;
}

/* Before/after */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: 4px;
  overflow: hidden;
}
.ba-panel {
  position: relative;
}
.ba-panel img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.ba-label {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: var(--font-accent);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(6,6,6,0.85);
  color: var(--gold);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.5rem; left: 2rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(201,169,110,0.18);
  pointer-events: none;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
}
.star { color: var(--gold); font-size: 0.85rem; }
.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-on-dark);
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}
.testimonial-location {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

/* ── About Preview ───────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--dark-3);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--grey-mid);
}
.about-image-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }
.about-image-placeholder p {
  font-size: 0.8rem;
  color: var(--grey-mid);
  text-align: center;
}
.about-image-accent {
  position: absolute;
  bottom: 2rem; right: -1rem;
  background: var(--gold);
  color: var(--black);
  padding: 1.25rem 1.75rem;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}
.about-image-accent .number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-image-accent .label {
  font-family: var(--font-accent);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
}
.credential-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  transition: border-color 200ms;
}
.credential-item:hover { border-color: rgba(201,169,110,0.3); }
.credential-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.credential-text .name {
  font-weight: 600;
  font-size: 0.92rem;
}
.credential-text .detail {
  font-size: 0.8rem;
  color: var(--grey-mid);
  font-family: var(--font-accent);
  letter-spacing: 0.05em;
}

/* ── Service Areas ───────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.area-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.25rem;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  transition: border-color 200ms, background 200ms;
}
.area-item:hover {
  border-color: rgba(201,169,110,0.3);
  background: var(--dark-3);
}
.area-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.area-item span {
  font-size: 0.92rem;
  color: var(--text-on-dark);
}

/* ── CTA Section ─────────────────────────────────────────────── */
.cta-section {
  background: var(--black-rich);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(201,169,110,0.08), transparent);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p  { max-width: 580px; margin: 0 auto 2.5rem; }

/* ── Quote Form ──────────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.form-label .required { color: var(--gold); }
.form-control {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem;
  color: var(--white);
  transition: border-color 200ms, background 200ms;
  width: 100%;
  -webkit-appearance: none;
}
.form-control::placeholder { color: var(--grey-dark); }
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--dark-3);
}
select.form-control { cursor: pointer; }
textarea.form-control {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.form-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
  border: 1px dashed rgba(201,169,110,0.3);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 200ms, background 200ms;
  text-align: center;
}
.form-upload-label:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.form-upload-label svg { color: var(--gold); opacity: 0.6; }
.form-upload-label span {
  font-size: 0.85rem;
  color: var(--grey-mid);
}
.form-upload-label input { display: none; }
.form-note {
  font-size: 0.82rem;
  color: var(--grey-mid);
  margin-top: 0.35rem;
}
.form-submit { margin-top: 1rem; width: 100%; justify-content: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 4px;
}
.form-success h3 { color: var(--gold); margin-bottom: 0.75rem; }

/* ── Contact Info ────────────────────────────────────────────── */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-label {
  font-family: var(--font-accent);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.2rem;
}
.contact-info-value {
  font-size: 1rem;
  color: var(--white);
}
.contact-info-value a:hover { color: var(--gold); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: var(--dark-2);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 200ms, color 200ms;
  border: none;
}
.faq-question:hover { background: var(--dark-3); color: var(--gold); }
.faq-question.open { color: var(--gold); }
.faq-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 200ms, transform 300ms;
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}
.faq-question.open .faq-icon {
  background: var(--gold);
  color: var(--black);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms var(--ease);
}
.faq-answer-inner {
  padding: 0 2rem 1.75rem;
  background: var(--dark);
}
.faq-answer-inner p {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--black-rich);
  border-top: 1px solid rgba(201,169,110,0.15);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 300px;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-logo-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}
.footer-logo-sub {
  font-family: var(--font-accent);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-mid);
  transition: border-color 200ms, color 200ms;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-on-dark);
  transition: color 150ms;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  color: var(--text-on-dark);
}
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--grey-dark);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.78rem;
  color: var(--grey-dark);
  transition: color 150ms;
}
.footer-legal a:hover { color: var(--gold); }

/* ── Product Brands ──────────────────────────────────────────── */
.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.brand-item {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-dark);
  transition: color 200ms;
}
.brand-item:hover { color: var(--gold); }

/* ── Animations ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }
.delay-5 { transition-delay: 500ms; }

/* ── Utility ─────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.gold-line {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 3rem 0;
  opacity: 0.3;
}
.highlight-box {
  background: var(--gold-dim);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 4px;
  padding: 1.5rem 2rem;
}
.highlight-box p { color: var(--text-on-dark); }
.notice-bar {
  background: rgba(201,169,110,0.1);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  border-radius: 0 4px 4px 0;
}
.notice-bar p { font-size: 0.9rem; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .plans-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { aspect-ratio: 16/9; max-height: 420px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .size-tiers { flex-wrap: wrap; }
  .size-tier { min-width: 33%; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --nav-h: 68px; }
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .hero-content { padding: calc(var(--nav-h) + 3rem) 1.25rem 5rem; }
  .plans-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .trust-bar-inner { gap: 0.75rem 1.5rem; }
  .before-after { grid-template-columns: 1fr; }
  .size-tiers { flex-direction: column; }
  .size-tier { border-right: none; border-bottom: 1px solid rgba(201,169,110,0.15); }
  .size-tier:last-child { border-bottom: none; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { justify-content: center; }
}
