@import url("https://fonts.googleapis.com/css2?family=Lobster&family=Montserrat:wght@500;600;700&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --ink: #101114;
  --muted: #5d626b;
  --line: #dddddd;
  --soft: #f5f5f5;
  --black: #050608;
  --panel: #111317;
  --brand: #0787ff;
  --brand-dark: #0066d6;
  --accent: #ff5a00;
  --white: #ffffff;
  --font-regular: "Pliant", "Poppins", Arial, Helvetica, sans-serif;
  --font-display: "Montserrat", "Poppins", Arial, Helvetica, sans-serif;
  --font-script: "Lobster", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-regular);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 4px clamp(18px, 4vw, 56px);
  background: var(--white);
  border-bottom: 1px solid rgba(5, 6, 8, 0.12);
  box-shadow: 0 10px 35px rgba(5, 6, 8, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
}

.brand span {
  font-family: var(--font-display);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 700;
  line-height: 1;
  color: var(--brand);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: clamp(132px, 12vw, 178px);
  height: clamp(42px, 4.2vw, 56px);
  object-fit: contain;
  border-radius: 0;
  background: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 600;
}

.nav a,
.nav summary {
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  list-style: none;
  color: var(--black);
}

.nav summary::-webkit-details-marker {
  display: none;
}

.nav-phone {
  font-weight: 600;
  color: var(--brand) !important;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  z-index: 30;
  display: grid;
  min-width: 280px;
  max-height: 70vh;
  overflow: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 48px rgba(16, 32, 51, 0.16);
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 600;
}

.dropdown-menu a:hover {
  background: var(--soft);
}

.hero {
  min-height: calc(100vh - 94px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(56px, 8vw, 110px) clamp(18px, 4vw, 56px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.97), rgba(5, 6, 8, 0.76), rgba(5, 6, 8, 0.95)),
    url("https://images.unsplash.com/photo-1607860108855-64acf2078ed9?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
}

.hero h2 {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.16;
  letter-spacing: 0;
  font-style: italic;
  font-weight: 500;
}

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 22px);
}

.actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: var(--black);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.button.secondary-light {
  background: var(--white);
  color: var(--black);
  border: 1px solid rgba(5, 6, 8, 0.18);
}

.button.mini {
  min-height: 38px;
  padding: 0 13px;
  border-radius: 6px;
  font-size: 13px;
}

.hero-card {
  justify-self: stretch;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 44px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 135, 255, 0.24), rgba(255, 90, 0, 0.16)),
    rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero-visual {
  justify-self: stretch;
  min-height: clamp(420px, 48vw, 620px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.06), rgba(5, 6, 8, 0.36)),
    url("https://images.unsplash.com/photo-1520340356584-f9917d1eea6f?auto=format&fit=crop&w=1200&q=80") center/cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.hero-visual-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 3px;
  padding: clamp(24px, 4vw, 42px);
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.02), rgba(5, 6, 8, 0.74));
}

.hero-visual-card span {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 600;
  text-transform: uppercase;
}

.hero-visual-card strong {
  color: var(--white);
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--white);
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

.section {
  padding: clamp(44px, 6vw, 82px) clamp(18px, 4vw, 56px);
}

.section-title {
  max-width: 800px;
  margin-bottom: 28px;
}

.section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 700;
}

.muted {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.96), rgba(5, 6, 8, 0.84)),
    url("https://images.unsplash.com/photo-1619767886558-efdc259cde1a?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.muted .section-title p,
.muted .note {
  color: rgba(255, 255, 255, 0.78);
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.branch-list {
  display: grid;
  gap: 14px;
}

.branch-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.65fr) minmax(260px, 1fr) minmax(260px, 0.85fr);
  align-items: stretch;
  gap: 18px;
  min-height: 180px;
  padding: 14px;
  border: 1px solid rgba(5, 6, 8, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  cursor: pointer;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.branch-row > * {
  min-width: 0;
}

.branch-row:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 135, 255, 0.38);
  box-shadow: 0 12px 28px rgba(5, 6, 8, 0.13);
}

.branch-row-name {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.branch-row h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  font-weight: 700;
}

.branch-row p {
  align-self: center;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.branch-row iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 150px;
  border: 0;
  border-radius: 8px;
}

.branch-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.branch-card {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.branch-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 600;
}

.branch-card p {
  color: var(--muted);
}

.card-actions a {
  color: var(--brand-dark);
  font-weight: 600;
  text-decoration: none;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.placeholder-section p {
  max-width: 760px;
  color: var(--muted);
}

.branch-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(46px, 7vw, 94px) clamp(18px, 4vw, 56px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.96), rgba(5, 6, 8, 0.74), rgba(5, 6, 8, 0.93)),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.branch-hero h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1;
  font-weight: 700;
}

.branch-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
}

.script-title {
  margin: 0 0 8px;
  font-family: var(--font-script);
  color: var(--accent);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1;
}

.photo-collage {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  grid-template-rows: repeat(2, minmax(150px, 1fr));
  gap: 12px;
  min-height: 390px;
}

