:root {
  --black: #040403;
  --black-2: #10100f;
  --gold: #d8b764;
  --gold-2: #f4df9a;
  --bronze: #8f6f35;
  --ink: #15110a;
  --white: #ffffff;
  --gray: #c2beb4;
  --muted: #8f8a80;
  --line: rgba(216, 183, 100, 0.28);
  --glass: rgba(16, 16, 15, 0.72);
  --glass-strong: rgba(4, 4, 3, 0.9);
  --shadow: 0 1.8rem 5rem rgba(0, 0, 0, 0.48);
  --soft-shadow: 0 1rem 2.8rem rgba(0, 0, 0, 0.28);
  --max: 90rem;
  --nav-h: 5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 0%, rgba(216, 183, 100, 0.14), transparent 23rem),
    radial-gradient(circle at 86% 18%, rgba(143, 111, 53, 0.12), transparent 26rem),
    linear-gradient(135deg, var(--black) 0%, #090807 48%, #15120c 100%);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.9rem, 0.82rem + 0.32vw, 1.05rem);
  line-height: 1.75;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 5.5rem 5.5rem;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.58), transparent 72%);
}

body.menu-open {
  overflow: hidden;
}

img,
iframe {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  color: var(--black);
  background: var(--gold);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: var(--nav-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(4, 4, 3, 0.82), rgba(4, 4, 3, 0.48));
  backdrop-filter: blur(1.25rem) saturate(1.1);
  -webkit-backdrop-filter: blur(1.25rem) saturate(1.1);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(4, 4, 3, 0.92);
  border-color: rgba(216, 183, 100, 0.22);
  box-shadow: 0 0.9rem 2.5rem rgba(0, 0, 0, 0.42);
}

.nav-shell {
  width: min(100% - 2rem, var(--max));
  min-height: var(--nav-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand img {
  width: clamp(2.35rem, 1.95rem + 1vw, 3.15rem);
  height: clamp(2.35rem, 1.95rem + 1vw, 3.15rem);
  object-fit: contain;
  filter: drop-shadow(0 0 1.05rem rgba(216, 183, 100, 0.36));
}

.brand-wordmark {
  display: grid;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand-wordmark strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1rem, 0.82rem + 0.72vw, 1.52rem);
  font-weight: 700;
}

.brand-wordmark span {
  color: var(--gray);
  font-size: clamp(0.55rem, 0.48rem + 0.25vw, 0.7rem);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.menu-toggle {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.5rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 1.18rem;
  height: 0.1rem;
  display: block;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  transform: translateY(-0.42rem);
}

.menu-toggle span::after {
  transform: translateY(0.42rem);
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  background: var(--white);
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  background: var(--white);
  transform: rotate(-45deg);
}

.nav-menu {
  position: fixed;
  inset: var(--nav-h) 0 auto;
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid var(--line);
  transform: translateY(-125%);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

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

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 2.9rem;
  padding: 0.7rem 0.9rem;
  border-radius: 0.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.83rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--white);
  background: rgba(216, 183, 100, 0.1);
  box-shadow: inset 0 0 0 1px rgba(216, 183, 100, 0.25);
  outline: none;
}

.nav-link:hover,
.nav-link:focus-visible {
  transform: translateY(-0.08rem);
}

.nav-link::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: -2.65rem;
  z-index: 4;
  width: max-content;
  max-width: min(18rem, 80vw);
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(201, 169, 97, 0.34);
  border-radius: 0.45rem;
  color: var(--white);
  background: rgba(5, 5, 5, 0.92);
  box-shadow: 0 1rem 2.2rem rgba(0, 0, 0, 0.35);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0;
  transform: translate(-50%, -0.25rem);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 70% 30%, rgba(216, 183, 100, 0.15), transparent 22rem),
    linear-gradient(90deg, rgba(4, 4, 3, 0.94), rgba(4, 4, 3, 0.62), rgba(4, 4, 3, 0.86)),
    var(--hero-image, url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=2400&q=82"));
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 32%;
  background: linear-gradient(transparent, var(--black));
}

