/* ===================================
   Durango Autoworks — Custom Stylesheet
   Family-owned auto repair since 1986
   =================================== */

/* --- CSS Custom Properties --- */
:root {
  --plum: #5C3D5E;
  --plum-dark: #3E2840;
  --plum-darker: #2D1C2F;
  --plum-light: #7A5A7C;
  --cream: #F5EDE0;
  --cream-dark: #E8DDD0;
  --gold: #C8993D;
  --gold-light: #E8C97A;
  --gold-dark: #A67D2E;
  --charcoal: #2B2B2B;
  --warm-white: #FAF8F5;
  --warm-gray: #8A8078;
  --border: #E8E0D8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --font-heading: 'Bitter', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--plum); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p { margin-bottom: 1rem; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* --- Layout Utilities --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section--cream { background: var(--cream); }
.section--plum { background: var(--plum); color: #fff; }
.section--plum h2, .section--plum h3, .section--plum .section-label { color: #fff; }
.section--plum .section-label { color: var(--gold-light); }
.section--dark { background: var(--plum-dark); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.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;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  text-align: center;
  justify-content: center;
  min-height: 48px;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn--gold {
  background: var(--gold);
  color: #fff;
}
.btn--gold:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.btn--plum {
  background: var(--plum);
  color: #fff;
}
.btn--plum:hover {
  background: var(--plum-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--cream {
  background: var(--cream);
  color: var(--plum-dark);
}
.btn--cream:hover {
  background: var(--cream-dark);
  color: var(--plum-dark);
}

/* ===================================
   HEADER / NAVIGATION
   =================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header__logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--plum-dark);
  line-height: 1.2;
}
.header__logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav__links {
  display: none;
  gap: 0.25rem;
}
.nav__links a {
  padding: 0.5rem 0.875rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.nav__links a:hover {
  color: var(--plum);
  background: var(--cream);
}
.header__cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.header__cta:hover { background: var(--gold-dark); color: #fff; }
.header__cta svg { width: 18px; height: 18px; }

/* Hamburger */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.5rem 1.5rem;
}
.nav__mobile.open { display: block; }
.nav__mobile a {
  display: block;
  padding: 0.875rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--plum); }
.nav__mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 1rem;
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: var(--radius);
}
.nav__mobile-cta svg { width: 20px; height: 20px; }

/* Desktop nav */
@media (min-width: 900px) {
  .nav__toggle { display: none; }
  .nav__links { display: flex; }
  .header__cta { display: inline-flex; }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  background: var(--plum-dark);
  color: #fff;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
}
.hero__content {
  padding: 3.5rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 153, 61, 0.15);
  border: 1px solid rgba(200, 153, 61, 0.3);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  width: fit-content;
}
.hero__badge svg { width: 16px; height: 16px; }
.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem 3.5rem;
  background: var(--plum);
  position: relative;
}
.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.5) 40px, rgba(255,255,255,0.5) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.5) 40px, rgba(255,255,255,0.5) 41px);
}
.hero__logo-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero__logo-wrap img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  margin: 0 auto 1.5rem;
}
.hero__est {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 55% 45%; min-height: 520px; }
  .hero__content { padding: 5rem 4rem 5rem 3rem; }
  .hero__visual { padding: 4rem; }
  .hero__logo-wrap img { width: 260px; height: 260px; }
}

/* ===================================
   DESIGN DETAILS — Mountain dividers,
   accent treatments, micro-interactions
   =================================== */

/* Gold ring on hero logo */
.hero__logo-wrap img {
  outline: 4px solid rgba(200, 153, 61, 0.35);
  outline-offset: 6px;
}

/* Gold accent notch on service cards */
.service-card {
  border-left: 3px solid transparent;
}
.service-card:hover {
  border-left-color: var(--gold);
}

/* Hover glow on service card icons */
.service-card:hover .service-card__icon {
  background: var(--plum);
  color: var(--cream);
  transition: all 0.3s;
}

/* Subtle topographic background on testimonials section */
.section--cream {
  position: relative;
}
.section--cream::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 20% 50%, transparent 0, transparent 18px, rgba(92,61,94,0.4) 18px, rgba(92,61,94,0.4) 19px, transparent 19px, transparent 38px),
    repeating-radial-gradient(circle at 80% 30%, transparent 0, transparent 22px, rgba(92,61,94,0.3) 22px, rgba(92,61,94,0.3) 23px, transparent 23px, transparent 46px);
}

/* Stat number accent underline */
.stat__number {
  position: relative;
  display: inline-block;
}
.stat__number::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

