@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Italic-VariableFont_opsz,wght.ttf")
    format("truetype");
  font-weight: 100 1000;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Italic-VariableFont_opsz,wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --color-bg: #fcf5ee;
  --color-primary: #850e35;
  --color-accent: #ffb33f;
  --color-hover: #f77f00;
  --color-ink: #111827;
  --color-soft: #5f6673;
  --color-footer: #0b1220;
  --color-white: #ffffff;
  --border-soft: rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 20px 60px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 28px 80px rgba(15, 23, 42, 0.14);
  --radius-card: 24px;
  --radius-pill: 999px;
  --container: min(1280px, calc(100vw - 64px));
  --font-heading: "DM Sans", sans-serif;
  --font-body: "Inter", sans-serif;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;
  --text-hero: 50px;

  --text-section-title: 50px;
  --text-card-title: clamp(1.5rem, 2vw, 2rem);
  --text-body: 1rem;
  --text-body-large: clamp(1.05rem, 1.2vw, 1.25rem);
  --text-small: 0.88rem;
  --text-eyebrow: 0.78rem;
  --leading-heading: 1.05;
  --leading-title: 1.15;
  --leading-body: 1.7;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--weight-regular);
  line-height: var(--leading-body);
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  line-height: var(--leading-heading);
  letter-spacing: 0;
}

h1 {
  font-size: var(--text-hero);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
}

h2 {
  font-size: var(--text-section-title);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-title);
}

h3 {
  font-size: var(--text-card-title);
  font-weight: var(--weight-medium);
  line-height: var(--leading-title);
}

p {
  margin: 0;
  color: var(--color-soft);
}

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

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

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.narrow {
  max-width: 840px;
}

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

.skip-link:focus {
  z-index: 1000;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: var(--color-white);
  border-radius: 12px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 240ms ease,
    background 240ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.nav-shell {
  display: grid;
  min-height: 92px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--color-ink);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
}

.custom-logo-link {
  display: flex;
  align-items: center;
  height: 88px;
  overflow: visible;
}

.brand-logo,
.custom-logo-link img {
  display: block;
  height: 76px;
  max-height: 76px;
  width: auto;
  max-width: none;
  object-fit: contain;
  transform: scale(1.95);
  transform-origin: left center;
}

.brand-mark {
  display: none;
}

.primary-nav {
  justify-self: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-ink);
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: transparent;
  border-radius: 999px;
  transition:
    background 240ms ease,
    transform 240ms ease;
}

.nav-links a:hover,
.nav-links .current-menu-item > a,
.nav-dropdown-toggle:hover,
.nav-dropdown.is-open > .nav-dropdown-toggle {
  color: var(--color-hover);
}

.nav-links .current-menu-item > a::after {
  background: var(--color-primary);
}

.nav-links a:hover::after,
.nav-dropdown-toggle:hover::after {
  background: rgba(247, 127, 0, 0.35);
}

.nav-links .current-menu-item > a {
  color: var(--color-primary);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 180ms ease;
}

.nav-dropdown.is-open > .nav-dropdown-toggle svg,
.nav-dropdown:hover > .nav-dropdown-toggle svg,
.nav-dropdown:focus-within > .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.search-toggle {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.search-toggle:hover {
  color: var(--color-hover);
  background: rgba(255, 255, 255, 1);
  transform: translateY(-1px);
}

.header-emergency {
  display: grid;
  gap: 4px;
  text-align: right;
}

.header-emergency span {
  color: var(--color-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.emergency-phone {
  color: var(--color-ink);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
}

.emergency-phone:hover {
  color: var(--color-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: rgba(17, 24, 39, 0.24);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.search-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.search-panel {
  width: min(680px, calc(100vw - 48px));
  padding: 32px 32px 28px;
  background: var(--color-white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.12);
  position: relative;
}

.search-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--color-ink);
  background: rgba(247, 127, 0, 0.08);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.search-close:hover {
  background: rgba(247, 127, 0, 0.16);
  transform: translateY(-1px);
}

.search-form {
  display: grid;
  gap: 18px;
}

.search-input {
  width: 100%;
  min-height: 56px;
  padding: 18px 20px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--color-ink);
}

.search-input::placeholder {
  color: rgba(95, 102, 115, 0.72);
}

.search-submit {
  width: fit-content;
  padding: 16px 30px;
}

.sub-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 250px;
  gap: 4px;
  padding: 14px;
  margin: 0;
  list-style: none;
  background: var(--color-white);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.sub-menu::before {
  position: absolute;
  top: -18px;
  right: 0;
  left: 0;
  height: 18px;
  content: "";
}

.nav-dropdown:hover .sub-menu,
.nav-dropdown:focus-within .sub-menu,
.nav-dropdown.is-open .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.sub-menu a {
  display: flex;
  padding: 12px 14px;
  border-radius: 14px;
  white-space: nowrap;
}

.sub-menu a:hover {
  color: var(--color-white);
  background: var(--color-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.search-toggle {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.search-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.search-toggle:hover {
  color: var(--color-hover);
  background: rgba(255, 255, 255, 1);
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
}

.menu-toggle {
  display: none;
  padding: 12px;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.nav-service-note {
  display: grid;
  gap: 2px;
  min-width: 136px;
}

.nav-service-note span {
  color: var(--color-soft);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-service-note a {
  color: var(--color-primary);
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 16px 30px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.btn-primary {
  color: var(--color-white);
  background: var(--color-primary);
  box-shadow: 0 18px 42px rgba(133, 14, 53, 0.22);
}

.btn-primary:hover {
  background: var(--color-hover);
}

.btn-glass,
.btn-outline-light {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(10px);
}

.btn-glass svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.btn-light {
  color: var(--color-primary);
  background: var(--color-white);
}

.btn-light:hover,
.btn-outline-light:hover {
  color: var(--color-white);
  background: var(--color-hover);
  border-color: var(--color-hover);
}

.menu-toggle {
  display: none;
  padding: 12px;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  top: 92px;
  right: 20px;
  width: min(390px, calc(100vw - 40px));
  padding: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-hover);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateX(110%);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.mobile-panel.is-open {
  opacity: 1;
  transform: translateX(0);
}

.mobile-panel nav {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.mobile-panel a,
.mobile-submenu-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  color: var(--color-ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}

.mobile-panel .btn-primary {
  color: var(--color-white);
}

.mobile-submenu-toggle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 180ms ease;
}

.mobile-submenu-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.mobile-submenu-panel {
  display: grid;
  max-height: 0;
  gap: 12px;
  overflow: hidden;
  padding: 0 0 0 14px;
  margin-top: 0;
  border-left: 2px solid rgba(133, 14, 53, 0.14);
  opacity: 0;
  transition:
    max-height 220ms ease,
    opacity 180ms ease,
    margin-top 180ms ease;
}

.mobile-submenu-panel.is-open {
  max-height: 360px;
  margin-top: 16px;
  opacity: 1;
}

.mobile-submenu-panel a {
  color: var(--color-soft);
}

.mobile-submenu-panel a:hover {
  color: var(--color-primary);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  max-height: 920px;
  overflow: hidden;
  background: var(--color-footer);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  height: 100%;
  padding-top: 92px;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--color-footer);
  opacity: 0;
  transition: opacity 780ms ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 15, 28, 0.88),
    rgba(10, 15, 28, 0.52),
    rgba(10, 15, 28, 0.08)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 720px;
  color: var(--color-white);
  opacity: 0;
  transform: translateY(16px);
}

.hero-slide.is-active .hero-copy {
  animation: heroFadeUp 680ms ease forwards;
}

.hero-copy h1 {
  margin-bottom: 22px;
  color: var(--color-white);
}

.hero-subtitle {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Inter", sans-serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  text-transform: none;
}

p.hero-subtitle {
  color: rgba(255, 255, 255, 0.86);
}

.hero-supporting-headings {
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin-bottom: 28px;
}

.hero-supporting-headings h2 {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.05vw, 1.16rem);
  font-weight: var(--weight-semibold);
  line-height: 1.55;
  text-transform: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 34px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 16px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
  font-weight: 700;
}

.trust-badges i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: 50%;
  font-style: normal;
}

.hero-controls {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 42px;
  display: grid;
  gap: 14px;
  transform: translateY(-50%);
}

.hero-arrow,
.testimonial-controls button {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-pill);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.hero-arrow:hover,
.testimonial-controls button:hover {
  background: var(--color-hover);
  transform: translateY(-2px);
}

.hero-dots {
  position: absolute;
  z-index: 4;
  bottom: 54px;
  left: max(32px, calc((100vw - 1280px) / 2 + 32px));
  display: flex;
  gap: 12px;
}

.hero-dots button,
.testimonial-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease;
}

.hero-dots button.is-active,
.testimonial-dots button.is-active {
  width: 28px;
  background: var(--color-accent);
  border-radius: var(--radius-pill);
}

.section {
  padding: 110px 0;
}

.section h2 {
  font-family: var(--font-heading);
  font-size: var(--text-section-title);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-title);
}

.section p {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--weight-regular);
  line-height: var(--leading-body);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 56px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading .eyebrow,
.eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: var(--text-eyebrow);
  font-weight: var(--weight-extrabold);
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.center-cta .eyebrow {
  color: var(--color-accent);
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: var(--text-section-title);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-title);
  margin-bottom: 20px;
}

.section-heading p {
  max-width: 680px;
  margin-inline: auto;
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--weight-regular);
  line-height: var(--leading-body);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.service-card,
.testimonial-card,
.process-card,
.blog-card {
  height: 100%;
  background: var(--color-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.service-card:hover,
.process-card:hover,
.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 40px;
  scroll-margin-top: 120px;
}

.icon-box,
.process-icon,
.why-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  color: var(--color-primary);
  background: rgba(133, 14, 53, 0.08);
  border-radius: 20px;
  transition:
    transform 220ms ease,
    color 220ms ease,
    background 220ms ease;
}

.service-card:hover .icon-box {
  color: var(--color-white);
  background: var(--color-primary);
  transform: scale(1.06);
}

.icon-box svg,
.process-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.icon-box {
  margin-bottom: 24px;
}

.card-kicker,
.process-kicker,
.category-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3,
.process-card h3,
.blog-card h3 {
  margin-bottom: 14px;
}

.service-card p,
.process-card p,
.blog-card p {
  margin-bottom: 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--color-primary);
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover {
  color: var(--color-hover);
}

.text-link:hover span {
  transform: translateX(4px);
}

.why-section {
  background: linear-gradient(180deg, #fffaf4, var(--color-bg));
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: 72px;
  align-items: center;
}

.why-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 18px;
}

.why-list {
  display: grid;
  gap: 22px;
  margin-top: 42px;
}

.why-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 22px;
  align-items: center;
}

.why-icon {
  width: 44px;
  height: 44px;
  color: var(--color-primary);
  background: rgba(133, 14, 53, 0.1);
  border: 1px solid rgba(133, 14, 53, 0.12);
  border-radius: 50%;
}

.why-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.why-item strong {
  display: block;
  margin-bottom: 6px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.why-visual {
  position: relative;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

.why-visual::before {
  position: absolute;
  inset: auto -24px -24px auto;
  width: 58%;
  height: 56%;
  content: "";
  background: rgba(255, 179, 63, 0.24);
  border-radius: 32px;
}

.why-visual img {
  position: relative;
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.floating-card {
  position: absolute;
  right: 0;
  bottom: 56px;
  display: grid;
  gap: 10px;
  min-width: 220px;
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-hover);
}

.floating-card a {
  color: var(--color-primary);
  font-weight: 800;
}

.areas-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: 48px;
  align-items: center;
  padding: 56px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.86),
    rgba(255, 179, 63, 0.18)
  );
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 36px;
  box-shadow: var(--shadow-soft);
}

.areas-copy h2 {
  margin-bottom: 20px;
}

.areas-copy p {
  margin-bottom: 32px;
}

.areas-copy p a {
  color: var(--color-primary);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition:
    color 180ms ease,
    text-decoration-thickness 180ms ease;
}

.areas-copy p a:hover {
  color: var(--color-hover);
  text-decoration-thickness: 2px;
}

.service-area-visit-btn:hover,
.service-area-visit-btn:focus-visible {
  color: var(--color-white);
  text-decoration: none;
}

.area-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding: 22px;
  background: var(--color-primary);
  border-radius: var(--radius-card);
  color: var(--color-white);
  box-shadow: 0 22px 50px rgba(133, 14, 53, 0.2);
}

