/* ===============================
   Pinnacle – Enhanced Heating Page
   =============================== */

/* ---------- Globals ---------- */
:root {
  --c-bg: #fff;
  --c-text: #3a0b0b;
  --c-text-weak: #4d1111;
  --c-accent: #a61f1f;
  --c-accent-2: #a83d3d;
  --c-grad-red-1: #e92a3b;
  --c-grad-red-2: #ef6b76;
  --r10: 10px;
  --r12: 12px;
  --r14: 14px;
  --r16: 16px;
  --shadow-soft: 0 2px 10px rgba(45, 10, 10, 0.05);
  --shadow-pop: 0 14px 32px rgba(45, 10, 10, 0.18);
  --shadow-card: 0 4px 20px rgba(45, 10, 10, 0.08);
}

* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

body {
  margin: 0;
  background: var(--c-bg);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

/* Containers */
.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.text-container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

html,
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-x: clip;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

/* ===================================
   Navigation (desktop + dropdown)
   =================================== */
.navigation {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100px;
  position: relative;
  z-index: 100;
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  padding: 10px clamp(16px, 3vw, 36px);
  padding-right: clamp(16px, 4vw, 52px);
}

.logo-box {
  width: 300px;
  height: 90px;
}

.logo-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.menu-desktop {
  margin-left: auto;
}

.navigation nav ul.menu {
  display: flex;
  gap: clamp(18px, 3vw, 44px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.navigation nav li {
  position: relative;
}

.navigation nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 8px;
}

.navigation > nav > ul > li > a:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Dropdown */
.navigation .dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 210px;
  list-style: none;
  margin: 0;
  padding: 8px;
  background: #fff;
  color: var(--c-text);
  border: 1px solid rgba(166, 31, 31, 0.12);
  border-radius: 12px;
  box-shadow: var(--shadow-pop);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

.navigation .dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 18px;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  background: #fff;
  border-left: 1px solid rgba(166, 31, 31, 0.12);
  border-top: 1px solid rgba(166, 31, 31, 0.12);
}

.navigation li:hover > .dropdown,
.navigation li:focus-within > .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.navigation .dropdown a {
  display: block;
  padding: 10px 12px;
  color: var(--c-text-weak);
  font-weight: 600;
  border-radius: 8px;
}

.navigation .dropdown a:hover {
  background: #fcf4f4;
  color: var(--c-accent);
}

@media (max-width: 820px) {
  .navigation .dropdown {
    left: auto;
    right: 0;
  }
}

/* =========================
   Hero (band + content)
   ========================= */
.hero-band {
  position: relative;
  color: #fff;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.hero-band--red {
  background: linear-gradient(
    180deg,
    #e92a3b 0%,
    #d62837 22%,
    #c92332 60%,
    #b71f2d 100%
  );
  color: #fff;
}

.hero-band--red .navigation {
  background: transparent;
}

.hero-band--red .menu a {
  color: #fff;
}

.menu-desktop .dropdown a {
  color: #4d1111;
}

.hero-band--red .menu .active > a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 10px;
}

.hero {
  position: relative;
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  padding: 6vh 0 14vh;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(24px, 4vw, 40px) 0 clamp(40px, 6vw, 72px);
}

