/*
Theme Name: Beams
Theme URI: https://www.thebeamguy.ca/
Description: Professional theme for The Beam Guy — structural beam installation, load-bearing wall removal, and related services across the Golden Horseshoe.
Author: The Beam Guy
Author URI: https://www.thebeamguy.ca/
Version: 1.0.2
Text Domain: beams
*/

/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
:root {
  --beam-red: #c41230;
  --beam-red-dark: #9a0e26;
  --beam-red-soft: #f8e8eb;
  --beam-yellow: #e6b422;
  --beam-ink: #14181f;
  --beam-slate: #3d4654;
  --beam-muted: #5c6778;
  --beam-steel: #8b95a5;
  --beam-line: #d8dde5;
  --beam-paper: #f3f5f8;
  --beam-white: #ffffff;
  --beam-shadow: 0 18px 50px rgba(20, 24, 31, 0.12);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 5.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--beam-ink);
  background: var(--beam-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
}

::selection {
  background: var(--beam-red);
  color: var(--beam-white);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Typography helpers
   -------------------------------------------------------------------------- */
.font-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.95;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--beam-red);
}

.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 2px;
  background: var(--beam-red);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--beam-ink);
  margin: 0 0 1rem;
}

.section-lead {
  font-size: 1.125rem;
  color: var(--beam-muted);
  max-width: 38rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.site-wrap {
  overflow-x: hidden;
  padding-top: var(--header-h);
}

.container {
  width: min(100% - 2.5rem, 72rem);
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 2.5rem, 80rem);
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.15rem;
  padding: 0.85rem 1.55rem;
  border-radius: 0.2rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease-out), background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--beam-red);
  color: var(--beam-white);
  box-shadow: 0 10px 28px rgba(196, 18, 48, 0.28);
}

.btn-primary:hover {
  background: var(--beam-red-dark);
  color: var(--beam-white);
}

.btn-secondary {
  background: transparent;
  color: var(--beam-ink);
  border-color: var(--beam-ink);
}

.btn-secondary:hover {
  background: var(--beam-ink);
  color: var(--beam-white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--beam-white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: var(--beam-white);
  color: var(--beam-ink);
  border-color: var(--beam-white);
}

.btn-yellow {
  background: var(--beam-yellow);
  color: var(--beam-ink);
}

.btn-yellow:hover {
  background: #d4a41a;
  color: var(--beam-ink);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(216, 221, 229, 0.85);
  transition:
    background 0.28s var(--ease-out),
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    backdrop-filter 0.28s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(216, 221, 229, 0.5);
  box-shadow: 0 12px 32px rgba(20, 24, 31, 0.08);
}

.site-header.is-scrolled .mobile-nav {
  background: rgba(255, 255, 255, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.brand-mark {
  width: 3.35rem;
  height: 3.35rem;
  object-fit: contain;
  border-radius: 0.25rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--beam-ink);
}

.brand-tag {
  margin-top: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--beam-muted);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-desktop > li {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop a {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--beam-slate);
  transition: color 0.2s ease;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"],
.nav-desktop .current-menu-item > a,
.nav-desktop .current-menu-ancestor > a {
  color: var(--beam-red);
}

.nav-desktop .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-left: 0.4rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-0.15rem) rotate(45deg);
}

.nav-desktop .sub-menu {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  min-width: 15.5rem;
  margin: 0;
  padding: 0.45rem 0;
  list-style: none;
  background: var(--beam-white);
  border: 1px solid var(--beam-line);
  border-top: 3px solid var(--beam-red);
  box-shadow: var(--beam-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 0.4rem);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 60;
}

.nav-desktop .sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1rem;
  height: 1rem;
}

.nav-desktop .menu-item-has-children:hover > .sub-menu,
.nav-desktop .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-desktop .sub-menu li {
  margin: 0;
}

.nav-desktop .sub-menu a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--beam-ink);
}