.pin-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.pin-icon .location-ui-icon {
  display: block;
  width: 20px;
  height: 20px;
  background: currentColor;
  mask: var(--location-icon) center / contain no-repeat;
  -webkit-mask: var(--location-icon) center / contain no-repeat;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.area-chips > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 16px;
  background: var(--color-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  font-weight: 800;
}

.area-chips svg {
  width: 16px;
  height: 16px;
  fill: var(--color-primary);
}

.chip-icon {
  display: inline-grid;
  width: 16px;
  height: 16px;
  place-items: center;
  color: var(--color-accent);
}

.chip-icon .location-ui-icon {
  display: block;
  width: 14px;
  height: 14px;
  background: currentColor;
  mask: var(--location-icon) center / contain no-repeat;
  -webkit-mask: var(--location-icon) center / contain no-repeat;
}

.testimonials-section {
  background: #fffaf4;
}

.testimonial-carousel {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 420ms ease;
}

.testimonial-card {
  flex: 0 0 calc((100% - 60px) / 3);
  padding: 40px;
}

.stars {
  margin-bottom: 22px;
  color: var(--color-accent);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}

.testimonial-card p {
  margin-bottom: 26px;
  color: var(--color-ink);
  font-size: 1.08rem;
}

.testimonial-card strong {
  color: var(--color-primary);
  font-weight: 800;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 38px;
}

.testimonial-controls button {
  color: var(--color-primary);
  background: var(--color-white);
  border-color: var(--border-soft);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.testimonial-controls button:hover {
  color: var(--color-white);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-dots button {
  background: rgba(133, 14, 53, 0.24);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.process-grid::before {
  position: absolute;
  top: 44px;
  left: 12%;
  right: 12%;
  height: 0;
  content: "";
  border-top: 0.5px dotted rgba(133, 14, 53, 0.18);
  background: none;
}

.process-card {
  position: relative;
  z-index: 1;
  padding: 36px;
}

.step-number {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin-bottom: 20px;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(133, 14, 53, 0.22);
  font-weight: 900;
}

.process-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
}

.center-cta {
  padding: 72px 48px;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  text-align: center;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-primary), #4f1029);
  border-radius: 36px;
  box-shadow: 0 30px 80px rgba(133, 14, 53, 0.24);
}

.center-cta h2 {
  max-width: 760px;
  margin-inline: auto;
  color: var(--color-white);
}

.center-cta p:not(.eyebrow) {
  max-width: 640px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.82);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.blog-section .section-heading.center {
  margin-inline: auto;
  max-width: 740px;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: stretch;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--color-white);
  border: 1px solid var(--border-soft);
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    transform 280ms ease,
    box-shadow 280ms ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.blog-card-featured {
  grid-row: span 2;
}

.blog-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
}

.blog-card-featured .blog-image {
  aspect-ratio: 5 / 3;
  border-radius: 28px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 380ms ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 18px;
  padding: 32px;
}

.category-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  color: var(--color-primary);
  background: rgba(255, 179, 63, 0.16);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-title {
  margin: 0;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  line-height: 1.15;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-excerpt {
  margin: 0;
  color: var(--color-soft);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.read-more {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: auto;
  color: var(--color-primary);
  font-weight: 800;
  text-decoration: none;
}

.read-more:hover {
  color: var(--color-hover);
}

/* Premium Hamburger Menu Button Start*/

.premium-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;
  min-width: 48px;
  padding: 0;

  border: 1px solid rgba(255, 179, 63, 0.55);
  border-radius: 999px;

  color: #fcf5ee;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 179, 63, 0.45),
      transparent 35%
    ),
    linear-gradient(135deg, #850e35 0%, #a81746 52%, #ffb33f 145%);

  box-shadow:
    0 12px 26px rgba(133, 14, 53, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -8px 18px rgba(133, 14, 53, 0.18);

  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.premium-menu-toggle::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

.premium-menu-toggle:hover {
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 179, 63, 0.55),
      transparent 35%
    ),
    linear-gradient(135deg, #f77f00 0%, #850e35 64%, #ffb33f 140%);

  transform: translateY(-2px);
  box-shadow:
    0 16px 36px rgba(133, 14, 53, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -8px 18px rgba(133, 14, 53, 0.2);
}

.premium-menu-toggle .menu-icon {
  width: 22px;
  height: 22px;
  display: block;
  position: relative;
  z-index: 2;
  filter: brightness(0) invert(1);
  transition:
    opacity 0.2s ease,
    transform 0.25s ease;
}

.premium-menu-toggle .menu-icon-close {
  display: none;
}

/* Hide any old hamburger spans if theme CSS still affects it */
.premium-menu-toggle span:not(.screen-reader-text) {
  display: none;
}

/* When menu is open */
.premium-menu-toggle[aria-expanded="true"] .menu-icon-open {
  display: none;
}

.premium-menu-toggle[aria-expanded="true"] .menu-icon-close {
  display: block;
  transform: rotate(90deg);
}
/* ================================
   Premium Mobile Menu Panel
================================ */

@media (max-width: 1024px) {
  .primary-navigation {
    background:
      radial-gradient(
        circle at top right,
        rgba(255, 179, 63, 0.18),
        transparent 34%
      ),
      #fcf5ee;

    border: 1px solid rgba(133, 14, 53, 0.12);
    border-radius: 24px;

    box-shadow:
      0 24px 60px rgba(133, 14, 53, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.7);

    padding: 16px;
  }

  .primary-navigation ul {
    gap: 6px;
  }

  .primary-navigation a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 14px 16px;
    border-radius: 16px;

    color: #850e35;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-decoration: none;

    background: transparent;
    transition:
      color 0.22s ease,
      background 0.22s ease,
      transform 0.22s ease,
      box-shadow 0.22s ease;
  }

  .primary-navigation a:hover,
  .primary-navigation .current-menu-item > a {
    color: #fcf5ee;
    background:
      radial-gradient(
        circle at top left,
        rgba(255, 179, 63, 0.32),
        transparent 38%
      ),
      linear-gradient(135deg, #850e35 0%, #f77f00 130%);

    transform: translateX(4px);
    box-shadow: 0 10px 22px rgba(133, 14, 53, 0.16);
  }
}
@media (max-width: 1024px) {
  .primary-navigation {
    width: min(92vw, 360px);
    margin-left: auto;
  }
}
/* Premium Hamburger Menu Button END*/

/* Backup if your JS adds body.menu-open */
body.menu-open .premium-menu-toggle .menu-icon-open {
  display: none;
}

body.menu-open .premium-menu-toggle .menu-icon-close {
  display: block;
}

/* Show hamburger only on tablet/mobile */
@media (max-width: 1024px) {
  .premium-menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .premium-menu-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .premium-menu-toggle .menu-icon {
    width: 20px;
    height: 20px;
  }
}
/* -----header call button start------- */
.header-call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 50px;
  padding: 0 24px;

  color: #fcf5ee;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 179, 63, 0.45),
      transparent 34%
    ),
    linear-gradient(135deg, #850e35 0%, #a81746 52%, #ffb33f 140%);
  border: 1px solid rgba(255, 179, 63, 0.55);
  border-radius: 999px;

  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;

  box-shadow:
    0 14px 30px rgba(133, 14, 53, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -8px 18px rgba(133, 14, 53, 0.18);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.header-call-button:hover {
  color: #fcf5ee;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 179, 63, 0.5),
      transparent 34%
    ),
    linear-gradient(135deg, #f77f00 0%, #850e35 65%, #ffb33f 130%);
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(133, 14, 53, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -8px 18px rgba(133, 14, 53, 0.2);
}

.header-call-icon {
  width: 18px;
  height: 18px;
  display: block;
  filter: brightness(0) invert(1);
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .header-call-button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
    gap: 8px;
  }

  .header-call-icon {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .header-call-button {
    width: 42px;
    min-width: 42px;
    padding: 0;
    border-radius: 50%;
  }

  .header-call-button span {
    display: none;
  }

  .header-call-icon {
    width: 17px;
    height: 17px;
  }
}

/* ----header call button end------- */

@media (max-width: 1200px) {
  .blog-layout {
    grid-template-columns: 1fr 0.95fr;
  }
}

@media (max-width: 1024px) {
  .custom-logo-link {
    height: 80px;
  }

  .brand-logo,
  .custom-logo-link img {
    height: 64px;
    max-height: 64px;
    transform: scale(2.5);
  }
}

@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-card-stack {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .blog-card-featured {
    grid-row: auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .custom-logo-link {
    height: 72px;
  }

  .brand-logo,
  .custom-logo-link img {
    height: 54px;
    max-height: 54px;
    transform: scale(2.65);
  }
}

@media (max-width: 768px) {
  .blog-layout {
    gap: 24px;
  }

  .blog-card {
    border-radius: 28px;
  }

  .blog-content {
    padding: 28px;
  }

  .blog-image {
    aspect-ratio: 4 / 3;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background:
    radial-gradient(circle at 92% 6%, rgba(133, 14, 53, 0.08), transparent 20%),
    radial-gradient(
      circle at 15% 8%,
      rgba(255, 179, 63, 0.14),
      transparent 18%
    ),
    #fcf5ee;
  color: var(--color-ink);
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 1fr);
  gap: 48px;
  margin-bottom: 64px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(133, 14, 53, 0.08);
}

.footer-hero-copy {
  display: grid;
  gap: 24px;
}

.footer-eyebrow {
  margin: 0;
  color: var(--color-primary);
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-hero-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--text-section-title);
  line-height: var(--leading-title);
  color: var(--color-ink);
}

.footer-hero-copy p {
  margin: 0;
  max-width: 40rem;
  color: rgba(17, 24, 39, 0.78);
  line-height: 1.75;
}

.footer-hero-cta {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-cta-subtitle {
  margin: 0;
  color: var(--color-primary);
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-cta-link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 22px 24px;
  color: var(--color-ink);
  background: #ffffff;
  border: 1px solid rgba(133, 14, 53, 0.12);
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  text-decoration: none;
  transition:
    transform 230ms ease,
    box-shadow 230ms ease,
    border-color 230ms ease;
}

.footer-cta-link:hover {
  transform: translateY(-1px);
  border-color: rgba(133, 14, 53, 0.18);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}

.footer-cta-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 179, 63, 0.16);
  color: var(--color-primary);
}

.footer-cta-icon svg {
  width: 24px;
  height: 24px;
}

.footer-cta-copy {
  display: grid;
  gap: 8px;
}

.footer-cta-link strong {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.footer-cta-copy span {
  color: rgba(17, 24, 39, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.95fr 0.95fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.footer-brand-column,
.footer-nav,
.footer-map-column {
  display: grid;
  gap: 18px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--color-primary);
  font-family: "DM Sans", sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.footer-brand img {
  width: 170px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transform: scale(2);
}
@media (max-width: 768px) {
  .footer-brand {
    margin-bottom: 14px;
    transform: scale(3.15);
  }

  .footer-brand img {
    width: 145px;
    transform: scale(2.15);
  }
}

.footer-brand-column p {
  margin: 0;
  max-width: 28rem;
  color: rgba(17, 24, 39, 0.78);
  line-height: 1.75;
}

.footer-title {
  display: block;
  margin: 0 0 18px;
  color: var(--color-ink);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 14px;
}

.footer-nav a,
.footer-contact a,
.footer-contact span:not(.footer-title) {
  color: rgba(17, 24, 39, 0.72);
  font-size: 0.98rem;
  text-decoration: none;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--color-primary);
  transform: translateX(2px);
}

.footer-nav a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 240ms ease;
}

.footer-nav a:hover::after {
  width: 100%;
}

.footer-contact span:not(.footer-title) {
  display: block;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.social-links a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--color-primary);
  background: rgba(133, 14, 53, 0.08);
  border-radius: 18px;
  text-decoration: none;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(133, 14, 53, 0.12);
  background: rgba(255, 179, 63, 0.16);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-map-shell {
  display: grid;
  gap: 20px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(133, 14, 53, 0.08);
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.08);
}

.footer-map-embed {
  width: 100%;
  min-height: 320px;
  aspect-ratio: 16 / 10;
  border: 0;
  display: block;
}

.footer-map-card {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.footer-map-eyebrow {
  margin: 0;
  color: var(--color-primary);
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-map-card p {
  margin: 0;
  color: rgba(17, 24, 39, 0.72);
  line-height: 1.8;
}

.footer-map-card a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    color 220ms ease,
    border-color 220ms ease;
}

.footer-map-card a:hover {
  color: var(--color-hover);
  border-color: var(--color-accent);
}

.footer-bottom {
  padding-top: 48px;
  margin-top: 72px;
  border-top: 1px solid rgba(133, 14, 53, 0.12);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(17, 24, 39, 0.64);
  font-size: 0.95rem;
}

.mobile-call-bar {
  position: fixed;
  z-index: 110;
  right: 20px;
  bottom: 16px;
  left: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 18px;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: var(--radius-pill);
  box-shadow: 0 18px 44px rgba(133, 14, 53, 0.32);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.mobile-call-bar span,
.mobile-call-bar strong {
  color: var(--color-white);
}

.mobile-call-bar.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

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

.content-stack {
  display: grid;
  gap: 22px;
}

.content-card {
  padding: 36px;
  background: var(--color-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.page-section {
  padding-top: 160px;
}

.center {
  text-align: center;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  :root {
    --container: min(100vw - 56px, 1200px);
  }

  .nav-shell {
    gap: 20px;
  }

  .nav-links {
    gap: 20px;
  }

  .brand-logo,
  .custom-logo-link img {
    width: auto;
    height: 52px;
    max-height: 52px;
    max-width: 160px;
    object-fit: contain;
  }

  .nav-service-note {
    display: none;
  }

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

@media (max-width: 1024px) {
  .section {
    padding: 88px 0;
  }

  .primary-nav {
    display: none;
  }

  .nav-shell {
    min-height: 76px;
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .hero {
    height: 82vh;
    min-height: 640px;
  }

  .why-layout,
  .areas-panel {
    grid-template-columns: 1fr;
  }

  .why-visual img {
    height: 460px;
  }

  .testimonial-card {
    flex-basis: calc((100% - 30px) / 2);
  }

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

  .process-grid::before {
    display: none;
  }

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

@media (max-width: 768px) {
  :root {
    --container: min(100vw - 40px, 1200px);
    --text-body-large: 1rem;
  }

  .brand-logo,
  .custom-logo-link img {
    width: auto;
    height: 44px;
    max-height: 44px;
    max-width: 140px;
    object-fit: contain;
  }
  .section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .brand span:last-child {
    max-width: 190px;
  }

  .hero {
    height: 100svh;
    min-height: 680px;
  }

  .hero-slide {
    padding-top: 76px;
    background-position: center top;
    background-size: cover;
  }
  .hero-subtitle {
    margin-bottom: 30px;
  }

  .hero-controls {
    right: 20px;
    top: auto;
    bottom: 42px;
    display: flex;
    transform: none;
  }

  .hero-dots {
    bottom: 54px;
    left: 20px;
  }

  .trust-badges {
    gap: 12px;
  }

  .trust-badges span {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 0.88rem;
  }

  .service-grid,
  .process-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-card,
  .testimonial-card,
  .process-card {
    padding: 28px;
  }

  .why-layout {
    gap: 42px;
  }

  .why-item {
    grid-template-columns: 42px 1fr;
    gap: 18px;
  }

  .icon-box {
    width: 58px;
    height: 58px;
  }

  .why-icon {
    width: 42px;
    height: 42px;
  }

  .why-visual {
    padding: 16px;
  }

  .why-visual img {
    height: 360px;
  }

  .floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -60px 16px 0;
  }

  .areas-panel {
    padding: 32px;
    border-radius: 28px;
  }

  .testimonial-card {
    flex-basis: 100%;
  }

  .center-cta {
    padding: 48px 24px;
    border-radius: 28px;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .blog-image {
    height: 210px;
  }

  .blog-content {
    min-height: auto;
    padding: 28px;
  }

  .map-placeholder {
    height: 310px;
  }

  .mobile-call-bar {
    display: flex;
  }

  .site-footer {
    padding-bottom: 96px;
  }
}

@media (max-width: 480px) {
  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .mobile-panel {
    top: 84px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .area-chips {
    gap: 12px;
  }

  .area-chips > span {
    width: 100%;
  }
}

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

/* ================================
   Hero Premium Call Button START
================================ */

.premium-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 54px;
  padding: 16px 28px;

  color: #fcf5ee;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.06)
  );
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;

  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12);

  position: relative;
  overflow: hidden;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.premium-call-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at top left,
    rgba(255, 179, 63, 0.34),
    transparent 38%
  );
  pointer-events: none;
}

.premium-call-btn:hover {
  color: #fcf5ee;
  background: linear-gradient(
    135deg,
    rgba(133, 14, 53, 0.42),
    rgba(247, 127, 0, 0.22)
  );
  border-color: rgba(255, 179, 63, 0.68);

  transform: translateY(-2px);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 179, 63, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.premium-call-btn span,
.premium-call-icon {
  position: relative;
  z-index: 1;
}

.premium-call-icon {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
}

.hero-call-btn {
  border-color: rgba(255, 255, 255, 0.46);
}

/* Mobile */
@media (max-width: 768px) {
  .premium-call-btn {
    min-height: 48px;
    padding: 14px 20px;
    font-size: 14px;
    gap: 8px;
  }

  .premium-call-icon {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .hero-actions .premium-call-btn {
    width: 100%;
  }
}

/* Emergency Response glass call button */
.emergency-call-btn {
  border-color: rgba(255, 255, 255, 0.48);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.24),
    rgba(255, 255, 255, 0.08)
  );
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 179, 63, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.emergency-call-btn::before {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0.08)
    ),
    radial-gradient(
      circle at top left,
      rgba(255, 179, 63, 0.28),
      transparent 42%
    );
}

.emergency-call-btn:hover {
  border-color: rgba(255, 179, 63, 0.72);
  background: linear-gradient(
    135deg,
    rgba(247, 127, 0, 0.34),
    rgba(133, 14, 53, 0.42)
  );
}

/* Final CTA glass call button */
.final-call-btn {
  border-color: rgba(255, 255, 255, 0.48);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.24),
    rgba(255, 255, 255, 0.08)
  );
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 179, 63, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.final-call-btn::before {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0.08)
    ),
    radial-gradient(
      circle at top left,
      rgba(255, 179, 63, 0.28),
      transparent 42%
    );
}

.final-call-btn:hover {
  border-color: rgba(255, 179, 63, 0.72);
  background: linear-gradient(
    135deg,
    rgba(247, 127, 0, 0.34),
    rgba(133, 14, 53, 0.42)
  );
}

/* ================================
   Hero Premium Call Button END
   
================================ */

/* Premium section expansion */
.trust-bar {
  position: relative;
  z-index: 2;
  padding: 0 0 34px;
  margin-top: -42px;
}

.trust-bar-inner {
  display: grid;
  width: var(--container);
  max-width: 1280px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(18px);
}

.trust-item {
  display: flex;
  min-height: 66px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(252, 245, 238, 0.6);
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 20px;
}

.trust-item span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--color-primary);
  background: rgba(133, 14, 53, 0.08);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(133, 14, 53, 0.1);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.trust-item strong {
  font-family: "DM Sans", sans-serif;
  font-size: 0.98rem;
}

.emergency-section {
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 179, 63, 0.2),
      transparent 28rem
    ),
    linear-gradient(180deg, #fffaf4, #f7eadf);
}

.emergency-card {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 72px 48px;
  margin-inline: auto;
  overflow: hidden;
  text-align: center;
  color: var(--color-white);
  background: linear-gradient(135deg, #2a121b, var(--color-primary));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 38px;
  box-shadow: 0 34px 90px rgba(133, 14, 53, 0.28);
}

.emergency-card::before,
.emergency-card::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.emergency-card::before {
  top: -110px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: rgba(255, 179, 63, 0.2);
}

.emergency-card::after {
  bottom: -140px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
}

.emergency-card > * {
  position: relative;
  z-index: 1;
}

.emergency-card h2,
.emergency-card p:not(.eyebrow) {
  max-width: 720px;
  margin-inline: auto;
  color: var(--color-white);
}

.emergency-card p:not(.eyebrow) {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--weight-regular);
  line-height: var(--leading-body);
}

.emergency-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(255, 179, 63, 0.24);
}

.emergency-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.local-authority-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent 55%),
    var(--color-bg);
}

