/* ===================== Design Tokens ===================== */
:root {
  --color-bg: #0c0d10;
  --color-bg-alt: #111318;
  --color-surface: #17191f;
  --color-surface-2: #1d2029;
  --color-border: #2a2d36;
  --color-text: #f4f5f7;
  --color-text-muted: #a7abb6;
  --color-primary: #ff7a1a;
  --color-primary-dark: #e8650a;
  --color-primary-light: #ffa35c;
  --color-on-primary: #12100c;

  --font-heading: 'Calistoga', 'Georgia', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-md: 0 12px 32px rgba(0,0,0,0.45);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.55);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container-w: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }

/* Nothing on the page should ever be able to push it wider than the
   viewport (a long unbroken word, a rounding slip in a full-bleed row,
   etc.) — that's what makes the whole site pan sideways on a swipe. */
html, body { max-width: 100%; overflow-x: hidden; }
body { touch-action: pan-y; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 400;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--color-text-muted); }

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

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.accent-text { color: var(--color-primary); }

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 180ms var(--ease), background-color 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
  min-height: 44px;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:active { transform: scale(0.97); }
.btn:focus-visible { outline: 2px solid var(--color-primary-light); outline-offset: 3px; }

.btn-primary {
  background: var(--color-primary);
  color: var(--color-on-primary);
  box-shadow: 0 8px 24px rgba(255,122,26,0.35);
}
.btn-primary:hover { background: var(--color-primary-light); }

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

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  padding: 10px 16px;
}
.btn-ghost:hover { color: var(--color-primary); }

.btn-lg { padding: 16px 34px; font-size: 16px; }

/* ===================== Announcement bar ===================== */
.announce-bar {
  background: var(--color-primary);
  color: var(--color-on-primary);
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 16px;
  letter-spacing: 0.01em;
}
.announce-bar p { margin: 0; color: inherit; }

/* ===================== Header ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,13,16,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand-icon {
  height: 40px;
  border-radius: 10px;
  background: var(--color-bg);
  display: flex; align-items: center; justify-content: center;
  padding: 3px 6px;
  flex-shrink: 0;
}
.brand-icon img { height: 100%; width: auto; display: block; }
.brand-text {
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.2;
  color: var(--color-text);
  white-space: nowrap;
}
.brand-text span { color: var(--color-text); font-size: 13px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
  padding: 6px 2px;
  transition: color 180ms var(--ease);
}
.main-nav a:hover { color: var(--color-text); }
.main-nav a::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--color-primary);
  transition: width 200ms var(--ease);
}
.main-nav a:hover::after { width: 100%; }

/* --- Services dropdown --- */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-services-link { display: inline-flex; align-items: center; gap: 6px; }
.nav-caret { display: inline-flex; transition: transform 200ms var(--ease); }
.nav-caret svg { width: 13px; height: 13px; }
.has-dropdown:hover .nav-caret,
.has-dropdown.open .nav-caret { transform: rotate(180deg); }

.dropdown-toggle { display: none; }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 292px;
  margin-top: 14px;
  padding: 10px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease), visibility 200ms var(--ease);
  z-index: 120;
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -14px;
  height: 14px;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown,
.has-dropdown.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-dropdown a {
  font-size: 14px;
  color: var(--color-text-muted);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background 160ms var(--ease), color 160ms var(--ease);
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover { background: var(--color-surface-2); color: #fff; }
.nav-dropdown-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  border-radius: 0;
  color: var(--color-primary);
  font-weight: 600;
  transition: gap 180ms var(--ease);
}
.nav-dropdown a.nav-dropdown-all:hover { background: transparent; color: var(--color-primary-light); gap: 12px; }
.nav-dropdown-all svg { width: 16px; height: 16px; }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-call { border: 1px solid var(--color-border); border-radius: 999px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  width: 20px; height: 2px;
  background: var(--color-text);
  margin: 0 auto;
  transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== Hero ===================== */
.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  top: 0; bottom: 0;
  width: 50%;
  background-size: cover;
  background-position: center;
  z-index: -2;
  filter: saturate(1) brightness(0.78);
}
.hero-bg-left { left: 0; }
.hero-bg-right { right: 0; }

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12,13,16,0.3) 0%, rgba(12,13,16,0.78) 26%, rgba(12,13,16,0.92) 50%, rgba(12,13,16,0.78) 74%, rgba(12,13,16,0.3) 100%),
    linear-gradient(180deg, rgba(12,13,16,0.2) 0%, rgba(12,13,16,0.5) 75%, rgba(12,13,16,0.92) 100%);
}

