:root {
  --color-primary: #176b4d;
  --color-primary-dark: #0d3b2e;
  --color-accent: #c7983e;
  --color-background: #fafaf7;
  --color-surface: #ffffff;
  --color-surface-soft: #edf4ef;
  --color-surface-warm: #f2efe8;
  --color-text: #17201c;
  --color-text-muted: #5f6b65;
  --color-border: #dce4df;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 4px 16px rgba(13, 59, 46, .06);
  --shadow-md: 0 16px 40px rgba(13, 59, 46, .10);
  --shadow-lg: 0 28px 70px rgba(13, 59, 46, .16);
  --container-width: 1240px;
  --header-height: 82px;
}

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

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

body {
  margin: 0;
  font-family: Manrope, Inter, Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-background);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(199, 152, 62, .8);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-dark);
  color: #fff;
  font-weight: 800;
}

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

.container {
  width: min(var(--container-width), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(250, 250, 247, .94);
  border-bottom: 1px solid rgba(220, 228, 223, .88);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, background .2s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 245px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--color-border);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 15px;
  font-weight: 900;
}

.brand-text small {
  max-width: 180px;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 800;
}

.desktop-nav a {
  padding-block: 8px;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="true"] {
  color: var(--color-primary-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn[aria-disabled="true"],
.btn:disabled,
button:disabled {
  cursor: not-allowed;
  opacity: .55;
  transform: none;
}

.btn-primary {
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 12px 26px rgba(23, 107, 77, .18);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
}

.btn-secondary {
  color: var(--color-primary-dark);
  background: rgba(255, 255, 255, .9);
  border-color: rgba(255, 255, 255, .65);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
}

.btn-secondary.dark {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .28);
}

.btn-gold {
  color: #20170a;
  background: var(--color-accent);
}

.btn-gold:hover {
  background: #d7a94d;
}

.btn-compact {
  min-height: 46px;
  padding: 12px 16px;
  font-size: 14px;
}

.btn.full {
  width: 100%;
}

.icon {
  font-size: 18px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-primary-dark);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(680px, 78vh, 780px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 54%;
  transform: scale(1.06);
  filter: brightness(.42) saturate(.58) contrast(.82) blur(2px);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 32, 23, .98) 0%, rgba(7, 32, 23, .9) 48%, rgba(7, 32, 23, .66) 100%),
    linear-gradient(180deg, rgba(7, 32, 23, .72), rgba(7, 32, 23, .82));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 48px;
  align-items: end;
  padding-block: 96px 74px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(52px, 5.4vw, 68px);
  max-width: 760px;
}

h2 {
  font-size: clamp(36px, 4vw, 48px);
  max-width: 900px;
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
}

.hero-lead {
  max-width: 690px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.45;
}

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

.hero-secondary {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 800;
}

.hero-panel {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: var(--radius-lg);
  background: rgba(250, 250, 247, .12);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .18);
}

.panel-kicker,
.contact-label,
.metric-label {
  display: block;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.1;
}

.hero-panel p {
  margin-top: 12px;
  color: rgba(255, 255, 255, .82);
}

.coordinate {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  font-weight: 800;
}

.section,
.metric-section {
  padding-block: clamp(88px, 9vw, 118px);
}

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

.section-intro {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-intro.centered {
  margin-inline: auto;
  text-align: center;
}

.section-intro p,
.section-copy p {
  margin-top: 18px;
  max-width: 760px;
  color: var(--color-text-muted);
  font-size: 17px;
}

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

.metric-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.metric-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--color-primary);
  background: var(--color-surface-soft);
  font-size: 22px;
}

.metric-card strong {
  display: block;
  margin-top: 10px;
  color: var(--color-primary-dark);
  font-size: clamp(32px, 3.4vw, 45px);
  line-height: 1;
  letter-spacing: 0;
}

.metric-card p {
  margin-top: 14px;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.55;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, .8fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}

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

.check-list span {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-weight: 800;
}