.local-authority-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.local-map-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(rgba(10, 15, 28, 0.16), rgba(10, 15, 28, 0.08)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 179, 63, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 36px;
  box-shadow: var(--shadow-soft);
}

.map-grid {
  position: absolute;
  inset: 42px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.map-grid span {
  min-height: 170px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
}

.local-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  color: var(--color-white);
  background: var(--color-primary);
  border: 10px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  box-shadow: 0 24px 60px rgba(133, 14, 53, 0.28);
  transform: translate(-50%, -50%);
}

.local-pin svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.local-copy h2,
.equipment-copy h2,
.tree-health-heading h2 {
  margin-bottom: 22px;
}

.authority-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.authority-stats div {
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.authority-stats strong,
.authority-stats span {
  display: block;
}

.authority-stats strong {
  color: var(--color-primary);
  font-family: "DM Sans", sans-serif;
  font-size: 1.3rem;
}

.arborists-section {
  background: linear-gradient(180deg, #fffaf4, var(--color-bg));
}

.arborists-section .section-heading {
  max-width: 760px;
}

.arborist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}

.arborist-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.arborist-card:nth-child(2) {
  margin-top: 54px;
}

.arborist-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}

.portrait-placeholder {
  height: 320px;
  margin-bottom: 22px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 24%,
      rgba(255, 179, 63, 0.42),
      transparent 24%
    ),
    linear-gradient(135deg, #314638, #82946a);
  border-radius: 24px;
}

.arborist-card div:last-child {
  padding: 0 10px 12px;
}

.arborist-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--color-primary);
  font-weight: 800;
}

.arborist-card h3 {
  margin-bottom: 12px;
}

.equipment-section .eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  margin-bottom: 16px;

  color: #7b0e32;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;

  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(12px);
}

.equipment-section {
  color: var(--color-white);
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(123, 14, 50, 0.42),
      transparent 28rem
    ),
    radial-gradient(
      circle at 88% 78%,
      rgba(60, 17, 32, 0.55),
      transparent 26rem
    ),
    linear-gradient(135deg, #1f1a2a 0%, #3c1120 52%, #7b0e32 100%);
}

.equipment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.equipment-header {
  max-width: 860px;
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.equipment-header .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.equipment-section h2,
.equipment-section p {
  color: var(--color-white);
}

.equipment-section p {
  color: rgba(255, 255, 255, 0.7);
}

.equipment-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.equipment-copy p {
  line-height: 1.7;
}

.equipment-copy p + p {
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .equipment-layout {
    grid-template-columns: 1fr;
  }

  .equipment-image img {
    min-height: 320px;
  }
}

@media (max-width: 600px) {
  .equipment-image img {
    min-height: 260px;
  }
}

.portfolio-section {
  background: var(--color-bg);
}

.portfolio-header {
  max-width: 760px;
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.portfolio-header p {
  margin-right: auto;
  margin-left: auto;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.portfolio-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.tree-health-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.62),
      rgba(255, 179, 63, 0.12)
    ),
    var(--color-bg);
}

.tree-health-section::before {
  position: absolute;
  inset: 8%;
  border-radius: 40px;
  background: radial-gradient(
    circle at top left,
    rgba(80, 120, 70, 0.16),
    transparent 55%
  );
  content: "";
  pointer-events: none;
}

.tree-health-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.tree-health-heading {
  position: sticky;
  top: 110px;
}

.tree-health-heading h2 {
  max-width: 620px;
}

.tree-health-content {
  padding: clamp(1.5rem, 3vw, 3rem);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 30px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(10px);
}

.tree-health-content p {
  margin: 0;
  line-height: 1.75;
}

.tree-health-content p + p {
  margin-top: 1.15rem;
}

