/* Virgin Valley Golf Cart Service — static HTML stylesheet
 * Table of contents:
 * 1. Design tokens
 * 2. Reset & base
 * 3. Layout
 * 4. Components
 * 5. Sections (page order)
 */

/* ==========================================================================
   1. Design tokens
   ========================================================================== */

:root {
  --color-navy: #0B172A;
  --color-navy-mid: #152238;
  --color-navy-light: #1E3354;
  --color-orange: #F26522;
  --color-orange-dark: #D95A1E;
  --color-white: #FFFFFF;
  --color-text: rgba(255, 255, 255, 0.92);
  --color-text-muted: rgba(255, 255, 255, 0.62);
  --color-border: rgba(255, 255, 255, 0.1);
  --color-surface: rgba(255, 255, 255, 0.05);
  --color-surface-elevated: rgba(255, 255, 255, 0.07);
  --color-surface-raised: rgba(11, 23, 42, 0.55);
  --gradient-soft: linear-gradient(180deg, var(--color-navy-mid) 0%, var(--color-navy-light) 100%);
  --gradient-soft-deep: linear-gradient(180deg, var(--color-navy) 0%, var(--color-navy-mid) 100%);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.14);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.22);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  --shadow-inset-top: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --accent-line-height: 3px;
  --space-section: 3rem;
  --space-container: 1rem;
  --touch-min: 2.75rem;
  --header-offset: 3.75rem;
}

@media (min-width: 640px) {
  :root {
    --space-section: 4rem;
    --space-container: 1.5rem;
  }
}

@media (min-width: 768px) {
  :root {
    --header-offset: 4.5rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --space-section: 5rem;
  }
}

/* ==========================================================================
   2. Reset & base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: var(--header-offset);
}

body {
  margin: 0;
  font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-navy);
  background-image: var(--gradient-soft);
  background-attachment: scroll;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
.section-intro h2,
.section-title h2,
.spotlight h2 {
  text-wrap: balance;
}

@media (min-width: 768px) {
  body {
    background-attachment: fixed;
  }
}

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

picture {
  display: block;
}

picture img {
  display: block;
  width: 100%;
}

a {
  color: var(--color-orange);
  text-decoration: none;
}

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

main {
  flex: 1;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-container);
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--color-orange);
  color: var(--color-white);
  font-weight: 600;
  border-radius: 0 0 0.5rem 0.5rem;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}

/* ==========================================================================
   3. Layout
   ========================================================================== */

.container {
  max-width: 72rem;
  margin: 0 auto;
  /* Horizontal gutters — use padding-block on .container modifiers, never padding shorthand. */
  padding-inline: var(--space-container);
}

.grid-2 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }
}

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

@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-inventory {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid-inventory {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-inventory {
    grid-template-columns: repeat(3, 1fr);
  }
}

.section {
  padding: var(--space-section) 0;
}

.section-alt {
  background: var(--gradient-soft-deep);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.section-intro {
  max-width: 36rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .section-intro {
    margin-bottom: 3rem;
  }
}

.section-intro h2 {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .section-intro h2 {
    font-size: 2.25rem;
  }
}

.section-intro p {
  margin: 1rem 0 0;
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.section-title {
  text-align: center;
}

.section-title h2 {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-white);
}

.section-title p {
  max-width: 42rem;
  margin: 0.875rem auto 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

@media (min-width: 640px) {
  .section-title p {
    margin-top: 1rem;
    font-size: 1.125rem;
  }
}

.section-title + .grid-inventory {
  margin-top: 3rem;
}

/* ==========================================================================
   4. Components
   ========================================================================== */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch-min);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-primary,
.btn-light {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

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

.btn-light {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

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

.btn-secondary-outline {
  background: transparent;
  color: var(--color-orange);
  border: 1px solid var(--color-orange);
}

.btn-secondary-outline:hover {
  background: rgba(242, 101, 34, 0.12);
  color: var(--color-orange);
}

/* Cards */
.card {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.card h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
}

.card p {
  margin: 0.75rem 0 0;
  color: var(--color-text-muted);
}

.service-card {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}

@media (min-width: 640px) {
  .service-card {
    padding: 1.5rem;
  }
}

.service-card h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
}

.service-card p {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.card-cta {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-orange);
}

.card-cta:hover {
  color: var(--color-orange-dark);
}

.package-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.package-card-image {
  background: var(--color-navy);
  line-height: 0;
}

.package-card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.package-card-body {
  padding: 1.25rem;
}

@media (min-width: 640px) {
  .package-card-body {
    padding: 1.5rem;
  }
}

.package-card h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
}

.package-tagline {
  margin: 0.625rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.package-includes-label {
  margin: 1.125rem 0 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-orange);
}

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

.package-includes li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.4375rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text);
}

