/* Toba Art — coming soon (Jekyll: assets/css/styles.css). */
:root {
  --cream: #f5f0e2;
  --ink: #211d14;
  --muted: #6f6a58;
  --gold: #bd9116;
  --gold-deep: #a37e0e;
  --deep: #0d2f27;
  --lake: #2a7d8c;
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #5c6238; /* khaki backdrop ala Design.jpg */
  color: var(--ink);
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
}

.shell {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  width: min(1180px, 100%);
  min-height: 640px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 34px;
  color: #fbf8ee;
  background: linear-gradient(180deg, #274b63 0%, #3f6b5e 38%, #123b32 62%, #0a2723 100%);
  overflow: hidden;
}

.hero-scene { position: absolute; inset: 0; }
.sun {
  position: absolute; top: 12%; right: 16%;
  width: 74px; height: 74px; border-radius: 50%;
  background: radial-gradient(circle, #ffe9a8 0%, #f3c95c 45%, transparent 70%);
  opacity: .9;
}
.ridge { position: absolute; left: 0; right: 0; bottom: 30%; width: 100%; height: 42%; }
.ridge-back { fill: #2c4a3c; opacity: .95; }
.ridge-front { fill: #16352c; bottom: 24%; }
.lake {
  position: absolute; left: 0; right: 0; bottom: 0; height: 26%;
  background: linear-gradient(180deg, #3f9aa8 0%, #1d5f6e 55%, #0e3a44 100%);
}
.lake::after { /* kilau air */
  content: ""; position: absolute; top: 22%; left: 12%; right: 12%; height: 2px;
  background: rgba(255, 255, 255, .35); filter: blur(1px);
}
.island { position: absolute; bottom: 16%; left: 30%; width: 34%; }
.island ellipse { fill: #4d7a4e; }
.island path { fill: #33542f; }

.pin {
  position: absolute; width: 14px; height: 14px; border-radius: 50% 50% 50% 0;
  background: #fff; transform: rotate(-45deg);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .25);
  animation: pulse 2.4s infinite;
}
.pin-1 { bottom: 34%; left: 46%; }
.pin-2 { bottom: 30%; left: 58%; }
.pin-3 { bottom: 36%; left: 68%; animation-delay: 1.2s; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 255, 255, .25); }
  50% { box-shadow: 0 0 0 9px rgba(255, 255, 255, .08); }
}

.hero-top, .hero-title, .hero-bottom { position: relative; z-index: 1; }
.hero-top { display: flex; justify-content: space-between; align-items: flex-start; }
.brand {
  font-size: 11px; font-weight: 800; letter-spacing: .18em; line-height: 1.5;
  border: 1px solid rgba(255, 255, 255, .8); padding: 8px 10px;
}
.weather { font-size: 13px; border: 1px solid rgba(255, 255, 255, .6); padding: 6px 10px; }

.hero-title h1 {
  font-size: clamp(64px, 9vw, 128px);
  font-weight: 900; letter-spacing: -.02em; line-height: .95;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .35);
}
.hero-title p { margin-top: 14px; max-width: 34ch; font-size: 14px; line-height: 1.6; opacity: .92; }

.hero-bottom { display: flex; align-items: center; gap: 18px; }
.hero-nav { display: flex; gap: 10px; }
.hero-nav button {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .7); background: transparent; color: #fff;
  font-size: 16px; cursor: pointer; transition: background .2s;
}
.hero-nav button:hover { background: rgba(255, 255, 255, .2); }
.hero-spot { flex: 1; min-width: 0; }
.hero-spot strong { display: block; font-size: 15px; }
.hero-spot span { font-size: 12px; opacity: .85; }
.hero-count { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.hero-count i { display: block; width: 44px; height: 1px; background: rgba(255, 255, 255, .6); }

/* ---------- PANEL ---------- */
.panel { background: var(--cream); padding: 26px 32px 0; display: flex; flex-direction: column; }
.panel-top { display: flex; justify-content: space-between; font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.back { color: var(--ink); text-decoration: none; }
.search { color: var(--muted); }

.coords {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid #d8d0b8; margin-top: 18px;
  font-size: 11px; color: var(--muted); text-align: center;
}
.coords span { padding: 8px 4px; }
.coords span + span { border-left: 1px solid #d8d0b8; }

.tag {
  display: inline-block; margin-top: 20px; font-size: 11px; font-weight: 800;
  letter-spacing: .14em; color: #fff; background: var(--gold);
  padding: 4px 12px; border-radius: 3px; align-self: flex-start;
}
.panel h2 { font-size: clamp(30px, 3.4vw, 42px); font-weight: 900; margin-top: 10px; }
.lede { margin-top: 10px; font-size: 13.5px; line-height: 1.7; color: #4c4736; }

.location { margin-top: 14px; border-left: 3px solid var(--gold); padding-left: 12px; font-size: 12.5px; line-height: 1.65; }
.location p:first-child { font-size: 13px; }
.location a { color: var(--gold-deep); font-weight: 700; }

.panel h3 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin: 20px 0 10px; }
.kab-list { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.kab-list button {
  width: 100%; text-align: left; cursor: pointer;
  background: #fff; border: 1px solid #ddd5bc; border-radius: 8px; padding: 8px 10px;
  transition: border-color .2s, transform .2s;
}
.kab-list button:hover { border-color: var(--gold); }
.kab-list button.active { border-color: var(--gold); outline: 2px solid var(--gold); }
.kab-list strong { display: block; font-size: 12px; }
.kab-list span { font-size: 11px; color: var(--muted); }

.soon { margin-top: 6px; }
.soon p { font-size: 12.5px; color: var(--muted); }
#notifyForm { display: flex; gap: 8px; margin-top: 10px; }
#notifyForm input {
  flex: 1; min-width: 0; padding: 11px 12px; font-size: 13px;
  border: 1px solid #cfc6a8; border-radius: 8px; background: #fff;
}
#notifyForm button {
  padding: 11px 16px; font-size: 13px; font-weight: 800; color: #fff;
  background: var(--gold); border: none; border-radius: 8px; cursor: pointer;
}
#notifyForm button:hover { background: var(--gold-deep); }
.form-msg { margin-top: 8px; font-size: 12.5px; min-height: 1.2em; color: #2e6b34; }

.arts {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--gold); margin: 18px -32px 0; padding: 16px 20px;
}
.arts article { color: #fff; padding: 4px 10px; }
.arts article + article { border-left: 1px solid rgba(255, 255, 255, .5); }
.arts strong { display: block; font-size: 13px; }
.arts span { font-size: 11px; opacity: .9; }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .shell { grid-template-columns: 1fr; }
  .hero { min-height: 480px; }
  .kab-list { grid-template-columns: repeat(2, 1fr); }
  .arts { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .arts article + article { border-left: none; }
}