@media (max-width: 992px) {
  .tree-health-layout {
    grid-template-columns: 1fr;
  }

  .tree-health-heading {
    position: static;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .tree-health-heading h2 {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .tree-health-content {
    padding: 1.25rem;
    border-radius: 22px;
  }

  .tree-health-heading {
    text-align: left;
  }
}

.faq-section {
  background: linear-gradient(180deg, #fffaf4, var(--color-bg));
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro h2 {
  margin-bottom: 20px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.06);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
  color: var(--color-ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  text-align: left;
}

.faq-question i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--color-primary);
  background: rgba(133, 14, 53, 0.08);
  border-radius: 50%;
  font-style: normal;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.faq-question[aria-expanded="true"] i {
  color: var(--color-white);
  background: var(--color-primary);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 220ms ease,
    opacity 180ms ease;
}

.faq-answer.is-open {
  max-height: 220px;
  opacity: 1;
}

.faq-answer p {
  padding: 0 26px 26px;
}

.faq-phone {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition:
    color 200ms ease,
    border-color 200ms ease,
    opacity 200ms ease;
}

.faq-phone:hover,
.faq-phone:focus {
  color: var(--color-accent);
  border-color: transparent;
  opacity: 0.9;
}

.google-map-section {
  padding-top: 84px;
  background: var(--color-bg);
}

.google-map-shell {
  position: relative;
}

.google-map-shell .map-placeholder {
  height: 500px;
}

.map-contact-card {
  position: absolute;
  right: 38px;
  bottom: 38px;
  width: min(440px, calc(100% - 76px));
  padding: 32px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  box-shadow: var(--shadow-hover);
  backdrop-filter: blur(16px);
}

.map-contact-card h2 {
  margin-bottom: 16px;
  font-size: var(--text-section-title);
}

.map-contact-card p:not(.eyebrow) {
  margin-bottom: 24px;
}

.footer-map {
  display: none;
}

@media (max-width: 1024px) {
  .trust-bar-inner,
  .local-authority-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

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

  .faq-intro {
    position: static;
  }
}

@media (max-width: 1100px) {
  .portfolio-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .trust-bar {
    padding-bottom: 18px;
    margin-top: -24px;
  }

  .trust-bar-inner,
  .arborist-grid,
  .authority-stats {
    grid-template-columns: 1fr;
  }

  .emergency-card {
    padding: 42px 24px;
    border-radius: 28px;
  }

  .local-map-card {
    min-height: 360px;
  }

  .map-grid {
    inset: 24px;
  }

  .arborist-card:nth-child(2) {
    margin-top: 0;
  }

  .google-map-shell .map-placeholder {
    height: 360px;
  }

  .map-contact-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -72px;
  }
}

/* Final QA and icon system refinement */
.icon-box svg,
.process-icon svg,
.trust-item svg,
.emergency-icon svg,
.why-icon svg {
  overflow: visible;
}

.icon-box svg path,
.process-icon svg path,
.trust-item svg path,
.emergency-icon svg path,
.why-icon svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.area-chips svg path,
.pin-icon svg path,
.local-pin svg path,
.map-pin svg path {
  fill: currentColor;
}

.icon-box,
.process-icon,
.trust-item span,
.emergency-icon,
.why-icon {
  flex: 0 0 auto;
  box-shadow: 0 14px 32px rgba(133, 14, 53, 0.1);
}

.icon-box,
.process-icon {
  border: 1px solid rgba(133, 14, 53, 0.08);
}

.service-card:hover .icon-box,
.process-card:hover .process-icon {
  box-shadow: 0 18px 40px rgba(133, 14, 53, 0.16);
}

.section-heading p,
.local-copy p,
.equipment-copy p,
.tree-health-content p,
.areas-copy p,
.faq-intro p,
.map-contact-card p {
  max-width: 68ch;
}

.service-card,
.process-card,
.blog-card,
.testimonial-card,
.arborist-card,
.portfolio-card,
.faq-item,
.areas-panel,
.center-cta,
.emergency-card,
.google-map-shell .map-placeholder,
.map-contact-card {
  will-change: transform;
}

.service-card,
.process-card,
.blog-card,
.arborist-card,
.portfolio-card,
.area-chips > span,
.trust-item,
.faq-item {
  transition-duration: 220ms;
  transition-timing-function: ease;
}

.hero-slide,
.testimonial-track,
.mobile-panel,
.mobile-submenu-panel,
.faq-answer {
  will-change: opacity, transform;
}

.hero-slide {
  backface-visibility: hidden;
}

.service-card,
.blog-card,
.portfolio-card,
.arborist-card,
.why-visual img,
.blog-image img,
.portfolio-card img,
.map-placeholder {
  contain: paint;
}

.portrait-placeholder,
.blog-image,
.portfolio-card,
.why-visual img,
.local-map-card,
.map-placeholder {
  background-color: #e9ded2;
}

.btn {
  white-space: nowrap;
}

.btn:focus-visible,
.nav-links a:focus-visible,
.nav-dropdown-toggle:focus-visible,
.mobile-panel a:focus-visible,
.faq-question:focus-visible,
.text-link:focus-visible {
  outline: 3px solid rgba(255, 179, 63, 0.72);
  outline-offset: 4px;
}

.trust-item,
.area-chips > span,
.faq-question {
  min-width: 0;
}

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

.site-footer {
  margin-top: -1px;
}

@media (max-width: 1200px) {
  .nav-shell {
    grid-template-columns: minmax(220px, auto) 1fr auto;
  }

  .service-grid {
    gap: 24px;
  }

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

@media (max-width: 1024px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

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

  .local-authority-layout,
  .faq-layout {
    gap: 42px;
  }
}

@media (max-width: 640px) {
  .portfolio-gallery {
    grid-template-columns: 1fr;
  }

  .portfolio-card,
  .portfolio-card img {
    min-height: 240px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15.5px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading,
  .portfolio-header {
    margin-bottom: 38px;
  }

  .trust-bar-inner {
    grid-template-columns: 1fr;
    padding: 12px;
    border-radius: 22px;
  }

  .trust-item {
    min-height: 64px;
  }

  .service-card,
  .process-card,
  .testimonial-card,
  .blog-content {
    padding: 26px;
  }

  .icon-box,
  .process-icon {
    width: 54px;
    height: 54px;
    border-radius: 17px;
  }

  .emergency-icon {
    width: 66px;
    height: 66px;
  }

  .authority-stats div,
  .area-feature,
  .faq-question {
    padding: 20px;
  }

  .faq-answer p {
    padding: 0 20px 22px;
  }

  .blog-image,
  .portrait-placeholder {
    min-height: 0;
  }

  .portrait-placeholder {
    height: 280px;
  }

  .footer-grid {
    gap: 34px;
  }
}

@media (max-width: 480px) {
  :root {
    --container: min(100vw - 32px, 1200px);
  }

  .brand span:last-child {
    max-width: 152px;
    font-size: 0.9rem;
  }

  .mobile-panel {
    right: 16px;
    width: calc(100vw - 32px);
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-dots {
    bottom: 48px;
  }

  .hero-controls {
    bottom: 34px;
  }

  .authority-stats,
  .area-chips,
  .cta-actions,
  .hero-actions {
    width: 100%;
  }

  .btn,
  .area-chips > span {
    width: 100%;
  }

  .center-cta,
  .emergency-card,
  .map-contact-card {
    padding-inline: 22px;
  }

  .google-map-shell .map-placeholder {
    height: 330px;
  }

  .map-contact-card {
    margin-top: -48px;
  }
}

/* Targeted alignment and hierarchy refinements */
.emergency-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.emergency-card .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.emergency-card h2 {
  max-width: 760px;
  margin-top: 4px;
  margin-bottom: 0;
  text-align: center;
}

.emergency-card p:not(.eyebrow) {
  max-width: 660px;
  text-align: center;
}

.emergency-card .cta-actions {
  justify-content: center;
  margin-top: 34px;
}

.arborists-section .section-heading,
.blog-section .section-heading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.arborists-section .section-heading .eyebrow,
.blog-section .section-heading .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.arborists-section .section-heading h2,
.blog-section .section-heading h2 {
  margin-bottom: 22px;
}

.arborists-section .section-heading p,
.blog-section .section-heading p {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
}

.arborist-grid,
.blog-grid {
  margin-top: 8px;
}

.google-map-shell {
  display: grid;
  align-items: stretch;
}

.google-map-shell .map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px;
}

.google-map-shell .map-placeholder strong {
  max-width: 680px;
  text-align: center;
}

.map-contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.map-contact-card .eyebrow {
  margin-bottom: 16px;
}

.map-contact-card h2 {
  margin-bottom: 18px;
}

.map-contact-card p:not(.eyebrow) {
  max-width: 34rem;
  margin-bottom: 28px;
}

@media (max-width: 1024px) {
  .map-contact-card {
    right: 28px;
    bottom: 28px;
  }
}

@media (max-width: 768px) {
  .emergency-card .cta-actions,
  .arborists-section .section-heading,
  .blog-section .section-heading,
  .google-map-shell .map-placeholder strong {
    text-align: center;
  }

  .arborist-grid,
  .blog-grid {
    margin-top: 0;
  }

  .map-contact-card {
    align-items: center;
    text-align: center;
  }

  .map-contact-card .eyebrow {
    margin-right: auto;
    margin-left: auto;
  }
}

/* Footer responsive alignment refinement */
@media (max-width: 1024px) {
  .site-footer {
    padding-top: 96px;
    padding-bottom: 60px;
  }

  .footer-hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 0;
    border-bottom: none;
  }

  .footer-hero-copy,
  .footer-hero-cta {
    text-align: center;
  }

  .footer-cta-link {
    max-width: 520px;
    margin: 0 auto;
  }

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

  .footer-brand-column,
  .footer-nav,
  .footer-map-column {
    text-align: center;
    align-items: center;
  }

  .footer-map-card {
    padding: 22px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding-top: 80px;
    padding-bottom: 72px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-map-card {
    padding: 20px;
  }
}

@media (max-width: 600px) {
  .footer-cta-link {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 14px;
  }

  .footer-cta-icon {
    width: 50px;
    height: 50px;
  }

  .footer-cta-link strong {
    font-size: 1.35rem;
  }

  .footer-bottom {
    margin-top: 50px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding-top: 60px;
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-brand-column p {
    max-width: 100%;
  }

  .footer-nav,
  .footer-contact {
    gap: 12px;
  }
}

/* Specified section refinement pass */
.emergency-card .eyebrow {
  color: var(--color-accent);
  background: rgba(255, 179, 63, 0.12);
  border-color: rgba(255, 179, 63, 0.22);
}

.emergency-card .btn-light {
  box-shadow:
    0 18px 46px rgba(255, 179, 63, 0.22),
    0 0 0 1px rgba(255, 179, 63, 0.12);
}

.emergency-card .btn-light:hover {
  box-shadow:
    0 22px 56px rgba(247, 127, 0, 0.28),
    0 0 0 1px rgba(247, 127, 0, 0.18);
}

.blog-section .section-heading {
  max-width: 800px;
  margin-right: auto;
  margin-bottom: 64px;
  margin-left: auto;
  text-align: center;
}

.blog-section .section-heading .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.blog-section .section-heading p {
  max-width: 620px;
}

.blog-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  grid-template-rows: repeat(2, minmax(230px, auto));
  gap: 28px;
}

.blog-card:first-child {
  grid-row: 1 / span 2;
}

.blog-card:first-child .blog-image {
  height: 330px;
}

.blog-card:not(:first-child) {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
}

.blog-card:not(:first-child) .blog-image {
  height: 100%;
  min-height: 230px;
}

.blog-card:not(:first-child) .blog-content {
  min-height: 230px;
}

.blog-card:nth-child(1),
.blog-card:nth-child(2),
.blog-card:nth-child(3) {
  margin-top: 0;
  transform: none;
}

.blog-card:hover,
.blog-card:nth-child(1):hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}

.google-map-section {
  overflow: hidden;
}

.google-map-shell {
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 34px;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.12);
}

.google-map-shell::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(10, 15, 28, 0.46),
    rgba(10, 15, 28, 0.12),
    transparent 62%
  );
}

.map-embed {
  display: block;
  width: 100%;
  height: 540px;
  border: 0;
}

.map-contact-card {
  z-index: 2;
  left: 38px;
  right: auto;
  bottom: 38px;
  align-items: flex-start;
  max-width: 440px;
  text-align: left;
}

.map-contact-card .eyebrow {
  margin-right: 0;
  margin-left: 0;
}

.map-contact-card p:not(.eyebrow) {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .blog-card:first-child {
    grid-row: auto;
  }

  .blog-card:not(:first-child) {
    grid-template-columns: 0.38fr 0.62fr;
  }

  .map-embed {
    height: 460px;
  }

  .google-map-shell {
    min-height: 460px;
  }
}

@media (max-width: 768px) {
  .emergency-card .cta-actions {
    width: 100%;
  }

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

  .blog-card:not(:first-child) {
    grid-template-columns: 1fr;
  }

  .blog-card:first-child .blog-image,
  .blog-card:not(:first-child) .blog-image {
    height: 220px;
    min-height: 220px;
  }

  .google-map-shell {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .google-map-shell::before {
    background: linear-gradient(
      180deg,
      rgba(10, 15, 28, 0.18),
      transparent 44%
    );
  }

  .map-embed {
    height: 360px;
  }

  .map-contact-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: calc(100% - 32px);
    max-width: none;
    align-items: center;
    margin: -54px auto 16px;
    text-align: center;
  }

  .map-contact-card .eyebrow {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 480px) {
  .map-embed {
    height: 320px;
  }

  .map-contact-card {
    width: calc(100% - 24px);
    margin-top: -42px;
  }
}

/* Requested production fixes */
.nav-actions {
  gap: 18px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-weight: 900;
  white-space: nowrap;
  transition: color 180ms ease;
}

.header-phone:hover {
  color: var(--color-hover);
}

.hero {
  margin-bottom: 18px;
}

.hero-slide,
.hero-slide:nth-child(2),
.hero-slide:nth-child(3) {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-copy {
  padding-bottom: 38px;
}

.trust-badges {
  position: relative;
  z-index: 2;
}

/* Emergency section remains full-width while content stays inside the standard container */
.emergency-section {
  padding: 110px 0;
}

.emergency-section .container {
  width: var(--container);
  max-width: none;
}

.emergency-card {
  width: 100%;
  min-height: auto;
  justify-content: center;
  padding: 72px 48px;
  margin-inline: auto;
  border-right: 0;
  border-left: 0;
  border-radius: 38px;
}

.process-grid::before {
  position: absolute;
  top: 44px;
  left: 12%;
  right: 12%;
  height: 0;
  content: "";
  border-top: 1px dotted rgba(133, 14, 53, 0.32);
  background: none;
}

.process-grid.is-visible::before {
  animation: none;
}

.testimonial-track {
  align-items: stretch;
}

.testimonial-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
}

.testimonial-card p {
  flex: 1;
}

.testimonial-card span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  font-weight: 700;
}

.blog-grid {
  align-items: stretch;
}

.blog-card {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.blog-card:not(:first-child) {
  min-height: 100%;
}

.blog-card:not(:first-child) .blog-content,
.blog-card:first-child .blog-content {
  flex: 1;
}

@keyframes dottedFlow {
  from {
    background-position-x: 0;
  }

  to {
    background-position-x: 18px;
  }
}

@media (max-width: 1024px) {
  .nav-call,
  .nav-service-note {
    display: none;
  }

  .nav-shell {
    justify-content: space-between;
  }

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

  .hero-slide {
    background-position: center top;
  }

  .emergency-card {
    min-height: 480px;
    padding: 88px 28px;
  }

  .testimonial-card {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .nav-actions {
    gap: 12px;
  }

  .header-phone {
    font-size: 0.92rem;
  }

  .hero {
    height: auto;
    min-height: 680px;
    margin-bottom: 0;
  }

  .hero-slide {
    min-height: 680px;
    padding-bottom: 126px;
    background-position: 54% top;
  }

  .hero-copy {
    padding-bottom: 92px;
  }

  .trust-badges {
    margin-top: 30px;
  }

  .trust-bar {
    margin-top: 0;
  }

  .process-grid::before {
    display: none;
  }

  .testimonial-card {
    min-height: 300px;
  }

  .blog-card,
  .blog-card:not(:first-child) {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .header-phone {
    max-width: 124px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-slide {
    min-height: 720px;
    padding-bottom: 148px;
    background-position: center top;
  }

  .hero-copy {
    padding-bottom: 120px;
  }
}

/* Premium refinement layer */
body {
  background:
    radial-gradient(
      circle at 6% 14%,
      rgba(255, 179, 63, 0.16),
      transparent 28rem
    ),
    radial-gradient(
      circle at 92% 36%,
      rgba(133, 14, 53, 0.08),
      transparent 26rem
    ),
    var(--color-bg);
}

.site-main {
  overflow: hidden;
}

.section {
  position: relative;
  isolation: isolate;
}

.section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.section-heading {
  position: relative;
}

.section-heading .eyebrow,
.eyebrow {
  width: fit-content;
  padding: 8px 13px;
  background: rgba(133, 14, 53, 0.07);
  border: 1px solid rgba(133, 14, 53, 0.08);
  border-radius: var(--radius-pill);
}

.section-heading.center .eyebrow,
.center-cta .eyebrow {
  margin-inline: auto;
}

.hero .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.services-section {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.72),
      rgba(255, 179, 63, 0.14)
    ),
    radial-gradient(
      circle at top left,
      rgba(133, 14, 53, 0.12),
      transparent 30%
    ),
    #fcf5ee;
}

.service-grid {
  perspective: 1200px;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 250, 244, 0.9)
  );
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card::after {
  position: absolute;
  top: -72px;
  right: -72px;
  width: 150px;
  height: 150px;
  content: "";
  background: rgba(255, 179, 63, 0.15);
  border-radius: 50%;
  transform: scale(0.82);
  transition:
    transform 260ms ease,
    opacity 260ms ease;
}

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

.service-card:hover::after {
  opacity: 0.95;
  transform: scale(1);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:nth-child(even) {
  margin-top: 28px;
}

.service-card:nth-child(3) {
  margin-top: -10px;
}

.why-section {
  isolation: isolate;
}

.why-section::before {
  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.66),
      rgba(252, 245, 238, 0.3)
    ),
    radial-gradient(
      circle at 15% 70%,
      rgba(133, 14, 53, 0.08),
      transparent 22rem
    );
}