.nav-desktop .sub-menu a:hover {
  background: var(--beam-paper);
  color: var(--beam-red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.header-phone {
  display: none;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border: 1px solid var(--beam-line);
  border-radius: 0.2rem;
  background: var(--beam-white);
  color: var(--beam-ink);
  cursor: pointer;
}

.menu-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.menu-toggle[aria-expanded="true"] {
  border-color: var(--beam-red);
  color: var(--beam-red);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--beam-line);
  background: var(--beam-white);
  padding: 0.5rem 0 1.25rem;
  max-height: min(75vh, calc(100dvh - var(--header-h)));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.is-open {
  display: block;
}

.site-header.is-menu-open {
  background: rgba(255, 255, 255, 0.98);
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1023px) {
  .brand-tag {
    display: none;
  }

  .brand-mark {
    width: 2.85rem;
    height: 2.85rem;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  /* Keep the hamburger visible — CTA lives in the drawer */
  .header-actions > .btn-primary {
    display: none;
  }
}

.mobile-nav > a,
.mobile-nav-group > summary {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--beam-ink);
  border-bottom: 1px solid var(--beam-paper);
  cursor: pointer;
  list-style: none;
}

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

.mobile-nav-group > summary::after {
  content: "+";
  float: right;
  color: var(--beam-red);
}

.mobile-nav-group[open] > summary::after {
  content: "–";
}

.mobile-nav-sub {
  padding: 0.25rem 0 0.75rem 0.85rem;
  border-bottom: 1px solid var(--beam-paper);
}

.mobile-nav-sub a {
  display: block;
  padding: 0.55rem 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--beam-slate);
  border-bottom: 0;
}

.mobile-nav-sub a:hover {
  color: var(--beam-red);
}

.mobile-nav-cta {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--beam-line);
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .header-phone {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav,
  .mobile-nav.is-open {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(92vh, 52rem);
  display: flex;
  align-items: stretch;
  background:
    radial-gradient(ellipse 70% 80% at 85% 35%, rgba(196, 18, 48, 0.12), transparent 55%),
    linear-gradient(135deg, #eef1f5 0%, #f8f9fb 42%, #e8edf3 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 24, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 24, 31, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, black 0%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--beam-red) 0%, var(--beam-yellow) 55%, transparent 100%);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  width: min(100% - 2.5rem, 80rem);
  margin: 0 auto;
  padding: 3.5rem 0 2.5rem;
}

.hero-copy {
  max-width: 36rem;
  animation: rise-in 0.9s var(--ease-out) both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--beam-red);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.1rem);
  font-weight: 800;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  line-height: 0.92;
  color: var(--beam-ink);
  margin: 0 0 1.25rem;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--beam-slate);
  max-width: 32rem;
  margin: 0 0 1.85rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.hero-phone {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-phone span {
  font-size: 0.9rem;
  color: var(--beam-muted);
  font-style: italic;
}

.hero-phone a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--beam-ink);
  transition: color 0.2s ease;
}

.hero-phone a:hover {
  color: var(--beam-red);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  animation: float-in 1.05s 0.15s var(--ease-out) both;
}

.hero-visual-glow {
  position: absolute;
  width: min(88%, 28rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 18, 48, 0.18) 0%, rgba(230, 180, 34, 0.12) 38%, transparent 70%);
  filter: blur(8px);
  z-index: 0;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 28rem);
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(20, 24, 31, 0.18));
  animation: gentle-bob 5.5s ease-in-out infinite;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
    padding: 4.5rem 0 3.5rem;
    min-height: min(88vh, 48rem);
  }

  .hero-visual {
    justify-content: flex-end;
  }

  .hero-visual img {
    width: min(100%, 34rem);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateX(1.5rem) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes gentle-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-copy,
  .hero-visual,
  .hero-visual img,
  .reveal {
    animation: none !important;
  }
}

/* --------------------------------------------------------------------------
   Trust strip
   -------------------------------------------------------------------------- */
.trust-strip {
  background: var(--beam-ink);
  color: var(--beam-white);
  padding: 1.15rem 0;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-strip-inner span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.88);
}

.trust-strip-inner span::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--beam-yellow);
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head.centered {
  text-align: center;
}