.hero-content {
  position: relative;
  max-width: 780px;
  padding: 64px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: #fff;
  margin-bottom: 0.4em;
}

.hero-sub {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto 32px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
  width: 100%;
}
.trust-item { display: flex; flex-direction: column; gap: 2px; text-align: center; }
.trust-item strong { font-size: 14.5px; color: #fff; }
.trust-item span { font-size: 12.5px; color: var(--color-text-muted); }
.trust-divider { width: 1px; height: 30px; background: var(--color-border); }

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted);
  animation: bob 2.2s ease-in-out infinite;
}
.scroll-cue svg { width: 18px; height: 18px; }
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ===================== Scroll reveal ===================== */
html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
html.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

.services-grid .reveal:nth-child(1) { transition-delay: 0ms; }
.services-grid .reveal:nth-child(2) { transition-delay: 70ms; }
.services-grid .reveal:nth-child(3) { transition-delay: 140ms; }
.services-grid .reveal:nth-child(4) { transition-delay: 210ms; }
.services-grid .reveal:nth-child(5) { transition-delay: 280ms; }
.services-grid .reveal:nth-child(6) { transition-delay: 350ms; }

.showcase-grid .reveal:nth-child(1) { transition-delay: 0ms; }
.showcase-grid .reveal:nth-child(2) { transition-delay: 120ms; }
.showcase-grid .reveal:nth-child(3) { transition-delay: 240ms; }

.review-card.reveal:nth-child(1) { transition-delay: 0ms; }
.review-card.reveal:nth-child(2) { transition-delay: 90ms; }
.review-card.reveal:nth-child(3) { transition-delay: 180ms; }

/* ===================== Section shared ===================== */
section { padding: 100px 0; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head.light p { color: rgba(255,255,255,0.72); }
.section-head.light h2 { color: #fff; }
.eyebrow {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); color: #fff; }
/* Keeps the gap under a section head identical whether or not it carries a paragraph. */
.section-head h2:last-child { margin-bottom: 0; }

/* ===================== Services ===================== */
.services { background: var(--color-bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--color-text);
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease), background 240ms var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,122,26,0.45);
  background: var(--color-surface-2);
  box-shadow: var(--shadow-md);
}
.service-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* Placeholder area where each service photo will go */
.service-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.022) 0 12px, transparent 12px 24px),
    linear-gradient(160deg, #23262f 0%, #191b22 55%, #14161c 100%);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}
.service-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(var(--img-zoom, 1));
  transition: transform 520ms var(--ease);
}
.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255,122,26,0.14), transparent 62%),
    linear-gradient(180deg, transparent 45%, rgba(12,13,16,0.34) 100%);
  opacity: 0;
  transition: opacity 300ms var(--ease);
  pointer-events: none;
}
.service-card:hover .service-photo::after { opacity: 1; }
.service-card:hover .service-photo img { transform: scale(calc(var(--img-zoom, 1) * 1.05)); }

.service-card-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px 28px 28px;
  flex: 1;
}
.service-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.32;
  color: #fff;
  margin: 0;
  flex: 1;
}
.service-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  transition: gap 220ms var(--ease);
}
.service-more svg { width: 17px; height: 17px; }
.service-card:hover .service-more { gap: 13px; }

/* ===================== Showcase ===================== */
.showcase { background: var(--color-bg-alt); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.showcase-photo {
  margin: 0;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  aspect-ratio: 4 / 3;
}
.showcase-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 500ms var(--ease); }
.showcase-photo:hover img { transform: scale(1.04); }
.showcase-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 20px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85), rgba(0,0,0,0));
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

/* ===================== Reviews ===================== */
.reviews { background: var(--color-bg); }

