@font-face {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/assets/fonts/lexend-latin-400-900.woff2") format("woff2");
}

:root {
  --color-dark: #171a17;
  --color-dark-soft: #242624;
  --color-gold: #c48f1f;
  --color-cream: #f5f1e8;
  --color-muted: #615e57;
  --color-footer-muted: #ccc9bf;
  --color-white: #ffffff;
  --container: min(100% - 140px, 1300px);
  --shadow-soft: 0 20px 50px -32px rgba(23, 26, 23, 0.35);
  --shadow-strong: 0 34px 90px -56px rgba(23, 26, 23, 0.66);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 18px;
  --radius-xl: clamp(30px, 4.2vw, 58px);
  --section-overlap: clamp(22px, 3vw, 42px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--color-dark);
  background: var(--color-white);
  font-family: "Lexend", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

picture {
  display: block;
}

.hero-media picture,
.page-hero-media picture,
.team-card picture {
  width: 100%;
  height: 100%;
}

.process-media picture {
  display: grid;
  place-items: center;
  width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  min-height: 90px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(23, 26, 23, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 90px;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 260px;
}

.brand img {
  width: clamp(210px, 22vw, 275px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-left: auto;
  color: var(--color-dark);
  font-size: 13px;
  line-height: 17px;
}

.site-nav a:first-child {
  font-weight: 700;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--color-gold);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 70;
  width: min(320px, 80vw);
  padding: 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(23, 26, 23, 0.08);
  border-radius: 18px;
  box-shadow: 0 26px 70px -38px rgba(23, 26, 23, 0.62);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-submenu::before {
  content: "";
  position: absolute;
  inset: -18px 0 auto;
  height: 18px;
}

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

.nav-submenu a {
  display: block;
  padding: 12px 14px;
  color: var(--color-dark);
  border-radius: 12px;
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
}

.nav-submenu a:hover,
.nav-submenu a.is-active {
  color: var(--color-dark);
  background: var(--color-cream);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  line-height: 16px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.button-dark {
  color: var(--color-white);
  background: var(--color-dark);
}

.button-light,
.button-white {
  color: var(--color-dark);
  background: var(--color-white);
}

.header-cta {
  width: 220px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  background: var(--color-dark);
  border: 0;
  border-radius: 999px;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-white);
  border-radius: 999px;
}

.section-soft,
.section-white {
  padding-block: clamp(70px, 7.5vw, 108px);
}

section {
  scroll-margin-top: 110px;
}

.section-soft {
  background: var(--color-cream);
}

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

.eyebrow {
  margin: 0;
  color: var(--color-gold);
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 650px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 38px);
  line-height: 1.21;
  letter-spacing: -0.045em;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 26px;
}

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

.hero {
  min-height: 710px;
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 570px) minmax(420px, 600px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(48px, 8vw, 130px);
}

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

.hero h1 {
  margin: 0;
  max-width: 570px;
  color: var(--color-dark);
  font-size: clamp(3rem, 5.2vw, 56px);
  line-height: 1.125;
  letter-spacing: -0.06em;
}

.hero-copy > p:not(.eyebrow) {
  margin: 0;
  max-width: 500px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 62px;
}

.hero-actions .button-dark {
  width: 190px;
}

.hero-actions .button-light {
  width: 180px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.hero-proof article {
  display: grid;
  gap: 4px;
  min-width: min(100%, 190px);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(23, 26, 23, 0.07);
  border-radius: 18px;
  box-shadow: 0 18px 52px -46px rgba(23, 26, 23, 0.52);
}

.hero-proof strong {
  color: var(--color-dark);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.hero-proof span {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
}

.hero-media {
  margin: 0;
  height: 550px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-grid {
  display: grid;
  gap: 40px;
  margin-top: 70px;
}

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

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

.service-card,
.feature-card {
  background: var(--color-cream);
  border-radius: var(--radius-sm);
}

.service-card {
  min-height: 120px;
  padding: 25px 24px;
}

.service-card h3,
.feature-card h3,
.process-steps h3 {
  margin: 0;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: -0.02em;
}

.service-card p,
.feature-card p,
.process-steps p {
  margin: 9px 0 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 18px;
}

.local-seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(280px, 430px);
  align-items: start;
  justify-content: space-between;
  gap: clamp(34px, 6vw, 92px);
}

.local-seo .section-heading {
  max-width: 690px;
}

.local-seo .section-heading p:not(.eyebrow) + p {
  margin-top: 4px;
}

.local-seo-card {
  padding: clamp(26px, 3vw, 38px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(245, 241, 232, 0.96)),
    var(--color-cream);
  border: 1px solid rgba(23, 26, 23, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.local-seo-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.local-seo-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.local-seo-list li {
  position: relative;
  padding-left: 28px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 22px;
}

.local-seo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.57em;
  width: 9px;
  height: 9px;
  background: var(--color-gold);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(196, 143, 31, 0.12);
}

.features {
  padding-block: 75px 80px;
}

.feature-card {
  min-height: 155px;
  padding: 24px 22px;
  background: var(--color-white);
  border-radius: 14px;
}

.feature-card span,
.process-steps span {
  display: block;
  margin-bottom: 28px;
  color: var(--color-gold);
  font-size: 12px;
  line-height: 16px;
  font-weight: 800;
}

.testimonial {
  padding-block: 75px 100px;
  color: var(--color-white);
  background: var(--color-dark);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: minmax(0, 610px) minmax(380px, 580px);
  align-items: start;
  justify-content: space-between;
  gap: 60px;
}

.testimonial h2 {
  margin: 19px 0 0;
  max-width: 610px;
  font-size: clamp(2rem, 3vw, 36px);
  line-height: 1.22;
  letter-spacing: -0.045em;
}

.testimonial blockquote {
  margin: 0;
  min-height: 225px;
  padding: 45px 40px;
  background: var(--color-dark-soft);
  border-radius: var(--radius-md);
}

.testimonial blockquote p {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 21px);
  line-height: 30px;
  font-weight: 600;
}

.testimonial cite {
  display: block;
  margin-top: 34px;
  color: var(--color-gold);
  font-size: 13px;
  line-height: 17px;
  font-style: normal;
}

.process {
  padding-block: 70px 98px;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 790px) minmax(180px, 380px);
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-top: 116px;
}

.process-steps span {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 18px;
}

.process-media {
  margin: 0;
  display: grid;
  place-items: center;
  min-height: 430px;
}

.process-media img {
  width: min(100%, 300px);
  height: auto;
  image-rendering: auto;
}

.warning-cta {
  padding-block: 66px;
  color: var(--color-dark);
  background: var(--color-gold);
}

.warning-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.warning-cta h2 {
  margin: 0;
  max-width: 610px;
  font-size: clamp(2rem, 3.2vw, 38px);
  line-height: 1.21;
  letter-spacing: -0.045em;
}

.warning-cta p {
  margin: 30px 0 0;
  font-size: 17px;
  line-height: 25px;
}

.warning-cta .button {
  width: 235px;
}

.faq {
  padding-block: 75px 70px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 930px) minmax(320px, 360px);
  align-items: start;
  gap: 54px;
}

.faq-list {
  display: grid;
  gap: 18px;
  margin-top: 50px;
}

.faq-item {
  background: var(--color-white);
  border-radius: 10px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 60px;
  padding: 18px 25px;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary span {
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
}

.faq-item summary strong {
  color: var(--color-gold);
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
}

.faq-item[open] summary strong {
  transform: rotate(45deg);
}

.faq-item p {
  margin: -5px 25px 22px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 22px;
}

.contact-panel {
  padding: 30px;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 24px 60px -42px rgba(23, 26, 23, 0.45);
}

.contact-panel h2 {
  margin: 14px 0 12px;
  font-size: 27px;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.contact-panel > p:not(.eyebrow) {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 22px;
}

.contact-form {
  display: grid;
  gap: 11px;
  margin-top: 24px;
}

.contact-form label {
  color: var(--color-dark);
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--color-dark);
  background: var(--color-cream);
  border: 1px solid transparent;
  border-radius: 10px;
  outline: 0;
  transition: border 180ms ease, background 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: var(--color-white);
  border-color: var(--color-gold);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  margin-top: 8px;
}

.form-message {
  margin-top: 18px;
  padding: 13px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 19px;
  font-weight: 700;
}

.form-message-success {
  color: #1b5c34;
  background: #e8f7ee;
}

.form-message-error {
  color: #8b1d1d;
  background: #fae8e8;
}

.hidden-field,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.contact-form .hidden-field {
  display: none;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
}

.site-footer {
  padding-block: 63px 38px;
  color: var(--color-white);
  background: var(--color-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 430px) minmax(280px, 420px);
  justify-content: space-between;
  gap: 60px;
}

.site-footer strong {
  display: block;
  font-size: 22px;
  line-height: 27px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  width: min(100%, 290px);
  padding: 10px 12px;
  background: var(--color-white);
  border-radius: 18px;
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.site-footer p,
.site-footer address {
  margin: 18px 0 0;
  color: var(--color-footer-muted);
  font-size: 14px;
  line-height: 24px;
  font-style: normal;
}

.site-footer address a {
  color: var(--color-white);
}

.footer-bottom {
  margin-top: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: #b2b0a6;
  font-size: 12px;
  line-height: 16px;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-white);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-credit svg {
  width: 14px;
  height: 14px;
  fill: #d7b75a;
}

.footer-credit:hover {
  color: #d7b75a;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  color: var(--color-white);
  background: #21c463;
  border-radius: 999px;
  box-shadow: 0 18px 40px -18px rgba(20, 120, 55, 0.7);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1180px) {
  :root {
    --container: min(100% - 48px, 960px);
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    gap: 22px;
  }

  .hero-grid,
  .local-seo-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    height: min(56vw, 520px);
  }

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

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

  .process-steps {
    margin-top: 70px;
  }

  .process-media {
    min-height: 260px;
  }

  .faq-grid {
    gap: 34px;
  }

  .local-seo-card {
    max-width: 680px;
  }
}

@media (max-width: 840px) {
  :root {
    --container: min(100% - 32px, 620px);
  }

  .site-header,
  .header-inner {
    min-height: 76px;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 16px auto;
    display: grid;
    gap: 0;
    padding: 14px;
    margin: 0;
    background: var(--color-white);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] + .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px;
    border-radius: 12px;
  }

  .site-nav a:hover {
    background: var(--color-cream);
  }

  .nav-dropdown {
    display: grid;
    align-items: stretch;
  }

  .nav-dropdown-trigger {
    justify-content: space-between;
  }

  .nav-dropdown-trigger::after {
    display: none;
  }

  .nav-submenu {
    position: static;
    width: auto;
    margin: -2px 0 10px 14px;
    padding: 6px;
    background: var(--color-cream);
    border: 0;
    border-left: 2px solid rgba(196, 143, 31, 0.34);
    border-radius: 14px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-submenu::before {
    display: none;
  }

  .nav-submenu a {
    padding: 10px 12px;
    font-size: 12px;
    line-height: 16px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .hero-actions {
    padding-top: 24px;
  }

  .hero-proof {
    margin-top: 2px;
  }

  .hero-actions,
  .hero-actions .button,
  .warning-cta .button,
  .contact-form .button {
    width: 100%;
  }

  .card-grid,
  .card-grid-3,
  .card-grid-4,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .card-grid {
    gap: 18px;
    margin-top: 40px;
  }

  .testimonial blockquote {
    padding: 30px 24px;
  }

  .warning-grid,
  .footer-grid {
    align-items: stretch;
    flex-direction: column;
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 520px) {
  .button {
    min-height: 52px;
  }

  .hero-media {
    height: 330px;
  }

  .section-heading h2,
  .testimonial h2,
  .warning-cta h2 {
    font-size: 2rem;
  }

  .process-steps {
    gap: 22px;
    margin-top: 44px;
  }

  .faq-item summary {
    padding-inline: 18px;
  }

  .faq-item p {
    margin-inline: 18px;
  }

  .contact-panel {
    padding: 24px;
  }
}

/* Modern polish and internal pages */
.site-header {
  box-shadow: 0 18px 60px -54px rgba(23, 26, 23, 0.65);
}

.site-nav a:first-child {
  font-weight: inherit;
}

.site-nav a.is-active {
  color: var(--color-gold);
  font-weight: 800;
}

.button-gold {
  color: var(--color-dark);
  background: var(--color-gold);
}

.button-gold:hover {
  background: #d4a02f;
}

.hero-media,
.page-hero-media,
.contact-panel,
.service-card,
.feature-card,
.solution-card,
.team-card,
.value-card {
  box-shadow: 0 24px 70px -52px rgba(23, 26, 23, 0.55);
}

.service-card,
.feature-card,
.solution-card,
.team-card,
.value-card {
  border: 1px solid rgba(23, 26, 23, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.feature-card:hover,
.solution-card:hover,
.team-card:hover,
.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 143, 31, 0.24);
  box-shadow: 0 28px 80px -48px rgba(23, 26, 23, 0.7);
}

.section-soft {
  background:
    radial-gradient(circle at 92% 12%, rgba(196, 143, 31, 0.08), transparent 28%),
    var(--color-cream);
}

.hero {
  background:
    linear-gradient(120deg, rgba(245, 241, 232, 0.97) 0%, rgba(245, 241, 232, 0.86) 100%),
    radial-gradient(circle at 78% 18%, rgba(196, 143, 31, 0.2), transparent 30%);
}

.page-hero {
  min-height: clamp(430px, 48vw, 545px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.page-hero-soft {
  background:
    linear-gradient(120deg, rgba(245, 241, 232, 0.98), rgba(245, 241, 232, 0.9)),
    radial-gradient(circle at 88% 18%, rgba(196, 143, 31, 0.18), transparent 34%);
}

.page-hero-dark {
  color: var(--color-white);
  background:
    radial-gradient(circle at 82% 16%, rgba(196, 143, 31, 0.22), transparent 30%),
    linear-gradient(135deg, #111410 0%, var(--color-dark) 58%, #262416 100%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(360px, 520px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(42px, 7vw, 110px);
}

.page-hero-copy {
  display: grid;
  gap: 22px;
  align-items: start;
}

.page-hero-copy h1 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(2.65rem, 5vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.06em;
}

.page-hero-copy > p:not(.eyebrow) {
  margin: 0;
  max-width: 470px;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 27px;
}

.page-hero-dark .page-hero-copy > p:not(.eyebrow) {
  color: #d1cfc4;
}

.page-hero-media {
  position: relative;
  margin: 0;
  height: clamp(310px, 35vw, 430px);
  overflow: hidden;
  border-radius: 28px;
  isolation: isolate;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: inherit;
  pointer-events: none;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.page-hero-media-raised {
  transform: rotate(1.25deg);
}

.page-hero-media-portrait img {
  object-position: center 42%;
}

.internal-section {
  padding-block: clamp(76px, 8vw, 120px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(360px, 580px);
  align-items: start;
  justify-content: space-between;
  gap: clamp(42px, 7vw, 100px);
}

.about-intro .section-heading p {
  max-width: 520px;
}

.value-stack {
  display: grid;
  gap: 18px;
}

.value-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 20px;
  padding: 26px;
  background: var(--color-cream);
  border-radius: 18px;
}

.value-card span {
  grid-row: span 2;
  color: var(--color-gold);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.value-card h3,
.team-card h3,
.solution-card h3,
.process-line h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.value-card p,
.team-card p,
.solution-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 22px;
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(220px, 270px) minmax(360px, 580px) minmax(260px, 360px);
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
}

.team-layout h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.055em;
}

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

.team-card {
  padding: 18px;
  background: var(--color-white);
  border-radius: 18px;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  border-radius: 14px;
  object-position: center 18%;
}

.team-card h3 {
  margin-top: 18px;
  font-size: 18px;
}

.team-card p {
  margin-top: 7px;
  font-size: 13px;
}

.quote-panel {
  margin: 0;
  padding: 34px;
  color: var(--color-dark);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(23, 26, 23, 0.06);
  border-radius: 22px;
}

.quote-panel p {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 27px);
  line-height: 1.28;
  letter-spacing: -0.045em;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: 54px;
}

.solution-card {
  min-height: 215px;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0)),
    var(--color-cream);
  border-radius: 22px;
}

.solution-card span,
.process-line span {
  display: block;
  margin-bottom: 30px;
  color: var(--color-gold);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.solution-card p {
  margin-top: 16px;
}

.steps-strip {
  position: relative;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 66px;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  height: 1px;
  background: linear-gradient(90deg, rgba(196, 143, 31, 0.55), rgba(196, 143, 31, 0.05));
}

.process-line article {
  position: relative;
  padding-top: 28px;
}

.process-line article::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 13px;
  height: 13px;
  background: var(--color-gold);
  border: 4px solid var(--color-cream);
  border-radius: 999px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 470px) minmax(380px, 560px);
  align-items: start;
  justify-content: space-between;
  gap: clamp(42px, 7vw, 100px);
}

.contact-methods {
  display: grid;
  gap: 34px;
}

.contact-method {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  border-left: 2px solid rgba(196, 143, 31, 0.38);
}

.contact-method span {
  color: var(--color-gold);
  font-size: 13px;
  line-height: 18px;
  font-weight: 800;
}

.contact-method a,
.contact-method p {
  margin: 0;
  color: var(--color-dark);
  font-size: 16px;
  line-height: 24px;
}

.phone-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.phone-links a + a::before {
  content: "|";
  margin-right: 12px;
  color: rgba(23, 26, 23, 0.35);
}

.contact-panel-large {
  padding: clamp(30px, 4.4vw, 48px);
  background: var(--color-cream);
}

.contact-panel-large input,
.contact-panel-large textarea {
  background: var(--color-white);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 1180px) {
  .page-hero-grid,
  .two-column,
  .team-layout,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-media {
    height: min(58vw, 480px);
  }

  .team-layout {
    align-items: start;
  }

  .team-grid {
    max-width: 640px;
  }
}

@media (max-width: 840px) {
  .site-nav a.is-active {
    background: var(--color-cream);
  }

  .page-hero {
    padding-block: 42px;
  }

  .page-hero-copy h1 {
    font-size: clamp(2.35rem, 10vw, 3.4rem);
  }

  .page-hero-media-raised {
    transform: none;
  }

  .solution-grid,
  .team-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .process-line {
    gap: 22px;
  }

  .process-line::before {
    left: 6px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }

  .process-line article {
    padding: 0 0 0 36px;
  }

  .process-line article::before {
    left: 0;
    top: 2px;
  }

  .team-card img {
    max-height: 360px;
  }
}

@media (max-width: 520px) {
  .page-hero-media {
    height: 300px;
    border-radius: 20px;
  }

  .solution-card,
  .value-card,
  .quote-panel {
    padding: 24px;
  }

  .contact-method a,
  .contact-method p {
    font-size: 14px;
    line-height: 22px;
  }

  .phone-links {
    display: grid;
    gap: 6px;
  }

  .phone-links a + a::before {
    content: none;
  }
}

/* Layout polish pass */
h1,
h2,
.page-hero-copy h1,
.hero h1,
.warning-cta h2 {
  font-family: inherit;
  font-weight: 800;
}

.button-outline {
  color: currentColor;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.button-outline:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.warning-card .button-outline {
  color: var(--color-white);
}

.page-home {
  background: var(--color-cream);
}

.page-home .hero {
  position: relative;
  min-height: auto;
  padding-block: clamp(70px, 8vw, 116px) clamp(96px, 10vw, 150px);
  overflow: hidden;
  isolation: isolate;
}

.page-home .hero::before,
.page-home .hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.page-home .hero::before {
  width: clamp(260px, 34vw, 520px);
  height: clamp(260px, 34vw, 520px);
  right: -140px;
  top: 32px;
  background: rgba(196, 143, 31, 0.18);
}

.page-home .hero::after {
  width: clamp(180px, 24vw, 360px);
  height: clamp(180px, 24vw, 360px);
  left: -160px;
  bottom: 20px;
  background: rgba(23, 26, 23, 0.07);
}

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

.page-home .hero-copy {
  max-width: 590px;
}

.page-home .hero h1,
.page-hero-copy h1 {
  letter-spacing: -0.045em;
}

.page-home .hero-copy > p:not(.eyebrow) {
  max-width: 530px;
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
}

  .page-home .hero-actions {
    padding-top: clamp(22px, 4vw, 54px);
  }

  .page-home .hero-proof {
    margin-top: clamp(0px, 1vw, 8px);
  }

.page-home .hero-media {
  position: relative;
  height: clamp(410px, 42vw, 585px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
  transform: rotate(0.65deg);
}

.page-home .hero-media::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: calc(var(--radius-xl) - 12px);
  pointer-events: none;
}

.page-home .services,
.page-home .inss-highlight,
.page-home .local-seo,
.page-home .features,
.page-home .testimonial,
.page-home .process,
.page-home .warning-cta,
.page-home .faq,
.page-home .site-footer {
  position: relative;
  margin-top: calc(var(--section-overlap) * -1);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
}

.page-home .services,
.page-home .inss-highlight,
.page-home .local-seo,
.page-home .features,
.page-home .process,
.page-home .warning-cta,
.page-home .faq {
  padding-top: clamp(88px, 9vw, 132px);
}

.page-home .inss-highlight {
  z-index: 2;
}

.page-home .services {
  z-index: 3;
  box-shadow: 0 -18px 48px -42px rgba(23, 26, 23, 0.45);
}

.page-home .local-seo {
  z-index: 4;
}

.page-home .features {
  z-index: 5;
  background:
    radial-gradient(circle at 11% 12%, rgba(196, 143, 31, 0.11), transparent 24%),
    radial-gradient(circle at 91% 80%, rgba(23, 26, 23, 0.06), transparent 26%),
    var(--color-cream);
}

.page-home .testimonial {
  z-index: 6;
  padding-block: clamp(92px, 9vw, 128px) clamp(108px, 10vw, 150px);
  background:
    radial-gradient(circle at 78% 16%, rgba(196, 143, 31, 0.2), transparent 27%),
    linear-gradient(135deg, #11140f 0%, #171a17 55%, #2b2819 100%);
}

.page-home .process {
  z-index: 7;
  padding-bottom: clamp(108px, 9vw, 140px);
}

.page-home .warning-cta {
  z-index: 8;
  padding-bottom: clamp(92px, 8vw, 122px);
  color: var(--color-white);
  background:
    linear-gradient(180deg, var(--color-white) 0%, var(--color-cream) 100%);
}

.page-home .faq {
  z-index: 9;
}

.page-home .site-footer {
  z-index: 10;
}

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

.page-home .section-heading h2 {
  max-width: 720px;
  line-height: 1.15;
}

.service-card,
.feature-card {
  position: relative;
  overflow: hidden;
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 188px;
  padding: clamp(26px, 3vw, 34px);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.78), rgba(245, 241, 232, 0.78)),
    var(--color-cream);
  border-radius: 28px;
}

.service-card::before {
  content: "";
  width: 54px;
  height: 5px;
  margin-bottom: 28px;
  background: var(--color-gold);
  border-radius: 999px;
}

.service-card::after,
.feature-card::after {
  content: "";
  position: absolute;
  width: 148px;
  height: 148px;
  right: -72px;
  bottom: -84px;
  background: rgba(196, 143, 31, 0.1);
  border-radius: 999px;
  pointer-events: none;
}

.service-card h3,
.feature-card h3,
.process-steps h3 {
  line-height: 1.2;
}

.service-card p {
  max-width: 310px;
  margin-top: 14px;
  font-size: 14px;
  line-height: 22px;
}

.services .card-grid-3 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.inss-highlight {
  position: relative;
  z-index: 2;
  padding-block: clamp(70px, 7.5vw, 108px);
}

.inss-highlight-card {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.58fr);
  align-items: stretch;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(30px, 5vw, 62px);
  color: var(--color-white);
  background:
    radial-gradient(circle at 88% 14%, rgba(196, 143, 31, 0.28), transparent 32%),
    linear-gradient(135deg, #111410 0%, var(--color-dark) 58%, #2d2918 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  isolation: isolate;
}

.inss-highlight-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: calc(var(--radius-xl) - 10px);
  pointer-events: none;
}

.inss-highlight-copy,
.inss-highlight-aside {
  position: relative;
  z-index: 1;
}

.inss-highlight-copy {
  display: grid;
  align-content: center;
  gap: 20px;
}

.inss-highlight-copy .eyebrow {
  color: #f0c76b;
}

.inss-highlight h2 {
  margin: 0;
  max-width: 760px;
  color: var(--color-white);
  font-size: clamp(2.2rem, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.inss-highlight p:not(.eyebrow) {
  margin: 0;
  max-width: 660px;
  color: #e7e0d2;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.7;
}

.inss-highlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.inss-highlight-aside {
  display: grid;
  align-content: center;
  padding: clamp(24px, 3.4vw, 34px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
}

.inss-highlight-aside span {
  display: inline-flex;
  width: fit-content;
  padding: 9px 14px;
  color: var(--color-dark);
  background: var(--color-gold);
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.inss-highlight-aside ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.inss-highlight-aside li {
  position: relative;
  padding-left: 24px;
  color: var(--color-white);
  font-size: 15px;
  line-height: 23px;
  font-weight: 700;
}

.inss-highlight-aside li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  background: var(--color-gold);
  border-radius: 999px;
}

.feature-card {
  min-height: 218px;
  padding: clamp(24px, 2.8vw, 30px);
  border-radius: 26px;
}

.feature-card span {
  display: inline-grid;
  width: fit-content;
  min-width: 48px;
  min-height: 36px;
  place-items: center;
  margin-bottom: 30px;
  padding-inline: 12px;
  color: var(--color-dark);
  background: rgba(196, 143, 31, 0.16);
  border-radius: 999px;
}

.feature-card p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 22px;
}

.testimonial blockquote {
  position: relative;
  min-height: auto;
  padding: clamp(34px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  box-shadow: 0 30px 80px -60px rgba(0, 0, 0, 0.8);
}

.testimonial blockquote::before {
  content: "";
  display: block;
  width: 70px;
  height: 5px;
  margin-bottom: 32px;
  background: var(--color-gold);
  border-radius: 999px;
}

.process-grid {
  grid-template-columns: minmax(0, 760px) minmax(240px, 380px);
}

.process-steps {
  gap: 16px;
  margin-top: clamp(46px, 6vw, 70px);
}

.process-steps article {
  position: relative;
  padding: 24px 18px 22px;
  background: var(--color-white);
  border: 1px solid rgba(23, 26, 23, 0.06);
  border-radius: 24px;
  box-shadow: 0 24px 68px -56px rgba(23, 26, 23, 0.55);
}

.process-steps span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--color-dark);
  background: rgba(196, 143, 31, 0.16);
  border-radius: 999px;
  font-size: 12px;
}

.process-steps p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 22px;
}

.process-media {
  min-height: 390px;
  background:
    radial-gradient(circle at 50% 45%, rgba(196, 143, 31, 0.16), transparent 40%),
    linear-gradient(145deg, rgba(245, 241, 232, 0.95), rgba(245, 241, 232, 0.45));
  border: 1px solid rgba(23, 26, 23, 0.06);
  border-radius: var(--radius-xl);
}

.warning-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(30px, 5vw, 72px);
  padding: clamp(30px, 5vw, 66px);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 14%, rgba(196, 143, 31, 0.34), transparent 32%),
    linear-gradient(135deg, #11140f 0%, #171a17 52%, #2f2a18 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
}

.warning-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: calc(var(--radius-xl) - 10px);
  pointer-events: none;
}

.warning-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -120px;
  bottom: -120px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.warning-copy,
.warning-aside {
  position: relative;
  z-index: 1;
}

.warning-copy .eyebrow {
  color: #f0c76b;
}

.warning-cta h2 {
  max-width: 650px;
  color: var(--color-white);
  font-size: clamp(2.25rem, 4.6vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.warning-cta p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #e7e0d2;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.7;
}

.warning-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.warning-cta .button {
  width: auto;
  min-width: 190px;
}

.warning-aside {
  align-self: stretch;
  padding: clamp(24px, 3.5vw, 34px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
}

.warning-aside-kicker {
  display: block;
  color: #f0c76b;
  font-size: 12px;
  line-height: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.warning-aside ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.warning-aside li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  font-size: 15px;
  line-height: 21px;
  font-weight: 700;
}

.warning-aside li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  background: var(--color-gold);
  border-radius: 999px;
}

.warning-note {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.faq-item {
  border-radius: 18px;
  box-shadow: 0 18px 60px -56px rgba(23, 26, 23, 0.4);
}

.faq-item summary {
  border-radius: 18px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 20px, 0) scale(0.988);
  transition: opacity 760ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 760ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 1180px) {
  .page-home .hero-media {
    transform: none;
  }

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

  .inss-highlight-card {
    grid-template-columns: 1fr;
  }

  .inss-highlight-aside {
    max-width: 720px;
  }

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

  .warning-card {
    grid-template-columns: 1fr;
  }

  .warning-aside {
    max-width: 680px;
  }
}

@media (max-width: 840px) {
  .page-home .hero {
    padding-block: 46px 86px;
  }

  .page-home .services,
  .page-home .inss-highlight,
  .page-home .local-seo,
  .page-home .features,
  .page-home .testimonial,
  .page-home .process,
  .page-home .warning-cta,
  .page-home .faq,
  .page-home .site-footer {
    margin-top: -24px;
    border-radius: 30px 30px 0 0;
  }

  .page-home .services,
  .page-home .inss-highlight,
  .page-home .local-seo,
  .page-home .features,
  .page-home .process,
  .page-home .warning-cta,
  .page-home .faq {
    padding-top: 72px;
  }

  .page-home .hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.65rem);
  }

  .page-home .hero-media {
    height: min(74vw, 430px);
    border-radius: 30px;
  }

  .service-card,
  .feature-card {
    min-height: auto;
  }

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

  .inss-highlight-card {
    border-radius: 30px;
  }

  .inss-highlight-card::before {
    inset: 10px;
    border-radius: 22px;
  }

  .inss-highlight-actions,
  .inss-highlight-actions .button {
    width: 100%;
  }

  .process-steps article {
    padding: 22px;
  }

  .process-media {
    min-height: 270px;
  }

  .warning-card {
    border-radius: 30px;
  }

  .warning-card::before {
    inset: 10px;
    border-radius: 22px;
  }

  .warning-actions,
  .warning-cta .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .page-home .hero-media {
    height: 320px;
  }

  .warning-card,
  .warning-aside,
  .inss-highlight-aside {
    border-radius: 24px;
  }

  .warning-cta h2,
  .inss-highlight h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .warning-aside li {
    font-size: 14px;
  }
}