.check-list svg {
  flex: 0 0 auto;
  color: var(--color-primary);
  font-size: 20px;
  stroke-width: 2.4;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--color-primary);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-card {
  overflow: hidden;
  border: 1px solid rgba(220, 228, 223, .9);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.contact-media {
  padding: 18px 18px 0;
}

.contact-media img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.contact-body {
  padding: 24px;
}

.contact-body h3 {
  margin-top: 8px;
  font-size: 28px;
}

.contact-body p {
  margin-top: 10px;
  color: var(--color-text-muted);
}

.contact-body dl {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.contact-body dl div {
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--color-surface-soft);
}

.contact-body dt {
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-body dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.note {
  padding: 14px;
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-sm);
  background: var(--color-surface-warm);
  font-size: 14px;
}

.soft-section,
.gallery-section,
.location-section {
  background: var(--color-surface-soft);
}

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

.deal-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.deal-number {
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 900;
}

.deal-card h3 {
  margin-top: 26px;
}

.deal-card p {
  margin-top: 12px;
  color: var(--color-text-muted);
  font-size: 15px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.project-card,
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.project-card > div {
  padding: 22px;
}

.project-card p {
  margin-top: 10px;
  color: var(--color-text-muted);
  font-size: 15px;
}

.media-button,
.map-main,
.gallery-item button,
.map-thumbs button {
  position: relative;
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.media-button {
  aspect-ratio: 4 / 3;
  background: var(--color-surface-soft);
}

.media-button img,
.gallery-item img,
.map-main img,
.map-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}

.media-button.contain img,
.gallery-item.contain img {
  object-fit: contain;
  padding: 12px;
  background: #fff;
}

.media-button span,
.map-main span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 59, 46, .92);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.media-button:hover img,
.gallery-item button:hover img,
.map-main:hover img,
.map-thumbs button:hover img {
  transform: scale(1.035);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 84px);
  align-items: center;
}

.location-media {
  display: grid;
  gap: 16px;
}

