/* =========================================================
   Vila Verde Ungheni — Main Stylesheet
   ========================================================= */

/* ── Custom properties ─────────────────────────────────── */
:root {
  --g900: #091f10;
  --g800: #1a472a;
  --g700: #2d6a4f;
  --g600: #40916c;
  --g500: #52b788;
  --g400: #74c69d;
  --g100: #d8f3dc;
  --g050: #f0faf4;

  --gold:  #c9a84c;
  --gold2: #e8d5a0;

  --cream: #fafaf7;
  --white: #ffffff;
  --dark:  #111a14;
  --mid:   #4a5568;
  --light: #718096;

  --sh-sm: 0 1px 4px rgba(0,0,0,.07);
  --sh-md: 0 4px 20px rgba(0,0,0,.10);
  --sh-lg: 0 8px 40px rgba(0,0,0,.13);

  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-pill: 999px;

  --ease: cubic-bezier(.4,0,.2,1);
  --dur:  .3s;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', 'Segoe UI', system-ui, sans-serif;

  --max: 1200px;
  --sp:  clamp(64px, 8vw, 104px);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── Utilities ─────────────────────────────────────────── */
.container { width: min(var(--max), 100% - 40px); margin-inline: auto; }
.section-pad { padding: var(--sp) 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--g600);
  background: var(--g050);
  border: 1px solid var(--g100);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 520px;
  margin-inline: auto;
}

/* ── Navigation ────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              padding var(--dur) var(--ease);
  padding: 20px 0;
}
#navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--sh-sm);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  width: min(var(--max), 100% - 40px);
  margin-inline: auto;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: opacity var(--dur);
}
.nav-logo:hover { opacity: .85; }
.logo-mark {
  width: 40px; height: 40px;
  background: var(--g700);
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong {
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  transition: color var(--dur);
}
.logo-text span {
  font-size: .72rem;
  color: var(--mid);
  letter-spacing: .04em;
}
#navbar:not(.scrolled) .logo-text strong { color: white; }
#navbar:not(.scrolled) .logo-text span   { color: rgba(255,255,255,.75); }
#navbar:not(.scrolled) .logo-mark { background: white; color: var(--g700); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline: auto;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  color: rgba(255,255,255,.9);
  transition: background var(--dur), color var(--dur);
}
.nav-links a:hover { background: rgba(255,255,255,.15); color: white; }
#navbar.scrolled .nav-links a { color: var(--mid); }
#navbar.scrolled .nav-links a:hover { background: var(--g050); color: var(--g700); }

/* Nav right actions */
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.lang-switcher { display: flex; gap: 2px; }
.lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.85);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 4px 9px;
  border-radius: var(--r-pill);
  transition: all var(--dur);
}
.lang-btn:hover, .lang-btn.active {
  background: rgba(255,255,255,.2);
  color: white;
  border-color: rgba(255,255,255,.6);
}
#navbar.scrolled .lang-btn { border-color: var(--g100); color: var(--mid); }
#navbar.scrolled .lang-btn:hover, #navbar.scrolled .lang-btn.active {
  background: var(--g050); color: var(--g700); border-color: var(--g400);
}

.btn-booknav {
  background: var(--g700);
  color: white;
  font-size: .82rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  transition: all var(--dur);
}
.btn-booknav:hover { background: var(--g600); transform: translateY(-1px); box-shadow: var(--sh-sm); }
#navbar:not(.scrolled) .btn-booknav {
  background: white;
  color: var(--g800);
}
#navbar:not(.scrolled) .btn-booknav:hover { background: var(--g050); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--dur);
}
#navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────── */
#home {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--g900);
  text-align: center;
}