.hero-inner,
.section-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.hero-content {
  width: min(56rem, 100%);
  padding-block: calc(var(--nav-h) + 3.4rem) 4.75rem;
}

.hero:not(.page-hero) .hero-content {
  text-align: center;
  justify-self: center;
}

.hero:not(.page-hero) .eyebrow {
  justify-content: center;
}

.hero-visual {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 18rem;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero-visual::before {
  content: none;
}

.hero-visual::after {
  content: none;
}

.hero-visual:hover::before {
  transform: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.2rem;
  color: var(--gold-2);
  font-size: clamp(0.68rem, 0.62rem + 0.22vw, 0.82rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.45);
}

.eyebrow::before {
  content: "";
  width: clamp(1.6rem, 7vw, 4rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2));
  box-shadow: 0 0 1rem rgba(216, 183, 100, 0.7);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.75rem, 1.45rem + 6.8vw, 8.75rem);
  max-width: 11ch;
  text-wrap: balance;
  text-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.55);
}

h2 {
  font-size: clamp(2rem, 1.35rem + 3vw, 4.8rem);
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.25rem, 1rem + 0.8vw, 2rem);
}

.lead {
  max-width: 58rem;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 0.92rem + 0.55vw, 1.45rem);
  line-height: 1.68;
}

.hero:not(.page-hero) .lead {
  margin-inline: auto;
}

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

.hero-visual .hero-actions {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.95rem;
  width: min(100% - 2rem, 17.5rem);
  margin: auto;
  padding: 1.05rem;
  border: 1px solid rgba(244, 223, 154, 0.3);
  border-radius: 0.65rem;
  background:
    linear-gradient(135deg, rgba(216, 183, 100, 0.18), rgba(255, 255, 255, 0.045)),
    rgba(4, 4, 3, 0.7);
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(0.85rem);
  -webkit-backdrop-filter: blur(0.85rem);
}

.btn {
  position: relative;
  min-height: 3.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.55rem;
  border: 1px solid rgba(216, 183, 100, 0.56);
  border-radius: 0.55rem;
  color: var(--white);
  background: rgba(216, 183, 100, 0.12);
  box-shadow: 0 0 0 rgba(216, 183, 100, 0);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hero-actions .btn {
  width: 100%;
  min-width: 0;
  min-height: 4.25rem;
  padding-inline: 1.5rem;
  font-size: 0.9rem;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.22) 45%, transparent 62%);
  transform: translateX(-115%);
  transition: transform 520ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-0.18rem);
  border-color: rgba(244, 223, 154, 0.78);
  background: rgba(216, 183, 100, 0.22);
  box-shadow: 0 0 2.4rem rgba(216, 183, 100, 0.3), var(--soft-shadow);
  outline: none;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(115%);
}

