:root {
  --black: #0f0e0c;
  --charcoal: #1d1a16;
  --charcoal-2: #29251f;
  --cement: #77736a;
  --cement-light: #c9c4b8;
  --stucco: #f3efe6;
  --paper: #fffdf8;
  --white: #ffffff;
  --gold: #c8892b;
  --burnt: #b65d24;
  --red: #cf2a20;
  --blue: #0a2b63;
  --green: #25d366;
  --shadow: 0 18px 40px rgba(15, 14, 12, 0.16);
  --border: 1px solid rgba(41, 37, 31, 0.14);
  --radius: 6px;
  --header-offset: 112px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  color: var(--charcoal);
  font-family: "Barlow Condensed", Arial, sans-serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  font-size: 4.2rem;
  max-width: 880px;
}

h2 {
  font-size: 2.75rem;
}

h3 {
  font-size: 1.55rem;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
}

.top-bar {
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

.top-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.top-bar a,
.top-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
}

.main-nav {
  background: rgba(29, 26, 22, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled .main-nav {
  background: rgba(15, 14, 12, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.main-nav__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}

.brand img {
  width: 62px;
  height: 54px;
  object-fit: contain;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 5px;
}

.brand span {
  max-width: 210px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 13px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 0.94rem;
  transition: background 160ms ease, color 160ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.nav-menu .nav-call {
  gap: 8px;
  margin-left: 8px;
  background: var(--gold);
  color: var(--black);
}

.nav-menu .nav-call:hover,
.nav-menu .nav-call:focus-visible {
  background: #dda245;
  color: var(--black);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  min-height: 760px;
  padding-top: var(--header-offset);
  color: var(--white);
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.hero__overlay,
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 14, 12, 0.9) 0%, rgba(15, 14, 12, 0.72) 45%, rgba(15, 14, 12, 0.28) 100%),
    linear-gradient(0deg, rgba(15, 14, 12, 0.48), rgba(15, 14, 12, 0.1));
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: 588px;
  display: flex;
  align-items: center;
}

.hero__copy {
  width: min(760px, 100%);
  padding: 74px 0 120px;
}

.hero__logo {
  width: 132px;
  height: 106px;
  object-fit: contain;
  background: rgba(255, 253, 248, 0.94);
  border-radius: var(--radius);
  padding: 10px;
  margin-bottom: 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--burnt);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section--dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow,
.cta-band .eyebrow,
.site-footer .eyebrow {
  color: var(--gold);
}

.hero h1,
.page-hero h1 {
  color: var(--white);
}

.hero__text,
.page-hero p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

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

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #dfa342;
  color: var(--black);
}

.btn--light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
}

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

.btn--dark:hover,
.btn--dark:focus-visible {
  background: var(--black);
}

.btn--whatsapp {
  background: var(--green);
  color: var(--black);
}

.hero-proof {
  position: absolute;
  z-index: 2;
  right: max(20px, calc((100vw - 1160px) / 2));
  bottom: 0;
  left: max(20px, calc((100vw - 1160px) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-proof div {
  min-height: 102px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 20px;
  background: rgba(255, 253, 248, 0.96);
  color: var(--charcoal);
  border-right: var(--border);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--burnt);
}

.hero-proof span {
  font-weight: 700;
}

.page-hero {
  min-height: 485px;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 373px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 78px 0 54px;
}

.page-hero h1 {
  width: min(850px, 100%);
}

.section {
  padding: 92px 0;
}

.section--warm {
  background: var(--stucco);
}

.section--dark {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.82);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 38px;
}

.section-heading p {
  color: var(--cement);
  font-size: 1.04rem;
}

.section-heading--light p {
  color: rgba(255, 255, 255, 0.78);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--paper);
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 14, 12, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.service-card p {
  color: var(--cement);
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--burnt);
  font-weight: 800;
}

.split-section {
  background: var(--paper);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 52px;
}

.split-grid--reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.split-grid--reverse .split-media {
  order: 2;
}

.split-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-copy p {
  color: var(--cement);
  font-size: 1.04rem;
}

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

.check-list span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px;
  background: var(--stucco);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  font-weight: 700;
}

.check-list i {
  margin-top: 4px;
  color: var(--burnt);
}

.mini-gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.35fr;
  gap: 18px;
}

.mini-gallery__item {
  display: block;
  overflow: hidden;
  min-height: 260px;
  border-radius: var(--radius);
  background: var(--black);
}

.mini-gallery__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.mini-gallery__item:hover img,
.mini-gallery__item:focus-visible img {
  transform: scale(1.045);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.cta-band {
  position: relative;
  padding: 58px 0;
  background:
    linear-gradient(90deg, rgba(29, 26, 22, 0.94), rgba(29, 26, 22, 0.8)),
    url("../images/cta-stucco.jpg") center / cover;
  color: rgba(255, 255, 255, 0.84);
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-band__inner > div:first-child {
  max-width: 720px;
}

.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.9fr 1fr;
  gap: 34px;
  padding: 62px 0;
}

.footer-brand {
  margin-bottom: 18px;
  color: var(--white);
}

.footer-brand img {
  width: 70px;
  height: 58px;
  object-fit: contain;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 6px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.footer-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li,
.footer-list a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-list i {
  width: 18px;
  margin-top: 4px;
  color: var(--gold);
}

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

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--white);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  outline: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom__inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.92rem;
}

.footer-bottom a {
  color: var(--gold);
  font-weight: 800;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: start;
}

.story-copy p {
  color: var(--cement);
  font-size: 1.04rem;
}

.owner-panel,
.form-panel,
.contact-panel {
  background: var(--paper);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(15, 14, 12, 0.08);
}