.section-head.centered .eyebrow {
  justify-content: center;
}

.section-head.centered .section-lead {
  margin-inline: auto;
}

.section-paper {
  background: var(--beam-paper);
}

.section-ink {
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(196, 18, 48, 0.22), transparent 50%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(230, 180, 34, 0.12), transparent 45%),
    linear-gradient(160deg, #171c24 0%, #10141a 100%);
  color: var(--beam-white);
}

.section-ink .section-title,
.section-ink .eyebrow {
  color: var(--beam-white);
}

.section-ink .eyebrow::before {
  background: var(--beam-yellow);
}

.section-ink .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-item {
  position: relative;
  padding: 1.75rem 1.5rem 1.6rem;
  background: var(--beam-white);
  border-left: 4px solid var(--beam-red);
  box-shadow: 0 1px 0 rgba(20, 24, 31, 0.04);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--beam-shadow);
}

.service-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--beam-steel);
  margin-bottom: 0.85rem;
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: var(--beam-ink);
}

.service-item p {
  margin: 0;
  color: var(--beam-muted);
  font-size: 0.98rem;
}

/* --------------------------------------------------------------------------
   Process / about
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
  }
}

.process-list {
  display: grid;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--beam-line);
}

.process-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.process-step {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--beam-red);
  color: var(--beam-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.process-list h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.process-list p {
  margin: 0;
  color: var(--beam-muted);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  padding: 1.25rem 1rem;
  background: var(--beam-paper);
  border-top: 3px solid var(--beam-red);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--beam-ink);
  margin-bottom: 0.4rem;
}

.stat span {
  font-size: 0.92rem;
  color: var(--beam-muted);
}

/* --------------------------------------------------------------------------
   Why choose / values
   -------------------------------------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 700px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-item {
  padding: 1.75rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease-out);
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(230, 180, 34, 0.45);
  transform: translateY(-3px);
}

.value-item h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--beam-yellow);
}

.value-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
}

/* --------------------------------------------------------------------------
   Areas
   -------------------------------------------------------------------------- */
.areas-wrap {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 960px) {
  .areas-wrap {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: end;
  }
}

.areas-intro {
  max-width: 36rem;
}

.areas-panel {
  background: var(--beam-white);
  border: 1px solid var(--beam-line);
  border-top: 3px solid var(--beam-red);
  padding: 1.15rem;
}

.areas-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 520px) {
  .areas-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .areas-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.areas-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.55rem 0.5rem;
  background: var(--beam-paper);
  border: 1px solid transparent;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--beam-ink);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.areas-list li:hover {
  border-color: var(--beam-red);
  color: var(--beam-red);
  background: var(--beam-white);
}

.areas-note {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--beam-line);
  color: var(--beam-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: none;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem 1.5rem;
  background: var(--beam-white);
  border-top: 4px solid var(--beam-red);
  min-height: 100%;
}

.testimonial blockquote {
  margin: 0;
  font-size: 1.02rem;
  color: var(--beam-slate);
  flex: 1;
}

.testimonial cite {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--beam-ink);
}

.testimonial-stars {
  color: var(--beam-yellow);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  padding: clamp(4rem, 8vw, 5.5rem) 0;
  background:
    linear-gradient(120deg, rgba(20, 24, 31, 0.92), rgba(196, 18, 48, 0.88)),
    linear-gradient(135deg, #1a1f28, #c41230);
  color: var(--beam-white);
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -35deg,
    transparent,
    transparent 18px,
    rgba(255, 255, 255, 0.03) 18px,
    rgba(255, 255, 255, 0.03) 19px
  );
  pointer-events: none;
}

.cta-inner {
  position: relative;
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 800px) {
  .cta-inner {
    grid-template-columns: 1fr auto;
    gap: 2.5rem;
  }
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0 0 0.85rem;
}

.cta-band p {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: #0d1117;
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 1.75rem;
}

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

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer-brand .brand-name {
  color: var(--beam-white);
}

