:root {
  --bg: #dfdfdf;
  --paper: #fffdf8;
  --ink: #162123;
  --accent: #c6542f;
  --accent-strong: #9f3114;
  --hover-blue: #1ea7ff;
  --hover-blue-soft: rgba(30, 167, 255, 0.14);
  --olive: #3f5b3d;
  --line: rgba(22, 33, 35, 0.14);
  --shadow: 0 20px 60px rgba(22, 33, 35, 0.12);
  --radius: 22px;
  --link-base: #011d36;
  --link-hover: #0281c2;
  --mobile-nav-bg: var(--bg);
  --mobile-nav-border: rgba(147, 163, 189, 0.44);
  --mobile-nav-shadow: 0 -6px 16px rgba(21, 39, 66, 0.14);
  --mobile-nav-icon: #1f2a37;
  --mobile-nav-icon-active: #ffffff;
  --mobile-nav-icon-size: 22px;
  --mobile-nav-chip-size: 40px;
  --mobile-nav-chip-bg: rgba(236, 242, 250, 0.98);
  --mobile-nav-chip-border: rgba(170, 184, 207, 0.9);
  --mobile-nav-chip-active-bg: #2c3532;
  --mobile-nav-chip-active-border: #2c3532;
  --mobile-search-bg: rgba(7, 18, 36, 0.96);
  --mobile-search-border: rgba(138, 168, 224, 0.32);
  --mobile-search-input-bg: rgba(12, 29, 57, 0.95);
  --mobile-search-input-border: rgba(138, 168, 224, 0.3);
  --mobile-search-input-text: #ecf4ff;
  --mobile-search-submit-bg: linear-gradient(160deg, #3073ff, #2258cb);
  --mobile-search-submit-border: rgba(83, 141, 255, 0.5);
  --mobile-search-submit-text: #ffffff;
  --box-border: #a4b3b5;
  --box-text: #011d36;
  --box-hover-text: #0281c2;
  --box-hover-soft: rgba(255, 163, 180, 0.16);
  --content-offset: clamp(2.2rem, 4vw, 3rem);
  --header-line-start: calc(var(--content-offset) - 0.52rem);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--bg);
  font-family: "Plus Jakarta Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.45;
}

body.theme-light {
  --mobile-nav-bg: var(--bg);
  --mobile-nav-border: rgba(147, 163, 189, 0.44);
  --mobile-nav-shadow: 0 -6px 16px rgba(21, 39, 66, 0.14);
  --mobile-nav-icon: #1f2a37;
  --mobile-nav-icon-active: #ffffff;
  --mobile-nav-icon-size: 22px;
  --mobile-nav-chip-size: 40px;
  --mobile-nav-chip-bg: rgba(236, 242, 250, 0.98);
  --mobile-nav-chip-border: rgba(170, 184, 207, 0.9);
  --mobile-nav-chip-active-bg: #2c3532;
  --mobile-nav-chip-active-border: #2c3532;
  --mobile-search-bg: rgba(255, 255, 255, 0.98);
  --mobile-search-border: rgba(26, 61, 115, 0.2);
  --mobile-search-input-bg: #f5f9ff;
  --mobile-search-input-border: rgba(26, 61, 115, 0.25);
  --mobile-search-input-text: #0f2542;
  --mobile-search-submit-bg: linear-gradient(160deg, #3c79ff, #2556c2);
  --mobile-search-submit-border: rgba(48, 100, 214, 0.45);
  --mobile-search-submit-text: #ffffff;
}

a[href],
a[href]:visited {
  color: var(--link-base);
  text-decoration: none;
  transition: color 0.16s ease;
}

a[href]:hover,
a[href]:focus-visible {
  color: var(--link-hover);
  text-decoration: none;
  outline: none;
}

.texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(22, 33, 35, 0.03) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.45;
}

.hero,
main {
  width: min(1220px, calc(100% - 2.4rem));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.hero {
  padding: 1.4rem 0 2rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.2rem;
  gap: 1rem;
}

.global-header-band {
  width: min(1220px, calc(100% - 2.4rem));
  margin-inline: auto;
  position: relative;
  z-index: 40;
  padding-top: 0;
  background: inherit;
}

.global-topbar {
  position: relative;
  padding-inline-start: var(--header-line-start);
  padding-bottom: 0.38rem;
  margin-bottom: 0.9rem;
}

.global-topbar::after {
  content: "";
  position: absolute;
  left: var(--header-line-start);
  right: 0;
  bottom: 0;
  height: 2px;
  background: #797252;
}

.global-topbar .brand-wordmark {
  font-size: clamp(2.05rem, 3.45vw, 3.05rem);
  letter-spacing: -0.038em;
}

.desktop-auth-links {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  flex: 0 0 auto;
  margin-top: 0.08rem;
}

.desktop-auth-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.18rem;
  min-height: 2.18rem;
  padding: 0.1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #165d5b;
  box-shadow: none;
  text-decoration: none;
  transition: color 0.16s ease;
}

