/* Duncan Motors — design tokens & base */
:root {
  --color-asphalt: #1a1c1e;
  --color-charcoal: #2c3034;
  --color-slate: #4a5056;
  --color-mist: #e8eaed;
  --color-offwhite: #f5f6f7;
  --color-white: #ffffff;
  --color-orange: #ff7a07;
  --color-orange-dark: #e06a00;
  --color-orange-soft: rgba(255, 122, 7, 0.12);
  --color-success: #2d7a4f;
  --color-pending: #c47a00;
  --color-sold: #8b3a3a;

  --font-display: "Outfit", sans-serif;
  --font-body: "Source Sans 3", sans-serif;

  --space-xs: 0.35rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3.5rem;
  --space-2xl: 5.5rem;

  --radius: 4px;
  --shadow-soft: 0 8px 28px rgba(26, 28, 30, 0.12);
  --header-h: 4.25rem;
  --max: 1120px;
  --transition: 0.28s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-charcoal);
  background: var(--color-offwhite);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-orange-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--color-orange);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 1.15;
  color: var(--color-asphalt);
  margin: 0 0 var(--space-sm);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.35rem); letter-spacing: -0.015em; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 var(--space-md); }

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
  border-color: var(--color-orange);
}

.btn-primary:hover {
  background: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
  color: var(--color-white);
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-asphalt);
  border-color: var(--color-asphalt);
}

.btn-outline:hover {
  background: var(--color-asphalt);
  color: var(--color-white);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(26, 28, 30, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  background: rgba(26, 28, 30, 0.98);
}

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

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--color-white);
  line-height: 1.1;
}

.brand:hover { color: var(--color-white); text-decoration: none; }

.brand-mark {
  width: 2.75rem;
  height: auto;
  flex-shrink: 0;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-name span { color: var(--color-orange); }

.brand-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.15rem;
}

.brand .custom-logo-link {
  display: block;
  line-height: 0;
}

.brand .custom-logo {
  max-height: 44px;
  width: auto;
}

.site-nav .nav-links,
.site-nav .menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.15rem;
}

.site-nav .menu a {
  display: block;
  padding: 0.4rem 0.65rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
}

.site-nav .menu a:hover,
.site-nav .menu .current-menu-item > a,
.site-nav .menu .current_page_item > a {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

.footer-links.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.85rem;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.15rem;
}

.nav-links a {
  display: block;
  padding: 0.4rem 0.65rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header-phone {
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--color-orange);
  text-decoration: none;
}

.header-actions .btn {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(28rem, 58vh, 36rem);
  display: flex;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 70% at 85% 20%, rgba(255, 122, 7, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(255, 122, 7, 0.1) 0%, transparent 50%),
    linear-gradient(145deg, #121416 0%, var(--color-asphalt) 38%, #252a30 72%, #1a1c1e 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: var(--space-xl) 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
  animation: heroRise 0.9s ease-out both;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-xl);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-image-card {
  display: block;
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  aspect-ratio: 4 / 3;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: var(--space-md);
}

.hero-brand span { color: var(--color-orange); }

.hero-headline {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 500;
  max-width: 28ch;
  margin-bottom: var(--space-sm);
  color: var(--color-white);
}

.hero-lede {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
}

.page-hero {
  position: relative;
  padding: var(--space-2xl) 0 var(--space-xl);
  background: var(--color-asphalt);
  color: var(--color-white);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Background image set via Customizer (inline CSS in functions.php). */
  opacity: 0.9;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  animation: heroRise 0.7s ease-out both;
}

.page-hero h1 { color: var(--color-white); }
.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 48ch;
  margin-bottom: 0;
}

/* Sections */
.section {
  padding: var(--space-2xl) 0;
}

.section-muted {
  background: var(--color-mist);
}

.section-dark {
  background: var(--color-charcoal);
  color: rgba(255, 255, 255, 0.85);
}

.section-dark h2,
.section-dark h3 { color: var(--color-white); }

.section-head {
  margin-bottom: var(--space-lg);
  max-width: 40rem;
}

.section-head p {
  color: var(--color-slate);
  margin-bottom: 0;
}

.section-dark .section-head p { color: rgba(255, 255, 255, 0.65); }

/* Vehicle cards */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.vehicle-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(26, 28, 30, 0.16);
  text-decoration: none;
  color: inherit;
}

.vehicle-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--color-mist);
  overflow: hidden;
}

.vehicle-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-card-media img {
  transform: scale(1.04);
}

.vehicle-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.55rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  color: var(--color-white);
}

.badge-available { background: var(--color-success); }
.badge-pending { background: var(--color-pending); }
.badge-sold { background: var(--color-sold); }
.badge-featured {
  left: auto;
  right: 0.75rem;
  background: var(--color-orange);
}

.vehicle-card-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}

.vehicle-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 650;
  margin: 0;
  color: var(--color-asphalt);
}

.vehicle-card-meta {
  font-size: 0.9rem;
  color: var(--color-slate);
  margin: 0;
}