.footer-brand p {
  margin: 1rem 0 0;
  max-width: 24rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-social-link svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

.footer-social-link:hover {
  color: var(--beam-yellow);
  border-color: rgba(230, 180, 34, 0.55);
  background: rgba(230, 180, 34, 0.08);
  transform: translateY(-2px);
}

.footer-col h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--beam-white);
}

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

.footer-col li + li {
  margin-top: 0.55rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--beam-yellow);
}

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

/* --------------------------------------------------------------------------
   Inner pages (shared hero + editor content)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: clamp(1.75rem, 3.2vw, 2.5rem) 0;
  background:
    linear-gradient(145deg, #151a22 0%, #1a1216 48%, #2a0f16 100%);
  color: var(--beam-white);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, black, transparent 70%);
  pointer-events: none;
}

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

.page-hero .eyebrow {
  color: var(--beam-yellow);
}

.page-hero .eyebrow::before {
  background: var(--beam-yellow);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0 0 0.75rem;
  color: var(--beam-white);
}

.page-hero p,
.page-hero-lead {
  margin: 0;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.5;
}

.page-hero-meta {
  font-size: 0.95rem !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65) !important;
}

.page-hero-meta-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.page-hero-meta-list li {
  display: inline-flex;
  align-items: center;
}

.page-hero-meta-list li:not(:last-child)::after {
  content: "";
  width: 0.28rem;
  height: 0.28rem;
  margin: 0 0.75rem;
  border-radius: 50%;
  background: var(--beam-yellow);
  opacity: 0.85;
}

.page-hero--compact {
  padding: clamp(1.5rem, 2.8vw, 2.15rem) 0;
}

.content-area {
  padding: clamp(2.75rem, 5vw, 4rem) 0 5rem;
}

.content-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--beam-line);
}

/* WordPress editor / classic content */
.entry-content {
  color: var(--beam-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  color: var(--beam-ink);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 2rem 0 0.85rem;
}

.entry-content h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.entry-content h2 {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
}

.entry-content h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
}

.entry-content h4,
.entry-content h5,
.entry-content h6 {
  font-size: 1.2rem;
}

.entry-content p {
  margin: 0 0 1.15rem;
  color: var(--beam-muted);
}

.entry-content a {
  color: var(--beam-red);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color 0.2s ease;
}

.entry-content a:hover {
  color: var(--beam-red-dark);
}

.entry-content strong,
.entry-content b {
  color: var(--beam-ink);
  font-weight: 700;
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
  color: var(--beam-muted);
}

.entry-content li + li {
  margin-top: 0.45rem;
}

.entry-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 0 1rem 1.25rem;
  border-left: 4px solid var(--beam-red);
  color: var(--beam-ink);
  font-size: 1.1rem;
}

.entry-content img,
.entry-content figure {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
}

.entry-content figure {
  display: block;
}

.entry-content figcaption {
  margin-top: 0.55rem;
  font-size: 0.92rem;
  color: var(--beam-steel);
}

.entry-content .alignnone {
  display: block;
  float: none;
  margin: 1.5rem 0;
  max-width: 100%;
  height: auto;
}

.entry-content .alignleft {
  display: block;
  float: left;
  margin: 0.35rem 1.5rem 1.25rem 0;
  max-width: min(100%, 50%);
  height: auto;
}

.entry-content .alignright {
  display: block;
  float: right;
  margin: 0.35rem 0 1.25rem 1.5rem;
  max-width: min(100%, 50%);
  height: auto;
}

.entry-content .aligncenter {
  display: block;
  float: none;
  clear: both;
  margin: 1.5rem auto;
  max-width: 100%;
  height: auto;
}

.entry-content figure.alignnone,
.entry-content figure.alignleft,
.entry-content figure.alignright,
.entry-content figure.aligncenter {
  max-width: min(100%, 50%);
}

.entry-content figure.alignnone,
.entry-content figure.aligncenter {
  max-width: 100%;
}

.entry-content figure.alignnone img,
.entry-content figure.alignleft img,
.entry-content figure.alignright img,
.entry-content figure.aligncenter img {
  margin: 0;
  display: block;
  width: 100%;
  height: auto;
}

