:root {
  --bg: #f7f4ed;
  --surface: #fffdf8;
  --surface-strong: #f0eadc;
  --text: #243126;
  --muted: #687463;
  --line: rgba(64, 82, 61, 0.16);
  --green: #526f42;
  --green-dark: #31482d;
  --olive: #85936a;
  --gold: #b58a45;
  --shadow: 0 18px 48px rgba(48, 59, 39, 0.13);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(247, 244, 237, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fffdf8;
  background: var(--green-dark);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: #3b4739;
  font-size: 14px;
  font-weight: 650;
}

.main-nav a {
  padding: 8px 0;
}

.main-nav a:hover,
.text-link:hover,
.article-card a:hover,
.place-card a:hover {
  color: var(--green);
}

.language-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.language-switch a {
  padding: 6px 9px;
  color: var(--muted);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

.language-switch .active {
  color: #fffdf8;
  background: var(--green-dark);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 680px;
  align-items: end;
  overflow: hidden;
  padding: clamp(96px, 12vw, 150px) clamp(20px, 5vw, 72px) 48px;
  color: #fffdf8;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 38, 26, 0.78) 0%, rgba(24, 38, 26, 0.54) 38%, rgba(24, 38, 26, 0.12) 100%),
    linear-gradient(0deg, rgba(22, 29, 20, 0.55), rgba(22, 29, 20, 0.04) 42%),
    url("assets/marienbad-hero.png") center / cover no-repeat;
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ead2a3;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 8vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.business-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
}

.btn.primary {
  color: #fffdf8;
  background: var(--green);
}

.btn.secondary {
  color: #fffdf8;
  border-color: rgba(255, 253, 248, 0.46);
  background: rgba(255, 253, 248, 0.11);
}

.btn.ghost {
  color: var(--green-dark);
  border-color: rgba(49, 72, 45, 0.24);
  background: #fffdf8;
}

.hero-panel {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 48px;
  width: min(330px, calc(100% - 40px));
  padding: 22px;
  color: var(--text);
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(255, 253, 248, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel span,
.place-card span,
.tag {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 22px;
}

.hero-panel p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 78px clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading.split {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: 0;
}

.text-link {
  color: var(--green-dark);
  font-weight: 850;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(150px, 1fr));
  gap: 14px;
}

.category-card,
.article-card,
.place-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(48, 59, 39, 0.06);
}

.category-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
}

.category-card:hover,
.article-card:hover,
.place-card:hover {
  transform: translateY(-2px);
  transition: transform 160ms ease;
}

.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--green-dark);
  background: #e4ecd9;
  border-radius: var(--radius);
}

.category-card strong {
  font-size: 18px;
  line-height: 1.2;
}

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

.content-preview {
  background: #fffaf0;
  border-block: 1px solid var(--line);
}

.article-grid,
.places-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.article-card {
  padding: 26px;
}

.article-card h3 {
  margin: 12px 0 12px;
  font-size: 23px;
  line-height: 1.18;
}

.article-card p {
  color: var(--muted);
}

.article-card a,
.place-card a {
  color: var(--green-dark);
  font-weight: 850;
}

.places-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0), rgba(255, 253, 248, 0.74)),
    var(--bg);
}

.place-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(238, 232, 213, 0.86)),
    var(--surface);
}

.place-card h3 {
  margin: 10px 0 0;
  font-size: 28px;
  line-height: 1.12;
}

.business-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin: 18px clamp(20px, 5vw, 72px) 84px;
  padding: clamp(28px, 5vw, 52px);
  color: #fffdf8;
  background: linear-gradient(135deg, #31482d, #637b4d);
  border-radius: var(--radius);
}

.business-cta .eyebrow {
  color: #ecd2a0;
}

.business-cta h2 {
  margin-bottom: 14px;
}

