:root {
  --ink: #0b0b0a;
  --ink-soft: #151411;
  --paper: #f2eee7;
  --paper-strong: #fffdf8;
  --muted: #aaa69f;
  --gold: #3b6fb1;
  --gold-bright: #6f9fd8;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(11, 11, 10, 0.16);
  --shell: min(1180px, calc(100vw - 48px));
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

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

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:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: var(--ink);
  background: var(--gold-bright);
  font-weight: 700;
}

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

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

.section {
  padding-block: clamp(88px, 10vw, 150px);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: background 280ms ease, border-color 280ms ease, transform 280ms ease;
}

.site-header.is-scrolled {
  background: rgba(11, 11, 10, 0.94);
  border-color: var(--line-dark);
  backdrop-filter: blur(12px);
}

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

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 138px;
  height: 72px;
}

.brand-logo {
  position: relative;
  z-index: 2;
  width: auto;
  height: 68px;
  max-width: 138px;
  max-height: 68px;
  object-fit: contain;
  object-position: left center;
  opacity: 0.98;
}

.brand-fallback {
  position: absolute;
  left: 0;
  display: flex;
  flex-direction: column;
  color: #fff;
  line-height: 1;
}

.brand-fallback strong {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.08em;
}

.brand-fallback small {
  margin-top: 5px;
  color: var(--gold-bright);
  font-size: 9px;
  letter-spacing: 0.42em;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
}

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

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 52px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.header-cta:hover {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.header-cta svg,
.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(940px, 100svh);
  overflow: hidden;
  color: #fff;
  background: #0a0a09;
}

.hero-media {
  position: absolute;
  top: clamp(110px, 13vh, 138px);
  right: 0;
  bottom: clamp(62px, 8vh, 88px);
  left: 48%;
  overflow: hidden;
  background: #111820;
  box-shadow: -48px 0 110px rgba(0, 0, 0, 0.34);
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  filter: saturate(0.82) contrast(1.08);
  opacity: 0.96;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.9) 0%, rgba(5, 5, 4, 0.35) 24%, rgba(5, 5, 4, 0.04) 58%),
    linear-gradient(180deg, rgba(5, 5, 4, 0.05) 56%, rgba(5, 5, 4, 0.42) 100%);
}

.hero-overlay {
  z-index: 1;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  min-height: min(940px, 100svh);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  padding-top: 92px;
}

.hero-copy {
  width: min(730px, 60%);
  padding-block: 70px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  width: 32px;
  height: 1px;
  background: currentColor;
}

.eyebrow-dark {
  color: #3b6fb1;
}

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

.hero h1,
.section-heading h2,
.locations-heading h2,
.intro h2,
.experience h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 730px;
  font-size: clamp(58px, 7vw, 104px);
}

.hero h1 em,
.intro h2 em,
.section-heading h2 em,
.experience h2 em,
.locations-heading h2 em,
.final-cta h2 em {
  color: var(--gold-bright);
  font-weight: 600;
}

.hero-lead {
  max-width: 570px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

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

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

.button-gold:hover,
.button-gold:focus-visible {
  background: #5f8fcb;
  transform: translateY(-2px);
}

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

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--ink);
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  color: var(--gold-bright);
  transition: transform 200ms ease;
}

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

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

.hero-note {
  align-self: flex-end;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 88px;
  padding: 22px 0 22px 26px;
  border-left: 1px solid var(--gold);
}

.hero-note-number {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}

.hero-note-text {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 34px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 17px;
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 1.5;
  animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(5px); }
}

.intro {
  overflow: hidden;
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.25fr 0.95fr;
  gap: 58px;
  align-items: start;
}

.intro-label {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.seal {
  width: 116px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-top: 150px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: #3b6fb1;
}

.seal span {
  position: absolute;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  transform: rotate(-90deg);
}

.seal svg {
  width: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.intro-copy h2,
.section-heading h2,
.locations-heading h2,
.experience h2,
.final-cta h2 {
  font-size: clamp(46px, 5vw, 74px);
}

.intro-copy h2 em {
  color: #3b6fb1;
}

.intro-text {
  max-width: 550px;
  margin-top: 45px;
  padding-left: 36px;
  border-left: 1px solid var(--line-light);
}

.intro-text p {
  margin: 0 0 22px;
  color: #514f4a;
  font-size: 17px;
  line-height: 1.85;
}

.intro-photo {
  position: relative;
  margin: 58px 0 0;
  min-height: 520px;
  background: #25231f;
  overflow: hidden;
}

.intro-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.72) contrast(1.04);
  transition: transform 700ms ease;
}

.intro-photo:hover img {
  transform: scale(1.025);
}

.intro-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}

.intro-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 24px;
  left: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quick-actions {
  color: #fff;
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.action-card {
  position: relative;
  min-height: 290px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  padding: 40px;
  border-right: 1px solid var(--line-dark);
  transition: background 260ms ease;
}

.action-card:first-child {
  border-left: 1px solid var(--line-dark);
}

.action-card:hover {
  background: #14130f;
}

.action-index {
  grid-column: 1 / -1;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 15px;
}

.action-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 600;
}

