/* ══════════════════════════════════════════════
   LA PARENTHÈSE — Love Room
   Romantic & Soft Luxury Design System
   ══════════════════════════════════════════════ */

/* ── Custom Properties ── */
:root {
  --rose: #D4A5A5;
  --rose-light: #e4c4c4;
  --rose-glow: rgba(212, 165, 165, .35);
  --beige: #F5E6D3;
  --beige-light: #faf3ec;
  --terracotta: #C48B7F;
  --terracotta-dark: #a5706a;
  --bg: #FFF8F5;
  --bg-warm: #FBF0EB;
  --bg-dark: #2E1F1F;
  --bg-dark-warm: #3D2C2C;
  --text: #3D2C2C;
  --text-light: #7A6565;
  --text-on-dark: #F5E6D3;
  --white: #FFFCFA;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-accent: 'Dancing Script', cursive;
  --font-body: 'Lato', -apple-system, sans-serif;

  --nav-h: 72px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
ul { list-style: none; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Selection ── */
::selection {
  background: var(--rose);
  color: var(--white);
}

/* ══════════════════════════════════════════════
   FLOATING PETALS
   ══════════════════════════════════════════════ */
.petals {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.petal {
  position: absolute;
  top: -20px;
  left: var(--x);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle, var(--rose) 0%, rgba(212,165,165,0.1) 100%);
  border-radius: 50% 50% 50% 0;
  opacity: 0;
  animation: petalFall var(--d) var(--delay) infinite ease-in;
  will-change: transform, opacity;
}

@keyframes petalFall {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg) translateX(0); }
  10%  { opacity: .5; }
  50%  { opacity: .3; }
  100% { opacity: 0; transform: translateY(100vh) rotate(360deg) translateX(80px); }
}

/* ══════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: var(--nav-h);
  transition: background .5s var(--ease-smooth),
              backdrop-filter .5s var(--ease-smooth),
              box-shadow .5s var(--ease-smooth);
}

.nav--scrolled {
  background: rgba(255, 248, 245, .82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 30px rgba(61, 44, 44, .06);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
  transition: color .3s;
}

.nav__logo-icon { color: var(--rose); transition: transform .4s var(--ease-out-back); }
.nav__logo:hover .nav__logo-icon { transform: scale(1.1) rotate(-5deg); }

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--text-on-dark);
  transition: color .5s;
}
.nav--scrolled .nav__logo-text { color: var(--text); }

.nav__links {
  display: flex;
  gap: 2rem;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(245, 230, 211, .8);
  position: relative;
  padding: 4px 0;
  transition: color .3s;
}

.nav--scrolled .nav__links a { color: var(--text-light); }
.nav__links a:hover { color: var(--rose); }

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--rose);
  transition: width .4s var(--ease-out-expo);
}
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  width: 28px;
  padding: 4px 0;
}

.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--text-on-dark);
  border-radius: 2px;
  transition: transform .4s var(--ease-out-expo),
              opacity .3s,
              background .5s;
}
.nav--scrolled .nav__toggle span { background: var(--text); }

.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(170deg, rgba(26,16,16,.65) 0%, rgba(46,31,31,.55) 30%, rgba(61,44,44,.5) 60%, rgba(42,30,30,.7) 100%),
    url('../images/hero.jpg') center/cover no-repeat;
  /* Fallback if image not found */
  background-color: #2E1F1F;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: glowPulse 8s ease-in-out infinite;
  will-change: opacity, transform;
}

.hero__glow--1 {
  width: 500px; height: 500px;
  top: 10%; left: 15%;
  background: rgba(212, 165, 165, .12);
  animation-delay: 0s;
}

.hero__glow--2 {
  width: 400px; height: 400px;
  bottom: 20%; right: 10%;
  background: rgba(196, 139, 127, .1);
  animation-delay: 3s;
}

.hero__glow--3 {
  width: 600px; height: 300px;
  top: 40%; left: 40%;
  background: rgba(245, 230, 211, .06);
  animation-delay: 5s;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0; transform: scale(.9); }
  50%      { opacity: 1; transform: scale(1.1); }
}

.hero__content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 0 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--text-on-dark);
  letter-spacing: .04em;
  line-height: 1.1;
  margin-bottom: .25em;
  overflow: hidden;
}

.letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%) rotateX(-80deg);
  animation: letterReveal .8s var(--ease-out-expo) forwards;
  animation-delay: calc(.6s + var(--i) * .06s);
  transform-origin: bottom center;
}

