/* =========================================================
   PQ Villa — brand stylesheet
   Palette + type follow the PQ Villa brand identity:
   crimson gradient (#ED1C24 → #DA1159), grey #58595B,
   display face "Aqua Grotesque".
   ========================================================= */

@font-face {
  font-family: 'Aqua Grotesque';
  src: url('assets/aqua.woff2') format('woff2'),
       url('assets/aqua.woff') format('woff'),
       url('assets/aqua.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* brand */
  --brand-1: #ed1c24;              /* brand crimson - graphics, icons, large display */
  --brand-2: #da1159;              /* brand magenta */
  --brand-text: #d9121b;           /* small text on light backgrounds (WCAG AA) */
  --brand-on-dark: #ef3037;        /* small text on dark backgrounds (WCAG AA) */
  --brand-grad: linear-gradient(120deg, #e9121b 0%, #da1159 100%);
  --brand-grad-soft: linear-gradient(120deg, rgba(237,28,36,.10) 0%, rgba(218,17,89,.10) 100%);
  --grey: #58595b;

  /* neutrals */
  --ink: #232326;
  --ink-soft: #61616a;
  --dark: #131315;
  --dark-2: #1c1c20;
  --dark-3: #26262b;
  --paper: #ffffff;
  --paper-2: #f7f6f6;
  --paper-3: #efedee;
  --line: rgba(35, 35, 38, 0.12);
  --line-dark: rgba(255, 255, 255, 0.12);

  --shadow: 0 24px 60px rgba(20, 16, 18, 0.14);
  --shadow-soft: 0 12px 34px rgba(20, 16, 18, 0.08);
  --shadow-brand: 0 16px 36px rgba(218, 17, 89, 0.28);

  --display: 'Aqua Grotesque', 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --nav-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 32px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--brand-1); color: #fff; padding: 12px 20px; font-size: 14px;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible { outline: 2px solid var(--brand-2); outline-offset: 3px; }

/* ---------- TYPE ---------- */
.display { font-family: var(--display); font-weight: 400; letter-spacing: 0.01em; }

h1, h2, h3, h4, h5 { margin: 0; color: var(--ink); line-height: 1.15; font-weight: 500; }
h1 { font-size: clamp(46px, 8.4vw, 104px); line-height: 1; }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: 22px; }
h4 { font-size: 20px; }

p { line-height: 1.75; color: var(--ink-soft); font-weight: 300; margin: 0; }

.eyebrow {
  font-family: var(--sans);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 11.5px;
  font-weight: 500;
  margin: 0 0 16px;
  background: linear-gradient(120deg, var(--brand-text) 0%, var(--brand-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section { padding: 118px 0; }
.section-head { max-width: 720px; margin: 0 auto 62px; text-align: center; }
.section-head p { margin-top: 18px; font-size: 17.5px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 34px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  border: 1px solid transparent; border-radius: 999px;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-brand { background: var(--brand-grad); color: #fff; box-shadow: var(--shadow-brand); }
.btn-brand:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(218,17,89,.36); }
.btn-outline { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.6); backdrop-filter: blur(4px); }
.btn-outline:hover { background: rgba(255,255,255,.18); border-color: #fff; transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand-2); color: var(--brand-2); }

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none !important; }
}

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 22px 0; transition: all .4s ease;
}
.nav.solid {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,.07), 0 10px 30px rgba(0,0,0,.05);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: block; line-height: 0; }
.brand img { height: 44px; width: auto; transition: height .4s ease; }
.nav.solid .brand img { height: 38px; }
.brand-dark { display: none; }
.nav.solid .brand-light { display: none; }
.nav.solid .brand-dark { display: block; }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 12.5px; letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(255,255,255,.94); font-weight: 400; position: relative; padding-bottom: 5px;
  transition: color .3s ease;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--brand-grad); transition: right .35s ease;
}
.nav-links a:hover::after { right: 0; }
.nav.solid .nav-links a { color: var(--grey); }
.nav.solid .nav-links a:hover { color: var(--ink); }