.why-copy {
  position: relative;
}

.why-list {
  padding: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(12px);
}

.why-item {
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 20px;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    background 200ms ease;
}

.why-item:hover {
  background: var(--color-white);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
  transform: translateX(6px);
}

.why-icon {
  box-shadow: 0 10px 22px rgba(133, 14, 53, 0.1);
}

.why-item:hover .why-icon {
  color: var(--color-white);
  background: var(--color-primary);
}

.why-visual {
  transform: rotate(1deg);
}

.why-visual img,
.floating-card {
  transform: rotate(-1deg);
}

.areas-section {
  padding-top: 96px;
}

.areas-panel {
  position: relative;
  overflow: hidden;
}

.areas-panel::before,
.areas-panel::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.areas-panel::before {
  top: -110px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: rgba(133, 14, 53, 0.09);
}

.areas-panel::after {
  bottom: -90px;
  left: 28%;
  width: 220px;
  height: 220px;
  background: rgba(255, 179, 63, 0.24);
}

.areas-panel > * {
  position: relative;
  z-index: 1;
}

.areas-copy {
  max-width: 560px;
}

.area-feature {
  position: relative;
  overflow: hidden;
}

.area-feature::after {
  position: absolute;
  top: -44px;
  right: -44px;
  width: 120px;
  height: 120px;
  content: "";
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.area-chips > span {
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.area-chips > span:hover {
  color: var(--color-primary);
  border-color: rgba(133, 14, 53, 0.22);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
  transform: translateY(-3px);
}

.testimonials-section {
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(255, 179, 63, 0.22),
      transparent 24rem
    ),
    linear-gradient(135deg, #121827, #0b1220);
}

.testimonials-section .section-heading h2,
.testimonials-section .section-heading p {
  color: var(--color-white);
}

.testimonials-section .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.86);
}

.testimonial-card strong {
  color: var(--color-accent);
}

.testimonial-controls button {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--color-white);
}

.process-section::before {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.4)),
    radial-gradient(
      circle at 50% 10%,
      rgba(133, 14, 53, 0.07),
      transparent 24rem
    );
}

.process-grid {
  counter-reset: process;
}

.process-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
}

.process-card::before {
  position: absolute;
  inset: auto -50px -70px auto;
  width: 150px;
  height: 150px;
  content: "";
  background: rgba(255, 179, 63, 0.16);
  border-radius: 50%;
}

.process-card:nth-child(even) {
  margin-top: 34px;
}

.process-icon {
  color: var(--color-primary);
  background: rgba(255, 179, 63, 0.24);
}

.center-cta-section {
  padding-top: 92px;
}

.center-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.center-cta::before,
.center-cta::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 50%;
  filter: blur(2px);
}

.center-cta::before {
  top: -90px;
  right: 10%;
  width: 220px;
  height: 220px;
  background: rgba(255, 179, 63, 0.24);
}

.center-cta::after {
  bottom: -120px;
  left: 8%;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.1);
}

.center-cta .btn {
  min-width: 164px;
}

.blog-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(252, 245, 238, 0)),
    var(--color-bg);
}

.blog-section .section-heading {
  margin-left: 0;
}

.blog-grid {
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
}

.blog-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.blog-card:nth-child(1) {
  transform: translateY(-18px);
}

.blog-card:nth-child(2) {
  margin-top: 34px;
}

.blog-card:nth-child(3) {
  margin-top: 10px;
}

.blog-card:hover {
  transform: translateY(-8px) scale(1.01);
}

.blog-card:nth-child(1):hover {
  transform: translateY(-26px) scale(1.01);
}

.blog-image {
  border-bottom: 1px solid var(--border-soft);
}

.site-footer::before,
.site-footer::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border-radius: 50%;
}

.site-footer::before {
  top: -120px;
  right: -120px;
  width: 280px;
  height: 280px;
  background: rgba(133, 14, 53, 0.12);
}

.site-footer::after {
  bottom: 100px;
  left: -100px;
  width: 260px;
  height: 260px;
  background: rgba(255, 179, 63, 0.1);
}

.map-placeholder {
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.reveal {
  transition-delay: var(--reveal-delay, 0ms);
}

@media (max-width: 1200px) {
  .service-card:nth-child(even),
  .service-card:nth-child(3),
  .process-card:nth-child(even),
  .blog-card:nth-child(1),
  .blog-card:nth-child(2),
  .blog-card:nth-child(3) {
    margin-top: 0;
    transform: none;
  }

  .blog-card:nth-child(1):hover,
  .blog-card:hover {
    transform: translateY(-8px);
  }

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

@media (max-width: 768px) {
  .section-heading .eyebrow,
  .eyebrow {
    padding: 7px 11px;
  }

  .why-list {
    padding: 12px;
    border-radius: 24px;
  }

  .why-item {
    padding: 14px;
  }

  .why-item:hover {
    transform: none;
  }

  .why-visual,
  .why-visual img,
  .floating-card {
    transform: none;
  }

  .areas-panel::before,
  .areas-panel::after {
    opacity: 0.7;
  }

  .testimonials-section .section-heading {
    text-align: left;
  }

  .testimonials-section .section-heading .eyebrow {
    margin-inline: 0;
  }

  .process-card:nth-child(even) {
    margin-top: 0;
  }

  .center-cta .btn {
    width: 100%;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Latest blog dark editorial section */
.latest-blog-section {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 179, 63, 0.16),
      transparent 32rem
    ),
    radial-gradient(
      circle at bottom right,
      rgba(133, 14, 53, 0.24),
      transparent 34rem
    ),
    linear-gradient(135deg, #0c121f 0%, #111827 48%, #0c121f 100%);
}

.latest-blog-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    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: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
}

.latest-blog-section .container {
  position: relative;
  z-index: 1;
}

.latest-blog-heading {
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.latest-blog-section .eyebrow {
  color: var(--color-accent);
  background: rgba(255, 179, 63, 0.12);
  border-color: rgba(255, 179, 63, 0.24);
}

.latest-blog-section h2 {
  color: var(--color-white);
}

.latest-blog-heading p:not(.eyebrow) {
  max-width: 620px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.72);
}

.latest-blog-section .blog-layout,
.latest-blog-section .blog-card-stack {
  position: relative;
}

.latest-blog-section .blog-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.latest-blog-section .blog-card:hover {
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
  transform: translateY(-8px);
}

.latest-blog-section .blog-image {
  overflow: hidden;
}

.latest-blog-section .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-blog-section .blog-content {
  background: var(--color-white);
}

.latest-blog-section .blog-title,
.latest-blog-section .blog-card h3 {
  color: var(--color-ink);
}

.latest-blog-section .blog-excerpt,
.latest-blog-section .blog-card p {
  color: var(--color-soft);
}

.latest-blog-section .read-more {
  color: var(--color-primary);
}

.latest-blog-section .read-more:hover {
  color: var(--color-hover);
}

.latest-blog-section .blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.9fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}

.latest-blog-section .blog-card-featured {
  min-height: 100%;
}

.latest-blog-section .blog-card-featured .blog-image {
  aspect-ratio: 16 / 10;
}

.latest-blog-section .blog-card-featured .blog-content {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.latest-blog-section .blog-card-stack {
  display: grid;
  grid-template-rows: none;
  gap: 1.25rem;
}

.latest-blog-section .blog-card-stack .blog-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 190px;
}

.latest-blog-section .blog-card-stack .blog-image {
  height: 100%;
  aspect-ratio: auto;
  border-radius: 24px 0 0 24px;
}

.latest-blog-section .blog-card-stack .blog-content {
  padding: 1.25rem;
}

.latest-blog-section .blog-card-stack .blog-title,
.latest-blog-section .blog-card-stack h3 {
  font-size: 1.15rem;
  line-height: 1.2;
}

.latest-blog-section .blog-card-stack .blog-excerpt,
.latest-blog-section .blog-card-stack p {
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .latest-blog-heading {
    max-width: 760px;
  }

  .latest-blog-section .blog-layout {
    grid-template-columns: 1fr;
  }

  .latest-blog-section .blog-card-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .latest-blog-section .blog-card-stack .blog-card {
    display: flex;
    flex-direction: column;
  }

  .latest-blog-section .blog-card-stack .blog-image {
    aspect-ratio: 4 / 3;
    border-radius: 24px 24px 0 0;
  }
}

@media (max-width: 768px) {
  .latest-blog-section {
    padding-block: 72px;
  }

  .latest-blog-section .blog-card {
    border-radius: 26px;
  }
}

@media (max-width: 640px) {
  .latest-blog-section .blog-card-stack {
    grid-template-columns: 1fr;
  }

  .latest-blog-section .blog-card-stack .blog-card {
    display: flex;
    flex-direction: column;
  }
}

/* ================================
   Mobile Hero Content + Slider Fix
================================ */

@media (max-width: 768px) {
  .hero {
    height: 100svh;
    min-height: 720px;
    max-height: none;
  }

  .hero-slide {
    align-items: flex-start;
    padding-top: 118px;
    padding-bottom: 130px;
    background-size: cover !important;
    background-position: center top !important;
  }

  .hero-content {
    width: min(100vw - 40px, 1200px);
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 12px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 12px;
  }

  .hero-copy h1 {
    max-width: 95%;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    max-width: 92%;
    margin-bottom: 24px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    max-width: 320px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 50px;
    padding: 14px 20px;
  }

  .trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 320px;
    margin-top: 22px;
  }

  .trust-badges span {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .trust-badges i {
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }

  .hero-controls {
    top: auto;
    right: 20px;
    bottom: 38px;
    display: flex;
    gap: 10px;
    transform: none;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
    color: #fcf5ee;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.36);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .hero-dots {
    bottom: 54px;
    left: 20px;
    gap: 9px;
  }

  .hero-dots button {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
  }

  .hero-dots button.is-active {
    width: 24px;
    background: var(--color-accent);
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 760px;
  }

  .hero-slide {
    padding-top: 112px;
    padding-bottom: 140px;
    background-position: 52% top !important;
  }

  .hero-actions,
  .trust-badges {
    max-width: 100%;
  }

  .hero-controls {
    right: 18px;
    bottom: 32px;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
  }

  .hero-dots {
    bottom: 48px;
    left: 18px;
  }
}
/* ================================
   Hero Desktop + Mobile Image Setup
================================ */

.hero-slide {
  background-image: var(--desktop-hero);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Tablet + Mobile: use mobile hero images */
@media (max-width: 1024px) {
  .hero-slide {
    background-image: var(--mobile-hero) !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
  }
}

/* Mobile height adjustment */
@media (max-width: 768px) {
  .hero {
    height: 100svh;
    min-height: 720px;
  }

  .hero-slide {
    background-image: var(--mobile-hero) !important;
    background-size: cover !important;
    background-position: center top !important;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero {
    min-height: 760px;
  }

  .hero-slide {
    background-position: center top !important;
  }
}

/* ================================
   Footer Final Fix
================================ */

.footer-grid {
  grid-template-columns: 1.5fr 0.9fr 0.9fr;
  gap: 56px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 220px;
  margin-bottom: 18px;
}

.footer-logo img {
  display: block;
  width: auto;
  height: 76px;
  max-height: 76px;
  max-width: 220px;
  object-fit: contain;
  transform: none;
}

.footer-map-column {
  grid-column: 1 / -1;
  margin-top: 18px;
}

.footer-map-shell {
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
  align-items: stretch;
}

.footer-map-embed {
  min-height: 360px;
  height: 100%;
}

.footer-map-card {
  align-content: center;
}

.social-links a {
  overflow: hidden;
}

.social-links img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: 0.95;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(17, 24, 39, 0.68);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 220ms ease;
}

.footer-legal a:hover {
  color: var(--color-primary);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-logo {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-map-column {
    margin-top: 4px;
  }

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

  .footer-map-embed {
    min-height: 340px;
  }

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

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-logo img {
    height: 62px;
    max-height: 62px;
  }

  .footer-map-embed {
    min-height: 300px;
  }
}
/* Footer logo size */
.footer-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: none;
  margin-bottom: 56px;
  overflow: visible;
}

.footer-logo img {
  display: block;
  height: 76px;
  max-height: 76px;
  width: auto;
  max-width: none;
  object-fit: contain;
  transform: scale(3);
  transform-origin: left center;
}

@media (max-width: 768px) {
  .footer-logo {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 44px;
  }

  .footer-logo img {
    height: 58px;
    max-height: 58px;
    transform: scale(4);
    transform-origin: center center;
  }
}
/* ================================
   Footer Social SVG Icons Fix
================================ */

.social-links a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.social-links img {
  display: block;
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 420ms ease;
  will-change: transform;
}

.testimonial-carousel {
  overflow: hidden;
}

.testimonial-card {
  flex: 0 0 calc((100% - 60px) / 3);
}

@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 30px) / 2);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}

/* ================================
   Final Testimonials Brand UI Fix
================================ */

.testimonials-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fffaf4, var(--color-bg));
}

.testimonials-section .section-heading {
  margin-bottom: 48px;
}

.testimonials-section .section-heading .eyebrow {
  color: var(--color-accent);
}

.testimonials-section .section-heading h2 {
  color: var(--color-primary);
}

.testimonials-section .section-heading p {
  color: var(--color-ink);
}

.testimonial-carousel {
  overflow: hidden;
  padding: 6px 4px 0;
}

.testimonial-track {
  display: flex;
  align-items: stretch;
  gap: 30px;
  transition: transform 420ms ease;
  will-change: transform;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex: 0 0 calc((100% - 60px) / 3);
  flex-direction: column;
  min-height: 360px;
  padding: 40px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(133, 14, 53, 0.08);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.testimonial-card::before {
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 4px;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-accent),
    transparent
  );
  border-radius: var(--radius-pill);
  opacity: 0.78;
}

