:root {
  --bg: #090909;
  --bg-soft: #111111;
  --panel: #171717;
  --panel-strong: #202020;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f1e8;
  --muted: #b8b0a1;
  --gold: #c99a42;
  --gold-soft: #f0d18b;
  --red: #8f1f1b;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --header: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

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

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

button {
  cursor: pointer;
}

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

.section {
  padding: 96px 0;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 999;
  width: auto;
  height: auto;
  left: 16px;
  top: 16px;
  padding: 10px 14px;
  clip: auto;
  background: var(--gold);
  color: #111;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(9, 9, 9, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(201, 154, 66, 0.75);
  border-radius: 6px;
  color: var(--gold-soft);
  background: rgba(201, 154, 66, 0.08);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(245, 241, 232, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.nav-menu a {
  position: relative;
  padding: 8px 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 13px;
}

.btn-gold {
  background: var(--gold);
  color: #111;
  box-shadow: 0 14px 36px rgba(201, 154, 66, 0.18);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 86svh;
  padding: calc(var(--header) + 70px) 0 72px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.72) 42%, rgba(7, 7, 7, 0.28) 100%),
    linear-gradient(0deg, rgba(9, 9, 9, 0.88) 0%, rgba(9, 9, 9, 0.05) 48%, rgba(9, 9, 9, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: 64px;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: 42px;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(245, 241, 232, 0.82);
  font-size: 20px;
}

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

.hero-card {
  position: absolute;
  z-index: 2;
  right: max(20px, calc((100vw - 1120px) / 2));
  bottom: 34px;
  width: 270px;
  padding: 18px;
  border: 1px solid rgba(201, 154, 66, 0.34);
  border-radius: 8px;
  background: rgba(12, 12, 12, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  line-height: 1.15;
}

.split,
.booking-layout,
.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 56px;
  align-items: start;
}

.positioning {
  background: var(--bg-soft);
}

.position-copy p {
  color: var(--muted);
  font-size: 18px;
}

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

.impact-lines span {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  font-weight: 800;
}

.section-heading {
  max-width: 720px;
}

.section-heading.centered {
  margin: 0 auto 36px;
  text-align: center;
}

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

.service-card,
.trust-item,
.booking-form,
.testimonial-placeholder,
.reel-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.service-card span {
  color: var(--gold-soft);
  font-weight: 800;
}

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

.service-card a {
  margin-top: auto;
  color: var(--gold-soft);
  font-weight: 800;
}

.service-card.featured {
  border-color: rgba(201, 154, 66, 0.55);
  background: linear-gradient(180deg, rgba(201, 154, 66, 0.16), rgba(143, 31, 27, 0.08));
}

.booking {
  background:
    linear-gradient(180deg, rgba(143, 31, 27, 0.12), rgba(9, 9, 9, 0)),
    var(--bg-soft);
}

.booking-copy p {
  color: var(--muted);
  font-size: 18px;
}

.booking-note {
  margin-top: 28px;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.booking-note strong,
.booking-note span {
  display: block;
}

.booking-note span {
  margin-top: 4px;
  color: var(--muted);
}

.booking-form {
  padding: 26px;
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 18px;
}

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

label {
  display: block;
  margin-bottom: 8px;
  color: rgba(245, 241, 232, 0.88);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: #0e0e0e;
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 154, 66, 0.14);
}

.field-error {
  border-color: #d1473e;
}

.form-feedback {
  min-height: 22px;
  margin: 0 0 14px;
  color: #ff9c92;
  font-weight: 700;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 24px;
}

.gallery-filter button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 8px 14px;
  font-weight: 800;
}

.gallery-filter button.active {
  border-color: var(--gold);
  background: rgba(201, 154, 66, 0.14);
  color: var(--gold-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #151515;
  padding: 0;
  text-align: left;
}

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

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-item:hover img,
.gallery-item:hover video,
.gallery-item:focus-visible img,
.gallery-item:focus-visible video {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.82) 100%);
}

.gallery-item.video-thumb::before {
  content: "Play";
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(201, 154, 66, 0.92);
  color: #111;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 14px;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.reels {
  background: var(--bg-soft);
}

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

.reel-card {
  overflow: hidden;
}

.reel-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  background: #000;
  object-fit: cover;
}

.reel-card h3 {
  margin: 0;
  padding: 18px;
  font-size: 18px;
  text-transform: uppercase;
}

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

.trust-item {
  min-height: 240px;
  padding: 22px;
}

.trust-item span {
  width: 34px;
  height: 4px;
  display: block;
  margin-bottom: 22px;
  background: var(--gold);
}

.trust-item p {
  color: var(--muted);
}

.testimonial-placeholder {
  margin-top: 22px;
  padding: 22px;
  border-style: dashed;
}

.testimonial-placeholder p {
  margin-bottom: 0;
  color: var(--muted);
}

.instagram-band {
  background:
    linear-gradient(90deg, rgba(201, 154, 66, 0.14), rgba(143, 31, 27, 0.16)),
    #101010;
}

.instagram-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.instagram-content h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.location-copy p {
  color: var(--muted);
}

.map-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 30px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%),
    #141414;
  background-size: 34px 34px;
  text-align: center;
}

.map-placeholder span {
  display: block;
  color: var(--gold-soft);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-placeholder p {
  margin: 8px 0 0;
  color: var(--muted);
}

.final-cta {
  padding: 84px 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.58)),
    url("../img/visual-corte-platinado-samuel-barber.jpg") center / cover;
  border-top: 1px solid var(--line);
}

.final-cta-content {
  max-width: 760px;
}

.final-cta-content p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  padding: 54px 0 24px;
  background: #060606;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 36px;
}

.footer-grid h2 {
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #888;
  font-size: 14px;
}

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

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

.lightbox-content {
  width: min(920px, 100%);
  max-height: 88vh;
  display: grid;
  place-items: center;
}

.lightbox-content img,
.lightbox-content video {
  max-height: 88vh;
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

.lightbox-content video {
  width: min(440px, 100%);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 24px;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

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

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

@media (max-width: 860px) {
  :root {
    --header: 70px;
  }

  .container {
    width: min(100% - 28px, 720px);
  }

  .section {
    padding: 72px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: var(--header);
    left: 14px;
    right: 14px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(12, 12, 12, 0.98);
    box-shadow: var(--shadow);
  }

  .menu-open .nav-menu {
    display: grid;
    gap: 8px;
  }

  .nav-menu a {
    padding: 12px;
  }

  .hero {
    min-height: 88svh;
    padding-top: calc(var(--header) + 48px);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 7, 7, 0.95), rgba(7, 7, 7, 0.54)),
      linear-gradient(0deg, rgba(9, 9, 9, 0.92), rgba(9, 9, 9, 0.16));
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100% - 28px, 720px);
    margin: 36px auto 0;
  }

  .split,
  .booking-layout,
  .location-layout,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .instagram-content {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand {
    font-size: 14px;
  }

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

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 27px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .impact-lines,
  .form-pair,
  .service-grid,
  .gallery-grid,
  .reels-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 280px;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .booking-form {
    padding: 18px;
  }
}
