
/* =====================================================================
   Next Gen Auto Repair - Rugged Pacific NW design system
   ===================================================================== */

/* Brand fonts */
@font-face {
  font-family: 'Future Tense';
  src: url('../assets/fonts/FutureTense.ttf') format('truetype');
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mazzard';
  src: url('../assets/fonts/Mazzard-Light.otf') format('opentype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Mazzard';
  src: url('../assets/fonts/Mazzard-Medium.otf') format('opentype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Mazzard';
  src: url('../assets/fonts/Mazzard-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Mazzard';
  src: url('../assets/fonts/Mazzard-Bold.otf') format('opentype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Mazzard';
  src: url('../assets/fonts/Mazzard-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-display: swap;
}

:root {
  --bg: #FFFFFF;          /* white per brand guide */
  --bg-card: #F7F8FA;     /* near-white */
  --bg-dark: #000630;     /* brand navy (sampled from brand guide PDF) */
  --bg-darker: #000418;
  --text: #1B2238;        /* deep ink */
  --text-soft: #5F6680;   /* soft navy-gray */
  --accent: #000630;      /* brand navy */
  --accent-2: #EDA001;    /* brand golden orange (primary CTA) */
  --accent-3: #CA3500;    /* brand deep orange (hover) */
  --accent-4: #FED401;    /* brand yellow */
  --accent-5: #BA0800;    /* brand deep red */
  --line: #E1E4ED;        /* light divider */
  --shadow: 0 4px 16px rgba(0, 6, 48, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 6, 48, 0.18);
  --radius: 4px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-y: scroll; scrollbar-gutter: stable; }
/* Persistent scrollbar styling — keeps the rail visible during the intro overlay */
html::-webkit-scrollbar { width: 12px; }
html::-webkit-scrollbar-track { background: #0B1B3D; }
html::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 6px; border: 3px solid #0B1B3D; }
html::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.30); }
html { scrollbar-color: rgba(255,255,255,0.18) #0B1B3D; }
body.intro-playing { overflow-y: hidden; }
body.intro-playing::-webkit-scrollbar { width: 12px; }
body.intro-playing::-webkit-scrollbar-track { background: #0B1B3D; }
body.intro-playing::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 6px; border: 3px solid #0B1B3D; }

body {
  font-family: 'Mazzard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 23.5px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Mazzard', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial Black', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--text);
}

h1 { font-size: clamp(2.6rem, 7.5vw, 6rem); text-transform: uppercase; line-height: 1.02; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); text-transform: uppercase; margin-bottom: 1rem; line-height: 1.05; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
a { color: var(--accent-2); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 1.5rem; }

/* =====================================================================
   HEADER
   ===================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 9000;
  background: #0B1B3D;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.logo {
  font-family: 'Mazzard', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.85rem;
  text-align: center;
  line-height: 32px;
  border-radius: 4px;
  font-weight: 700;
}

.logo span { color: var(--accent-2); }

.logo-img { display: block; height: 56px; width: auto; max-width: 340px; }
.logo-img-footer { height: 192px; max-width: 640px; }
.logo-fallback { display: none; align-items: center; gap: 0.5rem; font-family: 'Mazzard', sans-serif; font-weight: 700; font-size: 1.4rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text); }
.footer-logo .logo-fallback { color: var(--bg); }

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-family: 'Mazzard', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}

.nav a:hover { color: var(--accent-2); }
.nav a.active { color: var(--accent-2); }
.nav a.active::after,
.nav a:hover::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 100%;
  background: var(--accent-2);
}

.nav-cta {
  background: var(--accent-2);
  color: #FFFFFF !important;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  border: 2px solid var(--accent-2);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--accent-3);
  border-color: var(--accent-3);
}

/* Nav dropdown */
.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown-toggle {
  font-family: 'Mazzard', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  font-weight: 500;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  position: relative;
  transition: color 0.2s;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active { color: var(--accent-2); }
.nav-dropdown-toggle.active::after,
.nav-dropdown:hover .nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 100%;
  background: var(--accent-2);
}
.nav-dropdown-caret { font-size: 0.7rem; transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-caret,
.nav-dropdown.open .nav-dropdown-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: transparent;
  border: 0;
  box-shadow: none;
  min-width: 240px;
  padding: 0.85rem 0 0 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
}
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  inset: 0.85rem 0 0 0;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 6, 48, 0.18);
  padding: 0.5rem 0;
  z-index: -1;
}
.nav-dropdown-menu > a {
  position: relative;
  z-index: 1;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1.2rem;
  margin: 0;
  color: var(--text);
  font-family: 'Mazzard', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: var(--bg-card);
  color: var(--accent-2);
}
.nav-dropdown-menu a::after { display: none !important; }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  margin: 5px 0;
  transition: 0.2s;
}

/* =====================================================================
   HERO
   ===================================================================== */

.hero {
  background: var(--bg-dark);
  color: var(--bg);
  padding: 7.5rem 0 9rem;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero::before { display: none; }
.hero .hero-inner::before { display: none; }
.hero .hero-inner {
  position: relative;
  z-index: 2;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -52px;
  left: 0;
  right: 0;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%201200%20200%27%20preserveAspectRatio=%27none%27%3E%3Cpath%20d=%27M0,200%20L0,155%20L70,142%20L135,118%20L200,132%20L275,108%20L345,124%20L420,102%20L490,118%20L560,98%20L635,112%20L710,95%20L785,115%20L860,98%20L935,118%20L1010,102%20L1085,120%20L1160,108%20L1200,115%20L1200,200%20Z%27%20fill=%27%235b6a8a%27%20fill-opacity=%270.45%27/%3E%3Cpath%20d=%27M0,200%20L0,165%20L55,150%20L120,120%20L180,135%20L240,98%20L300,115%20L365,82%20L430,110%20L500,70%20L570,98%20L635,68%20L705,95%20L770,75%20L840,108%20L905,82%20L975,112%20L1045,88%20L1115,118%20L1180,98%20L1200,105%20L1200,200%20Z%27%20fill=%27%237d8aa6%27%20fill-opacity=%270.6%27/%3E%3Cpath%20d=%27M0,200%20L0,175%20L40,158%20L95,132%20L150,148%20L210,108%20L265,135%20L320,85%20L370,55%20L420,28%20L465,52%20L505,82%20L555,42%20L600,12%20L650,38%20L695,75%20L745,52%20L795,88%20L845,62%20L895,98%20L950,72%20L1005,105%20L1060,85%20L1115,112%20L1170,95%20L1200,108%20L1200,200%20Z%27%20fill=%27%23ffffff%27/%3E%3Cpath%20d=%27M210,108%20L265,135%20L240,150%20Z%27%20fill=%27%230B1B3D%27%20fill-opacity=%270.15%27/%3E%3Cpath%20d=%27M320,85%20L370,55%20L420,28%20L420,80%20L390,100%20Z%27%20fill=%27%230B1B3D%27%20fill-opacity=%270.2%27/%3E%3Cpath%20d=%27M420,28%20L465,52%20L465,108%20L445,118%20Z%27%20fill=%27%230B1B3D%27%20fill-opacity=%270.12%27/%3E%3Cpath%20d=%27M555,42%20L600,12%20L650,38%20L640,90%20L605,110%20Z%27%20fill=%27%230B1B3D%27%20fill-opacity=%270.2%27/%3E%3Cpath%20d=%27M600,12%20L650,38%20L650,95%20L625,108%20Z%27%20fill=%27%230B1B3D%27%20fill-opacity=%270.1%27/%3E%3Cpath%20d=%27M745,52%20L795,88%20L770,125%20Z%27%20fill=%27%230B1B3D%27%20fill-opacity=%270.18%27/%3E%3Cpath%20d=%27M845,62%20L895,98%20L870,135%20Z%27%20fill=%27%230B1B3D%27%20fill-opacity=%270.18%27/%3E%3Cpath%20d=%27M950,72%20L1005,105%20L985,140%20Z%27%20fill=%27%230B1B3D%27%20fill-opacity=%270.15%27/%3E%3Cpath%20d=%27M1060,85%20L1115,112%20L1095,140%20Z%27%20fill=%27%230B1B3D%27%20fill-opacity=%270.15%27/%3E%3Cpath%20d=%27M150,148%20L210,108%20L195,158%20Z%27%20fill=%27%230B1B3D%27%20fill-opacity=%270.1%27/%3E%3C/svg%3E") no-repeat bottom / 100% 200px;
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.hero h1 { color: var(--bg); margin: 0 auto 2rem; max-width: 1100px; font-size: clamp(47.6px, 8.5vw, 119px); }
.hero h1 .accent { color: var(--accent-2); }

.hero-sub {
  font-size: clamp(19.55px, 1.6vw, 25.5px);
  max-width: 720px;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero-ctas .btn { padding: 1.1rem 2rem; font-size: 1.1rem; }

.hero-tagline {
  display: inline-block;
  font-family: 'Mazzard', sans-serif;
  font-size: 16.15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.5rem;
  padding: 0.55rem 1.2rem;
  border: 1px solid rgba(243, 146, 0, 0.4);
  border-radius: 4px;
  font-weight: 500;
}

/* =====================================================================
   BUTTONS
   ===================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: 'Mazzard', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent-2);
  color: var(--bg);
  border-color: var(--accent-2);
}
.btn-primary:hover {
  background: #C77600;
  border-color: #C77600;
  color: var(--bg);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--bg);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-secondary:hover {
  background: var(--bg);
  color: var(--text);
  border-color: var(--bg);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--bg); }

/* =====================================================================
   SECTIONS
   ===================================================================== */

section { padding: 5rem 0; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .kicker {
  display: inline-block;
  font-family: 'Mazzard', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--text-soft); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }

/* =====================================================================
   CARDS / GRID
   ===================================================================== */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(0, 6, 48, 0.1);
  color: var(--accent);
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--text-soft); margin-bottom: 1rem; }

.card-price {
  font-family: 'Mazzard', sans-serif;
  font-size: 1.15rem;
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card-link {
  margin-top: auto;
  font-family: 'Mazzard', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  font-weight: 600;
}
.card-link::after { content: ' →'; transition: transform 0.2s; }
.card:hover .card-link { color: var(--accent-2); }

/* =====================================================================
   ALT SECTION (darker)
   ===================================================================== */

.section-alt { background: var(--bg-card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-dark {
  background: var(--bg-dark);
  color: var(--bg);
  border: 0;
}
.section-dark h2, .section-dark h3 { color: var(--bg); }
.section-dark p { color: rgba(255, 255, 255, 0.8); }
.section-dark .section-header .kicker { color: var(--accent-2); }
.section-dark .card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}
.section-dark .card h3 { color: var(--bg); }
.section-dark .card p { color: rgba(255, 255, 255, 0.7); }
.section-dark .card-icon { background: rgba(243, 146, 0, 0.2); color: var(--accent-2); }
.section-dark .card-link { color: var(--accent-2); }

/* =====================================================================
   FEATURE LIST
   ===================================================================== */

.feature-list { list-style: none; padding: 0; }
.feature-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  color: var(--text-soft);
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--accent);
  font-weight: 700;
  width: 24px;
  height: 24px;
  background: rgba(0, 6, 48, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-size: 0.8rem;
}

/* =====================================================================
   CTA BAR
   ===================================================================== */

.cta-bar {
  background: var(--bg-darker);
  color: var(--bg);
  padding: 4rem 0;
  text-align: center;
}
.cta-bar h2 { color: var(--bg); margin-bottom: 1rem; }
.cta-bar p { color: rgba(255, 255, 255, 0.7); margin-bottom: 2rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-bar-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =====================================================================
   FOOTER
   ===================================================================== */

.footer {
  background: var(--bg-darker);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
  border-top: 4px solid var(--accent-2);
}

.footer h4 {
  color: var(--bg);
  font-family: 'Mazzard', sans-serif;
  text-transform: uppercase;
  font-size: 1em;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 0.6rem; font-size: 1em; }
.footer ul a { color: rgba(255, 255, 255, 0.7); font-size: 1em; }
.footer ul a:hover { color: var(--accent-2); }

.footer-brand .logo { color: var(--bg); margin-bottom: 1rem; }
.footer-brand p { font-size: 1em; }

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

/* =====================================================================
   CONTENT PAGES (services, areas, brands)
   ===================================================================== */

.page-hero {
  background: var(--bg-dark);
  color: var(--bg);
  padding: 5.5rem 0 7rem;
  position: relative;
}
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(243, 146, 0, 0.08) 0%, transparent 60%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  height: 150px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%201200%20200%27%20preserveAspectRatio=%27none%27%3E%3Cpath%20d=%27M0,200%20L0,155%20L70,142%20L135,118%20L200,132%20L275,108%20L345,124%20L420,102%20L490,118%20L560,98%20L635,112%20L710,95%20L785,115%20L860,98%20L935,118%20L1010,102%20L1085,120%20L1160,108%20L1200,115%20L1200,200%20Z%27%20fill=%27%235b6a8a%27%20fill-opacity=%270.45%27/%3E%3Cpath%20d=%27M0,200%20L0,165%20L55,150%20L120,120%20L180,135%20L240,98%20L300,115%20L365,82%20L430,110%20L500,70%20L570,98%20L635,68%20L705,95%20L770,75%20L840,108%20L905,82%20L975,112%20L1045,88%20L1115,118%20L1180,98%20L1200,105%20L1200,200%20Z%27%20fill=%27%237d8aa6%27%20fill-opacity=%270.6%27/%3E%3Cpath%20d=%27M0,200%20L0,175%20L40,158%20L95,132%20L150,148%20L210,108%20L265,135%20L320,85%20L370,55%20L420,28%20L465,52%20L505,82%20L555,42%20L600,12%20L650,38%20L695,75%20L745,52%20L795,88%20L845,62%20L895,98%20L950,72%20L1005,105%20L1060,85%20L1115,112%20L1170,95%20L1200,108%20L1200,200%20Z%27%20fill=%27%23ffffff%27/%3E%3Cpath%20d=%27M210,108%20L265,135%20L240,150%20Z%27%20fill=%27%230B1B3D%27%20fill-opacity=%270.15%27/%3E%3Cpath%20d=%27M320,85%20L370,55%20L420,28%20L420,80%20L390,100%20Z%27%20fill=%27%230B1B3D%27%20fill-opacity=%270.2%27/%3E%3Cpath%20d=%27M420,28%20L465,52%20L465,108%20L445,118%20Z%27%20fill=%27%230B1B3D%27%20fill-opacity=%270.12%27/%3E%3Cpath%20d=%27M555,42%20L600,12%20L650,38%20L640,90%20L605,110%20Z%27%20fill=%27%230B1B3D%27%20fill-opacity=%270.2%27/%3E%3Cpath%20d=%27M600,12%20L650,38%20L650,95%20L625,108%20Z%27%20fill=%27%230B1B3D%27%20fill-opacity=%270.1%27/%3E%3Cpath%20d=%27M745,52%20L795,88%20L770,125%20Z%27%20fill=%27%230B1B3D%27%20fill-opacity=%270.18%27/%3E%3Cpath%20d=%27M845,62%20L895,98%20L870,135%20Z%27%20fill=%27%230B1B3D%27%20fill-opacity=%270.18%27/%3E%3Cpath%20d=%27M950,72%20L1005,105%20L985,140%20Z%27%20fill=%27%230B1B3D%27%20fill-opacity=%270.15%27/%3E%3Cpath%20d=%27M1060,85%20L1115,112%20L1095,140%20Z%27%20fill=%27%230B1B3D%27%20fill-opacity=%270.15%27/%3E%3Cpath%20d=%27M150,148%20L210,108%20L195,158%20Z%27%20fill=%27%230B1B3D%27%20fill-opacity=%270.1%27/%3E%3C/svg%3E") no-repeat bottom / 100% 150px;
  pointer-events: none;
  z-index: 1;
}
.page-hero h1 { color: var(--bg); margin-bottom: 1rem; }
.page-hero p { color: rgba(255, 255, 255, 0.85); font-size: 1.2rem; max-width: 680px; }
.page-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-family: 'Mazzard', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.page-hero .breadcrumb a { color: rgba(255, 255, 255, 0.7); }

.content { padding: 4rem 0; }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; }
@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
}

.content-body p { color: var(--text); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.2rem; }
.content-body h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.content-body h3 { margin-top: 1.75rem; margin-bottom: 0.75rem; }

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: sticky;
  top: 90px;
}
.sidebar-card h3 { margin-bottom: 1rem; color: var(--accent); }
.sidebar-card p { color: var(--text-soft); margin-bottom: 1rem; }
.sidebar-card .btn { width: 100%; justify-content: center; margin-bottom: 0.5rem; }

/* =====================================================================
   CONTACT
   ===================================================================== */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-method {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-method:last-child { border-bottom: 0; }
.contact-method .label {
  font-family: 'Mazzard', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.25rem;
}
.contact-method .value {
  font-family: 'Mazzard', sans-serif;
  font-size: 1.4rem;
  color: var(--text);
}
.contact-method .value a { color: var(--accent-2); font-weight: 600; }

form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
label {
  display: block;
  font-family: 'Mazzard', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.4rem;
}
input, select, textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 6, 48, 0.1);
}
textarea { min-height: 120px; resize: vertical; }


/* Reviews section — pinned to original sizes (not affected by global 20% bump) */
.google-badge-title { font-size: 30.6px !important; }
.google-badge-meta { font-size: 23.46px !important; }
.google-badge-meta strong { font-size: 25.5px !important; }
.google-stars { font-size: 26.52px !important; }
.gcard-name { font-size: 17px !important; }
.gcard-meta { font-size: 13.94px !important; }
.gcard-stars { font-size: 17.85px !important; }
.gcard-when { font-size: 14.45px !important; }
.gcard-text { font-size: 16.15px !important; }
.gcard-verified { font-size: 13.26px !important; }
.reviews-marquee-link { font-size: 19.38px !important; }

/* Reviews marquee (right under hero) - Google-styled */
.reviews-marquee-section {
  padding: 0 0 4.5rem;
  margin-top: -0.75rem;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.reviews-marquee-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
  text-align: center;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 1.68rem;
  padding: 1.68rem 2.4rem;
  background: #fff;
  border: 1px solid #DADCE0;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(60, 64, 67, 0.12);
  font-family: 'Roboto', 'Mazzard', -apple-system, sans-serif;
}
.google-g { flex-shrink: 0; width: 58px !important; height: 58px !important; }
.google-badge-title {
  font-family: 'Roboto', 'Mazzard', sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #202124;
  line-height: 1.15;
}
.google-badge-meta {
  font-family: 'Roboto', 'Mazzard', sans-serif;
  font-size: 1.15rem;
  color: #5F6368;
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.google-badge-meta strong { color: #202124; font-weight: 500; font-size: 1.25rem; }
.google-stars { color: #FBBC04; letter-spacing: 0.06em; font-size: 1.3rem; }
.reviews-marquee-link {
  font-family: 'Roboto', 'Mazzard', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #1A73E8;
  letter-spacing: 0;
  text-transform: none;
}
.reviews-marquee-link:hover { color: #174EA6; text-decoration: underline; }

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}
.marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: scroll-left 90s linear infinite;
  padding: 0.75rem 1rem;
}
.marquee.paused .marquee-track {
  animation-play-state: paused;
}

/* Google-style review card */
.google-card {
  flex: 0 0 420px;
  background: #fff;
  border: 1px solid #DADCE0;
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.08);
  font-family: 'Roboto', 'Mazzard', -apple-system, sans-serif;
  transition: box-shadow 0.2s;
}
.google-card:hover { box-shadow: 0 4px 16px rgba(60, 64, 67, 0.15); }

.gcard-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}
.gcard-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1A73E8;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  flex-shrink: 0;
}
/* Vary avatar colors slightly using nth-child like Google does */
.marquee-card:nth-child(5n+1) .gcard-avatar { background: #1A73E8; }
.marquee-card:nth-child(5n+2) .gcard-avatar { background: #EA4335; }
.marquee-card:nth-child(5n+3) .gcard-avatar { background: #34A853; }
.marquee-card:nth-child(5n+4) .gcard-avatar { background: #FBBC04; }
.marquee-card:nth-child(5n+5) .gcard-avatar { background: #5F6368; }
.gcard-author { flex: 1; min-width: 0; }
.gcard-name {
  font-family: 'Roboto', 'Mazzard', sans-serif;
  font-weight: 500;
  color: #202124;
  font-size: 1rem;
  line-height: 1.3;
}
.gcard-meta {
  font-size: 0.82rem;
  color: #5F6368;
  margin-top: 0.1rem;
}
.gcard-g { flex-shrink: 0; opacity: 0.85; }
.gcard-rating-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
.gcard-stars {
  color: #FBBC04;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.gcard-when {
  color: #5F6368;
  font-size: 0.85rem;
}
.gcard-verified {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'Roboto', 'Mazzard', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #1A73E8;
  background: #E8F0FE;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
}
.gcard-verified svg { color: #1A73E8; }
.gcard-text {
  color: #202124;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 700px) {
  .google-card { flex: 0 0 320px; min-height: 240px; padding: 1.25rem; }
  .marquee-track { animation-duration: 70s; }
}

/* Old grid reviews section — hidden, marquee version above is used instead */
.reviews-section { display: none; }
.OLD-RULES-IGNORED-FROM-HERE { /* container ignored - rules below were for old layout */ }
.unused-old-reviews { }
.reviews-section {
  padding: 5rem 0;
  background: var(--bg);
}
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 100px;
}
.rating-stars {
  color: var(--accent-2);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}
.rating-numbers {
  font-family: 'Mazzard', sans-serif;
  font-size: 1rem;
  color: var(--text);
}
.rating-numbers strong { font-weight: 700; }
.rating-count {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-left: 0.4rem;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.2s;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.review-stars {
  color: var(--accent-2);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.review-text {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Mazzard', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.review-name {
  font-family: 'Mazzard', sans-serif;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}
.review-source {
  font-size: 0.8rem;
  color: var(--text-soft);
}
.reviews-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Brand grid - 5 per row on wide screens, responsive */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.brand-card-link { text-decoration: none; color: inherit; }
.brand-card {
  padding: 1.75rem 1.5rem;
}
.brand-card h3 {
  font-size: 2.15rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
  line-height: 1.1;
}
.brand-card-tagline {
  font-size: 1.35rem;
  color: var(--text-soft);
  margin-bottom: 1.1rem;
  min-height: 3em;
  line-height: 1.45;
}
.brand-card-services {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.brand-card-services li {
  font-size: 1.25rem;
  color: var(--text);
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  line-height: 1.45;
  font-weight: 500;
}
.brand-card-services li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 0.35rem;
  color: var(--accent-2);
  font-weight: 700;
  font-size: 1.4rem;
}
.brand-card .card-link {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media (max-width: 1200px) {
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 980px) {
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .brand-grid { grid-template-columns: 1fr; }
}

/* Area list (used on home + about) */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.area-list a {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: 'Mazzard', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: all 0.2s;
}
.area-list a:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

/* Mobile nav */
@media (max-width: 850px) {
  .nav { display: none; position: fixed; top: 64px; left: 0; right: 0; flex-direction: column; background: var(--bg); padding: 2rem 1.5rem; gap: 1.25rem; border-bottom: 1px solid var(--line); align-items: stretch; }
  .nav.open { display: flex; }
  .nav a { font-size: 1.1rem; color: var(--text); }
  .nav-cta { text-align: center; }
  /* Mobile: flatten the dropdown into stacked links */
  .nav-dropdown { display: block; }
  .nav-dropdown-toggle { color: var(--text); font-size: 1.1rem; padding: 0; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    border: 0;
    box-shadow: none;
    padding: 0.5rem 0 0 1rem;
    min-width: 0;
    background: transparent;
  }
  .nav-dropdown-menu a { padding: 0.4rem 0; font-size: 1rem; }
  .nav-dropdown-caret { display: none; }
  .menu-toggle { display: block; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero { padding: 4rem 0 5rem; min-height: 0; display: block; }
  section { padding: 3.5rem 0; }
  .page-hero { padding: 3rem 0 4rem; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Icons via inline SVG sized */
.icon { width: 24px !important; height: 24px !important; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
svg.icon { max-width: 24px; max-height: 24px; }

/* Service area section with map */
.service-area-section { padding: 5rem 0; background: var(--bg); }
.service-area-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.service-area-map iframe {
  width: 100%;
  height: 480px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 6, 48, 0.1);
}
.service-area-list h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}
.service-area-cities {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 1.5rem 0 !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0.6rem !important;
}
.service-area-cities li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}
.service-area-cities li::before,
.service-area-cities li::marker { content: none !important; display: none !important; }
.service-area-cities li a {
  display: flex !important;
  align-items: center !important;
  gap: 0.85rem !important;
  padding: 0.85rem 1rem !important;
  color: var(--text) !important;
  font-family: 'Mazzard', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.15rem !important;
  background: var(--bg-card) !important;
  border: 1px solid var(--line) !important;
  border-left: 4px solid var(--accent-2) !important;
  border-radius: var(--radius) !important;
  text-decoration: none !important;
  transition: all 0.18s ease !important;
}
.service-area-cities li a:hover {
  background: var(--accent) !important;
  color: #FFFFFF !important;
  border-left-color: var(--accent-2) !important;
  transform: translateX(4px) !important;
  box-shadow: 0 4px 14px rgba(0, 6, 48, 0.18) !important;
}
.service-area-cities .city-pin {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
  flex-shrink: 0 !important;
}
.service-area-cities .city-pin svg,
.service-area-cities li svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  color: var(--accent-2) !important;
  flex-shrink: 0 !important;
}
.service-area-cities .city-state {
  margin-left: auto !important;
  font-size: 0.85rem !important;
  color: var(--text-soft) !important;
  font-weight: 500 !important;
}
.service-area-note {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
}
@media (max-width: 850px) {
  .service-area-grid { grid-template-columns: 1fr; }
  .service-area-map iframe { height: 360px; }
  .service-area-cities { grid-template-columns: 1fr 1fr; }
}

/* 541 area code — extra cities chips */
.extra-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.extra-city {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  background: rgba(0, 6, 48, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--text);
}

/* Why Mobile section — 20% larger text */
.why-mobile .kicker { font-size: 1.2em; }
.why-mobile h2 { font-size: clamp(2.4rem, 5.4vw, 4.08rem); }
.why-mobile p { font-size: 1.2em; line-height: 1.65; }
.why-mobile .feature-list li { font-size: 1.2em; }

/* About Me — text between photos, 10% larger */
.about-me-text h2 { font-size: clamp(2.2rem, 4.95vw, 3.74rem); }
.about-me-text p, .about-me-text li { font-size: 1.1em; line-height: 1.65; }
.about-me-text ul.feature-list li { font-size: 1.1em; }

/* Brand-page comprehensive service catalog */
.service-catalog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2.5rem;
  margin-top: 1.5rem;
}
.catalog-category h3 {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  font-size: 1.75rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid var(--accent-2);
}
.catalog-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.catalog-category li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.6rem;
  font-size: 1.375rem;
  color: var(--text);
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
}
.catalog-category li:last-child { border-bottom: none; }
.catalog-category li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.4rem;
  color: var(--accent-2);
  font-weight: 700;
}
@media (max-width: 800px) {
  .service-catalog { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* Service area Leaflet map */
.leaflet-map { width: 100%; height: 450px; border-radius: 8px; overflow: hidden; position: relative; z-index: 0; isolation: isolate; }
.leaflet-container { font-family: inherit; }

/* First About Me photo — visible immediately, no fade */
.photo-story-item.photo-story-item--first {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.photo-story-item.photo-story-item--first .photo-story-image img {
  transition: none !important;
}

/* About page — shop hero image (wide trailer shot) */
.shop-hero {
  margin: 1.5rem 0 1.25rem;
}
.shop-hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(0, 6, 48, 0.22);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* About page — shop gallery */
.shop-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0 1.25rem;
}
.shop-gallery figure { margin: 0; }
.shop-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(0, 6, 48, 0.18);
}
.shop-gallery-note {
  font-style: italic;
  color: var(--text-soft);
  text-align: center;
  margin-top: 0.5rem;
}
@media (max-width: 800px) {
  .shop-gallery { grid-template-columns: 1fr; gap: 1rem; }
}

/* Service-area pages — fuel surcharge callout */
.fuel-surcharge {
  background: rgba(243, 146, 0, 0.10);
  border-left: 4px solid var(--accent-2);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  margin: 0 0 2rem;
}
.fuel-surcharge strong:first-of-type {
  display: block;
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}
.fuel-surcharge p { margin: 0; color: var(--text); }

/* Hours page — weekend service callout */
.weekend-callout {
  margin: 2rem 0 2.5rem;
  padding: 1.5rem 1.75rem;
  background: rgba(243, 146, 0, 0.10);
  border-left: 4px solid var(--accent-2);
  border-radius: 6px;
}
.weekend-callout h3 {
  color: var(--accent);
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  font-size: 1.4rem;
}
.weekend-callout p { margin: 0; color: var(--text); }

/* Hours page */
.hours-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0 2.5rem; }
.hours-table th, .hours-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 1.1rem;
}
.hours-table th { font-weight: 700; color: var(--text); width: 40%; }
.hours-table td { color: var(--text-soft); font-variant-numeric: tabular-nums; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }

/* About Me — photo story scroll-reveal sections */
.photo-story { padding: 4rem 0 6rem; background: var(--bg); overflow: hidden; }
.photo-story .container-narrow { max-width: 1320px; padding: 0 2rem; }
.photo-story-item {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 4.5rem;
  align-items: center;
  margin: 5rem 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.photo-story-item.in-view { opacity: 1; transform: translateY(0); }
.photo-story-item:nth-child(even):not(.reverse) .photo-story-image,
.photo-story-item.reverse .photo-story-image { order: 2; }
.photo-story-item:nth-child(even):not(.reverse) .photo-story-text,
.photo-story-item.reverse .photo-story-text { order: 1; }
.photo-story--single { padding: 1.5rem 0; }
.photo-story--single .photo-story-item { margin: 1.5rem 0; }
.photo-story-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 6, 48, 0.22);
  aspect-ratio: 5 / 6;
}
.photo-story-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.photo-story-item.in-view .photo-story-image img { transform: scale(1.02); }
.photo-story-text h3 {
  font-size: 3.17rem;
  margin-bottom: 1.1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.1;
}
.photo-story-text p { font-size: 1.58rem; line-height: 1.6; color: var(--text); }
@media (max-width: 1000px) {
  .photo-story .container-narrow { max-width: 100%; padding: 0 1.25rem; }
  .photo-story-item { grid-template-columns: 1fr; gap: 1.5rem; margin: 3.5rem 0; }
  .photo-story-item:nth-child(even):not(.reverse) .photo-story-image,
  .photo-story-item.reverse .photo-story-image { order: 0; }
  .photo-story-item:nth-child(even):not(.reverse) .photo-story-text,
  .photo-story-item.reverse .photo-story-text { order: 0; }
  .photo-story-image { aspect-ratio: 4 / 3; }
  .photo-story-text h3 { font-size: 2.3rem; }
}