.testimonial-card::after {
  position: absolute;
  top: -72px;
  right: -72px;
  width: 150px;
  height: 150px;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(255, 179, 63, 0.2), transparent 68%);
}

.testimonial-card .stars {
  margin-bottom: 22px;
  color: var(--color-accent);
  font-size: 1.08rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.testimonial-quote-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: rgba(133, 14, 53, 0.22);
}

.testimonial-card p {
  margin: 0 0 30px;
  color: var(--color-ink);
  font-size: 1rem;
  line-height: 1.78;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.testimonial-avatar-wrap {
  position: relative;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
}

.testimonial-avatar,
.testimonial-avatar-fallback {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.testimonial-avatar {
  display: block;
  object-fit: cover;
  border: 3px solid rgba(255, 179, 63, 0.45);
  box-shadow: 0 10px 24px rgba(133, 14, 53, 0.12);
}

.testimonial-avatar-fallback {
  display: none;
  place-items: center;
  margin-top: 0;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-primary), var(--color-hover));
  border: 3px solid rgba(255, 179, 63, 0.45);
  box-shadow: 0 12px 28px rgba(133, 14, 53, 0.18);
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
}

.testimonial-avatar-fallback.is-visible {
  display: grid;
}

.testimonial-customer-name,
.testimonial-card strong {
  color: var(--color-primary);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.testimonial-controls button {
  display: inline-grid;
  width: 48px;
  height: 48px;
  min-width: 48px;
  place-items: center;
  color: var(--color-primary);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  background: var(--color-white);
  border: 1px solid rgba(133, 14, 53, 0.1);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.testimonial-controls button:hover,
.testimonial-controls button:focus-visible {
  color: var(--color-white);
  background: var(--color-hover);
  border-color: var(--color-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.testimonial-dots button {
  width: 10px;
  min-width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(133, 14, 53, 0.24);
  border: 0;
  border-radius: 999px;
  box-shadow: none;
}

.testimonial-dots button:hover,
.testimonial-dots button:focus-visible {
  background: rgba(133, 14, 53, 0.45);
  box-shadow: none;
  transform: none;
}

.testimonial-dots button.is-active {
  width: 28px;
  background: var(--color-accent);
}

.testimonial-review-link-wrap {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.testimonial-review-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.testimonial-review-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 30px) / 2);
    min-height: 340px;
  }
}

@media (max-width: 768px) {
  .testimonial-carousel {
    padding-right: 0;
    padding-left: 0;
  }

  .testimonial-track {
    gap: 30px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-height: 330px;
    padding: 28px;
  }

  .testimonial-controls {
    gap: 14px;
    margin-top: 28px;
  }

  .testimonial-controls button {
    width: 44px;
    min-width: 44px;
    height: 44px;
  }
}

/* ================================
   Premium Dark Footer Restyle
================================ */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 112px 0 58px;
  color: rgba(248, 250, 252, 0.78);
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(255, 179, 63, 0.16),
      transparent 26%
    ),
    radial-gradient(circle at 88% 8%, rgba(133, 14, 53, 0.38), transparent 30%),
    linear-gradient(145deg, #101722 0%, #0b111c 46%, #160812 100%);
}

.site-footer::before,
.site-footer::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.site-footer::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 22%),
    linear-gradient(
      90deg,
      rgba(255, 179, 63, 0.06),
      transparent 34%,
      rgba(133, 14, 53, 0.12)
    );
}

.site-footer::after {
  right: 8%;
  bottom: -180px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(247, 127, 0, 0.18), transparent 68%);
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-hero {
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.85fr);
  gap: 48px;
  margin-bottom: 58px;
  padding: 0 0 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-hero-copy {
  gap: 20px;
}

.footer-eyebrow,
.footer-cta-subtitle,
.footer-map-eyebrow {
  color: var(--color-accent);
  letter-spacing: 0.16em;
}

.footer-hero-title {
  max-width: 920px;
  color: var(--color-white);
  text-wrap: balance;
}

.footer-hero-copy p,
.footer-brand-column p,
.footer-map-card p {
  color: rgba(248, 250, 252, 0.72);
}

.footer-hero-copy p {
  max-width: 46rem;
}

.footer-hero-cta {
  align-content: center;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.footer-cta-link {
  padding: 22px;
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(255, 179, 63, 0.18), rgba(133, 14, 53, 0.38)),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 179, 63, 0.28);
  border-radius: 26px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
}

.footer-cta-link:hover,
.footer-cta-link:focus-visible {
  border-color: rgba(255, 179, 63, 0.58);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35),
    0 0 34px rgba(255, 179, 63, 0.18);
  transform: translateY(-2px);
}

.footer-cta-icon {
  color: #1a1010;
  background: linear-gradient(135deg, #ffcf78, var(--color-accent));
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(255, 179, 63, 0.24);
}

.footer-cta-link strong {
  color: var(--color-white);
}

.footer-cta-copy span {
  color: rgba(248, 250, 252, 0.68);
}

.footer-grid {
  grid-template-columns: minmax(260px, 1.35fr) minmax(160px, 0.75fr) minmax(
      190px,
      0.8fr
    );
  gap: 52px;
  padding-top: 4px;
}

.footer-brand-column,
.footer-nav,
.footer-map-column {
  gap: 16px;
}

.footer-brand-column,
.footer-nav {
  padding-top: 8px;
}

.footer-logo {
  max-width: 230px;
  margin-bottom: 34px;
}

.footer-logo img {
  height: 76px;
  max-height: 76px;
  width: auto;
  max-width: 230px;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.35));
  transform: none;
  transform-origin: left center;
}

.footer-title {
  position: relative;
  margin-bottom: 14px;
  padding-bottom: 12px;
  color: var(--color-white);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 2px;
  content: "";
  background: linear-gradient(
    90deg,
    var(--color-accent),
    rgba(255, 179, 63, 0)
  );
  border-radius: var(--radius-pill);
}

.footer-nav a,
.footer-contact a,
.footer-contact span:not(.footer-title),
.footer-legal a {
  color: rgba(248, 250, 252, 0.68);
}

.footer-nav a,
.footer-legal a {
  width: fit-content;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--color-accent);
}

.footer-nav a::after {
  background: linear-gradient(
    90deg,
    var(--color-accent),
    rgba(255, 179, 63, 0)
  );
}

.social-links {
  gap: 12px;
  margin-top: 14px;
}