/* Testimonial card hover lift */
.testimonial-card {
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Amenity icon hover */
.amenity__icon {
  transition: background 0.2s, color 0.2s;
}
.amenity:hover .amenity__icon {
  background: var(--plum);
  color: var(--cream);
}

/* ===================================
   STATS BAR
   =================================== */
.stats {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.stats__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--border);
}
.stat {
  background: var(--cream);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.stat__number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--plum);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat__label {
  font-size: 0.82rem;
  color: var(--warm-gray);
  font-weight: 500;
}
@media (min-width: 700px) {
  .stats__inner { grid-template-columns: repeat(4, 1fr); }
}

/* ===================================
   SERVICES GRID (homepage)
   =================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all 0.3s ease;
}
.service-card:hover {
  border-color: var(--plum-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--plum);
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p {
  font-size: 0.95rem;
  color: var(--warm-gray);
  margin-bottom: 0;
}
@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===================================
   ABOUT TEASER (homepage split)
   =================================== */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}
.split__text {
  padding: 3.5rem 1.5rem;
}
.split__text h2 { margin-bottom: 1.25rem; }
.split__text p { color: var(--warm-gray); }
.split__accent {
  background: var(--plum);
  color: #fff;
  padding: 3.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split__accent blockquote {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
}
.split__accent cite {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gold-light);
}
@media (min-width: 900px) {
  .split { grid-template-columns: 60% 40%; }
  .split__text { padding: 5rem 4rem 5rem 3rem; }
  .split__accent { padding: 5rem 3rem; }
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--cream-dark);
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
}
.testimonial-card__text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
  line-height: 1.7;
}
.testimonial-card__author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--warm-gray);
}
.testimonial-card__source {
  font-size: 0.8rem;
  color: var(--plum-light);
  font-weight: 500;
}
@media (min-width: 700px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===================================
   AMENITIES ROW
   =================================== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.amenity {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.amenity__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
}
.amenity__icon svg { width: 22px; height: 22px; }
.amenity__text h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.amenity__text p {
  font-size: 0.82rem;
  color: var(--warm-gray);
  margin-bottom: 0;
}
@media (min-width: 600px) {
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .amenities-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ===================================
   CTA BANNER
   =================================== */
.cta-banner {
  background: var(--plum-dark);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--plum-darker);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer__brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.footer__brand h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.footer__brand p {
  font-size: 0.9rem;
  max-width: 280px;
}
.footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer__links a {
  display: block;
  padding: 0.3rem 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold-light); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.footer__contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.footer__contact-item a {
  color: rgba(255,255,255,0.7);
}
.footer__contact-item a:hover { color: var(--gold-light); }
.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.footer__social a:hover {
  background: var(--gold);
  color: #fff;
}
.footer__social svg { width: 20px; height: 20px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
@media (min-width: 700px) {
  .footer__inner { grid-template-columns: 1.5fr 1fr 1fr; }
}
@media (min-width: 900px) {
  .footer__inner { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
}

/* ===================================
   STICKY MOBILE CTA
   =================================== */
.mobile-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--plum-dark);
  padding: 0.75rem 1rem;
  gap: 0.75rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  min-height: 48px;
}
.mobile-cta__call {
  background: var(--gold);
}
.mobile-cta__directions {
  background: rgba(255,255,255,0.12);
}
.mobile-cta svg { width: 20px; height: 20px; }
@media (min-width: 900px) {
  .mobile-cta { display: none; }
}
/* Add padding to body so content isn't hidden behind sticky CTA on mobile */
body { padding-bottom: 72px; }
@media (min-width: 900px) {
  body { padding-bottom: 0; }
}

/* ===================================
   PAGE HEADER (interior pages)
   =================================== */
.page-header {
  background: var(--plum-dark);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
.page-header h1 {
  color: #fff;
  margin-bottom: 0.5rem;
}
.page-header p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.page-header .breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.page-header .breadcrumb a { color: var(--gold-light); }

/* ===================================
   ABOUT PAGE
   =================================== */
.story-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.story-section__text h2 { margin-bottom: 1rem; }
.story-section__text p { color: var(--warm-gray); }
.story-section__highlight {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border-left: 4px solid var(--gold);
}
.story-section__highlight p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--plum);
  line-height: 1.6;
  margin-bottom: 0;
}
@media (min-width: 900px) {
  .story-section { grid-template-columns: 1.2fr 0.8fr; }
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.team-card__avatar {
  width: 72px;
  height: 72px;
  background: var(--plum);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}
.team-card h3 { margin-bottom: 0.25rem; font-size: 1.15rem; }
.team-card__role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.team-card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin-bottom: 0;
}
@media (min-width: 600px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===================================
   SERVICES PAGE
   =================================== */
.service-group { margin-bottom: 4rem; }
.service-group:last-child { margin-bottom: 0; }
.service-group__header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--cream);
}
.service-group__header h2 { font-size: 1.6rem; }

