:root {
  --carbon: #090b0d;
  --asphalt: #171a1e;
  --graphite: #252a2f;
  --steel: #59636d;
  --paper: #f5f6f4;
  --paper-deep: #e9ecee;
  --white: #ffffff;
  --signal: #9d2940;
  --signal-dark: #6f1d2e;
  --signal-bright: #d36376;
  --signal-hover: #812236;
  --signal-tint: #f5e9ec;
  --amber: var(--signal);
  --amber-dark: var(--signal-dark);
  --line: #d2d7db;
  --line-dark: rgba(255, 255, 255, 0.18);
  --whatsapp: var(--carbon);
  --font-display: "Arial Narrow", "Avenir Next Condensed", "Roboto Condensed", "Franklin Gothic Medium", sans-serif;
  --font-body: "Avenir Next", Inter, "Segoe UI", Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 80px));
  --section-space: clamp(76px, 8vw, 120px);
  --radius-sm: 2px;
  --radius: 6px;
  --radius-lg: 12px;
  --ease: 200ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--carbon);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea {
  font-family: var(--font-body);
}

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

figure,
h1,
h2,
h3,
p,
dl,
dd,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

address {
  font-style: normal;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

button {
  cursor: pointer;
}

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

.section-shell,
.header-inner,
.footer-inner {
  width: var(--shell);
  margin-inline: auto;
}

.page-section {
  position: relative;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -100px;
  left: 18px;
  padding: 12px 18px;
  border: 2px solid var(--carbon);
  background: var(--amber);
  color: var(--white);
  font-weight: 800;
  transition: top var(--ease);
}

.skip-link:focus {
  top: 18px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.eyebrow,
.card-index {
  color: var(--amber-dark);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 22px;
  height: 2px;
  margin: 0 10px 3px 0;
  background: currentColor;
  content: "";
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
  scroll-margin-top: 110px;
}

.section-intro h2,
.about-copy h2,
.trusted-heading-grid h2,
.location-copy h2,
.blog-cta-copy h2 {
  max-width: 760px;
  margin-top: 20px;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 80px;
  align-items: end;
}

.split-intro > p,
.gallery-intro > p:last-child {
  max-width: 510px;
  color: var(--steel);
  font-size: 1.05rem;
  line-height: 1.65;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.outline-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1.2;
  transition: background-color var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}

.button:hover,
.outline-button:hover {
  transform: translateY(-2px);
}

.button:active,
.outline-button:active {
  transform: translateY(0);
}

.button-primary {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--white);
}

.button-primary:hover {
  border-color: var(--signal-hover);
  background: var(--signal-hover);
}

.button-secondary,
.outline-button {
  border-color: var(--carbon);
  background: var(--carbon);
  color: var(--white);
}

.button-secondary:hover,
.outline-button:hover {
  background: var(--graphite);
}

.button-ghost-light,
.outline-button.light {
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
  color: var(--white);
}

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

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  color: var(--carbon);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.3;
  transition: color var(--ease), gap var(--ease);
}

.text-link:hover {
  gap: 14px;
  color: var(--amber-dark);
}

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

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(17, 19, 21, 0.12);
  background: var(--white);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: inline-flex;
  min-width: 180px;
  align-items: center;
}

.site-logo img {
  width: 118px;
  height: 60px;
  object-fit: cover;
  object-position: center;
}

.site-nav,
.nav-links,
.header-actions {
  display: flex;
  align-items: center;
}

.site-nav {
  flex: 1;
  justify-content: flex-end;
  gap: clamp(28px, 4vw, 62px);
}

.nav-links {
  gap: clamp(20px, 2.4vw, 38px);
}

.nav-link {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #323638;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 3px;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  gap: 20px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.header-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 3px var(--signal);
}

.header-call {
  display: flex;
  min-height: 54px;
  min-width: 164px;
  flex-direction: column;
  justify-content: center;
  padding: 7px 16px;
  border: 1px solid var(--carbon);
  background: var(--carbon);
  color: var(--white);
  transition: background-color var(--ease), color var(--ease);
}

.header-call span {
  color: #c8c8c6;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-call strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.025em;
}

.header-call:hover {
  background: var(--amber);
  color: var(--white);
}

