:root {
  --font-sans: 'Hanken Grotesk', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: 'Marcellus', Georgia, serif;
  --font-display-italic: 'Cormorant Garamond', Georgia, serif;
  --font-eyebrow: 'Hanken Grotesk', ui-sans-serif, system-ui, -apple-system, sans-serif;

  --color-ink-900: #08111F;
  --color-ink-800: #0E1A2E;
  --color-ink-700: #152540;
  --color-ink-600: #1F3358;
  --color-cream-50: #F1F5FB;
  --color-cream-100: #E4ECF7;
  --color-cream-300: #A2B4CE;
  /* cream-450: lighter muted tone for small (<=14px) text — WCAG AA (>=4.5:1
     on ink surfaces). cream-500 stays unchanged for larger / decorative use. */
  --color-cream-450: #8A9CB3;
  --color-cream-500: #73869F;
  --color-copper-400: #86BDE7;
  --color-copper-500: #5FA3DD;
  --color-copper-600: #3F84C2;
  --color-copper-700: #2A6BA3;
  --color-gold-300: #E8CC85;
  --color-gold-400: #D9B863;
  --color-gold-500: #C9A961;
  --color-gold-600: #A88A48;
  
  --color-success: #5FA3DD;
  --color-warning: #C9A961;
  --color-error: #DC2626;

  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;

  --motion-fast: 150ms;
  --motion-base: 220ms;
  --motion-slow: 420ms;
  --motion-reveal: 900ms;
  --motion-ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(228, 236, 247, 0.04);
  --shadow-elevated: 0 12px 32px -16px rgba(0, 0, 0, 0.6), 0 4px 10px -4px rgba(0, 0, 0, 0.4);
  --shadow-copper-glow: 0 24px 64px -24px rgba(0, 0, 0, 0.7), 0 12px 32px -16px rgba(95, 163, 221, 0.25);
}

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

html {
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  background-color: var(--color-ink-900);
  color: var(--color-cream-50);
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--color-ink-900);
  color: var(--color-cream-100);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  position: relative;
}

/* Skip link — visually hidden until focused, then visible top-left */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
  transform: translateY(-130%);
  margin: 8px;
  padding: 10px 18px;
  background: var(--color-copper-500);
  color: var(--color-ink-900);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: transform var(--motion-fast) var(--motion-ease);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--color-cream-50);
  outline-offset: 2px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--color-cream-50);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  color: var(--color-cream-300);
}

/* Editorial utilities */
.display-soft {
  font-family: var(--font-display-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--color-gold-300);
}

.hairline {
  border: 1px solid rgba(228, 236, 247, 0.08);
}

.hairline-top {
  border-top: 1px solid rgba(228, 236, 247, 0.08);
}

.hairline-bottom {
  border-bottom: 1px solid rgba(228, 236, 247, 0.08);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Layout container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 32px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 14px 28px;
  min-height: 48px;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--motion-base) var(--motion-ease-out-expo);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold-400), var(--color-gold-500));
  color: var(--color-ink-900);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #E2C878, #D1AF58);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(217, 184, 99, 0.22);
}

.btn-primary:focus-visible {
  outline: 2px solid #F4E3A6;
  outline-offset: 3px;
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-cream-100);
  border-color: rgba(228, 236, 247, 0.15);
}

.btn-ghost:hover {
  background-color: rgba(228, 236, 247, 0.04);
  border-color: var(--color-copper-500);
  color: var(--color-cream-50);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn svg {
  margin-left: 8px;
  width: 16px;
  height: 16px;
  transition: transform var(--motion-fast);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 50px;
  background-color: rgba(201, 169, 97, 0.12);
  color: var(--color-gold-300);
  border: 1px solid rgba(201, 169, 97, 0.3);
}

/* Navigation Header */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(8, 17, 31, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(228, 236, 247, 0.06);
  padding: 16px 0;
  transition: background-color var(--motion-base);
}

.header-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-cream-50);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 24px;
  height: 24px;
  background-color: var(--color-copper-500);
  border-radius: 6px;
  display: inline-block;
}

.logo-img { height: 46px; width: auto; display: block; }
.footer-brand .logo-img { height: 50px; }
@media (max-width: 600px) { .logo-img { height: 38px; } }

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-cream-300);
  text-decoration: none;
  transition: color var(--motion-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-copper-500);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-cream-100);
  position: absolute;
  left: 10px;
  transition: transform var(--motion-base), opacity var(--motion-base);
}

