/* ════════════════════════════════════════════════
   TPY5 EXCHANGE — GenZ Bright Aesthetic
   Palette: #115d43 (emerald) · #f7ebdb (cream) · #603314 (espresso) · #dfe0e2 (mist)
   ════════════════════════════════════════════════ */

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

:root {
  /* Brand palette */
  --emerald: #115d43;
  --emerald-dark: #0c4232;
  --emerald-light: #1a7d5e;
  --emerald-mist: rgba(17,93,67,.10);
  --emerald-glow: rgba(17,93,67,.18);
  --cream: #f7ebdb;
  --cream-deep: #efe0c8;
  --espresso: #603314;
  --espresso-soft: #7a4a28;
  --mist: #dfe0e2;
  --mist-light: #f2f3f4;

  /* Neutrals */
  --ink: #1f1d1a;
  --text: #2d2a26;
  --text-mid: #5c574f;
  --text-light: #8a857c;
  --line: #e6e3dd;
  --paper: #ffffff;
  --bg: #fbfaf7;

  /* Depth */
  --shadow-xs: 0 1px 2px rgba(31,29,26,.05);
  --shadow-sm: 0 4px 12px rgba(31,29,26,.06), 0 1px 3px rgba(31,29,26,.04);
  --shadow-md: 0 14px 36px rgba(31,29,26,.10), 0 3px 8px rgba(31,29,26,.05);
  --shadow-lg: 0 32px 64px rgba(31,29,26,.16), 0 10px 24px rgba(31,29,26,.08);
  --shadow-emerald: 0 16px 40px rgba(17,93,67,.30);

  /* Geometry */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --maxw: 1260px;

  /* Type */
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--emerald); color: #fff; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--emerald); color: #fff;
  padding: .75rem 1.5rem; border-radius: 0 0 10px 10px;
  z-index: 9999; font-weight: 600; text-decoration: none; transition: top .3s;
}
.skip-link:focus { top: 0; }