/* Gold Google star. Never recoloured to the brand orange. */
.star { width: 18px; height: 18px; fill: #FBBC04; flex-shrink: 0; }

.google-mark svg { display: block; width: 100%; height: 100%; }
.google-mark-lg { width: 26px; height: 26px; display: block; flex-shrink: 0; }

/* Aggregate rating */
.reviews-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 auto 40px;
  padding: 16px 26px;
  width: fit-content;
  max-width: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.aggregate-score {
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1;
  color: #fff;
}
.aggregate-stars { display: flex; gap: 3px; }
.aggregate-stars .star { width: 20px; height: 20px; }
.aggregate-label { font-size: 14.5px; color: var(--color-text-muted); }

/* Carousel */
.reviews-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
}
.carousel-viewport { overflow: hidden; flex: 1; touch-action: pan-y; }
.carousel-track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  transition: transform 420ms var(--ease);
}

/* Cards are wider than tall so review text runs 8-12 words per line. */
.review-card {
  position: relative;
  flex: 0 0 calc((100% - 40px) / 3);
  min-height: 268px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  padding: 26px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-stars { display: flex; gap: 3px; }
.review-body { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.review-text {
  margin: 0;
  color: var(--color-text);
  font-size: 14.5px;
  line-height: 1.62;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card.is-expanded .review-text {
  -webkit-line-clamp: unset;
  overflow: visible;
}
.review-more {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 2px 0;
  font: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
}
.review-more:hover { color: var(--color-primary-light); text-decoration: underline; }
.review-more:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: 3px; }

.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 18px;          /* ~45% of the 40px disc */
  font-weight: 500;
  line-height: 1;
  flex-shrink: 0;
}
.review-author-info { display: flex; flex-direction: column; min-width: 0; }
.review-author-info strong { font-size: 14px; color: #fff; font-weight: 600; }
.review-author-info span { font-size: 12.5px; color: var(--color-text-muted); }

/* Google attribution, top-right corner of the card */
.review-source {
  position: absolute;
  top: 22px; right: 20px;
  width: 18px; height: 18px;
  opacity: 0.9;
}
.review-source svg { display: block; width: 100%; height: 100%; }

.carousel-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}
.carousel-arrow:hover { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-on-primary); }
.carousel-arrow:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; }
.carousel-arrow svg { width: 20px; height: 20px; }
.carousel-arrow:disabled { opacity: 0.35; cursor: not-allowed; }
.carousel-arrow:disabled:hover { background: var(--color-surface); border-color: var(--color-border); color: var(--color-text); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 180ms var(--ease), width 180ms var(--ease);
}
.carousel-dot.active { background: var(--color-primary); width: 22px; border-radius: 4px; }
.carousel-dot:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; }

/* Secondary link out to Google. Quiet on purpose — the quote CTA is primary. */
.reviews-more { text-align: center; margin-top: 30px; }
.reviews-google-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--color-text-muted);
  border-bottom: 1px solid transparent;
  padding: 4px 2px;
  transition: color 180ms var(--ease), border-color 180ms var(--ease);
}
.reviews-google-link svg { width: 14px; height: 14px; }
.reviews-google-link:hover { color: var(--color-text); border-bottom-color: var(--color-border); }
.reviews-google-link:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: 4px; }

/* No-JS: the carousel never fills, so hide its controls and say something useful. */
.reviews-fallback { display: none; text-align: center; margin: 0; }
html:not(.js) .reviews-fallback { display: block; }
html:not(.js) .reviews-carousel,
html:not(.js) .carousel-dots { display: none; }

/* ===================== Before/After ===================== */
.transform { background: var(--color-bg-alt); border-top: 1px solid var(--color-border); }
.ba-heading { font-size: clamp(2.4rem, 5vw, 3.4rem); }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ba-grid .reveal:nth-child(1) { transition-delay: 0ms; }
.ba-grid .reveal:nth-child(2) { transition-delay: 120ms; }
.ba-grid .reveal:nth-child(3) { transition-delay: 240ms; }
.ba-photo {
  margin: 0;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}
.ba-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 500ms var(--ease); }
.ba-photo:hover img { transform: scale(1.04); }
.ba-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 20px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85), rgba(0,0,0,0));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ba-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-on-primary);
  font-size: 12px;
  font-weight: 700;
}

.outdoor-showcase {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.outdoor-text h4 { color: #fff; font-size: 1.5rem; margin-bottom: 12px; }
.outdoor-text p { color: rgba(255,255,255,0.72); margin: 0; }
.outdoor-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.outdoor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ===================== Contact ===================== */
.contact-section {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
/* Soft orange glow behind the form so the section still reads as the closing call to action. */
.contact-section::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -140px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(255,122,26,0.13), rgba(255,122,26,0) 68%);
  pointer-events: none;
}
html.js .contact-form-card.reveal { transition-delay: 110ms; }
.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: start;
}

