:root {
  --rojo: #7a2a26;
  --rojo-oscuro: #5c1f1c;
  --rojo-suave: rgba(122, 42, 38, 0.12);
  --ink: #1a1512;
  --ink-soft: #5a5048;
  --papel: #f7f3ee;
  --papel-2: #efe8df;
  --blanco: #fffcf9;
  --linea: rgba(26, 21, 18, 0.1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-img: 2px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 85% 8%, rgba(122, 42, 38, 0.07), transparent 60%),
    radial-gradient(700px 500px at 0% 40%, rgba(90, 110, 90, 0.05), transparent 55%),
    linear-gradient(180deg, #faf7f3 0%, var(--papel) 45%, #f3ede6 100%);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.page-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 0.55em;
  color: var(--ink);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.55rem, 5.2vw, 4rem);
}

h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.lead {
  font-size: clamp(1.08rem, 1.6vw, 1.22rem);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.55;
}

.container {
  width: min(1140px, calc(100% - 2.75rem));
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rojo);
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.eyebrow.light {
  color: rgba(255, 252, 249, 0.72);
}

.section {
  padding: clamp(5rem, 11vw, 8rem) 0;
  position: relative;
}

.section-head {
  max-width: 34rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-head p:last-child {
  font-size: 1.08rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem clamp(1.2rem, 4vw, 2.75rem);
  transition: background 0.45s var(--ease), backdrop-filter 0.45s, box-shadow 0.45s, padding 0.45s;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  position: relative;
  z-index: 110;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: nowrap;
  margin-left: auto;
  margin-right: 0.85rem;
}

.lang {
  position: relative;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 252, 249, 0.4);
  border-radius: 999px;
  background: rgba(255, 252, 249, 0.08);
  color: var(--blanco);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.site-header.scrolled .lang-btn {
  border-color: rgba(122, 42, 38, 0.35);
  color: var(--ink);
  background: rgba(122, 42, 38, 0.06);
}

.lang-btn:hover {
  background: rgba(255, 252, 249, 0.16);
}

.site-header.scrolled .lang-btn:hover {
  background: rgba(122, 42, 38, 0.12);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  min-width: 10.5rem;
  background: rgba(255, 252, 249, 0.97);
  border: 1px solid rgba(122, 42, 38, 0.12);
  box-shadow: 0 16px 40px rgba(20, 12, 10, 0.18);
  z-index: 120;
}

.lang-menu[hidden] {
  display: none;
}

.lang-menu li {
  padding: 0.65rem 0.8rem;
  font-size: 0.9rem;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s;
}

.lang-menu li:hover,
.lang-menu li.is-active {
  background: rgba(122, 42, 38, 0.08);
  color: var(--rojo);
}

.lang-menu li.is-active {
  font-weight: 600;
}

body.nav-open .lang-btn {
  border-color: rgba(255, 252, 249, 0.4);
  color: var(--blanco);
  background: rgba(255, 252, 249, 0.08);
}

.site-header.scrolled {
  padding-block: 0.85rem;
  background: rgba(255, 252, 249, 0.94);
  backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 1px 0 var(--linea);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--blanco);
  transition: color 0.3s;
  flex-shrink: 0;
  position: relative;
  z-index: 110;
}

.site-header.scrolled .logo {
  color: var(--rojo);
}

.nav a {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 252, 249, 0.88);
  transition: color 0.25s, opacity 0.25s;
  white-space: nowrap;
}

.site-header.scrolled .nav a {
  color: var(--ink-soft);
}

.nav a:hover {
  opacity: 0.65;
}

.nav-cta {
  padding: 0.58rem 1.15rem;
  border: 1px solid rgba(255, 252, 249, 0.4);
  border-radius: 999px;
  transition: background 0.25s, border-color 0.25s, color 0.25s !important;
}

.nav-cta:hover {
  background: rgba(255, 252, 249, 0.12);
  opacity: 1 !important;
}

.site-header.scrolled .nav-cta {
  border-color: var(--rojo);
  color: var(--rojo) !important;
}

.site-header.scrolled .nav-cta:hover {
  background: var(--rojo);
  color: var(--blanco) !important;
}

.nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  margin: 7px 0;
  background: var(--blanco);
  transition: transform 0.3s, background 0.3s;
}