/* ═══ NAV ═══ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem clamp(1.25rem, 4vw, 3rem);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .45s ease, box-shadow .45s ease, padding .45s ease;
}
.site-header.scrolled {
  background: rgba(251,250,247,.9);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 rgba(31,29,26,.06), 0 8px 28px rgba(31,29,26,.06);
  padding: .8rem clamp(1.25rem, 4vw, 3rem);
}
.nav-logo { display: flex; align-items: center; gap: .5rem; text-decoration: none; }
.nav-logo img { height: 34px; width: auto; filter: brightness(0) invert(1); transition: filter .45s ease; }
.site-header.scrolled .nav-logo img { filter: none; }
.nav-logo-text { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: #fff; letter-spacing: -.02em; transition: opacity .45s; display: none; }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,.9);
  font-size: .78rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; transition: color .3s; position: relative; padding: .3rem 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--cream); transition: width .35s ease; border-radius: 2px;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.site-header.scrolled .nav-links a { color: var(--text-mid); }
.site-header.scrolled .nav-links a:hover { color: var(--emerald); }
.site-header.scrolled .nav-links a::after { background: var(--emerald); }

.nav-cta {
  background: var(--cream) !important; color: var(--emerald) !important;
  padding: .65rem 1.5rem !important; border-radius: 50px;
  display: inline-flex; align-items: center;
  transition: background .3s, transform .25s, box-shadow .3s, color .3s !important;
  font-weight: 700; letter-spacing: .06em;
}
.nav-cta:hover { background: var(--emerald) !important; color: #fff !important; transform: translateY(-1px); box-shadow: var(--shadow-emerald); }
.nav-cta::after { display: none !important; }
.site-header.scrolled .nav-cta { background: var(--emerald) !important; color: #fff !important; }
.site-header.scrolled .nav-cta:hover { background: var(--emerald-dark) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: #fff; display: block; transition: background .4s, transform .3s; border-radius: 2px; }
.site-header.scrolled .hamburger span { background: var(--ink); }

/* ═══ HERO ═══ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--emerald-dark);
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.6s ease-in-out; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(135deg, rgba(12,66,50,.72) 0%, rgba(17,93,67,.35) 50%, rgba(31,29,26,.55) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; max-width: 860px; padding: 0 2rem; margin-top: 2rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(247,235,219,.16); border: 1px solid rgba(247,235,219,.32);
  backdrop-filter: blur(8px); padding: .5rem 1.2rem; border-radius: 50px;
  font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 1.75rem; color: var(--cream);
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cream); }
.hero-content h1 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(2.8rem, 7vw, 5.4rem); line-height: 1.02;
  margin-bottom: 1.1rem; letter-spacing: -.025em;
  text-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.hero-content h1 .accent { color: var(--cream); font-weight: 300; font-style: italic; }
.hero-content > p {
  font-size: clamp(1.02rem, 1.4vw, 1.2rem); font-weight: 300;
  opacity: .95; margin: 0 auto 2.4rem; max-width: 560px; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: #fff; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.35); border-radius: 50%;
  text-decoration: none; animation: bob 2.2s ease-in-out infinite; transition: background .3s, border-color .3s;
}
.hero-scroll:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.6); }
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,9px); } }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 1rem 2.2rem; border-radius: 50px;
  font-size: .85rem; font-weight: 700; letter-spacing: .04em;
  text-decoration: none; transition: all .35s cubic-bezier(.2,.6,.2,1); cursor: pointer; border: none;
  font-family: var(--sans);
}
.btn-primary { background: var(--emerald); color: #fff; }
.btn-primary:hover { background: var(--emerald-dark); transform: translateY(-2px); box-shadow: var(--shadow-emerald); }
.btn-outline { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.55); backdrop-filter: blur(6px); }
.btn-outline:hover { background: rgba(255,255,255,.2); border-color: #fff; transform: translateY(-2px); }

/* ═══ SECTION COMMON ═══ */
section { padding: clamp(5rem, 9vw, 8rem) clamp(1.25rem, 5vw, 3rem); }
.container { max-width: var(--maxw); margin: 0 auto; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto clamp(3rem, 6vw, 5rem); }
.section-label {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; color: var(--emerald);
  margin-bottom: 1rem; position: relative; padding: .4rem 1.1rem;
  background: var(--emerald-mist); border-radius: 50px;
}
.section-header h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(2.1rem, 4.4vw, 3.2rem); color: var(--ink);
  margin-bottom: 1.1rem; line-height: 1.1; letter-spacing: -.02em;
}
.section-header h2 .accent { color: var(--emerald); font-style: italic; font-weight: 500; }
.section-header > p { color: var(--text-mid); font-size: 1.08rem; line-height: 1.7; }

/* ═══ ABOUT ═══ */
.about { background: var(--cream); position: relative; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.about-images { position: relative; height: 540px; }
.about-images img { border-radius: var(--radius-lg); object-fit: cover; position: absolute; box-shadow: var(--shadow-lg); }
.about-img-1 { width: 66%; height: 72%; top: 0; left: 0; z-index: 1; }
.about-img-2 { width: 56%; height: 58%; bottom: 0; right: 0; z-index: 2; border: 6px solid var(--cream); }
.about-text h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(1.9rem, 3.4vw, 2.6rem); color: var(--ink); margin-bottom: 1.5rem; line-height: 1.15; letter-spacing: -.02em; }
.about-text h2 .accent { color: var(--emerald); font-style: italic; }
.about-text p { color: var(--text-mid); margin-bottom: 1.2rem; line-height: 1.85; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.2rem; padding-top: 2.2rem; border-top: 1px solid var(--cream-deep); }
.stat-item h3 { font-family: var(--serif); font-size: 2.2rem; color: var(--emerald); font-weight: 700; line-height: 1; }
.stat-item p { font-size: .76rem; color: var(--text-light); margin: .4rem 0 0; text-transform: uppercase; letter-spacing: .08em; font-weight: 500; }

/* ═══ AMENITIES ═══ */
.amenities { background: var(--bg); }
.amenities-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.amenity-card {
  background: var(--paper); border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; text-align: center; border: 1px solid var(--line);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.amenity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.amenity-icon {
  width: 64px; height: 64px; margin: 0 auto 1.4rem;
  background: var(--emerald-mist); border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: background .4s ease, transform .4s ease;
}
.amenity-card:hover .amenity-icon { background: var(--emerald); transform: rotate(-6deg) scale(1.05); }
.amenity-icon svg { width: 28px; height: 28px; stroke: var(--emerald); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke .4s ease; }
.amenity-card:hover .amenity-icon svg { stroke: #fff; }
.amenity-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: .5rem; color: var(--ink); letter-spacing: -.01em; }
.amenity-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.65; }