.nav-links a.nav-cta {
  background: var(--brand-grad); color: #fff !important; padding: 11px 24px;
  border-radius: 999px; box-shadow: var(--shadow-brand);
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover { transform: translateY(-1px); }

.nav-toggle { display: none; background: none; border: none; width: 30px; height: 22px; position: relative; padding: 0; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ''; position: absolute; left: 0; right: 0; height: 2px; border-radius: 2px;
  background: #fff; transition: all .3s ease;
}
.nav.solid .nav-toggle span, .nav.solid .nav-toggle::before, .nav.solid .nav-toggle::after { background: var(--ink); }
.nav-toggle::before { top: 0; }
.nav-toggle span { top: 10px; }
.nav-toggle::after { top: 20px; }
.nav-toggle.active::before { top: 10px; transform: rotate(45deg); }
.nav-toggle.active span { opacity: 0; }
.nav-toggle.active::after { top: 10px; transform: rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; overflow: hidden; padding: 120px 0 90px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/pq44.jpg');
  background-size: cover; background-position: center 60%;
  transform: scale(1.08); animation: heroZoom 24s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 10%, rgba(218,17,89,.18) 0%, transparent 60%),
    linear-gradient(180deg, rgba(12,12,14,.62) 0%, rgba(12,12,14,.30) 40%, rgba(12,12,14,.82) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 0 24px; }
.hero-mark { width: 62px; height: auto; margin: 0 auto 22px; filter: drop-shadow(0 6px 18px rgba(0,0,0,.4)); }
.hero-content h1 { color: #fff; text-shadow: 0 4px 30px rgba(0,0,0,.35); }
.hero-content .sub {
  font-size: clamp(16px, 1.7vw, 20px); color: rgba(255,255,255,.9);
  margin: 20px auto 36px; max-width: 620px; font-weight: 300; line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  display: flex; justify-content: center; gap: clamp(22px, 5vw, 64px); flex-wrap: wrap;
  margin-top: 54px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.22);
}
.hero-stats li { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hero-stats b { font-family: var(--display); font-size: 30px; font-weight: 400; color: #fff; }
.hero-stats span { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.7); }

.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll .line { display: block; width: 1px; height: 52px; background: rgba(255,255,255,.35); position: relative; overflow: hidden; }
.hero-scroll .line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--brand-1); animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine { 50% { top: 0; } 100% { top: 100%; } }

/* ---------- BOOKING BAR ---------- */
.bookingbar { position: relative; z-index: 20; margin-top: -46px; }
.bb-inner {
  background: #fff; box-shadow: var(--shadow); border-radius: 16px;
  display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 8px; align-items: end;
  padding: 20px 24px;
}
.bb-field { display: flex; flex-direction: column; gap: 6px; padding: 0 16px; border-right: 1px solid var(--line); }
.bb-field:first-child { padding-left: 4px; }
.bb-field label { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--grey); font-weight: 500; }
.bb-field input, .bb-field select {
  border: none; background: transparent; font-family: var(--sans); font-size: 15.5px;
  color: var(--ink); padding: 4px 0; width: 100%;
}
.bb-field input:focus, .bb-field select:focus { outline: none; }
.bb-actions { display: flex; gap: 10px; padding-left: 16px; }
.bb-actions .btn { padding: 15px 26px; }

/* ---------- INTRO ---------- */
.intro { background: var(--paper); padding-top: 96px; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 84px; align-items: center; }
.intro-media { position: relative; }
.intro-media > img { border-radius: 14px; box-shadow: var(--shadow); }
.intro-media .float-img {
  position: absolute; width: 56%; bottom: -46px; right: -42px;
  border: 8px solid #fff; border-radius: 14px; box-shadow: 0 24px 50px rgba(0,0,0,.2);
}
.intro-text h2 { margin-bottom: 20px; }
.intro-text p + p { margin-top: 16px; }
.intro-text p { font-size: 16.5px; }
.intro-facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px 26px;
  margin-top: 38px; padding-top: 32px; border-top: 1px solid var(--line);
}
.fact { display: flex; gap: 13px; align-items: flex-start; }
.fact svg { flex: none; width: 24px; height: 24px; color: var(--brand-1); margin-top: 1px; }
.fact-label { font-size: 14.5px; color: var(--ink); font-weight: 400; line-height: 1.5; }
.intro-cta { margin-top: 34px; }