/* Replace url('...') with actual hotel photo */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--g800);
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9,31,16,.55) 0%,
    rgba(9,31,16,.45) 60%,
    rgba(9,31,16,.7) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 780px;
}
.hero-tagline {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.82);
  margin-bottom: 40px;
  max-width: 480px;
  margin-inline: auto;
}
.btn-hero {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: .95rem;
  padding: 15px 36px;
  border-radius: var(--r-pill);
  letter-spacing: .03em;
  transition: all var(--dur);
  box-shadow: 0 4px 20px rgba(201,168,76,.4);
}
.btn-hero:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.5);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,.6));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── About ─────────────────────────────────────────────── */
#about { background: white; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-badge { margin-bottom: 0; }
.about-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 12px;
}
.about-text { color: var(--mid); line-height: 1.8; margin-bottom: 14px; }
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--g700);
  font-size: .9rem;
  margin-top: 8px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur);
}
.about-link:hover { border-color: var(--g700); }

/* Poza recepție în secțiunea About */
.about-photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,.15); }
.about-img   { width: 100%; height: 340px; object-fit: cover; display: block; }
.about-stats-bar {
  display: flex;
  justify-content: space-around;
  background: var(--g800);
  padding: 22px 16px;
}
.about-stats-bar .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.about-stats-bar .stat-item strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.about-stats-bar .stat-item span {
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-card {
  background: var(--g050);
  border: 1px solid var(--g100);
  border-radius: var(--r-md);
  padding: 28px 24px;
  text-align: center;
}
.stat-card:nth-child(1) { grid-column: 1 / -1; background: var(--g800); border-color: var(--g700); }
.stat-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--g600);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card:nth-child(1) .stat-num { color: white; }
.stat-label { font-size: .82rem; color: var(--mid); font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }
.stat-card:nth-child(1) .stat-label { color: rgba(255,255,255,.7); }

/* ── Rooms ─────────────────────────────────────────────── */
#rooms { background: var(--cream); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.room-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.room-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

.room-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.room-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.room-card:hover .room-img img { transform: scale(1.04); }
.room-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.room-img-placeholder svg { width: 32px; opacity: .6; }

/* ── Room slider ────────────────────────────────────────── */
.room-slider { overflow: hidden; }

.room-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.room-slider .slide.active {
  opacity: 1;
  pointer-events: auto;
}
.room-slider .slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  color: #fff;
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  padding: 0;
}
.slider-btn:hover { background: rgba(0,0,0,.7); }
.slider-prev { left: 10px; }
.slider-next { right: 10px; }

.slider-dots {
  position: absolute;
  bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
  z-index: 3;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.slider-dot.active {
  background: #fff;
  transform: scale(1.3);
}

.room-lux-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gold);
  color: var(--dark);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

.room-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.room-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.room-desc { font-size: .88rem; color: var(--mid); line-height: 1.7; margin-bottom: 14px; flex: 1; }

.room-amenities {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.amenity-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .72rem;
  font-weight: 500;
  color: var(--g700);
  background: var(--g050);
  border: 1px solid var(--g100);
  padding: 3px 9px;
  border-radius: var(--r-pill);
}

.room-variants { margin-bottom: 16px; }
.variants-label { font-size: .72rem; font-weight: 600; color: var(--light); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.variant-item {
  display: flex;
  justify-content: space-between;
  font-size: .83rem;
  padding: 5px 0;
  border-bottom: 1px solid var(--g050);
  color: var(--mid);
}
.variant-price { font-weight: 600; color: var(--dark); }

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}
.room-price-label { font-size: .75rem; color: var(--light); }
.room-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
}
.room-price small { font-size: .75rem; font-weight: 400; color: var(--mid); font-family: var(--sans); }

