﻿@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --primary: #d31722;
  --primary-dark: #9e0e15;
  --accent: #f4b220;
  --ink: #171717;
  --muted: #5f6670;
  --surface: #ffffff;
  --surface-soft: #fff5f5;
  --surface-alt: #f7f7f8;
  --line: #ece7e7;
  --shadow: 0 24px 60px rgba(20, 20, 20, 0.08);
  --shadow-strong: 0 26px 70px rgba(20, 20, 20, 0.16);
  --radius-xl: 32px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(244, 178, 32, 0.08), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #fffdfd 45%, #ffffff 100%);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

body.scrolled .site-header {
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.08);
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.8rem);
}

h2 {
  font-size: clamp(2.4rem, 4vw, 3.9rem);
}

h3 {
  font-size: clamp(1.8rem, 3vw, 2.25rem);
}

p {
  margin: 0;
  color: var(--muted);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, #fff5f5 0%, #ffffff 100%);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.4rem;
}

.section-head.centered {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.section-head p {
  max-width: 40rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow::before {
  content: "";
  width: 2.6rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.hero-copy .eyebrow,
.hero-panel .eyebrow,
.page-hero-inner .eyebrow,
.cta-shell .eyebrow {
  color: var(--accent);
}

.hero-copy .eyebrow::before,
.hero-panel .eyebrow::before,
.page-hero-inner .eyebrow::before,
.cta-shell .eyebrow::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.88), transparent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.98rem;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #ef313d);
  box-shadow: 0 16px 34px rgba(211, 23, 34, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #b5121a, #d9232f);
}

.btn-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 34px rgba(18, 18, 18, 0.14);
}

.btn-outline {
  color: var(--primary);
  background: #ffffff;
  border-color: rgba(211, 23, 34, 0.16);
}

.btn-outline:hover {
  border-color: rgba(211, 23, 34, 0.34);
  box-shadow: 0 14px 24px rgba(211, 23, 34, 0.08);
}

.site-header {
  position: relative;
  z-index: 100;
  padding: 0.95rem 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  flex-shrink: 0;
}

.brand img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.site-nav a:not(.btn) {
  position: relative;
  padding: 0.68rem 0.1rem;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.32rem;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  white-space: nowrap;
  padding: 0.68rem 1rem;
  font-size: 0.84rem;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.3rem;
  height: 2px;
  margin: 0.26rem auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background: #000000;
}

.hero {
  min-height: calc(100vh - 106px);
}

.page-hero {
  min-height: 24rem;
}

.hero-media,
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero .hero-media {
  opacity: 0;
  transition: opacity 1s ease;
}

.hero .hero-media.is-active {
  opacity: 1;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.58) 50%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.42) 100%);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  right: -10rem;
  top: -10rem;
  width: 34rem;
  height: 34rem;
  z-index: 2;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 178, 32, 0.3), transparent 70%);
}

.hero-inner,
.page-hero-inner {
  position: relative;
  z-index: 3;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
  padding: 7rem 0 4.5rem;
}

.page-hero-inner {
  padding: 5.5rem 0 3.5rem;
  color: #ffffff;
}

.page-hero-inner p,
.page-hero-inner .breadcrumb {
  color: rgba(255, 255, 255, 0.8);
}

.hero-copy {
  max-width: 40rem;
  color: #ffffff;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 6.4vw, 4.8rem);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.hero-copy p {
  max-width: 32rem;
  margin-top: 1rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.1rem;
}

.hero-panel {
  justify-self: end;
  max-width: 24rem;
  padding: 1.9rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 26px 64px rgba(5, 5, 5, 0.18);
  backdrop-filter: blur(10px);
  color: #ffffff;
}

.hero-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.hero-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.4rem 0 0;
  padding: 0;
}

.hero-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.95rem;
  list-style: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

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

.breadcrumb {
  display: inline-flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -3rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.strip-card,
.service-card,
.detail-card,
.video-card,
.showcase-card,
.region-card,
.value-card,
.process-card,
.contact-card,
.gallery-card,
.quote-card,
.region-summary-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.strip-card {
  padding: 1.5rem;
}

.strip-card h3 {
  margin-bottom: 0.5rem;
}

.about-grid,
.story-grid,
.content-grid,
.contact-grid,
.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.media-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
}

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

.media-card-full {
  aspect-ratio: auto;
  min-height: auto;
}

.media-card-full img {
  height: auto;
  object-fit: contain;
  background: #f3f3f3;
}

.media-card-full::after {
  display: none;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.36));
}

.media-badge,
.floating-pill {
  position: absolute;
  z-index: 1;
  left: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(17, 17, 17, 0.12);
}

.section-copy h2,
.story-copy h2 {
  margin-bottom: 1rem;
}

.section-copy p + p,
.story-copy p + p {
  margin-top: 1rem;
}

.check-list,
.page-list,
.icon-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.6rem 0 0;
  padding: 0;
}