.btn-primary {
  color: var(--black);
  border-color: rgba(244, 223, 154, 0.82);
  background: linear-gradient(135deg, #fff0b3, var(--gold) 62%, #b98f3e);
  box-shadow: 0 1rem 2.4rem rgba(216, 183, 100, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #fff7d0, var(--gold-2) 48%, var(--gold));
}

.stats-band {
  position: relative;
  z-index: 2;
  margin-top: -5rem;
  padding: 0 0 2.5rem;
}

.stats-grid {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(216, 183, 100, 0.26);
  border-radius: 0.7rem;
  background:
    linear-gradient(135deg, rgba(216, 183, 100, 0.11), transparent 42%),
    rgba(16, 16, 15, 0.82);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stat-card {
  min-height: clamp(7.5rem, 16vw, 11rem);
  display: grid;
  align-content: center;
  gap: 0.2rem;
  padding: clamp(1rem, 2.5vw, 2rem);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-number {
  color: var(--gold-2);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 1.3rem + 2.5vw, 4rem);
  line-height: 1;
}

.stat-label {
  color: var(--gray);
  font-size: clamp(0.72rem, 0.65rem + 0.25vw, 0.92rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section {
  position: relative;
  padding: clamp(4.4rem, 8vw, 8.4rem) 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), transparent 44%),
    linear-gradient(90deg, transparent, rgba(216, 183, 100, 0.035), transparent);
  pointer-events: none;
}

.section-dark {
  background:
    radial-gradient(circle at 85% 15%, rgba(216, 183, 100, 0.08), transparent 24rem),
    linear-gradient(135deg, rgba(16, 16, 15, 0.94), rgba(4, 4, 3, 0.86));
  border-block: 1px solid rgba(255, 255, 255, 0.055);
}

.section-grid {
  display: grid;
  gap: clamp(1.8rem, 5vw, 5rem);
}

.section-copy p,
.card p,
.case-card p,
.timeline-card p,
.footer p {
  color: var(--gray);
}

.section-copy p {
  margin: 1.15rem 0 0;
  max-width: 62rem;
}

.feature-panel {
  position: relative;
  padding: clamp(1.25rem, 4vw, 3rem);
  border: 1px solid rgba(216, 183, 100, 0.25);
  border-radius: 0.65rem;
  background:
    linear-gradient(135deg, rgba(216, 183, 100, 0.13), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(16, 16, 15, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(0.75rem);
  -webkit-backdrop-filter: blur(0.75rem);
  overflow: hidden;
}

.feature-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.25rem;
  background: linear-gradient(var(--gold-2), transparent);
}

.feature-panel p:first-child {
  margin-top: 0;
}

.feature-panel p:last-child {
  margin-bottom: 0;
}

.cards-grid {
  display: grid;
  gap: 1.05rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.card,
.case-card,
.timeline-card,
.contact-card {
  position: relative;
  min-height: 100%;
  padding: clamp(1.2rem, 2.8vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.65rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.024)),
    rgba(16, 16, 15, 0.72);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(0.8rem);
  -webkit-backdrop-filter: blur(0.8rem);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card::before,
.case-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 183, 100, 0.78), transparent);
  opacity: 0.8;
}

.card:hover,
.case-card:hover,
.timeline-card:hover {
  transform: translateY(-0.35rem);
  border-color: rgba(216, 183, 100, 0.46);
  box-shadow: 0 1.35rem 3.4rem rgba(0, 0, 0, 0.38), 0 0 2rem rgba(216, 183, 100, 0.13);
}

.card-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(216, 183, 100, 0.42);
  border-radius: 0.5rem;
  color: var(--gold-2);
  background:
    linear-gradient(135deg, rgba(216, 183, 100, 0.16), rgba(216, 183, 100, 0.04));
  box-shadow: inset 0 0 1rem rgba(216, 183, 100, 0.06);
  font-size: 1.1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.image-mosaic {
  position: relative;
  padding: clamp(2.5rem, 5vw, 5rem) 0;
  background:
    linear-gradient(180deg, rgba(4, 4, 3, 0.24), rgba(16, 16, 15, 0.84)),
    radial-gradient(circle at 15% 15%, rgba(216, 183, 100, 0.1), transparent 22rem);
}

.image-mosaic-tight {
  padding-block: clamp(2.2rem, 4vw, 4rem);
}

.image-mosaic-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  gap: clamp(0.85rem, 1.6vw, 1.25rem);
}

.image-tile {
  position: relative;
  min-height: clamp(13rem, 26vw, 22rem);
  border: 1px solid rgba(216, 183, 100, 0.24);
  border-radius: 0.65rem;
  background:
    linear-gradient(180deg, rgba(4, 4, 3, 0.04), rgba(4, 4, 3, 0.5)),
    var(--tile-image);
  background-position: center;
  background-size: cover;
  box-shadow: 0 1.4rem 3.5rem rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.image-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(216, 183, 100, 0.2), transparent 32%),
    linear-gradient(180deg, transparent, rgba(4, 4, 3, 0.38));
  opacity: 0.8;
  transition: opacity 220ms ease;
}

