/* ============================================
   ONYX LANDSCAPE — Design Tokens
   ============================================ */

:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(2.75rem, 0.5rem + 6.5vw, 7rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.9rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 1440px;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Switzer', 'Work Sans', sans-serif;
}

/* ---- DARK (brand default — onyx) ---- */
:root,
[data-theme='dark'] {
  --color-bg: #0c0c0a;
  --color-surface: #121210;
  --color-surface-2: #17170f;
  --color-surface-offset: #1c1b16;
  --color-surface-offset-2: #232219;
  --color-surface-dynamic: #2a291f;
  --color-divider: #26251d;
  --color-border: #34332a;

  --color-text: #f2efe5;
  --color-text-muted: #ada99a;
  --color-text-faint: #726e60;
  --color-text-inverse: #14140f;

  --color-primary: #d4af37;
  --color-primary-hover: #e8c65a;
  --color-primary-active: #b8932a;
  --color-primary-highlight: #3a331e;

  --color-secondary: #5c7048;
  --color-secondary-hover: #708a58;
  --color-secondary-active: #46592f;
  --color-secondary-highlight: #23291b;

  --color-error: #c0604a;
  --color-error-highlight: #3a2620;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.35);
  --shadow-md: 0 8px 24px oklch(0 0 0 / 0.45);
  --shadow-lg: 0 20px 50px oklch(0 0 0 / 0.55);
}

/* ---- LIGHT ---- */
[data-theme='light'] {
  --color-bg: #f8f6ef;
  --color-surface: #fdfcf8;
  --color-surface-2: #ffffff;
  --color-surface-offset: #f0ede2;
  --color-surface-offset-2: #e9e4d4;
  --color-surface-dynamic: #e2ddca;
  --color-divider: #e2ddce;
  --color-border: #d9d2bd;

  --color-text: #201f18;
  --color-text-muted: #635e4e;
  --color-text-faint: #9b9481;
  --color-text-inverse: #f8f6ef;

  --color-primary: #a8791a;
  --color-primary-hover: #8f6614;
  --color-primary-active: #745210;
  --color-primary-highlight: #f0e2bd;

  --color-secondary: #46592f;
  --color-secondary-hover: #384a24;
  --color-secondary-active: #2b3a1a;
  --color-secondary-highlight: #dfe6d3;

  --color-error: #a3402a;
  --color-error-highlight: #f0dcd5;

  --shadow-sm: 0 1px 2px oklch(0.2 0.02 80 / 0.08);
  --shadow-md: 0 8px 24px oklch(0.2 0.02 80 / 0.1);
  --shadow-lg: 0 20px 50px oklch(0.2 0.02 80 / 0.14);
}

/* ============================================
   GLOBAL
   ============================================ */

body {
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-12));
}

section {
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
}

a {
  color: inherit;
  text-decoration: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--color-primary);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h2.section-title {
  font-size: var(--text-2xl);
  margin-block: var(--space-4) var(--space-6);
}

.section-lede {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 56ch;
}

.section-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(var(--space-10), 6vw, var(--space-16));
}
.section-head .section-lede {
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.9rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  min-height: 44px;
}

.btn-primary {
  background: linear-gradient(180deg, var(--color-primary-hover), var(--color-primary));
  color: #14140a;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: linear-gradient(180deg, var(--color-primary-hover), var(--color-primary-hover));
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-text-inverse);
  border: 1px solid oklch(from var(--color-text-inverse) l c h / 0.4);
}
[data-theme='light'] .btn-outline,
.cta-banner .btn-outline {
  color: var(--color-text-inverse);
  border-color: oklch(from var(--color-text-inverse) l c h / 0.35);
}
.btn-outline:hover {
  background: oklch(from var(--color-text-inverse) l c h / 0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding-block: var(--space-4);
  transition:
    background var(--transition-interactive),
    box-shadow var(--transition-interactive),
    padding var(--transition-interactive),
    border-color var(--transition-interactive);
  border-bottom: 1px solid transparent;
}
.header--scrolled {
  background: oklch(from var(--color-bg) l c h / 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
  padding-block: var(--space-3);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.brand-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-inverse-header, var(--color-text));
  line-height: 1.1;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  font-weight: 500;
  color: var(--color-primary);
  margin-top: 2px;
}

.header:not(.header--scrolled) .brand-name,
.header:not(.header--scrolled) .nav-link {
  color: #f2efe5;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav-links {
  display: flex;
  gap: var(--space-6);
  list-style: none;
}
.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding-block: var(--space-1);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width var(--transition-interactive);
}
.nav-link:hover::after {
  width: 100%;
}

.theme-toggle {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 1px solid oklch(from var(--color-text) l c h / 0.2);
  color: inherit;
}
.header:not(.header--scrolled) .theme-toggle {
  border-color: oklch(1 0 0 / 0.3);
  color: #f2efe5;
}
.theme-toggle:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: inherit;
  position: relative;
  z-index: 120;
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(320px, 80vw);
    background: var(--color-surface);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-6);
    padding: var(--space-16) var(--space-8);
    transform: translateX(100%);
    transition: transform 320ms var(--ease-out);
    box-shadow: var(--shadow-lg);
    z-index: 110;
  }
  .nav-links.is-open {
    transform: translateX(0);
  }
  .nav-link {
    color: var(--color-text) !important;
    font-size: var(--text-lg);
  }
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: oklch(0 0 0 / 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 320ms var(--ease-out);
    z-index: 90;
  }
  .nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  color: #f7f4ea;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, oklch(0 0 0 / 0.5) 0%, oklch(0 0 0 / 0.28) 32%, oklch(0 0 0 / 0.4) 62%, oklch(0 0 0 / 0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(var(--space-16), 14vw, var(--space-32)) clamp(var(--space-10), 6vw, var(--space-16));
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #f7d878;
  margin-bottom: var(--space-6);
  display: block;
  text-shadow: 0 2px 10px oklch(0 0 0 / 0.6);
}
.hero-title {
  font-size: var(--text-hero);
  line-height: 1.12;
  max-width: 16ch;
  margin-bottom: var(--space-6);
}
.hero-title em {
  display: inline-block;
  margin-top: 0.06em;
}
.hero-title em {
  font-style: italic;
  color: var(--color-primary);
}
.hero-sub {
  font-size: var(--text-lg);
  color: oklch(1 0 0 / 0.82);
  max-width: 46ch;
  margin-bottom: var(--space-8);
  font-family: var(--font-body);
  font-weight: 400;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}
