@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;800&family=Zen+Maru+Gothic:wght@500;700&display=swap');

:root {
  --green-950: #071c16;
  --green-900: #0d2f24;
  --green-800: #164535;
  --green-700: #1f6048;
  --green-600: #2d7a59;
  --green-500: #42a06f;
  --green-400: #76c891;
  --green-300: #a5ddb4;
  --green-200: #d3edd9;
  --green-100: #eaf7ed;
  --green-50: #f4fbf5;
  --cream: #fffaf0;
  --sand: #f1e5ce;
  --brown-700: #5b4636;
  --brown-600: #725840;
  --brown-500: #8b6a4b;
  --brown-400: #aa8764;
  --brown-300: #ccb090;
  --brown-100: #f2eadf;
  --orange-500: #f47c28;
  --orange-400: #ffb35c;
  --red-500: #e94d43;
  --blue-500: #3b82f6;
  --white: #ffffff;
  --gray-50: #fbfbf8;
  --gray-100: #f3f4ed;
  --gray-200: #e6e8df;
  --gray-300: #d4d8cc;
  --gray-500: #8a9385;
  --gray-700: #556055;
  --gray-900: #142018;
  --shadow-sm: 0 8px 24px rgba(15, 45, 32, 0.08);
  --shadow-md: 0 14px 34px rgba(15, 45, 32, 0.12);
  --shadow-lg: 0 24px 70px rgba(9, 33, 24, 0.18);
  --radius-lg: 28px;
  --radius: 20px;
  --radius-sm: 14px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--green-950);
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--gray-900);
  background:
    radial-gradient(circle at top left, rgba(118, 200, 145, 0.25), transparent 36rem),
    radial-gradient(circle at 90% 12%, rgba(255, 179, 92, 0.18), transparent 22rem),
    linear-gradient(180deg, #eef8ef 0%, #fffaf0 42%, #f6f8ef 100%);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a {
  color: inherit;
}

::selection {
  background: rgba(66, 160, 111, 0.25);
}

/* Header / Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(244, 251, 245, 0.92), rgba(244, 251, 245, 0.66));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 8px 10px 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.logo {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--green-900);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.logo svg {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 6px 12px rgba(31, 96, 72, 0.18));
}

.nav {
  display: none;
  gap: 6px;
}

.nav a {
  text-decoration: none;
  color: var(--green-700);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(45, 122, 89, 0.1);
  transform: translateY(-1px);
}

.nav a.active {
  background: var(--green-900);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(13, 47, 36, 0.18);
}

/* Hero */
.hero {
  background:
    linear-gradient(180deg, rgba(7, 28, 22, 0.42) 0%, rgba(7, 28, 22, 0.76) 72%, rgba(7, 28, 22, 0.92) 100%),
    linear-gradient(90deg, rgba(7, 28, 22, 0.78) 0%, rgba(7, 28, 22, 0.24) 58%, rgba(7, 28, 22, 0.72) 100%),
    url('https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1400&q=82') center / cover no-repeat;
  color: var(--white);
  padding: 30px 18px 78px;
  text-align: left;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 34px 34px;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.18), transparent 16rem),
    radial-gradient(circle at 82% 8%, rgba(255, 179, 92, 0.18), transparent 15rem),
    linear-gradient(120deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 12px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent);
  opacity: 0.46;
  z-index: -1;
}

.hero::after {
  content: '';
  position: absolute;
  right: -48px;
  bottom: -64px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: -80px -34px 0 rgba(255, 255, 255, 0.045);
  z-index: -1;
}

.hero > * {
  position: relative;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(2.15rem, 12vw, 4.6rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
  text-wrap: balance;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.hero-title span {
  display: block;
}

.hero-date {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 6px;
}

.hero-location {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--green-900);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 18px 38px rgba(4, 24, 17, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(4, 24, 17, 0.3);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

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

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-meta-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  flex-shrink: 0;
}

.hero-meta-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.64);
}

.hero-meta-value {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--white);
}

.hero-trees {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 74px;
  overflow: hidden;
  opacity: 0.8;
  max-width: none;
  pointer-events: none;
}

.hero-trees svg {
  width: 100%;
  height: 100%;
}

/* Container */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Sections */
.section {
  padding: 30px 0;
}

.hero + .container {
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.section-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(1.25rem, 6vw, 1.7rem);
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.035em;
}

