:root {
  --bg: #0c0d0e;
  --bg-alt: #131416;
  --line: rgba(255,255,255,0.08);
  --text: #ece9e4;
  --text-dim: #9a9a96;
  --text-faint: #7e7e75;
  --accent: #c8ccc2;
  --accent-metal: #8a8f86;
  --radius: 2px;
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(12,13,14,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 26px;
  height: 26px;
  color: var(--text);
}

.wordmark {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

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

.nav-cta {
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: var(--radius);
  color: var(--text) !important;
}

.nav-cta:hover {
  border-color: var(--accent-metal);
  background: rgba(255,255,255,0.03);
}

/* Hero */

.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background:
    radial-gradient(ellipse 800px 500px at 15% 20%, rgba(120,130,115,0.08), transparent 60%),
    linear-gradient(180deg, #0c0d0e, #0a0b0c);
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 24px;
}

.hero h1 {
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
  max-width: 900px;
}

.hero h1 .dot {
  color: var(--text-faint);
  margin: 0 18px;
  font-weight: 300;
}

.signature {
  font-family: 'Pinyon Script', cursive;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 0 28px;
  font-weight: 300;
}

.hero .signature {
  font-size: 38px;
  margin: 0 0 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #0c0d0e;
  font-weight: 500;
}

.btn-primary:hover {
  background: #fff;
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent-metal);
  background: rgba(255,255,255,0.03);
}

/* Sections */

.section {
  position: relative;
  z-index: 2;
  padding: 120px 0;
  border-top: 1px solid var(--line);
}

.section-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--text-faint);
  margin: 0 0 20px;
  text-transform: uppercase;
}

.section h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 0 0 56px;
  max-width: 700px;
}

/* Approach */

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

.approach-item h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 14px;
  color: var(--text);
}

.approach-item p {
  font-size: 14.5px;
  color: var(--text-dim);
  font-weight: 300;
  margin: 0;
}

/* Services */

.services {
  background: var(--bg-alt);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-row {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.service-row:last-child { border-bottom: 1px solid var(--line); }

.service-row h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 12px;
}

.service-row p {
  font-size: 14.5px;
  color: var(--text-dim);
  margin: 0;
  font-weight: 300;
}

.services-note {
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-faint);
  font-style: italic;
}

/* Process */

.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
}

.process-step {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.process-step:last-child { border-bottom: 1px solid var(--line); }

.process-num {
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.05em;
  padding-top: 2px;
  min-width: 28px;
}

.process-step h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 8px;
}

.process-step p {
  font-size: 14.5px;
  color: var(--text-dim);
  font-weight: 300;
  margin: 0;
  max-width: 520px;
}

/* Vehicles */

.vehicles {
  background: var(--bg-alt);
}

.vehicles-sub {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 640px;
  font-weight: 300;
  margin: 0 0 40px;
}

.marque-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.marque-list span {
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--text-dim);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: var(--radius);
}

/* About */

.about {
  background: var(--bg-alt);
}

.about-wrap {
  max-width: 720px;
}

.about-copy h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 20px;
}

.about-copy p {
  font-size: 15px;
  color: var(--text-dim);
  font-weight: 300;
  margin: 0 0 18px;
}

.about-copy p:last-child { margin-bottom: 0; }

.about-copy p.signature-close {
  font-size: 34px;
  margin-top: 32px;
}

/* FAQ */

.faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.faq-item:last-child { border-bottom: 1px solid var(--line); }

.faq-item summary {
  font-size: 15.5px;
  font-weight: 400;
  cursor: pointer;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 18px;
  color: var(--text-faint);
  margin-left: 16px;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  font-size: 14.5px;
  color: var(--text-dim);
  font-weight: 300;
  margin: 16px 0 0;
  max-width: 620px;
}

/* Contact */

.contact {
  background: var(--bg);
}

.contact-wrap {
  max-width: 640px;
}

.contact-sub {
  color: var(--text-dim);
  font-size: 15px;
  margin: 0 0 40px;
  font-weight: 300;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-honey {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row label {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-faint);
  text-transform: uppercase;
}

.form-row input,
.form-row textarea {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent-metal);
}

.contact-form .btn {
  align-self: flex-start;
  border: none;
  cursor: pointer;
  margin-top: 8px;
}

.form-status {
  font-size: 13px;
  color: var(--text-dim);
  min-height: 18px;
}

.form-fallback {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--bg-alt);
}

.form-fallback p {
  font-size: 13.5px;
  color: var(--text-dim);
  margin: 0 0 12px;
  font-weight: 300;
}

.form-fallback a {
  color: var(--text);
}

.form-fallback-body {
  font-family: 'SF Mono', 'Menlo', monospace;
  font-size: 12.5px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0 0 16px;
}

/* Footer */

.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--text-faint);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand .brand-mark {
  width: 18px;
  height: 18px;
  color: var(--text-faint);
}

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

.footer-links a {
  color: var(--text-faint);
  text-decoration: none;
}

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

/* Responsive */

@media (max-width: 860px) {
  .nav a:not(.nav-cta) { display: none; }
  .approach-grid { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 80px 0; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .process-step { gap: 18px; }
  .hero h1 .h1-phrase { display: block; }
  .hero h1 .dot { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { text-align: center; }
  .footer-links { flex-direction: column; gap: 10px; }
  .wordmark { font-size: 11px; letter-spacing: 0.1em; white-space: nowrap; }
  .nav-cta { padding: 7px 12px; font-size: 12px; }
}
