:root {
  --ink: #101010;
  --ink-soft: #202020;
  --gold: #c89b2a;
  --gold-dark: #9f7517;
  --cream: #f4f0e7;
  --white: #ffffff;
  --muted: #6f6c66;
  --line: rgba(16, 16, 16, 0.16);
  --shell: min(1180px, calc(100% - 48px));
  --shadow: 0 24px 70px rgba(16, 16, 16, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
summary {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--gold);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.utility-bar {
  color: rgba(255, 255, 255, 0.82);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.utility-inner a {
  color: var(--gold);
}

.utility-separator {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.28);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
  backdrop-filter: blur(16px);
  transition: box-shadow 220ms ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 32px rgba(16, 16, 16, 0.08);
}

.header-inner {
  min-height: 108px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-window {
  width: 140px;
  height: 100px;
  display: block;
  overflow: hidden;
  background: #fff;
}

.brand-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
}

.main-nav a {
  position: relative;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  width: 100%;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

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

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--ink);
  background: var(--gold);
}

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

.button-gold:hover,
.button-gold:focus-visible {
  color: var(--white);
  background: var(--gold-dark);
}

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

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  background: var(--ink);
}

.hero-copy {
  display: flex;
  align-items: stretch;
  padding: 76px max(56px, calc((100vw - 1180px) / 2)) 62px;
  color: var(--white);
}

.hero-copy-inner {
  width: min(610px, 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--gold);
}

.hero h1,
.section-heading h2,
.approach h2,
.faq h2,
.contact-band h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 670px;
  font-size: clamp(4.2rem, 7vw, 7.3rem);
}

.hero h1 span {
  color: var(--gold);
}

.hero-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 35px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--gold);
  font-size: 1.2em;
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, 3px);
}

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

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: auto;
  padding-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-strip div {
  min-width: 0;
  padding-right: 18px;
}

.proof-strip div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

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

.proof-strip strong {
  color: var(--gold);
  font-size: 1.28rem;
  line-height: 1.2;
}

.proof-strip span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero:hover .hero-visual > img {
  transform: scale(1.025);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.08) 45%, rgba(16, 16, 16, 0.76) 100%);
}

.image-label {
  position: absolute;
  right: 34px;
  bottom: 32px;
  left: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
}

.image-label span {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.8rem);
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.image-label small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gold-corner {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 96px;
  height: 96px;
  border-top: 5px solid var(--gold);
  border-right: 5px solid var(--gold);
}

.section {
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.section-heading h2,
.approach h2,
.faq h2 {
  font-size: clamp(3rem, 5vw, 5.25rem);
}

.section-heading > p,
.faq-intro > p,
.approach-intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 275px;
  padding: 38px 34px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
  transition: color 260ms ease, background 260ms ease, transform 260ms ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.service-card:hover {
  z-index: 2;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-6px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-number {
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.service-card h3 {
  margin: 48px 0 14px;
  font-size: 1.28rem;
  letter-spacing: -0.015em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  transition: color 260ms ease;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.66);
}

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

.approach-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.85fr);
}

.approach-copy {
  padding: 110px max(56px, calc((100vw - 1180px) / 2));
}

.approach-copy h2 {
  max-width: 650px;
}

.approach-intro {
  max-width: 590px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.64);
}

.process-list {
  margin: 50px 0 42px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.process-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.process-list > li > span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-list strong {
  font-size: 1.03rem;
}

.process-list p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
}

.approach-image {
  position: relative;
  min-height: 920px;
  margin: 0;
  overflow: hidden;
}

.approach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-image figcaption {
  position: absolute;
  right: 26px;
  bottom: 24px;
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(16, 16, 16, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.projects {
  background: var(--white);
}

.project-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.9fr);
  grid-template-rows: minmax(370px, 1fr) auto;
  gap: 22px;
}

.project-card {
  position: relative;
  min-height: 370px;
  margin: 0;
  overflow: hidden;
  background: #d9d6d0;
}

.project-card-large {
  grid-row: 1 / span 2;
  min-height: 780px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

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

.project-card::after {
  position: absolute;
  inset: 45% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(16, 16, 16, 0.78));
}

.project-card figcaption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 26px;
  left: 28px;
  color: var(--white);
}

.project-card figcaption span,
.project-card figcaption strong {
  display: block;
}

