/* Toque Hotel & GN — Ngara, Nairobi */
:root {
  --burgundy: #7a1528;
  --burgundy-deep: #5c0f1d;
  --burgundy-soft: #9a2a3d;
  --gold: #d4a017;
  --gold-soft: #e8c45a;
  --ink: #1a1412;
  --ink-soft: #3d342e;
  --muted: #6b5e54;
  --paper: #faf7f4;
  --paper-2: #f0ebe4;
  --line: rgba(122, 21, 40, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(26, 20, 18, 0.12);
  --radius: 2px;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Sora", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul { list-style: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.container { width: min(1120px, calc(100% - 2.5rem)); margin-inline: auto; }
.container-wide { width: min(1280px, calc(100% - 2rem)); margin-inline: auto; }

/* Atmosphere */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(122, 21, 40, 0.06), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(212, 160, 23, 0.05), transparent 45%);
}

/* Nav */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(250, 247, 244, 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.28rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--burgundy); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.1rem;
  background: var(--burgundy);
  color: var(--white) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.14em !important;
  transition: background 0.25s, transform 0.25s;
}
.nav-cta:hover { background: var(--burgundy-deep); transform: translateY(-1px); }
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  position: relative;
}
.menu-toggle span {
  position: absolute; left: 12px; right: 12px; height: 1.5px;
  background: var(--ink); transition: 0.25s;
}
.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 27px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.55rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--burgundy); color: var(--white); }
.btn-primary:hover { background: var(--burgundy-deep); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-soft); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.55);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border: 1px solid var(--burgundy);
}
.btn-outline:hover { background: var(--burgundy); color: #fff; }

/* Hero — full bleed */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(26,20,18,0.25) 0%, rgba(26,20,18,0.15) 35%, rgba(26,20,18,0.78) 100%),
    linear-gradient(90deg, rgba(92,15,29,0.45) 0%, transparent 55%);
}
.hero-content {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) 0 4.5rem;
}
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 12vw, 7.5rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 0.92;
  margin-bottom: 0.35rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.15s forwards;
}
.hero-brand span {
  display: block;
  font-size: 0.22em;
  letter-spacing: 0.42em;
  font-family: var(--font-body);
  font-weight: 500;
  opacity: 0.85;
  margin-top: 0.85rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  max-width: 22ch;
  line-height: 1.25;
  margin: 1.4rem 0 0.85rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.35s forwards;
}
.hero-lead {
  max-width: 38ch;
  font-size: 1.02rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.5s forwards;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.65s forwards;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.section { padding: 5.5rem 0; position: relative; z-index: 1; }
.section-alt {
  background:
    linear-gradient(180deg, var(--paper-2), var(--paper));
}
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
  margin-bottom: 0.85rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: 16ch;
  margin-bottom: 1rem;
}
.section-copy {
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.02rem;
}
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}
.split-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.split-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(26,20,18,0.35));
}

.feature-list {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.85rem;
}
.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.feature-list li::before {
  content: "";
  width: 8px; height: 8px;
  margin-top: 0.45rem;
  flex-shrink: 0;
  background: var(--gold);
}

/* Rooms */
.rooms-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.room {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.room:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.room-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--paper-2);
}
.room-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.room:hover .room-media img { transform: scale(1.05); }
.room-body { padding: 1.25rem 1.2rem 1.4rem; }
.room-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.room-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
}
.room-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.room-price strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--burgundy);
}
.room-price span { font-size: 0.8rem; color: var(--muted); }
.room .btn { width: 100%; }

/* Why / location strip */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pillar {
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}
.pillar p { color: var(--muted); font-size: 0.95rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 0.75rem;
}
.gallery-grid a {
  overflow: hidden;
  position: relative;
  background: var(--paper-2);
}
.gallery-grid a:first-child { grid-row: span 2; }
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-grid a:hover img { transform: scale(1.06); }

/* Booking */
.booking {
  background: var(--burgundy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: "";
  position: absolute;
  inset: -20% 40% auto -10%;
  height: 70%;
  background: radial-gradient(circle, rgba(212,160,23,0.18), transparent 65%);
  pointer-events: none;
}
.booking-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  position: relative;
}
.booking h2 { color: #fff; max-width: 12ch; }
.booking .section-copy { color: rgba(255,255,255,0.78); }
.contact-bits {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.9rem;
}
.contact-bits a, .contact-bits p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}
.contact-bits strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.book-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 1.6rem;
  display: grid;
  gap: 0.85rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.field label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: rgba(255,255,255,0.7);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 1px solid var(--gold);
  border-color: var(--gold);
}
.field select option { color: #111; }
.field textarea { min-height: 96px; resize: vertical; }
.form-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

/* SEO / FAQ */
.faq { display: grid; gap: 0.75rem; margin-top: 2rem; }
.faq details {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 1.1rem 1.2rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--burgundy); font-size: 1.2rem; }
.faq details[open] summary::after { content: "–"; }
.faq p {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Map */
.map-wrap {
  margin-top: 2rem;
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 320px;
  background: var(--paper-2);
}
.map-wrap iframe { width: 100%; height: 360px; border: 0; filter: grayscale(0.15) contrast(1.05); }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: 3.5rem 0 2rem;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin-top: 1rem; max-width: 34ch; font-size: 0.92rem; }
.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.55rem;
  color: rgba(255,255,255,0.75);
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
}

/* Floating WA */
.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* SEO landing extras */
.seo-hero-compact {
  min-height: 70svh;
}
.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.keyword-cloud span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
}

@media (max-width: 960px) {
  .split, .booking-grid, .footer-grid { grid-template-columns: 1fr; }
  .room-grid { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr; gap: 0; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .gallery-grid a:first-child { grid-row: span 1; grid-column: span 2; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    background: rgba(250,247,244,0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    gap: 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s var(--ease);
  }
  .nav-links.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 0.95rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-cta { margin-top: 0.75rem; justify-content: center; }
  .menu-toggle { display: block; }
  .room-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content { padding-bottom: 3rem; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .gallery-grid a, .gallery-grid a:first-child {
    grid-column: auto;
    aspect-ratio: 4/3;
  }
}
