/* ============================================================
   BUILDERS PRESERVATION — Premium Corporate Stylesheet
   ============================================================ */

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

/* ─── CSS Variables ────────────────────────────────────────── */
:root {
  --obsidian:    #0A0A0A;
  --arch-gray:   #1E1E1E;
  --gold:        #C9973A;
  --gold-light:  #E0AA4A;
  --warm-white:  #F5F0E8;
  --surface:     #2A2A2A;
  --text:        #EDEDED;
  --muted:       #888888;
  --deep:        #141414;
  --deeper:      #080808;
  --gold-10:     rgba(201,151,58,0.10);
  --gold-20:     rgba(201,151,58,0.20);
  --gold-40:     rgba(201,151,58,0.40);
  --gold-3:      rgba(201,151,58,0.03);

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

  --section-pad-y: 120px;
  --section-pad-x: 80px;
  --radius: 0px;
  --transition: 0.3s ease;

  --shadow-card: 0 4px 32px rgba(0,0,0,0.4);
  --shadow-hover: 0 12px 48px rgba(0,0,0,0.6), 0 0 0 1px var(--gold-40);
}

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  background: var(--obsidian);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ─── Custom Cursor ────────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
  mix-blend-mode: normal;
}
.cursor.hover {
  width: 24px;
  height: 24px;
  background: transparent;
  border: 1.5px solid var(--gold);
}
.cursor-follower {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold-40);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, opacity 0.2s ease;
}

/* ─── Skip Link ────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--gold);
  color: #000;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-weight: 600;
  z-index: 100000;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ─── Section Dividers ─────────────────────────────────────── */
.section-divider {
  width: 100%;
  height: 1px;
  background: var(--gold-20);
}

/* ─── Overline Labels ──────────────────────────────────────── */
.overline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.overline::before, .overline::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* ─── Headings ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; }

.display-headline {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.section-headline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

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

.section-sub {
  font-size: 17px;
  color: var(--muted);
  font-weight: 300;
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.7;
}

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--gold);
  color: #000;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(201,151,58,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-secondary:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(201,151,58,0.25);
}

/* ─── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--arch-gray);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  padding: 32px;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-light);
}
.card-top-border {
  border-left: none;
  border-top: 3px solid var(--gold);
}

/* ─── NAVIGATION ───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 28px var(--section-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.3s ease, backdrop-filter 0.4s ease;
}
.site-nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gold-10);
}

.nav-logo img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 9100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--obsidian);
  z-index: 8999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77,0,0.175,1);
  border-left: 1px solid var(--gold-20);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.mobile-drawer a:hover { color: var(--gold); }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--obsidian);
  position: relative;
  overflow: hidden;
  padding: 140px var(--section-pad-x) 80px;
}

/* Animated Grid Lines */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, var(--gold-3) 1px, transparent 1px),
    linear-gradient(45deg, var(--gold-3) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 24s linear infinite;
  z-index: 0;
}
@keyframes gridDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* Decorative Background Text */
.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 16vw;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.028;
  letter-spacing: 0.08em;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-20);
  padding: 8px 16px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.6s 0.1s ease forwards;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-headline {
  opacity: 0;
  animation: fadeUp 0.7s 0.3s ease forwards;
}
.hero-headline .line { display: block; }

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  font-weight: 300;
  max-width: 580px;
  margin-top: 28px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.7s 0.5s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.7s ease forwards;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 56px;
  opacity: 0;
  animation: fadeUp 0.7s 0.9s ease forwards;
}
.trust-badge {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--gold-20);
  padding: 10px 18px;
  animation: badgeFloat 6s ease-in-out infinite;
  transition: color var(--transition), border-color var(--transition);
}
.trust-badge:hover { color: var(--gold); border-color: var(--gold-40); }
.trust-badge:nth-child(2) { animation-delay: 1s; }
.trust-badge:nth-child(3) { animation-delay: 2s; }
.trust-badge:nth-child(4) { animation-delay: 3s; }

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.scroll-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--gold-40);
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.7s 1.1s ease forwards;
}
.scroll-arrow span {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.scroll-arrow svg {
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ─── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── ABOUT ────────────────────────────────────────────────── */
.about-section {
  background: var(--deep);
  padding: var(--section-pad-y) var(--section-pad-x);
}
.about-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 80px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.about-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin: 28px 0 36px;
}

.mission-card {
  background: var(--arch-gray);
  border-left: 3px solid var(--gold);
  padding: 28px 32px;
  margin-top: 32px;
  box-shadow: var(--shadow-card);
}
.mission-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.mission-card p {
  font-size: 15px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.75;
}

.vision-block {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.vision-icon {
  flex-shrink: 0;
  width: 3px;
  height: 40px;
  background: var(--gold-40);
  margin-top: 4px;
}
.vision-block p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.vision-block strong { color: var(--text); }

/* About Right Decorative Card */
.about-deco {
  background: var(--arch-gray);
  padding: 48px 40px;
  box-shadow: var(--shadow-card);
  position: relative;
  border: 1px solid rgba(255,255,255,0.04);
}
.about-deco::before,
.about-deco::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold-40);
  border-style: solid;
}
.about-deco::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}
.about-deco::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.deco-heading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 36px;
  line-height: 1.2;
}

