:root {
  --white: #FFFFFF;
  --stone: #F6F2F4;
  --stone-2: #ECE4E8;
  --paper: #FBF8FA;
  --ink: #14080F;
  --ink-2: #2A1820;
  --muted: #6A5C63;
  --muted-2: #9A8D93;
  --accent: #cc3b3b;
  --accent-dark: #bd0000;
  --accent-soft: #e99292;
  --violet: #9030d8;
  --violet-dark: #7830c0;
  --accent-tint: #FBEDED;
  --line: rgba(20, 8, 15, 0.10);
  --line-strong: rgba(20, 8, 15, 0.22);
  --radius: 3px;
  --max: 1280px;
  --max-narrow: 920px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.08;
}
h1 { font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 300; }
h2 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 300; }
h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 400; }
h4 { font-size: 1.1rem; font-weight: 500; font-family: var(--font-body); letter-spacing: 0; }

p { font-size: 1.0625rem; color: var(--muted); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1.05rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--white); }
.btn-accent { background: var(--accent); color: var(--white); box-shadow: 0 10px 24px -12px rgba(204,59,59,0.7); }
.btn-accent:hover { background: var(--accent-dark); }
.btn-light { background: rgba(255,255,255,0.06); color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn .arrow { transition: transform 0.2s var(--ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(3px); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.75rem; }
section { padding: clamp(5rem, 10vw, 9rem) 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in-view { 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; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

.utility {
  background: var(--ink);
  color: rgba(255,255,255,0.82);
  padding: 0.65rem 1.75rem;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
.utility a { color: var(--accent-soft); text-decoration: none; font-weight: 600; margin-left: 0.5rem; }
.utility a:hover { color: var(--white); }

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo { height: 34px; width: auto; }
.nav-links {
  display: flex;
  gap: 2.1rem;
  list-style: none;
  font-size: 0.85rem;
  font-weight: 500;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-2);
  transition: color 0.15s;
  padding: 0.25rem 0;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta { white-space: nowrap; padding: 0.7rem 1.4rem; font-size: 0.72rem; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
}
@media (max-width: 1080px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.75rem;
    gap: 1.4rem;
    border-bottom: 1px solid var(--line);
  }
  .nav.open .nav-cta { display: inline-flex; margin: 0 1.75rem 1.75rem; align-self: flex-start; }
}

.fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: none;
  box-shadow: 0 12px 30px -8px rgba(204, 59, 59, 0.6);
}
@media (max-width: 1080px) { .fab { display: inline-flex; } }

/* Hero */
.hero {
  position: relative;
  min-height: clamp(560px, 90vh, 860px);
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}
.hero-bg { position: absolute; inset: 0; z-index: 1; }
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(20, 8, 15, 0.82) 0%, rgba(20,8,15,0.4) 45%, rgba(20,8,15,0.25) 70%, rgba(189,0,0,0.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.75rem 5.5rem;
  color: var(--white);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--white);
}
.hero-eyebrow::before { content: ''; width: 40px; height: 2px; background: var(--accent); }
.hero h1 { color: var(--white); max-width: 16ch; margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; font-weight: 300; color: var(--accent-soft); }
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,0.86);
  max-width: 40rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Page hero (product) */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  padding: 0;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 1; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(20,8,15,0.85), rgba(20,8,15,0.45) 60%, rgba(144,48,216,0.35));
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding: 0 1.75rem 4.5rem;
  color: var(--white);
}
.page-hero-content .hero-eyebrow { color: var(--accent-soft); }
.page-hero-content h1 { color: var(--white); margin-bottom: 1.25rem; }
.page-hero-content .hero-sub { color: rgba(255,255,255,0.85); }

/* Simple page head */
.page-head-simple { padding-top: 6rem; padding-bottom: 3rem; background: var(--white); }
.page-head-simple .eyebrow { display: block; margin-bottom: 1rem; }
.page-head-simple h1 { font-size: clamp(2.6rem, 6vw, 5rem); margin-bottom: 1.25rem; }
.page-head-simple p { font-size: 1.15rem; max-width: 60ch; }

/* Trust */
.trust { background: var(--white); border-bottom: 1px solid var(--line); padding: 2.2rem 1.75rem; }
.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}
.trust-item { text-align: center; border-right: 1px solid var(--line); padding: 0.5rem 1rem; }
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.trust-num .small { font-size: 1.3rem; }
.trust-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
@media (max-width: 760px) {
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 1rem; }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0.5rem; }
}