.hero-copy h1 {
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.05;
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-copy .lead {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  max-width: 58ch;
  margin: 0 0 18px;
  opacity: 0.98;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.btn-primary {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background-image: linear-gradient(
    45deg,
    #e92a3b 0%,
    #ef6b76 50%,
    #e92a3b 100%
  );
  background-size: 200% auto;
  transition: background-position 0.35s ease, transform 0.15s ease;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
  background-position: right center;
}

.btn-primary:active {
  transform: scale(0.98);
}

.quick-points {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
  opacity: 0.92;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.hero-visual {
  position: relative;
  min-height: 320px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -15% -10% -20% -10%;
  background: radial-gradient(
    circle at 55% 50%,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.1) 45%,
    rgba(255, 255, 255, 0) 60%
  );
  filter: blur(6px);
  pointer-events: none;
  z-index: 0;
}

.unit-img {
  position: relative;
  z-index: 1;
  width: min(680px, 42vw);
  max-width: 100%;
  display: block;
  margin: 0 auto;
  background: transparent;
  border-radius: 0;
  transform: translate(20px, -6px) scale(1.2);
  filter: drop-shadow(0 0 0.75rem black);
}

/* =========================
   Enhanced Service Cards
   ========================= */
body.heating {
  color: #2b0a0a;
  background: linear-gradient(to bottom, #ffffff 0%, #fef9f9 100%);
}

.heating-services {
  padding: clamp(60px, 8vw, 100px) 0 clamp(60px, 8vw, 100px);
  position: relative;
}

.heating-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 100%;
  background: radial-gradient(
    ellipse at top,
    rgba(233, 42, 59, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.section-intro {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-intro h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: #271111;
  letter-spacing: -0.02em;
}

.section-intro p {
  max-width: 65ch;
  margin: 0 auto;
  line-height: 1.7;
  font-size: clamp(16px, 2vw, 18px);
  color: #513737;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(24px, 3vw, 32px);
  margin-bottom: clamp(48px, 6vw, 72px);
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: clamp(28px, 4vw, 36px);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(166, 31, 31, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-grad-red-1), var(--c-grad-red-2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 10, 10, 0.15);
  border-color: rgba(166, 31, 31, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #fef1f2 0%, #fcebec 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--c-accent);
  transition: transform 0.3s ease, background 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.08) rotate(2deg);
  background: linear-gradient(135deg, #fce8ea 0%, #fad9dc 100%);
}

.service-icon svg {
  width: 40px;
  height: 40px;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 800;
  color: #271111;
  letter-spacing: -0.01em;
}

.service-card p {
  margin: 0 0 12px;
  line-height: 1.7;
  color: #513737;
  font-size: clamp(15px, 1.8vw, 16px);
}

.service-card p:last-child {
  margin-bottom: 0;
}

.service-area {
  font-size: 14px !important;
  color: #6d4a4a !important;
  font-style: italic;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 12px !important;
}

/* Emergency card special styling */
.service-card--emergency {
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
  border-color: rgba(233, 42, 59, 0.2);
}

.service-card--emergency::before {
  opacity: 1;
  height: 6px;
}

.service-card--emergency .service-icon {
  background: linear-gradient(135deg, #e92a3b 0%, #c92332 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(233, 42, 59, 0.3);
}

.emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e92a3b 0%, #d62837 100%);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  margin-top: 16px;
  box-shadow: 0 4px 12px rgba(233, 42, 59, 0.25);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 4px 12px rgba(233, 42, 59, 0.25);
  }
  50% {
    box-shadow: 0 4px 20px rgba(233, 42, 59, 0.4);
  }
}

/* =========================
   Why Us Section
   ========================= */
.why-us {
  background: linear-gradient(135deg, #fff 0%, #fef6f6 100%);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 48px);
  border: 2px solid rgba(166, 31, 31, 0.1);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(233, 42, 59, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.why-us-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #e92a3b 0%, #c92332 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(233, 42, 59, 0.25);
}

.why-us-icon svg {
  width: 36px;
  height: 36px;
}

.why-us h2 {
  margin: 0 0 24px;
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 900;
  color: #271111;
  letter-spacing: -0.02em;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: clamp(15px, 1.8vw, 17px);
  color: #371f1f;
  font-weight: 600;
  line-height: 1.6;
}

.why-list li svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--c-accent);
  margin-top: 2px;
}

/* ========= FAQ Section ========= */
#heating-faq {
  --faq-accent: var(--c-accent);
  --faq-bg: #fefbfb;
  --faq-card-bg: var(--c-bg);
  --faq-border: color-mix(in oklab, var(--c-text) 12%, transparent);
  --faq-open-bg: color-mix(in oklab, var(--c-accent) 14%, var(--c-bg));

  padding: clamp(60px, 8vw, 100px) 0;
}

#heating-faq h3 {
  margin: 0 0 32px;
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 900;
  color: var(--c-text);
  text-align: center;
  letter-spacing: -0.02em;
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}

.faq-item,
#heating-faq details {
  background: var(--faq-card-bg);
  border: 1px solid var(--faq-border);
  border-radius: var(--r16);
  padding: 0;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover,
#heating-faq details:hover {
  box-shadow: 0 6px 24px rgba(45, 10, 10, 0.12);
  border-color: rgba(166, 31, 31, 0.2);
}

.faq-item > summary,
#heating-faq details > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 18px 22px;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 18px);
  color: var(--c-text);
  transition: background 0.2s ease, color 0.2s ease;
  outline: none;
}

.faq-item > summary::-webkit-details-marker,
#heating-faq details > summary::-webkit-details-marker {
  display: none;
}

.faq-item > summary::after,
#heating-faq details > summary::after {
  content: "";
  margin-left: auto;
  inline-size: 10px;
  block-size: 10px;
  border-right: 2px solid var(--c-text-weak);
  border-bottom: 2px solid var(--c-text-weak);
  transform: rotate(-45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.faq-item > summary:hover,
#heating-faq details > summary:hover {
  background: color-mix(in oklab, var(--c-text) 4%, var(--c-bg));
}

.faq-item[open] > summary,
#heating-faq details[open] > summary {
  background: var(--faq-open-bg);
  color: var(--faq-accent);
}

.faq-item[open] > summary::after,
#heating-faq details[open] > summary::after {
  transform: rotate(45deg);
  border-color: var(--faq-accent);
}

.answer,
#heating-faq details > div {
  border-top: 1px solid var(--faq-border);
  padding: 16px 22px 20px;
  color: var(--c-text-weak);
  line-height: 1.7;
  font-size: clamp(15px, 1.8vw, 16px);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, opacity 0.2s ease;
}

.faq-item[open] .answer,
#heating-faq details[open] > div {
  max-height: 500px;
  opacity: 1;
}