.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 22px; }
.hamburger span:nth-child(3) { top: 30px; }

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Main Spacing (offsets header) */
main {
  padding-top: 80px;
}

/* Sections */
.section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.section-lg {
  padding: 120px 0;
}

.bg-ink-800 {
  background-color: var(--color-ink-800);
}

.bg-ink-900 {
  background-color: var(--color-ink-900);
}

.section-eyebrow {
  font-family: var(--font-eyebrow);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-copper-500);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 5.2vw, 2.6rem);
  color: var(--color-cream-50);
  margin-bottom: 24px;
  max-width: 700px;
}

.section-title-large {
  font-size: clamp(2.4rem, 7vw, 3.4rem);
  line-height: 1.04;
  color: var(--color-cream-50);
  margin-bottom: 24px;
  max-width: 800px;
}

.section-lead {
  font-size: clamp(1rem, 1.6vw, 1.0625rem);
  color: var(--color-cream-300);
  max-width: 640px;
  margin-bottom: 40px;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: radial-gradient(circle at 70% 30%, rgba(95, 163, 221, 0.08) 0%, transparent 60%);
}

/* Hero — background image variant (homepage) */
.hero-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 72vh;
  display: flex;
  align-items: center;
}

.hero-bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 17, 31, 0.97) 0%,
    rgba(8, 17, 31, 0.90) 38%,
    rgba(8, 17, 31, 0.60) 62%,
    rgba(8, 17, 31, 0.20) 100%
  );
  z-index: 0;
}

.hero-bg-image .container {
  position: relative;
  z-index: 1;
}

.hero-bg-image .hero-content {
  max-width: 600px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  min-height: 62vh;
}

.hero-content {
  z-index: 10;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* Tertiary tap-to-call — text style, not a heavy button */
.hero-call {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--color-cream-50);
  text-decoration: none;
  border-bottom: 1px solid rgba(228, 236, 247, 0.28);
  padding: 0 2px;
  transition: color var(--motion-fast), border-color var(--motion-fast);
}

.hero-call:hover,
.hero-call:focus-visible {
  color: var(--color-gold-300);
  border-bottom-color: var(--color-gold-300);
}

.hero-media {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(228, 236, 247, 0.16);
  box-shadow: var(--shadow-copper-glow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badges {
  margin-top: 32px;
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}

.hero-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-cream-300);
}

.hero-badges li::before {
  content: "★";
  color: var(--color-copper-500);
  font-size: 10px;
}

/* Marquee strip */
.marquee-container {
  overflow: hidden;
  padding: 24px 0;
  background-color: var(--color-ink-800);
  border-top: 1px solid rgba(228, 236, 247, 0.06);
  border-bottom: 1px solid rgba(228, 236, 247, 0.06);
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-cream-450);
  padding: 0 40px;
}

.marquee-item::after {
  content: "·";
  margin-left: 80px;
  color: var(--color-copper-500);
  font-size: 24px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Service Preview Cards Grid (Home) */
.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-preview-card {
  background-color: var(--color-ink-800);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(228, 236, 247, 0.08);
  transition: all var(--motion-slow) var(--motion-ease-out-expo);
  display: flex;
  flex-direction: column;
}

.service-preview-card:hover {
  transform: translateY(-6px);
  border-color: rgba(95, 163, 221, 0.4);
}

.service-preview-card.featured {
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.08) 0%, rgba(201, 169, 97, 0) 100%);
  border-color: rgba(201, 169, 97, 0.4);
}

.card-img-wrapper {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--motion-slow);
}

.service-preview-card:hover .card-img-wrapper {
  transform: scale(1.02);
  transition: transform var(--motion-base) var(--motion-ease);
}

.card-body {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-header-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}

.card-title {
  font-size: 22px;
  color: var(--color-cream-50);
}

.card-price-label {
  font-family: var(--font-sans);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--color-cream-450);
  margin-right: 4px;
}

.card-price {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-gold-300);
}

.card-kicker {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-copper-500);
  margin-bottom: 16px;
}

.card-desc {
  font-size: 13.5px;
  color: var(--color-cream-300);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Features checklist */
.features-list {
  list-style: none;
  margin-bottom: 28px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--color-cream-100);
  margin-bottom: 10px;
}