.section-head { max-width: 720px; margin: 0 auto 4rem; text-align: center; padding: 0 1.75rem; }
.section-head .eyebrow { display: block; margin-bottom: 1rem; }
.section-head h2 { margin-bottom: 1.25rem; }
.section-head h2 em { font-style: italic; color: var(--accent); }
.section-head p { font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* Story */
.story { background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }
.story-img { aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius); position: relative; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-img::before {
  content: '';
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(255,255,255,0.45);
  z-index: 2;
  pointer-events: none;
}
.story-text .eyebrow { display: block; margin-bottom: 1rem; }
.story-text h2 { margin-bottom: 1.5rem; }
.story-text h2 em { font-style: italic; color: var(--accent); }
.story-text p { margin-bottom: 1.25rem; font-size: 1.1rem; line-height: 1.7; color: var(--ink-2); }
.story-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.story-meta div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.story-meta div span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-img { max-width: 420px; margin: 0 auto; }
}

/* Why table */
.why { background: var(--stone); }
.why-table {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}
.why-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  align-items: center;
}
.why-row > div { padding: 1.5rem 1.5rem; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); font-size: 0.95rem; }
.why-row > div:last-child { border-right: none; }
.why-row:last-child > div { border-bottom: none; }
.why-head { background: var(--ink); color: var(--white); }
.why-head > div {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  border-color: rgba(255,255,255,0.1) !important;
  padding: 1.25rem 1rem !important;
}
.why-head > div:first-child { text-align: left; }
.why-head .winner { color: var(--accent-soft); }
.why-row .label {
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.why-row .winner-cell {
  background: var(--accent-tint);
  color: var(--accent-dark);
  font-weight: 600;
  text-align: center;
}
.why-row .winner-cell::before { content: '\2713 '; color: var(--accent); }
.why-row .neutral-cell, .why-row .lose-cell { text-align: center; color: var(--muted); }
@media (max-width: 720px) {
  .why-row { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .why-row > div { padding: 0.9rem 0.6rem; font-size: 0.82rem; }
  .why-head > div { font-size: 0.62rem !important; padding: 0.85rem 0.45rem !important; letter-spacing: 0.1em; }
  .why-row .label { font-size: 0.92rem; }
}

/* Designs grid */
.designs { background: var(--white); }
.designs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.75rem;
}
.design-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.design-card:hover { transform: translateY(-4px); box-shadow: 0 25px 50px -20px rgba(20, 8, 15, 0.2); border-color: transparent; }
.design-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.design-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.design-card:hover .design-img img { transform: scale(1.04); }
.design-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.design-tag {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.design-card h3 { margin-bottom: 0.6rem; font-size: 1.6rem; font-family: var(--font-display); font-weight: 400; }
.design-card p { font-size: 0.95rem; color: var(--muted); flex: 1; margin-bottom: 1.25rem; line-height: 1.6; }
.design-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
}
.design-foot strong { color: var(--ink); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.04em; }
.design-arrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.design-arrow::after { content: '\2192'; transition: transform 0.2s var(--ease); }
.design-card:hover .design-arrow::after { transform: translateX(3px); }
@media (max-width: 920px) { .designs-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (max-width: 600px) { .designs-grid { grid-template-columns: 1fr; } }

/* Gallery */
.gallery { background: var(--stone); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.75rem;
}
.gallery-item { overflow: hidden; border-radius: var(--radius); position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-tall { grid-row: span 2; aspect-ratio: 3/4; }
.gallery-wide { aspect-ratio: 5/3; }
.gallery-item-cap {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(20,8,15,0.8);
  color: var(--white);
  padding: 0.45rem 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-tall { grid-row: auto; aspect-ratio: 4/3; }
}

/* Process */
.process { background: var(--white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.75rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 1.75rem);
  right: calc(10% + 1.75rem);
  height: 2px;
  background: linear-gradient(to right, var(--line), var(--accent) 50%, var(--line));
  z-index: 0;
}
.process-step { position: relative; z-index: 1; text-align: center; padding: 0 0.5rem; }
.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}
.process-step.active .process-num { background: var(--accent); color: var(--white); }
.process-step h4 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; color: var(--ink); margin-bottom: 0.6rem; }
.process-step p { font-size: 0.92rem; line-height: 1.6; }
@media (max-width: 880px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .process-grid::before { display: none; }
}
@media (max-width: 520px) { .process-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* Testimonials */
.testimonials { background: var(--stone); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.75rem;
}
.t-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--line);
}
.t-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4rem;
  color: var(--accent);
  line-height: 0.5;
  margin-bottom: 1.25rem;
  opacity: 0.5;
}
.t-quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
  flex: 1;
  margin-bottom: 1.75rem;
}
.t-quote em { font-style: italic; color: var(--accent-dark); }
.t-attr { padding-top: 1.25rem; border-top: 1px solid var(--line-strong); }
.t-attr strong { display: block; color: var(--ink); font-weight: 600; font-size: 0.95rem; margin-bottom: 0.1rem; }
.t-attr span { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 580px; } }

