:root {
  --ink: #17201f;
  --muted: #66706d;
  --line: #dfe6e2;
  --paper: #fbfcfa;
  --soft: #eef5f1;
  --green: #0f7a5b;
  --green-dark: #0a4d43;
  --gold: #d69b27;
  --blue: #2f6f9f;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(18, 32, 29, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(251, 252, 250, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 8px;
}

.brand-text {
  font-size: 20px;
}

.main-nav {
  margin-left: auto;
}

.main-menu {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.main-menu a:hover,
.header-action:hover {
  color: var(--green);
}

.header-action {
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 35, 32, 0.88), rgba(8, 35, 32, 0.55) 50%, rgba(8, 35, 32, 0.18)),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=2000&q=80") center / cover;
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 78px 0 96px;
}

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

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

h1 {
  margin-bottom: 14px;
  font-size: clamp(52px, 10vw, 118px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
}

.search-panel {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 10px;
  width: min(930px, 100%);
  padding: 10px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.search-field {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

input,
select,
button {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

input,
select {
  padding: 0 13px;
  color: var(--ink);
  background: #f8faf8;
}

button,
.search-panel button {
  align-self: end;
  padding: 0 24px;
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
  font-weight: 900;
  cursor: pointer;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-stats strong {
  color: var(--white);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.quick-strip a {
  padding: 18px;
  border-right: 1px solid var(--line);
  text-align: center;
  font-weight: 800;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: stretch;
}

.why-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(18, 32, 29, 0.06);
}

.why-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.why-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.text-link,
.section-link {
  color: var(--green);
  font-weight: 900;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 78px 0;
}

.muted {
  width: 100%;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background: var(--soft);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.listing-area {
  display: grid;
  gap: 16px;
}

.business-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  min-height: 178px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(18, 32, 29, 0.06);
}

.business-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
}

.business-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

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

.tag {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 8px;
  color: var(--green-dark);
  background: #dff2ec;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.status-pill {
  display: inline-flex;
  margin: 0 0 8px 6px;
  padding: 4px 8px;
  color: #145335;
  background: #dff7db;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.business-highlight {
  margin: -2px 0 10px;
  color: var(--green-dark) !important;
  font-weight: 900;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.card-actions a,
.card-actions button {
  width: auto;
  min-height: 36px;
  padding: 0 12px;
  color: var(--green-dark);
  background: #e8f4ef;
  border: 1px solid #d1e8de;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.category-grid a {
  display: grid;
  gap: 20px;
  min-height: 138px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 900;
}

.category-grid span {
  color: var(--gold);
  font-size: 13px;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: center;
}

.section-copy {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.menu-board {
  display: grid;
  gap: 12px;
}

.menu-board article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 16px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-board h3,
.menu-board p {
  margin-bottom: 0;
}

.menu-board p {
  color: var(--muted);
}

.menu-board strong {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  color: var(--green);
}

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

.utility-card {
  padding: 28px;
  background: var(--soft);
  border-radius: 8px;
}

.utility-card.dark {
  color: var(--white);
  background: var(--green-dark);
}

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

.utility-card.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.utility-card a {
  color: var(--green);
  font-weight: 900;
}

.utility-card.dark a {
  color: var(--gold);
}

.signup-section {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 36px;
  margin-bottom: 72px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 8px;
}

.signup-section h2 {
  color: var(--white);
}

.signup-section .section-copy {
  color: rgba(255, 255, 255, 0.78);
}

.signup-section .header-action {
  background: var(--gold);
  color: var(--ink);
  white-space: nowrap;
}

.form-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
  align-items: start;
}

.submit-business-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.submit-business-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.submit-business-form textarea {
  width: 100%;
  min-height: 130px;
  padding: 12px 13px;
  color: var(--ink);
  background: #f8faf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  resize: vertical;
}

.notice-card {
  margin-bottom: 16px;
  padding: 16px;
  color: var(--green-dark);
  background: #e8f4ef;
  border: 1px solid #d1e8de;
  border-radius: 8px;
}

.notice-card p {
  margin-bottom: 0;
}

.partner-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 30px;
}

.partner-copy p:last-child {
  color: var(--muted);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.plan-grid article {
  min-height: 210px;
  display: grid;
  align-content: space-between;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.featured-plan {
  color: var(--white);
  background: var(--blue) !important;
  border-color: var(--blue) !important;
}

.plan-grid p {
  color: var(--muted);
}

.featured-plan p {
  color: rgba(255, 255, 255, 0.8);
}

.page-main {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: 80px 0;
}

.page-content {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.archive-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0 34px;
}

.archive-hero h1 {
  color: var(--ink);
}

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

.archive-hero .search-panel {
  margin-top: 24px;
}

.business-single {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 84px;
}

.business-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 28px;
}

.business-hero__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.business-hero__content {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.business-hero__content h1 {
  color: var(--ink);
  font-size: clamp(42px, 7vw, 84px);
}

.business-lead {
  color: var(--muted);
  font-size: 20px;
}

.business-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.business-actions a {
  padding: 12px 16px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 8px;
  font-weight: 900;
}

.business-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 22px;
}

.business-main-content,
.business-info-panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.business-main-content h2,
.business-info-panel h2 {
  margin-bottom: 18px;
  font-size: 30px;
}

.business-info-panel dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.business-info-panel dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.business-info-panel dd {
  margin: 0 0 8px;
}

.business-info-panel a {
  color: var(--green);
  font-weight: 800;
}

.pagination {
  margin-top: 24px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    margin-left: 0;
    padding-bottom: 3px;
  }

  .search-panel,
  .intro-grid,
  .split,
  .utility-grid,
  .partner-section,
  .form-section,
  .business-hero,
  .business-detail-grid {
    grid-template-columns: 1fr;
  }

  .quick-strip,
  .category-grid,
  .plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 70px 0;
  }

  .hero-lead {
    font-size: 18px;
  }

  .quick-strip,
  .category-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }

  .section-heading {
    display: block;
  }

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

  .business-card img {
    height: 210px;
  }

  .menu-board article {
    grid-template-columns: 1fr;
  }

  .menu-board strong {
    grid-row: auto;
    grid-column: auto;
  }

  .site-footer {
    display: grid;
  }

  .signup-section {
    display: grid;
  }
}