.features-list svg {
  color: var(--color-copper-500);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Pricing Switcher Tabs */
.price-switcher-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.price-switcher {
  display: inline-flex;
  background-color: var(--color-ink-800);
  border: 1px solid rgba(228, 236, 247, 0.08);
  padding: 6px;
  border-radius: var(--radius-lg);
  gap: 4px;
}

.price-tab-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-cream-300);
  padding: 10px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--motion-fast);
}

.price-tab-btn.active {
  background: linear-gradient(135deg, var(--color-gold-400), var(--color-gold-500));
  color: var(--color-ink-900);
  box-shadow: 0 4px 12px rgba(217, 184, 99, 0.18);
}

.price-tab-btn:hover:not(.active) {
  color: var(--color-cream-50);
  background-color: rgba(228, 236, 247, 0.03);
}

/* Comparison matrix style */
.compare-section {
  padding-bottom: 100px;
}

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(228, 236, 247, 0.08);
  background-color: var(--color-ink-800);
}

/* Mobile scroll affordance for the comparison table */
.table-hint { display: none; }
@media (max-width: 767px) {
  .table-hint {
    display: block;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--color-copper-400);
    margin-top: 12px;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 700px;
}

th, td {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(228, 236, 247, 0.06);
  font-size: 13.5px;
}

th {
  background-color: rgba(8, 17, 31, 0.4);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-cream-50);
}

tr:last-child td {
  border-bottom: none;
}

td.feature-name {
  color: var(--color-cream-50);
  font-weight: 500;
}

td svg {
  color: var(--color-copper-500);
}

td.check-yes {
  color: var(--color-copper-400);
  font-weight: 500;
}

/* Two ways section grid */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.approach-card {
  background-color: var(--color-ink-800);
  border-radius: var(--radius-2xl);
  padding: 48px;
  border: 1px solid rgba(228, 236, 247, 0.08);
  display: flex;
  flex-direction: column;
}

.approach-number {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--color-gold-300);
  margin-bottom: 24px;
}

.approach-title {
  font-size: 26px;
  color: var(--color-cream-50);
  margin-bottom: 16px;
}

.approach-desc {
  font-size: 14px;
  color: var(--color-cream-300);
  margin-bottom: 32px;
  flex-grow: 1;
}

.approach-bullets {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.approach-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--color-cream-100);
}

.approach-bullets li::before {
  content: "✓";
  color: var(--color-copper-500);
  font-weight: bold;
}

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

.testimonial-card {
  background-color: var(--color-ink-800);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid rgba(228, 236, 247, 0.08);
}

.testimonial-stars {
  color: var(--color-gold-400);
  font-size: 16px;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-cream-100);
  font-style: italic;
  margin-bottom: 24px;
}

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

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(95, 163, 221, 0.12);
  color: var(--color-copper-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 13px;
}

.author-info .author-name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  color: var(--color-cream-50);
}

.author-info p {
  font-size: 11px;
  color: var(--color-cream-450);
}

/* Reviews Carousel */
.reviews-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(228, 236, 247, 0.15) transparent;
  flex: 1;
  min-width: 0;
}

.reviews-track > .testimonial-card {
  scroll-snap-align: start;
  margin: 0;
  min-height: 200px;
}

.reviews-track:focus-visible {
  outline: 2px solid var(--color-copper-500);
  outline-offset: 4px;
}

.reviews-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(228, 236, 247, 0.15);
  background-color: rgba(228, 236, 247, 0.06);
  color: var(--color-cream-100);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--motion-base), border-color var(--motion-base);
}

.reviews-btn:hover {
  background-color: rgba(228, 236, 247, 0.12);
  border-color: rgba(228, 236, 247, 0.3);
}

.reviews-btn:focus-visible {
  outline: 2px solid var(--color-copper-500);
  outline-offset: 2px;
}

@media (max-width: 600px) {
  .reviews-track {
    grid-auto-columns: minmax(82vw, 360px);
  }

  .reviews-btn {
    display: none;
  }
}

/* FAQ Accordion Styling */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(228, 236, 247, 0.08);
  padding: 24px 0;
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--color-cream-50);
}

.faq-question {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  padding-right: 24px;
}

.faq-icon {
  color: var(--color-cream-300);
  transition: transform var(--motion-base);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--color-copper-500);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--motion-slow) var(--motion-ease-out-expo);
}

