:root {
  --ink-900: #141311;
  --ink-700: #3f3a33;
  --ink-500: #6b655a;
  --paper: #f8f2e9;
  --paper-2: #f1e8dc;
  --sand: #ead7bf;
  --rust: #b85f2d;
  --forest: #1f5b4d;
  --moss: #6e8d4f;
  --line: rgba(20, 19, 17, 0.16);
  --card: rgba(255, 250, 241, 0.86);
  --shadow-soft: 0 18px 40px rgba(20, 19, 17, 0.08);
  --shadow-lift: 0 24px 52px rgba(20, 19, 17, 0.12);
  --r-md: 16px;
  --r-lg: 24px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 9% 12%, rgba(184, 95, 45, 0.16), transparent 24%),
    radial-gradient(circle at 92% 8%, rgba(31, 91, 77, 0.15), transparent 20%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  overflow-x: hidden;
}

.scene {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(38px);
  opacity: 0.28;
  animation: drift 18s ease-in-out infinite;
}

.blob.one {
  width: 220px;
  height: 220px;
  top: 8%;
  left: -80px;
  background: rgba(184, 95, 45, 0.66);
}

.blob.two {
  width: 300px;
  height: 300px;
  right: -100px;
  bottom: -90px;
  background: rgba(31, 91, 77, 0.56);
  animation-delay: -6s;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 14px 148px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  backdrop-filter: blur(8px);
  background: rgba(248, 242, 233, 0.72);
  border-bottom: 1px solid rgba(20, 19, 17, 0.1);
}

.brand {
  text-decoration: none;
  font-family: "Fraunces", serif;
  font-size: clamp(1.08rem, 3.9vw, 1.35rem);
  font-weight: 700;
  color: #2b241d;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-drawer {
  position: relative;
  display: block;
}

.menu-toggle {
  list-style: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(20, 19, 17, 0.22);
  background: rgba(255, 252, 246, 0.92);
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle::-webkit-details-marker {
  display: none;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #2b241d;
}

.menu-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 220px;
  width: min(280px, calc(100vw - 28px));
  display: grid;
  gap: 6px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(20, 19, 17, 0.14);
  background: rgba(255, 249, 241, 0.97);
  box-shadow: 0 16px 28px rgba(20, 19, 17, 0.16);
}

.menu-panel a {
  text-decoration: none;
  color: var(--ink-900);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 9px 10px;
  border-radius: 8px;
}

.menu-panel a:hover {
  background: rgba(31, 91, 77, 0.1);
}

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink-500);
  font-size: 0.84rem;
  background: rgba(223, 212, 196, 0.55);
  border-top: 1px solid rgba(20, 19, 17, 0.14);
  padding: 8px 14px 14px;
  margin-bottom: calc(74px + env(safe-area-inset-bottom));
}

.site-footer a {
  color: var(--forest);
  text-decoration: none;
  font-weight: 700;
}

.site-footer a:hover {
  text-decoration: underline;
}

.fixed-download-btn {
  position: fixed;
  width: calc(50vw - 18px);
  max-width: 280px;
  bottom: 12px;
  z-index: 40;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fffaf4;
  box-shadow: 0 14px 24px rgba(20, 19, 17, 0.18);
}

.fixed-download-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: 0 0 auto;
}

.fixed-download-android {
  left: 12px;
  background: linear-gradient(135deg, #2f6f48, #4d8a44);
}

.fixed-download-ios {
  right: 12px;
  background: linear-gradient(135deg, #202223, #4d5158);
}

.hero-shell {
  display: grid;
  gap: 12px;
  animation: rise 420ms ease-out both;
}

.shell-panel {
  background: linear-gradient(145deg, rgba(255, 250, 242, 0.88), rgba(237, 226, 209, 0.78));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  border-radius: var(--r-lg);
  padding: 16px;
}

.shell-panel.compact {
  padding: 14px;
}

.kicker {
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 700;
}

.page-title {
  margin: 8px 0 0;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 8vw, 3.1rem);
  line-height: 1.08;
  color: #29231c;
}

.page-copy {
  margin: 10px 0 0;
  color: var(--ink-700);
  line-height: 1.65;
  font-size: 0.98rem;
}

.meta-line {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.inline-link {
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
}

.category-band {
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: rgba(255, 251, 244, 0.86);
  padding: 12px;
}

.section-title {
  margin: 0 0 10px;
  color: var(--ink-500);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(20, 19, 17, 0.22);
  color: var(--ink-900);
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 0.78rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.74);
  transition: transform 180ms ease, box-shadow 220ms ease, background 180ms ease;
}

.category-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(20, 19, 17, 0.08);
}

.category-chip-active {
  background: #2e6256;
  border-color: #2e6256;
  color: #fffaf4;
}

.info-strip {
  margin-top: 10px;
  border-radius: 12px;
  background: rgba(46, 98, 86, 0.1);
  color: var(--ink-700);
  border: 1px solid rgba(46, 98, 86, 0.22);
  padding: 10px;
  font-size: 0.86rem;
}

.media-stage {
  margin-top: 14px;
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 10px;
  box-shadow: var(--shadow-soft);
}

.media-frame {
  background: #dfd6c7;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 5 / 3;
}

.media-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #ebe1d1;
  animation: mediaFade 260ms ease;
}