a.service-card,
a.solution-card {
  display: block;
  color: inherit;
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  color: var(--color-gold);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.card-link::after {
  content: "→";
  margin-left: 8px;
  transform: translateX(0);
  transition: transform 180ms ease;
}

a.service-card:hover .card-link::after,
a.solution-card:hover .card-link::after {
  transform: translateX(4px);
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.service-hero-media img {
  object-position: center;
}

.service-section-title {
  margin: 0;
  color: var(--color-dark);
  font-size: clamp(2rem, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.05em;
  font-weight: 850;
}

.service-subservices-heading {
  max-width: 820px;
}

.subservice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.subservice-card,
.service-proof-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 26, 23, 0.07);
  box-shadow: var(--shadow-soft);
}

.subservice-card {
  min-height: 260px;
  padding: clamp(26px, 3vw, 34px);
  background:
    radial-gradient(circle at 100% 0%, rgba(196, 143, 31, 0.15), transparent 34%),
    var(--color-cream);
  border-radius: 24px;
}

.subservice-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--color-dark);
  background: rgba(196, 143, 31, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.subservice-card h2 {
  margin: 34px 0 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.subservice-card p {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 23px;
}

.service-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(430px, 670px);
  align-items: start;
  justify-content: space-between;
  gap: clamp(38px, 7vw, 90px);
}

.service-proof-cards {
  display: grid;
  gap: 18px;
}

.service-proof-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
}