.desktop-auth-link-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.desktop-auth-link-icon {
  width: 1.18rem;
  height: 1.18rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.desktop-auth-link-image {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  object-fit: contain;
}

.desktop-auth-link-signin {
  color: #8c4e2f;
}

.desktop-auth-link:hover,
.desktop-auth-link:focus-visible {
  color: #0f7f62;
  transform: none;
  outline: none;
}

.desktop-auth-link-signin:hover,
.desktop-auth-link-signin:focus-visible {
  color: #b45d2c;
}

.desktop-auth-link.is-active {
  color: #b45d2c;
}

.global-topline {
  border-top: 0;
  background: inherit;
}

@media (max-width: 900px) {
  .desktop-auth-links {
    display: none;
  }
}

.global-topline:empty {
  display: none;
}

.search-page .hero {
  width: min(1220px, calc(100% - 2.4rem));
  padding-top: 1.15rem;
  min-height: 2rem;
}

.search-page .global-header-band {
  margin-top: 0;
}

.search-page .search-topbar {
  justify-content: flex-start;
  padding-inline: 0;
}

.search-page .search-topbar .brand {
  margin-inline-start: 0;
}

.search-page-shell {
  display: grid;
  gap: 0;
  padding-top: 0.5rem;
}

.search-page .hero .header-search {
  width: min(760px, 100%);
  max-width: min(760px, 100%);
  flex: 0 1 auto;
}

.search-page .header-search-btn {
  border: 0;
  background: #011d36;
  color: #e1e1e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  min-width: 56px;
  padding: 0 0.72rem;
  gap: 0;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1;
  text-indent: 0;
  overflow: visible;
  white-space: nowrap;
}

.search-page .header-search-btn:hover {
  background: #384796;
  color: #e1e1e1;
  transform: none;
  box-shadow: none;
  outline: none;
}

.search-page .header-search-btn:focus-visible {
  border: 0;
  background: #022746;
  color: #e1e1e1;
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
  outline: none;
}

.search-page .header-search-btn:disabled {
  opacity: 0.82;
  cursor: not-allowed;
}

.global-topline-inner {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 0.48rem;
  font-size: 0.92rem;
  color: rgba(22, 33, 35, 0.78);
  margin-inline-start: var(--header-line-start);
  padding: 0.18rem 0.25rem 0 0;
}

.content-page .global-topline-inner {
  font-size: 0.93rem;
}

.global-topline-inner a {
  color: var(--link-base);
  text-decoration: none;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex: 1 1 360px;
  max-width: 460px;
  min-width: 220px;
}

.header-search-input {
  width: 100%;
  min-height: 38px;
  border: 1px solid rgba(22, 33, 35, 0.2);
  border-radius: 12px;
  background: #ffffff;
  color: rgba(22, 33, 35, 0.95);
  padding: 0.42rem 0.86rem;
  font: inherit;
  font-size: 0.9rem;
}

.header-search-input::placeholder {
  color: rgba(22, 33, 35, 0.58);
}

.header-search-input:focus-visible {
  border-color: var(--hover-blue);
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
  outline: none;
}

.header-search-btn {
  border: 0;
  border-radius: 12px;
  background: #011d36;
  color: #e1e1e1;
  min-height: 34px;
  min-width: 56px;
  padding: 0 0.72rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1;
  text-indent: 0;
  overflow: visible;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.16s ease, transform 0.12s ease, box-shadow 0.16s ease;
}

.header-search-btn:hover {
  background: #384796;
  transform: none;
  box-shadow: none;
  outline: none;
}

.header-search-btn:focus-visible {
  border: 0;
  background: #022746;
  color: #e1e1e1;
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
  outline: none;
}

.brand-wordmark {
  font-family: "Plus Jakarta Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: clamp(2.35rem, 5.2vw, 4.05rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: #797152;
  text-transform: none;
  transform: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.brand-wordmark::before {
  content: "";
  width: 1.22em;
  height: 1.22em;
  flex: 0 0 1.22em;
  background: url("assets/pin.png?v=20260303-01") center / contain no-repeat;
}

@media (max-width: 620px) {
  .brand-wordmark {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
}

.auth-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.lang-switch {
  position: relative;
}

.lang-switch-btn {
  border: 1px solid rgba(22, 33, 35, 0.18);
  border-radius: 4px;
  min-height: 32px;
  padding: 0.22rem 0.56rem;
  background: inherit;
  color: #40474d;
  display: inline-flex;
  align-items: center;
  gap: 0.26rem;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  transition: color 0.16s ease, border-color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.lang-switch-btn:hover,
.lang-switch-btn:focus-visible {
  border-color: var(--hover-blue);
  background: var(--hover-blue-soft);
  color: #116466;
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
  outline: none;
}

.lang-switch.is-open .lang-switch-btn {
  border-color: var(--hover-blue);
  background: var(--hover-blue-soft);
  color: #116466;
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
}

.lang-switch-code {
  font-weight: 400;
  letter-spacing: 0.01em;
}

.lang-switch-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: auto;
  min-width: 178px;
  border: 1px solid rgba(22, 33, 35, 0.16);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 31, 40, 0.16);
  padding: 0.36rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.24rem;
  z-index: 1200;
}

.lang-switch-menu[hidden] {
  display: none !important;
}

.lang-switch-title {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(22, 33, 35, 0.56);
  padding: 0.08rem 0.3rem 0.16rem;
}

.lang-switch-option {
  width: auto;
  min-width: 31px;
  border: 1px solid rgba(22, 33, 35, 0.18);
  border-radius: 4px;
  background: inherit;
  color: #40474d;
  padding: 0.22rem 0.35rem;
  text-align: center;
  font: inherit;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color 0.16s ease, color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.lang-switch-option:hover,
.lang-switch-option:focus-visible {
  border-color: var(--hover-blue);
  color: #116466;
  background: var(--hover-blue-soft);
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
  outline: none;
}

.lang-switch-option.active {
  border-color: var(--hover-blue);
  color: #116466;
  background: var(--hover-blue-soft);
}

.auth-welcome {
  margin: 0;
  font-size: 0.95rem;
  color: #116466;
}

.auth-btn {
  border: 0;
  border-radius: 0;
  min-height: auto;
  padding: 0.2rem 0.12rem;
  font: inherit;
  font-size: 1.02rem;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.16s ease;
}

.auth-btn-outline {
  background: transparent;
  color: #116466;
}

.auth-btn-solid {
  background: transparent;
  color: #116466;
}

.auth-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
}

.auth-link-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-btn:hover,
.auth-btn:focus-visible {
  color: #116466;
  background: transparent;
  outline: none;
}

#logoutBtn {
  color: #e34b32;
}

#logoutBtn:hover,
#logoutBtn:focus-visible {
  color: #ff6a4f;
}

.hero-content {
  background: linear-gradient(140deg, rgba(255, 253, 248, 0.92), rgba(255, 239, 215, 0.9));
  border: 1px solid rgba(22, 33, 35, 0.12);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 2.7vw, 2.5rem);
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(10, 16, 20, 0.48);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.auth-modal-panel {
  width: min(460px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(22, 33, 35, 0.2);
  background: #ffffff;
  box-shadow: 0 22px 56px rgba(11, 30, 38, 0.24);
  padding: 1rem 1rem 1.1rem;
  position: relative;
}

.auth-modal-title {
  margin: 0;
  font-size: clamp(1.45rem, 4vw, 1.9rem);
  line-height: 1.08;
  color: #15252c;
}

.auth-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.55rem;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(22, 33, 35, 0.16);
  background: #ffffff;
  color: rgba(22, 33, 35, 0.74);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.auth-modal-text {
  margin: 0.35rem 0 0.85rem;
  font-size: 0.92rem;
  color: rgba(22, 33, 35, 0.8);
}

.auth-form {
  display: grid;
  gap: 0.56rem;
}

.auth-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
}

.auth-form input {
  border: 1px solid rgba(22, 33, 35, 0.2);
  border-radius: 10px;
  min-height: 42px;
  font: inherit;
  padding: 0.62rem 0.74rem;
}

.auth-submit {
  margin-top: 0.3rem;
  border: 1px solid #6fc5de;
  border-radius: 999px;
  min-height: 40px;
  background: #7ec8dd;
  color: #116466;
  font: inherit;
  font-size: 0.94rem;
  cursor: pointer;
}

.auth-message {
  margin: 0.82rem 0 0;
  min-height: 1.2em;
  font-size: 0.88rem;
  color: #116466;
}

.auth-message-error {
  color: #c63a20;
}

.eyebrow {
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-size: 0.73rem;
  font-weight: 400;
  color: var(--olive);
  margin: 0;
}