.image-tile:hover::before {
  opacity: 0.45;
}

.media-strip {
  min-height: clamp(18rem, 45vw, 31rem);
  background:
    linear-gradient(90deg, rgba(4, 4, 3, 0.92), rgba(4, 4, 3, 0.18), rgba(4, 4, 3, 0.84)),
    var(--strip-image, url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=2200&q=82"));
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  border-block: 1px solid rgba(216, 183, 100, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -5rem 8rem rgba(4, 4, 3, 0.36);
}

.media-strip-split {
  min-height: clamp(16rem, 34vw, 26rem);
}

.media-strip-compact {
  min-height: clamp(13rem, 26vw, 20rem);
}

.timeline-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.3rem;
}

.timeline-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--gold-2);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.case-meta {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.32rem 0.65rem;
  border: 1px solid rgba(216, 183, 100, 0.34);
  border-radius: 999px;
  color: var(--gold-2);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-layout {
  display: grid;
  gap: 1.1rem;
  margin-top: 2.4rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.42rem;
}

.field label {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.55rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(216, 183, 100, 0.74);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 0.2rem rgba(216, 183, 100, 0.11);
}

.map-frame {
  min-height: clamp(20rem, 50vh, 34rem);
  border: 0;
  border-radius: 0.65rem;
  filter: grayscale(0.9) contrast(1.08) brightness(0.84);
  border: 1px solid rgba(216, 183, 100, 0.18);
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.contact-list a,
.contact-list span {
  color: rgba(255, 255, 255, 0.84);
}

.site-footer {
  padding: clamp(2.8rem, 6vw, 5rem) 0 2rem;
  border-top: 1px solid rgba(216, 183, 100, 0.24);
  background:
    linear-gradient(180deg, rgba(12, 11, 9, 0.94), #030303);
}

.footer-grid {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.footer-location {
  display: grid;
  gap: 1rem;
}

.footer-brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 1.3rem + 1.5vw, 2.8rem);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
}

.footer-map {
  width: 100%;
  min-height: 12rem;
  border: 1px solid rgba(216, 183, 100, 0.26);
  border-radius: 0.65rem;
  filter: grayscale(0.9) contrast(1.08) brightness(0.78);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.3);
}

.footer-links a {
  color: var(--gray);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links a:hover {
  color: var(--gold-2);
}

.footer-bottom {
  width: min(100% - 2rem, var(--max));
  margin: 2rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.78rem;
}

.whatsapp-float {
  position: fixed;
  right: clamp(0.8rem, 2vw, 1.4rem);
  bottom: clamp(0.8rem, 2vw, 1.4rem);
  z-index: 40;
  width: 3.55rem;
  height: 3.55rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--black);
  background: linear-gradient(135deg, #fff0ad, var(--gold));
  box-shadow: 0 0 0 0 rgba(216, 183, 100, 0.42), 0 1rem 2rem rgba(0, 0, 0, 0.32);
  font-weight: 900;
  animation: pulse 2.2s infinite;
}

.whatsapp-float svg {
  width: 1.65rem;
  height: 1.65rem;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(216, 183, 100, 0.42), 0 1rem 2rem rgba(0, 0, 0, 0.32); }
  70% { box-shadow: 0 0 0 1rem rgba(216, 183, 100, 0), 0 1rem 2rem rgba(0, 0, 0, 0.32); }
  100% { box-shadow: 0 0 0 0 rgba(216, 183, 100, 0), 0 1rem 2rem rgba(0, 0, 0, 0.32); }
}

[data-animate] {
  opacity: 0;
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-animate="fade-up"] { transform: translateY(1.8rem); }
[data-animate="fade-left"] { transform: translateX(1.8rem); }
[data-animate="fade-right"] { transform: translateX(-1.8rem); }
[data-animate="zoom-in"] { transform: scale(0.96); }

[data-animate].in-view {
  opacity: 1;
  transform: none;
}

.page-hero {
  min-height: clamp(24rem, 58svh, 42rem);
}

.page-hero h1 {
  max-width: 12ch;
}

.hero:not(.page-hero) h1 {
  margin-inline: auto;
}

@media (min-width: 42rem) {
  .cards-grid,
  .timeline-grid,
  .image-mosaic-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-tile-large {
    grid-row: span 2;
    min-height: clamp(24rem, 42vw, 36rem);
  }

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

  .contact-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .hero-actions .btn {
    min-width: 0;
  }
}

@media (min-width: 68rem) {
  .menu-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    border: 0;
    background: transparent;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    min-height: 2.35rem;
    padding: 0.55rem 0.72rem;
    justify-content: center;
    font-size: 0.68rem;
  }

  .hero:not(.page-hero) .hero-inner {
    min-height: 100svh;
    grid-template-columns: minmax(0, 0.92fr) minmax(25rem, 0.78fr);
    padding-top: var(--nav-h);
  }

  .hero:not(.page-hero) .hero-content {
    justify-self: start;
    text-align: left;
    padding-block: 4rem 5rem;
  }

  .hero:not(.page-hero) .eyebrow {
    justify-content: flex-start;
  }

  .hero:not(.page-hero) h1,
  .hero:not(.page-hero) .lead {
    margin-inline: 0;
  }

  .hero:not(.page-hero) .hero-actions {
    justify-content: flex-start;
  }

  .hero-visual {
    position: relative;
    display: grid;
    justify-self: end;
    width: min(100%, 34rem);
    aspect-ratio: 0.82;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .hero-visual {
    transform: translateY(1.15rem);
  }

  .section-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

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

  .image-mosaic-inner {
    grid-template-columns: 1.35fr 0.85fr;
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }

  .footer-location {
    grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 1fr);
    align-items: start;
  }
}