.vehicle-card-price {
  margin-top: auto;
  padding-top: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-orange-dark);
}

/* Inventory filters */
.inventory-toolbar {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.filters-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-sm);
}

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

.field label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-slate);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 0.65rem 0.75rem;
  border: 1px solid #c8ccd0;
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-asphalt);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px var(--color-orange-soft);
}

.inventory-results-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.95rem;
  color: var(--color-slate);
}

.empty-state {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius);
}

.empty-state h3 { margin-bottom: var(--space-sm); }

/* Vehicle detail */
.vehicle-detail {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.vehicle-main {
  display: contents;
}

.vehicle-gallery {
  order: 1;
  min-width: 0;
}

.vehicle-summary {
  order: 2;
}

.vehicle-description {
  order: 3;
}

@media (min-width: 900px) {
  .vehicle-detail {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }

  .vehicle-main {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    min-width: 0;
    order: unset;
  }

  .vehicle-gallery,
  .vehicle-summary,
  .vehicle-description {
    order: unset;
  }

  .vehicle-summary {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }
}

.gallery-main {
  aspect-ratio: 16 / 10;
  background: var(--color-mist);
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: var(--space-sm);
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.gallery-thumbs button {
  flex: 0 0 72px;
  aspect-ratio: 1;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-mist);
}

.gallery-thumbs button.is-active,
.gallery-thumbs button:hover {
  border-color: var(--color-orange);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-summary {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.vehicle-summary .price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-orange-dark);
  margin: var(--space-sm) 0 var(--space-md);
}

.specs-list {
  list-style: none;
  margin: 0 0 var(--space-md);
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.specs-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--color-mist);
  font-size: 0.95rem;
}

.specs-list span:first-child {
  color: var(--color-slate);
}

.specs-list span:last-child {
  font-weight: 600;
  text-align: right;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: var(--space-md) 0;
}

.feature-tags span {
  padding: 0.3rem 0.6rem;
  background: var(--color-orange-soft);
  color: var(--color-orange-dark);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius);
  font-family: var(--font-display);
}

.vehicle-description {
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* Trust / feature rows */
.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-lg);
}

.feature-item h3 {
  margin-bottom: 0.4rem;
}

.feature-item p {
  margin: 0;
  color: var(--color-slate);
  font-size: 0.98rem;
}

.feature-item::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3px;
  background: var(--color-orange);
  margin-bottom: var(--space-sm);
}

/* Split sections */
.split {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.split-media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-mist);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Checklist */
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--color-charcoal);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border: 2px solid var(--color-orange);
  border-radius: 2px;
  background: var(--color-orange-soft);
}

/* Forms */
.form-grid {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

@media (min-width: 600px) {
  .form-grid.two-col {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid.two-col .full { grid-column: 1 / -1; }
}

.form-panel {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  max-width: 640px;
  align-self: start;
  height: fit-content;
}

.form-note {
  font-size: 0.9rem;
  color: var(--color-slate);
  margin-top: var(--space-md);
}

.form-success {
  display: none;
  padding: var(--space-md);
  background: rgba(45, 122, 79, 0.12);
  border: 1px solid var(--color-success);
  border-radius: var(--radius);
  color: var(--color-success);
  font-weight: 600;
}

.form-success.is-visible { display: block; }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

.service-item {
  padding: var(--space-md) 0;
  border-top: 3px solid var(--color-orange);
}

.service-item h3 { margin-bottom: 0.35rem; }
.service-item p { margin: 0; color: var(--color-slate); font-size: 0.95rem; }

/* Contact / visit */
.contact-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.info-block h3 {
  margin-bottom: var(--space-sm);
}

.info-block p,
.info-block li {
  margin: 0 0 0.35rem;
  color: var(--color-slate);
}

.info-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.map-placeholder {
  aspect-ratio: 16 / 11;
  background:
    linear-gradient(135deg, var(--color-mist), #d5d8dc);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--space-md);
  color: var(--color-slate);
}

.map-placeholder a {
  font-family: var(--font-display);
  font-weight: 600;
}

/* Hours table */
.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.95rem;
}

.hours-list li span:first-child {
  font-weight: 700;
}

.hours-list li span:last-child {
  font-weight: 400;
}

/* Footer */
.site-footer {
  background: var(--color-asphalt);
  color: rgba(255, 255, 255, 0.72);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.site-footer h3 {
  color: var(--color-white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-md);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-orange);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.footer-brand .brand-name {
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: 0.85rem;
}

.duncan-elementor-content {
  width: 100%;
}

.duncan-elementor-full .elementor,
.duncan-elementor-content .elementor {
  max-width: none;
}

body.duncan-elementor-canvas {
  background: var(--color-offwhite);
}

/* Elementor editor: ensure theme buttons remain usable */
.elementor-widget-container .btn {
  text-decoration: none;
}

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

/* Mobile nav */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--color-asphalt);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-md);
    gap: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .header-phone { text-align: center; }
}

@media (max-width: 600px) {
  .hero { min-height: clamp(24rem, 52vh, 30rem); }
}
