/* ===========================================================================
   RWERU HOTELS — marketing site
   Palette: deep teal (#0f3d3e) + warm gold (#c9a14a) on warm off-white.
   No external assets/fonts — fast first paint, strong Lighthouse/SEO.
   =========================================================================== */

:root {
  --teal: #0f3d3e;
  --teal-700: #14514f;
  --teal-50: #eef5f3;
  --gold: #c9a14a;
  --gold-600: #b08a36;
  --ink: #1d2524;
  --muted: #5c6b69;
  --bg: #fbfaf7;
  --card: #ffffff;
  --line: #e7e3da;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(15, 61, 62, 0.08);
  --shadow-lg: 0 16px 48px rgba(15, 61, 62, 0.14);
  --maxw: 1140px;
  --header-h: 68px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5rem; letter-spacing: -0.015em; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.muted { color: var(--muted); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 760px; }

.ic { width: 1.1em; height: 1.1em; fill: none; flex: none; vertical-align: -0.15em; }
.ic-lg { width: 2rem; height: 2rem; color: var(--gold-600); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 700; font-size: 1rem; line-height: 1;
  padding: .8rem 1.4rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .15s ease, box-shadow .15s ease, color .15s; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 1rem 1.9rem; font-size: 1.06rem; }
.btn-primary { background: var(--gold); color: #2a2208; box-shadow: 0 6px 18px rgba(201,161,74,.35); }
.btn-primary:hover { background: var(--gold-600); }
.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.22); }
.btn-light { background: #fff; color: var(--teal); }
.btn-light:hover { background: #f2efe7; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,247,.86); backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 1.5rem; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 800; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center;
  background: var(--teal); color: var(--gold); font-weight: 900; font-size: 1.2rem;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; font-size: 1.05rem; letter-spacing: .04em; }
.brand-sub { font-size: .62rem; letter-spacing: .34em; color: var(--gold-600); font-weight: 700; }
.nav-links { display: flex; gap: 1.4rem; margin-left: auto; font-weight: 600; font-size: .96rem; }
.nav-links a { color: var(--ink); padding: .4rem 0; border-bottom: 2px solid transparent; }
.nav-links a:hover { color: var(--teal); border-color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: .9rem; }

.lang-toggle { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: #fff; }
.lang-toggle button {
  border: 0; background: transparent; font-weight: 700; font-size: .82rem; color: var(--muted);
  padding: .4rem .7rem; cursor: pointer;
}
.lang-toggle button.is-active { background: var(--teal); color: #fff; }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-burger span { width: 24px; height: 2.5px; background: var(--teal); border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  /* Dark teal overlay (heavier on the left, where the headline sits) over the
     night-tower photo — keeps white text legible while showing the building. */
  background:
    linear-gradient(105deg, rgba(8,32,33,.94) 0%, rgba(10,40,40,.74) 46%, rgba(12,51,52,.5) 100%),
    url(/assets/hero.jpg) center / cover no-repeat;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .12;
}
/* Vertical padding only — horizontal gutter comes from .container so the
   headline never touches the screen edge on mobile. */
.hero-inner { position: relative; z-index: 1; padding-top: clamp(3.5rem, 9vw, 7rem); padding-bottom: clamp(3rem, 7vw, 5.5rem); max-width: 860px; }
.eyebrow { text-transform: uppercase; letter-spacing: .22em; font-size: .8rem; font-weight: 700; color: var(--gold); margin-bottom: 1rem; }
.hero-sub { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: rgba(255,255,255,.9); max-width: 620px; margin: 1.2rem 0 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; padding: 0; margin: 0; font-weight: 600; font-size: .95rem; }
.hero-trust li { display: inline-flex; align-items: center; gap: .55rem; color: rgba(255,255,255,.95); }
.hero-trust .ic { color: var(--gold); width: 1.25rem; height: 1.25rem; }

/* ---------- Sections ---------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-tint { background: var(--teal-50); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ---------- Hotels ---------- */
.hotel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.hotel-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: transform .15s, box-shadow .15s;
}
.hotel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hotel-photo { position: relative; height: 220px; }
.photo-mabibo { background: #0f3d3e url(/assets/mabibo.jpg) center / cover no-repeat; }
.photo-kyerwa { background: #123f52 url(/assets/kyerwa-plaza.jpg) center / cover no-repeat; }
/* Darken the top of the photo so the location badge stays readable, with a
   touch of depth at the bottom. */
.hotel-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.32) 0%, rgba(0,0,0,0) 32%, rgba(0,0,0,.14) 100%);
}
.hotel-place {
  position: absolute; left: 14px; top: 14px; z-index: 1;
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(0,0,0,.32); color: #fff; font-weight: 700; font-size: .85rem;
  padding: .35rem .7rem; border-radius: 999px; backdrop-filter: blur(4px);
}
.hotel-place .ic { color: var(--gold); }
.hotel-body { padding: 1.4rem 1.5rem 1.5rem; }
.hotel-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.1rem; }
.price { font-size: 1.35rem; font-weight: 800; color: var(--teal); }
.price small { font-size: .72rem; font-weight: 600; color: var(--muted); }
.price small:first-child { margin-right: .25rem; }