/* ═══ ROOMS ═══ */
.rooms { background: var(--paper); }
.rooms-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.room-card {
  border-radius: var(--radius-lg); overflow: hidden; background: var(--paper);
  border: 1px solid var(--line); cursor: pointer;
  display: flex; flex-direction: column;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.room-card:hover, .room-card:focus-visible { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; outline: none; }
.room-card-media { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--mist); }
.room-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.6,.2,1); }
.room-card:hover .room-card-media img { transform: scale(1.07); }
.room-card-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,93,67,.35) 0%, transparent 50%); opacity: 0; transition: opacity .4s ease; }
.room-card:hover .room-card-media::after { opacity: 1; }
.room-card-type {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: rgba(255,255,255,.94); color: var(--emerald);
  font-family: var(--serif); font-size: 1.4rem; font-weight: 700;
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.room-card-count {
  position: absolute; bottom: 1rem; right: 1rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(255,255,255,.94); color: var(--text);
  padding: .35rem .8rem; border-radius: 50px;
  font-size: .74rem; font-weight: 600; font-feature-settings: 'tnum'; box-shadow: var(--shadow-sm);
}
.room-info { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.room-header { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: .5rem; flex-wrap: wrap; }
.room-header h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.room-floor { font-size: .78rem; font-weight: 600; color: var(--espresso); background: var(--cream); padding: .3rem .85rem; border-radius: 50px; white-space: nowrap; }
.room-info p { font-size: .9rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1.1rem; }
.room-features { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.3rem; }
.room-tag { background: var(--bg); color: var(--text-mid); padding: .32rem .78rem; border-radius: 50px; font-size: .74rem; font-weight: 500; border: 1px solid var(--line); }
.room-view { margin-top: auto; color: var(--emerald); font-weight: 700; font-size: .86rem; display: inline-flex; align-items: center; gap: .4rem; transition: gap .3s ease, color .3s ease; }
.room-card:hover .room-view { color: var(--emerald-dark); gap: .7rem; }

/* ═══ FACILITIES ═══ */
.facilities { background: var(--espresso); position: relative; overflow: hidden; }
.facilities::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 0%, rgba(17,93,67,.28) 0%, transparent 55%); pointer-events: none; }
.facilities .section-label { background: rgba(247,235,219,.15); color: var(--cream); }
.facilities .section-header h2 { color: #fff; }
.facilities .section-header h2 .accent { color: var(--cream); }
.facilities .section-header > p { color: rgba(255,255,255,.62); }
.facilities-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; position: relative; }
.facility-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; cursor: pointer; background: #3a2010; }
.facility-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.6,.2,1); }
.facility-card:hover img, .facility-card:focus-visible img { transform: scale(1.08); }
.facility-card:focus-visible { outline: 3px solid var(--cream); outline-offset: 3px; }
.facility-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(60,32,16,.92) 0%, rgba(60,32,16,.2) 50%, transparent 100%); }
.facility-overlay { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.6rem; }
.facility-overlay h3 { color: #fff; font-family: var(--serif); font-size: 1.35rem; font-weight: 700; letter-spacing: -.01em; }
.facility-count { display: inline-flex; align-items: center; gap: .35rem; color: rgba(255,255,255,.72); font-size: .76rem; margin-top: .3rem; font-feature-settings: 'tnum'; }

/* ═══ LOCATION ═══ */
.location { background: var(--cream); }
.location-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.location-info h3 { font-family: var(--serif); font-size: 1.6rem; color: var(--ink); margin-bottom: 2rem; letter-spacing: -.01em; }
.location-list { list-style: none; display: flex; flex-direction: column; gap: 1.4rem; }
.location-list li { display: flex; align-items: flex-start; gap: 1.1rem; }
.location-dot { width: 46px; height: 46px; border-radius: 50%; background: var(--emerald-mist); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .35s ease; }
.location-list li:hover .location-dot { background: var(--emerald); }
.location-dot svg { width: 19px; height: 19px; stroke: var(--emerald); fill: none; stroke-width: 2; transition: stroke .35s ease; }
.location-list li:hover .location-dot svg { stroke: #fff; }
.location-list li strong { display: block; font-weight: 700; color: var(--ink); margin-bottom: .15rem; font-size: .98rem; }
.location-list li span { font-size: .88rem; color: var(--text-light); }
.location-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; border: 1px solid var(--cream-deep); }
.location-map iframe { width: 100%; height: 100%; border: none; filter: grayscale(.1); }

/* ═══ REGISTER ═══ */
.register { background: var(--bg); }
.register-cta { text-align: center; max-width: 560px; margin: 0 auto; padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.75rem, 4vw, 2.5rem); background: var(--paper); border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.register-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--emerald), var(--emerald-light), var(--cream)); }
.btn-register { display: inline-flex; align-items: center; justify-content: center; gap: .65rem; padding: 1.05rem 2.3rem; background: var(--emerald); color: #fff; font-size: 1.02rem; font-weight: 700; text-decoration: none; border-radius: 50px; transition: background .3s, transform .25s, box-shadow .3s; box-shadow: var(--shadow-emerald); }
.btn-register:hover { background: var(--emerald-dark); transform: translateY(-2px); box-shadow: 0 20px 44px rgba(17,93,67,.4); }
.btn-register:focus-visible { outline: 3px solid var(--emerald-light); outline-offset: 3px; }
.register-note { margin-top: 1.3rem; font-size: .86rem; color: var(--text-light); }

/* ═══ CTA ═══ */
.cta { background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 55%, var(--emerald-light) 100%); text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(247,235,219,.14) 0%, transparent 45%); }
.cta h2 { font-family: var(--serif); font-size: clamp(2rem, 4.2vw, 2.9rem); font-weight: 700; margin-bottom: 1rem; letter-spacing: -.02em; position: relative; }
.cta h2 .accent { color: var(--cream); font-style: italic; }
.cta > .container > p { font-size: 1.1rem; opacity: .92; max-width: 560px; margin: 0 auto 2.2rem; position: relative; }
.cta .btn-white { background: var(--cream); color: var(--emerald-dark); padding: 1.05rem 2.6rem; font-weight: 700; border-radius: 50px; text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; transition: transform .3s, box-shadow .3s; position: relative; }
.cta .btn-white:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(0,0,0,.22); background: #fff; }
.cta-contacts { display: flex; gap: 2.5rem; justify-content: center; margin-top: 3rem; flex-wrap: wrap; position: relative; }
.cta-contact-item { display: flex; align-items: center; gap: .75rem; font-size: .95rem; }
.cta-contact-item svg { width: 20px; height: 20px; stroke: rgba(247,235,219,.9); fill: none; stroke-width: 2; }
.cta-contacts a { color: #fff; text-decoration: none; transition: opacity .3s; }
.cta-contacts a:hover { opacity: .75; }
address.cta-contacts { font-style: normal; }

/* ═══ FOOTER ═══ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.6); padding: clamp(3rem,6vw,4.5rem) clamp(1.25rem,5vw,3rem) 2rem; }
.footer-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1.3fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .footer-logo-img { height: 42px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-col a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .9rem; transition: color .3s, padding-left .3s; }
.footer-col a:hover { color: var(--cream); padding-left: .3rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: .6rem; font-size: .88rem; margin-bottom: .8rem; line-height: 1.5; }
.footer-contact svg { width: 16px; height: 16px; stroke: var(--cream); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 3px; }
.footer-bottom { max-width: var(--maxw); margin: 0 auto; padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .82rem; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }

/* ═══ ROOM DETAIL MODAL ═══ */
.room-modal { position: fixed; inset: 0; z-index: 2000; background: rgba(15,14,12,.97); backdrop-filter: blur(14px); display: none; opacity: 0; transition: opacity .35s ease; }
.room-modal.open { display: block; opacity: 1; }
.room-modal-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(3.5rem,7vw,5rem) clamp(1rem,4vw,2rem) 3rem; max-height: 100vh; overflow-y: auto; }
.room-modal-close { position: fixed; top: 1.25rem; right: 1.5rem; z-index: 2010; background: rgba(255,255,255,.12); border: none; color: #fff; font-size: 1.7rem; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .3s, transform .3s; line-height: 1; }
.room-modal-close:hover { background: rgba(255,255,255,.25); transform: rotate(90deg); }
.room-modal-header { text-align: center; margin-bottom: 1.75rem; }
.room-modal-header h2 { font-family: var(--serif); font-size: clamp(1.8rem,4vw,2.6rem); color: #fff; font-weight: 700; letter-spacing: -.02em; }
.room-modal-header h2 .accent { color: var(--cream); }
.room-modal-specs { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; margin-top: 1.1rem; }
.room-modal-specs span { background: rgba(17,93,67,.25); color: #c8e6d7; padding: .38rem .95rem; border-radius: 50px; font-size: .78rem; font-weight: 500; border: 1px solid rgba(17,93,67,.4); }
.room-modal-tabs { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; padding: 1rem 0 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.1); position: sticky; top: 0; z-index: 5; background: rgba(15,14,12,.97); }
.room-tab { background: transparent; border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.7); padding: .5rem 1.15rem; border-radius: 50px; font-size: .8rem; font-weight: 500; cursor: pointer; transition: all .25s ease; white-space: nowrap; font-family: var(--sans); }
.room-tab:hover { color: #fff; border-color: rgba(255,255,255,.5); }
.room-tab.active { background: var(--emerald); border-color: var(--emerald); color: #fff; }
.room-modal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .8rem; }
.room-modal-thumb { border-radius: 12px; overflow: hidden; cursor: pointer; position: relative; aspect-ratio: 4/5; background: rgba(255,255,255,.05); }
.room-modal-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.room-modal-thumb:hover img { transform: scale(1.06); }
.room-modal-thumb::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .3s; }
.room-modal-thumb:hover::after { background: rgba(17,93,67,.2); }

/* ═══ LIGHTBOX ═══ */
.lightbox { position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,.96); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 84vh; object-fit: contain; border-radius: 6px; box-shadow: 0 20px 80px rgba(0,0,0,.5); }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: rgba(255,255,255,.1); border: none; color: #fff; font-size: 2rem; cursor: pointer; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background .3s; }
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1); border: none; color: #fff; cursor: pointer; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background .3s, transform .2s; }
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-nav svg { width: 24px; height: 24px; }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox-next:hover { transform: translateY(-50%) translateX(3px); }
.lightbox-counter { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.85); font-size: .84rem; font-weight: 500; background: rgba(255,255,255,.1); padding: .35rem 1.1rem; border-radius: 50px; backdrop-filter: blur(4px); font-feature-settings: 'tnum'; }

