/* =================================================================
   GAZZANIA BOUTIQUE HOTEL — WARM IVORY LUXURY
   Fonts: Cormorant Garamond (display) + Jost (body)
   Palette: Warm Ivory · Charcoal · Rich Gold · Sage
   ================================================================= */

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

:root {
  --ivory:      #FAF8F4;
  --ivory-2:    #F3EFE7;
  --ivory-3:    #E8E1D5;
  --ivory-4:    #D9CEC0;
  --cream:      #FFFDF9;
  --charcoal:   #2A2420;
  --charcoal-2: #3D3530;
  --charcoal-3: #574F49;
  --grey:       #8A7F78;
  --grey-lt:    #B5AFA9;
  --gold:       #B8872A;
  --gold-lt:    #D4A84E;
  --gold-pale:  #EDD9A8;
  --gold-wash:  rgba(184,135,42,0.08);
  --white:      #FFFFFF;
  --border:     rgba(90,70,50,0.12);
  --border-gold:rgba(184,135,42,0.2);

  --font-disp: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur:       0.35s;
  --shadow-xs: 0 1px 4px rgba(42,36,32,0.06);
  --shadow-sm: 0 4px 16px rgba(42,36,32,0.08);
  --shadow-md: 0 12px 40px rgba(42,36,32,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Utilities ─────────────────────────────────────────────────── */
.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.disp-title {
  font-family: var(--font-disp);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.disp-title em { font-style: italic; color: var(--gold); }

.gold-line { width: 40px; height: 1px; background: var(--gold-lt); margin-block: 22px; }
.gold-line.c { margin-inline: auto; }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.btn-gold {
  padding: 14px 36px;
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
}
.btn-gold:hover { background: transparent; color: var(--gold); }

.btn-outline-gold {
  padding: 13px 34px;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

.btn-dark {
  padding: 14px 36px;
  background: var(--charcoal);
  color: var(--white);
  border: 1.5px solid var(--charcoal);
}
.btn-dark:hover { background: transparent; color: var(--charcoal); }

.btn-outline-dark {
  padding: 13px 34px;
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid rgba(42,36,32,0.3);
}
.btn-outline-dark:hover { border-color: var(--charcoal); }

/* ── Topbar ─────────────────────────────────────────────────────── */
.topbar {
  background: var(--charcoal);
  padding: 9px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-contact {
  display: flex;
  gap: 28px;
}
.topbar-contact a, .topbar-contact span {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color var(--dur);
}
.topbar-contact a:hover { color: var(--gold-lt); }
.topbar-contact i { color: var(--gold-lt); font-size: 10px; }
.topbar-social { display: flex; gap: 10px; }
.topbar-social a {
  width: 26px; height: 26px;
  border: 1px solid rgba(255,255,255,0.15);
  display: grid; place-items: center;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  transition: all var(--dur);
}
.topbar-social a:hover { color: var(--gold-lt); border-color: var(--gold-lt); }

/* ── Header / Nav ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,244,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(42,36,32,0.08); }

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

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--font-disp);
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: 0.02em;
}
.logo-tag {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-3);
  position: relative;
  transition: color var(--dur);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--dur) var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--charcoal);
  transition: all var(--dur);
}

/* ── HERO — Clean split, no overlay fades ───────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 52% 48%;
  height: calc(100svh - 82px);
  min-height: 560px;
  max-height: 900px;
  overflow: hidden;
}

/* Content panel — warm ivory */
.hero-content {
  background: var(--ivory-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px,7vw,96px) clamp(32px,6vw,80px);
  position: relative;
  overflow: hidden;
}
/* Big decorative background letter */
.hero-bg-letter {
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: var(--font-disp);
  font-size: clamp(200px,25vw,340px);
  font-weight: 300;
  font-style: italic;
  color: rgba(184,135,42,0.055);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.hero-eyebrow { margin-bottom: 24px; animation: fadeUp 0.9s var(--ease) 0.1s both; }
.hero-title {
  font-family: var(--font-disp);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 28px;
  animation: fadeUp 0.9s var(--ease) 0.2s both;
}
.hero-title .italic { font-style: italic; color: var(--gold); display: block; }
.hero-title .thin { font-weight: 300; color: var(--charcoal-3); display: block; }

.hero-desc {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 40px;
  animation: fadeUp 0.9s var(--ease) 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-bottom: 44px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  animation: fadeUp 0.9s var(--ease) 0.4s both;
}
.hero-stat {
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.hero-stat:first-child { padding-left: 0; text-align: left; }
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
  display: block;
  font-family: var(--font-disp);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 3px;
}
.hero-stat span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-lt);
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s var(--ease) 0.5s both;
}

/* Photo panel — pure image, no fade */
.hero-photo {
  position: relative;
  overflow: hidden;
}
.hero-photo img {
  height: 100%;
  animation: heroZoom 12s ease-out both;
}
/* Location badge over photo */
.hero-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.hero-badge i { color: var(--gold); font-size: 12px; }

/* ── Inner page hero — image left, text right, no fade ──────────── */
.page-hero {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 340px;
  overflow: hidden;
}
.page-hero-img {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.page-hero-img img { height: 100%; }
/* Only a very subtle warm gradient on right edge of photo for blending */
.page-hero-img::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--ivory-2));
}
.page-hero-content {
  background: var(--ivory-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px clamp(32px,6vw,72px);
}
.page-hero-content h1 {
  font-family: var(--font-disp);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--charcoal);
  margin-block: 16px 18px;
}
.page-hero-content h1 em { font-style: italic; color: var(--gold); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--grey);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb-sep { color: var(--border); }

/* ── Booking bar ────────────────────────────────────────────────── */
.booking-bar {
  background: var(--charcoal);
  padding: 32px 0;
}
.booking-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  gap: 0;
  align-items: end;
}
.bf {
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.bf:first-child { padding-left: 0; }
.bf label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 10px;
}
.bf input, .bf select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 8px 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--dur);
}
.bf input::placeholder { color: rgba(255,255,255,0.3); }
.bf select { cursor: pointer; color: rgba(255,255,255,0.7); }
.bf select option { background: var(--charcoal); color: #fff; }
.bf input:focus, .bf select:focus { border-bottom-color: var(--gold-lt); }
.bf-btn { padding-left: 24px; }
.booking-note {
  margin-top: 14px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}
.booking-note i { color: var(--gold-lt); }

/* ── About / Welcome ────────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.about-images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  background: var(--ivory-3);
  overflow: hidden;
}
.about-img-main { grid-row: 1 / 3; overflow: hidden; }
.about-img-main img { height: 100%; }
.about-img-a, .about-img-b { overflow: hidden; }
.about-img-a img, .about-img-b img { height: 100%; }

.about-content {
  background: var(--white);
  padding: clamp(48px,7vw,88px) clamp(32px,6vw,72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content .eyebrow { margin-bottom: 18px; }
.about-title {
  font-family: var(--font-disp);
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 22px;
}
.about-title em { font-style: italic; color: var(--gold); }
.about-body {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  margin: 32px 0 36px;
}
.about-stat {
  background: var(--white);
  padding: 20px 0;
  text-align: center;
}
.about-stat strong {
  display: block;
  font-family: var(--font-disp);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-lt);
}

/* ── Room cards ─────────────────────────────────────────────────── */
.rooms-section { padding: clamp(60px,9vw,110px) 0; background: var(--ivory); }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 24px;
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.room-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--dur), transform var(--dur);
  box-shadow: var(--shadow-xs);
}
.room-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.room-card.featured { border-color: var(--gold-lt); }