/* ---------- AMENITIES ---------- */
.amenities { background: var(--dark); color: #fff; }
.amenities h2, .amenities h4 { color: #fff; }
.amenities .section-head p { color: rgba(255,255,255,.66); }
.amenity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.amenity-card {
  background: var(--dark-2); border: 1px solid var(--line-dark); border-radius: 14px;
  padding: 38px 26px; text-align: left; position: relative; overflow: hidden;
  transition: transform .35s ease, border-color .35s ease;
}
.amenity-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0; background: var(--brand-grad-soft);
  transition: opacity .35s ease;
}
.amenity-card:hover { transform: translateY(-5px); border-color: rgba(237,28,36,.45); }
.amenity-card:hover::before { opacity: 1; }
.amenity-card > * { position: relative; }
.amenity-card svg { width: 30px; height: 30px; color: var(--brand-1); margin-bottom: 18px; }
.amenity-card h4 { font-size: 17px; font-weight: 500; margin-bottom: 9px; }
.amenity-card p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.65; }

/* ---------- GALLERY ---------- */
.gallery { background: var(--paper-2); }
.gallery-tabs { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 44px; }
.gtab {
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 20px;
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--grey);
  transition: all .3s ease;
}
.gtab:hover { border-color: var(--brand-2); color: var(--brand-2); }
.gtab.active { background: var(--brand-grad); border-color: transparent; color: #fff; box-shadow: var(--shadow-brand); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 215px; grid-auto-flow: dense; gap: 12px; }
.g-item {
  position: relative; overflow: hidden; cursor: pointer; background: var(--paper-3);
  border: none; padding: 0; border-radius: 12px; display: block;
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.3,1); }
.g-item:hover img { transform: scale(1.07); }
.g-item .g-overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 16px;
  background: linear-gradient(180deg, transparent 50%, rgba(12,12,14,.72) 100%);
  opacity: 0; transition: opacity .35s ease;
}
.g-item:hover .g-overlay, .g-item:focus-visible .g-overlay { opacity: 1; }
.g-overlay span { color: #fff; font-size: 12px; letter-spacing: .09em; text-transform: uppercase; }
.g-item.tall { grid-row: span 2; }
.g-item.wide { grid-column: span 2; }
.g-item.hidden-item { display: none; }

/* ---------- ROOMS ---------- */
.rooms { background: var(--paper); }
.room-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.room-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-soft); transition: transform .4s ease, box-shadow .4s ease;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.room-card .room-img { height: 240px; overflow: hidden; }
.room-card .room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.3,1); }
.room-card:hover .room-img img { transform: scale(1.06); }
.room-body { padding: 26px 26px 28px; }
.room-body h4 { margin-bottom: 9px; }
.room-body p { font-size: 14.5px; }
.room-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.room-meta li {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-2);
  border: 1px solid rgba(218,17,89,.28); border-radius: 999px; padding: 5px 12px;
}