h1,
h3,
h4 {
  font-family: inherit;
  font-weight: 400;
  margin: 0;
}

h1 {
  margin-top: 0.7rem;
  font-size: clamp(2rem, 5vw, 3.7rem);
  max-width: 16ch;
  line-height: 1.05;
}

.subline {
  max-width: 56ch;
  font-size: 1.07rem;
  margin: 1rem 0 1.65rem;
}

.search-panel {
  display: grid;
  grid-template-columns: 1fr 220px auto;
  gap: 0.9rem;
  align-items: end;
}

.field {
  display: grid;
  gap: 0.5rem;
  font-weight: 400;
  font-size: 0.86rem;
}

.field input,
.field select {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 14px;
  min-height: 50px;
  font: inherit;
  padding: 0.8rem 0.95rem;
}

main {
  padding-bottom: 2rem;
}

main > * {
  margin-inline-start: var(--header-line-start);
}

.content-page-shell {
  display: grid;
  gap: 1rem;
}

.content-page-hero {
  padding: 0.45rem 0 0.2rem;
}

.content-page-hero[hidden] {
  display: none !important;
}

.content-page-kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(1, 29, 54, 0.68);
}

.content-page-hero h1 {
  margin-top: 0.42rem;
  font-size: clamp(1rem, 2.5vw, 1.85rem);
  font-weight: 700;
  max-width: 14ch;
}

.content-page-hero .subline {
  max-width: 60ch;
  font-size: 0.93rem;
  margin-bottom: 0;
}

.content-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

.content-page-grid[hidden] {
  display: none !important;
}

.content-page-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.content-page-card h2 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
  line-height: 1.2;
  color: #011d36;
}

.content-page-card p {
  margin: 0.5rem 0 0;
  font-size: 0.93rem;
  color: rgba(22, 33, 35, 0.84);
}

.content-page-list {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
  color: rgba(22, 33, 35, 0.84);
}

.content-page-list li {
  font-size: 0.9rem;
}

.content-page-strip {
  border: 1px solid rgba(2, 129, 194, 0.18);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(1, 29, 54, 0.95), rgba(2, 129, 194, 0.92));
  color: #ffffff;
  padding: 1rem 1.1rem 1.05rem;
}

.content-page-strip[hidden] {
  display: none !important;
}

.content-page-strip h2 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.2;
}

.content-page-strip p {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
}

.content-page-form-shell {
  display: flex;
}

.content-page-form-shell[hidden] {
  display: none !important;
}

.content-page-form-card {
  border: 1px solid rgba(1, 29, 54, 0.12);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.88);
  padding: 1.1rem;
  width: 100%;
  max-width: min(100%, calc(50% - 0.7rem));
}

.content-page-form-card h2 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
  color: #011d36;
}

.content-page-form-card > p {
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
  color: rgba(22, 33, 35, 0.82);
}

.content-page-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.95rem;
}

.content-page-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.content-page-field {
  display: grid;
  gap: 0.35rem;
}

.content-page-field[data-span="full"] {
  grid-column: 1 / -1;
}

.content-page-field span {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(1, 29, 54, 0.8);
}

.content-page-field input,
.content-page-field select,
.content-page-field textarea {
  width: 100%;
  border: 1px solid rgba(1, 29, 54, 0.14);
  border-radius: 16px;
  background: #ffffff;
  padding: 0.78rem 0.9rem;
  font: inherit;
  color: #162123;
}