/* --- Left column --- */
.contact-info h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); color: #fff; margin-bottom: 28px; }

.hours-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-bottom: 20px;
}
.hours-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.hours-head h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.hours-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,122,26,0.12);
  color: var(--color-primary);
  flex-shrink: 0;
}
.hours-icon svg { width: 18px; height: 18px; }

.hours-list { margin: 0; }
.hours-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--color-border);
}
.hours-row:first-child { border-top: none; padding-top: 0; }
.hours-row:last-child { padding-bottom: 0; }
.hours-row dt { color: var(--color-text-muted); font-size: 15px; }
.hours-row dd { margin: 0; color: var(--color-text); font-size: 15px; font-weight: 600; white-space: nowrap; }
.hours-row dd.closed { color: var(--color-text-muted); font-weight: 500; }

.contact-call { width: 100%; margin-bottom: 12px; }

.contact-email {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 15px;
  transition: border-color 180ms var(--ease), color 180ms var(--ease), background 180ms var(--ease);
}
.contact-email-icon { display: inline-flex; color: var(--color-primary); flex-shrink: 0; }
.contact-email-icon svg { width: 18px; height: 18px; }
/* The address is long; let it shrink rather than push the pill wider than the column. */
.contact-email-text { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.contact-email:hover { border-color: rgba(255,122,26,0.45); background: var(--color-surface); color: var(--color-text); }
.contact-email:focus-visible { outline: 2px solid var(--color-primary-light); outline-offset: 3px; }

/* --- Right column: form --- */
.contact-form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 34px 34px 30px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 {
  font-size: 1.5rem;
  color: #fff;
  margin: 0 0 24px;
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.01em;
}
.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px; /* 16px minimum keeps iOS Safari from zooming in on focus */
  line-height: 1.5;
  transition: border-color 160ms var(--ease), background 160ms var(--ease), box-shadow 160ms var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder,
.field textarea::placeholder { color: #6f747f; }
.field input:hover,
.field textarea:hover { border-color: #3a3e4a; }
.field input:focus,
.field textarea:focus {
  outline: none;
  background: var(--color-surface-2);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255,122,26,0.16);
}

.form-submit { width: 100%; margin-top: 6px; }
.form-note {
  margin: 14px 0 0;
  font-size: 13.5px;
  color: var(--color-text-muted);
  text-align: center;
}
.form-note-active { color: var(--color-primary-light); font-weight: 600; }

/* ===================== Footer ===================== */
.site-footer { background: #08090b; border-top: 1px solid var(--color-border); padding-top: 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p { margin: 16px 0 20px; font-size: 14px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; }
.footer-social .social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted);
  transition: color 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}
.footer-social .social-link svg { width: 22px; height: 22px; }
.footer-social .social-link:hover { color: var(--color-primary); border-color: var(--color-primary); }
.footer-social .social-link:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; color: var(--color-primary); }

.footer-col { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.footer-col h5 { color: #fff; font-size: 14px; margin: 0 0 6px; text-transform: uppercase; letter-spacing: 0.06em; }
/* The email address is one unbroken word — without this it can force the
   grid column (and the whole page) wider than the viewport on narrow phones. */
.footer-col a, .footer-col span { font-size: 14.5px; color: var(--color-text-muted); overflow-wrap: anywhere; }
.footer-col a:hover { color: var(--color-primary); }

.footer-bottom { border-top: 1px solid var(--color-border); padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { margin: 0; font-size: 13px; color: var(--color-text-muted); }

/* ===================== Service pages ===================== */
.service-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  padding: 88px 0 52px;
  border-bottom: 1px solid var(--color-border);
  isolation: isolate;
  overflow: hidden;
}
.service-hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, #262932 0%, #1a1c23 55%, #101218 100%);
}
.service-hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.service-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(90% 80% at 12% 100%, rgba(255,122,26,0.16), transparent 60%),
    linear-gradient(180deg, rgba(12,13,16,0.62) 0%, rgba(12,13,16,0.74) 45%, rgba(12,13,16,0.96) 100%);
}
.service-hero-content { position: relative; }

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 18px;
}
.breadcrumb a { transition: color 160ms var(--ease); }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb span[aria-hidden] { opacity: 0.45; }
.breadcrumb-current { color: #fff; font-weight: 600; }

.service-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  color: #fff;
  max-width: 18ch;
  margin-bottom: 0.35em;
}
.service-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.76);
  max-width: 620px;
  margin: 0;
}