@keyframes letterReveal {
  to { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  color: var(--rose);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp .8s var(--ease-out-expo) 1.6s forwards;
  margin-bottom: 1em;
}

.hero__line {
  width: 60px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  margin: 0 auto 1.2em;
  opacity: 0;
  transform: scaleX(0);
  animation: lineReveal .8s var(--ease-out-expo) 1.9s forwards;
}

@keyframes lineReveal {
  to { opacity: 1; transform: scaleX(1); }
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(.9rem, 1.6vw, 1.15rem);
  font-weight: 300;
  color: rgba(245, 230, 211, .7);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 2.5em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp .8s var(--ease-out-expo) 2.1s forwards;
}

.hero__cta {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp .8s var(--ease-out-expo) 2.5s forwards;
}

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

/* CTA Button */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 1em 2.8em;
  border: 1.5px solid var(--rose);
  color: var(--text-on-dark);
  background: transparent;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: color .4s, border-color .4s, transform .3s var(--ease-out-back), box-shadow .4s;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease-out-expo);
  z-index: -1;
}

.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn:hover { color: var(--white); border-color: var(--rose); box-shadow: 0 8px 30px var(--rose-glow); transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out-expo) 3.2s forwards;
  z-index: 2;
}

.hero__scroll span {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,230,211,.4);
}

.hero__scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(245,230,211,.35);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-dot {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: var(--rose);
  border-radius: 3px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50%      { opacity: .3; transform: translateX(-50%) translateY(12px); }
}

/* Hero wave divider */
.hero__divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.hero__divider svg {
  width: 100%;
  height: 80px;
}

/* ══════════════════════════════════════════════
   SECTIONS — Shared Styles
   ══════════════════════════════════════════════ */
.section {
  position: relative;
  padding: 7rem 0;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section__accent {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--terracotta);
  display: block;
  margin-bottom: .5rem;
}

.section__accent--light { color: var(--rose-light); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.section__title em {
  font-style: italic;
  color: var(--terracotta);
}

.section__header--light .section__title { color: var(--text-on-dark); }
.section__header--light .section__title em { color: var(--rose); }

.section__desc {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
}

.section__desc--light { color: rgba(245, 230, 211, .7); }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease-out-expo),
              transform .8s var(--ease-out-expo);
  transition-delay: var(--delay, 0s);
}

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

/* ══════════════════════════════════════════════
   DISCOVER
   ══════════════════════════════════════════════ */
.discover { background: var(--bg); }

.discover__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 30px rgba(61, 44, 44, .04);
  border: 1px solid rgba(212, 165, 165, .12);
  transition: transform .5s var(--ease-out-expo),
              box-shadow .5s var(--ease-out-expo);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(212, 165, 165, .15);
}

.card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: var(--terracotta);
  transition: transform .4s var(--ease-out-back);
}

.card:hover .card__icon { transform: scale(1.1) rotate(-5deg); }

.card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: .8rem;
}

.card__text {
  font-size: .95rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════ */
.gallery {
  background: var(--bg-warm);
  overflow: hidden;
}

.gallery__bg-accent {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--rose-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 1rem;
}

.gallery__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__placeholder {
  width: 100%;
  height: 100%;
  transition: transform .7s var(--ease-out-expo);
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out-expo);
}

.gallery__item:hover .gallery__placeholder,
.gallery__item:hover .gallery__img { transform: scale(1.08); }

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(46, 31, 31, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .4s;
  backdrop-filter: blur(2px);
}

.gallery__item:hover .gallery__overlay { opacity: 1; }

.gallery__overlay span {
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
  padding: .6em 1.6em;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 4px;
  transition: background .3s, border-color .3s;
}

.gallery__item:hover .gallery__overlay span {
  background: rgba(212, 165, 165, .3);
  border-color: var(--rose);
}

/* ══════════════════════════════════════════════
   AMENITIES
   ══════════════════════════════════════════════ */
.amenities {
  background: var(--bg);
  padding-top: 0;
}

.amenities__divider-top {
  position: relative;
  margin-top: -1px;
  line-height: 0;
}

.amenities__divider-top svg {
  width: 100%;
  height: 60px;
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.amenity {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 16px;
  transition: background .4s, transform .5s var(--ease-out-expo);
}

.amenity:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.amenity__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  color: var(--terracotta);
  transition: transform .4s var(--ease-out-back), color .3s;
}

.amenity:hover .amenity__icon { transform: scale(1.15); color: var(--rose); }

.amenity__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

/* ══════════════════════════════════════════════
   BOOKING
   ══════════════════════════════════════════════ */
.booking {
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
}

.booking__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, #2E1F1F, #3D2C2C, #352525, #2a1c1c, #3D2C2C);
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.booking .container { position: relative; z-index: 2; }

.booking__buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.booking__btn {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .08em;
  padding: 1.1em 2.4em;
  border-radius: 8px;
  transition: transform .4s var(--ease-out-back),
              box-shadow .4s,
              background .3s;
  position: relative;
  overflow: hidden;
}

.booking__btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .6s, height .6s;
}

.booking__btn:hover::after {
  width: 400px;
  height: 400px;
}

.booking__btn:hover { transform: translateY(-3px); }
.booking__btn:active { transform: translateY(0) scale(.97); }

