:root {
  --green: #284832;
  --deep: #183323;
  --olive: #78934e;
  --orange: #e76f45;
  --cream: #f8f5eb;
  --paper: #fffdf8;
  --muted: #6f796f;
  --line: #dde1d5;
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  scroll-behavior: smooth;
  scrollbar-color: rgba(20, 20, 20, .3) transparent;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 14px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  border: 4px solid transparent;
  border-radius: 999px;
  background: rgba(20, 20, 20, .3);
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(20, 20, 20, .45);
  background-clip: padding-box;
}
body {
  margin: 0;
  color: var(--deep);
  background: var(--cream);
  font-family: Inter, system-ui, sans-serif;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
}
header {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 245, 235, 0.94);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}
.brand .brand-symbol {
  width: 87px;
  height: 87px;
  margin: -13px -7px;
  border-radius: 18px;
  object-fit: cover;
}
.brand .brand-wordmark {
  width: 148px;
  height: 50px;
  margin: -5px 0;
  border-radius: 0;
  object-fit: cover;
  mix-blend-mode: multiply;
}
header nav {
  display: flex;
  gap: 30px;
  transform: translateY(0);
  opacity: 1;
  transition: opacity .24s ease, transform .24s ease;
}
header.search-active nav {
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
}
header nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.account {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ghost,
.outline {
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--deep);
  background: transparent;
  font-weight: 700;
}
#mobile-menu {
  display: none;
  border: 0;
  background: none;
  font-size: 23px;
}
.user-menu {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.user-trigger {
  display: grid;
  place-items: center;
  padding: 2px;
  border: 2px solid #d9e0d2;
  border-radius: 50%;
  background: white;
}
.user-trigger #avatar,
.dash-user > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--deep);
  background: #dfe7d7;
  font-weight: 800;
}
.user-trigger:hover {
  border-color: var(--olive);
}
.user-trigger #avatar.has-image {
  color: transparent;
  background-position: center;
  background-size: cover;
}
.header-account-badge {
  position: relative;
  display: flex;
  align-items: center;
}
.header-account-badge::after {
  content: attr(data-tooltip);
  position: absolute;
  z-index: 40;
  top: calc(100% + 10px);
  left: 50%;
  width: max-content;
  max-width: 260px;
  padding: 9px 12px;
  border-radius: 9px;
  color: white;
  background: var(--deep);
  box-shadow: 0 10px 30px #18332330;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition: opacity .16s ease, transform .16s ease;
}
.header-account-badge:hover::after,
.header-account-badge:focus-within::after {
  opacity: 1;
  transform: translate(-50%, 0);
}
.dropdown {
  position: absolute;
  right: 0;
  top: 48px;
  width: 250px;
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 18px 50px #18332320;
  z-index: 120;
}
.dropdown:not([hidden]) {
  transform-origin: top right;
  animation: user-dropdown-open .18s cubic-bezier(.2,.75,.3,1) both;
}
@keyframes user-dropdown-open {
  from { opacity: 0; transform: translateY(-9px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.account-shortcuts > div {
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}
.dropdown button {
  width: 100%;
  padding: 13px 14px;
  border: 0;
  border-radius: 8px;
  background: none;
  text-align: left;
  color: var(--deep);
  font-weight: 800;
}
.dropdown button:hover {
  background: var(--cream);
}
.dropdown hr {
  border: 0;
  border-top: 1px solid var(--line);
}
main {
  overflow: hidden;
}
.hero {
  min-height: 660px;
  padding: 70px 6vw 90px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 5vw;
}
.kicker {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
}
.hero h1 {
  margin: 15px 0 25px;
  font: 600 clamp(58px, 7vw, 104px) / 0.88 Georgia;
  letter-spacing: -0.055em;
}
.hero h1 em {
  color: var(--orange);
  font-weight: 400;
}
.hero-copy > p:not(.kicker) {
  max-width: 670px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.search-box {
  display: grid;
  grid-template-columns: 1fr 0.7fr auto;
  max-width: 780px;
  margin-top: 35px;
  padding: 8px;
  background: var(--paper);
  border-radius: 16px;
  box-shadow: 0 22px 70px #14392f20;
}
.search-box label {
  padding: 8px 15px;
}
.search-box label + label {
  border-left: 1px solid var(--line);
}
.search-box span {
  display: block;
  font-size: 10px;
  font-weight: 800;
}
.search-box input {
  width: 100%;
  padding: 7px 0;
  border: 0;
  outline: 0;
  background: none;
}
.search-box button,
.solid {
  padding: 13px 25px;
  border: 0;
  border-radius: 11px;
  color: white;
  background: var(--green);
  font-weight: 800;
}
.trust-line {
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
}
.hero-art {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}
.hero-logo {
  width: min(385px, 75vw);
  border-radius: 24%;
  box-shadow: 0 35px 90px #18332330;
  transform: rotate(-5deg);
}
.orbit {
  position: absolute;
  padding: 12px 18px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 12px 35px #15392f20;
  font-size: 12px;
  font-weight: 800;
}
.orbit-one {
  top: 12%;
  left: 0;
}
.orbit-two {
  right: 0;
  top: 30%;
  background: #d9ed9b;
}
.orbit-three {
  bottom: 10%;
  left: 5%;
  background: var(--orange);
  color: white;
}
.discover,
.plans-section {
  padding: 100px 6vw;
  background: var(--paper);
}
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.section-title h2,
.community h2,
.plans-section > h2,
.modal-card h2,
.panel h2 {
  margin: 5px 0;
  font: 500 clamp(38px, 5vw, 64px) Georgia;
  letter-spacing: -0.04em;
}
.filters {
  display: flex;
  gap: 9px;
  margin: 35px 0 20px;
  overflow: auto;
}
.filters button {
  white-space: nowrap;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: none;
  color: var(--deep);
  font-weight: 700;
}
.filters button.active {
  background: var(--green);
  color: white;
}
.results-bar {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
}
.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.restaurant-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  overflow: hidden;
  transition: 0.2s;
}
.restaurant-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px #15392f18;
}
.card-image {
  height: 185px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #dbe9c5, #f3d4c6);
  font: italic 42px Georgia;
}
.card-body {
  padding: 20px;
}
.card-top,
.card-actions,
.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
}
.card-body h3 {
  margin: 0;
  font: 500 25px Georgia;
}
.rating,
.details {
  color: var(--orange);
  font-weight: 800;
}
.address,
.muted {
  color: var(--muted);
}
.address {
  font-size: 13px;
}
.tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin: 17px 0;
}
.tag {
  padding: 6px 9px;
  border-radius: 8px;
  background: #eef2e5;
  font-size: 10px;
  font-weight: 800;
}
.tag.owner {
  background: #f8dfd5;
}
.tag.community {
  background: #e1efd9;
}
.tag.both {
  background: #d9ed9b;
}
.details {
  border: 0;
  background: none;
}
.empty-state {
  text-align: center;
  padding: 70px;
}
.community {
  padding: 110px 6vw;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 8vw;
}
.community > div > p:not(.kicker) {
  color: var(--muted);
  line-height: 1.7;
}
.steps,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.steps article,
.plan-grid article {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}
.steps span,
.plan-grid span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
}
.steps strong {
  display: block;
  margin: 30px 0 12px;
  font: 500 22px Georgia;
}
.steps p,
.plan-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.plans-section {
  text-align: center;
  background: #eef1e5;
}
.plan-grid {
  margin: 40px auto 20px;
  max-width: 1000px;
  text-align: left;
}
.plan-grid h3 {
  font: 500 28px Georgia;
}
.plan-grid strong {
  display: block;
  margin: 14px 0;
  font-size: 20px;
}
.plan-grid button {
  padding: 11px 15px;
  border: 0;
  border-radius: 9px;
  background: var(--green);
  color: white;
  font-weight: 800;
}
.plan-grid .featured {
  background: var(--green);
  color: white;
  transform: translateY(-10px);
}
.plan-grid .featured p {
  color: #dbe5db;
}
.plans-section > small {
  color: var(--muted);
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal[hidden] {
  display: none;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: #081c17aa;
  backdrop-filter: blur(6px);
}
.modal-card {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 35px;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 35px 90px #0004;
}
.detail-card {
  width: min(1180px, 96vw);
  max-height: 96vh;
  padding: clamp(38px, 5vw, 76px);
  border-radius: 30px;
  background: #fffdf8;
}
.detail-card .close {
  z-index: 3;
  right: 24px;
  top: 20px;
}
#detail-content {
  max-width: 1040px;
  margin: 0 auto;
}
.restaurant-detail-name {
  position: static;
  display: block;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  font: 500 clamp(42px, 5vw, 68px) / 1 Georgia, serif;
  letter-spacing: -0.04em;
}
.restaurant-detail-address {
  position: static;
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #39443f;
  font-size: 18px;
}
.restaurant-detail-address span {
  color: #6f806c;
  font-size: 28px;
}
.restaurant-detail-services {
  margin: 18px 0 0;
}
.restaurant-gallery {
  position: relative;
  clear: both;
  margin: 24px 0 30px;
}
.restaurant-gallery-thumbs {
  display: flex;
  gap: 14px;
  padding: 2px 2px 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  cursor: grab;
}
.restaurant-gallery-thumbs:active {
  cursor: grabbing;
}
.restaurant-gallery-thumbs button {
  flex: 0 0 230px;
  overflow: hidden;
  height: 170px;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: #e9ece3;
  scroll-snap-align: start;
}
.restaurant-gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.restaurant-gallery-lightbox {
  position: fixed;
  inset: 4vh 4vw;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 56px;
  border-radius: 26px;
  background: rgba(8, 28, 23, 0.94);
  box-shadow: 0 35px 100px #0008;
}
.restaurant-gallery-lightbox[hidden] {
  display: none;
}
.restaurant-gallery-lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 18px;
  object-fit: contain;
}
.restaurant-gallery-lightbox button {
  position: absolute;
  right: 22px;
  top: 14px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: white;
  color: var(--deep);
  font-size: 30px;
}
.restaurant-gallery-empty {
  display: grid;
  min-height: 220px;
  margin: 28px 0;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: 22px;
  color: var(--muted);
  background: #f7f7f1;
}
.auth-card {
  width: min(560px, calc(100vw - 32px));
  padding: 48px 54px 34px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.96), rgba(255,255,255,.9) 42%, rgba(250,248,240,.94)),
    var(--paper);
  box-shadow: 0 30px 90px rgba(13, 45, 31, .34);
}
.auth-close {
  top: 22px;
  right: 24px;
  color: #1f2a24;
  font-size: 30px;
  line-height: 1;
}
.auth-heading {
  max-width: 360px;
  margin: 0 auto 34px;
  text-align: center;
}
.auth-heading h2 {
  margin: 0;
  color: var(--green);
  font: 500 36px/1.05 Georgia, serif;
}
.close {
  position: absolute;
  right: 18px;
  top: 12px;
  border: 0;
  background: none;
  font-size: 30px;
}
.auth-field {
  display: grid;
  margin: 18px 0;
  color: var(--deep);
  font-size: 13px;
  font-weight: 900;
}
.auth-field > span {
  display: grid;
  position: relative;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  min-height: 54px;
  border: 1.5px solid #d8d8cf;
  border-radius: 11px;
  background: rgba(255,255,255,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.auth-field i {
  color: #303830;
  text-align: center;
  font-style: normal;
  transition: color .2s ease;
}
.auth-field input {
  width: 100%;
  margin: 0;
  padding: 18px 8px 8px 0;
  border: 0;
  background: transparent;
  font-size: 15px;
  outline: none;
}
.floating-field b {
  position: absolute;
  left: 38px;
  top: 50%;
  z-index: 1;
  padding: 0 6px;
  background: transparent;
  color: #73766f;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
  transform: translateY(-50%);
  transition:
    top .2s ease,
    left .2s ease,
    color .2s ease,
    font-size .2s ease,
    background-color .2s ease,
    transform .2s ease;
}
.floating-field input:focus + b,
.floating-field input:not(:placeholder-shown) + b {
  top: 0;
  left: 18px;
  background: #fbfaf5;
  color: var(--green);
  font-size: 12px;
  transform: translateY(-50%);
}
.auth-field > span:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(49,84,63,.12);
}
.auth-field > span:focus-within i {
  color: var(--green);
}
.auth-field input:user-invalid {
  color: #9d1111;
}
.auth-field > span:has(input:user-invalid) {
  border-color: #c81919;
  box-shadow: 0 0 0 3px rgba(200,25,25,.1);
}
.auth-field > span:has(input:user-invalid) b,
.auth-field > span:has(input:user-invalid) i {
  color: #c81919;
}
.was-submitted .auth-field > span:has(input:invalid) {
  border-color: #c81919;
  box-shadow: 0 0 0 3px rgba(200,25,25,.1);
}
.was-submitted .auth-field > span:has(input:invalid) b,
.was-submitted .auth-field > span:has(input:invalid) i {
  color: #c81919;
}
.password-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #29322d;
  font-size: 18px;
}
.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 14px 0 28px;
}
.auth-row button,
.auth-switch button,
.auth-links button,
.auth-back {
  border: 0;
  background: transparent;
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
}
.auth-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.auth-check input {
  width: 20px;
  height: 20px;
  accent-color: var(--green);
}
.auth-terms {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  column-gap: 10px;
  align-items: start;
  width: 100%;
  margin: 18px 0 24px;
  line-height: 1.35;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.auth-terms input {
  width: 20px;
  height: 20px;
  margin: 0 !important;
  transform: translateY(0);
  accent-color: var(--green);
}
.form-grid .auth-terms input {
  margin-top: 0 !important;
}
.auth-terms label {
  min-width: 0;
  cursor: pointer;
}
.auth-terms a {
  color: var(--green);
  font-weight: 700;
}
.auth-submit:disabled {
  cursor: not-allowed;
  opacity: .55;
  filter: saturate(.65);
}
.auth-submit {
  min-height: 56px;
  border-radius: 9px;
  font-size: 17px;
}
.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 30px 0;
  color: #8b8d86;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: #deded5;
}
.auth-google {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid #d8d8cf;
  border-radius: 10px;
  background: rgba(255,255,255,.72);
  color: #252b27;
  font-size: 15px;
  overflow: hidden;
  cursor: pointer;
}
.auth-google.is-loading {
  color: var(--muted);
  background: #f5f5ee;
}
.auth-google b {
  color: #4285f4;
  font: 900 20px/1 Arial, sans-serif;
}
.auth-google iframe {
  margin: 0 !important;
}
.auth-switch {
  margin: 30px 0 0;
  text-align: center;
}
.auth-back {
  display: block;
  margin: 14px auto 0;
  padding: 7px 0;
  font-size: 12px;
}
.auth-action-result{margin-top:18px;padding:14px;border-radius:10px;background:#eef1e5;color:var(--deep);font-size:13px;overflow-wrap:anywhere}.auth-action-result a{color:var(--green);font-weight:800}
.modal-card label,
.form-grid label {
  display: block;
  margin: 16px 0;
  font-size: 12px;
  font-weight: 800;
}
.modal-card input,
.form-grid input {
  width: 100%;
  margin-top: 7px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}
.modal-card .auth-terms label,
.form-grid .auth-terms label {
  display: block;
  margin: 0 !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}
.modal-card .auth-terms input,
.form-grid .auth-terms input {
  width: 20px;
  margin-top: 0 !important;
  padding: 0;
}
.modal-card .solid {
  width: 100%;
}
.modal-card .auth-field {
  display: grid;
  margin: 16px 0;
  font-size: 13px;
}
.modal-card .auth-field input {
  width: 100%;
  margin: 0;
  padding: 18px 8px 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.modal-card .auth-check {
  display: inline-flex;
  margin: 0;
}
.form-note {
  color: var(--muted);
  font-size: 12px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 26px 0;
}
.detail-grid > div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px;
  background: linear-gradient(135deg, #faf9f3, #f1f2e9);
  border-radius: 22px;
}
.detail-grid > div > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.detail-icon {
  display: grid;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: #dce4d3;
  color: var(--green);
  font: 700 27px Georgia, serif;
}
.owner-note {
  margin: 20px 0 34px;
  padding: 22px 26px;
  border-radius: 18px;
  background: linear-gradient(110deg, #eff2e8, #e5eadc);
  font-size: 15px;
  line-height: 1.55;
}
.restaurant-reviews-section {
  margin-top: 38px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.restaurant-reviews-section > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.restaurant-reviews-section > header h3 {
  margin: 0;
  font: 500 36px Georgia, serif;
}
.restaurant-reviews-section > header span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #eff1e8;
}
.restaurant-reviews-section .reviews > p {
  margin: 40px 0;
  padding: 70px 20px;
  border-radius: 18px;
  background: radial-gradient(circle at center, #f0f2e8, transparent 55%);
  color: var(--muted);
  text-align: center;
  font-size: 18px;
}
.account-view {
  height: calc(100vh - 76px);
  overflow: hidden;
  background: #f6f3eb;
}
.dashboard {
  position: relative;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: white;
}
.dashboard aside {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 28px 20px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-right: 1px solid #e5e3da;
  background: #fbfaf5;
  color: var(--deep);
}
.dash-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 700 20px Georgia;
}
.build-version {
  padding: 4px 7px;
  border-radius: 999px;
  background: #e8eddd;
  color: #536548;
  font: 800 10px/1 system-ui, sans-serif;
  letter-spacing: .04em;
}
.dash-brand img {
  width: 38px;
  border-radius: 10px;
}
.dash-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 25px;
  padding: 10px 8px 18px;
  border-bottom: 1px solid #e8e6dd;
}
.dash-user .account-avatar {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border: 1px solid #dddcd3;
  border-radius: 13px;
  color: var(--deep);
  background-color: #dfe7d7;
  background-position: center;
  background-size: cover;
  font-size: 18px;
}
.dash-user b { display: block; font-size: 15px; }
.dash-user small {
  display: block;
  margin-top: 3px;
  color: #6c766d;
}
.dashboard aside nav {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
}
.dashboard aside nav > span {
  margin: 18px 12px 5px;
  color: #858a85;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.dashboard aside nav button,
#dash-logout {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 0;
  border-radius: 9px;
  background: none;
  color: #253c2d;
  text-align: left;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.dashboard aside nav button img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: contain;
}
.dashboard aside nav button.active {
  background: #e9eedf;
  color: var(--deep);
  box-shadow: none;
  transform: none;
}
.dashboard aside nav button:hover:not(.active) {
  background: #f0f1ea;
  color: var(--deep);
}
#dash-logout {
  margin-top: auto;
  flex: 0 0 auto;
  border-top: 1px solid #e4e3da;
  border-radius: 0;
}
.dash-content {
  position: relative;
  width: 100%;
  max-width: none;
  height: 100%;
  padding: 38px clamp(30px, 4vw, 66px) 80px;
  background: #fffefa;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-behavior: auto;
}
.compact-action {
  width: auto;
  margin-top: 20px;
}
.my-reviews {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}
.dashboard-review-card {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  padding: 28px 18px 18px;
  border: 1px solid #e0e2d9;
  border-radius: 14px;
  background: #fff;
}
.dashboard-review-card.is-archived {
  opacity: .78;
  background: #faf9f4;
}
.dashboard-review-restaurant {
  display: grid;
  width: 150px;
  min-height: 150px;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  color: var(--deep);
  background: #e6ebdf;
  font: 700 28px Georgia, serif;
}
.dashboard-review-restaurant img { width: 100%; height: 100%; object-fit: cover; }
.dashboard-review-restaurant.image-error::before { content: attr(data-initial); }
.dashboard-review-content { display: grid; align-content: start; gap: 10px; }
.dashboard-review-title { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.dashboard-review-title h3 { margin: 0; font: 600 22px Georgia, serif; }
.dashboard-review-title > span { padding: 5px 9px; border-radius: 999px; color: #4f7647; background: #e9f1e3; font-size: 9px; }
.dashboard-review-content time { margin-left: 6px; color: var(--muted); font-size: 10px; }
.dashboard-review-content > small { color: var(--muted); }
.dashboard-review-editor {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
  padding: 18px;
  border-top: 1px solid var(--line);
  background: #fbfcf8;
}
.dashboard-review-editor[hidden] { display: none; }
.dashboard-review-editor textarea {
  width: 100%;
  min-height: 120px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  resize: vertical;
}
.dashboard-review-edit-rating { display: flex; align-items: center; gap: 4px; }
.dashboard-review-edit-rating button {
  padding: 0;
  border: 0;
  color: #d7dbd0;
  background: transparent;
  font-size: 25px;
}
.dashboard-review-edit-rating button.active { color: #76945e; }
.edit-review-photo-manager {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.edit-review-photo-manager figure,
.edit-review-photo-manager .add-review-photo {
  position: relative;
  display: grid;
  width: 118px;
  height: 88px;
  margin: 0;
  place-items: center;
  overflow: hidden;
  border: 1px dashed #bec8b8;
  border-radius: 10px;
  color: var(--deep);
  background: white;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}
.edit-review-photo-manager figure img { width: 100%; height: 100%; object-fit: cover; }
.edit-review-photo-manager figure button {
  position: absolute;
  right: 5px;
  top: 5px;
  display: grid;
  width: 25px;
  height: 25px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #b33d32;
  background: white;
}
.edit-review-photo-manager .add-review-photo span { font-size: 23px; font-weight: 400; }
.review-photo-limit { align-self: center; margin: 0; padding: 12px; border-radius: 9px; color: #6d704f; background: #f1f3e9; font-size: 10px; }
.dashboard .dash-content > .panel {
  display: none;
  position: relative;
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}
.dashboard .dash-content > .panel.active {
  display: block;
}
.restaurant-editor-page {
  transform-origin: center;
}
.restaurant-editor-page.slide-in {
  animation: restaurant-editor-slide .22s cubic-bezier(.2,.7,.3,1) both;
}
.editor-back {
  display: inline-flex;
  align-items: center;
  width: auto;
  margin: 0 0 24px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--deep);
  text-decoration: none;
}
@keyframes restaurant-editor-slide {
  from {
    opacity: 0;
    transform: translateX(22px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
#restaurant-page-host #restaurant-form-wrap {
  display: block;
  max-width: 1100px;
}
.account-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #dfe7d7;
  background-position: center;
  background-size: cover;
  color: var(--deep);
  font-weight: 900;
}
.account-avatar.has-image {
  color: transparent;
}
.account-avatar.large {
  width: 82px;
  height: 82px;
  flex-basis: 82px;
  font: 600 30px Georgia, serif;
}
.profile-identity {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 20px 0;
}
.profile-identity strong,
.profile-identity span {
  display: block;
}
.profile-identity strong {
  font-size: 20px;
}
.profile-identity span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}
.profile-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.profile-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
}
.profile-heading .kicker { margin: 0; color: var(--orange); }
.profile-heading h2 { margin: 8px 0 10px; color: var(--deep); font: 500 clamp(44px, 4vw, 62px) Georgia, serif; }
.profile-heading > div > p:last-child { margin: 0; color: var(--muted); font-size: 12px; }
.profile-security-note {
  display: flex !important;
  width: min(310px, 32%);
  height: auto !important;
  min-height: 94px !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 13px;
  padding: 20px !important;
  overflow: visible !important;
  border: 1px solid #e2e2da !important;
  border-radius: 13px;
  background: #fff !important;
  color: var(--deep) !important;
  box-shadow: 0 4px 16px #17332408;
}
.profile-security-note i {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  place-items: center;
  border: 1px solid #9eb892;
  border-radius: 50%;
  color: #4c7b42;
  background: #f1f6eb;
  font-style: normal;
}
.profile-security-note b,
.profile-security-note span { display: block; }
.profile-security-note b { font-size: 12px; }
.profile-security-note span { margin-top: 8px; color: var(--muted); font-size: 10px; line-height: 1.5; }
.profile-plan-card {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  padding: 22px 26px;
  border: 1px solid #e1e0d8;
  border-radius: 14px;
  background: #fff;
}
.profile-plan-card > div:first-child span,
.profile-plan-card > div:first-child strong { display: block; }
.profile-plan-card > div:first-child span { margin-bottom: 6px; color: #627066; font-size: 12px; }
.profile-plan-card > div:first-child strong { color: var(--deep); font-size: 17px; }
.profile-plan-card .subscription-summary {
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.profile-plan-card .subscription-summary strong { display: none; }
.profile-plan-card .subscription-summary span { font-size: 11px; }
.profile-information-card {
  padding: 26px;
  border: 1px solid #e1e0d8;
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
}
.profile-information-card > header {
  position: static;
  display: flex;
  width: 100%;
  height: auto;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}
.profile-information-card h3 { margin: 0; color: var(--deep); font: 600 18px Georgia, serif; }
.profile-information-card header p { margin: 6px 0 0; color: var(--muted); font-size: 11px; }
.profile-information-layout { display: grid; grid-template-columns: 190px minmax(0, 650px); gap: 36px; align-items: start; }
.profile-photo-column { display: grid; justify-items: center; gap: 11px; }
.profile-photo-column .account-avatar.large { width: 132px; height: 132px; flex-basis: 132px; font-size: 40px; }
.profile-photo-column button { width: 100%; }
.profile-photo-column small { color: var(--muted); font-size: 9px; }
.profile-fields { display: grid; gap: 18px; }
.profile-fields > label { display: grid; gap: 7px; color: #304236; font-size: 11px; font-weight: 750; }
.profile-edit-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px;
  overflow: hidden;
  border: 1px solid #dcddd6;
  border-radius: 9px;
  background: #fff;
}
.profile-edit-field input {
  min-height: 43px;
  padding: 9px 13px;
  border: 0;
  border-radius: 0;
  background: white;
  font-size: 12px;
}
.profile-edit-field input[readonly] { color: #5d665f; background: #fafaf7; cursor: default; }
.profile-edit-field button {
  border: 0;
  border-left: 1px solid #dcddd6;
  color: var(--deep);
  background: #f3f5ee;
  font-size: 10px;
  font-weight: 850;
}
.profile-edit-field button.editing { color: #9e3f34; background: #fff1ee; }
.profile-verified { margin: -8px 0 0; color: #4e7a42; font-size: 10px; }
.profile-verified.pending { color: #a06b2d; }
.profile-email-pending-note {
  display: grid;
  gap: 8px;
  margin-top: 2px;
  padding: 12px;
  border: 1px solid #ead6b9;
  border-radius: 14px;
  background: #fff8eb;
  color: #6f4a24;
  font-size: 12px;
}
.profile-email-pending-note[hidden] { display: none; }
.profile-email-pending-note strong { color: #7a4f20; }
.profile-email-pending-note button {
  justify-self: start;
  min-height: 34px;
  padding: 0 14px;
}
.profile-information-card .profile-actions { justify-content: flex-end; margin-top: 24px; }
.profile-information-card .profile-actions button { width: auto; min-width: 150px; }
.profile-information-card .profile-actions button:disabled { cursor: not-allowed; opacity: .45; }
.profile-actions .outline {
  margin: 0;
}
.form-grid {
  max-width: 650px;
}
.form-grid.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}
.form-grid .wide {
  grid-column: 1/-1;
}
.coordinates {
  display: flex;
  gap: 12px;
  align-items: end;
  padding-bottom: 16px;
  font-size: 11px;
  color: var(--muted);
}
.owned-list {
  display: grid;
  gap: 14px;
  margin: 18px 0;
}
.owned-list article {
  display: flex;
  justify-content: space-between;
  min-height: 180px;
  align-items: stretch;
  gap: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 3px 14px #17332408;
}
.owned-main {
  display: flex;
  flex: 1;
  min-width: 0;
  align-items: stretch;
  gap: 22px;
}
.owned-thumb {
  display: grid;
  width: 184px;
  height: 160px;
  flex: 0 0 184px;
  place-items: center;
  border-radius: 15px;
  object-fit: cover;
  background: #f1eee6;
}
.owned-thumb.placeholder {
  background: #e7ebdf;
  color: var(--deep);
  font: 600 19px Georgia, serif;
}
.owned-list small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}
.owned-list span {
  font-size: 11px;
  color: var(--olive);
}
.owned-copy {
  display: grid;
  flex: 1;
  min-width: 0;
  align-content: start;
  gap: 12px;
}
.owned-title {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.owned-title b {
  display: inline-block;
  margin-right: 10px;
  font: 600 25px Georgia, serif;
}
.owned-title small { margin-top: 9px; font-size: 11px; }
.publication-badge,
.owned-amenity {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eee9df;
}
.publication-badge.published {
  background: #e5efdc;
  color: #426329;
}
.owned-amenities,
.owned-stats,
.amenity-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.owned-amenity {
  color: var(--deep) !important;
  font-weight: 700;
}
.owned-stats {
  gap: 24px;
  padding-top: 7px;
  border-top: 0;
}
.owned-stats span {
  color: var(--muted);
  font-size: 11px;
}
.owned-stats b {
  color: var(--deep);
  font-size: 11px;
}
.amenity-stat {
  display: inline-flex;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--deep) !important;
}
.amenity-stat i {
  color: var(--muted);
  font-style: normal;
}
.owned-actions {
  display: flex;
  min-width: 190px;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.owned-edit-link,
.owned-public-link,
#new-restaurant {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.owned-public-link,
.owned-edit-link,
.owned-actions .danger {
  width: 100%;
  min-height: 42px;
  justify-content: center;
  border: 1px solid #dbddd5;
  border-radius: 9px;
  background: white;
  color: var(--deep);
  font-size: 11px;
  font-weight: 800;
}
.owned-actions .danger {
  color: #e44936;
  border-color: #f09b8e;
}
.panel-intro { margin: 8px 0 0; color: var(--muted); font-size: 12px; }
#panel-restaurants .panel-head { align-items: center; margin-bottom: 24px; }
#panel-restaurants .panel-head h2 { margin: 4px 0 0; font: 500 clamp(42px, 4vw, 62px) Georgia, serif; color: var(--deep); }
#panel-restaurants .kicker { color: var(--orange); }
#panel-restaurants #new-restaurant { min-width: 205px; min-height: 50px; justify-content: center; border-radius: 10px; }
.owned-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 22px;
  padding: 18px 8px;
  border: 1px solid #e2e1d9;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 3px 14px #17332408;
}
.owned-summary article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 5px 22px;
  border-right: 1px solid #e5e4dc;
}
.owned-summary article:last-child { border-right: 0; }
.owned-summary i {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--deep);
  background: #eaf0df;
  font-size: 24px;
  font-style: normal;
}
.owned-summary article:nth-child(even) i { background: #fff0e2; }
.owned-summary b { display: block; margin-bottom: 3px; color: var(--deep); font-size: 20px; }
.owned-summary span { color: #4f5951; font-size: 11px; line-height: 1.35; }
.empty-mini {
  padding: 35px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 15px;
  color: var(--muted);
}
#restaurant-form-wrap {
  padding: 0;
}
#panel-restaurants > #restaurant-form-wrap {
  display: none !important;
}
.restaurant-editor-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.restaurant-editor-card {
  width: min(1100px, 96vw);
  max-height: 96vh;
  padding: 44px 50px;
  background: white;
}
@media (max-width: 760px) {
  .owned-list article,
  .owned-main {
    flex-direction: column;
  }
  .owned-thumb {
    width: 100%;
    height: 180px;
    flex-basis: 180px;
  }
  .owned-actions {
    flex-direction: row;
  }
}
.plan-gate {
  margin: 24px 0;
  padding: 28px;
  border: 1px solid #dce3d3;
  border-radius: 16px;
  background: #f3f6ec;
}
.plan-gate strong {
  font: 500 25px Georgia, serif;
}
.plan-gate p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.55;
}
.plan-gate .solid {
  width: auto;
}
#restaurant-map {
  width: 100%;
  height: 360px;
  min-height: 360px;
  margin: 12px 0 28px;
  border-radius: 16px;
  overflow: hidden;
  z-index: 1;
}
.map-help {
  margin: 10px 0;
  color: var(--muted);
  font-size: 12px;
}
.plan-grid.compact {
  grid-template-columns: repeat(3, 1fr);
}
.plan-grid.compact article {
  padding: 18px;
}
.mobile-close {
  display: none;
}
.site-footer {
  position: relative;
  margin-top: 72px;
  padding: 92px max(4vw, 28px) 0;
  overflow: hidden;
  color: #f7f3e8;
  background: #102f22;
  font-size: 14px;
}
.footer-curve {
  position: absolute;
  top: -42px;
  left: -5%;
  width: 110%;
  height: 88px;
  border-radius: 50% 50% 0 0;
  background: #102f22;
}
.footer-content {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(150px, 0.75fr));
  gap: clamp(32px, 5vw, 76px);
  padding-bottom: 58px;
}
.footer-brand { max-width: 340px; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo img:first-child {
  width: 42px;
  height: 52px;
  object-fit: contain;
}
.footer-logo img:last-child {
  width: 146px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-brand p,
.footer-column p {
  margin: 0;
  color: rgba(247, 243, 232, 0.72);
  line-height: 1.7;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: #f2c56d;
  font-weight: 700;
}
.footer-social > img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: contain;
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.footer-column h2 {
  margin: 7px 0 8px;
  color: #f2c56d;
  font: 700 13px/1.2 Arial, sans-serif;
  letter-spacing: 0.12em;
}
.footer-column a {
  color: #fff;
  transition: color 0.18s ease, transform 0.18s ease;
}
.footer-column a:hover,
.footer-social:hover {
  color: #f2c56d;
  transform: translateX(2px);
}
.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 22px 0 26px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(247, 243, 232, 0.62);
  font-size: 12px;
}
.footer-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
}
.footer-bottom > .build-version {
  position: static;
  padding: 4px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(247, 243, 232, 0.72);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
}
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(247, 243, 232, 0.72);
}
.language-switcher select {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f7f3e8;
  padding: 6px 28px 6px 10px;
  font: 800 11px/1 Inter, sans-serif;
  cursor: pointer;
  color-scheme: dark;
}
.language-switcher select option {
  background: #1f1f1f;
  color: #f7f3e8;
}
#toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--deep);
  color: white;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.2s;
}
#toast.show {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  #mobile-menu {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-art {
    min-height: 390px;
  }
  .restaurant-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .community {
    grid-template-columns: 1fr;
  }
  .search-box {
    grid-template-columns: 1fr;
  }
  .search-box label + label {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .dashboard {
    grid-template-columns: 220px 1fr;
  }
  .dash-content {
    padding: 45px 28px;
  }
  .plan-grid.compact {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  header {
    height: 66px;
    padding: 0 17px;
  }
  .brand img {
    width: 38px;
    height: 38px;
  }
  .user-trigger b {
    display: none;
  }
  .hero {
    padding: 40px 20px 65px;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero-copy > p:not(.kicker) {
    font-size: 15px;
  }
  .hero-art {
    min-height: 310px;
  }
  .hero-logo {
    width: 255px;
  }
  .orbit {
    font-size: 10px;
  }
  .discover,
  .community,
  .plans-section {
    padding: 70px 20px;
  }
  .section-title {
    display: block;
  }
  .outline {
    margin-top: 15px;
  }
  .restaurant-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }
  .plan-grid .featured {
    transform: none;
  }
  .dashboard {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
  .dashboard aside {
    position: static;
    height: auto;
    overflow: visible;
    padding: 16px 20px;
  }
  .dash-brand,
  .dash-user {
    display: none;
  }
  .dashboard aside nav {
    display: flex;
    overflow: auto;
  }
  .dashboard aside nav button {
    white-space: nowrap;
  }
  #dash-logout {
    display: none;
  }
  .dash-content {
    height: calc(100% - 65px);
    padding: 45px 20px 30px;
  }
  .form-grid.two {
    display: block;
  }
  .panel-head {
    align-items: start;
  }
  .panel-head .solid {
    width: auto;
  }
  .owned-list article {
    align-items: start;
    gap: 10px;
  }
  .modal {
    padding: 10px;
  }
  .modal-card {
    padding: 28px 20px;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .site-footer { padding: 76px 24px 0; }
  .footer-content { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand {
    max-width: none;
    grid-column: 1 / -1;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .footer-meta {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 560px) {
  .auth-card {
    padding: 34px 22px 28px;
    border-radius: 22px;
  }
  .auth-heading h2 {
    font-size: 29px;
  }
  .auth-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .site-footer {
    margin-top: 48px;
    padding-inline: 20px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer-brand { grid-column: auto; }
}