.header-call:hover span {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 9px;
  border: 1px solid var(--carbon);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--carbon);
}

.menu-toggle i {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform var(--ease), opacity var(--ease);
}

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

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

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

/* Home */
.home-hero {
  position: relative;
  display: grid;
  min-height: min(820px, calc(100svh - 86px));
  overflow: hidden;
  background: var(--carbon);
  color: var(--white);
}

.home-hero-image,
.home-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-image {
  object-fit: cover;
  object-position: 61% 52%;
}

.home-hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 12, 13, 0.96) 0%, rgba(10, 12, 13, 0.82) 40%, rgba(10, 12, 13, 0.2) 72%, rgba(10, 12, 13, 0.08) 100%),
    linear-gradient(0deg, rgba(10, 12, 13, 0.36), transparent 45%);
}

.home-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  align-items: center;
  padding-block: 68px;
}

.home-hero-copy {
  width: min(730px, 64%);
}

.home-hero-copy .eyebrow,
.contact-intro .eyebrow,
.blog-cta-copy .eyebrow,
.footer-cta .eyebrow {
  color: var(--signal-bright);
}

.services-intro .eyebrow {
  color: var(--signal-dark);
}

.home-hero-copy h1 {
  margin-top: 25px;
  font-size: clamp(4rem, 7.2vw, 7rem);
  letter-spacing: -0.055em;
  line-height: 0.86;
  text-transform: uppercase;
}

.home-hero-copy h1 span {
  color: var(--signal-bright);
}

.home-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 32px;
  color: #e6e6e2;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.6;
}

.home-hero-copy .button-group {
  margin-top: 36px;
}

.hero-proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 54px;
  border-top: 1px solid var(--line-dark);
}

.hero-proof-list li {
  padding: 22px 18px 0 0;
}

.hero-proof-list li + li {
  padding-left: 22px;
  border-left: 1px solid var(--line-dark);
}

.hero-proof-list strong,
.hero-proof-list span {
  display: block;
}

.hero-proof-list strong {
  font-family: var(--font-display);
  font-size: 1.13rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.hero-proof-list span {
  margin-top: 3px;
  color: #bcbfbe;
  font-size: 0.75rem;
}

.home-services {
  padding-block: var(--section-space);
  background: var(--paper);
}

.home-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 64px;
}

.home-highlight {
  border-top: 4px solid var(--carbon);
  background: var(--white);
  transition: transform var(--ease), box-shadow var(--ease);
}

.home-highlight:hover {
  box-shadow: 0 18px 50px rgba(17, 19, 21, 0.1);
  transform: translateY(-5px);
}

.home-highlight-media {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.home-highlight-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.home-highlight:hover img {
  transform: scale(1.035);
}

.home-highlight-copy {
  min-height: 235px;
  padding: 28px 28px 30px;
}

.home-highlight-copy h3 {
  margin-top: 18px;
  font-size: 1.9rem;
  line-height: 1.02;
}

.home-highlight-copy > p:last-child {
  margin-top: 18px;
  color: var(--steel);
  font-size: 0.94rem;
}

.section-link {
  margin-top: 32px;
}

.about-section {
  padding-block: var(--section-space);
  background: var(--white);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(54px, 7vw, 104px);
  align-items: center;
}

.about-copy h2 {
  max-width: 580px;
}

.about-copy p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 22px;
  color: #4f5559;
}

.about-copy .lead {
  padding-left: 20px;
  border-left: 3px solid var(--amber);
  color: var(--carbon);
  font-size: 1.13rem;
  font-weight: 600;
}

.about-media {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper-deep);
}

.about-media img {
  height: 100%;
  min-height: 580px;
  object-fit: cover;
}

.about-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 20px;
  background: var(--amber);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
}

.about-media figcaption span {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trusted-section {
  padding-block: var(--section-space);
  border-top: 7px solid var(--signal);
  background: var(--paper-deep);
  color: var(--carbon);
}

.trusted-heading-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
  gap: 84px;
}

.trusted-heading-grid .eyebrow {
  color: var(--signal-dark);
}

