/* ==========================================================================
   FLEXREPAIRS — Apple-grade Design System
   Refined dark glassmorphism, precise SF-style typography, subtle borders,
   fluid depth, and clear conversion funnel.
   ========================================================================== */

:root {
  --bg-base: #0a0c0d;
  --bg-surface: #111416;
  --bg-elevated: #161a1d;
  --bg-card: rgba(22, 26, 29, 0.72);
  --bg-card-hover: rgba(30, 36, 40, 0.85);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --border-focus: rgba(201, 237, 79, 0.65);
  
  --text-primary: #f5f5f7;
  --text-secondary: #a1a1a6;
  --text-tertiary: #6e6e73;
  
  --accent-lime: #c9ed4f;
  --accent-lime-hover: #dbff68;
  --accent-orange: #ff684b;
  --accent-gold: #f5a623;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.36);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.52);
  --shadow-glow: 0 0 24px rgba(201, 237, 79, 0.18);
  
  --blur-card: blur(20px);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  --font-sans: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Sora', 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'SF Mono', 'IBM Plex Mono', 'DM Mono', Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* 1. TOP UTILITY TICKER */
.utility {
  min-height: 38px;
  padding: 6px max(20px, calc((100vw - 1280px) / 2));
  background: linear-gradient(90deg, #121618 0%, #171d1f 50%, #121618 100%);
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.utility a {
  color: var(--accent-lime);
  font-weight: 600;
  transition: opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.utility a:hover {
  opacity: 0.8;
}

/* 2. NAVIGATION HEADER (Apple Glass Style) */
header {
  height: 72px;
  padding: 0 max(20px, calc((100vw - 1280px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(10, 12, 13, 0.8);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* Responsive header adjustments */
@media (max-width: 820px) {
  header { height: 64px; }
  nav { gap: 14px; }
  .book { padding: 8px 14px; font-size: 12px; }
  .logo { font-size: 18px; }
}

/* Mobile drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 72px;
  right: 0;
  width: 86%;
  max-width: 360px;
  height: calc(100% - 72px);
  background: linear-gradient(180deg, rgba(16,18,20,0.95), rgba(10,12,13,0.98));
  transform: translateX(110%);
  transition: transform 320ms cubic-bezier(.16,1,.3,1);
  z-index: 60;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav-drawer.open { transform: translateX(0%); }
.mobile-nav-drawer a { padding: 10px 14px; border-radius: 12px; background: rgba(255,255,255,0.02); }
.mobile-menu-toggle { display:inline-flex; background:transparent; border:0; padding:8px; border-radius:8px; }
.mobile-menu-toggle span { display:block; width:22px; height:2px; background:var(--text-primary); margin:4px 0; }

@media (min-width: 900px) {
  .mobile-nav-drawer, .mobile-menu-toggle { display:none; }
}

.logo {
  font-family: 'Orbitron', var(--font-sans);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.logo span {
  color: #ffffff;
}

.logo i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-lime);
  margin: 0 0 2px 4px;
  box-shadow: 0 0 10px var(--accent-lime);
}

nav {
  display: flex;
  gap: 32px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
}

nav a {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

nav a:hover {
  color: #ffffff;
}

/* BUTTONS & APPLE PILLS */
.book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent-lime);
  color: #000000;
  padding: 11px 22px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 14px rgba(201, 237, 79, 0.25);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.book:hover {
  background: var(--accent-lime-hover);
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(201, 237, 79, 0.38);
}

.book:active {
  transform: scale(0.98);
}

.booking-status {
  min-height: 1.6em;
  margin: 12px 0 0;
  color: var(--text-secondary);
  font-size: 13px;
}

.booking-status.is-error {
  color: var(--accent-orange);
}

.book b {
  font-size: 13px;
  transition: transform 0.2s ease;
}

.book:hover b {
  transform: translateX(2px);
}

.line-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  transition: all 0.2s ease;
}

.line-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-strong);
}

/* FLOATING PHONE DOCK (Apple Island pill) */
.phone-dock {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 18px 10px 20px;
  border-radius: var(--radius-pill);
  background: rgba(18, 22, 25, 0.88);
  border: 1px solid rgba(201, 237, 79, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 237, 79, 0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 45;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-dock:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: var(--accent-lime);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6), 0 0 28px rgba(201, 237, 79, 0.2);
}

.dock-copy span {
  display: block;
  color: var(--accent-lime);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dock-copy strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.phone-dock small {
  display: block;
  color: var(--text-tertiary);
  font-size: 11px;
  line-height: 1.3;
}

.phone-dock b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-lime);
  color: #000000;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(201, 237, 79, 0.4);
}

/* LAYOUT CONTAINER */
.wrap {
  width: min(1280px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-lime);
  margin-bottom: 12px;
}

/* 3. HERO SECTION */
.hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: radial-gradient(circle at 80% 20%, rgba(201, 237, 79, 0.05) 0%, transparent 60%), var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: #000000;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 65%, var(--bg-surface) 100%), linear-gradient(0deg, var(--bg-surface) 0%, transparent 25%);
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.image-label {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(18, 22, 25, 0.75);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-copy {
  padding: 80px 8% 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero h1 {
  font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
  color: #ffffff;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #ffffff 40%, var(--accent-lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy > p:not(.kicker) {
  margin: 0 0 32px;
  max-width: 460px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 16px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.proof {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  gap: 18px;
  align-items: center;
}

.proof strong {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.proof strong span {
  color: var(--accent-gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-left: 4px;
}

.proof small {
  padding-left: 18px;
  border-left: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.4;
  color: var(--text-secondary);
}

/* 4. STATEMENT / VALUE PILLARS */
.statement {
  padding: 80px max(20px, calc((100vw - 1280px) / 2));
  background: var(--bg-base);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.statement > p {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent-lime);
  margin: 0 0 16px;
}

.statement h2 {
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 auto;
  max-width: 860px;
  color: #ffffff;
}

.statement h2 em {
  font-style: normal;
  color: var(--text-secondary);
}

/* Apple Pill Badges */
.statement > div {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.statement > div span {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.statement > div span:hover {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* 5. SERVICES SECTION (Apple Card Grid) */
.services {
  padding: 100px 0 60px;
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.section-intro h2 {
  font-size: clamp(36px, 3.8vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
  color: #ffffff;
}

.section-intro > p:not(.kicker) {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

/* Precision Apple Service Card */
.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  backdrop-filter: var(--blur-card);
  -webkit-backdrop-filter: var(--blur-card);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.service-card:hover, .service-card.is-active {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-card.is-active {
  border-color: var(--accent-lime);
  box-shadow: 0 0 0 1px var(--accent-lime), var(--shadow-md);
}

.service-card span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent-lime);
}

.service-card strong {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.service-card small {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

.service-card em {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-lime);
  margin-top: auto;
  padding-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.full-book {
  display: inline-block;
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-lime);
  border-bottom: 1px solid var(--accent-lime);
  padding-bottom: 4px;
  transition: opacity 0.2s ease;
}

.full-book:hover {
  opacity: 0.8;
}

/* 6. BOOKING FORM (Elevated Apple Container) */
.booking-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding-top: 72px;
  padding-bottom: 96px;
}

.booking-copy {
  width: 100%;
  max-width: 980px;
  text-align: center;
}
.booking-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: #ffffff;
}

.booking-copy p:not(.kicker) {
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 15px;
  max-width: 760px;
  margin: 0 auto;
}

.repair-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 44px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  backdrop-filter: var(--blur-card);
  -webkit-backdrop-filter: var(--blur-card);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.repair-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.repair-form input,
.repair-form select,
.repair-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  transition: all 0.18s ease;
}

.repair-form input:focus,
.repair-form select:focus,
.repair-form textarea:focus {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(201, 237, 79, 0.15);
}

.repair-form select option {
  background: #161a1d;
  color: #ffffff;
}

@media (min-width: 721px) {
  .repair-form select optgroup {
    background: #f3f5f4;
    color: #161a1d;
    font-weight: 800;
  }
}

.repair-form textarea {
  resize: vertical;
  min-height: 220px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* 7. WORK GALLERY (Apple-Style Masonry Grid with Uniform Aspect Ratios) */
.work {
  padding: 90px 0 70px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

/* Booking form styles */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: start;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.008));
  padding: 22px;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
}
.form-grid label { display: block; font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
.form-grid .date-field > span,
.form-grid #time-label > span { display: block; margin-top: 3px; color: var(--accent-lime); font-family: var(--font-mono); font-size: 11px; }
.form-grid #date-input { color-scheme: dark; border-color: rgba(201,237,79,0.5); background: rgba(201,237,79,0.06); }
.form-grid #date-input::-webkit-datetime-edit { color: var(--text-primary); }
.form-grid #date-input::-webkit-calendar-picker-indicator { cursor: pointer; filter: invert(1); opacity: 0.9; }
.form-item { display:flex; flex-direction:column; gap:10px; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.02);
  color: var(--text-primary);
  font-size: 16px;
}
.form-grid select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--text-secondary) 50%), linear-gradient(135deg, var(--text-secondary) 50%, transparent 50%); background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px); background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.form-grid textarea { min-height: 180px; resize: vertical; }
.form-grid .booking-side { grid-column: 2 / 3; display:flex; flex-direction: column; gap:14px; }
.form-grid .booking-side .box { background: var(--accent-lime); color:#000; padding:16px; border-radius:12px; font-weight:800; font-size:15px; }
.hidden { display:none !important; }
.form-honeypot { display: none; }

/* Page and section motion: present on every page, restrained for a service site. */
body {
  animation: page-enter 560ms cubic-bezier(.16, 1, .3, 1) both;
}

.hero-image,
.hero-copy {
  animation: hero-enter 700ms cubic-bezier(.16, 1, .3, 1) both;
}

.hero-copy { animation-delay: 90ms; }

@keyframes page-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Main service selector: clear hierarchy, then a low-friction path into the form. */
.services {
  padding-top: 112px;
  padding-bottom: 94px;
}

.services .section-intro {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 20px 56px;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  align-items: end;
}

.services .section-intro .kicker {
  grid-column: 1 / -1;
  margin: 0;
}

.services .section-intro h2 {
  grid-column: 1;
  max-width: 12ch;
}

.services .section-intro > p:not(.kicker) {
  grid-column: 2;
  align-self: start;
  max-width: 48ch;
}

.services .services-nav-action {
  grid-column: 2;
}

.services-accordion {
  margin-top: 0;
  gap: 12px;
}

.services-accordion details {
  border-radius: 8px;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.services-accordion details:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.services-accordion details[open] {
  border-color: rgba(201, 237, 79, 0.55);
  background: rgba(201, 237, 79, 0.055);
}

.services-accordion details[open] > div {
  animation: service-details-in 260ms cubic-bezier(.16, 1, .3, 1) both;
}

.services-accordion details p {
  max-width: 54ch;
  line-height: 1.55;
}

.services-accordion details a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--accent-lime);
  border-bottom: 1px solid transparent;
}

.services-accordion details a:hover { border-color: currentColor; }

@keyframes service-details-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
  .services { padding-top: 72px; padding-bottom: 64px; }
  .services .section-intro { grid-template-columns: 1fr; gap: 16px; }
  .services .section-intro .kicker,
  .services .section-intro h2,
  .services .section-intro > p:not(.kicker),
  .services .services-nav-action { grid-column: 1; }
  .services .section-intro h2 { max-width: 16ch; }
}

@media (prefers-reduced-motion: reduce) {
  body,
  .hero-image,
  .hero-copy,
  .services-accordion details[open] > div { animation: none; }
  .services-accordion details { transition: none; }
}

/* Catalogue and review refinements. */
.services-hero {
  padding-top: 86px;
  padding-bottom: 36px;
}

.inquiry-section { padding-bottom: 84px; }
.inquiry-form { margin-top: 0; }
.inquiry-form .inquiry-message,
.inquiry-form .inquiry-submit { grid-column: 1 / -1; }
.inquiry-form .inquiry-submit { display: grid; gap: 4px; }
.inquiry-form .booking-status { margin: 0; }

.services-catalog {
  padding-bottom: 72px;
}

.services-catalog .service-grid {
  gap: 16px;
  margin-top: 0;
}

.services-catalog .service-card {
  min-height: 218px;
  gap: 14px;
  padding: 28px;
  border-radius: 8px;
  background: #121618;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.services-catalog .service-card::before {
  right: auto;
  bottom: 0;
  width: 3px;
  height: auto;
  background: var(--accent-lime);
  opacity: 0.72;
}

.services-catalog .service-card:hover,
.services-catalog .service-card.is-active {
  background: #171c1e;
  border-color: rgba(201, 237, 79, 0.52);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.services-catalog .service-card strong {
  font-size: 21px;
  line-height: 1.2;
}

.services-catalog .service-card small {
  max-width: 62ch;
  font-size: 14px;
}

.services-catalog .book-shortcut {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.services-catalog .book-shortcut:hover {
  color: var(--accent-lime);
  border-color: var(--accent-lime);
}

.services-catalog + .final {
  padding-top: 78px;
}

.carousel-slide.is-entering .review-head,
.carousel-slide.is-entering .review-stars,
.carousel-slide.is-entering .review-quote {
  animation: review-content-in 460ms cubic-bezier(.16, 1, .3, 1) both;
}

.carousel-slide.is-entering .review-stars { animation-delay: 55ms; }
.carousel-slide.is-entering .review-quote { animation-delay: 100ms; }

@keyframes review-content-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 680px) {
  .services-hero { padding-top: 58px; }
  .services-catalog { padding-bottom: 48px; }
  .services-catalog .service-card { min-height: 0; padding: 22px; }
  .services-catalog + .final { padding-top: 62px; }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-slide.is-entering .review-head,
  .carousel-slide.is-entering .review-stars,
  .carousel-slide.is-entering .review-quote { animation: none; }
}
.terms { font-size: 13px; color: var(--text-secondary); display:flex; gap:10px; align-items:center; width:100%; flex-wrap:wrap; }
.terms input[type="checkbox"] { width:18px; height:18px; margin:0; margin-right:8px; accent-color: var(--accent-lime); }
.terms { white-space:normal; }
.repair-form { margin-top: 18px; }
.repair-form .book { width: 100%; padding: 12px 16px; }

/* Focus states */
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { outline: none; box-shadow: 0 10px 28px rgba(0,0,0,0.56), 0 0 0 6px rgba(201,237,79,0.10); border-color: var(--border-focus); }

@media (max-width: 1300px) { .form-grid { grid-template-columns: 1fr 380px; } }
@media (max-width: 1100px) { .form-grid { grid-template-columns: 1fr 340px; } }
@media (max-width: 900px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .booking-side { grid-column: 1 / -1; }
  .form-grid .booking-side .box { width: 100%; }
  .repair-form .book { width: 100%; }
}

/* Make some elements slightly smaller on narrower phones so the layout remains usable */
@media (max-width: 420px) {
  .repair-form { padding: 24px; }
  .form-grid textarea { min-height: 140px; }
  .form-grid input, .form-grid select, .form-grid textarea { font-size: 15px; padding: 12px 12px; }
  .form-grid .booking-side .box { font-size: 14px; padding: 12px; }
}

/* Time pill styles */
.time-slots { display:flex; gap:8px; flex-wrap:wrap; align-items:center; }
.time-pill { background: rgba(255,255,255,0.03); color: var(--text-primary); border: 1px solid rgba(255,255,255,0.04); padding: 8px 12px; border-radius: 999px; font-weight:600; cursor:pointer; font-size:14px; }
.time-pill.selected { background: var(--accent-lime); color: #000; box-shadow: 0 8px 24px rgba(201,237,79,0.12); transform: translateY(-2px); }
.time-pill:focus { outline: none; box-shadow: 0 0 0 4px rgba(201,237,79,0.08); }
.time-pill[disabled] { opacity:0.4; cursor: not-allowed; }

/* reduce gaps inside form to avoid large empty spaces */
.form-grid { gap: 12px; }
.form-row { gap: 12px; }

/* Improvements requested: larger inputs for address, visible issue description on Drop Off */
.address-fields label input,
.address-fields label { width: 100%; }
.address-fields input { padding: 16px 14px; font-size: 16px; border-radius: 12px; }
.form-grid textarea { min-height: 180px; }

.bring-device-info .box { padding: 18px; font-size: 15px; line-height: 1.4; border-radius: 12px; }
.pickup-instructions { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); padding: 16px; border-radius: 10px; color: var(--text-primary); font-size: 14px; }
.pickup-instructions p { margin: 0; font-weight: 600; }

/* When booking-side is visible and viewport is narrow, ensure issue description remains tall */
@media (max-width: 720px) {
  .form-grid textarea { min-height: 200px; }
  .bring-device-info .box { font-size: 14px; }
}

.work-head {
  margin-bottom: 36px;
}

.work-head h2 {
  font-size: clamp(36px, 3.8vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: #ffffff;
}

.work-head p:not(.kicker) {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
/* Reviews carousel styles: crossfade, consistent sizing */
.carousel-viewport {
  width: 100%;
  min-height: 220px;
  display: block;
  overflow: visible;
}

/* Use grid layout for visible slides (left, center, right) */
.review-carousel {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.carousel-slide {
  position: relative;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: var(--shadow-sm);
  transform: translateY(0) scale(1);
  transition: transform 320ms cubic-bezier(.16,1,.3,1), box-shadow 320ms ease, opacity 320ms ease;
  pointer-events: auto;
  display: block;
}
.carousel-slide.is-active { z-index: 3; }
.carousel-slide.is-faded { opacity: 0.9; }
.carousel-slide.hidden { display: none !important; }
.review-quote {
  color: var(--text-secondary);
  margin: 12px 0 18px;
}
.carousel-controls { display:flex; align-items:center; gap:12px; }
.carousel-btn { background: rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.04); color:var(--text-primary); padding:8px 12px; border-radius:10px; cursor:pointer; }
.carousel-indicators { display:flex; gap:8px; align-items:center; }
.indicator-dot { width:10px; height:10px; border-radius:50%; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.06); cursor:pointer; }
.indicator-dot.is-active { background: var(--accent-lime); box-shadow: var(--shadow-glow); border-color: rgba(255,255,255,0.12); }

/* Work gallery mobile slideshow */
.work-grid figure { overflow: hidden; border-radius: 14px; background: rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.03); }
.work-grid figure img { width:100%; height:220px; object-fit:cover; display:block; }
.work-grid figcaption { position: absolute; left:14px; bottom:14px; z-index:2; font-family:var(--font-mono); font-size:11px; background: rgba(18,22,25,0.6); padding:8px 12px; border-radius:999px; color:var(--text-primary); }

@media (max-width: 720px) {
  .work-grid { display:grid; grid-template-columns:1fr; gap:14px; }
  .work-grid figure { display:block; position:relative; }
}

.work-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: #000000;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-grid figure.wide {
  grid-column: span 2;
}

.work-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.work-grid figure:hover img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.08);
}

.work-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  background: rgba(14, 18, 20, 0.85);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #ffffff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

/* 8. GOOGLE REVIEWS SECTION (Apple Glass Cards Grid) */
.reviews {
  padding: 100px 0 80px;
  background: var(--bg-base);
  border-bottom: 1px solid var(--border-subtle);
}

.review-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.review-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-copy h2 {
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
  color: #ffffff;
}

.review-copy > p:not(.kicker) {
  max-width: 600px;
  font-size: 16px;
  color: var(--text-secondary);
  margin: 0;
}

.review-score {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.review-score b {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.review-score span {
  font-size: 20px;
  color: var(--accent-gold);
  letter-spacing: 2px;
}

.review-score small {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  border-left: 1px solid var(--border-subtle);
  padding-left: 14px;
}

/* Pure Apple-style Card Grid */

/* Desktop: show three cards with large center item */
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 20px;
  position: relative;
  align-items: stretch;
  max-width: 1100px; /* constrain width so reviews don't span too wide */
  margin: 0 auto;
}

.review-grid .carousel-slide { position: relative; min-height: 240px; padding: 20px; border-radius: var(--radius-lg); background: var(--bg-card); border:1px solid var(--border-subtle); box-shadow:var(--shadow-sm); }
.carousel-slide .review-head { margin-bottom: 10px; }
.carousel-slide .review-quote { font-size: 15px; line-height:1.45; color:var(--text-secondary); max-width: 100%; }

/* larger center slide styling */
.carousel-slide.center { transform: scale(1.02); box-shadow: var(--shadow-md); }
.carousel-slide.side { transform: scale(0.98); opacity: 0.95; }
.carousel-slide.hidden { display: none; }

/* Responsive: single column carousel on small screens */
@media (max-width: 920px) {
  .review-grid { grid-template-columns: 1fr; max-width: 820px; }
  .carousel-slide.side, .carousel-slide.center { transform: none; }
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.review-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.avatar-1 { background: linear-gradient(135deg, #1f4037, #99f2c8); color: #000; }
.avatar-2 { background: linear-gradient(135deg, #f857a6, #ff5858); }
.avatar-3 { background: linear-gradient(135deg, #2193b0, #6dd5ed); color: #000; }
.avatar-4 { background: linear-gradient(135deg, #cc2b5e, #753a88); }
.avatar-5 { background: linear-gradient(135deg, #ee0979, #ff6a00); }
.avatar-6 { background: linear-gradient(135deg, #4776e6, #8e54e9); }

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.review-author strong {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-author small {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--text-tertiary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Apple Badge Style */
.google-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}

.review-stars {
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin: 14px 0 10px;
}

.review-card blockquote {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #d1d5db;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card footer {
  margin-top: 18px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* 9. ABOUT STRIP */
.about-strip {
  padding: 90px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-strip h2 {
  font-size: clamp(36px, 3.8vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
  color: #ffffff;
}

.about-strip p:not(.kicker) {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 24px;
}

/* 10. SHOP MAP SECTION */
.shop-map {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 90px;
}

.shop-map-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(36px, 3.8vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.shop-map-copy p:not(.kicker) {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 24px;
}

.map-frame {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
  box-shadow: var(--shadow-lg);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 380px;
  border: 0;
  filter: grayscale(0.25) contrast(1.05) brightness(0.85);
}

/* 11. FINAL HERO CTA */
.final {
  padding: 100px max(20px, calc((100vw - 1280px) / 2));
  background: radial-gradient(circle at 50% 50%, #20262b 0%, #111417 100%);
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.final .kicker {
  color: var(--accent-lime);
}

.final h2 {
  font-size: clamp(40px, 5.2vw, 76px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 32px;
  color: #ffffff;
}

.final h2 em {
  font-style: normal;
  color: var(--accent-lime);
}

.final .book {
  padding: 14px 32px;
  font-size: 14px;
}

.final small {
  display: block;
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
}

/* 12. FOOTER */
footer {
  border-top: 1px solid var(--border-subtle);
  padding: 50px max(20px, calc((100vw - 1280px) / 2)) 30px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  background: var(--bg-base);
}

footer p {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-tertiary);
  margin: 0;
}

footer a {
  color: var(--accent-lime);
}

footer small {
  grid-column: 1 / -1;
  margin-top: 30px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  font-size: 10px;
}

/* 13. RESPONSIVE BREAKPOINTS */
@media (max-width: 1200px) {
  .wrap {
    width: min(1200px, calc(100% - 40px));
  }
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-image {
    min-height: 420px;
  }
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .booking-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .shop-map {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .utility {
    padding: 8px 16px;
    font-size: 10px;
    justify-content: center;
  }
  .utility span {
    display: none;
  }
  header {
    height: 64px;
    padding: 0 18px;
  }
  header nav {
    display: none;
  }
  .logo {
    font-size: 18px;
  }
  .hero {
    display: flex;
    flex-direction: column-reverse;
  }
  .hero-image {
    min-height: 320px;
    width: 100%;
  }
  .hero-copy {
    padding: 44px 20px 36px;
  }
  .hero h1 {
    font-size: clamp(34px, 8.5vw, 48px);
    line-height: 1.05;
  }
  .hero-copy > p:not(.kicker) {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .proof {
    flex-direction: row;
    gap: 14px;
    margin-top: 32px;
    padding-top: 18px;
  }
  .statement {
    padding: 60px 20px;
  }
  .statement h2 {
    font-size: clamp(28px, 7vw, 40px);
  }
  .statement > div {
    gap: 8px;
  }
  .statement > div span {
    font-size: 10px;
    padding: 6px 14px;
  }
  .services {
    padding: 70px 0 40px;
  }
  .section-intro,
  .about-strip,
  .shop-map {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .booking-wrap {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .repair-form {
    padding: 24px 18px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .work {
    padding: 70px 0 50px;
  }
  .work-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .work-grid figure.wide {
    grid-column: span 1;
  }
  .review-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .final {
    padding: 70px 20px;
  }
  .final h2 {
    font-size: clamp(32px, 8vw, 52px);
  }
  footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 20px 20px;
  }
  /* Mobile Phone Dock - non-obtrusive bottom pill */
  .phone-dock {
    right: 14px;
    bottom: 14px;
    padding: 8px 14px 8px 16px;
    gap: 10px;
  }
  .phone-dock small {
    display: none;
  }
  .dock-copy strong {
    font-size: 14px;
  }
  .phone-dock b {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .book,
  .hero-buttons .line-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .form-actions button,
  .form-actions a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.guarantee-pill {
  margin-left: 12px;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.2));
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-primary);
  box-shadow: 0 6px 18px rgba(15,15,15,0.06);
}

.nav-dropdown { position: relative; display: inline-block; }
.nav-link { background: transparent; border: 0; color: var(--text-secondary); font-weight:600; padding:6px 8px; border-radius:8px; cursor:pointer; }
.nav-link:hover { color: #ffffff; background: rgba(255,255,255,0.02); }

/* Services dropdown panel (desktop) */
.nav-dropdown { --dropdown-width: 780px; }
.nav-dropdown button#services-button {
  background: transparent;
  border: 0;
  color: var(--text-secondary);
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
}
.nav-dropdown button#services-button:focus { outline: 2px solid var(--border-focus); outline-offset: 4px; }
.nav-dropdown-panel {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  width: var(--dropdown-width);
  background: linear-gradient(180deg, rgba(18,20,22,0.98), rgba(10,12,13,0.98));
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.04);
  z-index: 120;
  gap: 12px;
}
.nav-dropdown.open .nav-dropdown-panel,
.nav-dropdown:hover .nav-dropdown-panel { display: flex; }
.nav-dropdown-panel .services-list { width: 44%; display:flex; flex-direction:column; gap:8px; overflow:auto; max-height:360px; padding-right:8px; }
.nav-dropdown-panel .services-detail { width: 56%; padding: 8px 12px; border-left: 1px dashed rgba(255,255,255,0.04); color: var(--text-secondary); }
.services-list .service-item {
  display:flex;
  align-items:center;
  gap:12px;
  background: rgba(255,255,255,0.02);
  border-radius: 10px;
  padding: 10px 12px;
  text-align:left;
  border: 1px solid rgba(255,255,255,0.02);
  cursor:pointer;
}
.services-list .service-item strong { display:block; color:var(--text-primary); font-weight:700; }
.services-list .service-item small { display:block; color:var(--text-tertiary); font-size:12px; margin-top:4px; }
.services-list .service-item.active { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.06); }
.services-list .service-item:hover { background: rgba(255,255,255,0.04); }
.services-list .service-item::after { content: '\25B6'; margin-left:auto; color:var(--text-secondary); font-size:14px; }

/* ensure dropdown is above header utility and is fully clickable */
.nav-dropdown-panel { z-index: 9999; pointer-events: auto; }

/* small animation */
.nav-dropdown-panel { transform-origin: top left; transition: opacity 180ms ease, transform 180ms ease; opacity: 0; transform: translateY(-6px) scale(0.99); }
.nav-dropdown.open .nav-dropdown-panel,
.nav-dropdown:hover .nav-dropdown-panel { opacity: 1; transform: translateY(0) scale(1); }

/* ensure guarantee pill visible */
.guarantee-pill { display: inline-flex; align-items:center; gap:8px; }

/* Brave-specific fallback: force dropdown visible when body has .force-dd */
body.force-dd .nav-dropdown-panel { display:flex !important; opacity:1 !important; transform:none !important; }
body.force-dd .nav-dropdown { position: relative; }

/* Guarantee pill visibility */
.guarantee-pill { background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)); color:var(--accent-lime); padding:6px 12px; border-radius:999px; font-weight:700; border:1px solid rgba(255,255,255,0.03); }

/* Mobile: dropdown becomes full width panel */
@media (max-width: 900px) {
  .nav-dropdown-panel { position: fixed; left: 12px; right: 12px; top: 84px; width: auto; border-radius: 12px; max-height: calc(100vh - 120px); overflow:auto; }
  .nav-dropdown.open .nav-dropdown-panel { display:flex; flex-direction:column; }
  .nav-dropdown-panel .services-list { width:100%; }
  .nav-dropdown-panel .services-detail { width:100%; border-left:none; border-top:1px dashed rgba(255,255,255,0.04); padding-top:12px; }
}
.dropdown-panel { position: absolute; left: 0; top: calc(100% + 8px); background: rgba(16,18,20,0.98); border: 1px solid var(--border-subtle); box-shadow: var(--shadow-md); backdrop-filter: blur(18px); min-width: 420px; max-width: 640px; padding: 14px; border-radius: 14px; display: none; z-index: 120; }
.nav-dropdown.open .dropdown-panel { display: grid; grid-template-columns: 1fr 1.25fr; gap: 12px; }
.dropdown-list { max-height: 280px; overflow:auto; display:flex; flex-direction:column; gap:8px; padding-right:8px; }
.dropdown-list button { text-align:left; padding:10px; border-radius:10px; background: transparent; color:var(--text-secondary); border:1px solid transparent; cursor:pointer; }
.dropdown-list button:hover { background: rgba(255,255,255,0.02); color:#fff; border-color:var(--border-subtle); }
.dropdown-detail { background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent); border-radius:10px; padding:14px; color:var(--text-secondary); }
.dropdown-detail h3 { margin:0 0 10px; font-size:16px; color:var(--text-primary);} 

/* Final interaction and intake refinements. These overrides intentionally sit
   after the original page rules so all breakpoints share the same layout. */
.nav-dropdown { --dropdown-width: min(680px, calc(100vw - 40px)); }
.nav-dropdown-panel {
  left: 50%;
  width: var(--dropdown-width);
  max-height: min(360px, calc(100vh - 132px));
  padding: 10px;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
  gap: 10px;
  border-radius: 12px;
  background: rgba(15, 18, 20, 0.98);
  border-color: rgba(255,255,255,0.09);
  box-shadow: 0 22px 54px rgba(0,0,0,0.48);
  transform: translateX(-50%) translateY(-8px) scale(0.985);
}
.nav-dropdown.open .nav-dropdown-panel {
  display: grid;
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}
.nav-dropdown:hover .nav-dropdown-panel { display: none; opacity: 0; }
.nav-dropdown.open:hover .nav-dropdown-panel { display: grid; opacity: 1; }
.nav-dropdown-panel .services-list {
  width: auto;
  max-height: 336px;
  gap: 6px;
  padding-right: 5px;
}
.nav-dropdown-panel .services-detail {
  width: auto;
  min-height: 220px;
  padding: 18px 20px;
  border-left: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.018);
  border-radius: 8px;
}
.services-list .service-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 12px;
  gap: 8px;
  align-items: center;
  min-height: 48px;
  padding: 8px 10px;
  border-radius: 8px;
}
.services-list .service-item strong { font-size: 12px; line-height: 1.05; }
.services-list .service-item small { margin: 0; font-size: 11px; line-height: 1.2; }
.services-list .service-item::after { font-size: 10px; }
.services-list .service-item.active { background: rgba(201,237,79,0.09); border-color: rgba(201,237,79,0.24); }

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 26px;
  align-items: start;
}
.form-grid > label { margin: 0; }
.form-grid input,
.form-grid select,
.form-grid textarea {
  min-height: 52px;
  border-radius: 8px;
  border-color: rgba(255,255,255,0.09);
  background-color: rgba(255,255,255,0.035);
}
.form-grid textarea { min-height: 150px; }
.form-grid #time-label,
.form-grid .address-fields,
.form-grid .issue-field,
.form-grid .booking-side { grid-column: 1 / -1; }
.address-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  background: rgba(255,255,255,0.015);
}
.address-fields label { margin: 0; }
.form-grid .booking-side {
  gap: 12px;
  padding-top: 2px;
}
.form-grid .booking-side .box,
.pickup-instructions { border-radius: 8px; }
.terms { min-height: 24px; }
.time-slots { gap: 8px; padding-top: 2px; }

.review-carousel { perspective: 1200px; perspective-origin: center; }
.carousel-slide {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity;
  transition: transform 560ms cubic-bezier(.16,1,.3,1), opacity 420ms ease, box-shadow 560ms ease;
}
.carousel-slide.center {
  transform: translateZ(34px) scale(1.025);
  box-shadow: 0 22px 48px rgba(0,0,0,0.34), 0 0 0 1px rgba(201,237,79,0.1);
}
.carousel-slide.side { opacity: 0.64; box-shadow: 0 10px 24px rgba(0,0,0,0.24); }
.carousel-slide.side.is-left { transform: translateX(12px) translateZ(-48px) rotateY(11deg) scale(0.94); }
.carousel-slide.side.is-right { transform: translateX(-12px) translateZ(-48px) rotateY(-11deg) scale(0.94); }

@media (max-width: 920px) {
  .nav-dropdown-panel {
    left: 12px;
    right: 12px;
    width: auto;
    transform: translateY(-8px) scale(0.985);
  }
  .nav-dropdown.open .nav-dropdown-panel { transform: translateY(0) scale(1); }
  .nav-dropdown-panel .services-detail { min-height: auto; }
  #review-grid { grid-template-columns: 1fr; max-width: 680px; }
  #review-grid .carousel-slide.side { display: none !important; }
  #review-grid .carousel-slide.center { transform: none; }
}

@media (max-width: 680px) {
  .form-grid,
  .address-fields { grid-template-columns: 1fr; gap: 14px; }
  .form-grid { padding: 18px; }
  .nav-dropdown.open .nav-dropdown-panel { display: flex; flex-direction: column; }
  .nav-dropdown-panel .services-list { max-height: 248px; }
  .nav-dropdown-panel .services-detail { border-left: 0; border-top: 1px solid rgba(255,255,255,0.08); }
}

@media (prefers-reduced-motion: reduce) {
  .nav-dropdown-panel,
  .carousel-slide { transition: none; }
  .carousel-slide.side,
  .carousel-slide.center { transform: none; }
}

/* Organized header, side navigation, and service disclosures. */
header {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  gap: 24px;
}
header > .logo { justify-self: start; }
header > nav { height: 100%; align-items: center; justify-self: center; gap: 28px; }
header > nav > a,
header > nav .nav-link {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding-block: 0;
  line-height: 1;
}
header > nav .nav-dropdown button#services-button { padding-block: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 12px; }
.site-menu-toggle {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 11px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 8px;
  cursor: pointer;
}
.site-menu-toggle span { width: 18px; height: 2px; background: var(--text-primary); transition: transform 180ms ease, opacity 180ms ease; }
.site-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  width: min(390px, 100vw);
  height: 100dvh;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: rgba(13,16,17,0.985);
  border-left: 1px solid rgba(255,255,255,0.11);
  box-shadow: -28px 0 68px rgba(0,0,0,0.46);
  transform: translateX(102%);
  transition: transform 320ms cubic-bezier(.16,1,.3,1);
  visibility: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,237,79,0.55) transparent;
}
.side-menu::-webkit-scrollbar { width: 8px; }
.side-menu::-webkit-scrollbar-thumb { background: rgba(201,237,79,0.5); border: 2px solid rgba(13,16,17,0.985); border-radius: 999px; }
.side-menu.open { transform: translateX(0); visibility: visible; }
.side-menu-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.09); }
.side-menu-close { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; background: transparent; color: var(--text-primary); font-size: 26px; line-height: 1; cursor: pointer; }
.side-menu-pages { display: grid; gap: 2px; }
.side-menu-pages a { padding: 12px 0; color: var(--text-primary); font-size: 17px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.07); }
.side-menu-pages a:hover { color: var(--accent-lime); }
.side-services { border-top: 1px solid rgba(255,255,255,0.09); border-bottom: 1px solid rgba(255,255,255,0.09); }
.side-services summary { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; color: var(--accent-lime); font-weight: 700; cursor: pointer; list-style: none; }
.side-services summary::after { content: '+'; font-size: 20px; }
.side-services[open] summary::after { content: '−'; }
.side-services > div { display: grid; gap: 2px; padding: 0 0 14px; }
.side-services a { padding: 8px 0 8px 14px; color: var(--text-secondary); font-size: 14px; }
.side-services a:hover { color: var(--text-primary); }
body.menu-open { overflow: hidden; }

.booking-text-link {
  display: grid;
  gap: 3px;
  padding: 4px 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.35;
}
.booking-text-link strong { color: var(--accent-lime); font-size: 15px; }
.booking-text-link small { color: var(--text-secondary); font-size: 12px; }
.booking-text-link:hover strong { color: var(--text-primary); }

.booking-confirmation {
  width: min(460px, calc(100vw - 32px));
  margin: auto;
  padding: 0;
  color: var(--text-primary);
  background: #15191a;
  border: 1px solid rgba(201,237,79,0.42);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.58);
}
.booking-confirmation::backdrop { background: rgba(0,0,0,0.7); backdrop-filter: blur(5px); }
.booking-confirmation-card { padding: 34px; }
.booking-confirmation h2 { margin: 10px 0 12px; font-size: clamp(30px, 6vw, 44px); line-height: 0.98; }
.booking-confirmation-card > p:not(.kicker) { margin: 0; color: var(--text-secondary); line-height: 1.55; }
.booking-confirmation-reference { margin-top: 18px !important; font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; }
.booking-confirmation-reference strong { color: var(--accent-lime); }
.booking-confirmation .book { width: 100%; margin-top: 26px; }
.booking-confirmation[open] .booking-confirmation-card { animation: booking-confirmation-in 240ms cubic-bezier(.16,1,.3,1); }
@keyframes booking-confirmation-in { from { opacity: 0; transform: translateY(12px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

.services-accordion { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 28px; }
.services-accordion details { border: 1px solid var(--border-subtle); border-radius: 8px; background: rgba(255,255,255,0.018); }
.services-accordion summary { display: flex; align-items: center; gap: 12px; min-height: 68px; padding: 16px 18px; color: var(--text-primary); font-size: 16px; font-weight: 700; cursor: pointer; list-style: none; }
.services-accordion summary::-webkit-details-marker { display: none; }
.services-accordion summary::after { content: '+'; margin-left: auto; color: var(--accent-lime); font-size: 21px; font-weight: 400; }
.services-accordion details[open] { border-color: rgba(201,237,79,0.36); background: rgba(201,237,79,0.04); }
.services-accordion details[open] summary::after { content: '−'; }
.services-accordion summary span { color: var(--accent-lime); font-family: var(--font-mono); font-size: 11px; }
.services-accordion details > div { padding: 0 18px 18px; color: var(--text-secondary); }
.services-accordion details p { margin: 0 0 14px; font-size: 14px; }
.services-accordion details a { color: var(--accent-lime); font-size: 13px; font-weight: 700; }

.review-carousel { min-height: 284px; }
.carousel-slide { height: 284px; min-height: 284px; overflow: hidden; }
.carousel-slide .review-quote { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 5; }

@media (max-width: 920px) {
  header { grid-template-columns: 1fr auto; gap: 12px; }
  header > nav { display: none; }
  .header-actions { gap: 8px; }
  .header-actions .guarantee-pill { display: none; }
  .services-accordion { grid-template-columns: 1fr; }
  .carousel-slide { height: auto; min-height: 254px; }
  .carousel-slide .review-quote { -webkit-line-clamp: 6; }
}

@media (max-width: 560px) {
  .header-actions .book { display: none; }
  .side-menu { width: min(360px, 100vw); }
  .services-accordion summary { min-height: 62px; padding: 14px; }
}

/* Header service menu and guarantee disclosure. */
.nav-dropdown-panel.services-menu {
  --dropdown-width: 306px;
  display: none;
  grid-template-columns: 1fr;
  gap: 2px;
  max-height: min(430px, calc(100vh - 132px));
  overflow-y: auto;
  padding: 8px;
}
.nav-dropdown.open .nav-dropdown-panel.services-menu { display: grid; }
.nav-dropdown-panel.services-menu a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 11px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
}
.nav-dropdown-panel.services-menu a::after { content: '→'; margin-left: auto; color: var(--accent-lime); opacity: 0; transform: translateX(-4px); transition: opacity 160ms ease, transform 160ms ease; }
.nav-dropdown-panel.services-menu a:hover,
.nav-dropdown-panel.services-menu a:focus-visible { color: var(--accent-lime); background: rgba(201,237,79,0.08); outline: none; }
.nav-dropdown-panel.services-menu a:hover::after,
.nav-dropdown-panel.services-menu a:focus-visible::after { opacity: 1; transform: translateX(0); }
.nav-dropdown button#services-button span { display: inline-block; margin-left: 3px; color: var(--accent-lime); transition: transform 180ms ease; }
.nav-dropdown.open button#services-button { color: var(--text-primary); background: rgba(201,237,79,0.08); }
.nav-dropdown.open button#services-button span { transform: rotate(45deg); }

.guarantee-pill { position: relative; cursor: help; white-space: nowrap; }
.guarantee-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 250;
  width: 230px;
  padding: 10px 12px;
  color: var(--text-primary);
  background: #15191a;
  border: 1px solid rgba(201,237,79,0.32);
  border-radius: 6px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.38);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  white-space: normal;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}
.guarantee-pill:hover .guarantee-tooltip,
.guarantee-pill.is-open .guarantee-tooltip { opacity: 1; transform: translateY(0); }

@media (max-width: 920px) {
  .header-actions .guarantee-pill {
    display: inline-flex;
    margin-left: 0;
    padding: 6px 9px;
    font-size: 11px;
  }
  .guarantee-pill:hover .guarantee-tooltip { opacity: 0; transform: translateY(-4px); }
  .guarantee-pill.is-open .guarantee-tooltip { opacity: 1; transform: translateY(0); }
  .header-actions { gap: 6px; }
}

/* Dedicated, indexable service pages. */
.service-detail-page { background: var(--bg-base); color: var(--text-primary); }
.service-detail-page main { background: var(--bg-base); }
.service-detail-page header { height: 72px; min-height: 72px; background: rgba(10, 12, 13, 0.96); }
.service-detail-page header > nav { display: flex; align-items: center; }
.service-detail-page .header-actions { min-width: max-content; }
.service-detail-page .nav-dropdown { display: inline-flex; align-items: center; }
.service-detail-page .nav-dropdown-panel.services-menu { left: 50%; }
.service-detail-page .site-menu-toggle { display: none; }
.service-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 7vw, 104px);
  min-height: 590px;
  padding-top: 82px;
  padding-bottom: 82px;
}
.service-page-hero h1 { margin: 12px 0 18px; font-size: clamp(48px, 5.4vw, 86px); line-height: 0.94; }
.service-page-hero h1 em { color: var(--accent-lime); }
.service-page-hero p:not(.kicker) { max-width: 58ch; margin: 0 0 28px; color: var(--text-secondary); font-size: 17px; line-height: 1.65; }
.service-page-hero figure { position: relative; min-height: 380px; margin: 0; overflow: hidden; border: 1px solid var(--border-subtle); border-radius: 8px; background: #121618; }
.service-page-hero figure::after { content: ''; position: absolute; inset: 0; background: linear-gradient(125deg, rgba(201,237,79,0.15), transparent 35%, rgba(0,0,0,0.22)); pointer-events: none; mix-blend-mode: screen; }
.service-page-hero img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; display: block; animation: service-image-reveal 720ms cubic-bezier(.16,1,.3,1) both; transition: transform 700ms cubic-bezier(.16,1,.3,1), filter 420ms ease; }
.service-page-hero figure:hover img { transform: scale(1.045); filter: saturate(1.06) contrast(1.03); }
.service-page-hero figcaption { position: absolute; left: 16px; bottom: 16px; padding: 7px 10px; color: var(--text-primary); background: rgba(10,12,13,0.78); border: 1px solid rgba(255,255,255,0.12); font-family: var(--font-mono); font-size: 10px; }
.service-page-content { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr); gap: clamp(36px, 8vw, 140px); padding-top: 76px; padding-bottom: 96px; border-top: 1px solid var(--border-subtle); }
.service-page-content h2 { margin: 10px 0 14px; font-size: clamp(32px, 3.5vw, 54px); line-height: 1; }
.service-page-content p:not(.kicker) { max-width: 60ch; margin: 0; color: var(--text-secondary); line-height: 1.7; }
.service-page-content ul { display: grid; gap: 0; align-content: start; margin: 0; padding: 0; border-top: 1px solid var(--border-subtle); list-style: none; }
.service-page-content li { padding: 15px 0 15px 24px; color: var(--text-primary); border-bottom: 1px solid var(--border-subtle); font-weight: 600; }
.service-page-content li::before { content: '+'; position: absolute; margin-left: -24px; color: var(--accent-lime); }
.service-detail-page footer { border-top: 1px solid var(--border-subtle); }
.service-page-detail { display: grid; grid-template-columns: minmax(0, .88fr) minmax(440px, 1.12fr); gap: clamp(32px, 6vw, 92px); padding: 0 0 94px; }
.service-page-intro { padding: 12px 0; align-self: start; }
.service-repair-list { min-width: 0; }
.service-page-detail h2 { margin: 9px 0 14px; font-size: clamp(26px, 3vw, 40px); line-height: 1.05; color: var(--text-primary); }
.service-page-detail p:not(.kicker) { max-width: 78ch; margin: 0; color: var(--text-secondary); line-height: 1.75; }
.service-repair-list-heading { margin-bottom: 16px; }
.service-repair-list-heading p:not(.kicker) { margin-top: 8px; font-size: 14px; line-height: 1.55; }
.service-page-detail ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 0 0 20px; padding: 0; list-style: none; }
.service-repair-pill { position: relative; min-height: 118px; padding: 15px 15px 15px 47px; border: 1px solid rgba(201, 237, 79, .28); border-radius: 8px; background: linear-gradient(140deg, rgba(201, 237, 79, .085), rgba(255,255,255,.018)); transition: border-color 180ms ease, background 180ms ease, transform 180ms ease; }
.service-repair-pill::before { content: '+'; position: absolute; top: 15px; left: 15px; color: var(--accent-lime); font-family: var(--font-mono); font-size: 16px; font-weight: 700; }
.service-repair-pill:hover { transform: translateY(-2px); border-color: rgba(201, 237, 79, .62); background: rgba(201, 237, 79, .1); }
.service-repair-pill strong { display: block; color: var(--text-primary); font-size: 14px; line-height: 1.3; }
.service-repair-pill span { display: block; margin-top: 7px; color: var(--text-secondary); font-size: 12px; line-height: 1.5; }
.service-page-detail a { color: var(--accent-lime); font-size: 12px; font-weight: 700; }

@media (max-width: 920px) {
  .service-page-hero { grid-template-columns: 1fr; min-height: 0; padding-top: 56px; padding-bottom: 56px; }
  .service-page-hero figure, .service-page-hero img { min-height: 280px; }
  .service-page-content { grid-template-columns: 1fr; padding-top: 54px; padding-bottom: 64px; }
  .service-detail-page header { height: 64px; min-height: 64px; grid-template-columns: minmax(0, 1fr) auto; padding-inline: 18px; }
  .service-detail-page header > nav { display: none; }
  .service-detail-page .header-actions { justify-self: end; gap: 0; }
  .service-detail-page .header-actions .book { display: none; }
  .service-detail-page .header-actions .guarantee-pill { margin: 0; padding: 6px 9px; font-size: 10px; white-space: nowrap; }
  .service-detail-page .site-menu-toggle { display: inline-flex; margin-left: 8px; }
  .service-detail-page .guarantee-tooltip { right: 0; left: auto; width: min(280px, calc(100vw - 36px)); }
  .service-page-detail { grid-template-columns: 1fr; padding-bottom: 62px; }
  .service-page-detail ul { grid-template-columns: 1fr; }
  .service-repair-pill { min-height: 0; }
}

@keyframes service-image-reveal { from { opacity: 0; transform: scale(1.035); } to { opacity: 1; transform: scale(1); } }

@media (prefers-reduced-motion: reduce) {
  .service-page-hero img { animation: none; transition: none; }
  .service-page-hero figure:hover img { transform: none; }
}
