:root {
  --gold: #D4AF37;
  --gold-light: #F1D279;
  --gold-dark: #8A6D3B;
  --gold-glow: rgba(212, 175, 55, 0.4);
  --charcoal: #050505;
  --charcoal-mid: #0D0D0D;
  --charcoal-light: #151515;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.05);
  --white: #FDFDFD;
  --muted: rgba(253, 253, 253, 0.45);
  --accent-mono: #A0A0A0;
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --dyson-red: #FF3B30;
  /* Subtle Dyson accent for technical bits */
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--charcoal);
  color: var(--white);
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.18s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--charcoal);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 32px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

nav.scrolled {
  background: rgba(5, 5, 5, 0.4);
  backdrop-filter: blur(20px) saturate(180%);
  padding: 16px 60px;
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.02);
  opacity: 0.9;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--gold);
  color: var(--charcoal);
  padding: 10px 28px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: none;
  text-decoration: none;
  transition: all 0.3s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* HERO */
#hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.4) contrast(1.1);
  transform: scale(1.05);
  transition: transform 10s ease-out;
}

#hero:hover .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--charcoal) 0%, transparent 60%),
    linear-gradient(to top, var(--charcoal) 0%, transparent 40%);
  z-index: 1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(var(--glass-border) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  z-index: 2;
}

@keyframes gridPan {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(80px);
  }
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.1);
  animation: orbSpin 20s linear infinite;
}

.hero-orb:nth-child(1) {
  width: 500px;
  height: 500px;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-orb:nth-child(2) {
  width: 350px;
  height: 350px;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  animation-direction: reverse;
  animation-duration: 14s;
}

.hero-orb:nth-child(3) {
  width: 200px;
  height: 200px;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes orbSpin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }

  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 900px;
  opacity: 0;
  transform: translateY(40px);
  animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: heroReveal 1s ease 0.5s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.9;
  letter-spacing: 2px;
  margin-bottom: 8px;
  opacity: 0;
  animation: heroReveal 1s ease 0.6s forwards;
}

.hero-title .outline {
  -webkit-text-stroke: 1px rgba(245, 240, 232, 0.3);
  color: transparent;
}

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

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  margin: 28px 0 48px;
  max-width: 500px;
  line-height: 1.6;
  opacity: 0;
  animation: heroReveal 1s ease 0.8s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  animation: heroReveal 1s ease 1s forwards;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  padding: 16px 40px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: none;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(201, 168, 76, 0.3);
}

.btn-ghost {
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: gap 0.3s, color 0.3s;
}

.btn-ghost .arrow {
  width: 40px;
  height: 1px;
  background: var(--muted);
  position: relative;
  transition: width 0.3s, background 0.3s;
}

.btn-ghost .arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 6px solid var(--muted);
  transition: border-color 0.3s;
}

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

.btn-ghost:hover .arrow {
  width: 60px;
  background: var(--gold);
}

.btn-ghost:hover .arrow::after {
  border-left-color: var(--gold);
}

.hero-stats {
  position: absolute;
  bottom: 60px;
  right: 60px;
  z-index: 2;
  display: flex;
  gap: 48px;
  opacity: 0;
  animation: heroReveal 1s ease 1.2s forwards;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroReveal 1s ease 1.4s forwards;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.5);
    opacity: 0.4;
  }
}

.scroll-text {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
}

/* SECTION SHARED */
section {
  position: relative;
  overflow: hidden;
}

.section-label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: 1px;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* MARQUEE */
.marquee-wrap {
  background: var(--gold);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 4px;
  color: var(--charcoal);
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--charcoal);
  border-radius: 50%;
  opacity: 0.4;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ABOUT */
#about {
  padding: 140px 60px;
  background: var(--charcoal-mid);
}

.about-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  background-image: url('images/interior.png');
  background-size: cover;
  background-position: center;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.about-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--charcoal) 0%, transparent 50%);
}

.about-img-icon {
  font-size: 80px;
  opacity: 0.15;
}

.about-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
}

.about-corner.tl {
  top: -1px;
  left: -1px;
  border-top-width: 2px;
  border-left-width: 2px;
}

.about-corner.br {
  bottom: -1px;
  right: -1px;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

.about-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--charcoal);
  line-height: 1;
}

