:root {
  color-scheme: light;
  --bg: #fbf5ea;
  --cream: #fffdf8;
  --card: #ffffff;
  --ink: #2c2520;
  --muted: #8c8175;
  --faint: #b3a99b;
  --line: rgba(70, 45, 20, 0.08);

  --orange: #ff7a3d;
  --terracotta: #e2613c;
  --green: #2f6e4e;
  --green-soft: #d8ecda;
  --peach: #ffe9d3;

  --grad: linear-gradient(135deg, #ffb347 0%, #ff7a3d 55%, #e2613c 100%);
  --grad-soft: linear-gradient(135deg, #fff0dc, #ffe2d0);

  --season: #ff7a3d;

  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 22px 50px -26px rgba(150, 95, 45, 0.4);
  --shadow-sm: 0 10px 26px -16px rgba(150, 95, 45, 0.4);
  --shadow-card: 0 16px 40px -24px rgba(120, 75, 35, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background:
    radial-gradient(720px circle at 8% -6%, rgba(255, 179, 71, 0.22), transparent 55%),
    radial-gradient(680px circle at 100% 2%, rgba(255, 122, 61, 0.16), transparent 52%),
    radial-gradient(620px circle at 50% 116%, rgba(47, 110, 78, 0.12), transparent 58%),
    var(--bg);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--terracotta);
}

h1,
h2,
p {
  margin: 0;
}

h2 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* ---------- Top bar ---------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 52px);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px) saturate(140%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  font-size: 26px;
  filter: drop-shadow(0 6px 12px rgba(150, 95, 45, 0.3));
}

.beta-badge {
  align-self: flex-start;
  padding: 1px 6px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--faint);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.top-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.owner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--card);
  color: var(--ink);
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.owner-link:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* ---------- Buttons ---------- */
.primary-action,
.ghost-button {
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  color: #fff;
  background: var(--grad);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 34px -12px rgba(226, 97, 60, 0.6);
}

.primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px -12px rgba(226, 97, 60, 0.65);
}

.primary-action:active {
  transform: translateY(0);
}

/* LINE導線のCTAはLINEブランドカラーに */
.line-cta {
  background: #06c755;
  box-shadow: 0 16px 34px -12px rgba(6, 199, 85, 0.55);
}

.line-cta:hover {
  background: #05b34c;
  box-shadow: 0 22px 44px -12px rgba(6, 199, 85, 0.6);
}

.ghost-button {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--card);
  color: var(--ink);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.ghost-button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* ---------- Shell ---------- */
.shell {
  width: min(1180px, calc(100% - 36px));
  margin: 8px auto 70px;
  display: grid;
  gap: clamp(26px, 4vw, 44px);
}

/* ---------- Hero (写真背景: 初夏の公園) ---------- */
/* hero background — img/hero-kitchencar.png */
.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(200px, 30vh, 300px);
  padding: clamp(18px, 3vw, 32px);
  border-radius: var(--radius);
  color: #fff;
  background-image:
    linear-gradient(180deg, rgba(28, 18, 10, 0.04) 0%, rgba(28, 18, 10, 0.2) 42%, rgba(24, 15, 8, 0.66) 100%),
    linear-gradient(90deg, rgba(24, 15, 8, 0.5) 0%, rgba(24, 15, 8, 0.12) 52%, transparent 78%),
    url("img/hero-kitchencar.png");
  background-size: cover;
  background-position: center;
  background-color: #2f3a26;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  max-width: 600px;
}

.hero .eyebrow {
  color: #ffdcb0;
}

.hero h2 {
  margin-top: 8px;
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.45);
}

.hero-sub {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(13px, 1.5vw, 15.5px);
  line-height: 1.7;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.hero-cta .primary-action {
  min-height: 56px;
  padding: 0 30px;
  font-size: 16px;
}

.hero-link {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  opacity: 0.92;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.hero-link:hover {
  opacity: 1;
}

.hero-share {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

/* ---------- Section head ---------- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin-top: 6px;
  font-size: clamp(20px, 2.8vw, 28px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.count-pill {
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--peach);
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 800;
}

/* ---------- Search bar ---------- */
.search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px;
  margin-bottom: 22px;
  border-radius: var(--radius-sm);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.search-bar input,
.search-bar select {
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  padding: 0 14px;
  outline: none;
  transition: box-shadow 0.18s ease, background 0.18s ease;
}

.search-bar input {
  flex: 1 1 220px;
  min-width: 0;
}

.search-bar select {
  flex: 0 0 auto;
}

.search-bar select option {
  background: var(--card);
}

.search-bar input::placeholder {
  color: var(--faint);
}

.search-bar input:focus,
.search-bar select:focus {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 122, 61, 0.28);
}

.search-bar .ghost-button {
  min-height: 46px;
  box-shadow: none;
  background: var(--bg);
}

.search-bar .ghost-button:hover {
  background: var(--peach);
  transform: none;
}

/* ---------- Truck grid ---------- */
.truck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.truck-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-sm);
  background: var(--card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.truck-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 54px -24px rgba(120, 75, 35, 0.55);
}

.thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--c1, #ffd9a0), var(--c2, #ff9f6e));
}