.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(1 0 0 / 0.7);
}
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, oklch(1 0 0 / 0.7), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  animation: scrollpulse 2.2s ease-in-out infinite;
}
@keyframes scrollpulse {
  0% {
    top: -100%;
  }
  60%,
  100% {
    top: 100%;
  }
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-divider);
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-8);
  padding-block: var(--space-5);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.trust-item i {
  color: var(--color-primary);
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .trust-bar-inner {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-inline: var(--space-5);
  }
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.process-strip {
  background: var(--color-surface-offset);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.process-step {
  position: relative;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}
.process-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.process-step h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.process-step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

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

/* ============================================
   WORK / GALLERY
   ============================================ */

.work-strip {
  background: var(--color-surface-offset);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-4);
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, oklch(0 0 0 / 0.75) 100%);
  opacity: 0;
  transition: opacity var(--transition-interactive);
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-caption {
  position: absolute;
  left: var(--space-5);
  bottom: var(--space-4);
  right: var(--space-5);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-interactive);
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item.span-2 {
  grid-column: span 2;
}
.gallery-item.span-3 {
  grid-column: span 3;
}
.gallery-item.span-4 {
  grid-column: span 4;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item,
  .gallery-item.span-2,
  .gallery-item.span-3,
  .gallery-item.span-4 {
    grid-column: span 1;
  }
}

/* ============================================
   ABOUT
   ============================================ */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(var(--space-8), 6vw, var(--space-16));
  align-items: center;
}
.about-copy p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
}
.about-stat .num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary);
  display: block;
}
.about-stat .label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-media-badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  right: var(--space-5);
  background: oklch(from var(--color-bg) l c h / 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid oklch(1 0 0 / 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  color: #f2efe5;
}
.about-media-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-primary);
}
.about-media-badge span {
  font-size: var(--text-xs);
  color: oklch(1 0 0 / 0.75);
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-media {
    order: -1;
  }
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  margin-inline: clamp(var(--space-4), 5vw, var(--space-12));
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 15% 20%, oklch(from var(--color-primary) l c h / 0.18), transparent 55%),
    linear-gradient(145deg, #14180f, #0a0b07 65%);
  color: #f2efe5;
  padding: clamp(var(--space-12), 8vw, var(--space-20)) clamp(var(--space-6), 6vw, var(--space-16));
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid oklch(from var(--color-primary) l c h / 0.25);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(oklch(1 0 0 / 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
}
.cta-banner-inner {
  position: relative;
  max-width: 640px;
  margin-inline: auto;
}
.cta-banner h2 {
  font-size: var(--text-2xl);
  color: #f7f4ea;
  margin-bottom: var(--space-4);
}
.cta-banner p {
  color: oklch(1 0 0 / 0.72);
  margin-bottom: var(--space-8);
  margin-inline: auto;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* ============================================
   SERVICES
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-5);
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  transition: all var(--transition-interactive);
}
.service-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.service-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   QUOTE FORM
   ============================================ */

.quote-section {
  background: var(--color-surface-offset);
}
.quote-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(var(--space-10), 6vw, var(--space-16));
}
.quote-info h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}
.quote-info p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}
.quote-contacts {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.quote-contact {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.quote-contact-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}
.quote-contact strong {
  display: block;
  font-size: var(--text-sm);
}
.quote-contact span,
.quote-contact a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.quote-form {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.field {
  margin-bottom: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.field label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.field input,
.field select,
.field textarea {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a8791a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.field textarea {
  resize: vertical;
  min-height: 100px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-highlight);
}
.field-hint {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.form-submit {
  width: 100%;
  margin-top: var(--space-2);
}
.form-status {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  display: none;
}
.form-status.is-success {
  display: block;
  color: var(--color-secondary-hover);
}
.form-status.is-error {
  display: block;
  color: var(--color-error);
}

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

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: #0a0a08;
  color: oklch(1 0 0 / 0.7);
  padding-block: clamp(var(--space-12), 6vw, var(--space-16)) var(--space-8);
}
[data-theme='light'] .footer {
  background: #17170f;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid oklch(1 0 0 / 0.1);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.footer-brand .brand-mark {
  width: 34px;
  height: 34px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #f2efe5;
}
.footer p {
  font-size: var(--text-sm);
  color: oklch(1 0 0 / 0.55);
  max-width: 34ch;
}
.footer h4 {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  font-family: var(--font-body);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
}
.footer-links a {
  font-size: var(--text-sm);
  color: oklch(1 0 0 / 0.65);
}
.footer-links a:hover {
  color: var(--color-primary);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding-top: var(--space-6);
  font-size: var(--text-xs);
  color: oklch(1 0 0 / 0.4);
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 800ms var(--ease-out),
    transform 800ms var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
</content>
