/* ================================================
   Waihemo Lodge Hotel — Main Stylesheet
   Built by WebGenik | waihemolodge.co.nz
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- Variables ---- */
:root {
  --teal:        #1a2d52;
  --teal-dark:   #111e38;
  --teal-light:  #e8ecf4;
  --gold:        #c9a227;
  --gold-dark:   #a8861f;
  --gold-light:  #fdf7e0;
  --ink:         #172226;
  --ink-mid:     #2d3f45;
  --muted:       #5f7078;
  --paper:       #ffffff;
  --soft:        #f4f7f7;
  --line:        #d8e1e4;
  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow-sm:   0 2px 8px rgba(23,34,38,.06);
  --shadow:      0 4px 20px rgba(23,34,38,.10);
  --shadow-lg:   0 8px 40px rgba(23,34,38,.15);
  --transition:  .2s ease;
  --max-w:       1180px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--ink);
}
h1 { font-size: clamp(32px, 5vw, 54px); font-weight: 700; }
h2 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 600; }
h3 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 600; }
p  { line-height: 1.75; color: var(--ink-mid); }

/* ---- Layout helpers ---- */
.wrap { width: min(var(--max-w), calc(100% - 48px)); margin: 0 auto; }
.section { padding: 80px 0; }
.section--soft { background: var(--soft); }
.section--teal { background: var(--teal); }
.section--ink  { background: var(--ink); }
.section--gold { background: var(--gold-light); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-header p { font-size: 17px; color: var(--muted); margin-top: 12px; max-width: 580px; margin-left: auto; margin-right: auto; }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.eyebrow--gold { color: var(--gold); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; border: none; transition: all var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-primary   { background: var(--teal); color: #fff; }
.btn-primary:hover   { background: var(--teal-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-secondary:hover { background: var(--teal); color: #fff; }
.btn-gold      { background: var(--gold); color: #fff; }
.btn-gold:hover      { background: var(--gold-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-white     { background: #fff; color: var(--teal); }
.btn-white:hover     { background: var(--teal-light); }
.btn-white-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn-white-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-sm  { padding: 10px 20px; font-size: 14px; }
.btn-lg  { padding: 18px 38px; font-size: 17px; }
.btn-full{ width: 100%; justify-content: center; }

/* ================================================
   NAVIGATION
   ================================================ */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 0; height: 110px;
  width: min(var(--max-w), calc(100% - 48px)); margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo-img { height: 88px; width: auto; display: block; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; justify-content: center; gap: 3px; }
.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 700;
  color: var(--teal-dark);
  line-height: 1.1;
  letter-spacing: .01em;
}
.nav-logo-sub {
  font-size: 11px; font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.nav-logo .name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--ink); }
.nav-logo .sub  { font-size: 11px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; color: var(--ink-mid);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); background: var(--teal-light); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-size: 14px; font-weight: 500; color: var(--muted); }
.nav-phone a { color: var(--ink-mid); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all var(--transition); }

/* Mobile overlay menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--paper); padding: 88px 28px 40px;
  flex-direction: column; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 20px; font-weight: 600; padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--ink); display: block; }
.mobile-menu a.btn { display: inline-flex; border: none; margin-top: 16px; padding: 14px 28px; }
.menu-close-btn {
  position: absolute; top: 16px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--soft); border: 1px solid var(--line);
  cursor: pointer; font-size: 22px; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 62vh;
  display: flex; align-items: center;
  background:
    linear-gradient(
      to right,
      rgba(15,26,50,.82) 0%,
      rgba(15,26,50,.60) 55%,
      rgba(15,26,50,.28) 100%
    ),
    url('../images/hero.jpg') center 40% / cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(15,26,50,.45));
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; padding: 72px 0 120px; max-width: 740px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px; padding: 8px 18px;
  font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 28px; backdrop-filter: blur(8px);
}
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero h1 { font-size: clamp(40px, 7vw, 72px); color: #fff; margin-bottom: 22px; line-height: 1.05; }
.hero h1 em { font-style: italic; color: rgba(255,255,255,.85); }
.hero p { font-size: clamp(16px, 2.2vw, 19px); color: rgba(255,255,255,.85); max-width: 560px; margin-bottom: 38px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 28px; }
.hero-meta-item { display: flex; align-items: center; gap: 9px; font-size: 14px; color: rgba(255,255,255,.75); font-weight: 500; }
.hero-meta-item .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ================================================
   BOOKING BAR
   ================================================ */
.booking-bar-wrap { background: var(--soft); padding-top: 0; padding-bottom: 40px; }
.booking-bar {
  background: #fff;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: 6px;
  position: relative; z-index: 10;
  width: min(960px, 100%);
  margin: -72px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 4px;
}
.bb-field {
  display: flex; flex-direction: column;
  padding: 14px 18px; border-radius: 10px;
  cursor: pointer; border: 2px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}
.bb-field:hover { background: var(--soft); }
.bb-field:focus-within { background: var(--teal-light); border-color: var(--teal); }
.bb-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); margin-bottom: 5px; }
.bb-field input, .bb-field select {
  border: none; outline: none; background: transparent;
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; color: var(--ink);
  cursor: pointer; width: 100%; appearance: none;
}
.bb-field input::placeholder { color: var(--muted); font-weight: 400; }
.bb-btn { padding: 0 28px; border-radius: 10px; }

/* ================================================
   ABOUT SECTION
   ================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; height: 500px; object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-img-placeholder {
  width: 100%; height: 500px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--line) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 80px;
}
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold); color: #fff; border-radius: var(--radius-lg);
  padding: 22px 28px; text-align: center; box-shadow: var(--shadow);
}
.about-badge .num { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; line-height: 1; display: block; }
.about-badge .lbl { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; opacity: .9; margin-top: 2px; }
.about-text h2 { margin-bottom: 16px; }
.about-text p { color: var(--muted); margin-bottom: 22px; font-size: 16px; }
.about-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 30px 0 36px; }
.about-check { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--ink-mid); }
.check-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--teal-light); color: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 12px; font-weight: 700; }

/* ================================================
   ROOM CARDS
   ================================================ */
.rooms-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rooms-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.rooms-grid-all { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.room-card {
  background: var(--paper); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all var(--transition);
  display: flex; flex-direction: column;
  position: relative; cursor: pointer;
}
.room-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--teal-light); }
.room-card-link { position: absolute; inset: 0; z-index: 0; border-radius: var(--radius-lg); }
.room-footer-bar .btn { position: relative; z-index: 1; }
.room-img-box { height: 230px; overflow: hidden; position: relative; background: var(--soft); }
.room-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.room-card:hover .room-img-box img { transform: scale(1.06); }
.room-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
}
.room-img-placeholder.p-ensuite  { background: linear-gradient(135deg, #d4eae9, #a8d5d3); }
.room-img-placeholder.p-family   { background: linear-gradient(135deg, #dde8d4, #b8d4a8); }
.room-img-placeholder.p-shared   { background: linear-gradient(135deg, #e8e4d4, #d4cca8); }
.room-img-placeholder.p-single   { background: linear-gradient(135deg, #e8d4d4, #d4a8a8); }
.room-img-placeholder.p-budget   { background: linear-gradient(135deg, #e4e4e4, #cccccc); }

.room-badge-wrap { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; }
.badge-pill {
  padding: 5px 12px; border-radius: 999px; font-size: 11px; font-weight: 700;
  letter-spacing: .04em;
}
.badge-ensuite { background: var(--teal); color: #fff; }
.badge-shared  { background: rgba(23,34,38,.7); color: #fff; }
.badge-family  { background: var(--gold); color: #fff; }
.badge-budget  { background: #636363; color: #fff; }

.room-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.room-body h3 { font-size: 18px; margin-bottom: 6px; }
.room-desc { font-size: 14px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; flex: 1; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.amenity-chip { font-size: 12px; background: var(--soft); color: var(--ink-mid); padding: 4px 10px; border-radius: 999px; font-weight: 500; border: 1px solid var(--line); }
.room-footer-bar { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--line); margin-top: auto; }
.room-price-block .from-lbl { font-size: 12px; color: var(--muted); display: block; margin-bottom: 1px; }
.room-price-block .amount { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--teal); line-height: 1; }
.room-price-block .per-lbl { font-size: 13px; color: var(--muted); }
.room-guests { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 5px; }

/* ================================================
   FACILITIES
   ================================================ */
.facilities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.facility-card {
  background: var(--paper); border-radius: var(--radius);
  padding: 28px 18px; text-align: center; border: 1px solid var(--line);
  transition: all var(--transition);
}
.facility-card:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.facility-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 24px;
}
.facility-card h4 { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.facility-card p { font-size: 12px; color: var(--muted); }

/* ================================================
   NEARBY ATTRACTIONS
   ================================================ */
.attractions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.attraction-card {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); padding: 28px 20px; text-align: center;
  transition: background var(--transition);
}
.attraction-card:hover { background: rgba(255,255,255,.16); }
.attraction-icon { font-size: 38px; margin-bottom: 14px; display: block; }
.attraction-card h4 { color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.attraction-card p { color: rgba(255,255,255,.7); font-size: 13px; }

/* ================================================
   BREAKFAST BANNER
   ================================================ */
.breakfast-banner {
  background: linear-gradient(135deg, var(--gold-light), #fffdf7);
  border: 1px solid rgba(185,135,54,.2);
  border-radius: var(--radius-lg); padding: 52px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 36px;
}
.breakfast-text h2 { margin-bottom: 12px; }
.breakfast-text p { color: var(--muted); max-width: 480px; font-size: 16px; }
.breakfast-price-block { text-align: center; flex-shrink: 0; padding: 28px 36px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.breakfast-price-block .price-amt { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700; color: var(--gold); line-height: 1; display: block; }
.breakfast-price-block .price-lbl { font-size: 13px; color: var(--muted); font-weight: 500; margin-top: 6px; display: block; }
.breakfast-price-block .price-time { font-size: 12px; color: var(--gold); font-weight: 600; margin-top: 4px; display: block; }

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  background:
    linear-gradient(135deg, rgba(15,26,50,.88) 0%, rgba(10,15,30,.80) 100%),
    url('../images/hero.jpg') center 40% / cover no-repeat;
  padding: 72px 0 64px;
  color: #fff;
}
.page-hero h1 { color: #fff; font-size: clamp(28px, 4vw, 46px); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.8); max-width: 580px; font-size: 17px; }
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 13px; margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { color: rgba(255,255,255,.35); }

/* ================================================
   ROOMS FILTER BAR
   ================================================ */
.rooms-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; align-items: center; }
.filter-btn {
  padding: 9px 20px; border-radius: 999px; font-size: 14px; font-weight: 500;
  border: 2px solid var(--line); cursor: pointer; background: var(--paper);
  color: var(--ink-mid); transition: all var(--transition);
  font-family: 'Inter', sans-serif;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--teal); background: var(--teal); color: #fff; }
.rooms-count { font-size: 14px; color: var(--muted); margin-left: auto; }

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; }
.contact-form-card { background: var(--paper); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.contact-form-card h2 { margin-bottom: 8px; }
.contact-form-card > p { color: var(--muted); margin-bottom: 32px; }
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { background: var(--teal); color: #fff; border-radius: var(--radius-lg); padding: 36px; }
.contact-info-card h3 { color: #fff; margin-bottom: 28px; font-size: 20px; }
.ci-item { display: flex; gap: 14px; margin-bottom: 24px; }
.ci-item:last-child { margin-bottom: 0; }
.ci-icon { width: 44px; height: 44px; background: rgba(255,255,255,.12); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.ci-text h5 { color: #fff; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 5px; font-family: 'Inter', sans-serif; }
.ci-text p, .ci-text a { color: rgba(255,255,255,.8); font-size: 14px; line-height: 1.5; }
.ci-text a:hover { color: #fff; }
.hours-card { background: var(--soft); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--line); }
.hours-card h4 { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink); margin-bottom: 16px; }
.hour-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.hour-row:last-child { border-bottom: none; }
.hour-row .day { color: var(--muted); font-weight: 500; }
.hour-row .time { font-weight: 600; color: var(--ink-mid); }
.map-card { border-radius: var(--radius-lg); overflow: hidden; height: 240px; background: var(--soft); border: 1px solid var(--line); }
.map-card iframe { width: 100%; height: 100%; border: none; }

/* ================================================
   FORM ELEMENTS (shared)
   ================================================ */
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 7px; text-transform: uppercase; letter-spacing: .07em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--line); border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-size: 16px; color: var(--ink);
  background: var(--paper); outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-group select { appearance: none; cursor: pointer; }
.form-group .hint { font-size: 12px; color: var(--muted); margin-top: 5px; }

/* ================================================
   BOOKING PAGE
   ================================================ */
.booking-layout { display: grid; grid-template-columns: 1fr 360px; gap: 36px; align-items: start; }
.booking-form-card { background: var(--paper); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.booking-steps { display: flex; gap: 0; margin-bottom: 40px; }
.booking-step { flex: 1; display: flex; flex-direction: column; align-items: center; position: relative; }
.booking-step::after { content: ''; position: absolute; top: 16px; left: 50%; width: 100%; height: 2px; background: var(--line); z-index: 0; }
.booking-step:last-child::after { display: none; }
.step-circle { width: 32px; height: 32px; border-radius: 50%; background: var(--line); color: var(--muted); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; position: relative; z-index: 1; }
.booking-step.active .step-circle { background: var(--teal); color: #fff; }
.booking-step.done .step-circle { background: var(--teal-dark); color: #fff; }
.step-label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-top: 7px; }
.booking-step.active .step-label { color: var(--teal); }
.booking-form-section { margin-bottom: 36px; }
.booking-form-section h3 { font-size: 18px; margin-bottom: 22px; padding-bottom: 14px; border-bottom: 2px solid var(--soft); }

.booking-sidebar { position: sticky; top: 120px; }
.booking-summary-card { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 32px; margin-bottom: 16px; }
.booking-summary-card h3 { color: #fff; font-size: 18px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 14px; }
.summary-row .sr-label { color: rgba(255,255,255,.6); }
.summary-row .sr-value { color: #fff; font-weight: 600; }
.summary-total-row { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; margin-top: 4px; }
.summary-total-row .total-label { font-size: 15px; font-weight: 600; color: rgba(255,255,255,.8); }
.summary-total-row .total-amount { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--gold); }
.booking-policy-note { background: var(--soft); border-radius: var(--radius); padding: 16px; border: 1px solid var(--line); font-size: 13px; color: var(--muted); line-height: 1.6; }
.booking-policy-note strong { color: var(--ink-mid); }

/* ================================================
   GALLERY
   ================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}
.gallery-item { overflow: hidden; border-radius: var(--radius); cursor: pointer; position: relative; }
.gallery-item.wide  { grid-column: span 2; }
.gallery-item.tall  { grid-row: span 2; }
.gallery-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 44px; transition: transform .4s ease; }
.gallery-item:hover .gallery-placeholder { transform: scale(1.04); }
.gp-exterior  { background: linear-gradient(135deg, #a8d5d3, #6db8b4); }
.gp-room1     { background: linear-gradient(135deg, #d4eae9, #a8d5d3); }
.gp-room2     { background: linear-gradient(135deg, #dde8d4, #b8d4a8); }
.gp-dining    { background: linear-gradient(135deg, #e8d9c4, #d4bc96); }
.gp-bar       { background: linear-gradient(135deg, #c4d4e8, #96b4d4); }
.gp-garden    { background: linear-gradient(135deg, #d4e8c4, #a8d496); }
.gp-family    { background: linear-gradient(135deg, #e8e4d4, #d4cca8); }
.gp-bathroom  { background: linear-gradient(135deg, #e8d4d4, #d4a8a8); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(23,34,38,0); display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.gallery-item:hover .gallery-overlay { background: rgba(23,34,38,.2); }
.gallery-coming { text-align: center; }
.gallery-coming p { font-size: 13px; font-weight: 600; color: var(--muted); }

/* ================================================
   POLICIES PAGE
   ================================================ */
.policy-layout { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; }
.policy-nav { position: sticky; top: 128px; background: var(--soft); border-radius: var(--radius-lg); padding: 20px; border: 1px solid var(--line); }
.policy-nav h4 { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .10em; color: var(--muted); margin-bottom: 12px; }
.policy-nav a { display: block; font-size: 13px; font-weight: 500; color: var(--ink-mid); padding: 7px 10px; border-radius: var(--radius-sm); margin-bottom: 2px; transition: all var(--transition); border-left: 2px solid transparent; }
.policy-nav a:hover { background: var(--paper); color: var(--teal); border-left-color: var(--teal); }
.policy-content h2 { font-size: 24px; margin-bottom: 14px; padding-top: 44px; border-top: 1px solid var(--line); margin-top: 44px; color: var(--teal); }
.policy-content h2:first-of-type { padding-top: 0; border-top: none; margin-top: 0; }
.policy-content p { font-size: 15px; color: var(--ink-mid); line-height: 1.85; margin-bottom: 16px; }
.policy-content ul { padding-left: 20px; margin-bottom: 18px; }
.policy-content ul li { list-style: disc; font-size: 15px; color: var(--ink-mid); margin-bottom: 10px; line-height: 1.75; }
.policy-highlight { background: var(--teal-light); border-left: 4px solid var(--teal); border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 20px; margin: 20px 0; }
.policy-highlight p { color: var(--ink-mid); margin: 0; font-weight: 500; }

/* ================================================
   FOOTER
   ================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); }
.footer-top {
  padding: 60px 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand .brand-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.75; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.8);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; transition: background var(--transition);
}
.social-btn:hover { background: var(--teal); color: #fff; }
.footer-col h5 { color: #fff; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 14px; color: rgba(255,255,255,.65); }
.footer-contact-row svg { flex-shrink: 0; margin-top: 2px; }
.footer-contact-row a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-contact-row a:hover { color: #fff; }
.footer-bottom {
  padding: 18px 0; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; font-size: 13px; color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ================================================
   UTILITIES
   ================================================ */
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.text-teal  { color: var(--teal); }
.text-gold  { color: var(--gold); }
.text-muted { color: var(--muted); }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-8 { margin-bottom: 32px; }
.view-all-wrap { text-align: center; margin-top: 44px; }
.divider { height: 1px; background: var(--line); margin: 0; }
.info-pill { display: inline-flex; align-items: center; gap: 6px; background: var(--teal-light); color: var(--teal); border-radius: 999px; padding: 6px 14px; font-size: 13px; font-weight: 600; }
.alert-bar { background: var(--gold-light); border: 1px solid rgba(185,135,54,.25); border-radius: var(--radius); padding: 14px 20px; font-size: 14px; color: var(--gold-dark); font-weight: 500; display: flex; align-items: center; gap: 10px; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .footer-top       { grid-template-columns: 1fr 1fr; }
  .about-grid       { gap: 40px; }
  .facilities-grid  { grid-template-columns: repeat(3, 1fr); }
  .attractions-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-layout   { grid-template-columns: 1fr 320px; }
  .contact-layout   { grid-template-columns: 1fr 360px; }
  .rooms-grid-all   { grid-template-columns: repeat(2, 1fr); }
  .policy-layout    { grid-template-columns: 1fr; }
  .policy-nav       { position: static; display: none; }
}

@media (max-width: 768px) {
  .section          { padding: 56px 0; }
  .wrap             { width: calc(100% - 36px); }
  .nav-links, .nav-phone { display: none; }
  .nav-cta          { display: none; }
  .nav-hamburger    { display: flex; }
  .nav-inner        { height: 80px; }
  .nav-logo-img     { height: 64px; }
  .nav-logo-name    { font-size: 15px; }
  .nav-logo-sub     { display: none; }
  .hero-content     { padding: 80px 0 160px; }
  .about-grid       { grid-template-columns: 1fr; }
  .about-img-wrap   { display: block; height: 240px; overflow: hidden; border-radius: var(--radius-lg); margin-bottom: 8px; }
  .about-img-main   { height: 240px; }
  .about-badge      { bottom: -16px; right: -8px; padding: 14px 18px; }
  .rooms-grid-3, .rooms-grid-4 { grid-template-columns: 1fr 1fr; }
  .rooms-grid-all   { grid-template-columns: 1fr 1fr; }
  .booking-bar      { grid-template-columns: 1fr 1fr; }
  .booking-bar .bb-btn { grid-column: 1 / -1; }
  .facilities-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-top       { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout   { grid-template-columns: 1fr; }
  .booking-layout   { grid-template-columns: 1fr; }
  .form-row-2       { grid-template-columns: 1fr; }
  .breakfast-banner { flex-direction: column; padding: 36px 28px; text-align: center; }
  .footer-bottom    { justify-content: center; text-align: center; }
  .about-checks     { grid-template-columns: 1fr; }
  .gallery-grid     { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .booking-sidebar  { position: static; }
  .booking-form-card   { padding: 24px 20px; }
  .contact-form-card   { padding: 28px 20px; }
  .booking-steps    { gap: 0; }
  .step-label       { font-size: 10px; }
}

@media (max-width: 480px) {
  .wrap             { width: calc(100% - 28px); }
  .rooms-grid-3, .rooms-grid-4, .rooms-grid-all { grid-template-columns: 1fr; }
  .booking-bar      { grid-template-columns: 1fr; }
  .attractions-grid { grid-template-columns: 1fr 1fr; }
  .hero h1          { font-size: clamp(32px, 9vw, 48px); }
  .gallery-grid     { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .bb-btn           { padding: 16px; }
  .booking-form-card   { padding: 20px 16px; }
  .contact-form-card   { padding: 24px 16px; }
}

/* Highlights strip */
.highlights-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.highlight-card {
  background: var(--paper); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.highlight-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.highlight-card-head { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.highlight-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; flex-shrink: 0;
}
.highlight-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 3px; }
.highlight-title { font-size: 19px; color: var(--ink); margin: 0; font-family: 'Playfair Display', serif; }
.highlight-desc { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0 0 16px; }
.highlight-badge { display: inline-block; font-size: 11px; font-weight: 600; border-radius: 999px; padding: 5px 12px; }

/* Gold Card banner responsive */
.gold-card-banner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .highlights-strip { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (max-width: 768px) {
  .highlights-strip { grid-template-columns: 1fr; gap: 16px; }
  .highlight-card { padding: 22px; }
  .gold-card-banner { flex-direction: column; text-align: center; align-items: center; }
  .gold-card-banner p { margin-left: auto; margin-right: auto; }
  .about-checks { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .about-checks { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr 1fr; }
}