.business-cta p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.82);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: rgba(255, 253, 248, 0.78);
  background: #263322;
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
  color: #fffdf8;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.page-hero {
  padding: 58px clamp(20px, 5vw, 72px) 72px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(239, 234, 221, 0.78)),
    var(--bg);
  border-bottom: 1px solid var(--line);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--green-dark);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 42px;
  align-items: end;
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 20px;
  color: var(--text);
  font-size: clamp(42px, 6vw, 76px);
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.directory-note {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.directory-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.directory-note .btn {
  width: 100%;
  margin-top: 8px;
}

.directory-layout {
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  gap: 18px 28px;
  align-items: start;
  padding-top: 58px;
}

.directory-controls {
  display: grid;
  align-self: start;
  gap: 22px;
  grid-row: span 3;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(48, 59, 39, 0.06);
}

@media (min-width: 901px) {
  .directory-controls {
    position: sticky;
    top: 94px;
    max-height: calc(100vh - 118px);
    overflow: auto;
  }
}

.directory-controls h2 {
  font-size: clamp(28px, 3vw, 38px);
}

.hotel-filter-stack {
  display: grid;
  gap: 18px;
}

.filter-field {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.filter-field select,
.filter-field input {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  color: var(--text);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 650;
}

.filter-group {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 0;
  color: var(--text);
  border: 0;
}

.filter-group legend {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3d493a;
  font-size: 14px;
  font-weight: 700;
}

.filter-group input {
  width: 17px;
  height: 17px;
  accent-color: var(--green);
}

.search-box {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(48, 59, 39, 0.06);
}

.search-box svg {
  flex: 0 0 auto;
  color: var(--green);
}

.search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font: inherit;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chips.vertical {
  display: grid;
}

.chip {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  color: var(--green-dark);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.filter-chips.vertical .chip {
  justify-content: flex-start;
  width: 100%;
  text-align: left;
}

.chip.active {
  color: #fffdf8;
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.directory-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-weight: 800;
}

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

.hotel-browser {
  scroll-margin-top: 76px;
  background: #fffaf0;
  border-bottom: 1px solid var(--line);
}

.hotel-summary {
  padding-top: 22px;
}

.hotel-grid {
  align-items: start;
  grid-template-columns: repeat(auto-fill, minmax(300px, 360px));
  justify-content: start;
}

.hotel-card {
  width: 100%;
  max-width: 360px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(48, 59, 39, 0.08);
}

.hotel-card[hidden] {
  display: none;
}

.hotel-photo {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--surface-strong);
}

.hotel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 48%;
  display: block;
}

.hotel-photo-center img {
  object-position: 72% 48%;
}

.hotel-photo-park img {
  object-position: 42% 44%;
}

.hotel-photo-apartments img {
  object-position: 50% 68%;
}

.hotel-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  content: "";
  background: linear-gradient(180deg, rgba(36, 49, 38, 0), rgba(36, 49, 38, 0.5));
}

.hotel-favorite,
.hotel-photo-nav {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(255, 253, 248, 0.84);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(36, 49, 38, 0.18);
  cursor: pointer;
}

.hotel-favorite {
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
}

.hotel-favorite svg {
  width: 22px;
  height: 22px;
  color: var(--green);
  fill: rgba(82, 111, 66, 0.12);
}

.hotel-photo-nav {
  top: 50%;
  width: 34px;
  height: 34px;
  color: #fffdf8;
  background: rgba(36, 49, 38, 0.58);
  border-color: rgba(255, 253, 248, 0.24);
  transform: translateY(-50%);
}

.hotel-photo-nav.prev {
  left: 12px;
}

.hotel-photo-nav.next {
  right: 12px;
}

.hotel-photo-count {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  min-width: 48px;
  padding: 6px 9px;
  color: #fffdf8;
  background: rgba(36, 49, 38, 0.72);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.hotel-card-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.hotel-card h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.14;
}

.hotel-location {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 650;
}

.hotel-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  color: var(--text);
}

.hotel-rating span {
  display: inline-grid;
  min-width: 42px;
  height: 36px;
  place-items: center;
  color: #fffdf8;
  background: var(--green);
  border-radius: var(--radius);
  font-weight: 900;
}

.hotel-rating strong {
  font-size: 16px;
}

.hotel-rating small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hotel-deal {
  width: max-content;
  max-width: 100%;
  margin-top: 12px;
  padding: 8px 10px;
  color: #fffdf8;
  background: var(--gold);
  border-radius: var(--radius);
  font-weight: 900;
}

.hotel-price {
  display: grid;
  gap: 3px;
  color: var(--green-dark);
}

.hotel-price span {
  font-size: 18px;
  font-weight: 650;
}

.hotel-price strong {
  color: var(--green-dark);
  font-size: 20px;
  line-height: 1.18;
}

.hotel-price small {
  color: #407147;
  font-size: 14px;
  font-weight: 750;
}

.hotel-card-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  color: #fffdf8;
  background: var(--green);
  border-radius: var(--radius);
  font-weight: 850;
}

.company-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(48, 59, 39, 0.06);
}

.company-card[hidden] {
  display: none;
}

