:root {
  --deep-teal: #4b2b24;
  --teal: #835044;
  --aqua: #d8bcb2;
  --aqua-soft: #fff6ef;
  --aqua-panel: #fdf6f1;
  --ice: #fffefd;
  --paper: #ffffff;
  --copper: #a4523e;
  --copper-deep: #835044;
  --pink: #a4523e;
  --ink: #171211;
  --muted: #735d56;
  --line: rgba(75, 43, 36, 0.14);
  --white-70: rgba(255, 255, 255, 0.72);
  --white-88: rgba(255, 255, 255, 0.88);
  --shadow-soft: 0 18px 48px rgba(75, 43, 36, 0.14);
  --shadow-card: 0 12px 30px rgba(75, 43, 36, 0.12);
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, sans-serif;
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 12px;
  color: var(--ink);
  background: var(--deep-teal);
  font-family: var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% -8%, rgba(253, 234, 226, 0.18), transparent 25rem),
    linear-gradient(180deg, #2b1713 0%, #4b2b24 46%, #171211 100%);
  font-weight: 500;
  letter-spacing: 0;
}

body,
button,
input,
select {
  font: inherit;
}

button,
select,
input {
  color: inherit;
}

button,
select {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 36px;
  padding: 8px clamp(16px, 3vw, 42px);
  color: white;
  background: rgba(75, 43, 36, 0.94);
  font-size: 12px;
  font-weight: 600;
}

.topbar p {
  margin: 0;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.topbar a::after,
.primary-cta::after {
  content: "";
  width: 16px;
  height: 16px;
  background: currentColor;
  clip-path: polygon(60% 19%, 100% 50%, 60% 81%, 60% 58%, 0 58%, 0 42%, 60% 42%);
}

.site-shell {
  width: min(1220px, calc(100% - 44px));
  margin: 20px auto 52px;
  padding: 22px clamp(18px, 2.4vw, 34px) 44px;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.92), transparent 18rem),
    linear-gradient(180deg, #fffefd 0%, var(--aqua-panel) 42%, #fdeae2 100%);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 26px 26px 0 0;
  box-shadow: 0 32px 88px rgba(47, 25, 20, 0.28);
}

.site-header {
  display: grid;
  grid-template-columns: auto auto minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  margin: -8px -8px 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(23, 18, 17, 0.96), rgba(75, 43, 36, 0.96));
  color: white;
  box-shadow: 0 22px 50px rgba(47, 25, 20, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 124px;
  height: 52px;
  padding: 6px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.location-pill,
.planner-nav,
.saved-button,
.shortcut,
.filter-select,
.filter-reset,
.sort-wrap,
.load-more {
  min-height: 48px;
  border: 1px solid rgba(131, 80, 68, 0.25);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 8px 18px rgba(75, 43, 36, 0.07);
}

.location-pill,
.planner-nav,
.saved-button,
.shortcut {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.site-header .location-pill,
.site-header .planner-nav {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  box-shadow: none;
}

.site-header .search-bar {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.pin-icon {
  position: relative;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.pin-icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: currentColor;
}

.chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.search-bar {
  display: grid;
  grid-template-columns: 150px auto 1fr 44px;
  align-items: center;
  min-height: 46px;
  padding: 0 5px 0 18px;
  border: 1px solid rgba(131, 80, 68, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 32px rgba(75, 43, 36, 0.1);
}

.select-wrap select,
.search-input-wrap input,
.filter-select select,
.planner-form select,
.sort-wrap select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}

.select-wrap select {
  font-weight: 600;
}

.search-divider {
  width: 1px;
  height: 28px;
  background: rgba(75, 43, 36, 0.18);
}

.search-input-wrap input {
  padding: 0 16px;
  font-size: 13px;
}

.search-button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 12px 24px rgba(164, 82, 62, 0.28);
  position: relative;
}

.search-button::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 10px;
  top: 9px;
  border: 2px solid white;
  border-radius: 50%;
}

.search-button::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 2px;
  left: 24px;
  top: 26px;
  border-radius: 99px;
  background: white;
  transform: rotate(45deg);
}

.calendar-icon {
  position: relative;
  width: 21px;
  height: 21px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.calendar-icon::before,
.calendar-icon::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 2px;
  height: 8px;
  background: currentColor;
  border-radius: 99px;
}