/* ---------- EXPERIENCE ---------- */
.experience { background: var(--paper-2); }
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.exp-card { background: #fff; border-radius: 14px; padding: 40px 32px; box-shadow: var(--shadow-soft); }
.exp-num {
  display: inline-block; font-size: 40px; margin-bottom: 14px;
  background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.exp-card h3 { margin-bottom: 12px; }
.exp-card p { font-size: 15px; }

/* ---------- STAY DETAILS ---------- */
.stay { background: var(--paper); }
.stay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.rate-card {
  border: 1px solid var(--line); border-radius: 16px; padding: 34px 30px; background: #fff;
  display: flex; flex-direction: column;
}
.rate-card.featured {
  border-color: transparent; color: #fff;
  background: linear-gradient(150deg, #e9121b 0%, #da1159 100%);
  box-shadow: var(--shadow-brand);
}
.rate-tag { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--grey); font-weight: 500; }
.rate-card.featured .rate-tag { color: rgba(255,255,255,.85); }
.rate-price { font-size: 34px; margin: 14px 0 6px; color: var(--ink); }
.rate-card.featured .rate-price { color: #fff; }
.rate-note { font-size: 14px; }
.rate-card.featured .rate-note { color: rgba(255,255,255,.82); }
.rate-list { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); display: grid; gap: 11px; }
.rate-card.featured .rate-list { border-color: rgba(255,255,255,.3); }
.rate-list li { font-size: 14.5px; color: var(--ink-soft); display: flex; gap: 10px; align-items: flex-start; }
.rate-list li::before { content: ''; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-1); margin-top: 8px; }
.rate-card.featured .rate-list li { color: rgba(255,255,255,.92); }
.rate-card.featured .rate-list li::before { background: #fff; }
.rate-cta { margin-top: auto; padding-top: 0; background: #fff; color: var(--brand-2); box-shadow: none; margin-top: 26px; }
.rate-cta:hover { background: #fff; color: var(--brand-1); }

.rules {
  margin-top: 34px; display: grid; grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--paper-2);
}
.rule { padding: 22px 18px; text-align: center; border-right: 1px solid var(--line); }
.rule:last-child { border-right: none; }
.rule-k { display: block; font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; }
.rule-v { display: block; font-size: 15.5px; color: var(--ink); font-weight: 400; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--paper-2); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote {
  margin: 0; background: #fff; border-radius: 14px; padding: 34px 30px 30px;
  box-shadow: var(--shadow-soft); position: relative; border-top: 3px solid transparent;
  background-image: linear-gradient(#fff, #fff), var(--brand-grad);
  background-origin: border-box; background-clip: padding-box, border-box;
}
.quote blockquote { margin: 0; font-size: 16.5px; line-height: 1.75; color: var(--ink); font-weight: 300; }
.quote blockquote::before { content: '\201C'; font-family: var(--display); font-size: 40px; color: var(--brand-1); display: block; line-height: .8; margin-bottom: 10px; }
.quote figcaption { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 3px; }
.quote figcaption b { font-size: 14.5px; font-weight: 500; color: var(--ink); }
.quote figcaption span { font-size: 12.5px; color: var(--grey); }

/* ---------- LOCATION ---------- */
.location { background: var(--dark); color: #fff; }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: stretch; }
.location h2 { color: #fff; margin-bottom: 18px; }
.location .loc-lead { color: rgba(255,255,255,.76); font-size: 16.5px; }
.loc-list { margin-top: 32px; display: grid; gap: 0; }
.loc-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--line-dark); font-size: 15px;
  color: rgba(255,255,255,.75);
}
.loc-list li b { color: #fff; font-weight: 400; }
.loc-list li .dist { color: var(--brand-on-dark); font-weight: 500; font-size: 14.5px; }
.loc-addr { margin: 26px 0 24px; color: rgba(255,255,255,.6); font-size: 14.5px; }
.map-frame { position: relative; min-height: 420px; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); background: var(--dark-3); }
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }
.faq-inner { max-width: 900px; }
.faq-list { display: grid; gap: 12px; }
.faq details {
  border: 1px solid var(--line); border-radius: 12px; background: #fff;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.faq details[open] { border-color: rgba(218,17,89,.35); box-shadow: var(--shadow-soft); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 56px 20px 24px; position: relative;
  font-size: 16.5px; color: var(--ink); font-weight: 400;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 24px; top: 50%; width: 11px; height: 11px;
  border-right: 2px solid var(--brand-1); border-bottom: 2px solid var(--brand-1);
  transform: translateY(-70%) rotate(45deg); transition: transform .3s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details p { padding: 0 24px 22px; font-size: 15.5px; }

/* ---------- ENQUIRE ---------- */
.enquire { background: var(--paper-2); }
.enquire-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 64px; }
.enquire-info h2 { margin-bottom: 18px; }
.enquire-info p { font-size: 16.5px; }
.contact-cards { margin-top: 34px; display: grid; gap: 14px; }
.contact-card {
  display: flex; align-items: center; gap: 16px; background: #fff; padding: 18px 20px;
  border: 1px solid var(--line); border-radius: 12px; transition: all .3s ease;
}
.contact-card:hover { border-color: rgba(218,17,89,.4); transform: translateX(3px); box-shadow: var(--shadow-soft); }
.contact-card > svg { width: 22px; height: 22px; color: var(--brand-1); flex: none; }
.contact-card span { display: block; }
.cc-label { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--grey); }
.cc-value { font-size: 16.5px; color: var(--ink); font-weight: 400; margin-top: 3px; }

.enquire-form { background: #fff; padding: 44px; border-radius: 16px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--line); border-radius: 9px; background: var(--paper-2);
  padding: 13px 14px; font-family: var(--sans); font-size: 15.5px; color: var(--ink);
  transition: border-color .3s ease, background .3s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--brand-2); background: #fff;
}
.field input.invalid, .field select.invalid { border-color: var(--brand-1); background: rgba(237,28,36,.05); }
.field textarea { resize: vertical; min-height: 92px; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.form-note { font-size: 13px; color: var(--grey); margin-top: 16px; }
.form-note.error { color: var(--brand-text); }

/* ---------- FOOTER ---------- */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 76px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 56px; padding-bottom: 46px; border-bottom: 1px solid var(--line-dark); }
.footer-logo { height: 46px; width: auto; margin-bottom: 20px; }
.footer p { color: rgba(255,255,255,.55); font-size: 14.5px; max-width: 400px; }
.footer h5 { color: #fff; font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 20px; font-weight: 500; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 14.5px; color: rgba(255,255,255,.6); transition: color .3s ease; }
.footer-links a:hover { color: var(--brand-on-dark); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 13px; color: rgba(255,255,255,.52); flex-wrap: wrap; gap: 10px; }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0; background: rgba(10,10,12,.95); z-index: 1000;
  display: none; align-items: center; justify-content: center; padding: 56px 24px; flex-direction: column; gap: 14px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 80vh; object-fit: contain; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lb-caption { color: rgba(255,255,255,.8); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.25);
  color: #fff; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 22px; line-height: 1; transition: all .3s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--brand-grad); border-color: transparent; }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ---------- FLOATING / MOBILE ACTION ---------- */
.float-book { position: fixed; right: 24px; bottom: 24px; z-index: 400; }
.mobile-bar { display: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .room-grid { grid-template-columns: repeat(2, 1fr); }
  .bb-inner { grid-template-columns: 1fr 1fr; }
  .bb-field { border-right: none; padding: 0 4px; }
  .bb-actions { grid-column: 1 / -1; padding-left: 4px; margin-top: 6px; }
  .bb-actions .btn { flex: 1; }
}

@media (max-width: 980px) {
  .section { padding: 88px 0; }
  .intro-grid, .loc-grid, .enquire-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-media .float-img { position: static; width: 100%; margin-top: 16px; border: none; }
  .exp-grid, .quote-grid, .stay-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .g-item.wide { grid-column: span 2; }
  .rules { grid-template-columns: repeat(3, 1fr); }
  .rule:nth-child(3n) { border-right: none; }
  .rule:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .enquire-form { padding: 32px 24px; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .nav { padding: 16px 0; }
  .brand img, .nav.solid .brand img { height: 34px; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; height: 100dvh; width: 80%; max-width: 340px;
    background: var(--dark); flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 60px 36px; gap: 26px; transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.7,.3,1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a, .nav.solid .nav-links a { color: #fff !important; font-size: 15px; }
  .nav-links a.nav-cta { width: 100%; text-align: center; justify-content: center; }
  .nav-toggle { display: block; z-index: 600; }
  .nav-toggle.active span, .nav-toggle.active::before, .nav-toggle.active::after { background: #fff !important; }

  .hero { padding: 110px 0 120px; }
  .hero-stats { margin-top: 38px; padding-top: 24px; gap: 26px; }
  .hero-stats b { font-size: 24px; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; }
  .hero-scroll { display: none; }

  .bookingbar { margin-top: -30px; }
  .bb-inner { grid-template-columns: 1fr; padding: 18px; border-radius: 14px; }
  .bb-actions { flex-direction: column; }

  .amenity-grid { grid-template-columns: 1fr; }
  .room-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-item.tall { grid-row: span 2; }
  .rules { grid-template-columns: repeat(2, 1fr); }
  .rule { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .rule:nth-child(2n) { border-right: none; }

  .lb-prev { left: 12px; } .lb-next { right: 12px; }
  .lb-close { top: 14px; right: 14px; }

  .float-book { display: none; }
  .mobile-bar {
    display: grid; grid-template-columns: repeat(3, 1fr); position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 450; background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
    border-top: 1px solid var(--line); padding-bottom: env(safe-area-inset-bottom);
  }
  .mb-item {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
    padding: 11px 6px 10px; font-size: 11px; letter-spacing: .07em; text-transform: uppercase; color: var(--grey);
  }
  .mb-item svg { width: 20px; height: 20px; }
  .mb-primary { background: var(--brand-grad); color: #fff; }
  body { padding-bottom: 62px; }
}