.site-header.scrolled .nav-toggle span {
  background: var(--ink);
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .site-header,
body.nav-open .site-header.scrolled {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body.nav-open .logo,
body.nav-open .site-header.scrolled .logo {
  color: var(--blanco);
}

body.nav-open .nav-toggle span,
body.nav-open .site-header.scrolled .nav-toggle span {
  background: var(--blanco);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--blanco);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: #1a1210;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 8, 6, 0.28) 0%, rgba(14, 8, 6, 0.08) 42%, rgba(14, 8, 6, 0.62) 100%),
    linear-gradient(90deg, rgba(14, 8, 6, 0.35) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1140px, calc(100% - 2.75rem));
  margin: 0 auto 5.8rem;
  animation: riseIn 1.15s var(--ease) both;
}

.hero-place {
  font-size: 0.76rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: rgba(255, 252, 249, 0.78);
  font-weight: 500;
}

.hero-brand {
  font-size: clamp(4rem, 12.5vw, 8.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.9;
  margin-bottom: 1rem;
  color: var(--blanco);
  text-shadow: 0 10px 50px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  max-width: 30rem;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 300;
  color: rgba(255, 252, 249, 0.88);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 2;
  width: 1.4rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 252, 249, 0.4);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 0.4rem;
}

.scroll-hint span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--blanco);
  animation: drip 1.7s ease-in-out infinite;
}

@keyframes drip {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.55rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 550;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.28s var(--ease), background 0.28s, color 0.28s, border-color 0.28s, box-shadow 0.28s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--rojo);
  color: var(--blanco);
  box-shadow: 0 10px 28px rgba(122, 42, 38, 0.28);
}

.btn-primary:hover {
  background: var(--rojo-oscuro);
  box-shadow: 0 14px 34px rgba(122, 42, 38, 0.35);
}

.btn-ghost {
  border-color: rgba(255, 252, 249, 0.5);
  color: var(--blanco);
  background: rgba(255, 252, 249, 0.06);
  backdrop-filter: blur(6px);
}

.btn-ghost.light {
  border-color: rgba(255, 252, 249, 0.45);
  color: var(--blanco);
}

/* Media helpers */
.media-zoom {
  overflow: hidden;
  border-radius: var(--radius-img);
}

.media-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.media-zoom:hover img {
  transform: scale(1.04);
}

.frame {
  position: relative;
  margin: 0;
}

.frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-img);
}

.frame::after {
  content: "";
  position: absolute;
  inset: 1.35rem -1.35rem -1.35rem 1.35rem;
  border: 1px solid rgba(122, 42, 38, 0.28);
  z-index: -1;
}

.frame.reverse::after {
  inset: 1.35rem 1.35rem -1.35rem -1.35rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.2rem, 6vw, 5rem);
  align-items: center;
}

.facts {
  list-style: none;
  padding: 0;
  margin: 2.4rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.facts li {
  padding-top: 1.05rem;
  border-top: 1px solid rgba(122, 42, 38, 0.22);
}

.facts strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.15rem;
  color: var(--rojo);
  line-height: 1;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.facts span {
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* Spaces */
.space-feature {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: end;
  margin-bottom: 1.75rem;
}

.space-media {
  aspect-ratio: 16 / 10;
}

.space-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.space-text {
  padding-bottom: 0.5rem;
}

.space-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
  margin-bottom: 3.75rem;
}

.space-card .media-zoom {
  aspect-ratio: 4 / 3;
  margin-bottom: 1.15rem;
}

.space-card-body h3 {
  margin-bottom: 0.4rem;
}

.space-card-body p {
  margin: 0;
}

.amenities {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background:
    linear-gradient(135deg, rgba(122, 42, 38, 0.07), rgba(90, 110, 90, 0.05));
  border: 1px solid rgba(122, 42, 38, 0.1);
}

.amenities-head p {
  margin: 0;
  max-width: 22rem;
}

.amenities-title {
  margin-bottom: 0.5rem;
}

.amenity-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.7rem 1.1rem;
  align-content: start;
}

.amenity-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.amenity-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--rojo);
}

/* Interiors */
.interiors {
  background:
    linear-gradient(180deg, transparent, rgba(239, 232, 223, 0.7) 18%, rgba(239, 232, 223, 0.7) 82%, transparent);
}

.interiors-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.interiors-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.85rem;
}

.interiors-mosaic .tall {
  grid-row: 1 / 3;
  min-height: 440px;
}