.service-proof-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.service-proof-card p {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 23px;
}

.service-faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 410px) minmax(0, 820px);
  align-items: start;
  justify-content: space-between;
  gap: clamp(38px, 7vw, 84px);
}

.faq-load-more {
  margin-top: 28px;
}

.service-final-cta {
  padding-block: clamp(76px, 8vw, 112px);
  color: var(--color-white);
  background:
    radial-gradient(circle at 86% 12%, rgba(196, 143, 31, 0.24), transparent 30%),
    linear-gradient(135deg, #111410 0%, var(--color-dark) 62%, #2b2819 100%);
}

.service-final-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(28px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
}

.service-final-cta h2 {
  margin: 12px 0 0;
  max-width: 760px;
  font-size: clamp(2rem, 3.3vw, 40px);
  line-height: 1.14;
  letter-spacing: -0.05em;
}

.service-final-cta p:not(.eyebrow) {
  margin: 14px 0 0;
  max-width: 650px;
  color: #d8d5ca;
  font-size: 15px;
  line-height: 24px;
}

.service-final-cta .button {
  flex: 0 0 auto;
}

.city-hero {
  position: relative;
}

.city-hero-media img {
  object-position: center;
}

.city-snapshot {
  position: relative;
  z-index: 2;
  margin-top: -42px;
}

.city-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.city-snapshot article {
  padding: 24px;
  color: var(--color-dark);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 26, 23, 0.07);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.city-snapshot span {
  display: block;
  color: var(--color-gold);
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.city-snapshot p {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 22px;
}

.city-section-heading {
  max-width: 860px;
}

.city-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.city-pillar-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 28px;
  min-height: 100%;
  padding: clamp(26px, 3vw, 34px);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(196, 143, 31, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(245, 241, 232, 0.76));
  border: 1px solid rgba(23, 26, 23, 0.07);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.city-pillar-card::before {
  content: "";
  width: 58px;
  height: 5px;
  background: var(--color-gold);
  border-radius: 999px;
}

.city-pillar-card span {
  display: block;
  margin-top: 4px;
  color: var(--color-dark);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.15;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.city-pillar-card p {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 23px;
}

.city-pillar-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.city-pillar-card li {
  padding: 8px 11px;
  color: var(--color-dark);
  background: rgba(196, 143, 31, 0.13);
  border: 1px solid rgba(196, 143, 31, 0.14);
  border-radius: 999px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 800;
}

.city-pillar-card > a {
  width: fit-content;
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 900;
}

.city-pillar-card > a::after {
  content: " ->";
  color: var(--color-gold);
}

.city-problems-grid,
.city-region-grid {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(0, 760px);
  align-items: start;
  justify-content: space-between;
  gap: clamp(38px, 7vw, 90px);
}

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

.city-problem-list article {
  position: relative;
  min-height: 118px;
  padding: 24px 24px 24px 50px;
  color: var(--color-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 26, 23, 0.07);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  font-size: 15px;
  line-height: 22px;
  font-weight: 750;
}

.city-problem-list article::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 31px;
  width: 10px;
  height: 10px;
  background: var(--color-gold);
  border-radius: 999px;
}

.city-link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-link-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 15px;
  color: var(--color-dark);
  background: var(--color-cream);
  border: 1px solid rgba(23, 26, 23, 0.08);
  border-radius: 999px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 800;
}

.city-link-cloud a:hover,
.city-link-cloud a.is-active {
  color: var(--color-white);
  background: var(--color-dark);
  border-color: var(--color-dark);
}

.city-final-cta {
  margin-top: 0;
}

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

  .service-proof-grid,
  .service-faq-grid,
  .city-problems-grid,
  .city-region-grid {
    grid-template-columns: 1fr;
  }

  .service-faq-grid .faq-load-group {
    max-width: 900px;
  }

  .city-pillar-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .service-hero-actions,
  .service-hero-actions .button {
    width: 100%;
  }

  .subservice-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 40px;
  }

  .subservice-card {
    min-height: auto;
  }

  .city-snapshot {
    margin-top: -24px;
  }

  .city-snapshot-grid,
  .city-problem-list {
    grid-template-columns: 1fr;
  }

  .city-pillar-grid {
    gap: 18px;
    margin-top: 40px;
  }

  .service-final-cta-card {
    align-items: stretch;
    flex-direction: column;
  }

  .service-final-cta .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .service-section-title,
  .service-final-cta h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .subservice-card,
  .service-proof-card,
  .service-final-cta-card,
  .city-pillar-card,
  .city-snapshot article,
  .city-problem-list article {
    border-radius: 22px;
  }

  .city-link-cloud a {
    width: 100%;
    justify-content: center;
  }
}

h2,
.section-heading h2,
.testimonial h2,
.contact-panel h2,
.team-layout h2,
.warning-cta h2 {
  font-weight: 800;
}

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

  .button,
  .service-card,
  .feature-card,
  .solution-card,
  .subservice-card,
  .service-proof-card,
  .team-card,
  .value-card,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