.photo-collage.fallback-collage div {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(5, 6, 8, 0.18), rgba(5, 6, 8, 0.44)),
    url("https://images.unsplash.com/photo-1503736334956-4c8f8e92946d?auto=format&fit=crop&w=1000&q=80") center/cover;
}

.photo-collage.fallback-collage div:first-child,
.photo-collage.real-collage img:first-child {
  grid-row: 1 / -1;
}

.photo-collage.fallback-collage div:nth-child(2) {
  background-image:
    linear-gradient(135deg, rgba(5, 6, 8, 0.18), rgba(5, 6, 8, 0.42)),
    url("https://images.unsplash.com/photo-1603386329225-868f9b1ee6c9?auto=format&fit=crop&w=900&q=80");
}

.photo-collage.fallback-collage div:nth-child(3) {
  background-image:
    linear-gradient(135deg, rgba(5, 6, 8, 0.18), rgba(5, 6, 8, 0.42)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=900&q=80");
}

.photo-collage.real-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  background: var(--black);
}

.branch-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
}

.wide-map {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
}

.hours-card,
.location-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  background: var(--white);
}

.hours-card {
  border-radius: 8px 0 0 8px;
  background:
    linear-gradient(135deg, rgba(7, 135, 255, 0.09), rgba(255, 90, 0, 0.08)),
    var(--white);
}

.location-card {
  border-left: 0;
  border-radius: 0 8px 8px 0;
}

.hours-card h2,
.location-card h2 {
  margin: 0;
}

.hours-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.hours-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.hours-item span {
  color: var(--muted);
  font-weight: 600;
}

.hours-item strong {
  color: var(--brand);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
  white-space: nowrap;
}

.branch-gallery-section {
  background: var(--white);
}

.branch-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.branch-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(5, 6, 8, 0.1);
  background: var(--soft);
}

.branch-gallery-grid img:first-child {
  grid-column: span 2;
  grid-row: span 2;
  height: 100%;
  min-height: 420px;
  aspect-ratio: auto;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.95), rgba(5, 6, 8, 0.84)),
    url("https://images.unsplash.com/photo-1517524008697-84bbe3c3fd98?auto=format&fit=crop&w=1600&q=80") center/cover;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-list a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
}

.tables-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  gap: 24px;
  align-items: start;
}

.info-table-wrap {
  min-width: 0;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.info-table th,
.info-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.info-table th {
  background: var(--soft);
  font-weight: 700;
}

.info-table tr:last-child td {
  border-bottom: 0;
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 700;
}

.status.ok {
  color: #0f6f45;
  background: #e7f7ee;
}

.status.no {
  color: #a63b2d;
  background: #fae8e4;
}

.service-list button,
.service-list a {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  padding: 14px 18px;
  font: inherit;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(8px);
}

.service-list a:hover {
  border-color: var(--brand);
  background: rgba(7, 135, 255, 0.18);
}

.note {
  color: var(--muted);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.94), rgba(5, 6, 8, 0.78)),
    url("https://images.unsplash.com/photo-1542362567-b07e54358753?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.split p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
}

.form-section {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(5, 6, 8, 0.97), rgba(5, 6, 8, 0.86)),
    url("https://images.unsplash.com/photo-1507136566006-cfc505b114fc?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.form-section .section-title p,
.form-section .note {
  color: rgba(255, 255, 255, 0.78);
}

.service-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(46px, 7vw, 94px) clamp(18px, 4vw, 56px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.96), rgba(5, 6, 8, 0.74), rgba(5, 6, 8, 0.93)),
    url("https://images.unsplash.com/photo-1552519507-da3b142c6e3d?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.service-page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
}

.service-page-hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
}

.service-page-hero .eyebrow {
  font-family: var(--font-script);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1;
  text-transform: none;
  color: var(--accent);
}

.service-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  filter: saturate(0.92) contrast(1.04);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.includes-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
}

.includes-panel h2,
.service-copy h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
}

.includes-panel ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  color: var(--muted);
}

.service-copy {
  max-width: 840px;
}

.service-copy p {
  color: #2e343b;
  font-size: 18px;
}