.trusted-summary > p {
  color: var(--steel);
  font-size: 1.02rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.stat {
  padding-top: 22px;
}

.stat + .stat {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  color: var(--amber);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.stat span {
  margin-top: 8px;
  color: var(--steel);
  font-size: 0.72rem;
  line-height: 1.35;
}

.trusted-media {
  position: relative;
  height: clamp(400px, 42vw, 580px);
  margin-top: 64px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.trusted-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 6, 6, 0.65), transparent 38%);
  content: "";
}

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

.trusted-media figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 24px;
  padding: 10px 14px;
  border-left: 3px solid var(--signal-bright);
  background: rgba(17, 19, 21, 0.88);
  font-size: 0.82rem;
  font-weight: 700;
}

/* Location */
.location-section {
  padding-block: var(--section-space);
  background: var(--paper);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 7vw, 100px);
  align-items: center;
}

.location-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 24px;
  color: var(--steel);
  font-size: 1.02rem;
}

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

.location-details div {
  padding-top: 14px;
  border-top: 2px solid var(--carbon);
}

.location-details dt {
  color: var(--amber-dark);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-details dd {
  margin-top: 8px;
  color: #3f4447;
  font-size: 0.9rem;
  line-height: 1.5;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 34px;
}

.location-map-wrap {
  position: relative;
  padding: 12px 12px 0 0;
}

.location-map-wrap::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 44%;
  height: 52%;
  background: var(--amber);
  content: "";
}

.location-coordinate {
  position: relative;
  z-index: 3;
  display: inline-block;
  margin-bottom: 10px;
  color: var(--steel);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.map-frame {
  position: relative;
  z-index: 2;
  aspect-ratio: 1.48 / 1;
  overflow: hidden;
  border: 1px solid var(--carbon);
  background: #dfe4e2;
}

.map-frame iframe,
.map-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-frame iframe {
  z-index: 2;
  border: 0;
}

.map-fallback {
  z-index: 1;
  object-fit: cover;
}

.map-actions {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.map-action {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 17px;
  border: 1px solid var(--carbon);
  background: var(--white);
  color: var(--carbon);
  font-size: 0.82rem;
  font-weight: 800;
  transition: background-color var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}

.map-action:hover {
  border-color: var(--signal);
  color: var(--signal-dark);
  transform: translateY(-2px);
}

.map-action-primary {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--white);
}

.map-action-primary:hover {
  border-color: var(--signal-hover);
  background: var(--signal-hover);
  color: var(--white);
}

/* Services */
.services-hero {
  padding-block: 104px 112px;
  border-bottom: 7px solid var(--carbon);
  background: var(--paper-deep);
  color: var(--carbon);
}

.services-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: 86px;
  align-items: end;
}

.services-intro h1 {
  max-width: 780px;
  margin-top: 22px;
  font-size: clamp(3.9rem, 7vw, 6.8rem);
  text-transform: uppercase;
}

.services-intro-copy > p {
  color: var(--steel);
  font-size: 1.05rem;
}

.services-intro-copy .button {
  margin-top: 30px;
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 76px;
}

.service-feature-card {
  overflow: hidden;
  border-top: 4px solid var(--amber);
  background: var(--white);
  color: var(--carbon);
}

.service-feature-media {
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
}

.service-feature-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-feature-card:hover img {
  transform: scale(1.035);
}

.service-feature-copy {
  min-height: 245px;
  padding: 28px;
}

.service-feature-copy h2 {
  margin-top: 19px;
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
}

.service-feature-copy > p:last-child {
  margin-top: 18px;
  color: var(--steel);
  font-size: 0.93rem;
}

.services-list-section {
  padding-block: var(--section-space);
  background: var(--white);
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 68px;
}

.service-card {
  display: flex;
  min-height: 590px;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--paper);
}

.service-card-media {
  aspect-ratio: 1.42 / 1;
  overflow: hidden;
}

.service-card-media img {
  height: 100%;
  object-fit: cover;
}

.service-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px;
}

.service-card h3 {
  margin-top: 17px;
  font-size: 2rem;
}

.service-card-copy > p:not(.card-index) {
  margin-top: 18px;
  color: var(--steel);
  font-size: 0.94rem;
}

.service-card .text-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 28px;
}

.services-gallery {
  padding-block: var(--section-space);
  background: var(--paper);
}

.gallery-intro {
  display: grid;
  grid-template-columns: 0.65fr 1.2fr 0.85fr;
  gap: 40px;
  align-items: end;
}

