/* Garage10 landing page */
:root {
  --bg: #f5f0e8;
  --bg-soft: #fbf7f1;
  --surface: rgba(255, 252, 247, 0.82);
  --surface-strong: #fffdf9;
  --surface-accent: #f3ead7;
  --text: #1f2933;
  --muted: #5d6a73;
  --line: rgba(43, 56, 68, 0.14);
  --line-strong: rgba(43, 56, 68, 0.22);
  --accent: #0e7c66;
  --accent-deep: #0b5d4f;
  --accent-soft: rgba(14, 124, 102, 0.12);
  --warm: #cf9f2f;
  --shadow-lg: 0 24px 80px rgba(31, 41, 51, 0.12);
  --shadow-md: 0 18px 42px rgba(31, 41, 51, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(198, 107, 61, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(14, 124, 102, 0.18), transparent 26%),
    linear-gradient(180deg, #f8f4ed 0%, #f5f0e8 45%, #efe7dc 100%);
  font: 16px/1.65 "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 82%);
  pointer-events: none;
  z-index: -1;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  z-index: 100;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 240, 232, 0.78);
  border-bottom: 1px solid rgba(43, 56, 68, 0.08);
  backdrop-filter: blur(18px) saturate(160%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-text {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  color: rgba(31, 41, 51, 0.82);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-deep);
}

.nav-toggle {
  display: none;
  padding: 0.35rem;
  border: 0;
  background: transparent;
  color: var(--text);
}

.hero {
  position: relative;
  padding: 3.25rem 0 2.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-title,
.panel h3 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 11ch;
  margin: 0 0 1.2rem;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.96;
  text-wrap: balance;
}

.accent {
  color: var(--accent);
}

.lead {
  max-width: 62ch;
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.8rem;
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-note {
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 249, 0.58);
  box-shadow: var(--shadow-md);
}

.note-value {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--warm);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.note-label {
  display: block;
  font-weight: 700;
  line-height: 1.4;
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.hero-panel-card,
.card,
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.hero-panel-card {
  padding: 1.5rem;
}

.hero-panel-primary {
  background:
    linear-gradient(135deg, rgba(14, 124, 102, 0.18), rgba(255, 255, 255, 0.75)),
    var(--surface-strong);
}

.panel-label {
  margin: 0 0 0.55rem;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-panel-primary h2 {
  margin: 0 0 0.8rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.9rem;
  line-height: 1.05;
}

.hero-panel-primary p:last-child {
  margin-bottom: 0;
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  background: rgba(255, 253, 249, 0.72);
}

.hero-panel-grid > div {
  padding: 0.4rem 0.2rem;
}

.metric-value {
  margin: 0 0 0.4rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.metric-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-panel-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
}

.hero-panel-list li + li {
  margin-top: 0.65rem;
}

.hero-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--warm), var(--accent));
}

.hero-bg {
  position: absolute;
  inset: 1rem 0 auto;
  height: 560px;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(198, 107, 61, 0.18), transparent 26%),
    radial-gradient(circle at 84% 10%, rgba(14, 124, 102, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.8), rgba(255, 248, 241, 0.92)),
    var(--bg-soft);
  border-top: 1px solid rgba(43, 56, 68, 0.06);
  border-bottom: 1px solid rgba(43, 56, 68, 0.06);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.section-title {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
  text-wrap: balance;
}

.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  padding: 1.35rem;
}

.card-kicker {
  margin: 0 0 0.75rem;
  color: var(--warm);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
}

.card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.coming-soon {
  position: relative;
  padding-top: 3.4rem;
}

.badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(14, 124, 102, 0.16);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 1.2rem 2rem;
  align-items: start;
}

.values {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.values li + li {
  margin-top: 0.45rem;
}

.panel {
  padding: 1.45rem;
}

.stat-panel {
  margin-bottom: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.95), rgba(248, 241, 232, 0.92)),
    var(--surface-strong);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.stat-row:first-child {
  padding-top: 0;
}

.stat-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.stat-row span {
  color: var(--muted);
}

.stat-row strong {
  max-width: 13rem;
  text-align: right;
  font-size: 0.98rem;
}

.cta-panel h3 {
  margin: 0 0 0.6rem;
  font-size: 1.7rem;
  line-height: 1.05;
}

.form-panel p:first-child,
.contact-panel p {
  margin-top: 0;
}

.form {
  margin-top: 1rem;
}

.form label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.input-row {
  display: flex;
  gap: 0.75rem;
}

.input-row input {
  flex: 1;
  min-width: 0;
  padding: 0.92rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font: inherit;
}

.input-row input:focus {
  outline: 2px solid rgba(14, 124, 102, 0.2);
  outline-offset: 2px;
  border-color: rgba(14, 124, 102, 0.38);
}

.help,
.form-message {
  color: var(--muted);
}

.help {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
}

.form-message {
  min-height: 1.5em;
  margin-top: 0.55rem;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.88rem 1.2rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(43, 56, 68, 0.28);
}

.btn-primary {
  border-color: rgba(11, 93, 79, 0.28);
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(180deg, #13957b, #0c6958);
}

.btn-sm {
  padding: 0.68rem 1rem;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.links a {
  color: var(--accent-deep);
  text-decoration: none;
  font-weight: 700;
}

.site-footer {
  padding: 1.4rem 0 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(43, 56, 68, 0.08);
  flex-wrap: wrap;
}

.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
}

.copyright,
.site-footer nav a {
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer nav a {
  text-decoration: none;
}

@media (max-width: 1100px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 12ch;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 1rem;
    display: none;
    min-width: 220px;
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 252, 247, 0.96);
    box-shadow: var(--shadow-md);
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .site-nav a {
    display: block;
    padding: 0.7rem 0.8rem;
    border-radius: 12px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(14, 124, 102, 0.08);
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-notes,
  .hero-panel-grid {
    grid-template-columns: 1fr;
  }

  .input-row {
    flex-direction: column;
  }

  .stat-row {
    flex-direction: column;
  }

  .stat-row strong {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.25rem, 1180px);
  }

  .header-inner {
    gap: 0.75rem;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-text {
    font-size: 0.9rem;
  }

  .brand-subtitle {
    font-size: 0.68rem;
  }

  .hero {
    padding-top: 2.2rem;
  }

  .hero h1 {
    max-width: 8ch;
    font-size: clamp(1.85rem, 10vw, 2.8rem);
    line-height: 1;
  }

  .section,
  .section.alt {
    padding: 2.8rem 0;
  }

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

  .card,
  .panel,
  .hero-panel-card {
    border-radius: 22px;
  }

  .footer-inner {
    align-items: flex-start;
  }
}