.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-nav a {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 980px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.quote-form label {
  display: grid;
  gap: 7px;
  font-weight: 600;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.quote-form option {
  color: var(--black);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
}

.quote-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  font-weight: 400 !important;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.actions.centered {
  justify-content: center;
  margin-top: 22px;
}

.blog-hero {
  display: grid;
  gap: 14px;
  min-height: 54vh;
  align-content: center;
  padding: clamp(74px, 10vw, 128px) clamp(18px, 4vw, 56px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.86), rgba(5, 6, 8, 0.62)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.blog-hero.compact {
  min-height: 42vh;
}

.blog-hero h1,
.blog-hero h2,
.blog-hero p {
  max-width: 920px;
  margin: 0;
}

.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.blog-hero h2 {
  font-size: clamp(22px, 2.6vw, 34px);
  font-style: italic;
  font-weight: 500;
}

.blog-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.4vw, 21px);
}

.blog-index-section {
  display: grid;
  gap: 28px;
}

.blog-bar-list {
  display: grid;
  gap: 14px;
}

.blog-bar {
  display: grid;
  grid-template-columns: 78px minmax(220px, 0.95fr) minmax(280px, 1.35fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: stretch;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(5, 6, 8, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(5, 6, 8, 0.08);
}

.blog-bar-index {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
}

.blog-bar-main,
.blog-bar-content {
  display: grid;
  align-content: start;
  gap: 8px;
}

.blog-bar-title {
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.12;
  text-decoration: none;
  text-transform: uppercase;
}

.blog-bar-title:hover,
.blog-card:hover strong,
.blog-bar-content a:hover {
  color: var(--brand);
}

.blog-bar-main p,
.blog-card p {
  margin: 0;
  color: var(--muted);
}

.blog-bar-content span,
.blog-card span,
.blog-breadcrumb {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-bar-content ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
}

.blog-bar-content a {
  color: var(--ink);
  text-decoration: none;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.blog-card {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(5, 6, 8, 0.12);
  border-radius: 8px;
  background: var(--white);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(5, 6, 8, 0.07);
}

.blog-card strong {
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.18;
}

.blog-article {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.blog-article h1 {
  margin: 0;
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

.blog-lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 22px);
}

.blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-breadcrumb a {
  color: var(--brand);
  text-decoration: none;
}

.blog-article-body {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.blog-article-body h3 {
  margin: 20px 0 0;
  color: var(--black);
  font-size: clamp(21px, 2vw, 30px);
}

.blog-article-body p {
  margin: 0;
  color: #2c3036;
  font-size: 18px;
}

.blog-callout {
  padding: 18px;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: #f3f7fb;
  color: var(--black) !important;
  font-weight: 600;
}

.blog-action-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 24px;
}

.blog-action-list li {
  color: #2c3036;
  font-size: 18px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 56px);
  background: var(--black);
  color: var(--white);
}

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

.footer p {
  color: rgba(255, 255, 255, 0.75);
}

.footer-balanced {
  align-items: start;
}

.footer strong {
  display: block;
  margin-bottom: 10px;
}

.footer-directions ul {
  columns: 2;
  column-gap: 34px;
  margin: 0;
  padding-left: 18px;
}

.footer-directions li {
  break-inside: avoid;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-directions li:first-child {
  color: var(--white);
  font-weight: 600;
}

.footer-directions a {
  font-weight: 700;
  text-decoration: none;
}

.footer-company {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 100%;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-logo {
  display: block;
  width: min(220px, 100%);
  height: auto;
  object-fit: contain;
}

.footer-company p {
  margin: 0;
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.map-card {
  display: grid;
  gap: 8px;
}

.map-card strong {
  font-size: 14px;
}

.map-card iframe {
  width: 100%;
  min-height: 180px;
  border: 0;
  border-radius: 8px;
}

@media (max-width: 980px) {
  .hero,
  .branch-hero,
  .branch-layout,
  .contact-band,
  .tables-section,
  .service-page-hero,
  .service-detail,
  .split,
  .footer {
    grid-template-columns: 1fr;
  }

  .includes-panel {
    position: static;
  }

  .branch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .branch-row {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
  }

  .branch-row-name {
    order: 1;
    width: 100%;
  }

  .branch-row p {
    order: 2;
    align-self: stretch;
  }

  .branch-layout {
    gap: 18px;
  }

  .branch-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hours-card,
  .location-card {
    min-height: auto;
    border-radius: 8px;
    border: 1px solid var(--line);
  }

  .branch-row iframe {
    order: 3;
    height: 260px;
    min-height: 260px;
    max-height: 260px;
  }

  .map-grid {
    grid-template-columns: 1fr;
  }

  .blog-bar,
  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-bar-index {
    place-items: start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
  }

  .footer-directions ul {
    columns: 1;
  }

  .footer-company {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo {
    width: 132px;
    height: 42px;
  }

  .brand span {
    font-size: 16px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .dropdown-menu {
    left: 0;
    right: auto;
  }

  .branch-grid,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .branch-list {
    gap: 18px;
  }

  .branch-row {
    gap: 14px;
    padding: 18px;
  }

  .branch-row:hover {
    transform: none;
  }

  .branch-row h3 {
    font-size: 32px;
  }

  .branch-row p {
    font-size: 16px;
    line-height: 1.45;
  }

  .branch-row-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .branch-row-actions .button {
    width: 100%;
    justify-content: center;
    padding-inline: 10px;
    white-space: nowrap;
  }

  .branch-row iframe {
    height: 220px;
    min-height: 220px;
    max-height: 220px;
  }

  .photo-collage {
    min-height: 300px;
  }

  .branch-gallery-grid {
    grid-template-columns: 1fr;
  }

  .branch-gallery-grid img:first-child {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .hours-item {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 420px) {
  .branch-row-actions {
    grid-template-columns: 1fr;
  }
}
