/* =============================================
   Way Inns – Stylesheet (boutique redesign, 2026)
   Warm, heritage-boutique aesthetic inspired by
   fine independent hotels: cream + sand grounds,
   espresso ink, terracotta + brass accents,
   Playfair display type, generous whitespace.
   ============================================= */

:root {
  /* warm neutrals */
  --bg:        #ffffff;
  --cream:     #faf5ec;
  --sand:      #f1e8d8;
  --sand-dk:   #e7dcc7;

  /* ink */
  --espresso:  #2a2118;
  --text:      #3d342b;
  --text-lt:   #6f655a;
  --line:      #e7ddcd;

  /* accents */
  --terra:     #b8551f;
  --terra-dk:  #984417;
  --terra-lt:  #d98a5c;
  --brass:     #a9834b;
  --brass-lt:  #c6a677;

  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 6px 30px rgba(42,33,24,0.08);
  --shadow-lg: 0 16px 50px rgba(42,33,24,0.16);
  --transition: 0.28s ease;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ---- UTILS ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 112px 0; }
.section-alt { background: var(--cream); }
.section-sand { background: var(--sand); }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

/* overline w/ short brass rules */
.section-tag,
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}
.section-tag::before, .section-tag::after {
  content: '';
  width: 26px; height: 1px;
  background: var(--brass-lt);
}
.section-header .section-tag { justify-content: center; }

h1, h2, h3 { font-family: var(--serif); color: var(--espresso); font-weight: 600; }

h2 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
h3 { font-size: 1.4rem; line-height: 1.25; margin-bottom: 10px; }
h4 { font-size: 1.02rem; font-weight: 600; color: var(--espresso); margin-bottom: 8px; font-family: var(--sans); }

p { color: var(--text-lt); font-size: 1rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--terra);
  color: #fff;
  border-color: var(--terra);
}
.btn-primary:hover {
  background: var(--terra-dk);
  border-color: var(--terra-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(184,85,31,0.30);
}

.btn-outline {
  background: transparent;
  color: var(--terra);
  border-color: var(--terra);
}
.btn-outline:hover {
  background: var(--terra);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: #fff; color: var(--espresso); border-color: #fff; }

.btn-large { padding: 18px 46px; font-size: 0.82rem; }

/* ---- TOP BAR ---- */
.topbar {
  background: var(--espresso);
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
}
.topbar a { color: rgba(255,255,255,0.82); transition: color var(--transition); }
.topbar a:hover { color: var(--brass-lt); }
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-left span, .topbar-left a { display: inline-flex; align-items: center; gap: 7px; }
.topbar-right { display: flex; align-items: center; gap: 8px; color: var(--brass-lt); font-weight: 500; }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition), padding var(--transition);
  padding: 14px 0;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(42,33,24,0.08); padding: 8px 0; }

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; }
.logo-img { height: 56px; width: auto; object-fit: contain; display: block; transition: height var(--transition); }
.navbar.scrolled .logo-img { height: 48px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--terra); }
.nav-links .btn-outline { text-transform: uppercase; padding: 11px 24px; color: var(--terra); }
.nav-links .btn-outline:hover { color: #fff; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--espresso); border-radius: 2px;
  transition: all var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 0 60px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/hero.webp') center/cover no-repeat;
  transform: scale(1.05);
}
/* Optional hero video: drop a silent MP4 at images/hero.mp4 and uncomment the
   <video class="hero-video"> block in index.html. It layers above the ::before
   poster (which stays as a first-frame fallback) and below the overlay + text. */
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(30,22,14,0.55) 0%, rgba(30,22,14,0.35) 40%, rgba(30,22,14,0.65) 100%);
}
.hero-content { position: relative; color: #fff; padding: 0 24px; max-width: 860px; width: 100%; }
.hero-tag { color: var(--brass-lt); justify-content: center; }
.hero-tag::before, .hero-tag::after { content: ''; width: 30px; height: 1px; background: var(--brass-lt); }
.hero-content h1 {
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  font-weight: 600;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 22px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 auto 40px;
}

/* hero booking widget */
.booking-widget {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}
.bw-field { display: flex; flex-direction: column; gap: 6px; }
.bw-field label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
}
.bw-field input, .bw-field select {
  padding: 12px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--espresso);
  background: #fff;
  outline: none;
  transition: border-color var(--transition);
}
.bw-field input:focus, .bw-field select:focus { border-color: var(--terra); }
.booking-widget .btn { height: 48px; }