.gallery-intro h2 {
  margin-top: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(300px, 31vw, 430px);
  gap: 14px;
  margin-top: 60px;
}

.gallery-grid img {
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.gallery-grid .gallery-wide {
  grid-column: span 2;
}

/* Contact */
.contact-hero {
  position: relative;
  min-height: 930px;
  overflow: hidden;
  background: var(--carbon);
  color: var(--white);
}

.contact-hero-image,
.contact-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-hero-image {
  object-fit: cover;
  object-position: 50% 39%;
}

.contact-hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 14, 15, 0.95) 0%, rgba(12, 14, 15, 0.76) 46%, rgba(12, 14, 15, 0.3) 100%),
    linear-gradient(0deg, rgba(12, 14, 15, 0.42), transparent);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 0.72fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
  min-height: 930px;
  padding-block: 82px;
}

.contact-intro {
  max-width: 600px;
}

.contact-intro h1 {
  margin-top: 24px;
  font-size: clamp(4.2rem, 7vw, 6.7rem);
  text-transform: uppercase;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 30px;
  color: #d1d3d2;
  font-size: 1.05rem;
}

.contact-phone {
  display: inline-flex;
  min-width: 280px;
  flex-direction: column;
  margin-top: 36px;
  padding: 15px 18px;
  border-left: 4px solid var(--signal-bright);
  background: rgba(17, 19, 21, 0.8);
  transition: background-color var(--ease), color var(--ease);
}

.contact-phone span {
  color: #bbbdbc;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-phone strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.contact-phone:hover {
  background: var(--amber);
  color: var(--white);
}

.contact-phone:hover span {
  color: var(--white);
}

.contact-quick-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 430px;
  margin-top: 34px;
  border-top: 1px solid var(--line-dark);
}

.contact-quick-facts div {
  padding-top: 16px;
}

.contact-quick-facts div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line-dark);
}

.contact-quick-facts dt {
  color: var(--signal-bright);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-quick-facts dd {
  margin-top: 3px;
  color: #d5d7d6;
  font-size: 0.85rem;
}

.contact-form {
  width: 100%;
  padding: clamp(34px, 4vw, 54px);
  border-top: 6px solid var(--amber);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--carbon);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.form-heading {
  margin-bottom: 32px;
}

.form-heading h2 {
  margin-top: 16px;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
}

.form-heading > p:last-child {
  margin-top: 14px;
  color: var(--steel);
  font-size: 0.9rem;
}

.field + .field {
  margin-top: 20px;
}

.field label,
.footer-form label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.82rem;
  font-weight: 800;
}

.field label span {
  color: var(--steel);
  font-weight: 500;
}

.field input,
.field textarea,
.footer-form input {
  width: 100%;
  border: 1px solid #a9a9a3;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--carbon);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.field input {
  min-height: 52px;
  padding: 0 15px;
}

.field textarea {
  min-height: 126px;
  padding: 14px 15px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder,
.footer-form input::placeholder {
  color: #626a6e;
  opacity: 1;
}

.field input:focus,
.field textarea:focus,
.footer-form input:focus {
  border-color: var(--carbon);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.24);
  outline: 0;
}

.contact-submit {
  width: 100%;
  margin-top: 26px;
}

/* Blog */
.blog-hero {
  padding-block: 104px 86px;
  border-bottom: 7px solid var(--carbon);
  background: var(--paper-deep);
  color: var(--carbon);
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 80px;
  align-items: end;
}

.blog-hero .eyebrow {
  color: var(--amber);
}

.blog-hero h1 {
  max-width: 850px;
  margin-top: 22px;
  font-size: clamp(4rem, 7vw, 6.8rem);
  text-transform: uppercase;
}

.blog-hero-grid > p {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--steel);
  font-size: 1.04rem;
}

.blog-list {
  padding-block: var(--section-space);
  background: var(--paper);
}

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

.blog-card:nth-child(1),
.blog-card:nth-child(4) {
  grid-column: span 7;
}

.blog-card:nth-child(2),
.blog-card:nth-child(3) {
  grid-column: span 5;
}

.blog-card-link {
  position: relative;
  display: block;
  height: 100%;
  border-top: 4px solid var(--carbon);
  background: var(--white);
  transition: transform var(--ease), box-shadow var(--ease);
}