.thumb-emoji {
  font-size: clamp(54px, 9vw, 72px);
  filter: drop-shadow(0 10px 18px rgba(120, 70, 30, 0.35));
}

.thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-badge,
.thumb-dist {
  position: absolute;
  top: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.thumb-badge {
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
}

.thumb-dist {
  right: 12px;
  background: rgba(44, 37, 32, 0.7);
  color: #fff;
}

.card-body {
  display: grid;
  gap: 11px;
  padding: 16px;
}

.card-body header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--peach);
  color: var(--terracotta);
  font-size: 11.5px;
  font-weight: 800;
  white-space: nowrap;
}

.badge.open {
  background: var(--green-soft);
  color: var(--green);
}

.menu-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 12px;
  background: var(--grad-soft);
}

.menu-price strong {
  font-size: 15.5px;
  font-weight: 800;
}

.menu-price span {
  color: var(--terracotta);
  font-weight: 900;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 11px 13px;
  border-radius: 12px;
  background: var(--grad-soft);
  display: grid;
  gap: 6px;
}

.menu-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.menu-item-name {
  font-size: 14.5px;
  font-weight: 800;
}

.menu-item-price {
  color: var(--terracotta);
  font-weight: 900;
  white-space: nowrap;
}

.menu-list--empty {
  color: var(--muted);
  font-weight: 800;
}

.card-desc {
  color: #6f6458;
  font-size: 13.5px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  color: var(--muted);
  font-size: 12.5px;
}

/* ---------- Empty state ---------- */
.empty {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 54px 18px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  background: var(--card);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.empty strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.empty-emoji {
  font-size: 46px;
}

.empty-cta {
  margin-top: 8px;
  text-decoration: none;
}

/* ---------- Map (secondary) ---------- */
.map-section {
  padding: clamp(18px, 3vw, 26px);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(47, 110, 78, 0.55);
  animation: pulse 1.9s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(47, 110, 78, 0.5); }
  70% { box-shadow: 0 0 0 9px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.map {
  position: relative;
  height: min(540px, 60vh);
  min-height: 380px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 179, 71, 0.18), transparent 45%),
    radial-gradient(circle at 75% 78%, rgba(47, 110, 78, 0.14), transparent 48%),
    var(--peach);
}

.map.google-map {
  background: var(--peach);
}

.map-note {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 248, 0.95);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.district {
  position: absolute;
  color: rgba(70, 45, 20, 0.28);
  font-weight: 800;
  letter-spacing: 0.06em;
  pointer-events: none;
}

/* fallback pin markers */
.marker {
  position: absolute;
  translate: -50% -100%;
  width: 40px;
  height: 40px;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 8px;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 12px 24px -8px rgba(226, 97, 60, 0.6);
  transform: rotate(-45deg);
}

.marker span {
  transform: rotate(45deg);
}

.marker.is-open {
  background: linear-gradient(135deg, #4cae7e, var(--green));
}

/* ---------- Banners ---------- */
.notify-banner,
.owner-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: clamp(24px, 3.5vw, 36px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.notify-banner {
  background:
    radial-gradient(140% 160% at 0% 0%, rgba(255, 255, 255, 0.7), transparent 58%),
    linear-gradient(135deg, #e7f3e2, #d3ecd6);
}

.owner-banner {
  background:
    radial-gradient(140% 160% at 100% 100%, rgba(255, 255, 255, 0.55), transparent 58%),
    linear-gradient(135deg, #ffe7cf, #ffd8c2);
}

.notify-banner .eyebrow {
  color: var(--green);
}

.notify-banner h2,
.owner-banner h2 {
  margin-top: 8px;
  font-size: clamp(21px, 2.8vw, 30px);
}

.notify-banner p,
.owner-banner p {
  margin-top: 12px;
  max-width: 540px;
  color: #5f5648;
  font-size: 14px;
  line-height: 1.75;
}

.free-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 800;
}

.free-note::before {
  content: "✓";
  font-weight: 900;
}

.banner-cta {
  white-space: nowrap;
}

.notify-cta {
  background: linear-gradient(135deg, #4cae7e, var(--green));
  box-shadow: 0 16px 34px -12px rgba(47, 110, 78, 0.55);
}

.notify-cta:hover {
  box-shadow: 0 22px 44px -12px rgba(47, 110, 78, 0.6);
}

/* ---------- Forms / register / dialog ---------- */
.lp-intro {
  display: grid;
  gap: 8px;
  padding: clamp(22px, 4vw, 32px);
  border-radius: var(--radius);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(255, 255, 255, 0.7), transparent 60%),
    var(--grad-soft);
  box-shadow: var(--shadow);
}

.lp-intro h2 {
  font-size: clamp(22px, 3vw, 32px);
}

.lp-intro p {
  margin-top: 6px;
  max-width: 520px;
  color: #6f6458;
  line-height: 1.7;
}

.register-shell {
  display: grid;
  gap: 20px;
  max-width: 680px;
}

.owner-form,
.register-card {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3.5vw, 28px);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

input,
select {
  height: 48px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 12px 14px;
  line-height: 1.6;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 122, 61, 0.2);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.menu-editor {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
}

.menu-editor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.menu-editor-head .ghost-button {
  height: 38px;
  padding: 0 14px;
  font-size: 12.5px;
}

.menu-rows {
  display: grid;
  gap: 8px;
}

.menu-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 116px 48px;
  gap: 8px;
  align-items: center;
}

.menu-row input {
  background: #fff;
}

.menu-row-remove {
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--muted);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.menu-row-remove:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  background: var(--peach);
}

.dialog-actions,
.card-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.link-button {
  text-decoration: none;
}

.register-uid {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--grad-soft);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  word-break: break-all;
}