/* ---- SECTION INTRO (two-col) ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .section-tag { margin-bottom: 16px; }
.about-text h2 { margin-bottom: 22px; }
.about-text p { margin-bottom: 18px; }

.stats-row {
  display: flex;
  gap: 48px;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.stat span {
  display: block;
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 600;
  color: var(--terra);
  line-height: 1;
}
.stat p { font-size: 0.82rem; color: var(--text-lt); margin-top: 8px; letter-spacing: 0.04em; }

.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-img::after {
  content: '';
  position: absolute; inset: 14px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 6px;
  pointer-events: none;
}

/* ---- ROOMS ---- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.room-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.room-img { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.room-img img { transition: transform 0.6s ease; }
.room-card:hover .room-img img { transform: scale(1.06); }

.room-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--brass);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.room-info { padding: 30px 28px; display: flex; flex-direction: column; flex: 1; }
.room-info h3 { margin-bottom: 12px; }
.room-info > p { margin-bottom: 18px; }

.room-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.room-features li {
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 40px;
}

.room-price { margin-bottom: 20px; min-height: 30px; }
.price-display { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price-amount { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--espresso); }
.price-label { font-size: 0.85rem; color: var(--text-lt); font-weight: 500; }
.price-note {
  font-size: 0.72rem; color: var(--brass);
  background: var(--cream); border: 1px solid var(--line);
  padding: 3px 9px; border-radius: 40px; align-self: center;
}
.price-pending { font-size: 0.85rem; color: var(--text-lt); font-style: italic; }
.room-info .btn { margin-top: auto; }

/* Rooms date-price picker */
.rooms-datebar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: -32px auto 44px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 40px;
  padding: 12px 22px;
  width: fit-content;
}
.rooms-datebar label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brass);
}
.rooms-datebar input {
  padding: 9px 14px; border: 1.5px solid var(--line);
  border-radius: var(--radius); font-family: inherit; font-size: 0.9rem;
  color: var(--espresso); background: #fff; outline: none;
}
.rooms-datebar input:focus { border-color: var(--terra); }

