:root {
  --bg: #f1e9dd;
  --bg-elevated: #f8f2e8;
  --bg-soft: #e7d9c8;
  --surface: rgba(255, 250, 243, 0.82);
  --surface-strong: rgba(35, 29, 24, 0.08);
  --text: #181512;
  --muted: #62584e;
  --line: rgba(35, 29, 24, 0.12);
  --accent: #bca58c;
  --accent-strong: #d6c3af;
  --accent-soft: rgba(188, 165, 140, 0.18);
  --danger-soft: rgba(173, 77, 77, 0.12);
  --shadow: 0 24px 80px rgba(49, 37, 27, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
  --header-height: 84px;
  --font-display: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  --font-body: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 195, 175, 0.65), transparent 26%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.58), transparent 24%),
    linear-gradient(180deg, #f8f3eb 0%, #f1e7da 42%, #e6d8c8 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-tight {
  padding: 4rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.lead {
  font-size: 1.08rem;
  max-width: 62ch;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(180deg, #2a2520, #15120f);
  color: #f8f2e8;
  box-shadow: 0 16px 34px rgba(24, 19, 15, 0.18);
}

.btn-secondary {
  background: rgba(255, 250, 243, 0.72);
  border-color: var(--line);
}

.btn-ghost {
  border-color: rgba(115, 96, 76, 0.26);
  background: var(--accent-soft);
  color: #3f352c;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 242, 232, 0.84);
  border-bottom: 1px solid rgba(35, 29, 24, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.brand-logo {
  width: min(100%, 230px);
  height: auto;
}

.brand-logo--footer {
  width: min(100%, 260px);
  margin-bottom: 1rem;
}

.brand-mark {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-copy {
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 28ch;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 1.2vw, 1.4rem);
  min-width: 0;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: color 160ms ease;
}

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

.header-cta {
  display: inline-flex;
  white-space: nowrap;
  min-width: 116px;
  min-height: 48px;
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  justify-self: end;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.hero {
  padding: 3rem 0 2.5rem;
}

.two-column {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-feature {
  position: relative;
  min-height: 620px;
  padding: clamp(2rem, 4vw, 3.2rem);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(35, 29, 24, 0.14);
  box-shadow: 0 28px 70px rgba(32, 24, 18, 0.18);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 13, 10, 0.78) 0%, rgba(16, 13, 10, 0.58) 42%, rgba(16, 13, 10, 0.18) 72%),
    linear-gradient(180deg, rgba(16, 13, 10, 0.18), rgba(16, 13, 10, 0.3)),
    url("assets/images/storefront.HEIC.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-feature::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(12, 9, 7, 0.34));
}

.hero-feature-copy {
  position: relative;
  z-index: 1;
  max-width: min(680px, 100%);
  padding-top: clamp(0.75rem, 2vw, 1.5rem);
}

.hero-feature-copy h1,
.hero-feature-copy .lead {
  color: #f8f2e8;
}

.hero-feature-copy .lead {
  max-width: 48rem;
}

.hero-feature .pill {
  background: rgba(248, 242, 232, 0.14);
  border-color: rgba(248, 242, 232, 0.18);
  color: rgba(248, 242, 232, 0.94);
}

.hero-feature .stat-card {
  border-color: rgba(248, 242, 232, 0.12);
  background: linear-gradient(180deg, rgba(15, 12, 10, 0.52), rgba(15, 12, 10, 0.32));
  box-shadow: none;
}

.hero-feature .stat-card strong,
.hero-feature .stat-card span {
  color: #f8f2e8;
}

.hero-feature .btn-secondary {
  background: rgba(248, 242, 232, 0.12);
  border-color: rgba(248, 242, 232, 0.22);
  color: #f8f2e8;
}

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

.hero-panel,
.card,
.panel,
.form-shell,
.quote-card,
.symptom-card,
.service-card,
.contact-card,
.stat-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(245, 236, 224, 0.76));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: clamp(1.6rem, 4vw, 2.5rem);
  overflow: hidden;
  position: relative;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -10% -10% 40%;
  height: 220px;
  background: linear-gradient(90deg, transparent, rgba(188, 165, 140, 0.26));
  transform: skewY(-8deg);
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.72);
  border: 1px solid rgba(35, 29, 24, 0.08);
  color: #494036;
  font-size: 0.92rem;
}

.hero-copy {
  padding-right: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-card {
  padding: 1.1rem;
}

.stat-card strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.visual-stack {
  display: grid;
  gap: 1rem;
}

.hero-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.photo-placeholder,
.map-placeholder,
.badge-placeholder {
  min-height: 230px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(35, 29, 24, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 248, 239, 0.2)),
    linear-gradient(45deg, rgba(188, 165, 140, 0.18), transparent 45%);
  display: flex;
  align-items: end;
  padding: 1.25rem;
  color: var(--muted);
  position: relative;
  overflow: hidden;
}

.map-embed {
  min-height: 260px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(35, 29, 24, 0.08);
  box-shadow: var(--shadow);
  background: rgba(255, 250, 243, 0.72);
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 260px;
  border: 0;
}

.photo-placeholder::before,
.map-placeholder::before,
.badge-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 92%, rgba(56, 46, 37, 0.08) 92%),
    linear-gradient(90deg, transparent 92%, rgba(56, 46, 37, 0.08) 92%);
  background-size: 24px 24px;
  opacity: 0.22;
}

