@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

:root {
  --broth: #dc2626;
  --broth-dark: #991b1b;
  --broth-very-dark: #300606;
  --sesame: #f59e0b;
  --obsidian: #0f172a;
  --charcoal: #1e293b;
  --ink: #f8fafc;
  --muted: #94a3b8;
  --paper: #0f172a;
  --cream: #162033;
  --maroon: #dc2626;
  --red: #f59e0b;
  --line: #334155;
  --white: #1e293b;
  --serif: "Montserrat", sans-serif;
  --sans: "Montserrat", sans-serif;
  --section-space: 88px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--obsidian);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.site-header {
  align-items: center;
  background: rgba(15, 23, 42, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 32px;
  height: 78px;
  justify-content: space-between;
  padding: 0 max(5.5%, calc((100% - 1200px) / 2));
  position: sticky;
  top: 0;
  z-index: 10;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.brand {
  align-items: center;
  display: flex;
  font-family: var(--sans);
  font-size: 19px;
  gap: 10px;
  white-space: nowrap;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-copy strong {
  color: var(--ink);
  font-size: 18px;
  letter-spacing: -0.4px;
}
.brand-copy small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-top: 5px;
  text-transform: uppercase;
}
.brand-mark {
  align-items: center;
  background: var(--broth);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font:
    700 20px Georgia,
    serif;
  height: 38px;
  justify-content: center;
  letter-spacing: -0.4px;
  width: 38px;
}
.search {
  align-items: center;
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 5px;
  display: flex;
  flex: 0 1 430px;
  height: 43px;
  padding-left: 13px;
}
.search span {
  color: var(--red);
  font-size: 23px;
  line-height: 0;
  transform: rotate(-20deg);
}
.search input {
  background: transparent;
  border: 0;
  color: var(--ink);
  flex: 1;
  font: inherit;
  outline: 0;
  padding: 0 10px;
}
.search button {
  background: var(--sesame);
  border: 0;
  color: var(--obsidian);
  cursor: pointer;
  height: 100%;
  padding: 0 16px;
}
.list-button {
  background: var(--sesame);
  border: 1px solid var(--sesame);
  border-radius: 8px;
  color: var(--obsidian);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 15px;
  white-space: nowrap;
}
.list-button span,
.dark-button span,
.book-button span {
  margin-left: 8px;
}
.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--sesame);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  height: 42px;
  padding: 0;
  width: 42px;
}
.menu-toggle span {
  background: var(--sesame);
  display: block;
  height: 2px;
  width: 18px;
}
.site-menu {
  background: var(--charcoal);
  border: 1px solid var(--sesame);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 210px;
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  right: max(5.5%, calc((100% - 1200px) / 2));
  top: 68px;
  transform: translateY(-8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  visibility: hidden;
}
.site-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}
.site-menu a {
  border-radius: 6px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  padding: 11px 12px;
}
.site-menu a:hover {
  background: var(--sesame);
  color: var(--obsidian);
}
.hero {
  margin: 0 auto;
  max-width: 1200px;
  min-height: 520px;
  padding: var(--section-space) 0;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1100px;
  padding: 0;
  position: relative;
}
.hero-copy:after {
  display: none;
}
.eyebrow {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.7px;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.eyebrow i {
  color: #bcafa6;
  font-style: normal;
  margin: 0 8px;
}
.hero h1 {
  font: 700 clamp(36px, 4.8vw, 62px)/1.05 var(--serif);
  letter-spacing: -1.5px;
  margin: 0 0 28px;
}
.hero h1 em {
  background: linear-gradient(
    105deg,
    var(--broth-dark) 5%,
    var(--broth) 52%,
    var(--sesame) 95%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1em;
  font-style: normal;
  font-weight: 700;
}
.box-banner h2 em {
  background: linear-gradient(105deg, var(--broth) 5%, var(--sesame) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 600;
}
.hero-text {
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.7;
  max-width: 690px;
}
.directory-intro {
  margin: 0 auto;
  max-width: 1200px;
  padding: var(--section-space) 0 40px;
}
.directory-intro h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  margin: 0 0 18px;
}
.directory-intro h1 em {
  background: linear-gradient(105deg, var(--broth-dark), var(--sesame));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}
.directory-intro > p:last-child {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  max-width: 650px;
}
.contact-page {
  margin: 0 auto;
  max-width: 1200px;
  padding: var(--section-space) 0;
}
.contact-intro h1 {
  font-size: clamp(38px, 5vw, 64px);
  margin: 0 0 18px;
}
.contact-intro h1 em {
  color: var(--sesame);
  font-style: normal;
}
.contact-intro > p:last-child {
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 620px;
}
.contact-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.35fr 0.65fr;
  margin-top: 42px;
}
.contact-card,
.contact-aside {
  background: var(--charcoal);
  border: 1px solid var(--sesame);
  border-radius: 14px;
  padding: 34px;
}
.contact-form {
  display: grid;
  gap: 17px;
}
.contact-form label {
  color: var(--muted);
  display: grid;
  font-size: 12px;
  font-weight: 700;
  gap: 7px;
}
.contact-form input,
.contact-form textarea {
  background: var(--obsidian);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  padding: 12px;
  resize: vertical;
}
.contact-aside h2 {
  font-size: 24px;
  margin: 0 0 14px;
}
.contact-aside p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.contact-aside a {
  color: var(--sesame);
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-top: 16px;
}
.owner-shell {
  margin: 0 auto;
  max-width: 1200px;
  padding: var(--section-space) 0;
}
.owner-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 35px;
}
.owner-heading h1 {
  font-size: clamp(36px, 5vw, 60px);
  margin: 0 0 14px;
}
.owner-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.1fr 0.9fr;
}
.owner-list {
  background: var(--charcoal);
  border: 1px solid var(--sesame);
  border-radius: 14px;
  padding: 30px;
}
.owner-item {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 15px;
  justify-content: space-between;
  padding: 16px 0;
}
.owner-item h3 {
  font-size: 15px;
  margin: 0 0 6px;
}
.owner-item p {
  color: var(--muted);
  font-size: 11px;
  margin: 0;
}
.inline-delete {
  display: inline;
  margin-left: 8px;
}
.listing-detail {
  margin: 0 auto;
  max-width: 1200px;
  padding: var(--section-space) 0;
}
.back-link {
  color: var(--sesame);
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 28px;
}
.detail-layout {
  background: transparent;
  border: 0;
  border-radius: 14px;
  display: block;
  overflow: hidden;
}
.detail-image {
  margin: 0 auto;
  max-width: 900px;
  min-height: 460px;
  overflow: hidden;
  position: relative;
}
.detail-image::after {
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(15, 23, 42, 0.55)
  );
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.detail-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.detail-image .listing-featured,
.detail-image .rating {
  z-index: 2;
}
.detail-copy {
  margin: 0 auto;
  max-width: 820px;
  padding: 42px 20px 10px;
  text-align: center;
}
.detail-copy h1 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  margin: 0 0 18px;
}
.detail-location {
  align-items: center;
  color: var(--sesame);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 7px;
  text-transform: uppercase;
}
.detail-copy .detail-location,
.detail-copy .tags {
  justify-content: center;
}
.offers-section {
  border-top: 1px solid var(--line);
  margin-top: 46px;
  padding-top: 52px;
}
.offer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
.offer-card {
  background: var(--charcoal);
  border: 1px solid var(--sesame);
  border-radius: 10px;
  padding: 24px;
}
.offer-card h3 {
  font-size: 18px;
  margin: 16px 0 10px;
}
.offer-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 18px;
}
.offer-card small {
  color: var(--sesame);
  font-size: 11px;
  font-weight: 700;
}
.offer-badge,
.offer-count {
  color: var(--sesame);
  font-size: 11px;
  font-weight: 700;
}
.offer-count {
  display: block;
  margin-top: 5px;
}
.offer-card-title {
  color: var(--maroon);
  font-size: 14px;
  font-weight: 700;
  margin: 16px 0 7px;
}
.offer-card-description {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin: 0 0 18px;
}
.offer-grid-minimal {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.offer-card-minimal {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 20px 18px;
}
.offer-card-minimal__meta {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.offer-card-minimal__meta small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.offer-card-minimal h3 {
  color: var(--ink);
  font: 600 24px/1.2 var(--serif);
  margin: 0 0 10px;
}
.offer-card-minimal__desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}
.offer-card-minimal__venue {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
  padding-top: 12px;
}
.offer-card-minimal__venue span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}
.offer-card-minimal__venue a {
  color: var(--maroon);
  font-size: 13px;
  font-weight: 700;
}
@media (max-width: 720px) {
  .offer-grid-minimal {
    grid-template-columns: 1fr;
  }
}
.detail-cuisine {
  color: var(--muted);
  font-size: 13px;
  margin: 13px 0 22px;
}
.detail-price {
  color: var(--sesame);
  font-size: 18px;
  font-weight: 700;
  margin: 22px 0 0;
}
.detail-price small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}
.section {
  background: var(--obsidian);
  padding: var(--section-space) max(5.5%, calc((100% - 1200px) / 2));
}
.featured {
  background: var(--obsidian);
  padding-top: 0;
}
.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 34px;
}
.section-heading h2,
.box-copy h2,
.admin-shell h1 {
  font: 600 clamp(31px, 3vw, 45px)/1.1 var(--serif);
  letter-spacing: -0.8px;
  margin: 0;
}
.crown-icon {
  color: var(--sesame);
  display: inline-block;
  font-size: 0.72em;
  margin-right: 8px;
  transform: translateY(-0.08em);
}
.section-heading > a {
  color: var(--maroon);
  font-size: 13px;
  font-weight: 700;
}
.section-heading > a span {
  font-size: 20px;
  margin-left: 9px;
}
.partner-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
.partner-card {
  min-width: 0;
}
.card-image {
  height: 244px;
  overflow: hidden;
  position: relative;
}
.card-image::after {
  background: linear-gradient(to bottom, transparent 42%, var(--white) 100%);
  bottom: 0;
  content: "";
  height: 72px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 1;
}
.card-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  width: 100%;
}
.partner-card:hover .card-image img,
.listing-card:hover .listing-image img {
  transform: scale(1.04);
}
.featured-label {
  background: var(--sesame);
  border-radius: 0 0 7px 0;
  color: var(--obsidian);
  font-size: 9px;
  font-weight: 700;
  left: 0;
  padding: 7px 10px;
  position: absolute;
  text-transform: uppercase;
  top: 0;
  z-index: 2;
}
.partner-rating {
  background: var(--obsidian);
  border-radius: 6px;
  color: var(--sesame);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 8px;
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
}
.listing-body h3 {
  font: 600 21px/1.22 var(--serif);
  margin: 8px 0;
}
.muted,
.price small {
  color: var(--muted);
  font-size: 12px;
}
.price {
  color: var(--maroon);
  font-size: 13px;
  font-weight: 700;
  margin: 14px 0 0;
}
.box-banner {
  background: linear-gradient(90deg, var(--broth-very-dark), var(--obsidian));
  border: 1px solid var(--sesame);
  border-radius: 14px;
  color: #f9e9d5;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  min-height: 365px;
  margin: 0 auto;
  overflow: hidden;
  padding: 52px 4%;
  width: calc(100% - 11%);
  max-width: 1200px;
}
.box-art {
  align-items: center;
  background: radial-gradient(circle, #a23a40 0 2px, transparent 3px) 0 0/20px
    20px;
  display: flex;
  justify-content: center;
  position: relative;
}
.pot {
  align-items: center;
  background: #36151a;
  border: 6px solid #d59b76;
  border-radius: 50%;
  box-shadow: 0 17px 0 -6px #b77e5d;
  color: #eec9a5;
  display: flex;
  font-size: 50px;
  height: 165px;
  justify-content: center;
  position: relative;
  width: 165px;
}
.steam {
  color: #e2bda2;
  font: 70px var(--serif);
  position: absolute;
  transform: rotate(90deg);
}
.steam-one {
  top: 55px;
}
.steam-two {
  left: 54%;
  top: 15px;
}
.box-copy {
  padding: 0 3% 0 0;
}
.box-copy .eyebrow {
  color: var(--sesame);
  font-size: 10px;
  margin-bottom: 14px;
}
.vehicle-icon {
  color: var(--sesame);
  font-size: 18px;
  margin-right: 5px;
  vertical-align: -2px;
}
.box-copy h2 {
  color: #fff1de;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.18;
  margin: 0 0 16px;
}
.box-description {
  color: #edcbb7;
  display: block;
  font-size: 13px;
  line-height: 1.65;
  max-width: 500px;
}
.box-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.box-actions .dark-button {
  margin-top: 0;
}
.box-price {
  color: #fff1de;
  font-size: 13px;
  font-weight: 700;
}
.box-price small {
  color: #dfb9a8;
  font-size: 11px;
  font-weight: 500;
}
.dark-button {
  background: var(--sesame);
  border: 0;
  color: var(--obsidian);
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  margin-top: 27px;
  padding: 14px 18px;
  text-transform: uppercase;
}
.box-stats {
  align-self: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  margin: 0;
}
.box-stats div {
  background: rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(245, 158, 11, 0.7);
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
}
.box-stats strong {
  color: #fff1de;
  font-size: 16px;
}
.box-stats span {
  color: #dfb9a8;
  font-size: 11px;
}
.box-stats div > span:last-child {
  margin-left: auto;
}
.box-stats .stat-icon {
  color: var(--sesame);
  font-size: 20px;
  line-height: 1;
}
.explore-heading {
  align-items: end;
}
.result-count {
  color: var(--muted);
  font-size: 13px;
  margin: 10px 0 0;
}
.filter-summary {
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  padding: 10px 13px;
}
.filter-summary b {
  color: var(--ink);
  margin-left: 5px;
}
.emirate-switcher {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 12px;
  gap: 7px;
}
.emirate-switcher select {
  appearance: none;
  background: var(--charcoal)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23f59e0b' stroke-width='3'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E")
    no-repeat right 10px center;
  border: 1px solid var(--sesame);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  font: 700 12px var(--sans);
  min-width: 155px;
  padding: 10px 34px 10px 12px;
}
.filters {
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
  padding-bottom: 17px;
}
.filter-search {
  margin-bottom: 14px;
  max-width: 520px;
}
.filter-toggle {
  display: none;
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.category-row {
  align-items: center;
  margin-top: 14px;
}
.filter-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  margin-right: 5px;
  text-transform: uppercase;
}
.filter-pill {
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  padding: 9px 12px;
}
.filter-pill.active,
.filter-pill:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  color: #fff;
}
@media (hover: none) {
  .filter-pill:hover:not(.active) {
    background: transparent;
    border-color: var(--line);
    color: var(--muted);
  }
}
.listing-grid {
  display: grid;
  gap: 28px 20px;
  grid-template-columns: repeat(3, 1fr);
}
.listing-grid.is-loading {
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.listing-card {
  background: var(--white);
  border: 1px solid var(--sesame);
  border-radius: 14px;
  overflow: hidden;
  min-width: 0;
}
.listing-image {
  height: 225px;
  overflow: hidden;
  position: relative;
}
.listing-image::after {
  background: linear-gradient(to bottom, transparent 42%, var(--white) 100%);
  bottom: 0;
  content: "";
  height: 72px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 1;
}
.listing-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  width: 100%;
}
.rating {
  background: var(--obsidian);
  border-radius: 6px;
  color: var(--sesame);
  font-size: 12px;
  font-weight: 700;
  right: 12px;
  padding: 7px 9px;
  position: absolute;
  top: 12px;
}
.listing-featured {
  align-items: center;
  background: transparent;
  color: var(--sesame);
  display: flex;
  font-family: Georgia, serif;
  font-size: 21px;
  height: auto;
  justify-content: center;
  left: 12px;
  padding: 0;
  position: absolute;
  top: 12px;
  width: auto;
}
.partner-crown {
  align-items: center;
  background: transparent;
  color: var(--sesame);
  display: flex;
  font-family: Georgia, serif;
  font-size: 21px;
  height: auto;
  justify-content: center;
  left: 12px;
  padding: 0;
  top: 12px;
  width: auto;
}
.listing-body {
  margin-top: -16px;
  padding: 10px 18px 17px;
  position: relative;
  z-index: 2;
}
.location {
  align-items: center;
  color: var(--red);
  display: flex;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.listing-title-link {
  color: inherit;
}
.listing-title-link:hover,
.location:hover,
.emirate-inline-link:hover {
  color: var(--sesame);
}
.emirate-inline-link {
  color: inherit;
}
.location-icon {
  color: var(--sesame);
  font-size: 16px;
  line-height: 1;
}
.venue-address {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  margin: 6px 0 0;
}
.detail-address {
  font-size: 13px;
  margin: 8px 0 0;
}
.listing-body h3 {
  margin-top: 8px;
}
.cuisine {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}
.tags {
  display: flex;
  gap: 6px;
  margin: 19px 0;
}
.tags span {
  background: #263449;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #cbd5e1;
  font-size: 10px;
  padding: 6px 8px;
}
.listing-footer {
  align-items: end;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding-top: 14px;
}
.listing-footer strong {
  color: var(--maroon);
  display: block;
  font-size: 12px;
}
.listing-footer small {
  color: var(--muted);
  display: block;
  font-size: 10px;
  margin-top: 4px;
}
.card-actions {
  display: flex;
  gap: 5px;
}
.outline-button,
.book-button {
  font-size: 10px;
  font-weight: 700;
  padding: 9px 10px;
  text-transform: uppercase;
  white-space: nowrap;
}
.outline-button {
  border: 1px solid var(--sesame);
  border-radius: 7px;
  color: var(--sesame);
}
.book-button {
  background: var(--sesame);
  border-radius: 7px;
  color: var(--obsidian);
}
.empty-state {
  border: 1px dashed var(--line);
  grid-column: 1/-1;
  padding: 70px;
  text-align: center;
}
.empty-state strong {
  font: 24px var(--serif);
}
.empty-state p {
  color: var(--muted);
}
.empty-state a {
  color: var(--maroon);
  font-weight: 700;
}
.modal {
  align-items: center;
  background: rgba(37, 29, 26, 0.7);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 20px;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.25s;
  z-index: 20;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-panel {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  max-width: 650px;
  position: relative;
  width: 100%;
}
.modal-panel > img {
  height: 280px;
  object-fit: cover;
  width: 100%;
}
.modal-content {
  padding: 28px;
}
.modal-content h2 {
  font: 600 35px var(--serif);
  margin: 0;
}
.modal-close {
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 34px;
  position: absolute;
  right: 10px;
  top: 3px;
  z-index: 1;
}
.modal-content .dark-button {
  background: var(--sesame);
  color: var(--obsidian);
}
footer {
  background: #0b1120;
  color: var(--muted);
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(250px, 2fr) repeat(3, 1fr);
  padding: 58px max(5.5%, calc((100% - 1200px) / 2)) 25px;
}
.footer-brand p {
  font-size: 12px;
  line-height: 1.7;
  margin: 18px 0 0;
  max-width: 330px;
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-column h3 {
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 1.3px;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.footer-column a {
  color: var(--muted);
  font-size: 12px;
}
.footer-column a:hover {
  color: var(--sesame);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  color: #64748b;
  display: flex;
  font-size: 10px;
  grid-column: 1 / -1;
  justify-content: space-between;
  padding-top: 20px;
}
.admin-page {
  min-height: 100vh;
}
.admin-shell {
  margin: 0 auto;
  max-width: 1000px;
  padding: 80px 5%;
}
.admin-shell h1 {
  font-size: 52px;
}
.admin-intro {
  color: var(--muted);
  line-height: 1.7;
  max-width: 650px;
}
.admin-intro a {
  color: var(--maroon);
  font-weight: 700;
}
.notice {
  background: #fbeddc;
  border-left: 4px solid var(--red);
  margin: 30px 0;
  padding: 17px 20px;
}
.notice code {
  font-size: 12px;
}
.notice.success {
  background: #e4f1e8;
  border-color: #31784c;
}
.admin-stats {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin: 45px 0;
  background: var(--line);
}
.admin-stats div {
  background: var(--white);
  padding: 22px;
}
.admin-stats strong {
  display: block;
  color: var(--maroon);
  font: 600 31px var(--serif);
}
.admin-stats span {
  color: var(--muted);
  font-size: 11px;
}
.owner-form-panel {
  display: none;
}
.owner-form-panel.is-open {
  display: block;
}
.admin-panel {
  background: var(--white);
  padding: 35px;
}
.admin-form {
  display: grid;
  gap: 19px;
  grid-template-columns: repeat(2, 1fr);
}
.admin-form label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.admin-form input,
.admin-form select {
  background: #fcfaf7;
  border: 1px solid var(--line);
  display: block;
  font: inherit;
  font-weight: 400;
  margin-top: 7px;
  padding: 12px;
  width: 100%;
}
.admin-form .wide,
.admin-form button {
  grid-column: 1/-1;
}
.admin-form .checkbox {
  align-items: center;
  display: flex;
  gap: 9px;
}
.admin-form .checkbox input {
  margin: 0;
  width: auto;
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    min-height: 550px;
  }
  .directory-intro {
    padding: var(--section-space) 5% 30px;
  }
  .contact-page {
    padding: var(--section-space) 5%;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  .contact-card,
  .contact-aside {
    padding: 26px;
  }
  .owner-shell {
    padding: var(--section-space) 5%;
  }
  .owner-heading {
    align-items: start;
    flex-direction: column;
  }
  .owner-grid {
    grid-template-columns: 1fr;
  }
  .owner-list {
    padding: 24px;
  }
  .hero-image {
    min-height: 480px;
  }
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .box-banner {
    grid-template-columns: 1fr;
    padding: 46px 5%;
  }
  .box-stats {
    grid-column: 1/-1;
    margin-top: 35px;
  }
  .listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .listing-detail {
    padding-left: 5.5%;
    padding-right: 5.5%;
  }
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .detail-image {
    min-height: 380px;
  }
  .offer-grid {
    grid-template-columns: 1fr;
  }
}
.admin-nav {
  align-items: center;
  display: flex;
  gap: 20px;
}
.admin-nav a {
  color: var(--maroon);
  font-size: 12px;
  font-weight: 700;
}
.admin-top {
  align-items: start;
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
.admin-table-wrap {
  margin-top: 35px;
  overflow-x: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th,
td {
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  padding: 13px 10px;
  text-align: left;
}
th {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}
.table-action {
  background: none;
  border: 0;
  color: var(--red);
  cursor: pointer;
  font: 700 11px var(--sans);
  padding: 0;
}
.taxonomy-grid {
  display: grid;
  gap: 45px;
  grid-template-columns: 1fr 1fr;
}
.taxonomy-grid h2 {
  font: 600 30px var(--serif);
  margin: 0 0 20px;
}
.inline-form {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}
.inline-form input {
  background: #fcfaf7;
  border: 1px solid var(--line);
  font: inherit;
  min-width: 0;
  padding: 12px;
  width: 100%;
}
.inline-form .dark-button {
  margin: 0;
}
.taxonomy-item {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  padding: 12px 0;
}
.login-shell {
  margin: 0 auto;
  max-width: 480px;
  padding: 13vh 5%;
}
.login-shell > .brand {
  margin-bottom: 40px;
}
.login-panel {
  background: var(--white);
  padding: 38px;
}
.login-panel h1 {
  font: 600 clamp(28px, 4vw, 34px)/1.15 var(--serif);
  margin: 0 0 18px;
}
.login-form {
  display: grid;
  gap: 18px;
}
.login-form label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.login-form input {
  background: #fcfaf7;
  border: 1px solid var(--line);
  display: block;
  font: inherit;
  margin-top: 7px;
  padding: 13px;
  width: 100%;
}
.login-form .dark-button {
  margin-top: 8px;
}
.notice.error {
  background: #f8e2df;
  border-color: var(--red);
}
.search,
.filter-summary,
.filter-pill,
.dark-button,
.list-button,
.admin-panel,
.login-panel,
.admin-stats div,
.empty-state,
.admin-form input,
.admin-form select,
.login-form input,
.inline-form input {
  border-radius: 8px;
}
.dark-button,
.search button {
  border-radius: 8px;
}
.search button {
  margin-right: -1px;
}
.admin-panel,
.login-panel {
  border: 1px solid var(--line);
}
.admin-stats {
  background: transparent;
  gap: 12px;
}
.admin-stats div {
  border: 1px solid var(--line);
}
.notice {
  border: 1px solid var(--line);
  border-left: 4px solid var(--broth);
  border-radius: 8px;
}
.filter-pill:hover,
.filter-pill.active,
.book-button,
.listing-featured {
  border-radius: 7px;
}
@media (max-width: 620px) {
  :root {
    --section-space: 42px;
  }
  .site-header {
    gap: 8px;
    height: auto;
    min-height: 58px;
    padding: 8px 5%;
    flex-wrap: wrap;
  }
  .brand {
    font-size: 17px;
  }
  .search {
    order: 3;
    flex-basis: 100%;
    height: 38px;
  }
  .list-button {
    font-size: 11px;
    padding: 7px 9px;
  }
  .menu-toggle {
    height: 36px;
    width: 36px;
  }
  .hero {
    min-height: 0;
    padding: 34px 5% 28px;
  }
  .hero-copy {
    min-height: 0;
    padding: 0;
  }
  .hero-copy .eyebrow {
    margin-bottom: 12px;
  }
  .hero h1 {
    font-size: 35px;
    margin-bottom: 16px;
  }
  .hero-text {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
  }
  .hero-image {
    min-height: 400px;
  }
  .section {
    padding: var(--section-space) 5%;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 17px;
  }
  .partner-grid,
  .listing-grid {
    grid-template-columns: 1fr;
  }
  .card-image {
    height: 255px;
  }
  .box-banner {
    display: block;
    padding: 42px 5%;
  }
  .box-art {
    height: 220px;
    margin-bottom: 35px;
  }
  .box-copy {
    padding: 0;
  }
  .box-stats {
    border: 0;
    margin-top: 35px;
    padding: 0;
  }
  .filter-pill {
    font-size: 11px;
  }
  .filter-summary {
    display: none;
  }
  .filter-toggle {
    align-items: center;
    background: var(--charcoal);
    border: 1px solid var(--sesame);
    border-radius: 8px;
    color: var(--ink);
    display: flex;
    font: 700 12px var(--sans);
    justify-content: space-between;
    margin: 0 0 12px;
    padding: 10px 13px;
    width: 100%;
  }
  .filter-toggle span {
    color: var(--sesame);
    font-size: 18px;
    line-height: 1;
  }
  .filters {
    display: none;
    margin-bottom: 24px;
  }
  .filters.is-open {
    display: block;
  }
  .listing-footer {
    align-items: start;
    flex-direction: column;
  }
  .detail-copy {
    padding: 34px 26px;
  }
  .detail-image {
    min-height: 300px;
  }
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .card-actions {
    width: 100%;
  }
  .card-actions a {
    flex: 1;
    text-align: center;
  }
  .admin-shell {
    padding: 60px 5%;
  }
  .admin-shell h1 {
    font-size: 42px;
  }
  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-form {
    grid-template-columns: 1fr;
  }
  .admin-form .wide,
  .admin-form button {
    grid-column: auto;
  }
  footer {
    grid-template-columns: 1fr 1fr;
    padding: 45px 5% 22px;
  }
  .footer-brand,
  .footer-bottom {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}