.register-uid a {
  color: var(--terracotta);
  font-weight: 800;
}

.register-status {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.register-status[data-kind="error"] {
  color: var(--terracotta);
}

.register-status[data-kind="success"] {
  color: var(--green);
}

/* ---------- Truck public page (t.html) ---------- */
.truck-page-shell {
  max-width: 720px;
}

.truck-page {
  display: grid;
  gap: 18px;
}

.truck-page-status {
  color: var(--muted);
  text-align: center;
  padding: 40px 0;
}

.brand-home {
  text-decoration: none;
  color: inherit;
}

.truck-hero {
  display: grid;
  gap: 16px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.truck-hero-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--grad-soft);
  display: grid;
  place-items: center;
}

.truck-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.truck-hero-photo .thumb-emoji {
  font-size: 80px;
}

.truck-status {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.truck-status.is-live {
  color: var(--green);
}

.truck-status.is-off {
  color: var(--muted);
}

.truck-hero-body {
  display: grid;
  gap: 8px;
  padding: 0 20px 20px;
}

.truck-hero-body h2 {
  font-size: 24px;
  font-weight: 900;
}

.truck-hero-body .badge {
  justify-self: start;
}

.truck-updated {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.truck-section {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.truck-section h3 {
  font-size: 14px;
  color: var(--muted);
}

.truck-desc {
  -webkit-line-clamp: unset;
  display: block;
}

.truck-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.truck-actions .primary-action {
  flex: 1 1 auto;
  text-align: center;
  text-decoration: none;
}

.qr-card {
  justify-items: center;
  text-align: center;
}

.qr-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.qr-img {
  width: 240px;
  height: 240px;
  border-radius: 16px;
  background: #fff;
  padding: 8px;
  box-shadow: var(--shadow-sm);
}

.truck-notify {
  margin-top: 6px;
}

/* ---------- Area SEO pages ---------- */
.area-shell {
  display: grid;
  gap: 28px;
}

.area-head {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 4vw, 40px);
  border-radius: var(--radius);
  background: var(--grad-soft);
  box-shadow: var(--shadow-sm);
}

.area-head h2 {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 900;
}

.area-head .hero-cta {
  margin-top: 6px;
}

.area-head .hero-link {
  color: var(--terracotta);
  text-shadow: none;
}

.area-section {
  display: grid;
  gap: 14px;
}

.area-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.area-card {
  background: var(--card);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.area-card a {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  text-decoration: none;
  color: inherit;
}

.area-card h3 {
  font-size: 16px;
  font-weight: 800;
}

.area-card .badge {
  justify-self: start;
}

.area-card-menu {
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.6;
}

.area-card-meta {
  color: var(--muted);
  font-size: 12.5px;
}

.area-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-links a {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
  color: var(--terracotta);
  font-weight: 800;
  font-size: 13.5px;
  text-decoration: none;
}

.area-links a:hover {
  background: var(--peach);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px clamp(18px, 4vw, 52px) 48px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

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

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-beta {
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--peach);
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
  .live-dot {
    animation: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero {
    min-height: clamp(180px, 26vh, 240px);
  }

  .section-head {
    flex-wrap: wrap;
  }

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

  .notify-banner,
  .owner-banner {
    flex-direction: column;
    align-items: start;
  }

  .banner-cta {
    width: 100%;
    text-align: center;
  }
}