@media (min-width: 120rem) {
  :root {
    --max: 104rem;
  }

  body {
    font-size: 1.16rem;
  }

  .hero-visual {
    width: min(100%, 38rem);
  }
}

@media (max-width: 26rem) {
  :root {
    --nav-h: 4.25rem;
  }

  .nav-shell,
  .hero-inner,
  .section-inner,
  .stats-grid,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 1rem, var(--max));
  }

  .brand-wordmark span {
    display: none;
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 3.2rem;
    padding-inline: 0.9rem;
    font-size: 0.7rem;
  }

  .hero-actions .btn {
    min-height: 3.45rem;
  }

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

  .stat-card {
    min-height: 6.5rem;
  }

  .whatsapp-float {
    width: 3rem;
    height: 3rem;
  }
}

@media (max-width: 42rem) {
  .hero {
    min-height: auto;
  }

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

  .hero-content {
    padding-block: calc(var(--nav-h) + 2.3rem) 1.5rem;
  }

  .hero-visual {
    width: 100%;
    min-height: 20rem;
    margin-bottom: 4.25rem;
  }

  .hero-visual .hero-actions {
    width: min(100% - 1.2rem, 24rem);
    padding: 0.85rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .stats-band {
    margin-top: -3.25rem;
  }

  .media-strip {
    min-height: 15rem;
    background-attachment: scroll;
  }
}

@media (max-width: 20rem) {
  .brand-wordmark strong {
    font-size: 0.88rem;
  }

  h1 {
    font-size: clamp(2rem, 18vw, 2.6rem);
  }

  h2 {
    font-size: clamp(1.55rem, 13vw, 2rem);
  }

  .nav-link {
    min-height: 2.45rem;
    font-size: 0.64rem;
  }

  .card,
  .case-card,
  .timeline-card,
  .contact-card,
  .feature-panel {
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce), (max-width: 36rem) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }

  .media-strip {
    background-attachment: scroll;
  }

  .btn::after {
    display: none;
  }
}