.map-main {
  aspect-ratio: 1 / .78;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.map-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.map-thumbs button {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.location-facts {
  display: grid;
  gap: 12px;
  margin: 26px 0 28px;
}

.location-facts span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
  font-weight: 800;
}

.location-facts svg {
  color: var(--color-primary);
  font-size: 22px;
}

.info-table {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.info-table div {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 22px;
  padding: 22px 26px;
}

.info-table div:nth-child(even) {
  background: rgba(237, 244, 239, .55);
}

.info-table div + div {
  border-top: 1px solid var(--color-border);
}

.info-table strong {
  color: var(--color-primary-dark);
  font-size: 15px;
}

.info-table span {
  color: var(--color-text-muted);
}

.section-action {
  margin-top: 28px;
}

.gallery-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.gallery-filters button {
  min-height: 44px;
  flex: 0 0 auto;
  padding: 10px 16px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #fff;
  color: var(--color-text-muted);
  font-weight: 900;
  cursor: pointer;
}

.gallery-filters button.active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

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

.gallery-item {
  margin: 0;
  transition: opacity .2s ease, transform .2s ease;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item button {
  aspect-ratio: 4 / 3;
}

.gallery-item figcaption {
  padding: 14px 16px 16px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 900;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: clamp(36px, 6vw, 80px);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.faq-item button {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font-size: 17px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  inset: 10px 2px auto;
  height: 2px;
  border-radius: 2px;
  background: var(--color-primary);
}

.faq-item button span::after {
  transform: rotate(90deg);
  transition: transform .18s ease;
}

.faq-item button[aria-expanded="true"] span::after {
  transform: rotate(0deg);
}

.faq-panel {
  padding: 0 22px 22px;
}

.faq-panel p {
  color: var(--color-text-muted);
}

.final-cta {
  padding-block: 36px 106px;
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
  padding: clamp(36px, 6vw, 70px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 12%, rgba(199, 152, 62, .18), transparent 34%),
    var(--color-primary-dark);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-box h2 {
  max-width: 790px;
}

.cta-box p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .78);
}

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

.site-footer {
  padding-block: 42px 28px;
  background: #101915;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(160px, .5fr) minmax(220px, .6fr);
  gap: 36px;
}

.footer-brand {
  display: flex;
  gap: 16px;
}

.footer-brand img {
  width: 72px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.footer-brand strong {
  font-size: 17px;
}

.footer-brand p,
.footer-bottom,
.site-footer nav a {
  color: rgba(255, 255, 255, .68);
}

.footer-brand p {
  max-width: 560px;
  margin-top: 8px;
}

.site-footer nav,
.footer-contact {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-contact button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .72);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 13px;
}

.mobile-whatsapp {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 70;
  min-height: 54px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  color: #fff;
  font-weight: 900;
  box-shadow: var(--shadow-md);
  transform: translateY(120%);
  opacity: 0;
  transition: transform .22s ease, opacity .22s ease;
}

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

.lightbox,
.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(9, 24, 18, .84);
}

.lightbox[hidden],
.modal[hidden] {
  display: none;
}

.lightbox figure {
  width: min(100%, 1020px);
  max-height: 90vh;
  display: grid;
  gap: 12px;
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: #fff;
}

.lightbox figcaption {
  color: #fff;
  text-align: center;
  font-weight: 900;
}

.lightbox-close,
.lightbox-nav,
.modal-close {
  position: fixed;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: var(--color-primary-dark);
  font-weight: 900;
  cursor: pointer;
}

.lightbox-close,
.modal-close {
  top: 22px;
  right: 22px;
  min-height: 44px;
  padding: 10px 16px;
}

.lightbox-nav {
  top: 50%;
  min-height: 48px;
  padding: 12px 16px;
  transform: translateY(-50%);
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

.modal-panel {
  width: min(920px, 100%);
  max-height: min(760px, 88vh);
  overflow: auto;
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.modal-panel h2 {
  font-size: clamp(28px, 4vw, 40px);
}

.modal-panel p {
  margin-top: 16px;
  color: var(--color-text-muted);
}

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    inset: var(--header-height) 16px auto;
    z-index: 90;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }

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

  .mobile-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-weight: 900;
  }

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

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

  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
  }

  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 40px, var(--container-width));
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .brand-text small {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg img {
    object-position: 55% 44%;
    transform: scale(1.08);
    filter: brightness(.34) saturate(.5) contrast(.78) blur(2.5px);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 32, 23, .86) 0%, rgba(7, 32, 23, .9) 52%, rgba(7, 32, 23, .98) 100%),
      linear-gradient(90deg, rgba(7, 32, 23, .78), rgba(7, 32, 23, .72));
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 92px 54px;
  }

  .hero-copy,
  .section-intro,
  .section-copy,
  .contact-body,
  .deal-card,
  .project-card > div,
  .metric-card,
  .info-table div,
  .gallery-item figcaption,
  .faq-layout,
  .cta-box,
  .footer-brand,
  .footer-links,
  .footer-contact,
  .footer-bottom {
    text-align: center;
  }

  .hero-copy,
  .section-copy,
  .contact-body,
  .deal-card,
  .project-card > div,
  .metric-card,
  .info-table div,
  .cta-box,
  .footer-brand,
  .footer-links,
  .footer-contact {
    align-items: center;
    justify-items: center;
  }

  h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .hero-lead {
    font-size: clamp(18px, 5vw, 21px);
  }

  .hero-actions,
  .hero-actions .btn,
  .section-action .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn,
  .section-action,
  .section-action .btn,
  .cta-actions,
  .cta-actions .btn,
  .contact-card .btn,
  .mobile-menu a {
    justify-content: center;
    text-align: center;
  }

  .hero-trust,
  .check-list,
  .location-facts,
  .gallery-filters,
  .map-thumbs,
  .contact-body dl,
  .footer-links,
  .footer-contact {
    justify-content: center;
  }

  .hero-trust li,
  .check-list span,
  .location-facts span {
    justify-content: center;
  }

  .section-copy p,
  .section-intro p,
  .hero-lead,
  .cta-box p,
  .footer-brand p {
    margin-inline: auto;
  }

  .hero-panel {
    display: none;
  }

  .section,
  .metric-section {
    padding-block: 58px;
  }

  .metrics-grid,
  .check-list,
  .deal-grid,
  .project-grid,
  .location-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .metric-card {
    min-height: 190px;
    padding: 18px;
  }

  .metric-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
  }

  .metric-card strong {
    font-size: clamp(27px, 8vw, 36px);
  }

  .metric-card p {
    font-size: 14px;
  }

  .info-table {
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .info-table div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    margin-bottom: 12px;
    padding: 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
  }

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

  .footer-bottom {
    display: grid;
  }

  .mobile-whatsapp {
    display: flex;
  }

  .site-footer {
    padding-bottom: 96px;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 40px);
  }

  .brand-text strong {
    font-size: 13px;
  }

  .hero-grid {
    padding-block: 78px 46px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
  }

  .metric-card {
    min-height: 176px;
  }

  .deal-card,
  .contact-body,
  .project-card > div {
    padding: 20px;
  }

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

  .gallery-item button {
    aspect-ratio: 4 / 3.2;
  }

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

  .cta-box {
    border-radius: var(--radius-lg);
    padding: 28px 20px;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .lightbox-nav.prev {
    left: 16px;
  }

  .lightbox-nav.next {
    right: 16px;
  }
}