.entry-content::after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 639px) {
  .entry-content .alignleft,
  .entry-content .alignright,
  .entry-content figure.alignleft,
  .entry-content figure.alignright {
    float: none;
    display: block;
    margin: 1.25rem auto;
    max-width: 100%;
  }
}

.entry-content hr {
  border: 0;
  border-top: 1px solid var(--beam-line);
  margin: 2rem 0;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.98rem;
}

.entry-content th,
.entry-content td {
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--beam-line);
  text-align: left;
}

.entry-content th {
  background: var(--beam-paper);
  color: var(--beam-ink);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.entry-content .wp-block-button__link,
.entry-content .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.35rem;
  background: var(--beam-red);
  color: var(--beam-white) !important;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: 0.2rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.entry-content .wp-block-button__link:hover,
.entry-content .button:hover {
  background: var(--beam-red-dark);
  transform: translateY(-2px);
}

.entry-content .alignwide,
.entry-content .alignfull {
  max-width: 100%;
}

.posts-grid {
  display: grid;
  gap: 1.5rem;
}

.post-card {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--beam-line);
}

.post-card h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.post-card h2 a:hover {
  color: var(--beam-red);
}

.post-meta {
  font-size: 0.9rem;
  color: var(--beam-muted);
  margin-bottom: 0.75rem;
}

.post-box-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

@media (min-width: 640px) {
  .post-box-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .post-box-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.post-box {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--beam-white);
  border: 1px solid var(--beam-line);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.post-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--beam-shadow);
}

.post-box-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--beam-paper);
}

.post-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}

.post-box:hover .post-box-media img {
  transform: scale(1.04);
}

.post-box-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(145deg, #151a22 0%, #2a0f16 100%);
}

.post-box-body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.05rem 1rem 1.2rem;
  flex: 1;
}

.post-box-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--beam-steel);
}

.post-box-meta li {
  display: inline-flex;
  align-items: center;
}

.post-box-meta li:not(:last-child)::after {
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  margin: 0 0.55rem;
  border-radius: 50%;
  background: var(--beam-red);
}

.post-box-title {
  margin: 0;
  flex: 1;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.15;
}

.post-box-title a:hover {
  color: var(--beam-red);
}

.pagination {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--beam-line);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pagination .current {
  background: var(--beam-red);
  border-color: var(--beam-red);
  color: var(--beam-white);
}

.content-narrow {
  max-width: 48rem;
  margin-inline: auto;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .contact-details-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.contact-detail {
  padding: 1.5rem 1.25rem;
  background: var(--beam-paper);
  border-top: 3px solid var(--beam-red);
}

.contact-detail h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.05;
}

.contact-detail p {
  margin: 0 0 0.85rem;
  color: var(--beam-muted);
}

.contact-detail p:last-child {
  margin-bottom: 0;
}

.privacy-content .entry-content h2 {
  margin-top: 2rem;
}

.privacy-content .entry-content ul {
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--beam-muted);
}

.privacy-content .entry-content li + li {
  margin-top: 0.4rem;
}

.privacy-content .entry-content p {
  color: var(--beam-muted);
}

.footer-bottom-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--beam-yellow);
}

/* --------------------------------------------------------------------------
   Reveal on scroll
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* --------------------------------------------------------------------------
   Service pages
   -------------------------------------------------------------------------- */
.service-hero {
  position: relative;
  background:
    linear-gradient(145deg, #151a22 0%, #1a1216 48%, #2a0f16 100%);
  color: var(--beam-white);
  padding: clamp(1.5rem, 2.8vw, 2.25rem) 0;
  overflow: hidden;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, black, transparent 70%);
  pointer-events: none;
}

.service-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 980px) {
  .service-hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }
}

.service-hero .eyebrow {
  color: var(--beam-yellow);
  margin-bottom: 0.35rem;
}

.service-hero .eyebrow::before {
  background: var(--beam-yellow);
}

.service-breadcrumb {
  margin: 0 0 0.55rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
}

.service-breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.service-breadcrumb a:hover {
  color: var(--beam-yellow);
}

