﻿:root {
  --bg: radial-gradient(circle at top, #0b1219, #050a10 70%);
  --surface: rgba(10, 18, 26, 0.55);
  --surface-strong: rgba(10, 18, 26, 0.7);
  --input-bg: rgba(6, 12, 18, 0.6);
  --text: #e8eef3;
  --muted: #a6b2bf;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --accent: #0dbb76;
  --accent-soft: rgba(13, 187, 118, 0.15);
  --accent-contrast: #04100a;
  --vignette: radial-gradient(circle at 20% 20%, rgba(5, 10, 16, 0.4), rgba(5, 10, 16, 0.95) 70%);
  --vignette-opacity: 1;
  --canvas-overlay: radial-gradient(circle at 20% 20%, rgba(5, 10, 16, 0.4), rgba(5, 10, 16, 0.95) 70%);
  --canvas-bg: #05070a;
  --hero-overlay: linear-gradient(90deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.35));
}

[data-theme="light"] {
  --bg: #f6f7f9;
  --surface: rgba(255, 255, 255, 0.85);
  --surface-strong: rgba(255, 255, 255, 0.95);
  --input-bg: rgba(255, 255, 255, 0.85);
  --text: #12161c;
  --muted: #4b5563;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 10px 24px rgba(16, 24, 40, 0.12);
  --accent: #0dbb76;
  --accent-soft: rgba(13, 187, 118, 0.2);
  --accent-contrast: #03140c;
  --vignette: none;
  --vignette-opacity: 0;
  --canvas-overlay: none;
  --canvas-bg: transparent;
  --hero-overlay: linear-gradient(90deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.35));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html[data-theme="light"] .vignette {
  opacity: 0 !important;
  background: transparent !important;
}

html[data-theme="light"] #three-canvas::before,
html[data-theme="light"] #three-canvas::after {
  opacity: 0 !important;
  background: transparent !important;
}

html[data-theme="light"] section {
  background: transparent;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  font-size: 17px;
}

body.nav-open {
  overflow: hidden;
}