.content-page-field select {
  appearance: none;
  min-height: 62px;
  border-radius: 20px;
  border-color: rgba(1, 29, 54, 0.08);
  background-color: #edf0f3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23606c77' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 12px 8px;
  padding: 1.05rem 3rem 1.05rem 1.05rem;
  font-size: 0.97rem;
  font-weight: 500;
  line-height: 1.2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.content-page-field select[data-empty="true"] {
  color: rgba(22, 33, 35, 0.54);
}

.content-page-field select[data-empty="false"] {
  background-color: #ffffff;
  color: #162123;
  border-color: rgba(1, 29, 54, 0.12);
}

.content-page-field select:focus,
.content-page-field select:active {
  background-color: #ffffff;
  box-shadow:
    0 0 0 3px rgba(2, 129, 194, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.content-page-field select:disabled {
  background-color: #edf0f3;
  color: rgba(22, 33, 35, 0.56);
  cursor: not-allowed;
}

.content-page-field textarea {
  min-height: 108px;
  resize: vertical;
}

.content-page-field input:focus,
.content-page-field select:focus,
.content-page-field textarea:focus {
  outline: 2px solid rgba(2, 129, 194, 0.18);
  border-color: rgba(2, 129, 194, 0.4);
}

.content-page-form-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.content-page-form-button {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #011d36, #0281c2);
  color: #ffffff;
  padding: 0.78rem 1.1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.content-page-form-note {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(22, 33, 35, 0.7);
}

.content-page-form-status {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(22, 33, 35, 0.82);
}

.content-page-form-status[data-state="success"] {
  color: #0b6b4f;
}

.content-page-form-status[data-state="error"] {
  color: #8a2d1b;
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-form-card {
  position: relative;
  border: 0;
  border-radius: 4px;
  background: var(--paper);
  margin-top: 3.2rem;
  padding: 0.55rem;
  box-shadow: none;
  max-width: min(100%, 520px);
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-form-card h2,
.content-page-shell[data-page-key="yer-ekle"] .content-page-form-card > p,
.content-page-shell[data-page-key="yer-ekle"] .content-page-form-status,
.content-page-shell[data-page-key="iletisim"] .content-page-form-card h2,
.content-page-shell[data-page-key="iletisim"] .content-page-form-card > p,
.content-page-shell[data-page-key="iletisim"] .content-page-form-status {
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--box-text);
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-form-card h2 {
  position: absolute;
  left: 0;
  bottom: 100%;
  margin: 0 0 1.45rem;
  padding: 0;
  background: transparent;
  font-size: clamp(1rem, 2.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.05;
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-form {
  margin-top: 0.55rem;
  gap: 0.62rem;
}

.content-page-shell[data-page-key="iletisim"] .content-page-form-card {
  position: relative;
  border: 0;
  border-radius: 4px;
  background: var(--paper);
  margin-top: 0.55rem;
  padding: 0.55rem;
  box-shadow: none;
  max-width: min(100%, 520px);
}

.content-page-shell[data-page-key="iletisim"] .content-page-form-card h2 {
  position: absolute;
  left: 0;
  bottom: 100%;
  margin: 0 0 1.2rem;
  padding: 0;
  background: transparent;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.content-page-shell[data-page-key="iletisim"] .content-page-form {
  margin-top: 0.55rem;
  gap: 0.62rem;
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-form-actions {
  justify-content: flex-end;
}

.content-page-shell[data-page-key="iletisim"] .content-page-form-actions {
  justify-content: flex-end;
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-form-grid {
  gap: 0.5rem;
}

.content-page-shell[data-page-key="iletisim"] .content-page-form-grid {
  gap: 0.5rem;
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-field input,
.content-page-shell[data-page-key="yer-ekle"] .content-page-field select,
.content-page-shell[data-page-key="yer-ekle"] .content-page-field textarea,
.content-page-shell[data-page-key="iletisim"] .content-page-field input,
.content-page-shell[data-page-key="iletisim"] .content-page-field select,
.content-page-shell[data-page-key="iletisim"] .content-page-field textarea {
  min-height: 42px;
  border: 1px solid var(--box-border);
  border-radius: 4px;
  background: var(--paper);
  padding: 0.62rem 0.74rem;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--box-text);
  box-shadow: none;
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-phone-group,
.content-page-shell[data-page-key="iletisim"] .content-page-phone-group {
  display: grid;
  grid-template-columns: 58px 86px minmax(0, 1fr);
  gap: 0.5rem;
  width: 100%;
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-phone-prefix,
.content-page-shell[data-page-key="iletisim"] .content-page-phone-prefix {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--box-border);
  border-radius: 4px;
  background: var(--paper);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--box-text);
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-phone-group input,
.content-page-shell[data-page-key="iletisim"] .content-page-phone-group input {
  min-width: 0;
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-field textarea {
  min-height: 96px;
}

.content-page-shell[data-page-key="iletisim"] .content-page-field textarea {
  min-height: 132px;
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-field input::placeholder,
.content-page-shell[data-page-key="yer-ekle"] .content-page-field textarea::placeholder,
.content-page-shell[data-page-key="iletisim"] .content-page-field input::placeholder,
.content-page-shell[data-page-key="iletisim"] .content-page-field textarea::placeholder {
  color: rgba(22, 33, 35, 0.58);
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-field select {
  min-height: 42px;
  border-radius: 4px;
  border-color: var(--box-border);
  background-color: var(--paper);
  background-position: right 0.74rem center;
  background-size: 10px 6px;
  padding: 0.62rem 2rem 0.62rem 0.74rem;
  font-size: 0.92rem;
  font-weight: 400;
  box-shadow: none;
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-field select[data-empty="true"] {
  color: rgba(22, 33, 35, 0.58);
  background-color: var(--paper);
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-field select[data-empty="false"] {
  color: var(--box-text);
  background-color: var(--paper);
  border-color: var(--box-border);
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-field select:disabled {
  background-color: var(--paper);
  color: rgba(22, 33, 35, 0.46);
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-field input:focus,
.content-page-shell[data-page-key="yer-ekle"] .content-page-field select:focus,
.content-page-shell[data-page-key="yer-ekle"] .content-page-field textarea:focus,
.content-page-shell[data-page-key="iletisim"] .content-page-field input:focus,
.content-page-shell[data-page-key="iletisim"] .content-page-field select:focus,
.content-page-shell[data-page-key="iletisim"] .content-page-field textarea:focus {
  outline: none;
  border-color: var(--box-border);
  box-shadow: 0 0 0 2px var(--box-hover-soft);
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-form-button {
  min-height: 34px;
  border-radius: 12px;
  background: #011d36;
  color: #e1e1e1;
  padding: 0 0.72rem;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1;
}

.content-page-shell[data-page-key="iletisim"] .content-page-form-button {
  min-height: 34px;
  border-radius: 12px;
  background: #011d36;
  color: #e1e1e1;
  padding: 0 0.72rem;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1;
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-form-button:hover {
  background: #384796;
  box-shadow: none;
}

.content-page-shell[data-page-key="iletisim"] .content-page-form-button:hover {
  background: #384796;
  box-shadow: none;
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-form-button:focus-visible {
  background: #022746;
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
  outline: none;
}

.content-page-shell[data-page-key="iletisim"] .content-page-form-button:focus-visible {
  background: #022746;
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
  outline: none;
}

@media (max-width: 620px) {
  .content-page-shell[data-page-key="yer-ekle"] .content-page-phone-group,
  .content-page-shell[data-page-key="iletisim"] .content-page-phone-group {
    grid-template-columns: 52px 76px minmax(0, 1fr);
    gap: 0.4rem;
  }
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 2.6rem;
}

.summary-grid article {
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
}

.summary-grid h2 {
  margin: 0;
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--accent-strong);
}

.summary-grid p {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
}

.category-explorer {
  margin-bottom: 2.6rem;
}

.hero .category-explorer {
  margin-bottom: 1.2rem;
}

.category-search-wrap {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
  font-size: 0.84rem;
  font-weight: 400;
}

.category-search-wrap input {
  min-height: 54px;
  border-radius: 10px;
  border: 1px solid rgba(22, 33, 35, 0.18);
  padding: 0.9rem 1rem;
  font: inherit;
  background: #ffffff;
}

.category-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.category-card {
  appearance: none;
  text-align: left;
  position: relative;
  border: 1px solid var(--box-border);
  border-radius: 12px;
  min-height: 152px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  padding: 0.78rem;
  display: flex;
  align-items: end;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.14) 0%,
    rgba(0, 0, 0, 0.55) 70%,
    rgba(0, 0, 0, 0.72) 100%
  );
  transition: background 0.18s ease;
}

.category-card:hover {
  border-color: var(--box-border);
  box-shadow: 0 0 0 2px var(--box-hover-soft);
  transform: translateY(-2px);
}

.category-card:hover::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.14) 0%,
    rgba(0, 0, 0, 0.55) 70%,
    rgba(0, 0, 0, 0.72) 100%
  );
}

.category-card-content {
  position: relative;
  z-index: 1;
  color: var(--box-text);
}

.category-card:hover .category-card-content {
  color: var(--box-hover-text);
}

.category-card-content h4 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.08;
}

.category-card-content p {
  margin: 0.28rem 0 0;
  font-size: 0.93rem;
  font-weight: 400;
}

.category-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.category-chip {
  border: 1px solid var(--box-border);
  border-radius: 4px;
  background: inherit;
  color: var(--box-text);
  padding: 0.3rem 0.66rem;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  transition: border-color 0.16s ease, color 0.16s ease, background-color 0.16s ease;
}

.category-chip:hover,
.category-chip.active {
  border-color: var(--box-border);
  color: var(--box-hover-text);
}

.category-empty {
  border: 1px dashed var(--box-border);
  border-radius: 12px;
  padding: 0.82rem;
  background: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--box-text);
}

.section-head {
  margin-bottom: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.section-head h3 {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  margin-top: 0.35rem;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0.9rem;
  margin-bottom: 2.8rem;
}

.venue-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.83), rgba(255, 243, 224, 0.76));
  border: 1px solid var(--box-border);
  border-radius: var(--radius);
  color: var(--box-text);
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
  min-height: 190px;
  opacity: 0;
  transform: translateY(14px);
  animation: cardRise 0.45s ease forwards;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.venue-card:hover {
  border-color: var(--box-border);
  box-shadow: 0 0 0 2px var(--box-hover-soft);
  color: var(--box-hover-text);
  transform: translateY(-2px);
}

.venue-card header,
.venue-card footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.55rem;
}

.chip {
  border-radius: 999px;
  font-size: 0.73rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.24rem 0.66rem;
  border: 1px solid rgba(63, 91, 61, 0.35);
  background: rgba(63, 91, 61, 0.14);
  color: var(--olive);
}

.city {
  font-size: 0.84rem;
  color: var(--box-text);
}

.venue-card h4 {
  font-size: 1.14rem;
}

.venue-name-link {
  color: inherit;
  text-decoration: none;
}

.venue-name-link:hover,
.venue-name-link:focus-visible {
  color: var(--box-hover-text);
  text-decoration: none;
  outline: none;
}

.meta {
  margin: 0;
  font-size: 0.95rem;
}

.rating {
  color: var(--box-text);
  font-weight: 400;
}

.budget {
  font-size: 0.86rem;
  padding: 0.2rem 0.58rem;
  border-radius: 999px;
  border: 1px solid var(--box-border);
  color: var(--box-text);
  margin-left: auto;
}

.venue-card:hover .city,
.venue-card:hover .rating,
.venue-card:hover .budget {
  color: var(--box-hover-text);
}

.mini-btn {
  border: 1px solid var(--box-border);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.95);
  color: var(--box-text);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 400;
  padding: 0.3rem 0.62rem;
  cursor: pointer;
}

.mini-btn:hover {
  border-color: var(--box-border);
  color: var(--box-hover-text);
}

.province-head {
  align-items: start;
}

.province-help {
  margin: 0;
  max-width: 30ch;
  font-size: 0.92rem;
}

.home-page .province-head h3 {
  margin-bottom: 0.42rem;
}

.home-page .province-help {
  margin-top: 0.12rem;
  max-width: none;
  white-space: nowrap;
}

.home-page .section-head.province-head {
  margin-bottom: 1.32rem;
}

.bank-total {
  margin-bottom: 0.32rem;
}

.bank-source-note {
  max-width: none;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
}

.bank-pill {
  cursor: default;
}

.market-pill {
  cursor: pointer;
}

.hospital-pill {
  cursor: pointer;
}

.veteriner-pill {
  cursor: pointer;
}

.kuafor-pill {
  cursor: pointer;
}

.yemek-pill {
  cursor: pointer;
}

.province-pill.bank-pill-link,
.province-pill.bank-pill-link:visited,
.province-pill.market-pill-link,
.province-pill.market-pill-link:visited,
.province-pill.hospital-pill-link,
.province-pill.hospital-pill-link:visited,
.province-pill.veteriner-pill-link,
.province-pill.veteriner-pill-link:visited,
.province-pill.kuafor-pill-link,
.province-pill.kuafor-pill-link:visited,
.province-pill.yemek-pill-link,
.province-pill.yemek-pill-link:visited {
  color: var(--box-text);
  text-decoration: none;
}

.province-pill.bank-pill-link:hover,
.province-pill.bank-pill-link:focus-visible,
.province-pill.market-pill-link:hover,
.province-pill.market-pill-link:focus-visible,
.province-pill.hospital-pill-link:hover,
.province-pill.hospital-pill-link:focus-visible,
.province-pill.veteriner-pill-link:hover,
.province-pill.veteriner-pill-link:focus-visible,
.province-pill.kuafor-pill-link:hover,
.province-pill.kuafor-pill-link:focus-visible,
.province-pill.yemek-pill-link:hover,
.province-pill.yemek-pill-link:focus-visible {
  color: var(--box-hover-text);
  text-decoration: none;
}

.featured-venue-pill.is-one-star {
  border-color: #2f6fd6;
  box-shadow: inset 0 0 0 1px rgba(47, 111, 214, 0.16);
}

.featured-venue-pill.is-two-star {
  border-color: #cf3b32;
  box-shadow: inset 0 0 0 1px rgba(207, 59, 50, 0.16);
}

.province-grid {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.top-city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
  margin-bottom: 0.95rem;
}

.top-city-card {
  appearance: none;
  border: 1px solid var(--box-border);
  border-radius: 4px;
  background: inherit;
  color: var(--box-text);
  text-align: left;
  min-height: 78px;
  padding: 0.35rem;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 0.58rem;
  align-items: center;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.top-city-thumb {
  width: 66px;
  height: 66px;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
}

.top-city-content {
  display: grid;
  gap: 0.12rem;
}

.top-city-name {
  font-size: 1.22rem;
  font-weight: 400;
  line-height: 1;
}

.top-city-population {
  font-size: 0.92rem;
  color: var(--box-text);
}

.top-city-card:hover,
.top-city-card.active {
  border-color: var(--box-border);
  box-shadow: 0 0 0 2px var(--box-hover-soft);
  color: var(--box-hover-text);
}

.top-city-card:hover .top-city-population,
.top-city-card.active .top-city-population {
  color: var(--box-hover-text);
}

.category-home-card,
.category-home-card:visited {
  color: var(--link-base);
  text-decoration: none;
}

.category-home-card:hover,
.category-home-card:focus-visible {
  color: var(--link-hover);
  text-decoration: none;
}

.category-home-card .top-city-content {
  gap: 0;
}

.category-home-card .top-city-population {
  display: none;
}

.category-home-card.is-disabled {
  border-style: dashed;
  background: #f1f1f1;
  opacity: 0.76;
  cursor: not-allowed;
}

.category-home-card.is-disabled:hover,
.category-home-card.is-disabled:focus-visible {
  border-color: rgba(22, 33, 35, 0.18);
  box-shadow: none;
  background: #f1f1f1;
}

.district-filter-wrap {
  display: grid;
  gap: 0.35rem;
  max-width: 280px;
  margin-bottom: 1.85rem;
}

.district-filter-label {
  font-size: 0.82rem;
  color: rgba(22, 33, 35, 0.84);
}

.district-filter-select {
  appearance: none;
  border: 1px solid var(--box-border);
  border-radius: 8px;
  background: inherit;
  color: var(--box-text);
  min-height: 38px;
  padding: 0.38rem 2rem 0.38rem 0.62rem;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(22, 33, 35, 0.65) 50%),
    linear-gradient(135deg, rgba(22, 33, 35, 0.65) 50%, transparent 50%);
  background-position:
    calc(100% - 14px) calc(50% - 2px),
    calc(100% - 9px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.district-filter-select:hover,
.district-filter-select:focus-visible {
  border-color: var(--box-border);
  box-shadow: 0 0 0 2px var(--box-hover-soft);
  color: var(--box-hover-text);
  outline: none;
}

.province-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: start;
  gap: 0.9rem;
  padding: 0.35rem 0;
}

.province-region {
  margin: 0;
  font-family: inherit;
  font-weight: 400;
  font-size: 1.12rem;
  color: var(--ink);
}

.province-region-title {
  display: block;
}

.province-region-meta {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.92rem;
  line-height: 1.2;
  color: rgba(22, 33, 35, 0.82);
  white-space: nowrap;
}

.province-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.city-detail {
  border-radius: 30px;
  border: 1px solid var(--box-border);
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.95), rgba(226, 242, 232, 0.72));
  padding: clamp(1.1rem, 2.4vw, 2rem);
  margin-bottom: 2.3rem;
}

.is-hidden {
  display: none;
}

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

.city-detail-head {
  margin-bottom: 1.1rem;
}

.city-detail-head h3 {
  margin-top: 0.35rem;
}

.city-summary {
  margin: 0.65rem 0 0;
  max-width: 65ch;
}

.city-detail-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
  margin-bottom: 0.95rem;
}

.city-detail-stats article {
  border-radius: 16px;
  border: 1px solid var(--box-border);
  background: rgba(255, 255, 255, 0.58);
  padding: 0.8rem 0.85rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.city-detail-stats article:hover {
  border-color: var(--box-border);
  box-shadow: 0 0 0 2px var(--box-hover-soft);
}

.city-detail-stats h4 {
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  color: var(--accent-strong);
}

.city-detail-stats p {
  margin: 0.2rem 0 0;
  font-size: 0.84rem;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
}

.city-tag {
  border: 1px solid rgba(22, 33, 35, 0.15);
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  font-size: 0.79rem;
  background: rgba(255, 255, 255, 0.72);
}

.city-share-link {
  color: var(--link-base);
  font-size: 0.9rem;
  font-weight: 400;
}

.province-pill {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--box-border);
  border-radius: 4px;
  background: inherit;
  color: var(--box-text);
  padding: 0.3rem 0.66rem;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  display: inline-block;
  transition: all 0.18s ease;
}

.province-pill:hover,
.province-pill.active {
  border-color: var(--box-border);
  color: var(--box-hover-text);
}

body.map-focus-open {
  overflow: hidden;
}

body.search-choice-open {
  overflow: hidden;
}

.search-choice-modal {
  position: fixed;
  inset: 0;
  z-index: 1650;
  display: grid;
  place-items: center;
  padding: clamp(0.8rem, 2vw, 1.2rem);
}

.search-choice-modal[hidden] {
  display: none !important;
}

.search-choice-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: rgba(8, 14, 18, 0.5);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.search-choice-panel {
  position: relative;
  width: min(520px, 100%);
  max-height: min(76vh, 720px);
  border: 1px solid var(--box-border);
  border-radius: 18px;
  background: #fffdf8;
  box-shadow: 0 24px 70px rgba(10, 18, 26, 0.24);
  padding: 1rem;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.search-choice-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.search-choice-head-text {
  display: grid;
  gap: 0.22rem;
}

.search-choice-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #011d36;
}

.search-choice-text,
.search-choice-note {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(22, 33, 35, 0.76);
}

.search-choice-close {
  border: 0;
  background: transparent;
  color: #011d36;
  font: inherit;
  font-size: 0.84rem;
  padding: 0.18rem 0.24rem;
  cursor: pointer;
}

.search-choice-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.9rem;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 0.2rem;
  scrollbar-width: thin;
}

.search-choice-option {
  width: 100%;
  border: 1px solid var(--box-border);
  border-radius: 12px;
  background: #ffffff;
  padding: 0.72rem 0.78rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.16s ease, background-color 0.16s ease;
}

.search-choice-option:hover,
.search-choice-option:focus-visible {
  border-color: #384796;
  background: #f7f8fd;
  outline: none;
}

.search-choice-option-title,
.search-choice-option-meta {
  display: block;
}

.search-choice-option-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #011d36;
}

.search-choice-option-meta {
  margin-top: 0.24rem;
  font-size: 0.79rem;
  color: rgba(22, 33, 35, 0.7);
}

.search-choice-note {
  margin-top: 0.85rem;
}

.map-focus-modal {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: grid;
  place-items: center;
  padding: clamp(0.8rem, 2.2vw, 1.4rem);
}

.map-focus-modal[hidden] {
  display: none !important;
}

.map-focus-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: rgba(8, 14, 18, 0.56);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.map-focus-panel {
  position: relative;
  width: min(980px, 100%);
  max-height: min(88vh, 860px);
  border: 1px solid var(--box-border);
  border-radius: 18px;
  background: #fffdf8;
  box-shadow: 0 24px 70px rgba(10, 18, 26, 0.28);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.map-focus-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.95rem 1rem 0.65rem;
}

.map-focus-eyebrow {
  margin: 0 0 0.16rem;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(22, 33, 35, 0.66);
}

.map-focus-title {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  line-height: 1.22;
  color: #142126;
}

.map-focus-close {
  border: 1px solid var(--box-border);
  border-radius: 999px;
  background: #fff;
  color: var(--box-text);
  min-height: 34px;
  padding: 0 0.85rem;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}

.map-focus-close:hover,
.map-focus-close:focus-visible {
  border-color: var(--box-border);
  color: var(--box-hover-text);
  outline: none;
}

.map-focus-body {
  display: grid;
  grid-template-columns: minmax(230px, 32%) minmax(0, 68%);
  gap: 0.9rem;
  padding: 0 1rem 0.95rem;
}

.map-focus-info-card {
  border: 1px solid var(--box-border);
  border-radius: 13px;
  background: #fff;
  padding: 0.72rem 0.78rem;
  overflow: auto;
}

.map-focus-info-title {
  margin: 0 0 0.56rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(20, 33, 38, 0.94);
}

.map-focus-info-list {
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.map-focus-info-row {
  margin: 0;
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed rgba(22, 33, 35, 0.12);
}

.map-focus-info-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.map-focus-info-row dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(22, 33, 35, 0.54);
  margin: 0 0 0.14rem;
}

.map-focus-info-row dd {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.35;
  color: rgba(22, 33, 35, 0.9);
  word-break: break-word;
}

.map-focus-info-photo {
  display: block;
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(22, 33, 35, 0.12);
  background: #edf1f5;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 0.46rem;
}

.map-focus-info-photo[hidden] {
  display: none !important;
}

.map-focus-info-row a {
  color: var(--box-text);
  text-decoration: none;
}

.map-focus-info-row a:hover,
.map-focus-info-row a:focus-visible {
  color: var(--box-hover-text);
  text-decoration: none;
}

.map-focus-frame-wrap {
  padding: 0;
}

.map-focus-frame {
  width: 100%;
  min-height: min(64vh, 620px);
  border: 1px solid var(--box-border);
  border-radius: 13px;
  background: #e8ecef;
}

.map-focus-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.74rem 1rem 0.95rem;
}

.map-focus-subtitle {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(22, 33, 35, 0.78);
}

.map-focus-external {
  border: 1px solid var(--box-border);
  border-radius: 999px;
  padding: 0.38rem 0.85rem;
  font-size: 0.83rem;
  color: var(--box-text);
  background: #fff;
  text-decoration: none;
}

.map-focus-external:hover,
.map-focus-external:focus-visible {
  border-color: var(--box-border);
  color: var(--box-hover-text);
  outline: none;
}

@media (max-width: 860px) {
  .map-focus-modal {
    padding:
      max(0.55rem, env(safe-area-inset-top, 0px))
      0.55rem
      max(0.55rem, env(safe-area-inset-bottom, 0px))
      0.55rem;
  }

  .map-focus-panel {
    max-height: calc(100vh - 1.1rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    border-radius: 14px;
  }

  .map-focus-head {
    padding: 0.78rem 0.8rem 0.55rem;
  }

  .map-focus-body {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding: 0 0.8rem 0.75rem;
  }

  .map-focus-frame-wrap {
    padding: 0;
  }

  .map-focus-frame {
    min-height: min(56vh, 430px);
  }

  .map-focus-foot {
    flex-direction: column;
    align-items: stretch;
    padding: 0.62rem 0.8rem 0.8rem;
  }

  .map-focus-external {
    text-align: center;
  }
}

.province-city {
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.2;
}

.empty-state {
  grid-column: 1 / -1;
  background: rgba(255, 253, 248, 0.86);
  border-radius: var(--radius);
  border: 1px dashed rgba(22, 33, 35, 0.25);
  padding: 1.2rem;
  font-weight: 400;
}

.yr-footer {
  margin-top: auto;
  background: #011d36;
  color: rgba(235, 244, 255, 0.9);
  position: relative;
  z-index: 2;
}

.yr-footer-inner {
  width: min(1220px, calc(100% - 2.4rem));
  margin-inline: auto;
  padding: 1.8rem 0 1.1rem var(--header-line-start);
}

.yr-footer-grid {
  border-top: 1px solid rgba(171, 208, 245, 0.22);
  padding-top: 1rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1rem;
}

.yr-footer-col h4 {
  margin: 0 0 0.62rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: #ffffff;
}

.yr-footer-grid > .yr-footer-col:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.yr-footer-col a,
.yr-footer-col a:visited {
  display: block;
  width: fit-content;
  color: #e1e1e1;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0.42rem;
  border-bottom: 0;
}

.yr-footer-col a:hover,
.yr-footer-col a:focus-visible {
  color: #0281c2;
  border-bottom-color: transparent;
  text-decoration: none;
  outline: none;
}

.yr-footer-col a.store-badge,
.yr-footer-col a.store-badge:hover {
  min-width: 180px;
  border-radius: 12px;
  border: 1px solid #a4b3b5;
  background: #0f1113;
  color: #ffffff !important;
  padding: 0.45rem 0.75rem;
  margin-bottom: 0.5rem;
}

.store-badge-top {
  display: block;
  font-size: 0.68rem;
  line-height: 1.1;
  opacity: 0.85;
}

.store-badge-name {
  display: block;
  font-size: 1.56rem;
  line-height: 1.05;
}

.qr-col p {
  margin: 0.45rem 0 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
}

.qr-box {
  width: 132px;
  height: 132px;
  border-radius: 16px;
  border: 1px solid rgba(22, 33, 35, 0.16);
  background:
    linear-gradient(90deg, rgba(77, 101, 118, 0.12) 50%, transparent 50%),
    linear-gradient(rgba(77, 101, 118, 0.12) 50%, transparent 50%),
    #d2e3e7;
  background-size: 18px 18px;
  display: grid;
  place-items: center;
  font-size: 1.28rem;
  color: rgba(22, 33, 35, 0.68);
}

.yr-footer-bottom {
  margin-top: 1.25rem;
  border-top: 1px solid rgba(171, 208, 245, 0.22);
  padding-top: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.yr-footer-bottom p {
  margin: 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(214, 234, 255, 0.72);
}

.yr-footer-social {
  display: flex;
  gap: 0.8rem;
}

.yr-footer-social a {
  display: inline-flex;
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 1.35rem;
  color: transparent;
  text-decoration: none;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.92;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.yr-footer-social a:hover,
.yr-footer-social a:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
  outline: none;
}

.yr-footer-social a:nth-child(1) {
  background-image: url("assets/instagram.png");
}

.yr-footer-social a:nth-child(2) {
  background-image: url("assets/x.png");
}

.yr-footer-social a:nth-child(3) {
  background-image: url("assets/facebook.png");
}

.mobile-bottom-nav {
  display: none;
}

.mobile-bottom-search {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: calc(100% + 0.45rem);
  margin-bottom: 0;
  border: 1px solid var(--mobile-search-border);
  border-radius: 14px;
  background: var(--mobile-search-bg);
  box-shadow: 0 14px 30px rgba(2, 7, 18, 0.4);
  padding: 0.52rem;
}

.mobile-bottom-search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.mobile-bottom-search-input {
  min-height: 44px;
  border: 1px solid var(--mobile-search-input-border);
  border-radius: 12px;
  background: var(--mobile-search-input-bg);
  color: var(--mobile-search-input-text);
  font: inherit;
  font-size: 0.95rem;
  padding: 0.52rem 0.78rem;
}

.mobile-bottom-search-input:focus-visible {
  border-color: var(--hover-blue);
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
  outline: none;
}

.mobile-bottom-search-submit {
  min-height: 44px;
  border: 1px solid var(--mobile-search-submit-border);
  border-radius: 12px;
  background: var(--mobile-search-submit-bg);
  color: var(--mobile-search-submit-text);
  min-width: 72px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
}

.mobile-bottom-nav-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.2rem;
}

.mobile-bottom-nav-btn {
  border: 0;
  border-radius: 12px;
  background: transparent;
  min-height: 60px;
  width: auto;
  justify-self: stretch;
  color: var(--mobile-nav-icon);
  padding: 0.16rem 0.08rem;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0;
  font: inherit;
  font-size: 0;
  transition: color 0.16s ease, transform 0.16s ease;
}

.mobile-bottom-nav-icon {
  display: none;
}

.mobile-bottom-nav-chip {
  width: var(--mobile-nav-chip-size);
  height: var(--mobile-nav-chip-size);
  border-radius: 999px;
  border: 1px solid var(--mobile-nav-chip-border);
  background: var(--mobile-nav-chip-bg);
  display: grid;
  place-items: center;
}

.mobile-bottom-nav-icon-svg {
  width: var(--mobile-nav-icon-size);
  height: var(--mobile-nav-icon-size);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-bottom-nav-icon-img {
  width: var(--mobile-nav-icon-size);
  height: var(--mobile-nav-icon-size);
  object-fit: contain;
  display: block;
  mix-blend-mode: normal;
}

.mobile-bottom-nav-btn.active .mobile-bottom-nav-icon-img {
  filter: none;
}

.mobile-bottom-nav-icon-svg-fallback {
  display: none;
}

.mobile-bottom-nav-btn[data-mobile-nav="profile"].active .mobile-bottom-nav-icon-img {
  display: block;
  mix-blend-mode: normal;
  filter: brightness(0) invert(1);
}

.mobile-bottom-nav-btn[data-mobile-nav="profile"].active .mobile-bottom-nav-icon-svg-fallback {
  display: none;
}

.mobile-bottom-nav-chip.icon-load-failed .mobile-bottom-nav-icon-img {
  display: none;
}

.mobile-bottom-nav-chip.icon-load-failed .mobile-bottom-nav-icon-svg-fallback {
  display: block;
}

.mobile-bottom-nav-label {
  display: none;
}

.mobile-bottom-nav-btn.active {
  color: var(--mobile-nav-icon-active);
  transform: translateY(-0.5px);
}

.mobile-bottom-nav-btn.active .mobile-bottom-nav-chip {
  background: var(--mobile-nav-chip-active-bg);
  border-color: var(--mobile-nav-chip-active-border);
  box-shadow: 0 5px 12px rgba(44, 53, 50, 0.28);
}

@keyframes cardRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .content-page-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .province-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .city-detail-stats {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: center;
    flex-wrap: wrap;
  }

  .header-search {
    order: 3;
    flex: 1 1 100%;
    max-width: none;
    min-width: 0;
  }

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

  .qr-col {
    grid-column: span 2;
  }

}

@media (max-width: 620px) {
  .hero,
  main {
    width: min(1220px, calc(100% - 1.2rem));
  }

  .global-header-band {
    width: min(1220px, calc(100% - 1.2rem));
  }

  .global-topbar {
    margin-bottom: 0.65rem;
  }

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

  .category-card-grid {
    grid-template-columns: 1fr;
  }

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

  .content-page-form-card {
    max-width: 100%;
  }

  .yr-footer-grid {
    grid-template-columns: 1fr;
  }

  .qr-col {
    grid-column: auto;
  }

  .yr-footer-col a.store-badge,
.yr-footer-col a.store-badge:hover {
    min-width: 165px;
  }

  .yr-footer-inner {
    width: min(1220px, calc(100% - 1.2rem));
  }

  .yr-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  .header-search {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .auth-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .lang-switch-menu {
    left: 0;
    right: auto;
    flex-wrap: wrap;
    max-width: 174px;
  }
}

@media (max-width: 860px) {
  body {
    background: #dfdfdf;
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 86px);
    --content-offset: 1.2rem;
    --header-line-start: 0.72rem;
  }

  .texture {
    opacity: 0.26;
  }

  .global-header-band {
    position: relative;
    top: 0;
    width: min(1220px, calc(100% - 1rem));
    margin-top: 0;
    padding-top: 0;
    border: 0;
    border-radius: 0;
    background: var(--bg);
    backdrop-filter: none;
    box-shadow: none;
  }

  .global-topbar {
    margin-bottom: 0;
    padding: 0.56rem 0.68rem 0.62rem var(--header-line-start);
  }

  .global-topline {
    display: block;
    border-top: 0;
  }

  .global-topline:empty {
    display: none;
    border-top: 0;
  }

  .topbar {
    align-items: stretch;
    gap: 0.65rem;
  }

  .global-topline-inner {
    min-height: 36px;
    margin-inline-start: 0;
    padding: 0.34rem 0.72rem 0.5rem var(--header-line-start);
    gap: 0.36rem;
    font-size: 0.8rem;
    color: rgba(22, 33, 35, 0.72);
    flex-wrap: wrap;
  }

  .brand {
    width: 100%;
  }

  .global-topbar .brand-wordmark,
  .brand-wordmark {
    font-size: clamp(1.62rem, 7.2vw, 2.22rem);
    letter-spacing: -0.03em;
  }

  .topbar .brand-wordmark::before {
    width: 1.3em;
    height: 1.3em;
    flex: 0 0 1.3em;
  }

  .header-search {
    display: none;
  }

  .search-page .header-search {
    display: flex;
  }

  .search-page .global-header-band {
    margin-top: 0;
  }

  .search-page-shell {
    padding-top: 0.35rem;
  }

  .search-page .header-search-input,
  .search-page .header-search-btn {
    min-height: 40px;
    border-radius: 11px;
  }

  .search-page .header-search-btn {
    min-width: 60px;
    padding-inline: 0.78rem;
    font-size: 0.88rem;
    font-weight: 700;
  }

  .header-search-input,
  .header-search-btn {
    min-height: 44px;
    border-radius: 12px;
    font-size: 0.95rem;
  }

  .header-search-btn {
    min-height: 40px;
    min-width: 56px;
    padding-inline: 0.7rem;
    font-size: 0.84rem;
    font-weight: 400;
  }

  .search-page .header-search-btn {
    font-weight: 400;
  }

  .hero,
  main {
    width: min(1220px, calc(100% - 1rem));
  }

  .hero {
    padding: 0.95rem 0 1rem;
  }

  .section-head.province-head {
    margin-bottom: 0.72rem;
    padding-inline: 0;
  }

  .home-page .section-head.province-head {
    margin-bottom: 1rem;
  }

  .top-city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.62rem;
  }

  .top-city-card {
    min-height: 88px;
    border-radius: 16px;
    grid-template-columns: 58px 1fr;
    padding: 0.45rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 5px 14px rgba(18, 26, 42, 0.08);
  }

  .top-city-card:hover,
  .top-city-card.active {
    transform: translateY(-1px);
  }

  .top-city-thumb {
    width: 58px;
    height: 58px;
    border-radius: 12px;
  }

  .top-city-name {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .yr-footer {
    display: none;
  }

  .mobile-bottom-nav {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    z-index: 120;
    border-top: 1px solid var(--mobile-nav-border);
    border-radius: 0;
    background-color: var(--bg);
    background-image: none;
    box-shadow: var(--mobile-nav-shadow);
    backdrop-filter: blur(10px);
    padding:
      0.26rem max(0.64rem, env(safe-area-inset-left, 0px))
      calc(0.26rem + env(safe-area-inset-bottom, 0px))
      max(0.64rem, env(safe-area-inset-right, 0px));
  }
}

@media (max-width: 520px) {
  .top-city-grid {
    grid-template-columns: 1fr;
  }
}