.faq-content p {
  padding-top: 16px;
  font-size: 14px;
  color: var(--color-cream-300);
  line-height: 1.6;
}

/* Call to Action Grid Banner */
.cta-banner {
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(228, 236, 247, 0.16);
  background: linear-gradient(160deg, rgba(201, 169, 97, 0.08) 0%, rgba(95, 163, 221, 0.04) 60%, transparent 100%);
  padding: 80px;
  text-align: center;
}

.cta-banner .section-title {
  margin: 0 auto 24px;
}

.cta-banner .section-lead {
  margin: 0 auto 40px;
}

/* Booking Form Elements */
.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.booking-card {
  background-color: var(--color-ink-800);
  border-radius: var(--radius-2xl);
  padding: 40px;
  border: 1px solid rgba(228, 236, 247, 0.08);
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-cream-50);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  height: 50px;
  background-color: var(--color-ink-900);
  border: 1px solid rgba(228, 236, 247, 0.1);
  border-radius: var(--radius-md);
  padding: 0 16px;
  color: var(--color-cream-50);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.3;
  transition: border-color var(--motion-fast), box-shadow var(--motion-fast);
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23A2B4CE' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-control:focus,
.form-control:focus-visible {
  outline: none;
  border-color: var(--color-copper-500);
  box-shadow: 0 0 0 3px rgba(95, 163, 221, 0.18);
}

textarea.form-control {
  height: auto;
  min-height: 120px;
  padding: 14px 16px;
  resize: vertical;
}

/* Booking add-on options */
.addons-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.addon-option {
  background-color: var(--color-ink-900);
  border: 1px solid rgba(228, 236, 247, 0.08);
  padding: 14px 18px;
  min-height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: border-color var(--motion-fast), background-color var(--motion-fast);
}
.addon-option:hover { border-color: rgba(95,163,221,.35); }
.addon-option:has(.addon-checkbox:checked) {
  border-color: var(--color-copper-500);
  background-color: var(--color-ink-800);
}
.addon-text { display: flex; flex-direction: column; gap: 2px; }
.addon-name { font-size: 14px; font-weight: 500; color: var(--color-cream-50); }
.addon-desc { font-size: 11.5px; color: var(--color-cream-450); }
.addon-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.addon-price { font-size: 13px; color: var(--color-gold-300); font-weight: 600; }
.addon-checkbox { width: 22px; height: 22px; accent-color: var(--color-copper-500); cursor: pointer; flex-shrink: 0; }

/* Custom checkbox/radio cards */
.size-selector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.size-select-card {
  background-color: var(--color-ink-900);
  border: 1px solid rgba(228, 236, 247, 0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--motion-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.size-select-card.active {
  border-color: var(--color-copper-500);
  background-color: rgba(95, 163, 221, 0.08);
}

.size-select-card .size-icon {
  font-size: 24px;
}

.size-select-card .size-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-cream-50);
}

/* Sidebar booking summary */
.booking-summary-sidebar {
  position: sticky;
  top: 110px;
  background-color: var(--color-ink-900);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid rgba(228, 236, 247, 0.08);
}

.summary-heading {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-copper-500);
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 13.5px;
}

.summary-row.total {
  border-top: 1px solid rgba(228, 236, 247, 0.08);
  padding-top: 16px;
  margin-top: 16px;
  margin-bottom: 0;
}

.summary-label {
  color: var(--color-cream-300);
}

.summary-val {
  color: var(--color-cream-50);
  font-weight: 500;
}

.summary-row.total .summary-val {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--color-gold-300);
}

.info-note {
  display: flex;
  gap: 12px;
  background-color: rgba(95, 163, 221, 0.08);
  border: 1px solid rgba(95, 163, 221, 0.2);
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 12px;
  color: var(--color-copper-400);
  margin-top: 24px;
}

/* Simple Success State Screen */
.success-screen {
  text-align: center;
  padding: 48px 0;
  max-width: 480px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(95, 163, 221, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-copper-500);
  font-size: 38px;
  margin-bottom: 32px;
}

.success-screen h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.success-screen p {
  font-size: 14px;
  color: var(--color-cream-300);
  margin-bottom: 32px;
}