.booking__btn--airbnb {
  background: linear-gradient(135deg, #FF5A5F, #e04850);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 90, 95, .25);
}
.booking__btn--airbnb:hover { box-shadow: 0 8px 35px rgba(255, 90, 95, .4); }

.booking__btn--booking {
  background: linear-gradient(135deg, #003580, #004CB8);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 53, 128, .25);
}
.booking__btn--booking:hover { box-shadow: 0 8px 35px rgba(0, 53, 128, .4); }

/* ══════════════════════════════════════════════
   LOCATION
   ══════════════════════════════════════════════ */
.location {
  background: var(--bg);
  padding-top: 0;
}

.location__divider-top {
  position: relative;
  line-height: 0;
}

.location__divider-top svg {
  width: 100%;
  height: 60px;
}

.location__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location__map {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-warm);
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location__map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  color: var(--text-light);
  background: linear-gradient(135deg, var(--bg-warm), var(--beige-light));
}

.location__map-placeholder p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.location__map-placeholder span {
  font-size: .8rem;
  opacity: .5;
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location__detail h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--text);
}

.location__detail p {
  font-size: .95rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
}

.location__detail a {
  color: var(--terracotta);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}

.location__detail a:hover { border-color: var(--terracotta); }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer {
  background: var(--bg-dark-warm);
  color: var(--text-on-dark);
  padding: 3rem 0 1.5rem;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(245, 230, 211, .1);
  margin-bottom: 1.5rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__logo { color: var(--rose); }

.footer__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  line-height: 1.2;
}

.footer__sub {
  font-family: var(--font-accent);
  font-size: .9rem;
  color: var(--rose);
  display: block;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(245, 230, 211, .15);
  color: var(--text-on-dark);
  transition: border-color .3s, color .3s, transform .3s var(--ease-out-back), background .3s;
}

.footer__social-link:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-3px);
  background: rgba(212, 165, 165, .08);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: rgba(245, 230, 211, .4);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  transition: color .3s;
}

.footer__legal a:hover { color: var(--rose); }

/* ══════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(20, 12, 12, .92);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox__content {
  width: 80vw;
  max-width: 900px;
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  transform: scale(.9) translateY(20px);
  transition: transform .5s var(--ease-out-expo);
  box-shadow: 0 20px 80px rgba(0,0,0,.5);
}

.lightbox.open .lightbox__content {
  transform: scale(1) translateY(0);
}

.lightbox__content > div {
  width: 100%;
  height: 100%;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: rgba(255,255,255,.6);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color .3s, background .3s;
}

.lightbox__close:hover { color: #fff; background: rgba(255,255,255,.1); }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.5);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color .3s, background .3s;
}

.lightbox__prev:hover,
.lightbox__next:hover { color: #fff; background: rgba(255,255,255,.08); }

.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }

.lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .8rem;
  letter-spacing: .15em;
  color: rgba(255,255,255,.4);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 968px) {
  .discover__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 1; }
  .amenities__grid { grid-template-columns: repeat(2, 1fr); }
  .location__content { grid-template-columns: 1fr; }
  .location__map { aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: rgba(46, 31, 31, .97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform .5s var(--ease-out-expo);
  }

  .nav__links.open { transform: translateX(0); }

  .nav__links a {
    font-size: 1rem;
    color: var(--text-on-dark) !important;
    padding: 1rem 0;
    display: block;
    width: 100%;
    text-align: center;
  }

  .hero__scroll { bottom: 60px; }
  .hero__divider svg { height: 50px; }

  .section { padding: 5rem 0; }
  .section__header { margin-bottom: 3rem; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .amenities__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .booking__buttons { flex-direction: column; align-items: center; }
  .booking__btn { width: 100%; max-width: 320px; justify-content: center; }

  .footer__top { flex-direction: column; gap: 1.5rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }

  .lightbox__content { width: 92vw; }
  .lightbox__prev { left: .5rem; }
  .lightbox__next { right: .5rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .amenities__grid { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .amenity { padding: 1.5rem .8rem; }
  .discover__grid { max-width: 100%; }
}

/* ══════════════════════════════════════════════
   PRINT
   ══════════════════════════════════════════════ */
@media print {
  .nav, .petals, .hero__scroll, .lightbox, .hero__divider,
  .amenities__divider-top, .location__divider-top, .gallery__bg-accent { display: none; }
  .hero { min-height: auto; padding: 3rem 0; }
  .hero__bg { background: #f5f5f5 !important; }
  .hero__title .letter { opacity: 1; transform: none; animation: none; }
  .hero__subtitle, .hero__line, .hero__tagline, .hero__cta,
  .reveal { opacity: 1 !important; transform: none !important; animation: none !important; }
  .section { padding: 2rem 0; }
  body { color: #000; }
}

/* ══════════════════════════════════════════════
   ACCESSIBILITY — Reduced Motion
   ══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .letter { opacity: 1; transform: none; }
  .hero__subtitle, .hero__line, .hero__tagline, .hero__cta, .hero__scroll {
    opacity: 1; transform: none;
  }
}