.room-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.room-card-img img { height: 100%; transition: transform 0.65s var(--ease); }
.room-card:hover .room-card-img img { transform: scale(1.05); }

.room-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--white);
  color: var(--charcoal);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  box-shadow: var(--shadow-xs);
}
.room-badge.gold { background: var(--gold); color: var(--white); }

.room-card-body { padding: 26px 28px 30px; }
.room-type-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.room-card-body h3 {
  font-family: var(--font-disp);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.room-price {
  font-family: var(--font-disp);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 14px;
}
.room-price sub {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--grey);
}
.room-card-body p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 18px;
}
.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.room-tags span {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-3);
  padding: 4px 10px;
  background: var(--ivory);
  border: 1px solid var(--border);
}
.room-tags i { color: var(--gold); margin-right: 4px; font-size: 10px; }
.room-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap var(--dur);
}
.room-link:hover { gap: 12px; }

/* ── Services ───────────────────────────────────────────────────── */
.services { padding: clamp(60px,9vw,110px) 0; background: var(--ivory-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  padding: 36px 30px;
  transition: background var(--dur);
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--ivory); }
.service-num {
  font-family: var(--font-disp);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--ivory-3);
  line-height: 1;
  margin-bottom: 20px;
}
.service-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 18px;
  transition: border-color var(--dur), background var(--dur);
}
.service-card:hover .service-icon { border-color: var(--gold-pale); background: var(--gold-wash); }
.service-card h3 {
  font-family: var(--font-disp);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.service-card p { font-size: 13px; color: var(--grey); line-height: 1.75; margin-bottom: 18px; }
.service-link {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap var(--dur);
}
.service-link:hover { gap: 11px; }

/* ── Full photo banner (no dark overlay — warm tint only) ────────── */
.photo-banner {
  position: relative;
  height: 460px;
  overflow: hidden;
}
.photo-banner img { height: 100%; }
/* Very subtle warm vignette — NOT a dark grey overlay */
.photo-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(42,36,32,0.28) 100%);
}
.photo-banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 90%;
}
.photo-banner-text blockquote {
  font-family: var(--font-disp);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.35;
  text-shadow: 0 2px 20px rgba(42,36,32,0.4);
}
.photo-banner-text blockquote em {
  font-style: normal;
  color: var(--gold-pale);
}
.photo-banner-text cite {
  display: block;
  margin-top: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-style: normal;
}