.blog-card-link:hover {
  box-shadow: 0 18px 50px rgba(17, 19, 21, 0.1);
  transform: translateY(-5px);
}

.blog-card-media {
  height: clamp(270px, 28vw, 430px);
  overflow: hidden;
}

.blog-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.blog-card-link:hover img {
  transform: scale(1.025);
}

.blog-card-copy {
  position: relative;
  min-height: 210px;
  padding: 28px 68px 30px 28px;
}

.blog-card h2 {
  margin-top: 15px;
  font-size: clamp(1.65rem, 2.7vw, 2.6rem);
  line-height: 1.02;
}

.blog-card-meta {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  color: var(--steel);
  font-size: 0.8rem;
}

.blog-card-arrow {
  position: absolute;
  right: 25px;
  bottom: 24px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  font-size: 1.1rem;
}

.blog-cta {
  padding-block: var(--section-space);
  background: var(--carbon);
  color: var(--white);
}

.blog-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 80px;
  align-items: center;
}

.blog-cta-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 26px;
  color: #c6c8c7;
}

.blog-cta-copy .button-group {
  margin-top: 34px;
}

.blog-cta-media {
  height: clamp(430px, 48vw, 640px);
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.blog-cta-media img {
  height: 100%;
  object-fit: cover;
}

/* Articles */
.article-page {
  padding-block: 86px var(--section-space);
  background: var(--white);
}

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

.article-header {
  width: min(960px, 100%);
  margin-inline: auto;
  text-align: center;
}

.article-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line);
  color: var(--steel);
  font-size: 0.82rem;
  font-weight: 800;
}

.article-header .eyebrow {
  justify-content: center;
}

.article-header h1 {
  margin-top: 22px;
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 0.96;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-top: 28px;
  color: var(--steel);
  font-size: 0.8rem;
  font-weight: 700;
}

.article-meta > * + *::before {
  margin-inline: 10px;
  content: "·";
}

.article-hero-media {
  height: clamp(420px, 46vw, 620px);
  margin-top: 64px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

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

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(250px, 320px);
  gap: clamp(70px, 9vw, 140px);
  justify-content: center;
  align-items: start;
  margin-top: 94px;
}

.article-content {
  counter-reset: article-section;
}

.article-section {
  counter-increment: article-section;
}

.article-section + .article-section {
  margin-top: 76px;
  padding-top: 76px;
  border-top: 1px solid var(--line);
}

.article-section h2 {
  position: relative;
  padding-top: 34px;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
}

.article-section h2::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--amber-dark);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  content: "0" counter(article-section);
}

.article-section p {
  margin-top: 28px;
  color: #3d4245;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  line-height: 1.78;
}

.article-section p + p {
  margin-top: 22px;
}

.article-aside {
  position: sticky;
  top: 118px;
  padding: 30px;
  border-top: 5px solid var(--amber);
  background: var(--paper);
}

.article-aside h2 {
  margin-top: 18px;
  font-size: 2.25rem;
}

.article-aside > p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--steel);
  font-size: 0.9rem;
}

.article-aside .button {
  width: 100%;
  margin-top: 26px;
}

.article-aside .text-link {
  margin-top: 18px;
}

.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding-block: 100px;
  background:
    linear-gradient(rgba(17, 19, 21, 0.88), rgba(17, 19, 21, 0.88)),
    url('/assets/web/home-hero.jpg') center / cover;
  color: var(--white);
  text-align: center;
}