.service-detail {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.25rem;
}
.service-detail h3 {
  color: var(--plum);
  margin-bottom: 0.5rem;
}
.service-detail > p {
  color: var(--warm-gray);
  margin-bottom: 1rem;
}
.service-detail__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
.service-detail__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--charcoal);
}
.service-detail__item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.service-detail__tip {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--plum-dark);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.service-detail__tip svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
@media (min-width: 600px) {
  .service-detail__items { grid-template-columns: repeat(2, 1fr); }
}

/* ===================================
   WARRANTY PAGE
   =================================== */
.warranty-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}
.warranty-feature:last-child { margin-bottom: 0; }
.warranty-feature__icon {
  width: 64px;
  height: 64px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
}
.warranty-feature__icon svg { width: 32px; height: 32px; }
.warranty-feature h3 { margin-bottom: 0.75rem; font-size: 1.3rem; }
.warranty-feature p { color: var(--warm-gray); }
.warranty-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.warranty-highlight {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.warranty-highlight svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}
.warranty-highlight span { font-size: 0.95rem; font-weight: 500; }
@media (min-width: 600px) {
  .warranty-highlights { grid-template-columns: repeat(2, 1fr); }
}

/* ===================================
   CAR CARE TIPS PAGE
   =================================== */
.tip-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
}
.tip-card:last-child { margin-bottom: 0; }
.tip-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.tip-card__header-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  flex-shrink: 0;
}
.tip-card__header-icon svg { width: 24px; height: 24px; }
.tip-card h3 { font-size: 1.25rem; }
.tip-card__content p {
  color: var(--warm-gray);
  margin-bottom: 0.75rem;
}
.tip-card__content p:last-child { margin-bottom: 0; }

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.contact-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.contact-info-card h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 1.15rem;
}
.contact-info-card h3 svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item svg {
  width: 18px;
  height: 18px;
  color: var(--plum-light);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 350px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.payment-badge {
  padding: 0.35rem 0.75rem;
  background: var(--cream);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--plum);
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

/* ===================================
   HOURS TABLE
   =================================== */
.hours-table {
  width: 100%;
}
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 0.6rem 0;
  font-size: 0.95rem;
}
.hours-table td:first-child {
  font-weight: 600;
  color: var(--charcoal);
}
.hours-table td:last-child {
  text-align: right;
  color: var(--warm-gray);
}
.hours-table .closed td:last-child { color: var(--plum-light); font-weight: 500; }

/* ===================================
   LINK STYLING FOR CONTENT
   =================================== */
.content-link {
  color: var(--plum);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s, color 0.2s;
}
.content-link:hover {
  color: var(--gold);
  gap: 0.5rem;
}
.content-link svg { width: 16px; height: 16px; }

/* View all link */
.view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--plum);
  font-size: 1rem;
  margin-top: 2rem;
  transition: gap 0.2s;
}
.view-all:hover { gap: 0.75rem; color: var(--gold); }
.view-all svg { width: 20px; height: 20px; }

/* ===================================
   NAPA BADGE
   =================================== */
.napa-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--plum);
}
.napa-badge svg { width: 18px; height: 18px; color: var(--gold); }

/* ===================================
   FORMS
   =================================== */

/* Tab switcher */
.form-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: -2px;
  position: relative;
  z-index: 1;
}
.form-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--warm-gray);
  cursor: pointer;
  transition: all 0.2s;
}
.form-tab:hover { color: var(--plum); border-color: var(--plum-light); }
.form-tab.active {
  color: var(--plum);
  background: #fff;
  border-color: var(--plum);
  border-bottom-color: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: -2px;
}
.form-tab svg { width: 18px; height: 18px; }

/* Form panels */
.form-panel { display: none; }
.form-panel.active { display: block; }

/* Form card */
.form-card {
  background: #fff;
  border: 2px solid var(--plum);
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  padding: 2.5rem;
}
.form-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Form elements */
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.375rem;
}
.form-group label .required { color: #c44; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--warm-white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(92, 61, 94, 0.12);
}
.form-group textarea { resize: vertical; }
.form-group select { cursor: pointer; }

/* Row layouts */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.form-row--three { grid-template-columns: 1fr; }
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .form-row--three { grid-template-columns: 1fr 1fr 1fr; }
}

/* Section label within form */
.form-section-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--plum);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.form-section-label:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

/* Checkbox */
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  font-weight: 400;
}
.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--plum);
  cursor: pointer;
}
.form-checkbox span { font-size: 0.9rem; color: var(--charcoal); }

/* Submit button */
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  margin-top: 0.5rem;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

/* Form note */
.form-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--warm-gray);
  font-style: italic;
  margin-bottom: 0;
}

/* Success state */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1rem;
  gap: 1rem;
}
.form-success svg { color: var(--gold); }
.form-success h3 {
  font-size: 1.5rem;
  color: var(--plum);
  margin-bottom: 0;
}
.form-success p {
  color: var(--warm-gray);
  max-width: 400px;
  margin-bottom: 0;
}
.form-success a { color: var(--plum); font-weight: 600; }