.btn-room {
  background: var(--g700);
  color: white;
  font-size: .82rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  border: none;
  transition: all var(--dur);
}
.btn-room:hover { background: var(--g600); transform: translateY(-1px); }
.btn-room.lux { background: var(--gold); color: var(--dark); }
.btn-room.lux:hover { background: #b8922f; }

/* ── Facilities ────────────────────────────────────────── */
#facilities { background: white; }
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.facility-card {
  background: var(--g050);
  border: 1px solid var(--g100);
  border-radius: var(--r-md);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--dur);
}
.facility-card:hover { background: var(--g100); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.facility-icon {
  width: 56px; height: 56px;
  background: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  box-shadow: var(--sh-sm);
}
.facility-title { font-weight: 600; margin-bottom: 6px; font-size: .95rem; }
.facility-desc { font-size: .83rem; color: var(--mid); line-height: 1.6; }

/* ── Booking ────────────────────────────────────────────── */
#booking { background: var(--g800); }
#booking .section-badge { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: var(--g400); }
#booking .section-title { color: white; }
#booking .section-sub { color: rgba(255,255,255,.7); }

.booking-wrapper {
  max-width: 720px;
  margin-inline: auto;
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.booking-steps {
  display: flex;
  border-bottom: 1px solid #f0f0f0;
}
.booking-step-tab {
  flex: 1;
  padding: 16px;
  text-align: center;
  font-size: .82rem;
  font-weight: 600;
  color: var(--light);
  border-bottom: 2px solid transparent;
  transition: all var(--dur);
}
.booking-step-tab.active { color: var(--g700); border-bottom-color: var(--g700); }

.booking-form { padding: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--mid); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--r-sm);
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--dark);
  background: white;
  transition: border-color var(--dur), box-shadow var(--dur);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--g500);
  box-shadow: 0 0 0 3px rgba(82,183,136,.15);
}
.form-group textarea { resize: vertical; min-height: 88px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23718096' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* Honeypot - visually hidden */
.hp-field { position: absolute; left: -9999px; }

/* Hint contact opțional */
.contact-hint {
  font-size: .78rem;
  color: var(--g500);
  margin: -8px 0 12px;
  font-style: italic;
}

#step2 { display: none; }

.avail-result {
  padding: 14px 16px;
  border-radius: var(--r-sm);
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: 16px;
  display: none;
}
.avail-result.ok    { background: var(--g050); border: 1px solid var(--g300); color: var(--g800); display: block; }
.avail-result.err   { background: #fff5f5;    border: 1px solid #feb2b2;    color: #c53030;    display: block; }
.avail-result.info  { background: #fffbeb;    border: 1px solid #fbd38d;    color: #7b5000;    display: block; }
.avail-result.alt   { background: #fffbeb;    border: 1px solid #f6c343;    color: #5a3e00;    display: block; }

/* Alternativă cameră */
.alt-sorry   { font-size: .87rem; margin-bottom: 10px; color: #c53030; }
.alt-suggest { font-weight: 600; margin-bottom: 8px; font-size: .9rem; }
.alt-card {
  display: flex; justify-content: space-between; align-items: center;
  background: #fff; border: 1px solid var(--g300);
  border-radius: var(--r-sm); padding: 10px 14px;
  margin-bottom: 12px;
}
.alt-card strong { color: var(--g800); }
.alt-card span   { color: var(--g600); font-size: .85rem; }
.alt-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-alt-accept {
  background: var(--g700); color: #fff;
  border: none; border-radius: var(--r-sm);
  padding: 9px 18px; font-size: .88rem; font-weight: 600;
  cursor: pointer; transition: background .2s;
}
.btn-alt-accept:hover { background: var(--g800); }
.btn-alt-decline {
  background: transparent; color: var(--g600);
  border: 1px solid var(--g300); border-radius: var(--r-sm);
  padding: 9px 14px; font-size: .88rem;
  cursor: pointer; transition: border-color .2s, color .2s;
}
.btn-alt-decline:hover { border-color: var(--g600); color: var(--g800); }

.booking-summary {
  background: var(--g050);
  border: 1px solid var(--g100);
  border-radius: var(--r-sm);
  padding: 16px;
  margin-bottom: 20px;
}
.summary-title { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--light); margin-bottom: 10px; }
.summary-row { display: flex; justify-content: space-between; font-size: .88rem; padding: 4px 0; }
.summary-row.total { font-weight: 700; border-top: 1px solid var(--g100); padding-top: 10px; margin-top: 6px; color: var(--g800); }

.btn-check, .btn-confirm {
  width: 100%;
  padding: 14px;
  border-radius: var(--r-sm);
  border: none;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all var(--dur);
  position: relative;
}
.btn-check   { background: var(--g700); color: white; }
.btn-check:hover   { background: var(--g600); transform: translateY(-1px); }
.btn-confirm { background: var(--gold);  color: var(--dark); }
.btn-confirm:hover { background: #b8922f; color: white; transform: translateY(-1px); }
.btn-check:disabled, .btn-confirm:disabled { opacity: .6; transform: none; cursor: not-allowed; }

.booking-success {
  text-align: center;
  padding: 48px 32px;
}
.success-icon {
  width: 64px; height: 64px;
  background: var(--g050);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  border: 2px solid var(--g300);
}
.booking-success h3 { font-family: var(--serif); font-size: 1.7rem; margin-bottom: 10px; color: var(--g800); }
.booking-success p  { color: var(--mid); max-width: 380px; margin-inline: auto; }

/* ── Contact ────────────────────────────────────────────── */
#contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }

.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  border: 1px solid #e8e8e8;
  border-radius: var(--r-md);
  padding: 20px;
  transition: box-shadow var(--dur);
}
.contact-card:hover { box-shadow: var(--sh-sm); }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--g050);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-label { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--light); margin-bottom: 3px; }
.contact-val { font-size: .95rem; font-weight: 500; }
.contact-val a { color: var(--g700); transition: color var(--dur); }
.contact-val a:hover { color: var(--g600); }

.map-wrapper {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  aspect-ratio: 4/3;
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--g900);
  color: rgba(255,255,255,.75);
  padding: 56px 0 28px;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .logo-mark { width: 36px; height: 36px; font-size: .95rem; background: var(--g700); }
.footer-brand .logo-text strong { color: white; font-size: .9rem; }
.footer-brand .logo-text span   { color: rgba(255,255,255,.5); }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.55); margin-top: 14px; line-height: 1.7; max-width: 280px; }
.footer-col-title { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-links-list { display: flex; flex-direction: column; gap: 10px; }
.footer-links-list a { font-size: .88rem; color: rgba(255,255,255,.65); transition: color var(--dur); }
.footer-links-list a:hover { color: white; }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list li { font-size: .85rem; display: flex; gap: 8px; align-items: flex-start; }
.footer-contact-list li a { color: rgba(255,255,255,.65); transition: color var(--dur); }
.footer-contact-list li a:hover { color: white; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin-bottom: 24px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.55); transition: color var(--dur); }
.footer-bottom a:hover { color: rgba(255,255,255,.85); }