/* ---------- Features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.feature { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.feature h3 { margin-top: .8rem; }
.feature p { color: var(--muted); margin: 0; font-size: .96rem; }

/* ---------- Rooms ---------- */
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; align-items: start; }
.room-card { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.5rem; box-shadow: var(--shadow); }
.room-card--featured { border-color: var(--gold); box-shadow: var(--shadow-lg); }
.room-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #2a2208; font-weight: 800; font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; padding: .35rem .8rem; border-radius: 999px; white-space: nowrap; }
.room-price { font-size: 1.6rem; font-weight: 800; color: var(--teal); margin: .2rem 0 .6rem; }
.room-price small { font-size: .8rem; font-weight: 600; color: var(--muted); }
.room-feats { list-style: none; padding: 0; margin: 0 0 1.3rem; }
.room-feats li { display: flex; align-items: center; gap: .6rem; padding: .35rem 0; color: var(--ink); font-size: .95rem; border-bottom: 1px dashed var(--line); }
.room-feats li:last-child { border-bottom: 0; }
.room-feats .ic { color: var(--gold-600); }
.room-card .btn { width: 100%; }
.rooms-note { text-align: center; margin-top: 1.8rem; }
.room-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2.2rem; }
.room-gallery img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }

/* ---------- Stats ---------- */
.stats { background: var(--teal); color: #fff; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 2.6rem 20px; text-align: center; }
.stat-num { display: block; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--gold); }
.stat-lbl { color: rgba(255,255,255,.85); font-size: .95rem; }

/* ---------- FAQ ---------- */
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 12px; margin-bottom: .8rem; box-shadow: var(--shadow); }
.faq summary { cursor: pointer; font-weight: 700; padding: 1.05rem 1.3rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--gold-600); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 0; padding: 0 1.3rem 1.2rem; color: var(--muted); }

/* ---------- Final CTA ---------- */
.cta-band { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-700) 100%); color: #fff; }
.cta-band-inner { text-align: center; padding: clamp(3rem, 7vw, 4.5rem) 20px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.88); font-size: 1.1rem; margin-bottom: 1.8rem; }

/* ---------- Footer ---------- */
.site-footer { background: #0b2c2d; color: rgba(255,255,255,.82); padding-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.4rem; }
.site-footer .brand-mark { background: var(--gold); color: var(--teal); }
.site-footer .brand-text { color: #fff; }
.footer-brand p { margin-top: .9rem; max-width: 280px; color: rgba(255,255,255,.6); }
.footer-col h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .9rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .6rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bar { border-top: 1px solid rgba(255,255,255,.12); padding: 1.2rem 20px; font-size: .88rem; color: rgba(255,255,255,.55); }

/* ---------- Sticky mobile book ---------- */
.mobile-book { display: none; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60; box-shadow: var(--shadow-lg); }

/* ---------- Responsive ----------
   Breakpoints: ≤1024 small laptop / tablet landscape · ≤900 tablet ·
   ≤820 switch to mobile nav · ≤760 tablet portrait grids · ≤620 large phone ·
   ≤480 phone. Layout is grid/flex + clamp() type, so it scales fluidly between
   these; the queries just reflow the multi-column blocks. */

/* Small laptops / tablet landscape */
@media (max-width: 1024px) {
  :root { --maxw: 960px; }
  .room-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablets */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Tablet portrait and down — collapse the desktop nav into the burger menu
   (the full nav + CTA would crowd the bar below ~820px). */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line); padding: .5rem 20px 1rem;
  }
  .nav-links.open a { padding: .85rem 0; border-bottom: 1px solid var(--line); }
  .nav-actions .btn-primary { display: none; }
  .nav-burger { display: flex; margin-left: auto; }
  .mobile-book { display: flex; }
  body { padding-bottom: 76px; }
}

/* Tablet portrait grids */
@media (max-width: 760px) {
  .hotel-grid { grid-template-columns: 1fr; }
  .room-gallery { grid-template-columns: 1fr; }
  .room-gallery img { height: 230px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
}

/* Large phones */
@media (max-width: 620px) {
  .room-grid { grid-template-columns: 1fr; }
}

/* Phones */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav { gap: .75rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .hotel-foot { flex-direction: column; align-items: stretch; gap: .9rem; }
  .hotel-foot .btn { width: 100%; }
  .room-gallery img { height: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