.service-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.94;
  margin: 0 0 0.7rem;
  color: var(--beam-white);
}

.service-hero-lead {
  margin: 0 0 1.1rem;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.service-hero .hero-actions {
  margin-bottom: 0;
  gap: 0.65rem;
}

.service-hero .btn {
  min-height: 2.65rem;
  padding: 0.65rem 1.2rem;
  font-size: 0.95rem;
}

.quote-form-card {
  background: var(--beam-white);
  color: var(--beam-ink);
  padding: 1.05rem 1.1rem 1.15rem;
  border-top: 4px solid var(--beam-red);
  box-shadow: var(--beam-shadow);
}

@media (min-width: 700px) {
  .quote-form-card {
    padding: 1.15rem 1.25rem 1.25rem;
  }
}

.quote-form-kicker {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--beam-red);
}

.quote-form-head h2 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.quote-form-head p {
  margin: 0 0 0.75rem;
  color: var(--beam-muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.quote-form-alert {
  margin-bottom: 0.75rem;
  padding: 0.65rem 0.8rem;
  font-size: 0.88rem;
}

.quote-form-alert.is-success {
  background: #e8f6ec;
  color: #14532d;
}

.quote-form-alert.is-error {
  background: #fde8e8;
  color: #7f1d1d;
}

.quote-form {
  display: grid;
  gap: 0.55rem;
}

.quote-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

@media (min-width: 640px) {
  .quote-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.quote-form label {
  display: grid;
  gap: 0.2rem;
}

.quote-form label span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--beam-slate);
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--beam-line);
  border-radius: 0.15rem;
  padding: 0.55rem 0.7rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--beam-ink);
  background: #fafbfc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form textarea {
  min-height: 4.25rem;
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--beam-red);
  box-shadow: 0 0 0 3px rgba(196, 18, 48, 0.12);
  background: var(--beam-white);
}

.quote-form-submit {
  width: 100%;
  margin-top: 0.15rem;
  min-height: 2.65rem;
}

.service-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

@media (min-width: 700px) {
  .service-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .service-card-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-card-grid--compact {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: var(--beam-white);
  border: 1px solid var(--beam-line);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--beam-shadow);
}

.service-card-media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--beam-paper);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}

.service-card:hover .service-card-media img {
  transform: scale(1.04);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.15rem 1.1rem 1.25rem;
  flex: 1;
}

.service-card-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.1;
}

.service-card-body h3 a:hover {
  color: var(--beam-red);
}

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

.service-card-link {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--beam-red);
}

.popular-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

@media (min-width: 700px) {
  .popular-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .popular-services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card--cta .service-card-media {
  position: relative;
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(20, 24, 31, 0.15) 0%, rgba(20, 24, 31, 0.82) 100%);
  color: var(--beam-white);
}

.service-card-overlay-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--beam-yellow);
}

.service-card-overlay-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
}

.service-card-overlay-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: start;
}

@media (min-width: 960px) {
  .service-detail {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }
}

.service-detail-copy p {
  color: var(--beam-muted);
  font-size: 1.05rem;
}

.service-checklist {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.service-checklist li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--beam-ink);
  font-weight: 500;
}

.service-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--beam-red);
  border-radius: 0.1rem;
}

.service-seo-note {
  margin-top: 1.75rem !important;
  padding-top: 1.25rem;
  border-top: 1px solid var(--beam-line);
  font-size: 0.98rem !important;
}

.service-detail-media {
  margin: 0;
  background: var(--beam-paper);
  overflow: hidden;
}

.service-detail-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.service-expect-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 700px) {
  .service-expect-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .service-expect-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-expect-grid .value-item {
  background: var(--beam-white);
  border: 1px solid var(--beam-line);
}

.service-expect-grid .value-item:hover {
  border-color: rgba(196, 18, 48, 0.35);
  background: var(--beam-white);
}

.service-expect-grid .value-item h3 {
  color: var(--beam-red);
}

.service-expect-grid .value-item p {
  color: var(--beam-muted);
}