.owner-panel {
  padding: 30px;
}

.owner-panel img {
  width: 150px;
  margin: 0 0 26px;
}

.owner-panel ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.owner-panel li {
  padding-bottom: 13px;
  border-bottom: var(--border);
  color: var(--cement);
}

.owner-panel li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.owner-panel strong {
  color: var(--charcoal);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-item {
  padding: 26px;
  background: var(--paper);
  border: var(--border);
  border-radius: var(--radius);
}

.value-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(200, 137, 43, 0.15);
  color: var(--burnt);
  font-size: 1.25rem;
}

.value-item p {
  color: var(--cement);
}

.info-strip {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.info-strip span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: var(--border);
  color: var(--cement);
}

.info-strip strong {
  color: var(--charcoal);
}

.service-list {
  display: grid;
  gap: 30px;
}

.service-detail {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  background: var(--paper);
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 14, 12, 0.08);
  scroll-margin-top: 140px;
}

.service-detail:nth-child(even) {
  grid-template-columns: 1.15fr 0.85fr;
}

.service-detail:nth-child(even) .service-detail__image {
  order: 2;
}

.service-detail__image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.service-detail__content {
  padding: 42px;
}

.service-detail__content p {
  color: var(--cement);
}

.service-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.service-points li {
  position: relative;
  padding-left: 22px;
  font-weight: 700;
}

.service-points li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-btn {
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid rgba(41, 37, 31, 0.18);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--charcoal);
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.filter-btn:hover,
.filter-btn:focus-visible,
.filter-btn.is-active {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
  outline: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--charcoal);
  overflow: hidden;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.gallery-card[hidden] {
  display: none;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.gallery-card::after {
  content: "\f00e";
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: rgba(15, 14, 12, 0.84);
  color: var(--white);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  outline: none;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.04);
  opacity: 0.86;
}

.gallery-card:hover::after,
.gallery-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(15, 14, 12, 0.92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  width: min(1100px, 100%);
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.lightbox p {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  margin: 0;
  color: var(--white);
  text-align: center;
  font-weight: 800;
}

.lightbox__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.contact-panel,
.form-panel {
  padding: 32px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: start;
}

.contact-list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: rgba(200, 137, 43, 0.16);
  color: var(--burnt);
}

.contact-list strong {
  display: block;
  color: var(--charcoal);
}

.contact-list span,
.contact-list a,
.form-panel p {
  color: var(--cement);
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-form label {
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(41, 37, 31, 0.22);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  padding: 13px 14px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 137, 43, 0.18);
}

.contact-form .btn {
  width: fit-content;
  margin-top: 8px;
}

.form-note {
  min-height: 22px;
  margin: 4px 0 0;
  color: var(--burnt);
  font-weight: 700;
}

.map-section {
  padding: 0 0 92px;
  background: var(--stucco);
}

.map-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: var(--border);
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(15, 14, 12, 0.08);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 410px;
  border: 0;
}

.map-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  background: var(--paper);
}

.map-caption span {
  color: var(--cement);
}

.whatsapp-float {
  position: fixed;
  z-index: 1500;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.42);
  outline: none;
}

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

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

@media (max-width: 1100px) {
  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.35rem;
  }

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

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

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

@media (max-width: 900px) {
  :root {
    --header-offset: 74px;
  }

  .top-bar {
    display: none;
  }

  .main-nav__inner {
    min-height: 74px;
  }

  .brand span {
    max-width: 170px;
    font-size: 1.25rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 74px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    max-height: calc(100vh - 74px);
    padding: 16px 20px 24px;
    overflow: auto;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 200ms ease, opacity 200ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    justify-content: flex-start;
    min-height: 50px;
    padding: 0 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
  }

  .nav-menu .nav-call {
    justify-content: center;
    margin: 16px 0 0;
    border-radius: var(--radius);
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: 640px;
  }

  .hero__copy {
    padding: 66px 0 190px;
  }

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

  .hero-proof div {
    min-height: 88px;
  }

  .split-grid,
  .split-grid--reverse,
  .story-grid,
  .contact-grid,
  .service-detail,
  .service-detail:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .split-grid--reverse .split-media,
  .service-detail:nth-child(even) .service-detail__image {
    order: 0;
  }

  .service-detail__image img {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  .brand img {
    width: 54px;
    height: 48px;
  }

  .brand span {
    max-width: 142px;
    font-size: 1.1rem;
  }

  .hero__inner {
    min-height: 680px;
  }

  .hero__copy {
    padding: 42px 0 210px;
  }

  .hero__logo {
    width: 106px;
    height: 86px;
  }

  .hero-proof {
    right: 14px;
    left: 14px;
  }

  .hero-proof div {
    padding: 14px;
  }

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

  .hero-proof span {
    font-size: 0.86rem;
  }

  .page-hero {
    min-height: 410px;
  }

  .page-hero__inner {
    min-height: 336px;
    padding: 48px 0 40px;
  }

  .section {
    padding: 66px 0;
  }

  .service-grid,
  .values-grid,
  .gallery-grid,
  .mini-gallery,
  .footer-grid,
  .check-list,
  .service-points {
    grid-template-columns: 1fr;
  }

  .service-detail__content,
  .contact-panel,
  .form-panel,
  .owner-panel {
    padding: 24px;
  }

  .button-row,
  .footer-bottom__inner,
  .map-caption {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .contact-form .btn {
    width: 100%;
  }

  .footer-bottom__inner {
    padding: 18px 0;
  }

  .map-section {
    padding-bottom: 66px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    font-size: 1.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::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;
  }
}