.media-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--ink-500);
  font-weight: 700;
}

.media-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.media-nav {
  border: 1px solid rgba(20, 19, 17, 0.25);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink-900);
  border-radius: 999px;
  min-height: 36px;
  min-width: 74px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease;
}

.media-nav:hover {
  transform: translateY(-1px);
}

.media-counter {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-500);
  font-weight: 700;
}

.thumb-strip {
  margin-top: 10px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 92px;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.thumb {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  height: 68px;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb-active {
  border-color: var(--rust);
  box-shadow: 0 0 0 2px rgba(184, 95, 45, 0.22);
}

.grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.card {
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 15px;
  transition: transform 180ms ease, box-shadow 220ms ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.card h2 {
  margin: 0;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
}

.meta-value {
  margin-top: 8px;
  font-size: 1.03rem;
  font-weight: 700;
  color: var(--ink-900);
}

.meta-value a {
  color: var(--forest);
  text-decoration: none;
}

.meta-value a:hover {
  text-decoration: underline;
}

.sub {
  margin-top: 6px;
  color: var(--ink-700);
  font-size: 0.9rem;
  line-height: 1.5;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.action-row-store {
  align-items: stretch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 12px;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(20, 19, 17, 0.12);
}

.btn-primary {
  color: #fff8f0;
  background: linear-gradient(135deg, #256050, #4f7a4a);
}

.btn-secondary {
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(20, 19, 17, 0.22);
}

.btn-store {
  flex: 1 1 240px;
  min-height: 48px;
  background: #ffffff;
  color: var(--ink-900);
  border-color: rgba(20, 19, 17, 0.2);
  gap: 8px;
}

.store-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.facts {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(100px, 140px) 1fr;
  gap: 8px;
}

.facts dt {
  color: var(--ink-500);
  font-weight: 700;
}

.facts dd {
  margin: 0;
  font-weight: 600;
}

.list-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.place-link-card {
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 251, 245, 0.88);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transform: translateY(0);
  transition: transform 200ms ease, box-shadow 220ms ease;
}

.place-link-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.place-card-image {
  width: 100%;
  height: 164px;
  object-fit: cover;
  display: block;
  background: #e9dfd0;
}

.place-card-body {
  padding: 12px;
}

.place-link-card h3 {
  margin: 0;
  font-size: 1rem;
  font-family: "Fraunces", serif;
  font-weight: 600;
  color: #2e2720;
}

.place-link-card p {
  margin: 6px 0 0;
  color: var(--ink-500);
  font-size: 0.88rem;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.73rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink-700);
  padding: 8px 12px;
  border: 1px solid rgba(20, 19, 17, 0.2);
  border-radius: 999px;
  text-decoration: none;
}

.secret-tag,
.status {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.secret-tag,
.status-yes {
  color: #693015;
  background: rgba(184, 95, 45, 0.16);
  border: 1px solid rgba(184, 95, 45, 0.32);
}

.status-no {
  color: #2b5e47;
  background: rgba(31, 91, 77, 0.14);
  border: 1px solid rgba(31, 91, 77, 0.28);
}

.small-note {
  margin-top: 8px;
  color: var(--ink-500);
  font-size: 0.83rem;
}

.hero {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: rgba(255, 251, 244, 0.88);
  box-shadow: var(--shadow-soft);
  padding: 14px;
}

.hero-content {
  width: 100%;
}

.title-row {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.description {
  margin-top: 10px;
  margin-bottom: 0;
  color: var(--ink-700);
  line-height: 1.55;
}

.skeleton {
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.4));
  background-size: 220% 100%;
  animation: shimmer 1.15s infinite linear;
}

.skeleton.title {
  width: 70%;
  height: 30px;
}

.skeleton.text {
  width: 100%;
  height: 13px;
  margin-top: 9px;
}

.skeleton.card {
  height: 100px;
  background-color: rgba(255, 255, 255, 0.65);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 420ms ease forwards;
}

.reveal-delay-1 {
  animation-delay: 90ms;
}

.reveal-delay-2 {
  animation-delay: 160ms;
}

.reveal-delay-3 {
  animation-delay: 230ms;
}

@keyframes mediaFade {
  from {
    opacity: 0.55;
    transform: scale(0.995);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-14px) translateX(12px);
  }
}

@media (min-width: 760px) {
  .page {
    padding: 24px 18px 152px;
  }

  .site-header {
    padding: 12px 24px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .fixed-download-btn {
    width: 260px;
  }

  .shell-panel {
    padding: 22px;
  }

  .media-stage {
    padding: 14px;
  }

  .grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
  }

  .col-4 {
    grid-column: span 4;
  }

  .col-6 {
    grid-column: span 6;
  }

  .col-8 {
    grid-column: span 8;
  }

  .col-12 {
    grid-column: span 12;
  }

  .list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .place-card-image {
    height: 184px;
  }
}

@media (min-width: 900px) {
  .fixed-download-btn {
    display: none;
  }

  .page {
    padding-bottom: 40px;
  }

  .site-footer {
    padding-bottom: 12px;
    margin-bottom: 0;
  }
}

@media (min-width: 1080px) {
  .page {
    padding: 28px 22px 44px;
  }

  .list-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-title {
    max-width: 18ch;
  }
}