/* ═══ MOBILE NAV ═══ */
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(15,14,12,.98); backdrop-filter: blur(14px); flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #fff; text-decoration: none; font-size: 1.25rem; font-weight: 500; letter-spacing: .05em; }
.mobile-menu .nav-logo img { filter: brightness(0) invert(1); }
.mobile-close { position: absolute; top: 1.25rem; right: 1.5rem; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }

/* ═══ ANIMATIONS ═══ */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-images { height: 380px; }
  .amenities-grid { grid-template-columns: repeat(2,1fr); }
  .rooms-grid { grid-template-columns: repeat(2,1fr); }
  .facilities-grid { grid-template-columns: repeat(2,1fr); }
  .room-modal-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content h1 { font-size: 2.6rem; }
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .room-modal-inner { padding: 4rem 1rem 2rem; }
  .room-modal-grid { grid-template-columns: repeat(2,1fr); gap: .5rem; }
  .room-modal-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 1rem; }
  .about-images { height: 300px; }
  .about-stats { gap: 1rem; }
  .stat-item h3 { font-size: 1.6rem; }
  .cta-contacts { flex-direction: column; align-items: center; gap: 1.5rem; }
  .location-map { aspect-ratio: 16/10; }
  .lightbox-nav { width: 44px; height: 44px; }
  .lightbox-prev { left: .5rem; } .lightbox-next { right: .5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .facilities-grid { grid-template-columns: 1fr; }
  .room-modal-grid { grid-template-columns: 1fr 1fr; }
}