.not-found .error-code {
  color: var(--signal-bright);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.not-found h1 {
  margin-top: 18px;
  font-size: clamp(3.5rem, 8vw, 7rem);
  text-transform: uppercase;
}

.not-found h1 + p {
  margin: 24px auto 0;
  color: #d1d3d2;
}

.not-found .button {
  margin-top: 32px;
}

/* Footer */
.site-footer {
  background: #0d0f10;
  color: var(--white);
}

.footer-cta {
  display: flex;
  min-height: 228px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-cta h2 {
  margin-top: 14px;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: flex-end;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr 1.2fr;
  gap: clamp(48px, 8vw, 110px);
  padding-block: 70px;
}

.footer-grid h2 {
  font-size: 0.83rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-brand h2 {
  color: var(--signal-bright);
  font-size: 1.15rem;
}

.footer-brand > p {
  max-width: 340px;
  margin-top: 22px;
  color: #b9bdbc;
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.footer-socials a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-dark);
  transition: border-color var(--ease), color var(--ease), transform var(--ease);
}

.footer-socials a:hover {
  border-color: var(--signal-bright);
  color: var(--signal-bright);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 20px;
  height: 20px;
}

.footer-socials .social-mark {
  fill: #0d0f10;
}

.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 22px;
  color: #d4d6d5;
  font-size: 0.9rem;
}

.contact-lines a:hover {
  color: var(--signal-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-lines address {
  margin-top: 16px;
  color: #9ea3a1;
  line-height: 1.5;
}

.footer-form label {
  margin-top: 19px;
  color: #d7d9d8;
}

.footer-form label span {
  color: #9ea3a1;
  font-weight: 500;
}

.footer-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.footer-form-row:focus-within {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.footer-form-row:focus-within input {
  box-shadow: none;
}

.footer-form input {
  min-height: 52px;
  padding: 0 15px;
  border-right: 0;
}

.footer-submit {
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--amber);
  border-radius: 0;
  background: var(--amber);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  transition: background-color var(--ease);
}

.footer-submit:hover {
  background: var(--signal-hover);
}

.footer-base {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line-dark);
  color: #8f9492;
  font-size: 0.74rem;
}

.footer-base nav {
  display: flex;
  gap: 24px;
}

.footer-base a:hover {
  color: var(--white);
}

.whatsapp-link {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom));
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 0 18px 0 13px;
  border: 2px solid var(--signal);
  border-radius: 999px;
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-size: 0.8rem;
  font-weight: 800;
  transition: background-color var(--ease), border-color var(--ease), transform var(--ease);
}

.whatsapp-link svg {
  width: 30px;
  height: 30px;
}