.photo-placeholder span,
.map-placeholder span,
.badge-placeholder span {
  position: relative;
  z-index: 1;
  max-width: 18ch;
}

.photo-frame {
  min-height: 230px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(35, 29, 24, 0.1);
  background-color: #d8c5af;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 17, 13, 0.06), rgba(22, 17, 13, 0.22));
}

.photo-frame--hero {
  min-height: 440px;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.2)),
    url("assets/images/storefront.HEIC.png");
}

.photo-frame--work {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18)),
    url("assets/images/home-middle-storefront.png");
}

.photo-frame--bay {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.2)),
    url("assets/images/pic1.heic.png");
}

.photo-frame--owner {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.2)),
    url("assets/images/pic2.heic.png");
}

.photo-frame--signage {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.22)),
    url("assets/images/roadsignage.HEIC.png");
}

.photo-frame--work-2 {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.22)),
    url("assets/images/IMG_7244.HEIC.png");
}

.photo-frame--work-3 {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.22)),
    url("assets/images/transmission3.HEIC.png");
}

.photo-caption {
  display: none;
}

.photo-caption strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.photo-caption p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.trust-item {
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 243, 0.72);
  border: 1px solid rgba(35, 29, 24, 0.08);
}

.trust-item strong {
  display: block;
  margin-bottom: 0.45rem;
}

.grid-3,
.grid-2,
.grid-auto {
  display: grid;
  gap: 1.25rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.symptom-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.service-card,
.quote-card,
.symptom-card,
.contact-card {
  padding: 1.5rem;
}

.card ul,
.service-card ul,
.check-list,
.icon-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.card li,
.service-card li,
.check-list li,
.icon-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.card li::before,
.service-card li::before,
.check-list li::before,
.icon-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--accent);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading p {
  max-width: 56ch;
}

.banner {
  padding: clamp(1.8rem, 4vw, 2.7rem);
  border-radius: var(--radius);
  border: 1px solid rgba(35, 29, 24, 0.12);
  background:
    radial-gradient(circle at top right, rgba(214, 195, 175, 0.18), transparent 28%),
    linear-gradient(135deg, #201b16, #332a21);
  box-shadow: 0 24px 50px rgba(35, 29, 24, 0.18);
}

.banner h2,
.banner p {
  max-width: 34rem;
}

.banner .eyebrow,
.banner h2,
.banner p {
  color: #f8f2e8;
}

.banner .eyebrow::before {
  background: currentColor;
}

.banner .btn-primary {
  background: linear-gradient(180deg, #f3e9dc, #dbc7b0);
  color: #181512;
}

.banner .btn-secondary {
  background: rgba(255, 248, 239, 0.08);
  border-color: rgba(255, 248, 239, 0.22);
  color: #f8f2e8;
}

.symptom-card {
  border-left: 4px solid var(--accent);
}

.quote-card {
  position: relative;
}

.quote-card::before {
  content: "“";
  position: absolute;
  right: 1.2rem;
  top: 0.5rem;
  font-size: 4rem;
  color: rgba(188, 165, 140, 0.28);
  line-height: 1;
}

.quote-meta {
  margin-top: 1rem;
  color: var(--text);
  font-weight: 700;
}

.page-hero {
  padding: 4rem 0 1.5rem;
}

.page-hero-copy {
  max-width: 54rem;
}

.hero-actions {
  margin-top: 1.5rem;
}

.split-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

.form-shell {
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.form-note {
  margin-top: 0.9rem;
  font-size: 0.95rem;
}

.form-note strong {
  color: var(--text);
}

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

.highlight-card {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.action-stack {
  display: grid;
  gap: 1rem;
}

.action-tile {
  padding: 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(35, 29, 24, 0.08);
  background: rgba(255, 250, 243, 0.72);
}

.action-tile h3,
.action-tile p:last-child {
  margin-bottom: 0;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  color: var(--text);
  font-weight: 700;
  font-size: 0.94rem;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(35, 29, 24, 0.12);
  background: rgba(255, 252, 247, 0.92);
  color: var(--text);
  padding: 0.92rem 1rem;
  transition: border-color 160ms ease, transform 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(98, 82, 66, 0.72);
  transform: translateY(-1px);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.upload-box {
  border: 1px dashed rgba(35, 29, 24, 0.18);
  border-radius: 16px;
  padding: 1.1rem;
  background: rgba(255, 250, 243, 0.54);
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(35, 29, 24, 0.08);
}

.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(35, 29, 24, 0.08);
  background: rgba(248, 242, 232, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr 1.05fr;
  gap: 1.25rem;
}

.footer-note {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .split-band,
  .footer-grid,
  .trust-strip,
  .grid-3,
  .grid-2,
  .two-column,
  .symptom-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy {
    padding-right: 0;
  }

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

@media (max-width: 820px) {
  :root {
    --header-height: 74px;
  }

  .header-inner {
    display: flex;
    gap: 1rem;
  }

  .brand {
    flex: 1 1 auto;
  }

  .brand-logo {
    width: min(100%, 190px);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(249, 243, 235, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .split-band,
  .footer-grid,
  .trust-strip,
  .grid-3,
  .grid-2,
  .hero-stats,
  .form-grid,
  .two-column,
  .symptom-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 4.5rem 0;
  }

  .hero {
    padding-top: 3.25rem;
  }

  .btn {
    width: 100%;
  }

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