.social-links a {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.social-links a:hover,
.social-links a:focus-visible {
  background: rgba(255, 179, 63, 0.16);
  border-color: rgba(255, 179, 63, 0.34);
  box-shadow: 0 18px 44px rgba(255, 179, 63, 0.12);
  transform: translateY(-2px);
}

.social-links img {
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  filter: brightness(0) saturate(100%) invert(76%) sepia(72%) saturate(742%)
    hue-rotate(335deg) brightness(102%) contrast(101%);
  opacity: 0.95;
}

.footer-map-column {
  grid-column: 1 / -1;
  margin-top: 26px;
  padding-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map-shell {
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  gap: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-map-embed {
  min-height: 370px;
  height: 100%;
  filter: saturate(0.9) contrast(1.02);
}

.footer-map-card {
  align-content: center;
  padding: 34px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.035)
    ),
    rgba(8, 13, 22, 0.42);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map-card a {
  width: fit-content;
  color: var(--color-accent);
  border-bottom-color: rgba(255, 179, 63, 0.32);
}

.footer-map-card a:hover,
.footer-map-card a:focus-visible {
  color: #ffd28a;
  border-color: #ffd28a;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

.footer-bottom p {
  color: rgba(248, 250, 252, 0.58);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

@media (max-width: 1024px) {
  .site-footer {
    padding-top: 88px;
    padding-bottom: 54px;
  }

  .footer-hero {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
    padding-bottom: 42px;
  }

  .footer-hero-copy,
  .footer-hero-cta {
    text-align: center;
  }

  .footer-cta-link {
    max-width: 540px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand-column,
  .footer-nav,
  .footer-map-column {
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-title::after {
    right: 0;
    left: 0;
    margin: 0 auto;
  }

  .footer-nav a,
  .footer-legal a,
  .footer-map-card a {
    margin-right: auto;
    margin-left: auto;
  }

  .social-links,
  .footer-legal {
    justify-content: center;
  }

  .footer-map-column {
    margin-top: 12px;
    padding-top: 36px;
  }

  .footer-map-shell {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .footer-map-card {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

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

@media (max-width: 768px) {
  .site-footer {
    padding-top: 72px;
    padding-bottom: 84px;
  }

  .footer-hero-cta {
    padding: 22px;
    border-radius: 24px;
  }

  .footer-cta-link {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .footer-cta-icon {
    margin: 0 auto;
  }

  .footer-logo img {
    height: 64px;
    max-height: 64px;
    transform: none;
    transform-origin: center center;
  }

  .footer-map-embed {
    min-height: 300px;
  }

  .footer-map-card {
    padding: 26px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding-top: 60px;
  }

  .footer-hero {
    gap: 26px;
    margin-bottom: 38px;
    padding-bottom: 34px;
  }

  .footer-cta-link strong {
    font-size: 1.25rem;
  }

  .footer-map-shell {
    border-radius: 24px;
  }

  .footer-map-embed {
    min-height: 270px;
  }

  .footer-bottom {
    margin-top: 42px;
  }
}

/* ================================
   Process Zigzag Connector Line
================================ */

.process-grid {
  position: relative;
  isolation: isolate;
}

/* Remove old straight dotted line */
.process-grid::before {
  display: none !important;
}

/* Keep cards above the connector */
.process-card {
  position: relative;
  z-index: 2;
  overflow: visible;
}

/* Keep step number clearly above the line */
.step-number {
  position: relative;
  z-index: 5;
  box-shadow:
    0 0 0 12px rgba(252, 245, 238, 0.96),
    0 16px 36px rgba(133, 14, 53, 0.22);
  transition:
    box-shadow 260ms ease,
    transform 260ms ease;
}

/* Subtle dotted connector */
.process-card::after {
  position: absolute;
  z-index: 1;
  top: 67px;
  left: 82px;
  width: calc(100% + 44px);
  height: 2px;
  content: "";
  pointer-events: none;

  background-image: radial-gradient(
    circle,
    rgba(133, 14, 53, 0.3) 1.25px,
    transparent 1.55px
  );
  background-size: 13px 2px;
  background-repeat: repeat-x;

  transform-origin: left center;
  opacity: 0.72;

  transition:
    opacity 220ms ease,
    filter 220ms ease,
    background-position 520ms ease,
    background-image 220ms ease;
}

/* 1 → 2 and 3 → 4 go downward */
.process-card:nth-child(1)::after,
.process-card:nth-child(3)::after {
  transform: rotate(9deg);
}

/* 2 → 3 goes upward */
.process-card:nth-child(2)::after {
  transform: rotate(-9deg);
}

/* No line after the last card */
.process-card:nth-child(4)::after {
  display: none;
}

/* Hover effect: dotted connector turns gold and animates */
.process-card:hover::after {
  background-image: radial-gradient(
    circle,
    rgba(255, 179, 63, 0.58) 1.35px,
    transparent 1.65px
  );
  background-position: 13px 0;
  opacity: 0.84;
  filter: drop-shadow(0 0 4px rgba(255, 179, 63, 0.24));
}

/* Number hover glow */
.process-card:hover .step-number {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 12px rgba(252, 245, 238, 0.96),
    0 0 0 16px rgba(255, 179, 63, 0.22),
    0 18px 40px rgba(133, 14, 53, 0.26);
}

/* Disable connector on tablet/mobile */
@media (max-width: 1024px) {
  .process-card::after {
    display: none;
  }

  .step-number {
    box-shadow: 0 16px 36px rgba(133, 14, 53, 0.22);
  }
}

/* ================================
   Footer Logo Premium Highlight
================================ */

.site-footer .footer-brand-column {
  position: relative;
  padding: 30px;
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      rgba(255, 250, 244, 0.14),
      rgba(255, 179, 63, 0.075)
    ),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.site-footer .footer-brand-column::before {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 220px;
  height: 220px;
  pointer-events: none;
  content: "";
  background: radial-gradient(
    circle,
    rgba(255, 179, 63, 0.22),
    transparent 68%
  );
}

.site-footer .footer-logo {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  max-width: 1080px;
  margin-bottom: 34px;
}

.site-footer .footer-logo img {
  width: auto;
  height: 354px;
  max-width: 1080px;
  max-height: 354px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 18px rgba(255, 179, 63, 0.16));
  transform: none;
}

/* Footer logo size - fixed spacing */
.footer-logo,
.site-footer .footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  max-width: none;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 0;
  overflow: visible;
}

.footer-logo img,
.site-footer .footer-logo img {
  display: block;
  width: auto;
  height: 190px;
  max-width: none;
  max-height: 190px;
  object-fit: contain;
  transform: none;
  transform-origin: left center;
}

.site-footer .footer-brand-column p,
.site-footer .footer-brand-column .social-links {
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .site-footer .footer-brand-column {
    width: 100%;
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
  }

  .site-footer .footer-logo {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .site-footer .footer-brand-column {
    padding: 26px 22px;
    border-radius: 26px;
  }

  .site-footer .footer-logo {
    max-width: 300px;
    margin-bottom: 28px;
  }

  .site-footer .footer-logo img {
    height: 96px;
    max-width: 300px;
    max-height: 96px;
  }
}

@media (max-width: 480px) {
  .site-footer .footer-logo {
    max-width: 260px;
  }

  .site-footer .footer-logo img {
    height: 82px;
    max-width: 260px;
    max-height: 82px;
  }
}

/* ================================
   Hero Layout Alignment Fix
================================ */

.hero {
  height: auto;
  min-height: clamp(780px, 100svh, 940px);
  overflow: hidden;
}

.hero-slide {
  display: flex;
  min-height: inherit;
  height: auto;
  align-items: center;
  padding-top: clamp(116px, 12vh, 150px);
  padding-bottom: clamp(96px, 10vh, 132px);
}

.hero-content {
  width: var(--container);
}

.hero-copy {
  display: flex;
  width: min(100%, 720px);
  max-width: 720px;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-copy .eyebrow {
  margin-bottom: 14px;
}

.hero-copy h1 {
  max-width: 100%;
  margin-bottom: 18px;
}

.hero-subtitle {
  max-width: 660px;
  margin-bottom: 24px;
}

.trust-badges {
  display: grid;
  width: min(100%, 720px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
  margin-bottom: 28px;
}

.trust-badges span {
  width: 100%;
  min-width: 0;
  justify-content: flex-start;
  white-space: normal;
}

.hero-actions {
  width: min(100%, 520px);
  gap: 14px;
}

@media (max-width: 1024px) {
  .hero {
    min-height: 840px;
  }

  .hero-slide {
    align-items: flex-start;
    padding-top: 126px;
    padding-bottom: 120px;
  }

  .hero-copy {
    width: min(100%, 680px);
    max-width: 680px;
  }

  .trust-badges {
    width: min(100%, 680px);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 900px;
  }

  .hero-slide {
    min-height: inherit;
    padding-top: 112px;
    padding-bottom: 118px;
  }

  .hero-content {
    width: min(100vw - 40px, 1200px);
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy .eyebrow {
    margin-bottom: 12px;
  }

  .hero-copy h1 {
    max-width: 100%;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .trust-badges {
    width: 100%;
    max-width: 520px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 24px;
  }

  .hero-actions {
    width: 100%;
    max-width: 520px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 960px;
  }

  .hero-slide {
    padding-top: 106px;
    padding-bottom: 112px;
  }

  .trust-badges {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .hero {
    min-height: 1010px;
  }
}

/* ================================
   Services Overview Premium Layout
================================ */

.services-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(88px, 9vw, 128px);
  padding-bottom: clamp(88px, 9vw, 128px);
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 179, 63, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(247, 127, 0, 0.12),
      transparent 32%
    ),
    linear-gradient(135deg, #1c1016 0%, #2a121b 48%, #0b1220 100%);
}

.services-section .section-heading {
  margin-bottom: clamp(42px, 5vw, 64px);
}

.services-section .section-heading .eyebrow {
  color: var(--color-accent);
}

.services-section .section-heading h2 {
  color: rgba(255, 255, 255, 0.96);
}

.services-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.services-section .service-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
  align-items: stretch;
  max-width: 1280px;
  margin-inline: auto;
  perspective: none;
}

.services-section .service-card {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  min-width: 0;
  flex-direction: column;
  padding: clamp(28px, 3vw, 42px);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.11),
      rgba(255, 255, 255, 0.045)
    ),
    rgba(16, 24, 39, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  transform: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.services-section .service-card:nth-child(even),
.services-section .service-card:nth-child(3) {
  margin-top: 0;
}

.services-section .service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0.72;
}

.services-section .service-card::after {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 190px;
  height: 190px;
  content: "";
  background: radial-gradient(
    circle,
    rgba(255, 179, 63, 0.16),
    transparent 68%
  );
  border-radius: 50%;
  opacity: 0.78;
  transform: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.services-section .service-card:hover {
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.14),
      rgba(255, 255, 255, 0.06)
    ),
    rgba(23, 18, 29, 0.72);
  border-color: rgba(255, 179, 63, 0.32);
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.36);
  transform: translateY(-6px);
}

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

.services-section .service-card:hover::after {
  opacity: 1;
  transform: scale(1.08);
}

.services-section .service-card > * {
  position: relative;
  z-index: 1;
}

.services-section .icon-box {
  flex: 0 0 auto;
  color: var(--color-accent);
  background: rgba(255, 179, 63, 0.12);
  border: 1px solid rgba(255, 179, 63, 0.18);
}

.services-section .service-card:hover .icon-box {
  color: #1c1016;
  background: var(--color-accent);
}

.services-section .card-kicker {
  color: var(--color-accent);
}

.services-section .service-card h3 {
  color: rgba(255, 255, 255, 0.95);
}

.services-section .service-card p {
  color: rgba(255, 255, 255, 0.72);
}

.services-section .service-card .text-link {
  margin-top: auto;
  color: var(--color-accent);
}

@media (max-width: 1024px) {
  .services-section .service-grid {
    gap: 22px;
  }

  .services-section .service-card {
    padding: 30px;
  }
}

@media (max-width: 760px) {
  .services-section .service-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .services-section .service-card {
    padding: 26px 22px;
    border-radius: 20px;
  }
}

/* ================================
   Local Authority Premium Layout
================================ */

.local-authority-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 179, 63, 0.2),
      transparent 28%
    ),
    linear-gradient(135deg, #fffaf4 0%, #fcf5ee 48%, #f7eadf 100%);
}

.local-authority-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(42px, 6vw, 76px);
  align-items: center;
}

.local-map-card {
  position: relative;
  min-height: clamp(420px, 48vw, 600px);
  overflow: hidden;
  background: #1c1016;
  border: 1px solid rgba(133, 14, 53, 0.12);
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(42, 18, 27, 0.2);
}

.local-map-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.local-map-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent 44%, rgba(28, 16, 22, 0.62)),
    radial-gradient(
      circle at top left,
      rgba(255, 179, 63, 0.14),
      transparent 36%
    );
}

.local-image-badge {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  display: grid;
  gap: 4px;
  max-width: min(300px, calc(100% - 56px));
  padding: 18px 20px;
  color: var(--color-white);
  background: rgba(28, 16, 22, 0.82);
  border: 1px solid rgba(255, 179, 63, 0.26);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.local-image-badge strong,
.local-image-badge span {
  display: block;
}

.local-image-badge strong {
  color: var(--color-accent);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}

.local-image-badge span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

.local-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.local-copy .eyebrow {
  color: var(--color-primary);
}

.local-copy h2 {
  margin-bottom: 22px;
}

.local-copy p {
  max-width: 68ch;
  margin-bottom: 16px;
}

.local-key-points {
  display: grid;
  width: 100%;
  gap: 12px;
  margin: 12px 0 28px;
}

.local-key-points span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 18px 14px 46px;
  color: #2a121b;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(133, 14, 53, 0.1);
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(42, 18, 27, 0.08);
  font-weight: 800;
}

.local-key-points span::before {
  position: absolute;
  left: 18px;
  width: 14px;
  height: 14px;
  content: "";
  background: var(--color-accent);
  border: 4px solid rgba(133, 14, 53, 0.12);
  border-radius: 50%;
}

.local-copy .btn {
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .local-authority-layout {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 36px;
  }

  .local-map-card {
    min-height: 460px;
  }
}

@media (max-width: 860px) {
  .local-authority-layout {
    grid-template-columns: 1fr;
  }

  .local-map-card {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .local-map-card {
    min-height: 340px;
    border-radius: 24px;
  }

  .local-image-badge {
    right: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
    padding: 14px 16px;
    border-radius: 16px;
  }

  .local-key-points span {
    padding-right: 16px;
  }

  .local-copy .btn {
    width: 100%;
  }
}

/* ================================
   Why Choose Premium Card Layout
================================ */

.why-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(255, 250, 244, 0.96),
      rgba(252, 245, 238, 0.94)
    ),
    var(--color-bg);
}

.why-section::before {
  display: none;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(38px, 5vw, 58px);
  align-items: start;
}

.why-copy {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.why-copy .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.why-copy h2 {
  max-width: 980px;
  margin-right: auto;
  margin-bottom: 18px;
  margin-left: auto;
}

.why-copy > p:not(.eyebrow) {
  max-width: 980px;
  margin: 0 auto;
}

.why-container {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 52px);
  background: linear-gradient(160deg, #241018 0%, #171d2d 52%, #0b1220 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: clamp(26px, 4vw, 40px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -80px 120px rgba(133, 14, 53, 0.18),
    0 30px 90px rgba(15, 23, 42, 0.18);
}

.why-container::before {
  position: absolute;
  top: -120px;
  right: 12%;
  width: 360px;
  height: 360px;
  pointer-events: none;
  content: "";
  background: radial-gradient(
    circle,
    rgba(255, 179, 63, 0.16),
    transparent 62%
  );
}

.why-container::after {
  position: absolute;
  bottom: -160px;
  left: -80px;
  width: 420px;
  height: 420px;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(133, 14, 53, 0.24), transparent 68%);
}

.why-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 26px);
  padding: 0;
  margin-top: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.why-item,
.why-card {
  position: relative;
  display: flex;
  grid-column: span 2;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: clamp(24px, 3vw, 32px);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.045)
    ),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.2);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.why-item:nth-child(4) {
  grid-column: 2 / span 2;
}

.why-item:nth-child(5) {
  grid-column: 4 / span 2;
}

.why-item::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(133, 14, 53, 0.8),
    rgba(255, 179, 63, 0.86)
  );
  opacity: 0.82;
}

.why-item:hover {
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.13),
      rgba(255, 255, 255, 0.055)
    ),
    rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 179, 63, 0.28);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(-6px);
}

.why-icon {
  display: inline-flex;
  width: auto;
  height: auto;
  min-width: 0;
  padding: 0;
  color: var(--color-accent);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.why-item:hover .why-icon {
  color: var(--color-accent);
  background: transparent;
}

.why-card-label {
  display: block;
  margin-bottom: 10px;
  color: var(--color-accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why-item strong {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.96);
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.12rem, 1.5vw, 1.36rem);
  line-height: 1.18;
}

.why-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.why-note {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  padding: clamp(22px, 3vw, 30px);
  margin: clamp(22px, 3vw, 32px) auto 0;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 179, 63, 0.08);
  border: 1px solid rgba(255, 179, 63, 0.2);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}

@media (max-width: 1040px) {
  .why-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-item,
  .why-card,
  .why-item:nth-child(4),
  .why-item:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .why-copy {
    text-align: left;
  }

  .why-copy .eyebrow {
    margin-right: 0;
    margin-left: 0;
  }

  .why-list {
    grid-template-columns: 1fr;
  }

  .why-container {
    padding: 22px;
    border-radius: 24px;
  }

  .why-item,
  .why-card {
    padding: 22px;
    border-radius: 20px;
  }

  .why-item:hover {
    transform: none;
  }

  .why-note {
    text-align: left;
  }
}

/* ================================
   Footer Brand Logo Spacing Fix
   Paste at the end of assets/css/style.css
================================ */

.site-footer .footer-brand-column .footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 0;
  overflow: visible;
  transform: none;
}

.site-footer .footer-brand-column .footer-logo img {
  display: block;
  width: auto;
  height: 180px;
  max-width: min(100%, 420px);
  max-height: 180px;
  object-fit: contain;
  transform: none;
  transform-origin: left center;
}

.site-footer .footer-brand-column p {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .site-footer .footer-brand-column .footer-logo {
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
  }

  .site-footer .footer-brand-column .footer-logo img {
    height: 150px;
    max-height: 150px;
    transform-origin: center center;
  }
}

@media (max-width: 768px) {
  .site-footer .footer-brand-column .footer-logo {
    max-width: 100%;
    margin-bottom: 10px;
  }

  .site-footer .footer-brand-column .footer-logo img {
    height: 126px;
    max-width: min(100%, 320px);
    max-height: 126px;
  }
}

@media (max-width: 480px) {
  .site-footer .footer-brand-column .footer-logo img {
    height: 108px;
    max-width: min(100%, 280px);
    max-height: 108px;
  }
}

.arborist-image {
  width: 100%;
  height: 320px;
  margin-bottom: 22px;
  object-fit: cover;
  border-radius: 24px;
}

/* ================================
   Footer Brand Column Centering Fix
   Paste at the end of assets/css/style.css
================================ */

.site-footer .footer-brand-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.site-footer .footer-brand-column .footer-logo {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 10px;
  padding: 0;
  line-height: 0;
  overflow: visible;
  transform: none;
}

.site-footer .footer-brand-column .footer-logo img {
  display: block;
  width: auto;
  height: 190px;
  max-width: min(100%, 420px);
  max-height: 190px;
  object-fit: contain;
  object-position: center;
  transform: none;
  transform-origin: center center;
}

.site-footer .footer-brand-column p {
  position: relative;
  z-index: 1;
  max-width: 30rem;
  margin: 0 auto 24px;
  text-align: center;
}

.site-footer .footer-brand-column .social-links {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .site-footer .footer-brand-column .footer-logo img {
    height: 160px;
    max-height: 160px;
  }
}

@media (max-width: 768px) {
  .site-footer .footer-brand-column .footer-logo img {
    height: 132px;
    max-width: min(100%, 320px);
    max-height: 132px;
  }
}

@media (max-width: 480px) {
  .site-footer .footer-brand-column .footer-logo img {
    height: 112px;
    max-width: min(100%, 280px);
    max-height: 112px;
  }
}