.value-pill {
  border-left: 3px solid var(--gold-20);
  padding: 20px 24px;
  margin-bottom: 20px;
  transition: border-color var(--transition);
}
.value-pill:hover { border-left-color: var(--gold); }
.value-pill-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.value-pill-title::before {
  content: '—';
  color: var(--gold-40);
}
.value-pill p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── SERVICES ─────────────────────────────────────────────── */
.services-section {
  background: var(--obsidian);
  padding: var(--section-pad-y) var(--section-pad-x);
}
.services-header {
  text-align: center;
  margin-bottom: 72px;
}
.services-header .section-sub { margin: 16px auto 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  background: var(--arch-gray);
  border-top: 3px solid var(--gold);
  padding: 36px 28px 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(to top, var(--gold-3), transparent);
  transition: height 0.4s ease;
}
.service-card:hover::before { height: 100%; }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--gold-light);
}

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--gold);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.25;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── WHY CHOOSE US ────────────────────────────────────────── */
.why-section {
  background: var(--deep);
  padding: var(--section-pad-y) var(--section-pad-x);
}
.why-header {
  text-align: center;
  margin-bottom: 72px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-item {
  position: relative;
  padding-bottom: 40px;
}
.why-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-10);
}

.why-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
  transition: opacity var(--transition);
}
.why-item:hover .why-number { opacity: 0.5; }

.why-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.why-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── PROCESS ──────────────────────────────────────────────── */
.process-section {
  background: var(--obsidian);
  padding: var(--section-pad-y) var(--section-pad-x);
  overflow: hidden;
}
.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-track {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.process-line {
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-20) 10%, var(--gold-20) 90%, transparent);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 8px;
}

.step-circle {
  width: 72px;
  height: 72px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  background: var(--obsidian);
  margin-bottom: 24px;
  transition: background var(--transition), color var(--transition);
  cursor: default;
}
.process-step:hover .step-circle {
  background: var(--gold);
  color: #000;
}

.step-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.step-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── STATISTICS ───────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, #0A0A0A 0%, #1a1208 100%);
  padding: var(--section-pad-y) var(--section-pad-x);
  position: relative;
  overflow: hidden;
}
.stats-bg-quote {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 320px;
  color: var(--gold);
  opacity: 0.025;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid var(--gold-10);
  position: relative;
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s ease;
}
.stat-item.visible::before { width: 100%; }

.stat-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section {
  background: var(--deep);
  padding: var(--section-pad-y) var(--section-pad-x);
}
.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.carousel-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.carousel-track {
  overflow: hidden;
}

.carousel-slide {
  display: none;
}
.carousel-slide.active { display: block; }

.testimonial-card {
  background: var(--arch-gray);
  border-left: 4px solid var(--gold);
  padding: 48px 56px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--gold);
  opacity: 0.08;
  position: absolute;
  top: -10px;
  left: 32px;
  line-height: 1;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.star {
  color: var(--gold);
  font-size: 16px;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 28px;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-20);
  background: transparent;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.carousel-btn:hover {
  background: var(--gold-10);
  border-color: var(--gold);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-20);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ─── CONTACT ──────────────────────────────────────────────── */
.contact-section {
  background: var(--obsidian);
  padding: var(--section-pad-y) var(--section-pad-x);
}
.contact-header {
  text-align: center;
  margin-bottom: 72px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}

.contact-info-card {
  background: var(--arch-gray);
  border-left: 3px solid var(--gold);
  padding: 28px 28px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}