.package-includes li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-weight: 700;
}

.package-grid {
  align-items: stretch;
}

.value-card {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  background: var(--color-surface);
}

.value-card h3 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-white);
}

.value-card p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.inventory-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.inventory-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 12rem;
  background: var(--gradient-soft-deep);
  overflow: hidden;
}

.inventory-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inventory-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}

.inventory-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.inventory-card h3 {
  margin: 0.75rem 0 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
}

.inventory-card .details {
  flex: 1;
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.inventory-card .inquire {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 600;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(242, 101, 34, 0.15);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-orange);
}

.price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-orange);
}

/* Lists */
.check-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-muted);
}

.check-list .mark {
  color: var(--color-orange);
  font-weight: 700;
}

.bullet-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

.bullet-list .mark {
  color: var(--color-orange);
  font-weight: 700;
}

#about .grid-2 > article > p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

#about .grid-2 > article > p + p {
  margin-top: 1rem;
}

#about .about-offer-intro {
  margin: 1rem 0 0;
}

#about .bullet-list {
  margin-top: 1.125rem;
}

#about .bullet-list li {
  line-height: 1.6;
  color: var(--color-text);
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--color-text);
}

.hours-list li {
  margin-bottom: 0.25rem;
}

/* Typography helpers */
.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.fine-print {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.fine-print--align-left {
  text-align: left;
}

.fine-print--align-left--tight {
  margin-top: 0.5rem;
}

.fine-print--align-left--spaced {
  margin-top: 2rem;
}

/* ==========================================================================
   5. Sections (page order)
   ========================================================================== */

/* --- Header (desktop only) --- */
.site-header {
  display: none;
}

@media (min-width: 768px) {
  .site-header {
    display: block;
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 23, 42, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    padding-top: env(safe-area-inset-top, 0);
  }

  .header-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-block: 0.75rem;
  }

  .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
  }

  .logo:hover {
    opacity: 0.9;
  }

  .logo img {
    display: block;
    height: 48px;
    width: auto;
    max-width: min(240px, 36vw);
    object-fit: contain;
    object-position: left center;
  }

  .site-header nav {
    display: block;
    flex: 1;
    min-width: 0;
  }

  .nav-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: none;
  }

  .nav-list a:hover {
    background: var(--color-surface);
    color: var(--color-white);
  }

  .nav-list a[aria-current="page"] {
    background: rgba(242, 101, 34, 0.15);
    color: var(--color-orange);
  }

  .header-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: auto;
    min-height: var(--touch-min);
    padding: 0.625rem 1.125rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: var(--color-white);
    background: var(--color-orange);
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    transition: background 0.15s;
  }

  .header-phone:hover {
    color: var(--color-white);
    background: var(--color-orange-dark);
  }

  .header-phone:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 2px;
  }
}

@media (min-width: 640px) {
  .nav-list a {
    padding: 0.5rem 1rem;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-soft);
  color: var(--color-white);
  border-bottom: var(--accent-line-height) solid var(--color-orange);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(242, 101, 34, 0.1) 0%, transparent 65%),
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(30, 51, 84, 0.5) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 48rem;
  margin: 0;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.hero-content {
  text-align: center;
}

.hero-eyebrow {
  margin-bottom: 0.625rem;
}

.hero-content h1::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  margin: 0.75rem auto 0;
  background: var(--color-orange);
  border-radius: 9999px;
  opacity: 0.9;
}