.section-title .icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--green-100), var(--white));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(45, 122, 89, 0.08), var(--shadow-sm);
}

/* Cards */
.card {
  background: rgba(255, 255, 255, 0.84);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.78);
  margin-bottom: 14px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.card-accent {
  border-color: rgba(66, 160, 111, 0.24);
  box-shadow: inset 4px 0 0 var(--green-500), var(--shadow-sm);
}

.card-warn {
  border-color: rgba(244, 124, 40, 0.22);
  box-shadow: inset 4px 0 0 var(--orange-500), var(--shadow-sm);
}

.card-danger {
  background: linear-gradient(135deg, #fff7f5, rgba(255, 255, 255, 0.88));
  border-color: rgba(233, 77, 67, 0.2);
  box-shadow: inset 4px 0 0 var(--red-500), var(--shadow-sm);
}

.card-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-900);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card p {
  margin-bottom: 8px;
  font-size: 0.91rem;
  color: var(--gray-700);
}

.card p:last-child {
  margin-bottom: 0;
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 600px) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.info-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.info-item .info-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--green-100), var(--cream));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-item .info-label {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-bottom: 1px;
  font-weight: 700;
}

.info-item .info-value {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--green-900);
  line-height: 1.55;
}

.info-item .info-detail {
  font-size: 0.82rem;
  color: var(--gray-700);
  margin-top: 2px;
}

/* Time Schedule */
.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--green-300);
}

.timeline-item {
  position: relative;
  margin-bottom: 20px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -25px;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--green-500);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--green-300);
}

.timeline-time {
  font-weight: 700;
  color: var(--green-700);
  font-size: 0.9rem;
}

.timeline-desc {
  font-size: 0.88rem;
  color: var(--gray-700);
}

/* Layering Guide */
.layer-card {
  background: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.layer-num {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  color: var(--white);
}

.layer-outer .layer-num { background: var(--green-700); }
.layer-mid .layer-num { background: var(--green-500); }
.layer-base .layer-num { background: var(--green-300); color: var(--green-800); }

.layer-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-800);
  margin-bottom: 4px;
}

.layer-desc {
  font-size: 0.85rem;
  color: var(--gray-700);
}

/* Event Cards */
.event-category {
  margin-bottom: 30px;
}

.event-category-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 12px;
  padding: 0 2px 10px;
  border-bottom: 1px solid rgba(45, 122, 89, 0.15);
  letter-spacing: -0.02em;
}

.event-card {
  background: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.event-date {
  background: linear-gradient(135deg, var(--green-100), var(--white));
  border-radius: 16px;
  padding: 8px 10px;
  text-align: center;
  flex-shrink: 0;
  min-width: 68px;
  box-shadow: inset 0 0 0 1px rgba(45, 122, 89, 0.08);
}

.event-date .month {
  font-size: 0.72rem;
  color: var(--green-600);
  font-weight: 500;
}

.event-date .day {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-800);
}

.event-info {
  flex: 1;
}

.event-info .event-name {
  font-weight: 700;
  font-size: 0.91rem;
  color: var(--gray-900);
  line-height: 1.55;
}

.event-info .event-time {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.event-info .event-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--green-700);
  text-decoration: none;
  border: 1px solid rgba(45, 122, 89, 0.22);
  padding: 4px 12px;
  border-radius: 999px;
  transition: all 0.2s;
  font-weight: 700;
}

.event-info .event-link:hover {
  background: var(--green-100);
}

/* Checklist */
.checklist-header {
  text-align: center;
  margin-bottom: 26px;
  padding: 24px 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.progress-wrap {
  max-width: 400px;
  margin: 16px auto 0;
}

.progress-bar {
  height: 12px;
  background: rgba(20, 32, 24, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-700), var(--green-400));
  border-radius: 999px;
  transition: width 0.3s ease;
  width: 0%;
}

.progress-text {
  font-size: 0.82rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 6px;
}

.checklist-category {
  margin-bottom: 26px;
}

.checklist-category-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-900);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 17px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  margin-bottom: 8px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  user-select: none;
  box-shadow: var(--shadow-sm);
}

.check-item:hover {
  background: var(--white);
  transform: translateY(-1px);
}

.check-item.checked {
  opacity: 0.55;
  background: var(--gray-50);
}