.company-logo {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: #fffdf8;
  background: linear-gradient(135deg, var(--green-dark), var(--olive));
  border-radius: var(--radius);
  font-weight: 900;
}

.company-topline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.company-card h3 {
  margin: 12px 0 8px;
  font-size: 25px;
  line-height: 1.16;
}

.company-card p {
  color: var(--muted);
}

.company-card dl {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
}

.company-card dl div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
}

.company-card dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.company-card dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.company-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.small-btn {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  color: #fffdf8;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 850;
}

.small-btn.outline {
  color: var(--green-dark);
  background: #fffdf8;
  border-color: var(--line);
}

.empty-state {
  margin: 28px 0 0;
  padding: 24px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 750;
}

.admin-page {
  min-height: calc(100vh - 75px);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.7), rgba(247, 244, 237, 0)),
    var(--bg);
}

.admin-hero {
  padding: 54px clamp(20px, 5vw, 72px) 24px;
}

.admin-hero h1 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: clamp(42px, 6vw, 70px);
}

.admin-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.admin-login-panel,
.admin-dashboard {
  padding: 20px clamp(20px, 5vw, 72px) 72px;
}

.admin-login-card {
  display: grid;
  gap: 18px;
  width: min(460px, 100%);
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.admin-login-card h2 {
  font-size: 34px;
}

.admin-error,
.admin-status {
  margin: 0;
  color: var(--gold);
  font-weight: 850;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.admin-toolbar h2 {
  font-size: clamp(32px, 4vw, 46px);
}

.admin-toolbar-actions,
.admin-form-actions,
.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 24px;
  align-items: start;
}

.admin-form,
.admin-list-panel {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(48, 59, 39, 0.06);
}

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

.filter-field textarea {
  width: 100%;
  min-height: 92px;
  resize: vertical;
  padding: 10px 11px;
  color: var(--text);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 650;
}

.admin-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 16px;
  margin: 18px 0 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-checks legend {
  padding: 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-checks label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3d493a;
  font-size: 14px;
  font-weight: 750;
}

.admin-checks input {
  width: 17px;
  height: 17px;
  accent-color: var(--green);
}

.photo-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin: 14px 0 20px;
}

.admin-photo-thumb {
  position: relative;
  overflow: hidden;
  min-height: 92px;
  padding: 0;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.admin-photo-thumb img {
  width: 100%;
  height: 100%;
  min-height: 92px;
  object-fit: cover;
  display: block;
}

.admin-photo-thumb span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 5px 7px;
  color: #fffdf8;
  background: rgba(36, 49, 38, 0.75);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 850;
}

.admin-hotel-list {
  display: grid;
  gap: 12px;
}

.admin-hotel-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-hotel-row img {
  width: 72px;
  height: 58px;
  object-fit: cover;
  border-radius: var(--radius);
}

.admin-hotel-row strong,
.admin-hotel-row span {
  display: block;
}

.admin-hotel-row strong {
  margin-bottom: 4px;
}

.admin-hotel-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.admin-row-actions {
  grid-column: 1 / -1;
}

.small-btn.danger {
  color: #fffdf8;
  background: #9f4a32;
  border-color: #9f4a32;
}

@media (max-width: 1180px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .menu-toggle {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--green-dark);
  }

  .main-nav {
    position: absolute;
    top: 75px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: 720px;
    align-items: start;
    padding-top: 118px;
  }

  .hero-panel {
    right: 20px;
    bottom: 24px;
    left: 20px;
    width: auto;
  }

  .article-grid,
  .places-grid,
  .business-cta,
  .site-footer,
  .directory-layout,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .directory-controls {
    grid-row: auto;
  }

  .business-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 680px) {
  .site-header {
    gap: 10px;
    padding: 12px 16px;
  }

  .brand small {
    display: none;
  }

  .language-switch a {
    padding: 6px 7px;
  }

  .hero {
    min-height: 760px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-actions,
  .business-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 56px 16px;
  }

  .page-hero {
    padding: 34px 16px 48px;
  }

  .section-heading.split {
    display: block;
  }

  .section-heading.split .text-link {
    display: inline-block;
    margin-top: 14px;
  }

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

  .category-card {
    min-height: auto;
  }

  .business-cta {
    margin: 0 16px 56px;
    padding: 28px 20px;
  }

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

  .company-card dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .company-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hotel-photo {
    height: 190px;
  }

  .hotel-facts {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 30px 16px;
  }
}
