/* ============================================================
   Savanna II Hotel — design tokens
   ============================================================ */
:root{
  --savanna-950:#0E1906;
  --savanna-900:#152608;
  --savanna-800:#203A0D;
  --savanna-700:#2E5412;
  --savanna-600:#457D1C;
  --savanna-500:#5CA725;

  --gold-300:#ECDEA2;
  --gold-500:#D8BB40;
  --gold-700:#A18921;

  --sunset-500:#E2703A;
  --sunset-600:#C85A29;

  --ivory-50:#F7F3E8;
  --ivory-100:#EFE8D4;
  --ivory-200:#E4D9BE;

  --ink-900:#0E1B14;

  --font-display:"Fraunces", "Iowan Old Style", serif;
  --font-body:"Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-lg:28px;
  --radius-md:18px;
  --radius-sm:12px;

  --shadow-card: 0 18px 40px -18px rgba(6, 20, 13, 0.55);
  --shadow-soft: 0 10px 24px -14px rgba(6, 20, 13, 0.45);

  --ease: cubic-bezier(.22,.8,.32,1);
}

*, *::before, *::after{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: var(--savanna-900);
  color: var(--ivory-50);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x:hidden;
}
h1,h2,h3{
  font-family: var(--font-display);
  font-weight:600;
  margin:0;
  color: var(--ivory-50);
}
p{ margin:0; }
a{ color:inherit; }
button{ font-family:inherit; }
svg{ display:block; width:100%; height:100%; fill:none; stroke:currentColor; stroke-width:2.2; }

::selection{ background: var(--gold-500); color: var(--savanna-950); }