.calendar-icon::before {
  left: 5px;
}

.calendar-icon::after {
  right: 5px;
}

.heart-icon {
  position: relative;
  width: 22px;
  height: 20px;
  flex: 0 0 auto;
}

.heart-icon::before {
  content: "";
  position: absolute;
  inset: 3px 2px 2px;
  background: currentColor;
  clip-path: polygon(50% 100%, 9% 58%, 9% 24%, 30% 6%, 50% 20%, 70% 6%, 91% 24%, 91% 58%);
}

.saved-button {
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.saved-button strong {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--pink);
  color: white;
  font-size: 12px;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(9, minmax(max-content, 1fr));
  gap: 10px;
  margin: 16px 0 18px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.category-row::-webkit-scrollbar,
.event-row::-webkit-scrollbar {
  display: none;
}

.shortcut {
  background: rgba(255, 255, 255, 0.7);
}

.shortcut.active {
  border-color: rgba(164, 82, 62, 0.4);
  background: var(--pink);
  color: white;
  box-shadow: 0 14px 26px rgba(164, 82, 62, 0.24);
}

.top-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  align-items: stretch;
  gap: 18px;
  margin-top: 8px;
}

.hero-grid {
  min-width: 0;
}

.hero-panel,
.planner-card,
.theme-banner,
.event-card,
.all-activities,
.site-footer {
  border: 1px solid rgba(131, 80, 68, 0.28);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(410px, 1fr);
  align-items: stretch;
  gap: clamp(18px, 2.4vw, 32px);
  min-height: 500px;
  padding: clamp(18px, 2.5vw, 32px);
  overflow: hidden;
  border-color: rgba(131, 80, 68, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 254, 253, 0.88), rgba(253, 234, 226, 0.78)),
    radial-gradient(circle at 80% 18%, rgba(164, 82, 62, 0.16), transparent 16rem);
  box-shadow: 0 26px 68px rgba(75, 43, 36, 0.16);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 540px;
  margin: 0;
  text-align: left;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(131, 80, 68, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--copper-deep);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 430px;
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.4vw, 60px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 800;
}

.hero-copy h1::after {
  display: none;
}

.hero-copy p {
  margin: 18px 0 0;
  max-width: 480px;
  color: #5f493f;
  font-size: 17px;
  line-height: 1.45;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  margin-top: 22px;
  padding: 0 28px;
  border-radius: 12px;
  background: var(--pink);
  color: white;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(164, 82, 62, 0.24);
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 22px;
  padding-top: 0;
  color: #735d56;
  font-size: 13px;
}

.trust-row strong {
  color: var(--pink);
}

.avatar-stack {
  display: inline-flex;
}

.avatar-stack i {
  width: 30px;
  height: 30px;
  margin-left: -7px;
  border: 2px solid white;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 36%, #171211 0 4px, transparent 5px),
    linear-gradient(135deg, #fdf6f1, #a4523e);
}

.avatar-stack i:first-child {
  margin-left: 0;
}

.hero-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
}

.hero-feature,
.hero-feature-link,
.hero-mini-card {
  min-width: 0;
}

.hero-feature-link {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #fdeae2;
  box-shadow: 0 18px 42px rgba(75, 43, 36, 0.18);
}

.hero-feature-link img,
.hero-mini-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-feature-link::after,
.hero-mini-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 22%, rgba(23, 18, 17, 0.76) 100%);
}

.hero-feature-link > div {
  position: relative;
  z-index: 2;
  padding: 24px;
  color: white;
}

.hero-feature-link small,
.hero-mini-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 650;
}

.hero-feature-link h2 {
  max-width: 360px;
  margin: 8px 0 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.02;
}

.hero-feature-link p {
  margin: 9px 0 0;
  max-width: 430px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.35;
}

.hero-feature-link .detail-badge {
  top: 16px;
  bottom: auto;
  background: rgba(255, 255, 255, 0.9);
  color: #4b2b24;
}

.hero-mini-grid {
  display: none;
}

.hero-mini-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 118px;
  overflow: hidden;
  border-radius: 18px;
  background: #fdeae2;
  box-shadow: 0 12px 28px rgba(75, 43, 36, 0.12);
}

.hero-mini-card span,
.hero-mini-card strong {
  position: relative;
  z-index: 2;
  padding: 0 14px;
}