.check-list li,
.page-list li,
.icon-list li {
  display: flex;
  gap: 0.8rem;
  list-style: none;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before,
.page-list li::before,
.icon-list li::before {
  content: "•";
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.2rem;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.service-grid,
.detail-grid,
.value-grid,
.process-grid,
.video-grid,
.region-grid,
.contact-card-grid,
.gallery-grid,
.region-summary-grid {
  display: grid;
  gap: 1.25rem;
}

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

.detail-grid,
.process-grid,
.contact-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-grid,
.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.region-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.detail-card,
.value-card,
.process-card,
.contact-card,
.quote-card,
.region-summary-card {
  padding: 1.7rem;
}

.service-card span,
.detail-card span,
.value-card span,
.process-card span,
.contact-card span,
.quote-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: var(--surface-soft);
  color: var(--primary);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.service-card p,
.detail-card p,
.value-card p,
.process-card p,
.contact-card p,
.quote-card p,
.region-summary-card p {
  margin-top: 0.6rem;
}

.video-card,
.region-card,
.gallery-card {
  overflow: hidden;
}

.video-frame,
.gallery-media,
.region-card img {
  position: relative;
  overflow: hidden;
}

.video-frame {
  aspect-ratio: 9 / 16;
  background: #000000;
}

.video-frame img,
.gallery-media img,
.region-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-frame::after,
.gallery-media::after,
.region-card .region-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.04), rgba(8, 8, 8, 0.38));
}

.play-chip {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 800;
  transform: translate(-50%, -50%);
  box-shadow: 0 16px 26px rgba(17, 17, 17, 0.16);
}

.video-body,
.region-body,
.gallery-body {
  padding: 1.5rem;
}

.gallery-card.large {
  grid-column: span 2;
}

.gallery-card.tall .gallery-media {
  aspect-ratio: 4 / 5;
}

.gallery-media {
  aspect-ratio: 16 / 10;
}

.home-photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-photo-item {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #0f0f0f;
  cursor: zoom-in;
  box-shadow: var(--shadow);
}

.home-photo-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.home-photo-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.05);
}

.home-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.84);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.home-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.home-lightbox img {
  max-width: min(94vw, 1200px);
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.home-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111111;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.region-media {
  position: relative;
  aspect-ratio: 16 / 11;
}

.region-card h3,
.gallery-card h3 {
  margin-bottom: 0.35rem;
}

.cta-shell {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(211, 23, 34, 0.97), rgba(164, 9, 19, 0.96)),
    radial-gradient(circle at top right, rgba(244, 178, 32, 0.22), transparent 16rem);
  color: #ffffff;
  box-shadow: var(--shadow-strong);
}

.cta-shell p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-shell .section-actions {
  margin-top: 1.5rem;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
}

.faq-list {
  display: grid;
  gap: 0.95rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  border: 0;
  background: none;
  color: var(--ink);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--primary);
  font-size: 1.2rem;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 1.4rem 1.35rem;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-icon {
  background: rgba(211, 23, 34, 0.12);
}

.site-footer {
  margin-top: 5rem;
  padding-top: 4rem;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(180deg, #1c1c1c 0%, #101010 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.9fr 1fr;
  gap: 2rem;
  padding-bottom: 2.4rem;
}

.footer-brand img {
  height: 82px;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-title {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 1.7rem;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.8rem;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.3rem 0 1.8rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.68);
}

.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: grid;
  gap: 0.75rem;
}

.floating-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(20, 20, 20, 0.18);
}

.floating-actions .call {
  background: linear-gradient(135deg, var(--primary), #ef313d);
}

.floating-actions .whatsapp {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.contact-stack,
.contact-points {
  display: grid;
  gap: 1rem;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-weight: 700;
  color: var(--ink);
}

.cta-shell .contact-pill {
  color: #151515;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.stats-band .quote-card strong {
  display: block;
  margin-top: 0.35rem;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 2rem;
  color: var(--ink);
}

.callout-note {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--accent);
  border-radius: 0 18px 18px 0;
  background: #fffaf0;
  color: var(--ink);
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.contact-details-card,
.contact-map-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-details-card {
  padding: 1.6rem;
}

.contact-details-card h2 {
  margin-bottom: 1rem;
}

.contact-details-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.contact-details-list li {
  display: grid;
  gap: 0.22rem;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: #f8f8f9;
}

.contact-details-list strong {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.contact-details-list a,
.contact-details-list span {
  color: var(--ink);
  font-weight: 700;
}

.contact-map-card {
  overflow: hidden;
  min-height: 29rem;
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 29rem;
  border: 0;
}

@media (max-width: 1100px) {
  .hero-inner,
  .about-grid,
  .story-grid,
  .content-grid,
  .contact-grid,
  .cta-band,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-self: start;
  }

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

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

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

  .detail-grid,
  .process-grid,
  .contact-card-grid,
  .trust-grid,
  .stats-band {
    grid-template-columns: 1fr;
  }

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

  .contact-map-card,
  .contact-map-card iframe {
    min-height: 23rem;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 6.3rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.75rem);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

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

  .site-nav a:not(.btn) {
    padding: 0.8rem 0.25rem;
  }

  .site-nav .btn {
    width: 100%;
    margin-top: 0.5rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 6rem;
  }

  .section {
    padding: 4.4rem 0;
  }

  .trust-strip {
    margin-top: -1.75rem;
  }
}

@media (max-width: 720px) {
  .brand img {
    height: 64px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .service-grid,
  .value-grid,
  .video-grid,
  .gallery-grid,
  .home-photo-gallery,
  .region-grid,
  .region-summary-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card.large {
    grid-column: auto;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .floating-actions {
    left: 1rem;
    right: 1rem;
  }

  .floating-actions a {
    justify-content: center;
  }

  .hero-panel,
  .cta-shell,
  .media-card {
    border-radius: 24px;
  }
}