/* Finance / connected */
.finance { background: var(--white); padding: 7rem 1.75rem; }
.finance-card {
  max-width: var(--max-narrow);
  margin: 0 auto;
  background: var(--ink);
  color: var(--white);
  padding: 5rem 4rem;
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.finance-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(144,48,216,0.35), transparent 55%), radial-gradient(circle at 10% 90%, rgba(204,59,59,0.3), transparent 50%);
  pointer-events: none;
}
.finance-card > * { position: relative; z-index: 1; }
.finance-card .eyebrow { display: block; margin-bottom: 1rem; color: var(--accent-soft); }
.finance-card h2 { color: var(--white); margin-bottom: 1.5rem; max-width: 22ch; margin-left: auto; margin-right: auto; }
.finance-card h2 em { font-style: italic; color: var(--accent-soft); }
.finance-card > p { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 2.5rem; }
.finance-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0 3rem;
  text-align: left;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.finance-point { padding: 1.5rem 1.25rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); }
.finance-point h4 { color: var(--white); margin-bottom: 0.4rem; font-size: 0.95rem; }
.finance-point p { font-size: 0.88rem; margin: 0; line-height: 1.5; color: rgba(255,255,255,0.72); }
.finance-card .btn-primary { background: var(--accent); }
.finance-card .btn-primary:hover { background: var(--accent-dark); }
@media (max-width: 760px) {
  .finance-card { padding: 3.5rem 2rem; }
  .finance-points { grid-template-columns: 1fr; gap: 1rem; }
}

/* Product feature rows */
.prod-intro { background: var(--stone); }
.prod-intro-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.prod-intro-grid .eyebrow { display: block; margin-bottom: 1rem; }
.prod-intro-grid h2 em { font-style: italic; color: var(--accent); }
.prod-intro-grid p { font-size: 1.1rem; line-height: 1.7; margin-bottom: 1.25rem; color: var(--ink-2); }
@media (max-width: 820px) { .prod-intro-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

.feature-rows { background: var(--white); }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-text { order: 2; }
.feature-num { font-family: var(--font-display); font-style: italic; font-size: 2.5rem; color: var(--accent-soft); margin-bottom: 0.75rem; }
.feature-text h3 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.feature-text p { font-size: 1.08rem; line-height: 1.7; }
.feature-img { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); }
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px) {
  .feature-row { grid-template-columns: 1fr; gap: 1.75rem; margin-bottom: 3.5rem; }
  .feature-row.reverse .feature-text { order: 0; }
}
.specs { background: var(--stone); }

/* FAQ */
.faq { background: var(--white); }
.faq-list { max-width: var(--max-narrow); margin: 0 auto; padding: 0 1.75rem; }
.faq-item {
  background: var(--stone);
  border-radius: var(--radius);
  margin-bottom: 0.85rem;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: border-color 0.2s var(--ease);
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  padding: 1.5rem 1.75rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 1.75rem 1.5rem; }
.faq-item .faq-body p { font-size: 1rem; line-height: 1.65; color: var(--muted); }

/* News */
.news { background: var(--white); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.75rem;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -15px rgba(20, 8, 15, 0.18); border-color: transparent; }
.news-img { aspect-ratio: 16/10; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.news-card:hover .news-img img { transform: scale(1.04); }
.news-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.news-meta {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.85rem;
}
.news-card h3 { font-size: 1.4rem; line-height: 1.25; margin-bottom: 0.85rem; }
.news-card p { font-size: 0.95rem; flex: 1; margin-bottom: 1.25rem; line-height: 1.55; }
.news-link {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.news-link::after { content: '\2192'; transition: transform 0.2s var(--ease); }
.news-card:hover .news-link::after { transform: translateX(3px); }
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr; } }