.project-card figcaption span {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-card figcaption strong {
  font-size: 1.32rem;
}

.project-note {
  min-height: 235px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.project-note-mark {
  color: var(--gold);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}

.project-note p {
  margin: 26px 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.review-section {
  padding: 100px 0;
  background: var(--gold);
}

.review-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1.52fr);
  align-items: stretch;
  gap: 44px;
}

.review-score {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-score .eyebrow {
  color: rgba(16, 16, 16, 0.62);
}

.review-score > strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(5rem, 9vw, 8.5rem);
  letter-spacing: -0.03em;
  line-height: 0.85;
}

.stars {
  margin-top: 20px;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
}

.review-score > span {
  margin-top: 8px;
  color: rgba(16, 16, 16, 0.62);
  font-size: 0.78rem;
}

.review-card {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 58px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-mark {
  position: absolute;
  top: 25px;
  right: 42px;
  color: rgba(200, 155, 42, 0.25);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

.review-card blockquote {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1.35;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.review-card footer strong,
.review-card footer span {
  display: block;
}

.review-card footer span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.faq {
  background: var(--cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 150px;
  align-self: start;
}

.faq-intro > p {
  margin-top: 25px;
}

.faq-intro .text-link {
  margin-top: 28px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 6px;
  cursor: pointer;
  font-size: 1.12rem;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-dark);
  font-size: 1.3rem;
  font-weight: 500;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] summary span {
  color: var(--ink);
  background: var(--gold);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -4px 60px 28px 6px;
  color: var(--muted);
}

.contact-band {
  padding: 105px 0 32px;
  color: var(--white);
  background: var(--ink);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
}

.contact-band h2 {
  max-width: 780px;
  font-size: clamp(3.8rem, 7vw, 7rem);
}

.contact-band p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.08rem;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 78px;
  padding-top: 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-meta a:hover,
.contact-meta a:focus-visible {
  color: var(--gold);
}

.site-footer {
  color: var(--white);
  background: #080808;
}

.footer-main {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 50px;
}

.footer-brand .brand-window {
  width: 126px;
  height: 90px;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-contact a {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 900;
}

.footer-contact span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.footer-bottom {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--gold);
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #22a559;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 15px 38px rgba(16, 16, 16, 0.25);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, background 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #178745;
  transform: translateY(-3px) scale(1.03);
}

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

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
  }

  .hero-copy {
    padding-right: 42px;
  }

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

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

  .approach-content {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  }

  .faq-layout {
    gap: 65px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 280px));
  }
}

@media (max-width: 880px) {
  :root {
    --shell: min(calc(100% - 36px), 720px);
  }

  .utility-inner {
    justify-content: space-between;
  }

  .utility-inner > span:first-child,
  .utility-separator {
    display: none;
  }

  .header-inner {
    min-height: 92px;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .brand-window {
    width: 112px;
    height: 80px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    z-index: 95;
    top: 126px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 42px 24px;
    color: var(--white);
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .main-nav a {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1rem;
  }

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

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

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

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 650px;
    padding: 68px 18px 50px;
  }

  .hero-copy-inner {
    width: var(--shell);
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 610px;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .approach-content {
    grid-template-columns: 1fr;
  }

  .approach-copy {
    padding: 90px 18px;
  }

  .approach-copy > * {
    width: var(--shell);
    margin-right: auto;
    margin-left: auto;
  }

  .approach-image {
    min-height: 680px;
  }

  .project-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .project-card-large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 700px;
  }

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

  .review-score {
    align-items: flex-start;
  }

  .review-score > strong {
    font-size: 6rem;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-intro {
    position: static;
  }

  .footer-main {
    grid-template-columns: auto 1fr;
  }

  .footer-links {
    display: none;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 32px);
  }

  html {
    scroll-padding-top: 120px;
  }

  .utility-inner {
    min-height: 32px;
    font-size: 0.67rem;
  }

  .main-nav {
    top: 124px;
  }

  .hero-copy {
    min-height: 620px;
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 18vw, 5.3rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 44px;
    padding-top: 25px;
  }

  .proof-strip div,
  .proof-strip div + div {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: baseline;
    padding: 0;
    border: 0;
  }

  .proof-strip span {
    margin-top: 0;
  }

  .hero-visual {
    min-height: 470px;
  }

  .image-label {
    right: 20px;
    bottom: 20px;
    left: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .gold-corner {
    top: 18px;
    right: 18px;
    width: 62px;
    height: 62px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .approach h2,
  .faq h2 {
    font-size: clamp(2.7rem, 14vw, 4.1rem);
  }

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

  .service-card {
    min-height: 235px;
    padding: 30px 26px;
  }

  .service-card h3 {
    margin-top: 36px;
  }

  .approach-copy {
    padding: 76px 16px;
  }

  .process-list li {
    grid-template-columns: 42px 1fr;
  }

  .approach-image {
    min-height: 530px;
  }

  .project-layout {
    display: grid;
    grid-template-columns: 1fr;
  }

  .project-card-large,
  .project-card {
    min-height: 500px;
  }

  .project-note {
    min-height: 250px;
  }

  .review-section {
    padding: 76px 0;
  }

  .review-card {
    min-height: 420px;
    padding: 42px 28px;
  }

  .quote-mark {
    top: 18px;
    right: 24px;
    font-size: 6rem;
  }

  .review-card blockquote {
    font-size: 1.55rem;
  }

  .faq-list summary {
    min-height: 82px;
    font-size: 1rem;
  }

  .contact-band {
    padding-top: 78px;
  }

  .contact-band h2 {
    font-size: clamp(3.3rem, 17vw, 5rem);
  }

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

  .contact-meta {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 56px;
  }

  .footer-main {
    min-height: 220px;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 12px;
    padding: 34px 0;
  }

  .footer-contact {
    align-items: flex-start;
  }

  .footer-bottom {
    min-height: 78px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

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

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

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