.about-badge-text {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--charcoal);
  text-transform: uppercase;
}

.about-content {}

.about-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
  margin: 32px 0 48px;
}

.about-body p+p {
  margin-top: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.feature-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.feature-text strong {
  color: var(--white);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

/* SERVICES */
#services {
  padding: 140px 60px;
  background: var(--charcoal);
}

.services-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

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

.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  border-radius: 4px;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--border);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: rgba(201, 168, 76, 0.08);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 30px;
  transition: color 0.4s;
}

.service-card:hover .service-num {
  color: rgba(201, 168, 76, 0.15);
}

.service-icon {
  font-size: 32px;
  margin-bottom: 28px;
  filter: grayscale(1);
  transition: filter 0.4s;
}

.service-card:hover .service-icon {
  filter: none;
}

.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.service-card:hover .service-name {
  color: var(--gold);
}

.service-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 28px;
}

.service-features {
  list-style: none;
}

.service-features li {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li::before {
  content: '—';
  color: var(--gold);
  font-size: 10px;
}

.service-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 32px;
  transition: gap 0.3s;
}

.service-cta:hover {
  gap: 18px;
}

.service-cta span {
  font-size: 18px;
}

/* WHY CHOOSE US */
#why {
  padding: 140px 60px;
  background: var(--charcoal-light);
}

.why-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.why-header {
  text-align: center;
  margin-bottom: 100px;
}

.why-header .section-label {
  justify-content: center;
}

.why-header .section-label::before {
  display: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.why-item {
  text-align: center;
}

.why-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  border: 1px solid var(--border);
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  position: relative;
  transition: all 0.4s;
}

.why-icon-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--gold);
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.4s;
}

.why-item:hover .why-icon-wrap::before {
  opacity: 1;
  transform: scale(1.05);
}

.why-item:hover .why-icon-wrap {
  background: rgba(201, 168, 76, 0.12);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.15);
}

.why-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.why-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

/* PRICING */
#pricing {
  padding: 140px 60px;
  background: var(--charcoal-light);
}

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

.pricing-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: 4px;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.pricing-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
}

.pricing-item:last-child {
  border-bottom: none;
}

.pricing-item .label {
  font-size: 14px;
  color: var(--muted);
}

.pricing-item .price {
  font-weight: 600;
  color: var(--gold);
}

.pricing-item.highlight .label {
  color: var(--white);
  font-weight: 500;
}

.pricing-card.van-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.pricing-card.van-card .van-starting {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 10px;
}

.pricing-card.van-card .van-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
}

.pricing-card.van-card .van-footer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* TESTIMONIALS */
#testimonials {
  padding: 140px 60px;
  background: var(--charcoal);
}

.testimonials-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.testimonials-header {
  margin-bottom: 80px;
}

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

.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px) saturate(160%);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  border-radius: 4px;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 180px;
  color: rgba(201, 168, 76, 0.05);
  position: absolute;
  top: -20px;
  left: 20px;
  line-height: 1;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 36px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 500;
}

.author-detail {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-top: 3px;
}

/* CTA */
#contact {
  padding: 160px 60px;
  background: var(--charcoal-mid);
  position: relative;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.9;
  margin-bottom: 32px;
}

.contact-title span {
  color: var(--gold);
}

.contact-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 550px;
  margin: 0 auto 60px;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.contact-item-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-item-val {
  font-size: 16px;
  font-weight: 500;
}

.contact-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.gold-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 auto 60px;
}

/* FOOTER */
footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 4px;
}

.footer-logo span {
  color: var(--gold);
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s;
}

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

/* MOBILE */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-image-wrap {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 20px 24px;
  }

  nav.scrolled {
    padding: 14px 24px;
  }

  .nav-links {
    display: none;
  }

  #hero {
    padding: 0 24px;
  }

  .hero-content {
    padding: 0;
  }

  .hero-stats {
    right: 24px;
    bottom: 120px;
    gap: 28px;
  }

  .stat-num {
    font-size: 36px;
  }

  #about,
  #services,
  #why,
  #testimonials,
  #contact {
    padding: 100px 24px;
  }

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

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

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

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 40px 24px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-details {
    gap: 32px;
  }

  .contact-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-scroll {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card {
    padding: 32px 24px;
  }
}