:root {
  --bg: #f7f4ee;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-solid: #ffffff;
  --surface-accent: #f5efe4;
  --text: #172126;
  --muted: #64707a;
  --border: rgba(23, 33, 38, 0.08);
  --primary: #e76f51;
  --primary-dark: #cf5a3f;
  --secondary: #264653;
  --highlight: #f4a261;
  --success: #2a9d8f;
  --shadow: 0 18px 50px rgba(28, 37, 44, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(244, 162, 97, 0.24), transparent 32%),
    radial-gradient(circle at top right, rgba(42, 157, 143, 0.18), transparent 28%),
    linear-gradient(180deg, #fbf8f2 0%, #f6f1e8 45%, #f4ede1 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 16px 0 24px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 700;
  flex-shrink: 0;
}

.brand-mark {
  width: clamp(220px, 24vw, 360px);
  display: flex;
  align-items: center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: auto;
  max-height: 84px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
  isolation: isolate;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-nav a {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--muted);
  transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--text);
  background: rgba(38, 70, 83, 0.08);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(38, 70, 83, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--secondary);
}

.hero,
.page-hero,
.section,
.site-footer,
.details-layout {
  animation: fadeUp 0.55s ease both;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 28px;
  align-items: stretch;
  padding: 42px 0 24px;
}

.hero-copy,
.hero-panel,
.surface-card,
.business-card,
.category-card,
.discover-banner,
.auth-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-copy {
  padding: 40px;
  border-radius: 40px;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.3), transparent 68%);
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(38, 70, 83, 0.08);
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 600;
}

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

.hero h1,
.page-hero h1 {
  max-width: 12ch;
  margin-bottom: 16px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero p,
.page-hero p,
.section-heading p,
.business-meta,
.business-description,
.site-footer p,
.form-note,
.review-card p,
.map-placeholder p,
.auth-copy p,
.simple-list,
.discover-banner p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-highlights,
.auth-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-highlights span,
.auth-badges span,
.meta-pill,
.rating-pill,
.favorite-indicator {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.hero-panel {
  padding: 22px;
  border-radius: 32px;
  display: grid;
  gap: 18px;
}

.search-form-card,
.hero-stat-card,
.form-card,
.side-panel,
.detail-sidebar-card,
.review-card {
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label {
  font-size: 0.92rem;
  font-weight: 600;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(23, 33, 38, 0.1);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: rgba(231, 111, 81, 0.65);
  box-shadow: 0 0 0 4px rgba(231, 111, 81, 0.12);
}

.field-grid {
  display: grid;
  gap: 16px;
}

.field-grid.two-columns,
.field-grid:not(.single) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  box-shadow: 0 14px 26px rgba(231, 111, 81, 0.24);
}

.button.ghost {
  background: rgba(38, 70, 83, 0.08);
  color: var(--secondary);
}

.button.wide {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-stats strong {
  display: block;
  font-size: 1.55rem;
  margin-bottom: 2px;
}

.hero-stats span,
.stat-label,
.results-head p {
  color: var(--muted);
}

.section {
  padding: 24px 0 14px;
}

.section-heading,
.results-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.section-heading h2,
.discover-banner h2,
.details-content h2,
.side-panel h2,
.auth-copy h1 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.text-link {
  color: var(--primary-dark);
  font-weight: 600;
}

.business-grid,
.category-grid,
.reviews-grid,
.gallery-grid {
  display: grid;
  gap: 20px;
}

.business-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.business-card,
.category-card {
  overflow: hidden;
  border-radius: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.business-card:hover,
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 50px rgba(28, 37, 44, 0.14);
}

.card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-media img,
.gallery-hero img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-media::after,
.gallery-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.28));
}

.card-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
}

.favorite-button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--secondary);
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
}

.favorite-button.is-favorite {
  background: var(--primary);
  color: #fff;
}

.card-body {
  padding: 20px;
}

.card-head,
.detail-headline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.card-head h3,
.detail-headline h1 {
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.business-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.rating-pill {
  background: rgba(42, 157, 143, 0.12);
  color: var(--secondary);
  font-weight: 600;
}

.business-card .button,
.category-card .button {
  margin-top: 12px;
}

.category-card {
  padding: 24px;
  min-height: 180px;
  display: grid;
  align-content: space-between;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)),
    linear-gradient(135deg, rgba(244, 162, 97, 0.18), rgba(42, 157, 143, 0.14));
}

.category-card h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

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

.discover-banner,
.auth-card {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 26px;
  padding: 32px;
  border-radius: 36px;
}

.discover-points,
.simple-list {
  margin: 0;
  padding-left: 20px;
}

.discover-points {
  display: grid;
  gap: 18px;
}

.discover-points article {
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
}

.page-hero.compact {
  padding: 34px 0 12px;
}