/* ================================
   Back to Top Button
================================ */

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 120;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--color-white);
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 179, 63, 0.42),
      transparent 36%
    ),
    linear-gradient(135deg, #850e35 0%, #7b0e32 52%, #1f1a2a 120%);
  border: 1px solid rgba(255, 179, 63, 0.45);
  border-radius: 999px;
  box-shadow:
    0 18px 42px rgba(133, 14, 53, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.92);
  transition:
    opacity 220ms ease,
    visibility 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 179, 63, 0.5),
      transparent 36%
    ),
    linear-gradient(135deg, #f77f00 0%, #850e35 62%, #1f1a2a 125%);
  box-shadow:
    0 22px 52px rgba(133, 14, 53, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transform: translateY(-3px) scale(1.02);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(255, 179, 63, 0.72);
  outline-offset: 4px;
}

.back-to-top span {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 768px) {
  .back-to-top {
    right: 18px;
    bottom: 88px;
    width: 48px;
    height: 48px;
  }

  .back-to-top span {
    font-size: 22px;
  }
}

/* ================================
   Hero Responsive Fit Override
   Paste at the end of assets/css/style.css
================================ */

.hero {
  position: relative;
  height: auto !important;
  min-height: 100svh;
  max-height: none !important;
  overflow: visible !important;
  margin-bottom: 0 !important;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  min-height: 100%;
  height: auto !important;
  padding-top: clamp(110px, 12vh, 150px);
  padding-bottom: clamp(90px, 10vh, 130px);
  opacity: 0;
  pointer-events: none;
}

.hero-slide.is-active {
  position: relative;
  min-height: 100svh;
  height: auto !important;
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-content {
  width: min(100% - 48px, 1200px);
  margin-inline: auto;
}

.hero-copy {
  max-width: 720px;
  padding-bottom: 0 !important;
}

.hero-copy .eyebrow {
  margin-bottom: clamp(10px, 1.4vh, 14px);
}

.hero-copy h1,
.hero-copy h1.hero-heading {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: 50px;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.hero-supporting-heading,
.hero-copy h2.hero-supporting-heading {
  max-width: 700px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-transform: none;
}

.hero-subtitle,
.hero-copy p.hero-subtitle {
  max-width: 680px;
  margin-bottom: 22px;
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1vw, 1.05rem);
  line-height: 1.5;
  font-weight: 400;
}

.hero .trust-badges {
  display: grid;
  width: min(100%, 860px);
  max-width: 860px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(8px, 0.85vw, 12px);
  margin-top: 22px;
  margin-bottom: clamp(18px, 2.4vh, 26px);
}

.hero .trust-badges span {
  display: inline-flex;
  width: 100%;
  min-width: 0;
  min-height: 42px;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: clamp(8px, 0.8vw, 10px) clamp(9px, 0.9vw, 13px);
  overflow: hidden;
  font-size: clamp(0.7rem, 0.72vw, 0.86rem);
  line-height: 1.2;
  text-wrap: balance;
}

.hero .trust-badges i {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  font-size: 0.72rem;
}

.hero-actions {
  width: min(100%, 540px);
  margin-top: 0;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1180px) {
  .hero-copy {
    width: min(100%, 760px);
    max-width: 760px;
  }

  .hero .trust-badges {
    width: min(100%, 760px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .hero-slide,
  .hero-slide.is-active {
    padding-top: 115px;
    padding-bottom: 100px;
  }

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

  .hero-copy h1,
  .hero-copy h1.hero-heading {
    font-size: 50px;
    line-height: 1.07;
  }

  .hero-supporting-heading,
  .hero-copy h2.hero-supporting-heading {
    font-size: 20px;
    line-height: 1.3;
  }

  .hero-subtitle,
  .hero-copy p.hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto !important;
  }

  .hero-slide {
    align-items: flex-start;
  }

  .hero-slide,
  .hero-slide.is-active {
    min-height: auto !important;
    padding-top: 105px;
    padding-bottom: 90px;
  }

  .hero-content {
    width: min(100% - 36px, 1200px);
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .hero-copy h1,
  .hero-copy h1.hero-heading {
    max-width: 100%;
    margin-bottom: 12px;
    font-size: 50px;
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .hero-supporting-heading,
  .hero-copy h2.hero-supporting-heading {
    max-width: 100%;
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.3;
  }

  .hero-subtitle,
  .hero-copy p.hero-subtitle {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .hero .trust-badges {
    width: 100%;
    max-width: 540px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    max-width: 300px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
    font-size: 0.92rem;
  }
}

@media (max-width: 480px) {
  .hero-slide,
  .hero-slide.is-active {
    padding-top: 95px;
    padding-bottom: 80px;
  }

  .hero-copy h1,
  .hero-copy h1.hero-heading {
    font-size: 50px;
    line-height: 1.08;
  }

  .hero-supporting-heading,
  .hero-copy h2.hero-supporting-heading {
    font-size: 20px;
    line-height: 1.3;
  }

  .hero-subtitle,
  .hero-copy p.hero-subtitle {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .hero .trust-badges {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    max-width: 280px;
  }
}

/* ================================
   Emergency Section 1280px Layout
================================ */

.emergency-section {
  padding: clamp(72px, 8vw, 110px) 0;
}

.emergency-section .container {
  width: var(--container);
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
}

.emergency-section .emergency-card {
  width: 100%;
  max-width: 1280px;
  min-height: auto;
  padding: clamp(56px, 6vw, 82px) clamp(32px, 7vw, 98px);
  margin-right: auto;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: clamp(28px, 3vw, 38px);
  box-shadow:
    0 34px 90px rgba(133, 14, 53, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.emergency-section .emergency-card h2,
.emergency-section .emergency-card p:not(.eyebrow) {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.emergency-section .emergency-card h2 {
  max-width: 980px;
  font-family: var(--font-heading);
  font-size: var(--text-section-title);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-title);
}

.emergency-section .emergency-card p a {
  font: inherit;
  font-weight: var(--weight-extrabold);
}

.emergency-section .emergency-card p:not(.eyebrow) {
  max-width: 980px;
  margin-top: 16px;
}

.emergency-section .emergency-card .cta-actions {
  margin-top: 28px;
}

@media (max-width: 1024px) {
  .emergency-section {
    padding: 88px 0;
  }

  .emergency-section .emergency-card {
    padding: 56px clamp(32px, 6vw, 72px);
  }
}

@media (max-width: 768px) {
  .emergency-section {
    padding: 72px 0;
  }

  .emergency-section .emergency-card {
    padding: 44px 28px;
  }

  .emergency-section .emergency-card .cta-actions {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .emergency-section .emergency-card {
    padding-right: 22px;
    padding-left: 22px;
  }
}

.emergency-section .emergency-card p a {
  color: #ffd166;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.emergency-section .emergency-card p a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ffd166, #ff9f1c);
  border-radius: 999px;
  transform: scaleX(1);
  transform-origin: left;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  opacity: 0.9;
}

.emergency-section .emergency-card p a:hover {
  color: #ffffff;
}

.emergency-section .emergency-card p a:hover::after {
  transform: scaleX(1.08);
  opacity: 1;
}

.emergency-section .emergency-card p a:focus-visible {
  outline: 2px solid #ffd166;
  outline-offset: 4px;
  border-radius: 4px;
}

/* ================================
   Why Choose Card Text Alignment
================================ */

.why-card-body {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
}

.why-card-label {
  min-height: calc(0.74rem * 1.25 * 2);
  line-height: 1.25;
}

.why-card-title {
  min-height: calc(clamp(1.12rem, 1.5vw, 1.36rem) * 1.18 * 3);
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.96);
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.12rem, 1.5vw, 1.36rem);
  font-weight: 700;
  line-height: 1.18;
  text-transform: none;
}

.why-card-description {
  display: grid;
  gap: 0.95rem;
}

.why-card-description p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

@media (max-width: 680px) {
  .why-card-label,
  .why-card-title {
    min-height: 0;
  }
}

/* ================================
   980px Section Copy Consistency
================================ */

.arborists-section .section-heading,
.process-section .section-heading,
.portfolio-header,
.latest-blog-heading {
  max-width: 980px;
}

.arborists-section .section-heading h2,
.process-section .section-heading h2,
.portfolio-header h2,
.latest-blog-heading h2,
.center-cta h2 {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.arborists-section .section-heading p:not(.eyebrow),
.process-section .section-heading p:not(.eyebrow),
.portfolio-header p:not(.eyebrow),
.latest-blog-heading p:not(.eyebrow),
.center-cta p:not(.eyebrow),
.center-cta .cta-trust-line {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

/* Force key section intro and CTA copy to 980px */
.arborists-section .section-heading,
.services-section .section-heading,
.testimonials-section .section-heading,
.process-section .section-heading,
.portfolio-section .portfolio-header,
.latest-blog-section .latest-blog-heading,
.center-cta-section .center-cta {
  width: 100%;
  max-width: 980px !important;
  margin-right: auto;
  margin-left: auto;
}

.arborists-section .section-heading h2,
.services-section .section-heading h2,
.testimonials-section .section-heading h2,
.process-section .section-heading h2,
.portfolio-section .portfolio-header h2,
.latest-blog-section .latest-blog-heading h2,
.center-cta-section .center-cta h2,
.arborists-section .section-heading p:not(.eyebrow),
.services-section .section-heading p:not(.eyebrow),
.testimonials-section .section-heading p:not(.eyebrow),
.process-section .section-heading p:not(.eyebrow),
.portfolio-section .portfolio-header p:not(.eyebrow),
.latest-blog-section .latest-blog-heading p:not(.eyebrow),
.center-cta-section .center-cta p:not(.eyebrow),
.center-cta-section .center-cta .cta-trust-line {
  width: 100%;
  max-width: 980px !important;
  margin-right: auto;
  margin-left: auto;
}

/* Keep the Final CTA panel aligned to the 1280px site container */
.center-cta-section .center-cta {
  width: 100%;
  max-width: 1280px !important;
}

/* ================================
   Footer Grid Layout Refinement
================================ */

.site-footer .footer-grid {
  display: grid;
  width: 100%;
  max-width: 1280px;
  grid-template-columns:
    minmax(360px, 1.3fr)
    minmax(180px, 1fr)
    minmax(220px, 1fr);
  gap: clamp(32px, 4vw, 60px);
  align-items: stretch;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}

.site-footer .footer-brand-column {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 320px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: clamp(28px, 3vw, 36px) clamp(24px, 3vw, 32px);
  overflow: hidden;
  text-align: center;
}

.site-footer .footer-brand-column .footer-logo {
  display: flex;
  width: 100%;
  max-width: 440px;
  min-height: 180px;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px;
  padding: 0;
  overflow: visible;
  line-height: 0;
}

.site-footer .footer-brand-column .footer-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 440px);
  max-height: 120px;
  object-fit: contain;
  object-position: center;
  transform: scale(3);
  transform-origin: center center;
}

.site-footer .footer-description,
.site-footer .footer-brand-column p {
  width: 100%;
  max-width: 34rem;
  margin: 0 auto;
  color: rgba(248, 250, 252, 0.72);
  line-height: 1.7;
  text-align: center;
}

.site-footer .footer-socials,
.site-footer .footer-brand-column .social-links {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 28px auto 0;
}

.site-footer .footer-nav {
  width: 100%;
  min-width: 0;
  align-self: stretch;
}

.site-footer .footer-map-column {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
}

@media (max-width: 1024px) {
  .site-footer .footer-grid {
    grid-template-columns: minmax(300px, 1.15fr) minmax(170px, 1fr) minmax(
        190px,
        1fr
      );
    gap: 32px;
  }

  .site-footer .footer-brand-column {
    min-height: 300px;
  }

  .site-footer .footer-brand-column .footer-logo img {
    max-width: min(100%, 360px);
    max-height: 104px;
    transform: scale(2.35);
  }
}

@media (max-width: 820px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .site-footer .footer-brand-column {
    min-height: 280px;
  }

  .site-footer .footer-nav,
  .site-footer .footer-map-column {
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .site-footer .footer-brand-column {
    min-height: 260px;
    padding: 24px 20px;
  }

  .site-footer .footer-brand-column .footer-logo img {
    max-width: min(100%, 300px);
    max-height: 92px;
    transform: scale(2);
  }
}

/* ================================
   Hero Per-Slide Heading Support
================================ */

.hero-copy .hero-heading {
  max-width: 720px;
  color: var(--color-white);
}

.hero-copy h1.hero-heading {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
}

.hero-copy .hero-heading,
.hero-copy h1.hero-heading,
.hero-copy h2.hero-heading--secondary {
  max-width: 900px;
  margin-bottom: clamp(14px, 1.8vh, 20px);
  font-size: clamp(2.25rem, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy h2.hero-heading--secondary {
  color: var(--color-white);
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
  text-transform: none;
}

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

.hero-subtitle,
.hero-copy p.hero-subtitle {
  max-width: 760px;
}

.hero .trust-badges {
  display: flex;
  width: min(100%, 940px);
  max-width: 940px;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
}

.hero .trust-badges span {
  width: auto;
  min-height: 42px;
  flex: 0 1 auto;
  gap: 8px;
  padding: 9px 13px;
  white-space: nowrap;
  font-size: clamp(0.74rem, 0.82vw, 0.86rem);
}

.hero .trust-badges svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--color-accent);
}

@media (max-width: 1024px) {
  .hero-copy .hero-heading,
  .hero-copy h1.hero-heading,
  .hero-copy h2.hero-heading--secondary {
    max-width: 760px;
    font-size: clamp(2rem, 5vw, 46px);
    line-height: 1.08;
  }

  .hero .trust-badges {
    flex-wrap: wrap;
    max-width: 760px;
  }
}

@media (max-width: 768px) {
  .hero-copy .hero-heading,
  .hero-copy h1.hero-heading,
  .hero-copy h2.hero-heading--secondary {
    font-size: clamp(2rem, 10vw, 42px);
    line-height: 1.08;
  }

  .hero .trust-badges {
    display: flex;
    max-width: 100%;
  }

  .hero .trust-badges span {
    white-space: normal;
    text-wrap: balance;
  }
}

@media (max-width: 480px) {
  .hero-copy .hero-heading,
  .hero-copy h1.hero-heading,
  .hero-copy h2.hero-heading--secondary {
    font-size: clamp(1.9rem, 11vw, 36px);
  }

  .hero .trust-badges {
    align-items: stretch;
  }

  .hero .trust-badges span {
    width: 100%;
  }
}