/* Footer Section */
.footer-nav {
  background-color: var(--color-ink-900);
  border-top: 1px solid rgba(228, 236, 247, 0.06);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.6fr);
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand p {
  font-size: 13.5px;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h3 {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-cream-450);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 13px;
  color: var(--color-cream-300);
  text-decoration: none;
  transition: color var(--motion-fast);
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.footer-col a:hover {
  color: var(--color-copper-500);
}

.footer-bottom {
  border-top: 1px solid rgba(228, 236, 247, 0.04);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--color-cream-450);
}

.footer-bottom a {
  color: var(--color-cream-450);
  text-decoration: none;
  margin-left: 24px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.footer-bottom a:hover {
  color: var(--color-cream-300);
}

.footer-bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-bottom a { margin-left: 0; }
}

/* Scroll reveal utility classes */
/* Progressive enhancement: visible by default; only hide when JS is active.
   Prevents blank page if JS fails to run/parse (e.g., Safari). */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--motion-reveal) var(--motion-ease), transform var(--motion-reveal) var(--motion-ease);
}

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

.reveal-delay-1 {
  transition-delay: 150ms;
}

.reveal-delay-2 {
  transition-delay: 300ms;
}

/* Layout utility */
.text-center {
  text-align: center;
}

/* Response for screens */
@media (max-width: 1024px) {
  .hero-grid, .booking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .services-preview-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .approach-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-ink-800);
    border-left: 1px solid rgba(228, 236, 247, 0.08);
    flex-direction: column;
    padding: 100px 40px;
    align-items: flex-start;
    gap: 24px;
    transition: right var(--motion-base);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .services-preview-grid, .footer-grid, .form-row, .size-selector-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .cta-banner {
    padding: 40px 24px;
  }
  
  .approach-card {
    padding: 32px;
  }
  
  .approach-bullets {
    grid-template-columns: 1fr;
  }
}

/* Trust bar */
.trust-bar { background: var(--color-ink-700); border-top: 1px solid rgba(228,236,247,.08); border-bottom: 1px solid rgba(228,236,247,.08); }
.trust-bar-inner { display:flex; flex-wrap:wrap; gap:8px 28px; justify-content:center; align-items:center; padding:14px 24px; }
.trust-item { font-size:13px; font-weight:500; color:var(--color-cream-100); letter-spacing:.01em; white-space:nowrap; }
.trust-item:first-child { color:var(--color-gold-300); }
@media (max-width:600px){ .trust-bar-inner{ gap:6px 16px; } .trust-item{ font-size:12px; } }

/* Sticky mobile CTA */
.sticky-cta { position:fixed; left:0; right:0; bottom:0; z-index:9998; display:flex; gap:8px; padding:10px 12px calc(10px + env(safe-area-inset-bottom)); background:rgba(8,17,31,.92); backdrop-filter:blur(8px); border-top:1px solid rgba(228,236,247,.1); transform:translateY(110%); transition:transform var(--motion-base) var(--motion-ease); }
.sticky-cta.show { transform:translateY(0); }
.sticky-cta a { flex:1; min-height:48px; display:flex; align-items:center; justify-content:center; padding:0 12px; border-radius:var(--radius-md); font-weight:600; font-size:14px; text-decoration:none; }
.sticky-cta-call { flex:0 0 38%; background:var(--color-ink-600); color:var(--color-cream-50); }
.sticky-cta-book { background:linear-gradient(135deg, var(--color-gold-400), var(--color-gold-500)); color:var(--color-ink-900); }
@media (min-width:768px){ .sticky-cta{ display:none; } }

/* Task 8 — Hero parallax layer (Safari-safe: non-negative z-index, overflow:hidden) */
.hero-parallax { position:relative; overflow:hidden; isolation:isolate; display:flex; align-items:center; min-height:600px; min-height:clamp(560px, 88svh, 820px); }
@supports (height: 100dvh) { .hero-parallax { min-height:clamp(560px, 88dvh, 820px); } }
.hero-parallax > .container { width:100%; }
.hero-media-layer { position:absolute; inset:0; z-index:0; }
.hero-media-layer img { width:100%; height:100%; object-fit:cover; transform:scale(1.08); transform-origin:center; }
/* Scrim protects the text column (left) but lets the glossy paint + sky reflection
   breathe on the centre/right — the hero must PROVE "show-car shine", not hide it. */