.hero-mini-card strong {
  padding-bottom: 14px;
  color: white;
  font-size: 14px;
  line-height: 1.12;
}

.quick-filters {
  display: grid;
  grid-column: auto;
  grid-row: auto;
  width: 100%;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.filter-discovery {
  display: grid;
  gap: 22px;
  margin: 18px 0 22px;
  padding: 20px;
  border: 1px solid rgba(131, 80, 68, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 12px 30px rgba(75, 43, 36, 0.08);
}

.filter-select,
.filter-reset {
  display: grid;
  align-content: center;
  padding: 11px 20px;
  min-height: 70px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.72);
}

.filter-select span {
  color: #735d56;
  font-size: 13px;
}

.filter-select select {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 600;
}

.filter-reset {
  color: #5f493f;
  font-weight: 650;
}

.engagement-strip {
  grid-column: auto;
  grid-row: auto;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.engagement-strip h2,
.engagement-strip p {
  margin: 0;
}

.engagement-strip h2 {
  font-size: 17px;
}

.engagement-strip p {
  margin-top: 4px;
  color: #735d56;
  font-size: 13px;
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.style-card {
  display: grid;
  place-items: center;
  min-height: 76px;
  border: 1px solid rgba(131, 80, 68, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: #4b2b24;
  text-align: center;
  font-size: 12px;
  font-weight: 650;
}

.style-card::before {
  content: attr(data-mark);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 7px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(131, 80, 68, 0.12), rgba(164, 82, 62, 0.13));
  color: var(--teal);
  font-size: 20px;
  font-weight: 750;
}

.style-card.active {
  border-color: rgba(164, 82, 62, 0.5);
  box-shadow: inset 0 0 0 2px rgba(164, 82, 62, 0.18);
}

.planner-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 58px rgba(75, 43, 36, 0.16);
}

.planner-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.planner-head h2,
.planner-head p {
  margin: 0;
}

.planner-head h2 {
  font-size: 20px;
}

.planner-head p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.planner-head .strong {
  color: var(--pink);
}

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

.planner-form label {
  display: grid;
  gap: 4px;
  padding: 8px 10px;
  border: 1px solid rgba(131, 80, 68, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
}

.planner-form span {
  color: var(--muted);
  font-size: 12px;
}

.planner-form select {
  font-size: 13px;
  font-weight: 600;
}

.saved-list {
  display: grid;
  gap: 9px;
  margin-top: 13px;
}

.saved-empty {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.saved-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  padding: 9px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.saved-item img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  background: #fdeae2;
}

.saved-item h3,
.saved-item p {
  margin: 0;
}

.saved-item h3 {
  font-size: 14px;
  line-height: 1.2;
}

.saved-item p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.planner-route {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  padding: 9px 2px;
  border-top: 1px solid rgba(75, 43, 36, 0.12);
  color: var(--muted);
  font-size: 13px;
}

.planner-route strong {
  color: var(--ink);
  font-size: 14px;
}

.primary-cta.wide {
  width: 100%;
  min-height: 50px;
  margin-top: 14px;
}

.banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.theme-banner {
  display: grid;
  gap: 7px;
  min-height: 140px;
  align-content: center;
  padding: 26px;
  overflow: hidden;
}

.theme-banner span {
  color: var(--copper-deep);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.theme-banner strong {
  max-width: 620px;
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 30px;
  line-height: 1;
}

.theme-banner small {
  max-width: 520px;
  color: var(--muted);
  font-size: 15px;
}

.theme-banner.monsoon {
  color: white;
  background:
    radial-gradient(circle at 86% 60%, rgba(255, 255, 255, 0.24), transparent 9rem),
    linear-gradient(135deg, #4b2b24, #835044);
}

.theme-banner.monsoon span,
.theme-banner.monsoon small {
  color: rgba(255, 255, 255, 0.86);
}

.theme-banner.promise {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(251, 250, 244, 0.82));
}

.shelf {
  margin-top: 24px;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 0 8px 14px;
}

.section-title h2,
.section-title p {
  margin: 0;
}

.section-title h2 {
  font-size: 26px;
  line-height: 1.1;
}

.section-title p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.section-title a {
  color: #835044;
  font-size: 14px;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.event-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(254px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding: 2px 2px 10px;
  scrollbar-width: none;
}

.event-card {
  contain: layout paint style;
  overflow: hidden;
  border-color: rgba(131, 80, 68, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(75, 43, 36, 0.11);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(75, 43, 36, 0.16);
}

.event-media {
  position: relative;
  height: 188px;
  overflow: hidden;
  background:
    radial-gradient(circle at 36% 30%, rgba(164, 82, 62, 0.15), transparent 5rem),
    linear-gradient(135deg, #ebd4cc, #fdf6f1);
}

.event-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fdeae2;
}

.event-media img.is-fallback {
  opacity: 0;
}

.event-media::before {
  content: attr(data-mark);
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  color: #835044;
  font-size: 28px;
  font-weight: 800;
  opacity: 0;
}

.event-media.is-fallback-media::before {
  opacity: 1;
}

.event-media::after {
  content: attr(data-fallback);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 22px 20px;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 18%, rgba(131, 80, 68, 0.16), transparent 6rem),
    linear-gradient(180deg, transparent 28%, rgba(255, 255, 255, 0.22) 56%, rgba(75, 43, 36, 0.13) 100%);
  color: #4b2b24;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.04;
  opacity: 1;
}

.event-media.has-image::after {
  content: "";
  padding: 0;
}

@media (max-width: 640px) {
  .event-card:hover {
    transform: none;
  }

  .event-card {
    box-shadow: 0 8px 20px rgba(75, 43, 36, 0.08);
  }
}

.save-event {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 6px 16px rgba(75, 43, 36, 0.16);
}

.save-event::before {
  content: "";
  position: absolute;
  inset: 9px 8px 8px;
  background: var(--ink);
  clip-path: polygon(50% 91%, 12% 54%, 12% 25%, 32% 8%, 50% 20%, 68% 8%, 88% 25%, 88% 54%);
}

.event-card.saved .save-event {
  background: var(--pink);
}

.event-card.saved .save-event::before {
  background: white;
}

.detail-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #5f493f;
  font-size: 11px;
  font-weight: 650;
}

.event-body {
  display: grid;
  gap: 9px;
  padding: 15px 16px 17px;
}

.meta-line {
  color: #735d56;
  font-size: 12px;
  font-weight: 600;
}

.event-body h3 {
  min-height: 40px;
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}

.venue {
  min-height: 36px;
  margin: 0;
  color: #735d56;
  font-size: 13px;
  line-height: 1.35;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-row strong {
  color: var(--pink);
  font-size: 16px;
}

.price-row a {
  color: #4b2b24;
  font-size: 12px;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: #fdf6f1;
  color: #835044;
  font-size: 11px;
  font-weight: 650;
}

.tag.age {
  background: #fff6ef;
  color: #925f50;
}

.tag.style {
  background: #fdeae2;
  color: #835044;
}

.tag.price {
  background: #f5e6df;
  color: #a4523e;
}

.all-activities {
  margin-top: 34px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.58);
}

.sticky-title {
  align-items: center;
  margin: 0 0 20px;
}

.sort-wrap {
  display: inline-grid;
  grid-template-columns: auto 150px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.72);
}

.sort-wrap label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.load-more {
  display: block;
  width: min(360px, 100%);
  margin: 24px auto 0;
  background: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1800px, calc(100% - 38px));
  margin: 0 auto 28px;
  padding: 26px clamp(18px, 3vw, 42px);
  color: white;
  background: linear-gradient(135deg, #4b2b24, #171211);
}

.footer-brand {
  width: 112px;
  height: 60px;
  padding: 4px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
}

.site-footer p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 650;
}

.empty-state,
.error-state {
  grid-column: 1 / -1;
  padding: 34px;
  border: 1px solid rgba(131, 80, 68, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  text-align: center;
}

:focus-visible {
  outline: 3px solid rgba(164, 82, 62, 0.42);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .planner-nav,
  .saved-button {
    display: none;
  }

  .top-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 360px;
  }

  .quick-filters,
  .engagement-strip {
    grid-column: auto;
    grid-row: auto;
  }

  .planner-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.6fr);
    gap: 16px;
  }

  .planner-form {
    grid-template-columns: 1fr 1fr;
  }

  .planner-head,
  .planner-form,
  .saved-list,
  .planner-route,
  .planner-card .primary-cta {
    grid-column: auto;
  }

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

@media (max-width: 860px) {
  body {
    background:
      radial-gradient(circle at 50% -5%, rgba(255, 246, 239, 0.15), transparent 18rem),
      linear-gradient(180deg, var(--deep-teal) 0 36px, #fdeae2 36px 100%);
  }

  .topbar {
    font-size: 12px;
  }

  .topbar a {
    display: none;
  }

  .site-shell {
    width: min(100% - 18px, 760px);
    margin-top: 10px;
    padding: 18px 12px 34px;
    border-radius: 0 0 24px 24px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin: 0;
    border-radius: 20px;
  }

  .brand {
    width: 122px;
    height: 66px;
  }

  .location-pill {
    min-height: 44px;
    padding: 0 12px;
  }

  .search-bar {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 46px;
    min-height: 54px;
    padding-left: 16px;
  }

  .select-wrap,
  .search-divider {
    display: none;
  }

  .search-input-wrap input {
    padding-left: 0;
  }

  .category-row {
    grid-template-columns: unset;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 10px;
    margin: 18px 0;
  }

  .shortcut {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero-panel,
  .planner-card,
  .all-activities {
    border-radius: 22px;
  }

  .hero-panel {
    padding: 20px 16px;
    gap: 26px;
  }

  .hero-copy {
    align-items: stretch;
    text-align: left;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .primary-cta {
    width: 100%;
  }

  .trust-row {
    display: none;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-feature-link {
    min-height: 270px;
  }

  .hero-mini-grid {
    display: none;
  }

  .quick-filters {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .filter-select,
  .filter-reset {
    min-height: 68px;
    padding: 10px 12px;
  }

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

  .planner-card {
    display: block;
    padding: 18px;
  }

  .banner-grid {
    grid-template-columns: 1fr;
  }

  .theme-banner strong {
    font-size: 25px;
  }

  .section-title,
  .sticky-title,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .listing-grid {
    grid-template-columns: 1fr;
  }

  .event-row {
    grid-auto-columns: minmax(246px, 82vw);
  }

  .all-activities {
    padding: 18px 12px;
  }

  .sort-wrap {
    width: 100%;
    grid-template-columns: auto 1fr;
  }
}

@media (max-width: 480px) {
  .quick-filters,
  .planner-form,
  .style-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .trust-row {
    align-items: flex-start;
  }

  .event-media {
    height: 190px;
  }

  .hero-mini-grid {
    display: none;
  }
}

/* Generated reference match */
body {
  background: #fffaf6;
}

.site-header {
  width: 100%;
  min-height: 86px;
  margin: 0 auto;
  padding: 16px max(24px, calc((100vw - 1426px) / 2));
  display: grid;
  grid-template-columns: 270px 146px minmax(320px, 565px) auto auto;
  justify-content: stretch;
  gap: 16px;
  border: 0;
  border-radius: 0;
  color: #fffaf6;
  background:
    radial-gradient(circle at 88% 0%, rgba(164, 82, 62, 0.24), transparent 18rem),
    linear-gradient(180deg, #24120f 0%, #190d0b 100%);
  box-shadow: none;
}

.brand {
  display: grid;
  align-content: center;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #fffaf6;
}

.brand span {
  position: relative;
  width: max-content;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 0.95;
}

.brand span::after {
  content: "";
  position: absolute;
  right: -34px;
  top: 5px;
  width: 25px;
  height: 25px;
  background: #c65f45;
  clip-path: polygon(50% 0, 62% 34%, 100% 18%, 77% 50%, 100% 82%, 62% 66%, 50% 100%, 38% 66%, 0 82%, 23% 50%, 0 18%, 38% 34%);
  transform: rotate(20deg);
}

.brand small {
  margin-top: 8px;
  color: rgba(255, 250, 246, 0.72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header .location-pill,
.site-header .saved-button {
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  box-shadow: none;
}

.site-header .location-pill {
  justify-content: space-between;
  padding: 0 18px;
  font-size: 15px;
}

.site-header .search-bar {
  grid-template-columns: minmax(118px, 0.4fr) 1fr 42px;
  min-height: 50px;
  padding: 0 8px 0 18px;
  border: 0;
  border-radius: 7px;
  background: #fffaf6;
  box-shadow: none;
}

.site-header .select-wrap {
  display: block;
  min-width: 0;
  border-right: 1px solid #ead7cd;
  padding-right: 12px;
}

.site-header .select-wrap select {
  color: #2a1713;
  font-size: 13px;
}

.site-header .search-input-wrap input {
  padding: 0 14px;
  font-size: 14px;
}

.site-header .search-button {
  width: 34px;
  height: 34px;
  background: transparent;
  box-shadow: none;
}

.site-header .search-button::before {
  left: 8px;
  top: 7px;
  border-color: #171211;
}

.site-header .search-button::after {
  left: 22px;
  top: 23px;
  background: #171211;
}

.site-header .saved-button {
  border: 0;
  background: transparent;
  gap: 9px;
  font-size: 14px;
}

.site-header .saved-button strong {
  min-width: 28px;
  height: 28px;
  background: #bd5a40;
}

.signin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.site-shell {
  width: min(1426px, calc(100% - 88px));
  margin: 0 auto;
  padding: 16px 0 28px;
  border: 0;
  border-radius: 0;
  background: #fffaf6;
  box-shadow: none;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(6, max-content) 1fr max-content;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  padding: 0;
  overflow: visible;
}

.shortcut,
.filter-select.compact,
.sort-wrap {
  min-height: 28px;
  padding: 0 13px;
  border: 1px solid #e6d7cf;
  border-radius: 6px;
  background: #fffaf6;
  color: #2c1b17;
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
}

.filter-select.compact {
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 8px;
}

.filter-select.compact span:not(.calendar-icon):not(.people-icon):not(.star-icon):not(.tag-icon) {
  display: none;
}

.filter-select.compact select,
.sort-wrap select {
  margin: 0;
  color: #2c1b17;
  font-size: 13px;
  font-weight: 500;
}

.activity-count {
  justify-self: end;
  color: #4f403b;
  font-size: 13px;
}

.sort-wrap {
  display: inline-flex;
  grid-template-columns: none;
  gap: 5px;
}

.sort-wrap label {
  color: #5c4b45;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
}

.reference-layout {
  display: grid;
  grid-template-columns: minmax(0, 1028px) 374px;
  grid-template-areas:
    "hero planner"
    "cards saved"
    "cards email";
  gap: 18px 24px;
}

.reference-layout .hero-panel {
  grid-area: hero;
  position: relative;
  display: block;
  height: 331px;
  min-height: 331px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #ead7cd;
  border-radius: 12px;
  background: #8f432e;
  box-shadow: none;
}

.reference-layout .hero-panel > img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 52%;
  height: 100%;
  object-fit: cover;
}

.reference-layout .hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(143, 67, 46, 0.95) 0%, rgba(143, 67, 46, 0.86) 36%, rgba(143, 67, 46, 0.22) 70%, rgba(143, 67, 46, 0) 100%);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 55%;
  padding: 28px 34px;
  color: white;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0 15px;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.hero-kicker::before {
  content: "✦";
  margin-right: 8px;
  color: #ffc15b;
}

.hero-overlay h1 {
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-overlay p {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.7;
}

.primary-cta {
  min-height: 45px;
  margin-top: 22px;
  padding: 0 22px;
  border-radius: 10px;
  background: #fffaf6;
  color: #2a1713;
  box-shadow: none;
  font-size: 14px;
  font-weight: 650;
}

.planner-card,
.saved-rail,
.email-rail,
.reference-card,
.trust-strip {
  border: 1px solid #ead7cd;
  border-radius: 12px;
  background: #fffaf6;
  box-shadow: none;
}

.planner-card {
  grid-area: planner;
  padding: 0;
  overflow: hidden;
}

.planner-head,
.rail-head {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 16px;
  border-bottom: 1px solid #eaded8;
}

.planner-head h2,
.rail-head h2,
.email-rail h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
}

.planner-head a,
.planner-head > span,
.rail-head a {
  margin-left: auto;
  color: #2a1713;
  font-size: 12px;
}

.planner-form,
.saved-list,
.planner-route {
  display: none;
}

.planner-items {
  display: grid;
  gap: 22px;
  padding: 20px 16px 16px;
}

.collapsed-rail {
  align-self: start;
  min-height: 0;
}

.collapsed-rail .planner-head,
.collapsed-rail .rail-head {
  border-bottom: 0;
}

.collapsed-rail .primary-cta {
  display: none;
}

.planner-card.collapsed-rail .primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.collapsed-message {
  padding: 0 16px 18px;
}

.collapsed-message p {
  margin: 0;
  color: #6f5b52;
  font-size: 13px;
  line-height: 1.45;
}

.planner-items article,
.saved-rail article {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.planner-items img,
.saved-rail img {
  width: 76px;
  height: 68px;
  border-radius: 5px;
  object-fit: cover;
}

.planner-items strong,
.saved-rail strong {
  display: block;
  color: #2a1713;
  font-size: 14px;
}

.planner-items span,
.planner-items small,
.saved-rail span,
.saved-rail small {
  display: block;
  margin-top: 6px;
  color: #6f5b52;
  font-size: 12px;
}

.planner-items small {
  color: #bd5a40;
  font-weight: 700;
}

.planner-items button {
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
}

.planner-card .primary-cta {
  width: calc(100% - 32px);
  margin: 0 16px 18px;
  background: #bd5a40;
  color: white;
}

.reference-card-section {
  grid-area: cards;
}

.reference-card-section .section-title {
  margin: 0 0 12px;
}

.section-title h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
}

.reference-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
}

.reference-card {
  position: relative;
  overflow: hidden;
  min-height: 304px;
}

.reference-card > img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.reference-card > button {
  position: absolute;
  top: 11px;
  right: 11px;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid #ead7cd;
  border-radius: 50%;
  background: #fffaf6;
}

.reference-card .card-tags {
  display: flex;
  gap: 7px;
  margin: -16px 14px 12px;
  position: relative;
  z-index: 2;
}

.reference-card .card-tags span {
  padding: 3px 8px;
  border-radius: 4px;
  background: #fff2ec;
  color: #7e3e2e;
  font-size: 11px;
  font-weight: 700;
}

.reference-card h3,
.reference-card p,
.reference-card small,
.reference-card strong,
.reference-card em {
  margin-left: 14px;
  margin-right: 14px;
}

.reference-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  min-height: 44px;
  font-size: 18px;
  line-height: 1.18;
}

.reference-card p,
.reference-card small,
.reference-card em {
  display: block;
  color: #6f5b52;
  font-size: 12px;
  font-style: normal;
}

.reference-card p {
  min-height: 32px;
  line-height: 1.3;
}

.reference-card strong {
  display: block;
  margin-top: 15px;
  color: #2a1713;
  font-size: 15px;
}

.reference-card > a {
  position: absolute;
  right: 14px;
  bottom: 20px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #bd5a40;
  color: white;
  font-size: 22px;
}

.reference-card.saved > button {
  background: #bd5a40;
  color: white;
}

.show-more-ref {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 206px;
  height: 36px;
  margin: 18px auto 0;
  border: 1px solid #bd5a40;
  border-radius: 999px;
  background: #fffaf6;
  color: #7e3e2e;
  font-size: 13px;
}

.saved-rail {
  grid-area: saved;
  overflow: hidden;
}

.saved-rail article {
  grid-template-columns: 65px 1fr auto;
  padding: 12px 16px;
  border-bottom: 1px solid #eaded8;
}

.saved-rail article:last-child {
  border-bottom: 0;
}

.saved-rail img {
  width: 65px;
  height: 55px;
}

.email-rail {
  grid-area: email;
  min-height: 120px;
  padding: 20px 16px 14px;
  background: #fff6ef;
}

.email-rail p {
  margin: 8px 0 16px;
  color: #6f5b52;
  font-size: 12px;
}

.email-rail .email-message {
  min-height: 18px;
  margin: 8px 0 0;
  color: #2a1713;
  font-weight: 700;
}

.email-rail form {
  display: grid;
  grid-template-columns: 1fr 108px;
  gap: 10px;
}

.email-rail input {
  min-height: 32px;
  border: 1px solid #ead7cd;
  border-radius: 5px;
  padding: 0 12px;
  background: white;
}

.email-rail button {
  border: 0;
  border-radius: 6px;
  background: #bd5a40;
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 14px;
  padding: 18px 26px;
}

.trust-strip span {
  display: grid;
  gap: 4px;
  color: #6f5b52;
  font-size: 12px;
}

.trust-strip strong {
  color: #2a1713;
  font-size: 13px;
}

.utility-controls,
.legacy-dynamic-ui,
.banner-grid {
  display: none;
}

.utility-controls {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.utility-controls .filter-reset {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid #ead7cd;
  border-radius: 7px;
  background: #fffaf6;
}

.shelf,
.all-activities {
  margin-top: 28px;
}

.people-icon,
.star-icon,
.tag-icon,
.sliders-icon {
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  color: currentColor;
}

.people-icon::before { content: "⚭"; }
.people-icon.filled::before { content: ""; }
.star-icon::before { content: "☆"; }
.tag-icon::before { content: "◇"; }
.sliders-icon::before { content: "≡"; transform: rotate(90deg); }
.people-icon.filled {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #bd5a40;
  color: white;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
    justify-content: stretch;
  }

  .site-header .search-bar,
  .site-header .saved-button,
  .signin-link {
    grid-column: auto;
  }

  .site-header .search-bar {
    grid-column: 1 / -1;
  }

  .reference-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "planner"
      "cards"
      "saved"
      "email";
  }

  .reference-card-grid,
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-row {
    grid-template-columns: repeat(3, max-content);
    overflow-x: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 18px 22px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand span {
    font-size: 30px;
  }

  .site-header .saved-button {
    display: none;
  }

  .site-shell {
    width: calc(100% - 28px);
    padding-top: 14px;
  }

  .category-row {
    grid-template-columns: unset;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
  }

  .activity-count {
    display: none;
  }

  .category-row .sort-wrap {
    display: inline-flex;
  }

  .reference-layout .hero-panel {
    min-height: 520px;
  }

  .reference-layout .hero-panel > img {
    inset: auto 0 0;
    width: 100%;
    height: 48%;
  }

  .reference-layout .hero-panel::after {
    background: linear-gradient(180deg, rgba(143, 67, 46, 0.94) 0%, rgba(143, 67, 46, 0.9) 44%, rgba(143, 67, 46, 0.1) 72%, rgba(143, 67, 46, 0) 100%);
  }

  .hero-overlay {
    width: 100%;
    padding: 24px 18px;
  }

  .hero-overlay h1 {
    margin-top: 22px;
    font-size: 36px;
  }

  .reference-card-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .planner-items article {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
  }

  .email-rail form {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1426px, calc(100% - 88px));
  min-height: 132px;
  margin: 38px auto 24px;
  padding: 28px 34px;
  border-radius: 20px;
  color: #fffaf6;
  background:
    radial-gradient(circle at 90% 10%, rgba(164, 82, 62, 0.22), transparent 18rem),
    linear-gradient(135deg, #2b1713, #171211);
  box-shadow: 0 18px 44px rgba(47, 25, 20, 0.2);
}

.footer-copy {
  display: grid;
  gap: 12px;
}

.footer-brand {
  display: grid;
  gap: 6px;
  width: max-content;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #fffaf6;
  text-decoration: none;
}

.footer-brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.footer-brand small {
  color: rgba(255, 250, 246, 0.68);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 250, 246, 0.7);
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  color: rgba(255, 250, 246, 0.9);
  font-size: 14px;
  font-weight: 700;
}

.site-footer nav a {
  color: inherit;
  text-decoration: none;
}

.auth-dialog {
  width: min(420px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: transparent;
  color: var(--ink);
}

.auth-dialog::backdrop {
  background: rgba(23, 18, 17, 0.42);
}

.auth-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(131, 80, 68, 0.18);
  border-radius: 22px;
  background: #fffefd;
  box-shadow: 0 24px 64px rgba(47, 25, 20, 0.24);
}

.auth-card h2,
.auth-card p {
  margin: 0;
}

.auth-card h2 {
  font-family: var(--font-display);
  font-size: 28px;
}

.auth-card p {
  color: var(--muted);
  font-size: 14px;
}

.auth-card label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

.auth-card input {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(131, 80, 68, 0.2);
  border-radius: 12px;
  background: #fbfaf6;
  font: inherit;
}

.auth-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(75, 43, 36, 0.08);
  color: var(--ink);
  font-size: 22px;
  cursor: pointer;
}

.auth-message {
  min-height: 20px;
}

@media (max-width: 640px) {
  .site-footer {
    width: calc(100% - 28px);
    min-height: 0;
    margin-top: 28px;
    padding: 24px 20px;
    align-items: flex-start;
    flex-direction: column;
    border-radius: 18px;
  }

  .footer-brand span {
    font-size: 30px;
  }
}