.page-hero.compact h1 {
  max-width: none;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.filter-bar {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
  padding: 20px;
  margin-bottom: 16px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.empty-state {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px dashed rgba(23, 33, 38, 0.14);
  text-align: center;
}

.details-layout {
  display: grid;
  gap: 24px;
  padding-bottom: 24px;
}

.gallery-hero {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 34px;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid figure {
  margin: 0;
  height: 190px;
  overflow: hidden;
  border-radius: 24px;
}

.details-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.details-main,
.details-sidebar {
  display: grid;
  gap: 20px;
}

.detail-sidebar-card h3 {
  margin-bottom: 14px;
}

.map-placeholder {
  min-height: 240px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(244, 162, 97, 0.16), rgba(42, 157, 143, 0.15)),
    #fff;
  border: 1px dashed rgba(38, 70, 83, 0.18);
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card strong {
  display: block;
  margin-bottom: 8px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.favorite-indicator {
  background: rgba(231, 111, 81, 0.12);
  color: var(--primary-dark);
}

.form-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 24px;
}

.auth-section {
  padding: 42px 0 26px;
}

.auth-form {
  align-self: center;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 28px 0 40px;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 10px;
}

.site-footer a {
  color: var(--secondary);
}

.section-label {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compact-heading {
  margin-bottom: 18px;
}

.auth-card-wide {
  grid-template-columns: 0.95fr 1.05fr;
}

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

.auth-stack {
  display: grid;
  gap: 18px;
  align-content: start;
}

.auth-status-card {
  margin-top: 26px;
}

.message-banner {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid transparent;
  box-shadow: var(--shadow);
}

.message-banner.is-success {
  color: #155e52;
  background: rgba(42, 157, 143, 0.12);
  border-color: rgba(42, 157, 143, 0.28);
}

.message-banner.is-error {
  color: #8a3320;
  background: rgba(231, 111, 81, 0.12);
  border-color: rgba(231, 111, 81, 0.28);
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 24px;
  padding: 24px 0 16px;
}

.dashboard-main {
  display: grid;
  gap: 20px;
}

.owner-summary {
  border-radius: 30px;
  padding: 26px;
  align-self: start;
}

.owner-summary h2 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.dashboard-actions,
.owner-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dashboard-form {
  display: grid;
  gap: 18px;
}

.owner-business-grid {
  display: grid;
  gap: 18px;
}

.owner-business-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(23, 33, 38, 0.08);
}

.owner-business-media {
  min-height: 180px;
  overflow: hidden;
  border-radius: 20px;
}

.owner-business-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner-business-body {
  display: grid;
  gap: 14px;
}

.owner-business-location {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.owner-business-status {
  margin: 0;
  color: var(--secondary);
  font-size: 0.92rem;
  font-weight: 600;
}

.owner-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.featured-badge,
.featured-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #7a4d00;
  background: linear-gradient(135deg, rgba(255, 215, 128, 0.92), rgba(244, 162, 97, 0.92));
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(244, 162, 97, 0.24);
}

.featured-pill {
  color: #6a4b13;
  background: rgba(255, 221, 161, 0.76);
  box-shadow: none;
}

.card-media > .featured-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1;
}

.is-featured-card {
  border: 1px solid rgba(244, 162, 97, 0.42);
  box-shadow:
    0 18px 50px rgba(28, 37, 44, 0.1),
    0 0 0 3px rgba(255, 214, 102, 0.22);
}

.is-featured-card .card-media::before,
.is-featured-card .owner-business-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 210, 112, 0.06), rgba(244, 162, 97, 0.2));
}

.owner-business-media {
  position: relative;
}

.featured-plan-card {
  margin: 20px 0 18px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 228, 170, 0.78), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(244, 162, 97, 0.3);
}

.featured-plan-card h3 {
  margin-bottom: 10px;
}

.button.featured-action {
  color: #7a4d00;
  background: rgba(255, 221, 161, 0.72);
}

.button.featured-action:disabled {
  cursor: default;
  opacity: 0.88;
}