:focus-visible{
  outline: 2px solid var(--gold-300);
  outline-offset: 3px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

/* ============================================================
   Ambient backdrop — sun glow, palm frond silhouettes, heat shimmer
   ============================================================ */
.backdrop{
  position:fixed; inset:0; z-index:0; overflow:hidden; pointer-events:none;
  background:
    radial-gradient(120% 70% at 50% -10%, var(--savanna-700) 0%, var(--savanna-900) 55%, var(--savanna-950) 100%);
}
.sun-glow{
  position:absolute; top:-12%; right:-10%;
  width:60vmax; height:60vmax;
  background: radial-gradient(circle, rgba(212,169,74,0.28) 0%, rgba(212,169,74,0.08) 40%, transparent 70%);
  filter: blur(2px);
}
.frond-field{ position:absolute; inset:0; width:100%; height:60%; bottom:0; top:auto; opacity:.35; }
.frond-field__fronds path{
  fill:none; stroke: var(--savanna-500); stroke-width:3; stroke-linecap:round; opacity:.5;
}
.shimmer{
  position:absolute; left:0; right:0; bottom:0; height:34%;
  background: linear-gradient(180deg, transparent, rgba(226,112,58,0.10) 60%, rgba(226,112,58,0.16));
  animation: shimmer-move 9s ease-in-out infinite;
}
@keyframes shimmer-move{
  0%,100%{ transform: translateY(0px) scaleY(1); opacity:.85; }
  50%{ transform: translateY(-6px) scaleY(1.04); opacity:1; }
}

/* ============================================================
   App shell / view switching
   ============================================================ */
.app{ position:relative; z-index:1; min-height:100%; max-width:640px; margin:0 auto; padding-bottom: 48px; }

.view{ display:none; padding: 0 20px 20px; animation: view-in .42s var(--ease); }
.view.is-active{ display:block; }
@keyframes view-in{
  from{ opacity:0; transform: translateY(10px); }
  to{ opacity:1; transform:none; }
}

/* ============================================================
   Home / hero
   ============================================================ */
.hero{ padding: 44px 4px 30px; text-align:center; }
.hero__mark{
  width:56px; height:56px; margin:0 auto 18px;
  border-radius: 50%;
  overflow:hidden;
  box-shadow: 0 0 0 1px rgba(212,169,74,.35), var(--shadow-soft);
}
.hero__mark img{ display:block; width:100%; height:100%; }

.eyebrow{
  font-size:12.5px; letter-spacing:.16em; text-transform:uppercase;
  color: var(--gold-300); font-weight:700; margin-bottom:10px;
}
.hero__title{
  font-size: clamp(40px, 11vw, 56px);
  line-height: .96;
  letter-spacing:-0.01em;
  display:flex; flex-direction:column; align-items:center; gap:2px;
}
.hero__title-sub{
  font-size:.36em; font-style:italic; font-weight:500;
  color: var(--gold-300); letter-spacing:.04em; margin-top:2px;
}
.hero__tagline{
  margin:16px auto 0; max-width:34ch;
  color: var(--ivory-200); font-size:15.5px; line-height:1.5;
}

.card-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap:14px;
  margin-top: 8px;
}
.card{
  position:relative;
  display:flex; flex-direction:column; align-items:flex-start; gap:10px;
  text-align:left;
  padding:22px 18px 20px;
  background: linear-gradient(155deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border:1px solid rgba(240,216,155,0.14);
  border-radius: var(--radius-lg);
  color: var(--ivory-50);
  cursor:pointer;
  box-shadow: var(--shadow-card);
  transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.card::after{
  content:"";
  position:absolute; inset:0; border-radius:inherit;
  box-shadow: inset 0 0 0 1px rgba(212,169,74,0);
  transition: box-shadow .28s var(--ease);
  pointer-events:none;
}
.card:hover, .card:focus-visible{
  transform: translateY(-3px);
  border-color: rgba(212,169,74,.5);
  background: linear-gradient(155deg, rgba(212,169,74,0.10), rgba(255,255,255,0.02));
}
.card:hover::after, .card:focus-visible::after{
  box-shadow: inset 0 0 0 1px rgba(212,169,74,.35);
}
.card:active{ transform: translateY(-1px) scale(.99); }

.card__icon{
  width:34px; height:34px; color: var(--gold-500);
  transition: transform .32s var(--ease);
}
.card:hover .card__icon{ transform: translateY(-2px) rotate(-4deg); }
.card__label{
  font-family: var(--font-display); font-size:20px; font-weight:600;
}
.card__hint{
  font-size:12.5px; color: var(--ivory-200); opacity:.75;
}

.home-footer{
  text-align:center; margin-top:34px;
  font-size:12px; letter-spacing:.05em; color: var(--ivory-200); opacity:.55;
}

/* ============================================================
   Sub-header (menu / contacts / website / location views)
   ============================================================ */
.subhead{
  display:flex; align-items:center; gap:12px;
  padding: 22px 0 18px;
}
.subhead--sticky{
  position:sticky; top:0; z-index:5;
  background: linear-gradient(180deg, var(--savanna-900) 78%, transparent);
  margin: 0 -20px; padding-left:20px; padding-right:20px;
  backdrop-filter: blur(6px);
}
.subhead h2{ font-size:24px; flex:1; }
.back, .search-toggle{
  width:38px; height:38px; flex:0 0 auto;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(240,216,155,0.16);
  border-radius:50%;
  color: var(--gold-300);
  cursor:pointer;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.back svg, .search-toggle svg{ width:18px; height:18px; }
.back:hover, .search-toggle:hover{ background: rgba(212,169,74,0.16); transform: translateY(-1px); }

/* ============================================================
   Menu hub picker
   ============================================================ */
.menu-picker{ display:flex; flex-direction:column; gap:12px; }
.menu-picker__option{
  display:grid; grid-template-columns: 1fr auto;
  align-items:center; column-gap:10px; row-gap:2px;
  text-align:left;
  padding:20px 18px;
  background: linear-gradient(155deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border:1px solid rgba(240,216,155,0.14);
  border-radius: var(--radius-md);
  color:var(--ivory-50);
  cursor:pointer;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.menu-picker__option:hover{ border-color: rgba(212,169,74,.5); transform: translateX(2px); }
.menu-picker__title{ font-family: var(--font-display); font-size:19px; font-weight:600; grid-row:1; }
.menu-picker__sub{ font-size:13px; color:var(--ivory-200); opacity:.75; grid-row:2; }
.chev{ width:20px; height:20px; color: var(--gold-500); grid-row: 1 / span 2; }

/* ============================================================
   Search
   ============================================================ */
.search-bar{ padding: 2px 0 14px; }
.search-bar input{
  width:100%; padding:12px 16px;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(240,216,155,0.18);
  border-radius: 999px;
  color: var(--ivory-50);
  font-size:15px; font-family: var(--font-body);
}
.search-bar input::placeholder{ color: rgba(247,243,232,0.45); }
.search-bar input:focus{ outline:none; border-color: var(--gold-500); }

.chip-row{
  display:flex; gap:8px; overflow-x:auto; padding: 4px 0 18px;
  scrollbar-width:none;
}
.chip-row::-webkit-scrollbar{ display:none; }
.chip{
  flex:0 0 auto;
  padding:8px 14px;
  border-radius:999px;
  font-size:12.5px; font-weight:600; letter-spacing:.02em;
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(240,216,155,0.16);
  color: var(--ivory-200);
  cursor:pointer;
  white-space:nowrap;
  transition: all .2s var(--ease);
}
.chip.is-active{
  background: var(--gold-500); color: var(--savanna-950); border-color: var(--gold-500);
}

/* ============================================================
   Menu body — category groups
   ============================================================ */
.menu-group{ margin-bottom: 30px; }
.menu-group__head{
  display:flex; align-items:baseline; gap:10px;
  margin-bottom:6px;
}
.menu-group__title{
  font-family: var(--font-display); font-size:21px; font-weight:600;
  color: var(--gold-300);
}
.menu-group__line{ flex:1; height:1px; background: linear-gradient(90deg, rgba(212,169,74,.5), transparent); }
.menu-group__note{
  font-size:12.5px; color: var(--ivory-200); opacity:.7; margin: 2px 0 14px; line-height:1.5;
  font-style:italic;
}

.menu-item{
  display:flex; justify-content:space-between; gap:14px;
  padding:14px 0;
  border-bottom:1px solid rgba(240,216,155,0.10);
}
.menu-item:last-child{ border-bottom:none; }
.menu-item__main{ flex:1; min-width:0; }
.menu-item__name{ font-weight:700; font-size:15.5px; color: var(--ivory-50); }
.menu-item__desc{ font-size:12.8px; color: var(--ivory-200); opacity:.72; margin-top:3px; line-height:1.45; }
.menu-item__price{
  flex:0 0 auto; font-family: var(--font-display); font-weight:600; font-size:16px;
  color: var(--gold-300); white-space:nowrap; padding-top:1px;
}
.menu-item__price small{ display:block; font-family: var(--font-body); font-weight:600; font-size:10.5px; color: var(--ivory-200); opacity:.6; text-align:right; }

.no-results{ text-align:center; padding:40px 10px; color: var(--ivory-200); opacity:.7; font-size:14px; }

/* ============================================================
   Panels — website / location
   ============================================================ */
.panel{
  background: linear-gradient(155deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border:1px solid rgba(240,216,155,0.14);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align:center;
}
.panel__icon{
  width:48px; height:48px; margin:0 auto 16px; color: var(--gold-500);
}
.panel__title{ font-size:21px; margin-bottom:8px; }
.panel__body{ font-size:14px; color: var(--ivory-200); line-height:1.6; margin-bottom:22px; }

.panel--map{ text-align:left; padding-top:20px; }
.panel--map .panel__title{ margin-top:18px; }
.map-frame{
  border-radius: var(--radius-md); overflow:hidden;
  border:1px solid rgba(240,216,155,0.18);
  aspect-ratio: 4 / 3;
}
.map-frame iframe{ width:100%; height:100%; border:0; filter: saturate(.85) contrast(1.05); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  width:100%; padding:14px 20px; margin-top:10px;
  border-radius:999px; font-weight:700; font-size:14.5px;
  text-decoration:none; cursor:pointer; border:1px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.btn--primary{
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--savanna-950);
}
.btn--primary:hover{ transform: translateY(-1px); }
.btn--ghost{
  background: transparent; border-color: rgba(240,216,155,0.3); color: var(--ivory-100);
}
.btn--ghost:hover{ background: rgba(255,255,255,0.05); }

/* ============================================================
   Contacts
   ============================================================ */
.contact-list{ display:flex; flex-direction:column; gap:12px; }
.contact-row{
  display:flex; align-items:center; gap:14px;
  padding:16px 18px;
  background: linear-gradient(155deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border:1px solid rgba(240,216,155,0.14);
  border-radius: var(--radius-md);
  text-decoration:none; color: var(--ivory-50);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.contact-row:hover{ border-color: rgba(212,169,74,.5); transform: translateX(2px); }
.contact-row__icon{
  width:38px; height:38px; flex:0 0 auto; color: var(--gold-500);
  display:flex; align-items:center; justify-content:center;
  background: rgba(212,169,74,0.10); border-radius:50%; padding:9px;
}
.contact-row__text{ flex:1; min-width:0; }
.contact-row__label{ font-size:11.5px; text-transform:uppercase; letter-spacing:.08em; color: var(--ivory-200); opacity:.65; }
.contact-row__value{ font-family: var(--font-display); font-size:16.5px; font-weight:600; margin-top:2px; word-break:break-word; }
.contact-row__go{ width:16px; height:16px; color: var(--gold-500); opacity:.7; flex:0 0 auto; }

/* ============================================================
   Toast
   ============================================================ */
.toast{
  position:fixed; left:50%; bottom:28px; transform: translate(-50%, 20px);
  background: var(--gold-500); color: var(--savanna-950);
  padding:11px 20px; border-radius:999px; font-weight:700; font-size:13.5px;
  opacity:0; pointer-events:none; z-index:50;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  box-shadow: var(--shadow-card);
}
.toast.is-visible{ opacity:1; transform: translate(-50%, 0); }

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 480px){
  .card{ padding:26px 22px 24px; }
}
@media (min-width: 720px){
  .app{ padding-top: 6px; }
}