/* ── Gallery strip ──────────────────────────────────────────────── */
.gallery-strip { padding: clamp(60px,9vw,100px) 0; background: var(--ivory); }
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 6px;
  margin-top: 40px;
}
.gm { overflow: hidden; cursor: pointer; }
.gm img { height: 100%; transition: transform 0.6s var(--ease); }
.gm:hover img { transform: scale(1.05); }
.gm:nth-child(1) { grid-column: 1/5; grid-row: 1/3; }
.gm:nth-child(2) { grid-column: 5/8; grid-row: 1; }
.gm:nth-child(3) { grid-column: 8/13; grid-row: 1; }
.gm:nth-child(4) { grid-column: 5/9; grid-row: 2; }
.gm:nth-child(5) { grid-column: 9/13; grid-row: 2; }

/* ── Testimonials ───────────────────────────────────────────────── */
.testimonials { padding: clamp(60px,9vw,100px) 0; background: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 56px;
}
.testi-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  padding: 32px 28px;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 18px; right: 24px;
  font-family: var(--font-disp);
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
}
.testi-stars { color: var(--gold); font-size: 11px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text {
  font-family: var(--font-disp);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--charcoal-3);
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 600; color: var(--charcoal); }
.testi-role { font-size: 11px; color: var(--grey-lt); margin-top: 2px; }