.button.danger {
  color: #fff;
  background: linear-gradient(135deg, #ce4d31, #e76f51);
}

.hidden {
  display: none !important;
}

.ad-section {
  padding-top: 8px;
}

.ad-shell {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(23, 33, 38, 0.08);
  box-shadow: var(--shadow);
}

.ad-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-slot {
  width: 100%;
  min-height: 120px;
  border-radius: 18px;
  overflow: hidden;
}

.ad-slot ins.adsbygoogle {
  display: block;
  min-height: 120px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.featured-marquee {
  padding-top: 8px;
}

.featured-marquee-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding: 26px 28px;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at left top, rgba(255, 206, 112, 0.36), transparent 30%),
    linear-gradient(135deg, #18323d 0%, #214655 46%, #ce6d34 100%);
  box-shadow: 0 24px 55px rgba(20, 31, 37, 0.22);
}

.featured-marquee-head h2 {
  margin-bottom: 8px;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.featured-marquee-head p {
  max-width: 56ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.featured-marquee-head .button.ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

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

.featured-spotlight-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 24px;
  border-radius: 30px;
  color: #fff;
  background-size: cover;
  background-position: center;
  box-shadow: 0 26px 48px rgba(20, 31, 37, 0.16);
}

.featured-spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 24, 28, 0.18), rgba(16, 24, 28, 0.84)),
    linear-gradient(135deg, rgba(231, 111, 81, 0.22), rgba(38, 70, 83, 0.18));
}

.featured-spotlight-card > * {
  position: relative;
  z-index: 1;
}

.featured-spotlight-card h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.featured-spotlight-card p {
  color: rgba(255, 255, 255, 0.82);
}

.featured-spotlight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.featured-spotlight-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 600;
}

.featured-spotlight-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
}

.featured-spotlight-footer .button.ghost {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.blog-shell,
.blog-post-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 20px 0 18px;
}

.blog-main,
.blog-sidebar,
.blog-post-main {
  display: grid;
  gap: 20px;
}

.blog-filter-bar {
  grid-template-columns: 1.2fr 0.8fr;
}

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

.blog-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.blog-card-media {
  height: 240px;
  overflow: hidden;
}

.blog-card-media img,
.blog-post-hero img,
.recent-post-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body,
.blog-post-card,
.sidebar-card {
  padding: 22px;
}

.blog-card-meta,
.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.blog-card h3,
.sidebar-card h2 {
  margin-bottom: 10px;
}

.blog-card p,
.blog-post-card p,
.recent-post-item span,
.sidebar-card p {
  color: var(--muted);
  line-height: 1.7;
}

.recent-post-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(23, 33, 38, 0.08);
}

.recent-post-item:first-of-type {
  border-top: 0;
  padding-top: 4px;
}

.recent-post-item img {
  height: 74px;
  border-radius: 16px;
}

.recent-post-item strong {
  display: block;
  margin-bottom: 6px;
}

.blog-post-hero {
  overflow: hidden;
  min-height: 360px;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.blog-post-card {
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: 28px;
}

.blog-post-card p + p {
  margin-top: 18px;
}

.blog-compose-form {
  display: grid;
  gap: 18px;
}

.image-input-preview {
  display: grid;
  gap: 12px;
  min-height: 180px;
  padding: 18px;
  border: 1px dashed rgba(38, 70, 83, 0.24);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
}

.image-input-preview.has-image {
  border-style: solid;
  border-color: rgba(244, 162, 97, 0.32);
}

.preview-label {
  color: var(--secondary);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.image-input-preview img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 18px;
}

.image-input-preview p {
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero,
  .discover-banner,
  .auth-card,
  .auth-card-wide,
  .blog-shell,
  .blog-post-layout,
  .details-content,
  .dashboard-layout,
  .form-layout,
  .business-grid,
  .category-grid,
  .reviews-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .filter-bar,
  .blog-filter-bar,
  .field-grid.two-columns,
  .field-grid:not(.single) {
    grid-template-columns: 1fr;
  }

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

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

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

  .featured-strip {
    grid-template-columns: repeat(3, minmax(280px, 78vw));
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(38, 70, 83, 0.35) rgba(255, 255, 255, 0.35);
  }

  .featured-strip::-webkit-scrollbar {
    height: 10px;
  }

  .featured-strip::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
  }

  .featured-strip::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(38, 70, 83, 0.35);
  }

  .featured-spotlight-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 22px, var(--container));
  }

  .topbar {
    top: 10px;
    border-radius: 30px;
    padding: 14px;
    flex-wrap: wrap;
  }

  .brand-mark {
    width: clamp(180px, 52vw, 280px);
  }

  .brand-mark img {
    max-height: 64px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
  }

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

  .hero-copy,
  .hero-panel,
  .discover-banner,
  .auth-card,
  .owner-summary {
    padding: 24px;
    border-radius: 28px;
  }

  .hero h1,
  .page-hero h1,
  .auth-copy h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .business-grid,
  .blog-grid,
  .category-grid,
  .reviews-grid,
  .gallery-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

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

  .featured-strip {
    grid-template-columns: repeat(3, minmax(260px, 86vw));
    margin-right: -4px;
    padding-right: 4px;
  }

  .featured-spotlight-card {
    min-height: 300px;
  }

  .section-heading,
  .results-head,
  .featured-marquee-head,
  .card-head,
  .detail-headline {
    align-items: start;
    flex-direction: column;
  }

  .gallery-hero {
    min-height: 260px;
  }
}