/* ---- AMENITIES ---- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.amenity-card {
  background: #fff;
  padding: 44px 34px;
  transition: background var(--transition);
  text-align: center;
}
.amenity-card:hover { background: var(--cream); }
.amenity-icon { color: var(--terra); margin-bottom: 18px; display: flex; justify-content: center; }
.amenity-icon svg { width: 40px; height: 40px; stroke: var(--terra); stroke-width: 1.4; fill: none; }
.amenity-card p { font-size: 0.92rem; }

/* ---- EXPERIENCE / CTA BAND ---- */
.cta-band {
  position: relative;
  padding: 130px 0;
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/cta-lifestyle.webp') center/cover no-repeat fixed;
}
.cta-band::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(rgba(30,22,14,0.72), rgba(30,22,14,0.72));
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band .section-tag { color: var(--brass-lt); justify-content: center; }
.cta-band .section-tag::before, .cta-band .section-tag::after { background: var(--brass-lt); }
.cta-band h2 { color: #fff; max-width: 720px; margin: 0 auto 14px; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 540px; margin: 0 auto 34px; font-size: 1.05rem; }

/* ---- AVAILABILITY CALENDAR ---- */
.availability-grid { display: block; }
.avail-loading { text-align: center; color: var(--text-lt); padding: 48px 0; }

.avail-widget {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
}

/* controls: room selector + month nav */
.avail-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.avail-rooms { display: flex; gap: 8px; flex-wrap: wrap; }
.avail-roombtn {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 9px 18px;
  border: 1.5px solid var(--line);
  border-radius: 40px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}
.avail-roombtn:hover { border-color: var(--terra-lt); color: var(--terra); }
.avail-roombtn.active { background: var(--espresso); border-color: var(--espresso); color: #fff; }

.avail-monthnav { display: flex; align-items: center; gap: 14px; }
.avail-navbtn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--line); background: #fff;
  color: var(--espresso); font-size: 1.2rem; line-height: 1;
  cursor: pointer; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.avail-navbtn:hover:not(:disabled) { border-color: var(--terra); color: var(--terra); }
.avail-navbtn:disabled { opacity: 0.35; cursor: not-allowed; }
.avail-monthlabel {
  font-family: var(--serif); font-size: 1.15rem; color: var(--espresso);
  min-width: 168px; text-align: center;
}

/* calendar grid */
.avail-weekdays, .avail-cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.avail-weekdays { margin-bottom: 6px; }
.avail-weekday {
  text-align: center; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-lt);
  padding: 4px 0;
}
.avail-cell {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  border: 1.5px solid transparent;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; padding: 4px; text-align: center;
  cursor: pointer; transition: transform var(--transition), box-shadow var(--transition);
}
.avail-cell.empty { background: transparent; cursor: default; }
.avail-cell.past { background: var(--gray-1, #f7f4f2); color: var(--gray-3, #a09b96); cursor: not-allowed; opacity: 0.55; }
.avail-daynum { font-size: 0.95rem; font-weight: 600; line-height: 1; }
.avail-daytag { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.02em; line-height: 1; }

/* status colours */
.avail-cell.open  { background: #edf5ec; color: #2e7d32; }
.avail-cell.low   { background: #fbf1dd; color: #b25f00; }
.avail-cell.full  { background: #f8e9e6; color: #b23122; cursor: not-allowed; }
.avail-cell.open:hover, .avail-cell.low:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.avail-cell.selected { border-color: var(--espresso); box-shadow: 0 0 0 2px rgba(42,33,24,0.12); }

/* legend */
.avail-legend {
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: center;
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line);
}
.avail-legend-item { display: flex; align-items: center; gap: 7px; font-size: 0.78rem; color: var(--text-lt); }
.avail-swatch { width: 14px; height: 14px; border-radius: 4px; }
.avail-swatch.open { background: #cfe6cd; }
.avail-swatch.low  { background: #f6e0b3; }
.avail-swatch.full { background: #f2cfc9; }

/* selected-date summary */
.avail-summary {
  margin-top: 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.avail-summary-info strong { display: block; font-family: var(--serif); font-size: 1.05rem; color: var(--espresso); }
.avail-summary-info span { font-size: 0.86rem; color: var(--text-lt); }
.avail-summary .btn { padding: 12px 24px; }
.avail-summary.is-full .avail-summary-info strong { color: #b23122; }

/* ---- GALLERY ---- */
.slideshow {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/7;
  background: #1a140e;
}
.slideshow-track { width: 100%; height: 100%; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.18); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 2rem; line-height: 1;
  width: 50px; height: 50px; border-radius: 50%;
  cursor: pointer; transition: background var(--transition); z-index: 10;
  display: flex; align-items: center; justify-content: center;
}
.slide-btn:hover { background: rgba(255,255,255,0.34); }
.slide-prev { left: 18px; }
.slide-next { right: 18px; }
.slide-dots {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 9px; z-index: 10;
}
.slide-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5); border: none; cursor: pointer;
  transition: all var(--transition); padding: 0;
}
.slide-dot.active { background: #fff; transform: scale(1.35); }

/* ---- TESTIMONIALS ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 8px; right: 24px;
  font-family: var(--serif); font-size: 5rem; line-height: 1;
  color: var(--sand-dk);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: var(--brass); font-size: 0.95rem; letter-spacing: 3px; }
.testimonial-text {
  font-family: var(--serif);
  font-size: 1.02rem; color: var(--text); line-height: 1.6; flex: 1;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--espresso); font-family: var(--sans); }
.testimonial-author span { font-size: 0.75rem; color: var(--text-lt); }

/* ---- LOCATION ---- */
.location-text .section-tag { margin-bottom: 16px; }
.location-text h2 { margin-bottom: 22px; }
.location-text p { margin-bottom: 22px; }
.location-list li {
  color: var(--text);
  font-size: 0.94rem;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  display: flex; gap: 10px;
}
.location-list li:last-child { border-bottom: none; }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ---- CONTACT / BOOKING ---- */
.contact-wrapper { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }
.booking-form {
  background: #fff;
  border: 1px solid var(--line);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { margin-bottom: 20px; }
label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass); }
input, select, textarea {
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit; font-size: 0.92rem;
  color: var(--espresso); background: #fff;
  transition: border-color var(--transition); outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--terra); }
textarea { resize: vertical; }
.form-note { margin-top: 14px; font-size: 0.78rem; color: var(--text-lt); }

.contact-info {
  background: var(--espresso);
  color: rgba(255,255,255,0.78);
  padding: 40px 34px;
  border-radius: var(--radius-lg);
}
.contact-info h3 { color: #fff; margin-bottom: 26px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-icon { font-size: 1.2rem; flex-shrink: 0; line-height: 1; margin-top: 2px; color: var(--brass-lt); }
.contact-item strong { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass-lt); margin-bottom: 5px; }
.contact-item p { margin: 0; font-size: 0.92rem; color: rgba(255,255,255,0.86); }

/* ---- BOOKING CTA CARD (replaces inline form) ---- */
.booking-cta-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.booking-cta-card h3 { font-size: 1.8rem; margin-bottom: 12px; }
.booking-cta-card > p { margin-bottom: 26px; max-width: 460px; }
.booking-cta-card .btn { align-self: stretch; }
.booking-perks { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.booking-perks li { font-size: 0.9rem; color: var(--text-lt); }

/* ---- BOOKING MODAL ---- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(30, 22, 14, 0.6);
  backdrop-filter: blur(3px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-dialog {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%; max-width: 620px;
  margin: auto;
  padding: 40px 40px 36px;
  transform: translateY(16px) scale(0.98);
  transition: transform var(--transition);
}
.modal-overlay.open .modal-dialog { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 18px;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff;
  font-size: 1.5rem; line-height: 1; color: var(--text-lt);
  cursor: pointer; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--cream); color: var(--espresso); }
.modal-head { margin-bottom: 24px; }
.modal-head h3 { font-size: 1.7rem; margin: 4px 0 8px; }
.modal-head p { font-size: 0.92rem; }
/* the form sits inside the dialog card, so strip its own card styling */
.modal-dialog .booking-form { background: none; border: none; padding: 0; box-shadow: none; }

/* live availability note in the popup */
.avail-note {
  margin: 4px 0 16px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.5;
}
.avail-note.open { background: #edf5ec; color: #2e7d32; }
.avail-note.low  { background: #fbf1dd; color: #b25f00; }
.avail-note.full { background: #f8e9e6; color: #b23122; }

/* disabled Book & Pay (e.g. sold-out dates) */
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ---- WHATSAPP ---- */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 9998;
  width: 58px; height: 58px; background: #25d366; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-contact-btn {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 24px;
  background: #25d366; color: #fff; padding: 14px 20px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
  width: 100%; justify-content: center;
}
.whatsapp-contact-btn:hover { background: #1db954; transform: translateY(-2px); }

/* ---- FOOTER ---- */
.footer { background: var(--espresso); color: rgba(255,255,255,0.7); padding: 66px 0 30px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.footer-logo-block { display: inline-flex; align-items: center; gap: 10px; }
.footer-logo-img { height: 58px; width: auto; display: inline-block; object-fit: contain; }
.footer-brand { display: flex; flex-direction: column; align-items: center; }
.footer-brand p { font-size: 0.9rem; margin-top: 12px; color: rgba(255,255,255,0.6); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; }
.footer-links a {
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.66); transition: color var(--transition);
}
.footer-links a:hover { color: var(--brass-lt); }
.footer-copy {
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px; width: 100%; text-align: center;
}

/* ---- TOAST ---- */
.toast {
  position: fixed; bottom: 30px; right: 30px;
  background: var(--espresso); color: #fff;
  padding: 16px 24px; border-radius: var(--radius);
  font-size: 0.9rem; box-shadow: var(--shadow-lg);
  transform: translateY(80px); opacity: 0;
  transition: all 0.35s ease; z-index: 9999; max-width: 340px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast .toast-bar {
  position: absolute; bottom: 0; left: 0; height: 3px;
  background: var(--brass); border-radius: 0 0 var(--radius) var(--radius);
  animation: toastbar 4s linear forwards;
}
@keyframes toastbar { from { width: 100%; } to { width: 0%; } }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .rooms-grid, .amenities-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrapper { grid-template-columns: 1fr; }
  .booking-widget { grid-template-columns: 1fr 1fr; }
  .booking-widget .btn { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 76px 0; }
  .topbar-left { gap: 14px; }
  .topbar .hide-sm { display: none; }
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: flex-start;
    padding: 24px 28px; gap: 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links .btn-outline { width: 100%; }
  .two-col { grid-template-columns: 1fr; gap: 44px; }
  .about-img { order: -1; aspect-ratio: 4/3; }
  .rooms-grid, .amenities-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .amenities-grid { gap: 1px; }
  .slideshow { aspect-ratio: 4/3; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 28px; }
  .modal-overlay { padding: 0; }
  .modal-dialog { padding: 30px 22px 26px; border-radius: 0; min-height: 100%; }
  .booking-cta-card { padding: 32px 26px; }
  .booking-widget { grid-template-columns: 1fr; }
  .cta-band::before { background-attachment: scroll; }
  .stats-row { gap: 30px; }
}

@media (max-width: 480px) {
  .slideshow { aspect-ratio: 1/1; }
  .stats-row { gap: 22px; flex-wrap: wrap; }
  .container { padding: 0 20px; }
}