/* ── Scroll-reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .rooms-grid       { grid-template-columns: repeat(2, 1fr); }
  .facilities-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-main      { grid-template-columns: 1fr 1fr; }
  .footer-main > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }

  .nav-links.open, .nav-right.open {
    display: flex;
  }
  .nav-links.open {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 16px 24px;
    box-shadow: var(--sh-md);
    z-index: 999;
    gap: 4px;
  }
  .nav-links.open a { color: var(--dark); padding: 10px 14px; border-radius: var(--r-sm); }
  .nav-links.open a:hover { background: var(--g050); color: var(--g700); }
  .nav-right.open {
    position: fixed;
    top: auto;
    bottom: 0; left: 0; right: 0;
    background: white;
    padding: 16px 24px;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,.08);
    z-index: 999;
    border-top: 1px solid #f0f0f0;
  }

  .about-grid    { grid-template-columns: 1fr; gap: 40px; }
  .about-stats   { order: -1; }
  .rooms-grid    { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-main   { grid-template-columns: 1fr; gap: 32px; }
  .footer-main > :first-child { grid-column: auto; }

  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 20px; }
}

@media (max-width: 480px) {
  .stat-card:nth-child(1) { grid-column: auto; }
  .about-stats { grid-template-columns: 1fr; }
}