.contact-info-card:hover { transform: translateX(4px); }

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-info-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.contact-info-text strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-info-text a {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}
.contact-info-text a:hover { color: var(--gold); }

.map-placeholder {
  background: var(--arch-gray);
  border: 1px solid var(--gold-10);
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-card);
}
.map-placeholder svg { color: var(--gold); }

/* Contact Form */
.contact-form-wrap {
  background: var(--arch-gray);
  border-top: 3px solid var(--gold);
  padding: 48px 44px;
  box-shadow: var(--shadow-card);
}
.form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
}
.form-control::placeholder { color: rgba(136,136,136,0.5); }
.form-control:focus { border-color: var(--gold); }
.form-control.error { border-color: #e05252; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.error-msg {
  display: none;
  font-size: 12px;
  color: #e05252;
  margin-top: 6px;
}
.form-group.has-error .error-msg { display: block; }
.form-group.has-error .form-control { border-color: #e05252; }

select.form-control {
  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='%23C9973A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
select.form-control option { background: var(--arch-gray); }

textarea.form-control { resize: vertical; min-height: 120px; }

.btn-submit {
  width: 100%;
  padding: 18px;
  justify-content: center;
  font-size: 13px;
}

/* ─── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--deeper);
  border-top: 1px solid var(--gold);
  padding: 80px var(--section-pad-x) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.footer-logo img {
  height: 54px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}

.footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold-10);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '→';
  color: var(--gold);
  opacity: 0;
  font-size: 12px;
  transition: opacity var(--transition);
}
.footer-links a:hover { color: var(--text); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; }

.footer-contact {
  font-size: 13px;
  color: var(--muted);
  line-height: 2;
}
.footer-contact a {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--gold); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: background var(--transition), border-color var(--transition);
}
.social-btn:hover {
  background: var(--gold-10);
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--gold-10);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-copy {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.footer-dev {
  font-size: 12px;
  color: var(--muted);
}
.footer-dev a {
  color: var(--gold);
  text-decoration: none;
}
.footer-dev a:hover { text-decoration: underline; }

/* ─── VENDOR PAGE SPECIFIC ─────────────────────────────────── */
.vendor-hero { padding-top: 160px; }

.why-join-section {
  background: var(--deep);
  padding: var(--section-pad-y) var(--section-pad-x);
}
.why-join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.why-join-card {
  background: var(--arch-gray);
  border-top: 3px solid var(--gold);
  padding: 44px 36px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-join-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.why-join-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.why-join-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.why-join-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
}

.requirements-section {
  background: var(--obsidian);
  padding: var(--section-pad-y) var(--section-pad-x);
}
.requirements-card {
  background: var(--arch-gray);
  border-top: 3px solid var(--gold);
  padding: 56px 60px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}
.req-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.req-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.req-check {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--gold);
}

.vendor-form-section {
  background: var(--deep);
  padding: var(--section-pad-y) var(--section-pad-x);
}
.vendor-form-wrap {
  background: var(--arch-gray);
  border-top: 3px solid var(--gold);
  padding: 64px 72px;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}
.form-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.form-section-label:first-child { margin-top: 0; }
.form-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold-10);
}

.form-3col { grid-template-columns: 1fr 1fr 1fr; }

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 32px;
}
.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.checkbox-group label {
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.5;
}

.vendor-questions {
  background: var(--obsidian);
  padding: 80px var(--section-pad-x);
}
.questions-card {
  background: var(--arch-gray);
  border-left: 3px solid var(--gold);
  padding: 40px 48px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.questions-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
}
.questions-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
.questions-card a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}
.questions-card a:hover { text-decoration: underline; }

/* ─── FOCUS STATES ─────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  :root { --section-pad-x: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-line { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 960px) {
  :root { --section-pad-y: 80px; --section-pad-x: 32px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-join-grid { grid-template-columns: 1fr; }
  .vendor-form-wrap { padding: 40px 32px; }
  .testimonial-card { padding: 36px 32px; }
  .vendor-form-section .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --section-pad-y: 64px; --section-pad-x: 20px; }
  .hero-headline { font-size: clamp(36px, 10vw, 56px); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 52px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row, .form-3col { grid-template-columns: 1fr; }
  .requirements-card, .vendor-form-wrap { padding: 32px 24px; }
  .testimonial-card { padding: 28px 24px; }
  .testimonial-quote { font-size: 18px; }
}

/* ─── SCROLL REVEAL ANIMATIONS ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