.check-item.checked .check-label {
  text-decoration: line-through;
}

.check-item input[type="checkbox"] {
  display: none;
}

.check-box {
  width: 25px;
  height: 25px;
  border: 2px solid var(--green-400);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}

.check-item.checked .check-box {
  background: var(--green-500);
  border-color: var(--green-500);
}

.check-box svg {
  width: 14px;
  height: 14px;
  opacity: 0;
  transition: opacity 0.15s;
}

.check-item.checked .check-box svg {
  opacity: 1;
}

.check-label {
  font-size: 0.92rem;
  flex: 1;
  line-height: 1.55;
}

.check-note {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-left: auto;
  flex-shrink: 0;
}

.reset-btn {
  display: block;
  margin: 32px auto 0;
  padding: 12px 32px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: var(--green-900);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}

.reset-btn:hover {
  background: var(--gray-100);
  border-color: var(--gray-500);
}

/* Alert Box */
.alert {
  background: linear-gradient(135deg, #fff4df, rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(244, 124, 40, 0.18);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.alert-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.alert-danger {
  background: #fce4ec;
  border-color: #f8bbd0;
}

/* Onsen Card */
.onsen-card {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.86), transparent 12rem),
    linear-gradient(135deg, #e4f4ec 0%, #fff7e9 100%);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  text-align: left;
  box-shadow: var(--shadow-md);
}

.onsen-name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 8px;
}

.onsen-desc {
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 12px;
}

.onsen-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--green-900);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.88rem;
  border: 1px solid rgba(13, 47, 36, 0.16);
  padding: 10px 18px;
  border-radius: 999px;
  transition: all 0.2s;
  box-shadow: 0 12px 26px rgba(13, 47, 36, 0.18);
}

.onsen-link:hover {
  background: var(--green-700);
  transform: translateY(-1px);
}

/* Footer */
.footer {
  background: linear-gradient(145deg, var(--green-950), var(--green-900));
  color: rgba(255,255,255,0.7);
  padding: 40px 20px calc(40px + env(safe-area-inset-bottom));
  text-align: center;
  font-size: 0.82rem;
  border-radius: 28px 28px 0 0;
  margin-top: 20px;
}

.footer-contact {
  margin-top: 16px;
}

.footer-contact a {
  color: var(--green-300);
  text-decoration: none;
}

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

/* Bottom Nav */
.bottom-nav {
  position: fixed;
  right: 12px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  left: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  display: flex;
  z-index: 100;
  box-shadow: 0 18px 44px rgba(13, 47, 36, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.bottom-nav a {
  flex: 1;
  text-align: center;
  padding: 9px 0 8px;
  text-decoration: none;
  font-size: 0.7rem;
  color: var(--gray-500);
  font-weight: 700;
  transition: color 0.2s, background 0.2s;
}

.bottom-nav a.active {
  color: var(--green-900);
  background: rgba(45, 122, 89, 0.1);
}

.bottom-nav a .bn-icon {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 2px;
}

body {
  padding-bottom: 84px;
}

/* Leaf decoration */
.leaf-divider {
  text-align: center;
  padding: 10px 0 18px;
  color: var(--green-400);
  font-size: 1.2rem;
  letter-spacing: 8px;
}

/* Tag */
.tag {
  display: inline-block;
  background: rgba(66, 160, 111, 0.12);
  color: var(--green-800);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

.tag-warn {
  background: #fff3e0;
  color: #e65100;
}

/* Highlight */
.highlight {
  background: linear-gradient(transparent 58%, rgba(255, 179, 92, 0.34) 58%);
  font-weight: 700;
}

/* Responsive */
@media (min-width: 480px) {
  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .hero-title {
    font-size: 4.1rem;
  }

  .hero-date {
    font-size: 1.2rem;
  }

  .hero {
    padding: 64px 28px 96px;
    border-radius: 0 0 48px 48px;
  }

  .hero-actions {
    width: min(520px, 100%);
    margin-left: 0;
    margin-right: auto;
  }

  .hero-meta {
    width: min(720px, 100%);
    margin-left: 0;
    margin-right: auto;
  }

  .container {
    padding: 0 24px;
  }

  .section {
    padding: 46px 0;
  }

  .card,
  .info-item,
  .layer-card {
    padding: 24px;
  }

  .bottom-nav {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}