/* =================
   Footer
   ================= */
.site-footer {
  background: #aa222d;
  color: #f9eaea;
  position: relative;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: inherit;
  z-index: -1;
  pointer-events: none;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 48px 0 36px;
}

.footer-brand .brand-logo {
  margin-bottom: 12px;
}

.footer-brand .brand-blurb {
  margin: 8px 0 16px;
  color: #f5d6d6;
  line-height: 1.6;
}

.contact-list {
  display: grid;
  gap: 8px;
  padding-inline-start: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f9eaea;
  opacity: 0.92;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 9999px;
  background: transparent;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.footer-col {
  position: relative;
}

.footer-col h4 {
  margin: 0 0 12px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding-top: clamp(12px, 2vw, 18px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col a {
  color: #f7dcdc;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col:not(:first-of-type)::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.08)
  );
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0 14px;
  color: #f5cfcf;
  font-size: 14px;
}

.footer-bottom .madeby {
  opacity: 0.9;
}

.footer-bottom .madeby a {
  color: inherit;
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.footer-bottom .madeby a:hover {
  text-decoration: underline;
}

.tel-link {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   Mobile nav (hamburger + drawer)
   ============================================ */
#menu_checkbox {
  display: none;
}

.hamburger-btn {
  position: fixed;
  top: 14px;
  right: 16px;
  width: 46px;
  height: 46px;
  display: none;
  z-index: 1100;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(77, 17, 17, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) inset;
  padding: 12px;
  box-sizing: border-box;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

.hamburger-btn span + span {
  margin-top: 6px;
}

#menu_checkbox:checked + .hamburger-btn span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

#menu_checkbox:checked + .hamburger-btn span:nth-child(2) {
  opacity: 0;
}

#menu_checkbox:checked + .hamburger-btn span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.menu-mobile {
  --drawer-w: min(82vw, 420px);
  --t: 0.42s;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--drawer-w);
  padding: clamp(12px, 3vw, 20px);
  padding-top: calc(72px + 16px);
  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(170, 34, 45, 0.95),
    rgba(170, 34, 45, 0.92)
  );
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  box-shadow: 12px 0 30px rgba(0, 0, 0, 0.28);
  transform: translateX(-105%);
  transition: transform var(--t) cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1050;
  overflow-y: auto;
}

.menu-mobile::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: var(--drawer-w);
  background: rgba(170, 34, 45, 0.4);
  opacity: 0;
  transition: opacity var(--t) ease;
  pointer-events: none;
  z-index: -1;
}

#menu_checkbox:checked ~ .menu-mobile {
  transform: translateX(0);
  --t: 0.68s;
}

#menu_checkbox:checked ~ .menu-mobile::before {
  opacity: 1;
}

.mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.menu-mobile a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.mobile-group details {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.mobile-group summary {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 800;
  color: #fff;
  list-style: none;
  position: relative;
}

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

.mobile-group summary::after {
  content: "›";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-size: 20px;
  line-height: 1;
  opacity: 0.85;
}

.mobile-group details[open] summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.mobile-group details ul {
  list-style: none;
  margin: 0;
  padding: 6px 8px 12px 10px;
}

.mobile-group details ul a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
  color: #eaf2f9;
}

.mobile-group details ul a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-mobile > .mobile-list > li > a {
  display: block;
  padding: 12px 2px;
  font-size: 18px;
}

/* ==========================
   Responsive
   ========================== */
@media (min-width: 881px) {
  .hamburger-btn,
  .menu-mobile {
    display: none !important;
  }
  .menu-desktop {
    display: block;
  }
}

@media (max-width: 880px) {
  .hamburger-btn {
    display: block;
  }
  .menu-desktop {
    display: none;
  }

  .navigation {
    height: 72px;
    padding: 8px clamp(14px, 4vw, 20px);
  }

  .logo-box {
    width: 180px;
    height: 54px;
  }

  .hero {
    min-height: auto;
    padding: 56px 0 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding-inline: clamp(16px, 6vw, 28px);
  }

  .hero-copy {
    text-align: center;
  }

  .hero-heading,
  .hero-copy h1 {
    text-align: center !important;
    margin: 0 auto clamp(12px, 2vh, 20px);
    max-width: 18ch;
  }

  .hero-copy .lead {
    margin-inline: auto;
    max-width: 62ch;
  }

  .hero-visual {
    width: 100%;
    justify-self: center;
  }

  .unit-img {
    width: min(520px, 90vw);
    margin: 0 auto;
    display: block;
    transform: none;
  }

  .hero-visual::before {
    inset: -10% -8% -14% -8%;
    background: radial-gradient(
      circle at 50% 55%,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0.1) 42%,
      rgba(255, 255, 255, 0) 70%
    );
  }

  .btn-primary {
    margin-left: auto;
    margin-right: auto;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 36px 0 24px;
  }

  .footer-col:not(:first-of-type)::before {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.social-link {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.social-link:hover {
  text-decoration: underline;
}