.service-body { background: var(--color-bg); padding: 76px 0 88px; }

.service-intro { max-width: 74ch; margin-bottom: 40px; }
.service-intro .eyebrow { margin-bottom: 14px; }
.service-lead { font-size: 17.5px; color: var(--color-text); line-height: 1.65; }
.service-intro p { margin-bottom: 1.1em; }
.service-intro p:last-child { margin-bottom: 0; }

/* Photo and CTA card sit side by side, stretched to a shared row height. */
.service-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.service-figure {
  position: relative;
  margin: 0;
  padding: 12px;
  aspect-ratio: 4 / 3;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
/* Absolutely positioned so the photo's own aspect never drives the row height. */
.service-figure img {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 8px);
}

.service-showcase-cta-only {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}
.service-showcase-cta-only .service-aside {
  width: 100%;
  max-width: 480px;
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.service-gallery-item {
  position: relative;
  margin: 0;
  padding: 10px;
  aspect-ratio: 3 / 4;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-gallery-item img {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 6px);
  transition: transform 500ms var(--ease);
}
.service-gallery-item:hover img { transform: scale(1.04); }

.service-aside {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.service-aside h3 { font-size: 20px; color: #fff; margin-bottom: 10px; }
.service-aside > p { font-size: 14.5px; margin-bottom: 22px; }
.service-aside-btns { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.service-aside-btns .btn { width: 100%; }
.service-aside-meta {
  margin: auto 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-aside-meta dt {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 2px;
}
.service-aside-meta dd { margin: 0; font-size: 14px; color: var(--color-text-muted); }

.service-pager {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: stretch;
  gap: 14px;
}
.service-back {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
  transition: color 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}
.service-back svg { width: 17px; height: 17px; }
.service-back:hover {
  color: var(--color-primary);
  border-color: rgba(255,122,26,0.45);
  background: var(--color-surface-2);
}

.service-other-grid {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.service-other-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 76px;
  padding: 16px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  transition: border-color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}
.service-other-card span {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  transition: color 180ms var(--ease);
}
.service-other-card:hover {
  border-color: rgba(255,122,26,0.45);
  background: var(--color-surface-2);
  transform: translateY(-2px);
}
.service-other-card:hover span { color: var(--color-primary); }

/* ===================== Responsive ===================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-showcase { grid-template-columns: 1fr; gap: 24px; }
  .service-figure { aspect-ratio: 16 / 10; }
  .service-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
  .service-pager { flex-direction: column; align-items: stretch; }
  .service-back { padding: 14px 22px; }
  .service-other-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .ba-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .review-card { flex: 0 0 calc((100% - 20px) / 2); }
  .outdoor-showcase { grid-template-columns: 1fr; }
  .outdoor-photo { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-info h2 { margin-bottom: 22px; }
  .contact-call, .contact-email { max-width: 420px; }
}

@media (max-width: 860px) {
  section { padding: 68px 0; }
  .section-head { margin-bottom: 40px; }

  .main-nav { display: none; }
  .header-call { display: none; }
  .nav-toggle { display: flex; }

  .header-inner { flex-wrap: wrap; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 3;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
    margin-top: 12px;
  }
  .main-nav.open a { padding: 12px 4px; width: 100%; }

  /* Services dropdown becomes an inline accordion in the mobile menu */
  .main-nav.open .nav-item {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    position: static;
  }
  .main-nav.open .has-dropdown > .nav-services-link {
    width: auto;
    flex: 1;
  }
  .main-nav.open .has-dropdown .nav-caret { display: none; }
  .main-nav.open .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 0;
  }
  .main-nav.open .dropdown-toggle svg { width: 16px; height: 16px; transition: transform 200ms var(--ease); }
  .main-nav.open .has-dropdown.open .dropdown-toggle svg { transform: rotate(180deg); }
  .main-nav.open .has-dropdown { position: relative; }

  .main-nav.open .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    min-width: 0;
    margin: 0 0 8px;
    padding: 6px 0 6px 12px;
    background: transparent;
    border: none;
    border-left: 2px solid var(--color-border);
    border-radius: 0;
    box-shadow: none;
  }
  .main-nav.open .has-dropdown.open .nav-dropdown { display: flex; }
  .main-nav.open .nav-dropdown a { padding: 10px 4px; white-space: normal; }
  .main-nav.open .nav-dropdown-all { padding-top: 12px; }
  .main-nav.open .has-dropdown:hover .nav-dropdown { display: none; }
  .main-nav.open .has-dropdown.open:hover .nav-dropdown { display: flex; }

  .hero { min-height: 0; }
  .hero-content { padding: 48px 24px 40px; }
  .hero-bg { width: 100%; opacity: 0.35; }
  .hero-bg-right { display: none; }
  .hero-trust { gap: 14px; }
  .trust-divider { display: none; }

  .review-card { flex: 0 0 100%; }
}

@media (max-width: 640px) {
  /* Page-length pass: desktop section padding (100px) is far too tall once
     rows stack, so every section, heading gap and card gets compressed. */
  section { padding: 48px 0; }
  .section-head { margin-bottom: 32px; }
  .eyebrow { margin-bottom: 8px; }

  .service-hero { min-height: 0; padding: 40px 0 32px; }
  .service-body { padding: 40px 0 48px; }
  .service-intro { margin-bottom: 28px; }
  .service-figure { aspect-ratio: 16 / 9; }
  .service-gallery { gap: 8px; margin-top: 16px; }
  .service-gallery-item { padding: 6px; aspect-ratio: 3 / 4; }
  .service-gallery-item img { inset: 6px; width: calc(100% - 12px); height: calc(100% - 12px); }
  .service-aside { padding: 22px 20px; }
  .service-pager { margin-top: 32px; padding-top: 20px; }
  .service-other-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Services grid: a compact 2-column grid so all 6 cards sit on screen
     with nothing to scroll sideways for. */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .service-photo { aspect-ratio: 1 / 1; }
  .service-card-body { padding: 14px 14px 16px; gap: 10px; }
  .service-card h3 { font-size: 14.5px; line-height: 1.3; }
  .service-more { font-size: 12.5px; gap: 6px; }
  .service-more svg { width: 14px; height: 14px; }

  /* Only 3 kitchen photos — show them side by side, all visible. */
  .showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .ba-photo figcaption { padding: 10px 8px 8px; font-size: 11px; gap: 6px; }
  .ba-step { width: 16px; height: 16px; font-size: 10px; }

  .outdoor-showcase { margin-top: 36px; }
  .scroll-cue { display: none; }

  .hours-card { padding: 18px; margin-bottom: 16px; }
  .field { margin-bottom: 14px; }
  .field textarea { min-height: 100px; }

  .footer-grid { gap: 28px; }

  .hero { min-height: 0; }
  .hero-content { padding: 36px 20px 32px; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.5rem); margin-bottom: 0.3em; }
  .hero-sub { font-size: 15.5px; margin-bottom: 22px; }
  .hero-ctas { flex-direction: column; width: 100%; gap: 10px; margin-bottom: 0; }
  .hero-ctas .btn { width: 100%; }
  .contact-form-card { padding: 22px 18px 20px; }
  .contact-email { padding: 13px 16px; font-size: 14px; }
  .header-cta .btn-primary { display: none; }
}

@media (max-width: 640px) {
  /* Bigger touch spacing for the (visually small, on purpose) carousel dots. */
  .carousel-dots { gap: 16px; }

  /* Text-sized toggle padded out to a real touch target without changing
     its footprint in the layout (negative margin cancels the padding). */
  .review-more { padding: 12px 0; margin: -12px 0; }
}

/* ===================== Reviews: small screens ===================== */
@media (max-width: 860px) {
  .reviews-aggregate { gap: 10px; padding: 14px 20px; }
  .aggregate-score { font-size: 26px; }
  .aggregate-stars .star { width: 18px; height: 18px; }
  .aggregate-label { flex-basis: 100%; text-align: center; }
  .review-card { min-height: 244px; }
}

@media (max-width: 640px) {
  /* One card, swipeable. Arrows would eat the card width, dots stay for context. */
  .carousel-arrow { display: none; }
  .reviews-carousel { gap: 0; }
  .review-card { padding: 24px 20px 22px; }
}

@media (max-width: 560px) {
  /* Keep the announcement bar on one line; the weekend hours are in the contact area and footer. */
  .announce-secondary { display: none; }
}