.whatsapp-link:hover {
  border-color: var(--signal-hover);
  background: var(--signal-hover);
  transform: translateY(-2px);
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 56px, 1100px);
  }

  .site-logo {
    min-width: 188px;
  }

  .site-logo-type,
  .header-status {
    display: none;
  }

  .site-nav {
    gap: 26px;
  }

  .trusted-heading-grid,
  .services-intro,
  .blog-hero-grid {
    gap: 58px;
  }

  .contact-hero-content {
    grid-template-columns: minmax(0, 0.8fr) minmax(480px, 0.75fr);
    gap: 58px;
  }

  .footer-form-row {
    grid-template-columns: 1fr;
  }

  .footer-form input {
    border-right: 1px solid #a9a9a3;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: calc(100vw - 48px);
    --section-space: 84px;
  }

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

  .site-logo {
    min-width: 0;
  }

  .site-logo img {
    width: 96px;
    height: 48px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    max-height: 0;
    overflow: hidden;
    background: var(--carbon);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: max-height 280ms ease, opacity var(--ease), visibility var(--ease);
  }

  .site-nav.open {
    max-height: 520px;
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 18px 24px 8px;
  }

  .nav-link {
    min-height: 58px;
    padding: 0 14px;
    border-bottom: 1px solid var(--line-dark);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: -0.01em;
  }

  .nav-link::after {
    right: auto;
    bottom: 0;
    left: 14px;
    width: 38px;
  }

  .header-actions {
    display: grid;
    padding: 18px 24px 24px;
    border-left: 0;
  }

  .header-call {
    width: 100%;
    min-height: 64px;
    background: var(--amber);
    color: var(--white);
  }

  .header-call span {
    color: var(--white);
  }

  .home-hero {
    min-height: 720px;
  }

  .home-hero-image {
    object-position: 66% 52%;
  }

  .home-hero-shade {
    background: linear-gradient(90deg, rgba(10, 12, 13, 0.94), rgba(10, 12, 13, 0.58));
  }

  .home-hero-copy {
    width: 90%;
  }

  .home-hero-copy h1 {
    font-size: clamp(4.1rem, 12vw, 6rem);
  }

  .split-intro,
  .services-intro,
  .blog-hero-grid,
  .trusted-heading-grid,
  .location-grid,
  .contact-hero-content,
  .blog-cta-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .split-intro,
  .trusted-heading-grid,
  .services-intro,
  .blog-hero-grid {
    gap: 34px;
  }

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

  .home-highlight:first-child {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
  }

  .home-highlight-copy {
    min-height: 220px;
  }

  .split-section {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    align-items: start;
  }

  .about-media,
  .about-media img {
    min-height: 510px;
  }

  .trusted-summary {
    max-width: 640px;
  }

  .trusted-media {
    height: 440px;
  }

  .location-grid {
    gap: 50px;
  }

  .location-copy {
    max-width: 650px;
  }

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

  .service-feature-card:first-child {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
  }

  .service-feature-copy {
    min-height: 220px;
  }

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

  .service-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 0;
  }

  .service-card-media {
    height: 100%;
    aspect-ratio: auto;
  }

  .service-card-copy {
    min-height: 330px;
  }

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

  .gallery-intro > p:last-child {
    grid-column: 2;
  }

  .gallery-grid {
    grid-auto-rows: 300px;
  }

  .contact-hero,
  .contact-hero-content {
    min-height: 0;
  }

  .contact-hero-content {
    gap: 52px;
    padding-block: 84px;
  }

  .contact-form {
    max-width: 680px;
  }

  .blog-card:nth-child(n) {
    grid-column: span 6;
  }

  .blog-card-media {
    height: 300px;
  }

  .blog-cta-grid {
    gap: 50px;
  }

  .blog-cta-media {
    height: 520px;
  }

  .article-layout {
    margin-top: 72px;
  }

  .article-content {
    max-width: 760px;
    margin-inline: auto;
  }

  .article-aside {
    position: static;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px 32px;
    align-items: center;
  }

  .article-aside .eyebrow,
  .article-aside h2,
  .article-aside > p:not(.eyebrow) {
    grid-column: 1;
  }

  .article-aside .button,
  .article-aside .text-link {
    grid-column: 2;
    margin-top: 0;
  }

  .article-aside .button {
    grid-row: 1 / span 2;
  }

  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 54px;
  }

  .footer-cta-actions {
    justify-content: flex-start;
  }

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

  .footer-blog {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100vw - 32px);
    --section-space: 68px;
  }

  body {
    font-size: 15px;
  }

  .eyebrow {
    font-size: 0.7rem;
  }

  .section-intro h2,
  .about-copy h2,
  .trusted-heading-grid h2,
  .location-copy h2,
  .blog-cta-copy h2 {
    font-size: clamp(2.55rem, 13vw, 3.55rem);
  }

  .header-inner {
    min-height: 70px;
  }

  .site-logo img {
    width: 94px;
    height: 48px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .nav-links {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 690px;
  }

  .home-hero-image {
    object-position: 63% center;
  }

  .home-hero-shade {
    background:
      linear-gradient(0deg, rgba(10, 12, 13, 0.94) 0%, rgba(10, 12, 13, 0.38) 65%, rgba(10, 12, 13, 0.42) 100%),
      linear-gradient(90deg, rgba(10, 12, 13, 0.75), transparent);
  }

  .home-hero-content {
    align-items: flex-end;
    padding-block: 70px 42px;
  }

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

  .home-hero-copy h1 {
    margin-top: 19px;
    font-size: clamp(3.6rem, 18vw, 5.1rem);
  }

  .home-hero-copy > p:not(.eyebrow) {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .button-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button-group .button {
    padding-inline: 14px;
  }

  .home-hero-copy .button-group {
    margin-top: 28px;
  }

  .hero-proof-list {
    margin-top: 32px;
  }

  .hero-proof-list li {
    padding: 15px 8px 0 0;
  }

  .hero-proof-list li + li {
    padding-left: 10px;
  }

  .hero-proof-list strong {
    font-size: 0.76rem;
  }

  .hero-proof-list span {
    font-size: 0.63rem;
    line-height: 1.3;
  }

  .split-intro,
  .home-highlight-grid,
  .split-section,
  .service-feature-grid,
  .service-card,
  .gallery-intro,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-intro {
    gap: 24px;
  }

  .home-highlight-grid {
    gap: 14px;
    margin-top: 42px;
  }

  .home-highlight:first-child {
    grid-column: auto;
    display: block;
  }

  .home-highlight-copy {
    min-height: 0;
    padding: 24px;
  }

  .home-highlight-copy h3 {
    font-size: 1.75rem;
  }

  .split-section {
    gap: 42px;
  }

  .about-copy p:not(.eyebrow) {
    font-size: 0.95rem;
  }

  .about-media,
  .about-media img {
    min-height: 420px;
  }

  .about-media figcaption {
    display: block;
  }

  .about-media figcaption span {
    display: block;
    margin-bottom: 4px;
  }

  .trusted-heading-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    padding-right: 8px;
  }

  .stat + .stat {
    padding-left: 10px;
  }

  .stat strong {
    font-size: 1.45rem;
  }

  .trusted-media {
    height: 320px;
    margin-top: 44px;
  }

  .trusted-media figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .location-grid {
    gap: 42px;
  }

  .location-details {
    grid-template-columns: 1fr;
  }

  .location-actions {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .location-actions .text-link {
    justify-self: start;
  }

  .location-map-wrap {
    padding: 8px 8px 0 0;
  }

  .map-frame {
    aspect-ratio: 1.1 / 1;
  }

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

  .services-hero,
  .blog-hero {
    padding-block: 72px;
  }

  .services-intro h1,
  .blog-hero h1 {
    font-size: clamp(3.3rem, 17vw, 4.7rem);
  }

  .service-feature-grid {
    margin-top: 50px;
  }

  .service-feature-card:first-child {
    grid-column: auto;
    display: block;
  }

  .service-feature-copy {
    min-height: 0;
    padding: 24px;
  }

  .service-card-grid {
    gap: 14px;
    margin-top: 46px;
  }

  .service-card {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .service-card-media {
    width: 100%;
    height: auto;
    min-width: 0;
    aspect-ratio: 1.4 / 1;
  }

  .service-card-copy {
    width: 100%;
    min-width: 0;
  }

  .service-card-copy {
    min-height: 300px;
    padding: 24px;
  }

  .gallery-intro > p:last-child {
    grid-column: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
    gap: 10px;
    margin-top: 42px;
  }

  .gallery-grid .gallery-wide {
    grid-column: auto;
  }

  .contact-hero-content {
    padding-block: 70px;
  }

  .contact-intro h1 {
    font-size: clamp(3.35rem, 16vw, 4.6rem);
  }

  .contact-intro > p:not(.eyebrow) {
    margin-top: 24px;
    font-size: 0.98rem;
  }

  .contact-phone {
    width: 100%;
    min-width: 0;
  }

  .contact-form {
    padding: 32px 20px;
  }

  .form-heading h2 {
    font-size: 2.5rem;
  }

  .blog-card:nth-child(n) {
    grid-column: 1 / -1;
  }

  .blog-card-media {
    height: 260px;
  }

  .blog-card-copy {
    min-height: 190px;
    padding: 24px 58px 26px 22px;
  }

  .blog-card h2 {
    font-size: 1.9rem;
  }

  .blog-cta-grid {
    gap: 40px;
  }

  .blog-cta-media {
    height: 390px;
  }

  .article-page {
    padding-top: 62px;
  }

  .article-header h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .article-hero-media {
    height: 310px;
    margin-top: 44px;
  }

  .article-layout {
    gap: 52px;
    margin-top: 62px;
  }

  .article-section + .article-section {
    margin-top: 58px;
    padding-top: 58px;
  }

  .article-section h2 {
    font-size: 2.7rem;
  }

  .article-section p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .article-aside {
    display: block;
    padding: 26px;
  }

  .article-aside .button,
  .article-aside .text-link {
    margin-top: 20px;
  }

  .footer-cta {
    gap: 32px;
    padding-block: 48px;
  }

  .footer-cta h2 {
    font-size: 3rem;
  }

  .footer-cta-actions {
    display: grid;
    width: 100%;
    justify-content: stretch;
  }

  .footer-grid {
    gap: 48px;
    padding-block: 56px;
  }

  .footer-blog {
    grid-column: auto;
  }

  .footer-base {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 24px 92px;
  }

  .footer-base nav {
    flex-wrap: wrap;
  }

  .whatsapp-link {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 54px;
    min-height: 54px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-link span {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
