/* ============================================
   Perfect Auto Maintenance – Main Styles
   Brand: Blue gradient + silver/white
   ============================================ */

:root {
  /* Brand – from logo */
  --blue-dark: #0a3d7a;
  --blue-mid: #1565c0;
  --blue-bright: #1e88e5;
  --blue-gradient: linear-gradient(145deg, #1e88e5 0%, #1565c0 50%, #0d47a1 100%);
  --accent: #ff9800;
  --accent-hover: #f57c00;
  --silver: #e8eef4;
  --silver-dark: #b0bec5;
  --white: #ffffff;
  --text: #1a237e;
  --text-muted: #455a64;
  --overlay: rgba(10, 61, 122, 0.75);
  --hero-overlay: linear-gradient(135deg, rgba(5, 18, 36, 0.88) 0%, rgba(10, 45, 85, 0.82) 45%, rgba(4, 12, 28, 0.9) 100%);
  --hero-gold: #d4af37;
  --hero-gold-soft: rgba(212, 175, 55, 0.9);
  --hero-champagne: rgba(255, 252, 242, 0.95);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --transition: 0.2s ease;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

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

a:hover {
  text-decoration: underline;
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--blue-mid);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

/* ========== Header ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
}

.logo:hover {
  text-decoration: none;
  color: var(--blue-mid);
}

.logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--silver);
  outline: 2px solid var(--blue-mid);
  outline-offset: 2px;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: var(--transition);
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after  { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after  { top: 0; transform: rotate(-45deg); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
}

.main-nav a {
  color: var(--text);
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--blue-mid);
  text-decoration: none;
}

.header-cta {
  padding: 0.6rem 1rem;
  background: var(--blue-gradient);
  color: var(--white) !important;
  border-radius: var(--radius);
  font-weight: 600;
}

.header-cta:hover {
  opacity: 0.95;
  text-decoration: none;
}

/* ========== Hero – Modern, Professional & Luxurious ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #071d3a 0%, #0a3d7a 50%, #0d47a1 100%);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 3rem) 2rem 4rem;
}

.hero-content {
  flex: 1;
  min-width: 0;
  max-width: 600px;
  text-align: left;
  animation: heroFadeIn 1s ease-out 0.2s both;
}

.hero-rating {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--hero-gold);
  letter-spacing: 0.08em;
}

.hero-rating span {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  margin-left: 0.25rem;
}

.hero-card {
  flex-shrink: 0;
  width: 320px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  animation: heroFadeIn 1s ease-out 0.4s both;
}

.hero-card-title {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

.hero-card-address {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.hero-card-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hero-gold);
}

.hero-card-link:hover {
  color: var(--hero-champagne);
  text-decoration: none;
}

.hero-card-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin: 1.5rem 0;
}

.hero-card-hours {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-card-cta {
  width: 100%;
  justify-content: center;
}

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

.hero-accent-line {
  width: 48px;
  height: 2px;
  background: var(--hero-gold);
  margin: 0 0 0.75rem;
  opacity: 0.95;
}

.hero-headline {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.hero-subheadline {
  margin: 0 0 1.25rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.75rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform 0.1s ease, box-shadow var(--transition);
}

.btn:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 152, 0, 0.4);
}

.btn-primary:hover {
  background: var(--accent-hover);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245, 124, 0, 0.45);
}

/* Hero-specific primary – gold accent for luxury */
.hero .btn-primary {
  background: linear-gradient(145deg, #d4af37 0%, #b8962e 100%);
  color: #0a1628;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.hero .btn-primary:hover {
  background: linear-gradient(145deg, #e0bf44 0%, #c9a030 100%);
  color: #0a1628;
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  text-decoration: none;
  border-color: var(--white);
}

/* Hero secondary – refined outline */
.hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.6);
}

.hero .btn-secondary:hover {
  border-color: var(--hero-gold);
  color: var(--hero-champagne);
}

/* ========== Sections ========== */
.section {
  padding: 4rem 1.25rem;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

.section-lead {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.section-cta {
  text-align: center;
  margin: 2rem 0 0;
}

/* Services grid */
.section-services {
  background: var(--silver);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--blue-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(21, 101, 192, 0.35);
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: var(--text);
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ========== About – modern & luxurious ========== */
.section-about {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.04) 0%, transparent 50%, rgba(10, 61, 122, 0.06) 100%);
  pointer-events: none;
}

.container--about {
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.about-logo {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 20px rgba(21, 101, 192, 0.15));
}

.about-content {
  max-width: 520px;
}

.about-label {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-mid);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.about-title {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.about-lead {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

.about-body {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.about-accent-line {
  width: 48px;
  height: 3px;
  background: var(--blue-gradient);
  border-radius: 2px;
}

/* ========== Reviews / Testimonials – modern & luxurious ========== */
.section-reviews {
  position: relative;
  background: linear-gradient(160deg, #0d47a1 0%, #0a3d7a 45%, #071d3a 100%);
  color: var(--white);
  overflow: hidden;
}

.reviews-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(30, 136, 229, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(21, 101, 192, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.section-reviews .container {
  position: relative;
  z-index: 1;
}

.reviews-label {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.reviews-title {
  margin: 0 0 2.5rem;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  letter-spacing: -0.02em;
}

.reviews-slider-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}

.reviews-slider {
  position: relative;
  flex: 1;
  min-width: 0;
  max-width: 620px;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card {
  flex: 0 0 100%;
  width: 100%;
  margin: 0;
  padding: 2.25rem 2rem;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.08);
  text-align: left;
  border-left: 4px solid var(--blue-mid);
  position: relative;
}

.review-quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  color: rgba(21, 101, 192, 0.15);
}

.review-quote-icon svg {
  width: 100%;
  height: 100%;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 20px;
  height: 20px;
  color: #f59e0b;
}

.review-text {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-gradient);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.review-cite {
  display: block;
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.review-source {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.slider-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: var(--blue-mid);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn svg {
  width: 24px;
  height: 24px;
}

.slider-btn:hover,
.slider-btn:focus-visible {
  background: var(--white);
  color: var(--blue-dark);
  transform: scale(1.05);
  outline: none;
}

/* ========== Contact & Location – modern & catchy ========== */
.section-contact {
  position: relative;
  background: linear-gradient(165deg, #f0f7ff 0%, #e8f0fa 40%, #f5f9fc 100%);
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(21, 101, 192, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, transparent 0%, rgba(30, 136, 229, 0.04) 100%);
  pointer-events: none;
}

.container--contact {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.contact-label {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-mid);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
}

.contact-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.contact-lead {
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem 1.25rem;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(21, 101, 192, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(21, 101, 192, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(21, 101, 192, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: rgba(21, 101, 192, 0.18);
}

.contact-card:focus-visible {
  outline: 3px solid var(--blue-mid);
  outline-offset: 2px;
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  padding: 10px;
  background: var(--blue-gradient);
  border-radius: 12px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(21, 101, 192, 0.3);
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-mid);
  margin-bottom: 0.35rem;
}

.contact-card-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  flex: 1;
}

.contact-card-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.75rem;
  transition: color 0.2s ease;
}

.contact-card:hover .contact-card-cta {
  color: var(--accent-hover);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn--contact {
  min-width: 180px;
}

/* Get directions – solid blue, high visibility on light background */
.btn-directions {
  background: var(--blue-gradient) !important;
  color: var(--white) !important;
  border: 2px solid transparent !important;
  box-shadow: 0 4px 14px rgba(21, 101, 192, 0.35);
}

.btn-directions:hover {
  filter: brightness(1.05);
  text-decoration: none !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(21, 101, 192, 0.4);
}

/* Footer */
/* ========== Footer – multi-column layout ========== */
.site-footer {
  background: #0a2540;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2.5rem;
  padding: 3rem 1.25rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}

.footer-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.footer-heading {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
}

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

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-phone {
  margin: 0 0 0.5rem;
}

.footer-phone a {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  text-decoration: none;
}

.footer-phone a:hover {
  text-decoration: underline;
}

.footer-address {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 1.25rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.site-footer a {
  color: inherit;
}

/* ========== Mobile ========== */
@media (max-width: 768px) {
  .section {
    padding: 3rem 1.25rem;
  }

  .header-inner {
    padding: 0.75rem 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid var(--silver);
  }

  .main-nav a {
    display: block;
    padding: 1rem;
  }

  .header-cta {
    margin-top: 1rem;
    text-align: center;
  }

  /* Hero */
  .hero-inner {
    flex-direction: column;
    gap: 2rem;
    padding: calc(var(--header-height) + 2rem) 1rem 2.5rem;
    text-align: center;
  }

  .hero-content {
    max-width: none;
    text-align: center;
    padding: 0;
  }

  .hero-accent-line {
    margin: 0 auto 0.75rem;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-card {
    display: none;
  }

  .hero-headline {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .hero-subheadline {
    font-size: 0.95rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-accent-line {
    margin-bottom: 0.75rem;
  }

  /* Services */
  .section-title {
    font-size: 1.5rem;
  }

  .section-lead {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-card {
    padding: 1.5rem 1.25rem;
  }

  .section-cta {
    margin-top: 1.5rem;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    text-align: center;
  }

  .about-visual {
    order: -1;
  }

  .about-logo {
    max-width: 140px;
  }

  .about-content {
    max-width: none;
  }

  .about-title {
    font-size: 1.5rem;
  }

  .about-lead,
  .about-body {
    text-align: center;
  }

  .about-accent-line {
    margin: 0 auto;
  }

  /* Reviews */
  .reviews-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .reviews-slider-wrap {
    gap: 1rem;
    padding: 0;
    flex-wrap: nowrap;
  }

  .slider-btn {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .reviews-slider {
    min-width: 0;
  }

  .review-card {
    padding: 1.5rem 1.25rem;
  }

  .review-text {
    font-size: 1rem;
  }

  .review-quote-icon {
    top: 1rem;
    right: 1rem;
    width: 28px;
    height: 28px;
  }

  /* Contact */
  .contact-title {
    font-size: 1.5rem;
  }

  .contact-lead {
    margin-bottom: 2rem;
    font-size: 0.95rem;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-card {
    padding: 1.25rem 1rem;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .btn--contact {
    min-width: 0;
    width: 100%;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 2.5rem 1rem 2rem;
    text-align: center;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-desc {
    font-size: 0.9rem;
  }

  .footer-logo {
    display: block;
  }

  .footer-logo img {
    margin: 0 auto;
  }

  .footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }

  .footer-nav li {
    margin-bottom: 0;
  }

  .footer-bottom {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .logo img {
    width: 40px;
    height: 40px;
  }

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

  .section {
    padding: 2.5rem 1rem;
  }

  .hero-inner {
    padding: calc(var(--header-height) + 1rem) 0.75rem 2rem;
  }

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

  .service-card {
    padding: 1.25rem 1rem;
  }

  .about-logo {
    max-width: 120px;
  }

  .reviews-slider-wrap {
    gap: 0.75rem;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .review-card {
    padding: 1.25rem 1rem;
  }

  .contact-card {
    padding: 1rem 0.75rem;
  }

  .footer-inner {
    padding: 2rem 1rem 1.5rem;
  }
}