.hero-scrim { position:absolute; inset:0; z-index:1; pointer-events:none;
  background:
    linear-gradient(105deg, rgba(8,17,31,.96) 0%, rgba(8,17,31,.88) 28%, rgba(8,17,31,.48) 48%, rgba(8,17,31,.16) 68%, rgba(8,17,31,.04) 100%),
    linear-gradient(to bottom, rgba(8,17,31,.52) 0%, rgba(8,17,31,.08) 38%, rgba(8,17,31,.28) 100%),
    radial-gradient(circle at 78% 30%, rgba(217,184,99,.10), transparent 46%); }
.hero-parallax .container { position:relative; z-index:2; }
/* Mobile: stronger, more vertical scrim for legibility over daylight image */
@media (max-width:767px){
  .hero-parallax { min-height:100svh; }
  .hero-scrim { background:linear-gradient(to bottom, rgba(8,17,31,.95) 0%, rgba(8,17,31,.88) 30%, rgba(8,17,31,.62) 56%, rgba(8,17,31,.30) 74%, rgba(8,17,31,.74) 100%); }
}

/* Task 9 — Full-bleed reveal section */
.bleed-reveal { min-height:min(82svh,860px); display:grid; place-items:center; overflow:hidden; background:var(--color-ink-900); }
.bleed-frame { position:relative; width:100%; height:min(78svh,760px); overflow:hidden; border-radius:24px; }
.bleed-frame img { width:100%; height:100%; object-fit:cover; }
.bleed-scrim { position:absolute; inset:0; pointer-events:none; background:
  linear-gradient(to bottom, rgba(8,17,31,.55) 0%, rgba(8,17,31,.12) 32%, rgba(8,17,31,.30) 60%, rgba(8,17,31,.92) 100%); }
.bleed-caption { position:absolute; left:0; right:0; bottom:9%; text-align:center; padding:0 24px; z-index:2; text-shadow:0 2px 18px rgba(8,17,31,.85); }
.bleed-caption .section-eyebrow { color:var(--color-gold-300); }
.bleed-caption .section-title { color:#fff; }
@media (max-width:767px){ .bleed-reveal{ padding:0 12px; } .bleed-frame{ height:min(60svh,500px); border-radius:16px; } }

/* Task 10 — Resultados Reales grid */
.results-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.result-slot { margin:0; aspect-ratio:4/3; border-radius:var(--radius-lg); overflow:hidden; border:1px solid rgba(228,236,247,.10); }
.result-slot img { width:100%; height:100%; object-fit:cover; display:block; }
.result-placeholder { width:100%; height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; text-align:center; color:var(--color-cream-450); font-size:12px; letter-spacing:.04em; text-transform:uppercase;
  background:linear-gradient(160deg, var(--color-ink-700) 0%, var(--color-ink-800) 100%); }
.result-placeholder::before { content:"✦"; color:var(--color-gold-400); font-size:20px; }
@media (max-width:767px){ .results-grid{ grid-template-columns:1fr; max-width:420px; margin:0 auto; } }

/* Task 13 — Full-bleed clip-path initial state (desktop, motion OK, only if supported).
   @supports guards Safari; if clip-path round unsupported, frame keeps border-radius (no broken state). */
@supports (clip-path: inset(0 10% 0 10% round 24px)) {
  @media (min-width:768px) and (prefers-reduced-motion:no-preference){
    .bleed-frame { clip-path: inset(0% 13% 0% 13% round 24px); border-radius:0; will-change: clip-path; }
  }
}

/* Task 14 — Card hover: wrapper owns the scale, GSAP owns img transform */
/* (img hover rule moved from img to wrapper above; overflow:hidden already set) */

/* Task 15 — Reduced-motion: safe static final states */
@media (prefers-reduced-motion: reduce) {
  .hero-media-layer img { transform: none; }
  .bleed-frame { clip-path: inset(0 0 0 0 round 16px); }
  html { scroll-behavior: auto; }
  .marquee-content { animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* About — Tres principios (editorial numbered cards) */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.principle-card {
  position: relative;
  padding: 36px 28px 32px;
  border: 1px solid rgba(228, 236, 247, 0.08);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(31,51,88,0.18) 0%, rgba(14,26,46,0) 70%);
  transition: transform var(--motion-base) var(--motion-ease), border-color var(--motion-base);
}
.principle-card:hover {
  transform: translateY(-6px);
  border-color: rgba(95,163,221,0.35);
}
.principle-num {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  color: var(--color-gold-400);
  display: block;
  margin-bottom: 18px;
}
.principle-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-cream-50);
  margin-bottom: 10px;
  letter-spacing: 0;
}
.principle-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-cream-300);
}
@media (max-width: 860px) { .principles-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

/* ── Services page: unified card components (issues #13 #14 #15) ─────────── */

/* Card eyebrow — optional category label inside card */
.card-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-copper-600);
  margin-bottom: 10px;
}