.interiors-mosaic .media-zoom {
  min-height: 210px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.gallery-item {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: var(--radius-img);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease), filter 0.85s;
  filter: saturate(1.02);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

/* Entorno */
.entorno-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.entorno-visual .frame img {
  aspect-ratio: 5 / 6;
}

.nearby {
  list-style: none;
  padding: 0;
  margin: 2.2rem 0 0;
}

.nearby li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--linea);
  font-size: 1rem;
  transition: padding-left 0.3s var(--ease);
}

.nearby li:hover {
  padding-left: 0.35rem;
}

.nearby em {
  font-style: normal;
  color: var(--rojo);
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.92rem;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.review {
  margin: 0;
  padding: 1.85rem 1.55rem 1.55rem;
  background: rgba(255, 252, 249, 0.72);
  border: 1px solid rgba(122, 42, 38, 0.08);
  border-top: 2px solid var(--rojo);
  position: relative;
}

.review::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(122, 42, 38, 0.18);
  position: absolute;
  top: 0.55rem;
  right: 1rem;
}

.review p {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 1.1rem;
}

.review footer {
  font-size: 0.86rem;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Book */
.book {
  position: relative;
  color: var(--blanco);
  overflow: hidden;
  padding-top: clamp(6rem, 12vw, 8.5rem);
}

.book-bg {
  position: absolute;
  inset: 0;
}

.book-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.book-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(22, 12, 10, 0.9), rgba(90, 32, 28, 0.72)),
    radial-gradient(600px 400px at 80% 20%, rgba(122, 42, 38, 0.35), transparent);
}

.book-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.book-content > p,
.book-content .address,
.form-note {
  color: rgba(255, 252, 249, 0.84);
}

.book-content h2 {
  color: var(--blanco);
}

.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.6rem 0 2.6rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 252, 249, 0.06);
  border: 1px solid rgba(255, 252, 249, 0.12);
  backdrop-filter: blur(8px);
}

.form-note {
  font-size: 0.92rem;
  margin-bottom: 0.25rem !important;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.8rem;
}

.contact-form label span {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 252, 249, 0.22);
  background: rgba(255, 252, 249, 0.07);
  color: var(--blanco);
  font: inherit;
  border-radius: 0;
  transition: border-color 0.25s, background 0.25s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 252, 249, 0.55);
  background: rgba(255, 252, 249, 0.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 252, 249, 0.4);
}

.form-success {
  color: #d8f0c8 !important;
}

.form-error {
  color: #ffb4a8 !important;
  margin: 0.5rem 0 0;
}

.address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* Footer */
.site-footer {
  background: #140f0d;
  color: rgba(255, 252, 249, 0.62);
  padding: 2.25rem 0;
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}

.footer-brand {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--blanco);
  margin-bottom: 0.25rem;
}

.footer-meta {
  margin: 0;
  opacity: 0.7;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 7, 6, 0.94);
  display: grid;
  place-items: center;
  padding: 2rem;
  backdrop-filter: blur(4px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 88vh;
  max-width: min(1100px, 100%);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  border: 0;
  background: transparent;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
  .about-grid,
  .space-feature,
  .interiors-grid,
  .entorno-grid,
  .reviews-grid,
  .amenities {
    grid-template-columns: 1fr;
  }

  .space-pair {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .frame::after {
    display: none;
  }

  .interiors-mosaic .tall {
    min-height: 340px;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 105;
    background: rgba(18, 11, 9, 0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s, visibility 0.35s;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav a,
  .site-header.scrolled .nav a {
    color: var(--blanco) !important;
    font-size: 1.55rem;
    font-family: var(--font-display);
    opacity: 1;
  }

  .nav-cta,
  .site-header.scrolled .nav-cta {
    border-color: rgba(255, 252, 249, 0.4) !important;
    color: var(--blanco) !important;
    background: transparent !important;
    margin-top: 0.5rem;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.25px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.25px) rotate(-45deg);
  }

  .hero-content {
    margin-bottom: 4.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16 / 10;
  }

  .contact-form {
    padding: 1.15rem;
  }
}

@media (max-width: 760px) {
  /* kept for smaller tweaks if needed */
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-video { transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-hint span { animation: none; }
  .media-zoom:hover img,
  .gallery-item:hover img { transform: none; }
}