.action-card p {
  max-width: 270px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

.action-card > a {
  align-self: end;
  width: 46px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 20px;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.action-card > a:hover {
  color: var(--ink);
  background: var(--gold-bright);
  transform: rotate(10deg);
}

.services {
  color: #fff;
  background: var(--ink-soft);
}

.section-heading,
.locations-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading > p,
.locations-heading > p {
  max-width: 470px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 17px;
  line-height: 1.8;
}

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

.service-row {
  display: grid;
  grid-template-columns: 42px minmax(150px, 184px) minmax(190px, 0.9fr) minmax(260px, 1.1fr) auto;
  gap: 26px;
  align-items: center;
  min-height: 210px;
  border-bottom: 1px solid var(--line-dark);
  transition: padding 260ms ease, background 260ms ease;
}

.service-row:hover {
  padding-inline: 20px;
  background: rgba(255, 255, 255, 0.025);
}

.service-number {
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--serif);
}

.service-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: #20201e;
  border-left: 3px solid var(--gold);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 111, 177, 0.2), transparent 58%);
  pointer-events: none;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.service-media-cut img {
  object-position: 48% center;
}

.service-media-beard img {
  object-position: center 38%;
}

.service-media-premium img {
  object-position: center 66%;
}

.service-row:hover .service-media img {
  transform: scale(1.055);
  filter: saturate(0.95) contrast(1.05);
}

.service-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 600;
}

.service-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  line-height: 1.75;
}

.service-row > a {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--gold-bright);
  font-size: 14px;
  font-weight: 700;
}

.service-row > a span {
  transition: transform 200ms ease;
}

.service-row > a:hover span {
  transform: translate(3px, -3px);
}

.experience {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: #27241f;
}

.experience-image {
  min-height: 760px;
  overflow: hidden;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
  transition: transform 900ms ease;
}

.experience:hover .experience-image img {
  transform: scale(1.02);
}

.experience-panel {
  display: flex;
  align-items: center;
  padding: clamp(64px, 8vw, 120px);
  background: var(--gold);
}

.experience-panel > div {
  max-width: 520px;
}

.experience h2 em {
  color: #16365e;
}

.experience-panel > div > p:not(.eyebrow) {
  margin: 34px 0 0;
  color: rgba(11, 11, 10, 0.68);
  font-size: 17px;
  line-height: 1.85;
}

.experience-points {
  display: grid;
  gap: 12px;
  margin: 34px 0 42px;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
}

.experience-points li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.experience-points span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 11, 10, 0.3);
  border-radius: 50%;
  font-size: 12px;
}

.proof {
  background: var(--paper-strong);
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.6fr 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.proof-number {
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(120px, 15vw, 220px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(59, 111, 177, 0.52);
}

.proof-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(35px, 4vw, 58px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.proof-action {
  padding-left: 32px;
  border-left: 1px solid var(--line-light);
}

.proof-action p {
  margin: 0 0 28px;
  color: #67635c;
}

.locations {
  color: #fff;
  background: var(--ink);
}

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

.location-card {
  min-height: 330px;
  padding: 42px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background 240ms ease;
}

.location-card:hover {
  background: #15140f;
}

.location-tag {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location-card h3 {
  margin: 66px 0 16px;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 600;
}

.location-card address {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 15px;
  font-style: normal;
}

.location-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-bright);
  font-size: 14px;
  font-weight: 700;
}

.location-card a span {
  transition: transform 200ms ease;
}

.location-card a:hover span {
  transform: translate(3px, -3px);
}

.final-cta {
  position: relative;
  min-height: 710px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: #090908;
  text-align: center;
}

.final-cta-media {
  position: absolute;
  inset: 0;
}

.final-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) contrast(1.15);
  opacity: 0.5;
}

.final-cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(9, 9, 8, 0.2), rgba(9, 9, 8, 0.92));
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.final-cta h2 {
  font-size: clamp(52px, 7vw, 102px);
}

.final-cta .button {
  margin-top: 42px;
}