@media (min-width: 1024px) {
  .hero-content h1::after {
    margin-inline: 0;
    margin-top: 0.875rem;
  }
}

.hero-lead {
  max-width: 42rem;
  margin: 0.875rem auto 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

@media (min-width: 640px) {
  .hero-lead {
    margin-top: 1.125rem;
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

@media (min-width: 1024px) {
  .hero-lead {
    margin-inline: 0;
    color: rgba(255, 255, 255, 0.82);
  }
}

.hero-split .hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding-block: 1.25rem 2.5rem;
}

@media (min-width: 640px) {
  .hero-split .hero-grid {
    padding-block: 3rem 3.5rem;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-split .hero-grid {
    grid-template-columns: 1fr 1.15fr;
    padding-block: 5rem;
    gap: 3rem;
    align-items: center;
  }

  .hero-content {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
  }

  .hero-brand {
    grid-column: 2;
    grid-row: 1;
    max-width: none;
  }
}

@media (min-width: 1280px) {
  .hero-split .hero-grid {
    grid-template-columns: 1fr 1.25fr;
    gap: 3.5rem;
  }
}

.hero-split h1 {
  max-width: none;
}

.hero-media {
  width: min(21rem, 90vw);
  max-width: none;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .hero-media {
    width: min(23rem, 72vw);
  }
}

@media (min-width: 1024px) {
  .hero-media {
    width: 100%;
    margin-inline: 0;
  }
}

.hero-media img,
.hero-brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-meta {
  margin: 1.25rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

/* --- Quote block --- */
.quote-block {
  max-width: 40rem;
}

.quote-block h2 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .quote-block h2 {
    font-size: 2rem;
  }
}

.quote-block > div > p {
  margin: 1rem 0 0;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.contact-nudge {
  margin: 1.75rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .quote-block {
    max-width: 52rem;
  }

  .contact-nudge {
    white-space: nowrap;
    font-size: 0.875rem;
    letter-spacing: -0.01em;
  }
}

.contact-nudge a {
  color: var(--color-orange);
  font-weight: 600;
  text-decoration: none;
}

.contact-nudge a:hover {
  text-decoration: underline;
}

.lifestyle-closing {
  margin: 1.25rem 0 0;
  color: var(--color-text-muted);
}

.lifestyle-grid {
  align-items: start;
}

/* --- Transformations --- */
.transformation-card {
  display: grid;
  gap: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 1.25rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .transformation-card {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    padding: 1.5rem;
    gap: 2rem;
  }
}

.transformation-images {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.transformation-image {
  position: relative;
  flex: 1;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gradient-soft-deep);
  box-shadow: var(--shadow-md);
}

.transformation-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.transformation-image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--color-border);
  background: rgba(255, 255, 255, 0.03);
}

.transformation-label {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: rgba(11, 23, 42, 0.75);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.transformation-arrow {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--color-orange);
  font-weight: 700;
}

.transformation-details h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
}

.transformation-upgrades {
  margin: 0.75rem 0 0;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.transformation-meta {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.values-cards {
  margin-top: 3rem;
}

/* --- Spotlight --- */
.spotlight {
  position: relative;
  color: var(--color-white);
  padding: 3rem 0;
  background: var(--gradient-soft);
  border-top: 1px solid var(--color-border);
  border-bottom: var(--accent-line-height) solid var(--color-orange);
}

@media (min-width: 640px) {
  .spotlight {
    padding: 4rem 0;
  }
}

.spotlight-grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .spotlight-grid {
    grid-template-columns: minmax(0, 1fr) max-content;
    gap: 2.5rem;
  }

  .spotlight-benefits li {
    white-space: nowrap;
  }
}

.spotlight h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.spotlight-arrow {
  color: var(--color-orange);
  font-weight: 700;
  padding-inline: 0.15em;
}

.spotlight-content .eyebrow {
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .spotlight h2 {
    font-size: 1.75rem;
  }
}

.spotlight-tagline {
  margin: 1rem 0 0;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.94);
  max-width: 32rem;
}

.spotlight-copy {
  margin: 0.625rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 36rem;
}

@media (min-width: 640px) {
  .spotlight-tagline {
    margin-top: 1.125rem;
    font-size: 1.125rem;
  }

  .spotlight-copy {
    margin-top: 0.75rem;
    font-size: 1rem;
  }
}


.spotlight-benefits-wrap {
  display: flex;
  flex-direction: column;
}

.spotlight-benefits-label {
  margin: 0 0 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.spotlight-benefits {
  list-style: none;
  margin: 0;
  padding: 1.5rem 1.75rem;
  background: rgba(11, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--color-orange);
  border-radius: 0.75rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.spotlight-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.spotlight-benefits li:last-child {
  margin-bottom: 0;
}

.spotlight-benefits .mark {
  flex-shrink: 0;
  color: var(--color-orange);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.55;
}

/* --- Contact --- */
.contact-simple {
  max-width: 40rem;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .contact-simple {
    max-width: 48rem;
  }

  .contact-intro {
    white-space: nowrap;
    letter-spacing: -0.01em;
  }
}

.contact-panel {
  display: grid;
  gap: 0.875rem;
}

@media (min-width: 640px) {
  .contact-panel {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin-inline: auto;
  }
}

.contact-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.25rem;
  padding: 1.25rem 1.625rem;
  border-radius: var(--radius-lg);
  text-align: center;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.contact-action--email {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(242, 101, 34, 0.32);
}

.contact-action--email:hover {
  background: var(--color-orange-dark);
  color: var(--color-white);
}

.contact-action-heading {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.contact-action-sub {
  display: block;
  font-size: 0.9375rem;
  line-height: 1.45;
  font-weight: 600;
  opacity: 0.95;
  word-break: break-word;
}

@media (min-width: 640px) {
  .contact-action-sub {
    font-size: 1.0625rem;
    opacity: 1;
  }
}

.contact-nap {
  margin: 1.25rem 0 0;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
  color: var(--color-text);
}

.contact-nap a {
  color: var(--color-white);
  font-weight: 600;
  text-decoration: none;
}

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

.contact-area {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: center;
  color: var(--color-text-muted);
}

/* --- Footer --- */
.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.9);
  border-top: var(--accent-line-height) solid var(--color-orange);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.footer-main {
  padding-block: 2.5rem 2rem;
  text-align: center;
}

.footer-brand {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-white);
}

.footer-tagline {
  margin: 0.5rem 0 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.footer-desc {
  margin: 0.625rem auto 0;
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-block: 1rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom p {
  margin: 0;
}

/* ==========================================================================
   6. Mobile polish — readable, calm, easy to tap (Mesquite audience)
   ========================================================================== */

.mobile-only {
  display: none;
}

.desktop-only {
  display: revert;
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 767px) {
  :root {
    --space-section: 3rem;
    --space-container: 1.375rem;
    --touch-min: 3rem;
    --color-text-muted: rgba(255, 255, 255, 0.72);
    --color-surface-elevated: rgba(255, 255, 255, 0.08);
    --color-border: rgba(255, 255, 255, 0.12);
  }

  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  body {
    font-size: 1.0625rem;
    line-height: 1.65;
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0));
    -webkit-tap-highlight-color: rgba(242, 101, 34, 0.18);
  }

  [id] {
    scroll-margin-top: 1rem;
  }

  .mobile-only {
    display: block;
  }

  a.mobile-only.btn,
  .mobile-only.btn {
    display: inline-flex;
  }

  .desktop-only {
    display: none !important;
  }

  /* Hero — logo anchor, readable copy below */
  .hero-split .hero-grid {
    padding-block: calc(1rem + env(safe-area-inset-top, 0)) 2rem;
    gap: 0.25rem;
  }

  .hero-media.hero-brand {
    width: 100%;
    max-width: 28rem;
    margin-inline: auto;
    margin-bottom: -0.625rem;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.24));
  }

  .hero-content {
    padding-inline: 0.375rem;
  }

  .hero-content .hero-eyebrow {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 0.6875rem;
    letter-spacing: 0.13em;
  }

  .hero h1 {
    font-size: clamp(1.875rem, 7.5vw, 2.125rem);
    line-height: 1.14;
    letter-spacing: -0.03em;
    margin-top: 0;
  }

  .hero-content h1::after {
    width: 2.25rem;
    margin-top: 0.625rem;
  }

  .hero-lead {
    font-size: 1.0625rem;
    line-height: 1.65;
    max-width: none;
    margin: 0.75rem auto 0;
    padding-inline: 0.25rem;
    color: rgba(255, 255, 255, 0.76);
  }

  .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    margin-bottom: 0.875rem;
    color: var(--color-orange);
  }

  /* Section rhythm — subtle dividers, not heavy bars */
  main > section:not(#home) {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  main > section#services {
    border-top: none;
    box-shadow: none;
  }

  main > .spotlight {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: none;
  }

  .section {
    padding-block: var(--space-section);
  }

  .section-alt {
    background: var(--gradient-soft-deep);
    box-shadow: var(--shadow-inset-top);
  }

  .section-intro,
  .section-title {
    text-align: center;
    margin-bottom: 1.75rem;
    max-width: none;
    padding-inline: 0.25rem;
  }

  .section-intro p,
  .section-title p {
    max-width: 26rem;
    margin-inline: auto;
  }

  .contact-simple .section-intro {
    margin-bottom: 1.5rem;
  }

  .section-intro h2,
  .section-title h2 {
    font-size: 1.625rem;
    line-height: 1.22;
    letter-spacing: -0.02em;
  }

  .section-intro h2::after,
  .section-title h2::after {
    content: "";
    display: block;
    width: 2.5rem;
    height: 2px;
    margin: 0.875rem auto 0;
    background: var(--color-orange);
    border-radius: 9999px;
    opacity: 0.9;
  }

  .section-intro p,
  .section-title p {
    margin-top: 0.875rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  .section-title + .grid-inventory {
    margin-top: 2rem;
  }

  p.mobile-only {
    display: block;
    margin: 1rem 0 0;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--color-text-muted);
  }

  /* Sections — more air between cards */
  .grid-4,
  .grid-3,
  .package-grid {
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
  }

  .package-card-body {
    padding: 1.375rem 1.5rem 1.5rem;
  }

  .service-card h3,
  .package-card h3 {
    font-size: 1.125rem;
    letter-spacing: -0.01em;
  }

  .service-card p,
  .package-tagline {
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-top: 0.625rem;
  }

  .package-includes-label {
    margin-top: 1rem;
  }

  .package-includes li {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
  }

  .package-includes li:last-child {
    margin-bottom: 0;
  }

  /* Sticky bar handles call/email — hide duplicate CTAs in page body */
  .card-cta {
    display: none;
  }

  /* Quote block — one clear action on mobile */
  .quote-block h2 {
    font-size: 1.625rem;
  }

  .quote-block > div > p {
    font-size: 1.0625rem;
  }

  .check-list li {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 0.875rem;
  }

  /* Spotlight */
  .spotlight {
    padding: 3rem 0;
  }

  .spotlight-grid {
    gap: 1.75rem;
  }

  .spotlight-content {
    text-align: center;
    max-width: 100%;
    margin-inline: auto;
  }

  .spotlight-content .eyebrow {
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    margin-bottom: 0.875rem;
  }

  .spotlight h2 {
    font-size: clamp(1.0625rem, 4.2vw, 1.3125rem);
    line-height: 1.25;
    letter-spacing: -0.03em;
    white-space: normal;
  }

  .spotlight h2::after {
    content: "";
    display: block;
    width: 2.5rem;
    height: 2px;
    margin: 0.75rem auto 0;
    background: var(--color-orange);
    border-radius: 9999px;
    opacity: 0.9;
  }

  .spotlight-tagline {
    margin-top: 0.875rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
    max-width: 24rem;
    margin-inline: auto;
    color: rgba(255, 255, 255, 0.94);
  }

  .spotlight-copy {
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    max-width: none;
    margin-inline: auto;
    color: rgba(255, 255, 255, 0.76);
  }

  .spotlight-benefits-wrap {
    text-align: left;
  }

  .spotlight-benefits-label {
    text-align: center;
  }

  .spotlight-benefits {
    padding: 1.375rem 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(11, 23, 42, 0.6);
    box-shadow: var(--shadow-md);
  }

  .spotlight-benefits li {
    font-size: 0.9375rem;
    line-height: 1.55;
    margin-bottom: 0.625rem;
  }

  /* About & values */
  .grid-2 {
    gap: 2.5rem;
  }

  #about .grid-2 > article {
    text-align: center;
  }

  #about .grid-2 > article > h2::after {
    margin-inline: auto;
  }

  #about .grid-2 > article > p,
  #about .about-offer-intro {
    max-width: 26rem;
    margin-inline: auto;
  }

  #about .bullet-list {
    text-align: left;
    max-width: 26rem;
    margin-inline: auto;
  }

  #about .grid-2 > article > h2 {
    font-size: 1.625rem;
    line-height: 1.22;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    margin-top: 0.625rem;
  }

  #about .grid-2 > article > .eyebrow {
    margin-bottom: 0;
  }

  #about .grid-2 > article > h2::after {
    content: "";
    display: block;
    width: 2.5rem;
    height: 2px;
    margin-top: 0.875rem;
    background: var(--color-orange);
    border-radius: 9999px;
    opacity: 0.9;
  }

  #about .grid-2 > article > p {
    margin-top: 1rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
  }

  #about .about-offer-intro {
    margin-top: 1rem;
  }

  #about .bullet-list {
    margin-top: 1rem;
  }

  #about .bullet-list li {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
  }

  .values-cards {
    margin-top: 2rem;
    gap: 1.25rem;
  }

  .value-card {
    padding: 1.375rem;
  }

  .value-card h3 {
    font-size: 1.125rem;
  }

  .value-card p {
    font-size: 1rem;
  }

  /* Inventory */
  .inventory-card {
    box-shadow: var(--shadow-card);
  }

  .inventory-card-image {
    height: 13rem;
  }

  .inventory-card-body {
    padding: 1.375rem 1.5rem 1.5rem;
  }

  .inventory-card h3 {
    font-size: 1.125rem;
    letter-spacing: -0.01em;
  }

  .inventory-card .details {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .inventory-card .inquire {
    font-size: 0.9375rem;
    font-weight: 600;
    min-height: var(--touch-min);
    display: flex;
    align-items: center;
    margin-top: 1.125rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
  }

  .price {
    font-size: 1.1875rem;
  }

  .badge {
    font-size: 0.6875rem;
    letter-spacing: 0.04em;
    padding: 0.3125rem 0.625rem;
  }

  .fine-print {
    margin-top: 2rem;
    font-size: 0.8125rem;
    line-height: 1.55;
    opacity: 0.85;
  }

  /* Contact & CTA */
  .contact-action {
    min-height: var(--touch-min);
    padding: 1rem 1.375rem;
  }

  .contact-action-heading {
    font-size: 1.0625rem;
  }

  .contact-area {
    margin-top: 1.125rem;
    font-size: 0.8125rem;
  }

  .btn {
    font-size: 1rem;
  }

  /* Footer breathing room above sticky bar */
  .site-footer {
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0));
  }

  .footer-main {
    padding-block: 2rem 2.25rem;
    text-align: center;
  }

  .footer-brand {
    font-size: 1.0625rem;
  }

  .footer-tagline {
    font-size: 0.9375rem;
  }

  .footer-desc {
    margin-inline: auto;
    max-width: 22rem;
    font-size: 0.875rem;
    line-height: 1.65;
  }

  /* Sticky mobile call bar */
  .mobile-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    padding: 0.625rem var(--space-container) calc(0.625rem + env(safe-area-inset-bottom, 0));
    background: rgba(11, 23, 42, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  }

  .mobile-call-bar__call {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: var(--touch-min);
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-md);
    background: var(--color-orange);
    color: var(--color-white);
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(242, 101, 34, 0.35);
  }

  .mobile-call-bar__call:hover {
    color: var(--color-white);
    background: var(--color-orange-dark);
  }
}