.page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: 84px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 8vw;
  background: var(--surface-strong);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.mobile-nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.logo {
  height: 38px;
  width: auto;
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
}

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

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-cta {
  background: var(--accent);
  color: var(--accent-contrast);
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

#three-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
  background: transparent !important;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

#three-canvas canvas {
  width: 100% !important;
  height: 100vh !important;
  display: block;
  background: transparent !important;
  pointer-events: none;
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: var(--canvas-overlay);
  opacity: var(--vignette-opacity);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.vignette.is-hidden {
  opacity: 0;
}

.loader {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 9;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 12px;
  text-transform: uppercase;
  pointer-events: none;
}

main {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  padding: 0 0 120px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  align-items: center;
  gap: 40px;
  padding: 80px 0 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  filter: blur(6px);
  width: 100%;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}

.hero-content {
  max-width: 1200px;
  position: relative;
  z-index: 2;
  animation: heroFade 1s ease forwards;
  opacity: 0;
  transform: translateY(10px);
  margin-left: clamp(24px, 6vw, 96px);
  margin-right: clamp(24px, 6vw, 96px);
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05;
  margin-bottom: 18px;
}

h2 {
  font-size: 34px;
  margin-bottom: 24px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 28px;
}

.cta-row {
  display: flex;
  gap: 16px;
}

.primary {
  background: var(--accent);
  color: var(--accent-contrast);
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-poster {
  display: none;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
  min-height: 240px;
  align-items: center;
  justify-content: center;
}

.poster-fallback {
  text-align: center;
  padding: 40px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.section {
  padding: 80px 0;
  width: 100%;
  max-width: none;
  min-height: 70vh;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 6vw;
  right: 6vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0.6;
}

.quick-trust {
  padding: 36px 0 10px;
}

.quick-trust .section-inner {
  padding: 0 6vw;
}

.quick-trust::before {
  content: "";
  display: block;
  height: 1px;
  margin: 0 6vw 24px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

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

.trust-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.trust-item h3 {
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-item p {
  color: var(--muted);
  font-size: 14px;
}

.section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.section-copy {
  max-width: 1200px;
  padding: 10px 0;
  width: 100%;
  margin-left: clamp(24px, 6vw, 96px);
  margin-right: clamp(24px, 6vw, 96px);
}

#galeria .section-copy {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 10px 8vw;
}

.gallery-grid {
  width: 100%;
}

.gallery-more {
  margin-top: 16px;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
}

.align-left .section-inner {
  grid-template-areas: "copy empty";
}

.align-right .section-inner {
  grid-template-areas: "empty copy";
}

.align-left .section-copy {
  grid-column: 1;
  justify-self: start;
}

.align-right .section-copy {
  grid-column: 2;
  text-align: left;
  justify-self: end;
}

.copy {
  color: var(--muted);
  max-width: 60ch;
}

.copy p {
  margin-bottom: 16px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

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

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card h3 {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.callout {
  margin-top: 22px;
  padding: 18px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
}

.route {
  display: grid;
  gap: 12px;
}

.route-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.arrow {
  color: var(--accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.contact-card p {
  margin: 6px 0;
  color: var(--text);
}

.contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--input-bg);
  color: var(--text);
}

.contact-status {
  min-height: 18px;
  font-size: 13px;
  color: var(--muted);
}

.contact-status.success {
  color: var(--accent);
}

.contact-status.error {
  color: #f87171;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--surface);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.contact-btn {
  justify-content: flex-start;
  background: var(--surface);
  color: var(--text);
}

.contact-actions .contact-btn:nth-child(3) {
  background: var(--accent);
  color: var(--accent-contrast);
  border-color: transparent;
}

.contact-actions .contact-btn:nth-child(3):hover {
  filter: brightness(1.08);
}

.contact-form ::selection {
  background: transparent;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 40px 8vw 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer img {
  height: 32px;
}

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

.footer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 6vw 24px;
  background: rgba(6, 10, 16, 0.8);
  backdrop-filter: blur(10px);
  z-index: 15;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-panel {
  width: min(420px, 92vw);
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}

.mobile-nav-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
}

.mobile-nav-actions .theme-toggle {
  width: 38px;
  height: 38px;
}

.mobile-nav-actions .mobile-dev-cta {
  width: 100%;
}

.mobile-nav-close {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.mobile-nav-links {
  display: grid;
  gap: 10px;
}

.mobile-nav-links a {
  text-decoration: none;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 600;
}

.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  padding: 12px 6vw calc(12px + env(safe-area-inset-bottom, 0px));
  background: var(--surface-strong);
  border-top: 1px solid var(--border);
  z-index: 12;
}

.mobile-cta-bar .primary {
  width: 100%;
  max-width: 420px;
}

.dev-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 20, 0.55);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  padding: 24px;
}

.dev-modal.open {
  display: flex;
}

.dev-modal-card {
  width: min(520px, 92vw);
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  position: relative;
}

.dev-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  cursor: pointer;
}

.dev-modal-grid {
  display: grid;
  gap: 16px;
}

.dev-name {
  font-weight: 700;
}

.dev-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.dev-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.dev-chip svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.dev-chip:hover {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.dev-email {
  background: #1a73e8;
}

.dev-whatsapp {
  background: #25d366;
}

.dev-github {
  background: #111827;
}

.dev-modal-card h3 {
  margin: 0;
  font-size: 18px;
}

.dev-modal-dev {
  padding: 12px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
}

html[data-theme="light"] .dev-modal {
  background: rgba(17, 24, 39, 0.2);
}

html[data-theme="light"] .dev-chip:hover {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

@media (max-width: 720px) {
  .dev-modal {
    padding: 16px;
  }

  .dev-modal-card {
    width: 100%;
    padding: 18px;
  }

  .dev-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .dev-chip {
    width: 100%;
    justify-content: center;
  }
}

.footer-btn {
  font-size: 13px;
  padding: 8px 14px;
}

.section-gallery .section-inner {
  max-width: 100%;
  width: 100%;
  grid-template-columns: unset;
  gap: 0;
  padding-left: 0;
  padding-right: 0;
}

.section-gallery .section-copy {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 10px 0 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  padding: 0 3vw;
  margin-top: 18px;
}

.gallery-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  appearance: none;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 30%, var(--border));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.gallery-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-thumb {
  transform: translateY(-4px);
}

.gallery-caption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
  min-height: 40px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

html[data-theme="light"] .lightbox {
  background: rgba(0, 0, 0, 0.6);
}

.lightbox-image {
  max-width: min(1100px, 92vw);
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  text-align: center;
  max-width: 80vw;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  top: 24px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 22px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  right: 24px;
}

.lightbox-nav.prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav.next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.nav-cta:hover,
.primary:hover,
.btn:hover,
.theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  filter: brightness(1.05);
}

.nav-cta:active,
.primary:active,
.btn:active,
.theme-toggle:active {
  transform: translateY(0);
  box-shadow: none;
}

.ghost:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.card:hover,
.service-card:hover,
.contact-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 30%, var(--border));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.fade {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-ready .fade {
  opacity: 0;
  transform: translateY(20px);
}

.js-ready .fade.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .site-header {
    flex-wrap: wrap;
  }
  .nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .site-header {
    display: none !important;
  }
  .mobile-nav-toggle {
    display: inline-flex !important;
  }
}

@media (max-width: 768px) {
  .page {
    padding-top: 0;
    padding-bottom: 90px;
  }
  .site-header {
    display: none;
  }
  .mobile-nav-toggle {
    display: inline-flex;
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 20;
  }
  .nav {
    display: none;
  }
  .hero {
    min-height: auto;
    padding: 48px 0 32px;
    grid-template-columns: 1fr;
  }
  .hero-poster {
    display: flex;
    margin: 24px 6vw 0;
    min-height: 200px;
  }
  .hero-content {
    margin-left: 6vw;
    margin-right: 6vw;
  }
  .lead {
    font-size: 16px;
  }
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .primary,
  .ghost {
    width: 100%;
  }
  .section {
    padding: 60px 0;
  }
  .section-copy {
    margin-left: 0;
    margin-right: 0;
  }
  #three-canvas {
    display: none;
  }
  .vignette {
    display: none;
  }
  .section-inner {
    grid-template-columns: 1fr;
    padding: 0 6vw;
  }
  .align-right .section-copy,
  .align-left .section-copy {
    grid-column: 1;
    justify-self: stretch;
  }
  .section-copy {
    margin-left: 0;
    margin-right: 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-actions {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 6vw;
  }
  .mobile-cta-bar {
    display: flex;
    justify-content: center;
  }
  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
  .footer-actions {
    width: 100%;
  }
  .footer-actions .footer-btn {
    width: 100%;
  }
}