/* Card duration line — appears on every service card */
.card-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-cream-450);
  margin-bottom: 14px;
}

.card-duration svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--color-copper-600);
}

/* "Desde" prefix on price — small label before the price figure */
.card-price-prefix {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-cream-450);
  margin-right: 4px;
  vertical-align: middle;
}

/* Feature sub-group label inside card (Exterior / Interior / Incluye) */
.card-features-label {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-copper-500);
  margin-bottom: 10px;
  margin-top: 4px;
  font-weight: 600;
}

.card-features-label--gold {
  color: var(--color-gold-300);
}

/* ── Specialized services category header block (issue #15) ─────────────── */

.spec-category-header {
  margin-bottom: 36px;
}

.spec-category-header__inner {
  max-width: 600px;
  margin-bottom: 24px;
}

.spec-category-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-copper-500);
  margin-bottom: 10px;
}

.spec-category-title {
  font-size: clamp(1.55rem, 4vw, 2.1rem);
  color: var(--color-cream-50);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.spec-category-desc {
  font-size: 14px;
  color: var(--color-cream-300);
  line-height: 1.6;
  max-width: 520px;
}

.spec-category-rule {
  border: none;
  border-top: 1px solid rgba(228, 236, 247, 0.10);
  margin: 0;
}

/* About — Founder story (signed first-person testimony) */
.founder-story { max-width: 760px; margin: 0 auto; }
.founder-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.45rem, 3.4vw, 2.05rem);
  line-height: 1.32;
  color: var(--color-cream-50);
  margin: 0 0 36px;
  padding-left: 22px;
  border-left: 3px solid var(--color-gold-400);
}
.founder-quote .display-soft { color: var(--color-gold-300); }
.founder-figure {
  float: right;
  width: min(300px, 42%);
  margin: 6px 0 24px 32px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.28);
  background: var(--color-ink-800);
}
.founder-figure img { width: 100%; height: auto; display: block; }
.founder-figure figcaption {
  font-size: 12px;
  line-height: 1.45;
  color: var(--color-cream-300);
  padding: 10px 14px 14px;
  text-align: left;
}
@media (max-width: 600px) {
  .founder-figure { float: none; width: 100%; margin: 12px 0 24px; }
}
.founder-story p {
  font-size: clamp(1rem, 1.5vw, 1.075rem);
  line-height: 1.78;
  color: var(--color-cream-300);
  margin-bottom: 20px;
}
.founder-sign {
  margin-top: 30px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--color-cream-100);
}
.founder-sign span {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-cream-450);
  margin-top: 6px;
}

/* ── Gallery captions + lightbox ───────────────────────────── */
.result-slot { cursor: pointer; }
.result-slot .result-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 16px 13px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  color: var(--color-cream-50);
  background: linear-gradient(to top, rgba(8,17,31,.94) 0%, rgba(8,17,31,.5) 55%, transparent 100%);
  opacity: 0; transform: translateY(6px);
  transition: opacity .35s var(--motion-ease-out-expo), transform .35s var(--motion-ease-out-expo);
  pointer-events: none;
}
.result-slot:hover .result-cap, .result-slot:focus-visible .result-cap { opacity: 1; transform: none; }
.result-slot::after {
  content: ""; position: absolute; top: 12px; right: 12px; width: 36px; height: 36px;
  border-radius: 9px; background: rgba(8,17,31,.62) no-repeat center/18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23F1F5FB' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3M11 8v6M8 11h6'/%3E%3C/svg%3E");
  border: 1px solid rgba(241,245,251,.18);
  opacity: 0; transition: opacity .3s;
}
.result-slot:hover::after, .result-slot:focus-visible::after { opacity: 1; }
@media (hover: none) { .result-slot .result-cap { opacity: 1; transform: none; } .result-slot::after { opacity: .9; } }

.lightbox {
  position: fixed; inset: 0; z-index: 2000; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(5,10,20,.93); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; animation: lbfade .25s ease; }