/* ── CTA strip ──────────────────────────────────────────────────── */
.cta-strip {
  background: var(--gold);
  padding: 64px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-strip h2 {
  font-family: var(--font-disp);
  font-size: clamp(1.8rem,3.5vw,2.6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
}
.cta-strip p { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 6px; }
.cta-strip p a { color: var(--white); text-decoration: underline; }
.cta-strip .btn-gold {
  background: var(--white);
  color: var(--gold);
  border-color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}
.cta-strip .btn-gold:hover { background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }

/* ── Footer ─────────────────────────────────────────────────────── */
.footer {
  background: var(--charcoal-2);
  padding-top: 72px;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo-name { font-size: 26px; color: var(--ivory-2); display: block; }
.footer-brand .logo-tag { color: var(--gold-lt); margin-bottom: 18px; display: block; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.8; margin-bottom: 22px; max-width: 280px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.12);
  display: grid; place-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  transition: all var(--dur);
}
.footer-social a:hover { color: var(--gold-lt); border-color: var(--gold-lt); }

.footer-col h4 {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a, .footer-col ul span {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color var(--dur);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.footer-col ul a:hover { color: rgba(255,255,255,0.75); }
.footer-col i { color: var(--gold-lt); font-size: 11px; margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: var(--gold-lt); }

/* ── Detail layout (rooms page) ─────────────────────────────────── */
.detail-wrap { padding: clamp(60px,9vw,100px) 0; }
.detail-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,7vw,80px);
  align-items: center;
  margin-bottom: 80px;
}
.detail-pair.flip { direction: rtl; }
.detail-pair.flip > * { direction: ltr; }
.detail-img { overflow: hidden; }
.detail-img img { height: 460px; }
.detail-text .eyebrow { margin-bottom: 14px; }
.detail-text h2 {
  font-family: var(--font-disp);
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.08;
  margin-bottom: 10px;
}
.detail-text .dta-price {
  font-family: var(--font-disp);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 20px;
}
.detail-text .dta-price sub { font-family: var(--font-body); font-size: 11px; color: var(--grey); }
.detail-text p { font-size: 14px; color: var(--grey); line-height: 1.8; margin-bottom: 14px; }
.amenity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0 32px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: var(--charcoal-3);
}
.amenity-item i { color: var(--gold); font-size: 12px; width: 14px; }

/* ── Conf cards ─────────────────────────────────────────────────── */
.conf-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 0;
}
.conf-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--dur), transform var(--dur);
}
.conf-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.conf-card-img { overflow: hidden; height: 210px; }
.conf-card-img img { height: 100%; transition: transform 0.6s var(--ease); }
.conf-card:hover .conf-card-img img { transform: scale(1.04); }
.conf-card-body { padding: 26px 28px 32px; }
.conf-cap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-wash);
  padding: 4px 12px;
  margin-bottom: 12px;
}
.conf-card-body h3 {
  font-family: var(--font-disp);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.conf-card-body p { font-size: 13px; color: var(--grey); line-height: 1.75; margin-bottom: 18px; }

/* ── Gallery page ───────────────────────────────────────────────── */
.gallery-grid-page {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 6px;
}
.gp { overflow: hidden; cursor: pointer; }
.gp img { height: 270px; transition: transform 0.55s var(--ease); }
.gp:hover img { transform: scale(1.05); }
.gp.tall img { height: 546px; }

/* ── Contact ────────────────────────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: start;
}
.contact-info-box {
  background: var(--ivory-2);
  border: 1px solid var(--border);
  padding: 36px 30px;
}
.contact-info-box h3 {
  font-family: var(--font-disp);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.ci-row { display: flex; gap: 14px; margin-bottom: 22px; }
.ci-icon {
  width: 38px; height: 38px;
  background: var(--gold-wash);
  border: 1px solid var(--border-gold);
  display: grid; place-items: center;
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}
.ci-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.ci-val { font-size: 13px; color: var(--grey); line-height: 1.7; }
.ci-val a { color: var(--charcoal-3); transition: color var(--dur); }
.ci-val a:hover { color: var(--gold); }

.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cf { display: flex; flex-direction: column; gap: 8px; }
.cf.full { grid-column: 1/-1; }
.cf label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal-3);
}
.cf input, .cf select, .cf textarea {
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--charcoal);
  padding: 10px 0;
  outline: none;
  transition: border-color var(--dur);
}
.cf input:focus, .cf select:focus, .cf textarea:focus { border-bottom-color: var(--gold); }
.cf input::placeholder, .cf textarea::placeholder { color: var(--grey-lt); }
.cf textarea { height: 120px; resize: vertical; }
.map-box { overflow: hidden; border: 1px solid var(--border); margin-bottom: 52px; }
.map-box iframe { display: block; width: 100%; height: 360px; border: 0; }

/* ── BnB extras ─────────────────────────────────────────────────── */
.bnb-intro { max-width: 620px; margin: 0 auto 64px; text-align: center; }
.bnb-intro p { font-size: 15px; color: var(--grey); line-height: 1.8; }
.meal-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-top: 64px; }
.meal-row img { height: 280px; }

/* ── Scroll reveal ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Animations ─────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-masonry { grid-template-rows: repeat(2,180px); }
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; max-height: none; height: auto; }
  .hero-photo { display: none; }
  .hero-content { min-height: 88svh; }
  .about { grid-template-columns: 1fr; }
  .about-images { min-height: 300px; }
  .page-hero { grid-template-columns: 1fr; }
  .page-hero-img { display: none; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .detail-pair { grid-template-columns: 1fr; }
  .detail-pair.flip { direction: ltr; }
  .conf-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr 1fr; }
  .bf { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 0 0 16px; }
  .bf-btn { padding-left: 0; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 20px 24px; flex-direction: column; align-items: flex-start; gap: 16px; box-shadow: var(--shadow-sm); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .rooms-grid { grid-template-columns: 1fr; }
  .conf-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid-page { grid-template-columns: 1fr 1fr; }
  .gp.tall img { height: 270px; }
  .booking-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .gallery-masonry { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gm { grid-column: auto !important; grid-row: auto !important; }
  .gm img { height: 160px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .meal-row { grid-template-columns: 1fr; }
}