.blog-listing { padding-top: 2rem; }
.blog-feature { background: var(--white); padding-top: 2rem; padding-bottom: 2rem; }
.blog-feature-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s var(--ease);
}
.blog-feature-card:hover { box-shadow: 0 30px 60px -25px rgba(20,8,15,0.25); }
.blog-feature-img { overflow: hidden; min-height: 320px; }
.blog-feature-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-feature-body { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.blog-feature-body h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0.5rem 0 1rem; }
.blog-feature-body p { margin-bottom: 1.5rem; line-height: 1.65; }
@media (max-width: 820px) { .blog-feature-card { grid-template-columns: 1fr; } .blog-feature-body { padding: 2rem; } }

/* CTA band */
.cta-band { background: var(--ink); position: relative; overflow: hidden; }
.cta-band::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(144,48,216,0.4), transparent 55%), radial-gradient(circle at 0% 100%, rgba(204,59,59,0.35), transparent 50%);
}
.cta-band-inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band .eyebrow { color: var(--accent-soft); display: block; margin-bottom: 0.75rem; }
.cta-band h2 { color: var(--white); }
.cta-band h2 em { font-style: italic; color: var(--accent-soft); }

/* Contact */
.contact { background: var(--stone); padding-top: 6rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }
.contact-left .eyebrow { display: block; margin-bottom: 1rem; }
.contact-left h2 { margin-bottom: 1.5rem; }
.contact-left h2 em { font-style: italic; color: var(--accent); }
.contact-left p { font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.65; }
.contact-info { list-style: none; margin-top: 2rem; }
.contact-info li {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line-strong);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
}
.contact-info li:first-child { border-top: 1px solid var(--line-strong); }
.contact-info strong { color: var(--ink); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-info a { color: var(--ink); text-decoration: none; transition: color 0.15s; }
.contact-info a:hover { color: var(--accent); }

.social-row { display: flex; gap: 0.65rem; margin-top: 2rem; flex-wrap: wrap; }
.soc {
  width: 42px; height: 42px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform 0.2s var(--ease), filter 0.2s var(--ease);
}
.soc:hover { transform: translateY(-3px); filter: brightness(1.08); }
.soc-yt { background: #FF0000; }
.soc-fb { background: #1877F2; }
.soc-ig { background: radial-gradient(circle at 30% 110%, #FED373 0%, #F15245 45%, #D92E7F 60%, #9B36B7 90%); }
.soc-li { background: #0A66C2; }
.soc-x { background: #000000; }
.soc-tt { background: #010101; }

.contact-form { background: var(--white); padding: 2.5rem; border-radius: var(--radius); position: relative; overflow: hidden; border: 1px solid var(--line); }
.contact-form h3 { margin-bottom: 0.5rem; }
.contact-form > p { font-size: 0.92rem; margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--ink); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(204, 59, 59, 0.14); }
.form-field input.invalid { border-color: var(--accent-dark); }
.form-field textarea { resize: vertical; min-height: 120px; font-family: var(--font-body); }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-submit:disabled { opacity: 0.6; cursor: wait; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 1rem; line-height: 1.5; }
.form-note strong { color: var(--ink); }
.form-success {
  position: absolute;
  inset: 0;
  background: var(--white);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 2.5rem;
  border-radius: var(--radius);
}
.form-success.show { display: flex; }
.form-success-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  animation: pop 0.4s var(--ease);
}
@keyframes pop { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.form-success h3 { margin-bottom: 0.85rem; }
.form-success p { font-size: 1rem; max-width: 32ch; line-height: 1.6; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* Footer */
.footer { background: var(--ink); color: rgba(255,255,255,0.65); padding: 5rem 0 2rem; font-size: 0.9rem; }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 1.75rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { height: 34px; width: auto; margin-bottom: 1.25rem; }
.footer p { color: rgba(255,255,255,0.6); }
.footer h5 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.65rem; }
.footer a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.15s; }
.footer a:hover { color: var(--accent-soft); }
.footer-social { display: flex; gap: 0.55rem; margin-top: 1.25rem; flex-wrap: wrap; }
.footer-social .soc { width: 36px; height: 36px; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .dealer-note { max-width: 640px; font-size: 0.72rem; line-height: 1.5; color: rgba(255,255,255,0.45); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