.site-footer {
  color: #fff;
  background: #070706;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 90px;
  padding-block: 72px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand {
  align-self: start;
  min-width: 190px;
  height: auto;
}

.footer-brand .brand-logo {
  width: 190px;
  height: auto;
  max-width: none;
  max-height: none;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-nav p,
.footer-contact p {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: #fff;
}

.back-top {
  width: 52px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.back-top svg {
  width: 20px;
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  width: 58px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #fff;
  background: #1ba94c;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

.floating-whatsapp svg {
  width: 30px;
  fill: currentColor;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

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

@media (max-width: 1040px) {
  :root {
    --shell: min(100% - 40px, 900px);
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    position: fixed;
    inset: 88px 0 auto;
    display: grid;
    gap: 0;
    padding: 16px 20px 28px;
    background: rgba(11, 11, 10, 0.98);
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-140%);
    opacity: 0;
    visibility: hidden;
    transition: transform 280ms ease, opacity 280ms ease, visibility 280ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 16px;
  }

  .menu-toggle {
    justify-self: end;
    order: 2;
    width: 46px;
    height: 46px;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 0 11px;
    color: #fff;
    background: transparent;
    border: 1px solid var(--line-dark);
  }

  .menu-toggle span:not(.sr-only) {
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

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

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

  .header-cta {
    justify-self: end;
  }

  .hero-copy {
    width: min(650px, 70%);
  }

  .hero-note {
    display: none;
  }

  .intro-grid {
    grid-template-columns: 0.6fr 1.4fr;
  }

  .intro-photo {
    grid-column: 2;
    margin-top: 0;
  }

  .intro-label {
    grid-row: 1 / span 2;
  }

  .action-card {
    padding: 32px 26px;
  }

  .service-row {
    grid-template-columns: 34px minmax(130px, 150px) minmax(160px, 0.9fr) minmax(210px, 1.1fr) auto;
    gap: 20px;
    min-height: 190px;
  }

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

  .experience-panel {
    padding: 70px 48px;
  }

  .proof-grid {
    grid-template-columns: 0.55fr 1.45fr;
  }

  .proof-action {
    grid-column: 2;
  }
}

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

  .section {
    padding-block: 84px;
  }

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

  .brand {
    min-width: 105px;
    height: 60px;
  }

  .brand-logo {
    width: auto;
    height: 56px;
    max-width: 105px;
    max-height: 56px;
  }

  .brand-fallback strong {
    font-size: 20px;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    top: 76px;
  }

  .hero,
  .hero-inner {
    min-height: 820px;
  }

  .hero-media {
    top: 76px;
    right: 0;
    bottom: auto;
    left: 0;
    height: 50%;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.34);
  }

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

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(5, 5, 4, 0.08) 42%, rgba(5, 5, 4, 0.92) 100%),
      linear-gradient(90deg, rgba(5, 5, 4, 0.28), rgba(5, 5, 4, 0.04));
  }

  .hero-inner {
    align-items: flex-end;
    padding-top: 90px;
    padding-bottom: 92px;
  }

  .hero-copy {
    width: 100%;
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 76px);
  }

  .hero-lead {
    max-width: 95%;
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 32px;
  }

  .button {
    width: 100%;
    min-height: 56px;
  }

  .scroll-cue {
    display: none;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intro-label {
    grid-row: auto;
  }

  .seal {
    display: none;
  }

  .intro-copy h2,
  .section-heading h2,
  .locations-heading h2,
  .experience h2,
  .final-cta h2 {
    font-size: clamp(42px, 12vw, 60px);
  }

  .intro-text {
    margin-top: 30px;
    padding-left: 22px;
  }

  .intro-text p {
    font-size: 16px;
  }

  .intro-photo {
    grid-column: auto;
    min-height: 440px;
  }

  .intro-photo img {
    min-height: 440px;
  }

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

  .action-card {
    min-height: 240px;
    border-left: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

  .section-heading,
  .locations-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
  }

  .section-heading > p,
  .locations-heading > p {
    font-size: 16px;
  }

  .service-row {
    grid-template-columns: 42px 1fr;
    gap: 18px;
    align-items: start;
    padding-block: 28px;
  }

  .service-media {
    grid-column: 1 / -1;
    grid-row: 1;
    aspect-ratio: 16 / 9;
    max-height: 260px;
    margin-bottom: 8px;
  }

  .service-number {
    grid-column: 1;
    grid-row: 2;
    padding-top: 7px;
  }

  .service-row h3 {
    grid-column: 2;
    grid-row: 2;
    font-size: 30px;
  }

  .service-row p {
    grid-column: 2;
    grid-row: 3;
    padding-right: 0;
  }

  .service-row > a {
    grid-column: 2;
    grid-row: 4;
    width: fit-content;
    padding-top: 2px;
  }

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

  .experience-image {
    min-height: 480px;
  }

  .experience-panel {
    padding: 76px 24px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .proof-number {
    font-size: 148px;
  }

  .proof-action {
    grid-column: auto;
    padding-left: 22px;
  }

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

  .location-card {
    min-height: 290px;
    padding: 34px 28px;
  }

  .location-card h3 {
    margin-top: 52px;
  }

  .final-cta {
    min-height: 650px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 54px 28px;
    padding-block: 58px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    min-width: 0;
    height: auto;
  }

  .footer-brand .brand-logo {
    width: 170px;
    height: auto;
    max-width: none;
    max-height: none;
  }

  .back-top {
    align-self: end;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

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

@media (max-width: 430px) {
  .hero h1 {
    font-size: 50px;
  }

  .eyebrow {
    font-size: 11px;
  }

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

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

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

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

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

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