@keyframes lbfade { from { opacity: 0; } to { opacity: 1; } }
.lightbox figure { margin: 0; max-width: min(1100px, 92vw); text-align: center; }
.lightbox img { max-width: 100%; max-height: 78vh; border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox figcaption {
  margin-top: 16px; font-family: var(--font-sans); color: var(--color-cream-100);
  font-size: 15px; letter-spacing: .02em;
}
.lb-btn {
  position: absolute; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  color: #fff; width: 48px; height: 48px; border-radius: 50%; font-size: 22px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.lb-btn:hover { background: rgba(255,255,255,.18); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) { .lb-prev { left: 8px; } .lb-next { right: 8px; } .lb-btn { width: 42px; height: 42px; font-size: 19px; } }

/* ── Cursor-reactive premium motion ─────────────────────────────────────
   Gate: JS adds `.motion-on` to <html> ONLY when (pointer:fine) AND
   (prefers-reduced-motion:no-preference). Without that class every rule below
   is inert and the glow element is never created — so touch, mobile, and
   reduced-motion users get a completely static page. transform/opacity only. */

/* Trailing spotlight that follows the cursor with elegant lag (rAF + lerp). */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 920px; height: 920px; border-radius: 50%;
  pointer-events: none; z-index: 1; opacity: 0;
  background: radial-gradient(circle, rgba(232, 204, 133, 0.13), rgba(95, 163, 221, 0.05) 38%, transparent 62%);
  transition: opacity 0.6s var(--motion-ease); will-change: transform;
}
.motion-on .cursor-glow.is-active { opacity: 1; }

/* Hero pointer-depth: rAF translates/rotates the media CONTAINER. GSAP animates
   the inner <img> (scale on scroll), so the two never write the same node. */
.motion-on .hero-media-layer { will-change: transform; }

/* Service card: soft interior glow tracking the cursor; content stays above it. */
.motion-on .service-preview-card { position: relative; }
.motion-on .service-preview-card > * { position: relative; z-index: 1; }
.motion-on .service-preview-card::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(240px circle at var(--gx, 50%) var(--gy, 50%), rgba(95, 163, 221, 0.16), transparent 60%);
  transition: opacity 0.4s var(--motion-ease);
}
.motion-on .service-preview-card:hover::after { opacity: 1; }

/* Magnetic primary CTA: rAF writes --mx/--my (lerped); transform composes the
   hover lift so the two don't fight over the `transform` property. */
.motion-on .btn-primary { transform: translate3d(var(--mx, 0px), var(--my, 0px), 0); will-change: transform; }
.motion-on .btn-primary:hover { transform: translate3d(var(--mx, 0px), calc(var(--my, 0px) - 2px), 0); }

/* Hero headline word-by-word reveal (enhances the existing hero-content reveal;
   no new LCP cost beyond the reveal that already runs). Inert without .motion-on. */
.motion-on .hero-content .word-reveal { display: inline-block; opacity: 0; transform: translateY(14px); }
.motion-on .hero-content.in .word-reveal {
  opacity: 1; transform: none;
  transition: opacity 0.6s var(--motion-ease-out-expo), transform 0.6s var(--motion-ease-out-expo);
  transition-delay: var(--wd, 0ms);
}

/* ── Vehicle-size selector: refined text cards (no icon) ─────────────────── */
.size-select-card { justify-content: center; gap: 5px; padding: 18px 16px; }
.size-sub { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-cream-450); transition: color var(--motion-base) var(--motion-ease); }
.size-select-card:hover .size-sub { color: var(--color-cream-300); }
.size-select-card.active .size-sub { color: var(--color-copper-400); }

/* ── About: Training & craft photo strip ────────────────────────────────── */
.craft-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.craft-figure { margin: 0; position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(228, 236, 247, 0.10); }
.craft-figure img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--motion-slow) var(--motion-ease); }
.craft-figure:hover img { transform: scale(1.04); }
.craft-figure figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 14px 12px;
  font-family: var(--font-sans); font-size: 12px; font-weight: 500; letter-spacing: 0.01em;
  color: var(--color-cream-50);
  background: linear-gradient(to top, rgba(8, 17, 31, 0.92) 0%, rgba(8, 17, 31, 0.4) 60%, transparent 100%);
}
@media (max-width: 900px) { .craft-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .craft-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
