:root {
  --orange: #f05a28;
  --orange-dark: #d94718;
  --green: #334b29;
  --green-dark: #1f311d;
  --cream: #f7f3ec;
  --cream-2: #fbf8f3;
  --text: #172016;
  --muted: #697167;
  --line: #e9e4dc;
  --white: #ffffff;
  --shadow: 0 14px 35px rgba(32, 45, 29, .10);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: "Manrope", sans-serif; color: var(--text); background: var(--white); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(233,228,220,.9); }
.header-inner { min-height: 92px; display: grid; grid-template-columns: 220px minmax(340px, 1fr) auto; gap: 28px; align-items: center; }
.brand { display: grid; grid-template-columns: auto 1fr; align-items: center; width: max-content; }
.brand-mark { width: 48px; height: 48px; border: 3px solid var(--orange); border-radius: 50%; display: grid; place-items: center; color: var(--orange); font-size: 23px; font-weight: 800; line-height: 1; }
.brand-name { margin-left: -8px; font-size: 23px; font-weight: 800; letter-spacing: -.8px; color: var(--green); }
.brand-name span { font-size: .6em; font-weight: 700; }
.brand small { grid-column: 1 / -1; font-size: 9px; margin: -3px 0 0 12px; color: var(--text); }
.brand.compact .brand-mark { width: 41px; height: 41px; font-size: 19px; }
.brand.compact .brand-name { font-size: 21px; }

.search-bar { height: 52px; display: grid; grid-template-columns: 1.3fr 1px .85fr 54px; align-items: center; border: 1px solid #ddd8d0; border-radius: 999px; overflow: hidden; background: #fff; }
.search-bar input { width: 100%; border: 0; outline: 0; padding: 0 22px; color: var(--text); }
.search-bar input::placeholder { color: #8d938c; }
.search-divider { height: 24px; background: #e6e2dc; }
.search-bar button { align-self: stretch; border: 0; background: var(--orange); color: #fff; font-size: 28px; cursor: pointer; }

.main-nav { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 700; white-space: nowrap; }
.main-nav a:hover { color: var(--orange); }
.icon-button { width: 34px; height: 34px; border: 0; background: transparent; font-size: 25px; cursor: pointer; }
.user-button { color: var(--green); font-size: 23px; }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 27px; }

.hero { background: linear-gradient(90deg, var(--cream-2) 0 48%, #f1eee8 48% 100%); overflow: hidden; }
.hero-grid { min-height: 510px; display: grid; grid-template-columns: 43% 57%; align-items: stretch; }
.hero-copy { padding: 55px 55px 50px 0; align-self: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 9px 15px; border-radius: 999px; border: 1px solid #d8ded0; background: rgba(255,255,255,.55); color: var(--green); font-size: 13px; font-weight: 700; }
.eyebrow span { font-size: 11px; }
.hero h1 { margin: 22px 0 13px; max-width: 600px; font-size: clamp(42px, 5vw, 65px); line-height: 1.05; letter-spacing: -3.2px; color: var(--green-dark); }
.hero h1 span { color: var(--orange); font-weight: 500; }
.hero-copy > p { margin: 0; max-width: 570px; font-size: 16px; line-height: 1.75; color: #4c554b; }
.hero-actions { display: flex; gap: 14px; margin-top: 25px; flex-wrap: wrap; }
.button { min-height: 48px; padding: 0 23px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; font-size: 14px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(240,90,40,.18); }
.button-primary { color: #fff; background: var(--orange); }
.button-primary:hover { background: var(--orange-dark); }
.button-outline { border: 1.5px solid var(--orange); color: var(--orange); background: #fff; }
.community-proof { margin-top: 28px; display: flex; gap: 16px; align-items: center; }
.avatars { display: flex; }
.avatars img { width: 37px; height: 37px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; margin-right: -10px; }
.community-proof p { margin: 0 0 0 7px; font-size: 12px; line-height: 1.7; }

.hero-visual { position: relative; min-height: 510px; }
.hero-image { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(247,243,236,.5), transparent 26%); }
.floating-card { position: absolute; left: 5%; bottom: 32px; width: min(390px, 80%); padding: 16px 18px; display: grid; grid-template-columns: 48px 1fr auto; gap: 13px; align-items: center; background: rgba(255,255,255,.95); border-radius: 17px; box-shadow: var(--shadow); }
.mini-logo, .business-logo { border: 1px solid #d7d1c7; border-radius: 50%; display: grid; place-items: center; color: var(--green); font-weight: 800; background: #fff; }
.mini-logo { width: 48px; height: 48px; font-size: 11px; }
.floating-card strong, .floating-card span, .floating-card small { display: block; }
.floating-card strong { font-size: 14px; }
.floating-card span { font-size: 11px; margin-top: 3px; color: #50574f; }
.floating-card small { margin-top: 5px; color: #777e75; }
.floating-card b { font-size: 12px; color: #f39a00; }

.section { padding: 48px 0; }
.section-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.section-heading h2 { margin: 0; font-size: 25px; letter-spacing: -.8px; }
.section-heading a { font-size: 12px; color: #3d473b; }

.category-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 16px; }
.category-card { min-height: 133px; padding: 20px 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center; background: var(--cream-2); border-radius: 16px; transition: .2s ease; }
.category-card:hover { transform: translateY(-4px); background: #f4eee5; box-shadow: 0 10px 22px rgba(39,55,34,.08); }
.category-card span { font-size: 34px; color: var(--green); line-height: 1; }
.category-card strong { font-size: 12px; line-height: 1.45; }

.businesses { padding-top: 25px; }
.business-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.business-card { overflow: hidden; background: #fff; border: 1px solid #eee9e1; border-radius: 15px; box-shadow: 0 8px 22px rgba(32,45,29,.07); transition: .25s ease; }
.business-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.business-image-wrap { position: relative; aspect-ratio: 1.45; overflow: hidden; }
.business-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.business-card:hover img { transform: scale(1.05); }
.business-image-wrap button { position: absolute; right: 11px; top: 11px; width: 34px; height: 34px; border: 0; border-radius: 50%; background: rgba(255,255,255,.95); color: var(--green); font-size: 22px; cursor: pointer; }
.business-content { position: relative; padding: 22px 16px 16px; }
.business-logo { position: absolute; width: 43px; height: 43px; top: -24px; left: 15px; font-size: 10px; }
.business-content h3 { margin: 1px 0 4px; font-size: 16px; }
.business-content p { margin: 0; min-height: 38px; font-size: 12px; color: var(--muted); line-height: 1.5; }
.card-meta { margin-top: 13px; display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: #6c736b; }
.card-meta strong { color: #f39a00; }

.benefits { padding-top: 18px; }
.benefits-panel { padding: 33px 35px 30px; border-radius: 20px; background: linear-gradient(90deg, #fbf8f3, #f4f2ec); }
.benefits-panel > h2 { margin: 0 0 30px; text-align: center; font-size: 24px; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.benefit-grid article { text-align: center; }
.benefit-grid span { font-size: 34px; color: var(--green); }
.benefit-grid h3 { margin: 11px 0 8px; font-size: 14px; }
.benefit-grid p { margin: 0; font-size: 12px; line-height: 1.7; color: #687066; }

.publish { padding-top: 0; }
.publish-banner { min-height: 112px; padding: 23px 35px; display: grid; grid-template-columns: auto 1fr auto; gap: 25px; align-items: center; border-radius: 16px; color: #fff; background: linear-gradient(105deg, #39522d, #253a22); overflow: hidden; position: relative; }
.publish-banner::after { content: ""; position: absolute; right: -20px; bottom: -35px; width: 260px; height: 130px; opacity: .18; background: radial-gradient(circle at 20% 80%, #fff 0 6%, transparent 7%), radial-gradient(circle at 40% 70%, #fff 0 7%, transparent 8%), radial-gradient(circle at 60% 78%, #fff 0 6%, transparent 7%); }
.publish-icon { width: 62px; height: 62px; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.75); font-size: 33px; }
.publish h2 { margin: 0 0 4px; font-size: 22px; }
.publish p { margin: 0; font-size: 13px; opacity: .84; }
.button-light { position: relative; z-index: 2; background: #fff8ee; color: var(--green); min-width: 245px; }

.site-footer { background: linear-gradient(180deg, #f9f7f3, #f4f2ec); padding: 44px 0 18px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, .75fr) 1.1fr; gap: 34px; }
.site-footer h3, .site-footer h4 { margin-top: 0; }
.site-footer h3 { font-size: 14px; line-height: 1.5; }
.site-footer h4 { font-size: 12px; }
.newsletter form { display: flex; }
.newsletter input { min-width: 0; height: 42px; border: 1px solid #ddd8d0; border-radius: 7px 0 0 7px; padding: 0 12px; }
.newsletter button { border: 0; padding: 0 15px; border-radius: 0 7px 7px 0; background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; }
.newsletter small { display: block; margin-top: 10px; color: #747b73; font-size: 9px; }
.site-footer > .container > div:not(.newsletter):not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }
.site-footer a { font-size: 10px; color: #5f675e; }
.site-footer a:hover { color: var(--orange); }
.footer-brand p { font-size: 10px; color: #5f675e; }
.socials { display: flex; gap: 9px; }
.socials a { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #fff; font-weight: 800; }
.copyright { margin-top: 35px; padding-top: 15px; border-top: 1px solid #e1ddd6; display: flex; justify-content: center; gap: 75px; font-size: 9px; color: #737a72; }

@media (max-width: 1050px) {
  .header-inner { grid-template-columns: 210px 1fr auto; gap: 16px; }
  .main-nav a { display: none; }
  .hero h1 { font-size: 50px; }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 780px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { position: relative; }
  .header-inner { min-height: 75px; grid-template-columns: 1fr auto; }
  .search-bar, .main-nav { display: none; }
  .menu-toggle { display: block; }
  .main-nav.is-open { position: absolute; display: flex; top: 74px; left: 14px; right: 14px; padding: 18px; flex-direction: column; align-items: stretch; background: #fff; box-shadow: var(--shadow); border-radius: 15px; }
  .main-nav.is-open a { display: block; }
  .main-nav.is-open .icon-button { display: none; }
  .hero { background: var(--cream-2); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 42px 0 35px; }
  .hero h1 { font-size: clamp(42px, 12vw, 56px); letter-spacing: -2.5px; }
  .hero-visual { min-height: 390px; margin-inline: -14px; }
  .floating-card { left: 20px; bottom: 20px; }
  .business-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .publish-banner { grid-template-columns: auto 1fr; }
  .button-light { grid-column: 1 / -1; width: 100%; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter, .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .brand-name { font-size: 20px; }
  .brand small { display: none; }
  .hero-copy { padding-top: 32px; }
  .hero h1 { font-size: 43px; }
  .hero-copy > p { font-size: 14px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .community-proof { align-items: flex-start; }
  .section { padding: 37px 0; }
  .section-heading { align-items: flex-end; }
  .section-heading h2 { font-size: 22px; }
  .section-heading a { max-width: 110px; text-align: right; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 11px; }
  .business-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefits-panel { padding-inline: 22px; }
  .publish-banner { grid-template-columns: 1fr; text-align: center; }
  .publish-icon { margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter, .footer-brand { grid-column: auto; }
  .copyright { gap: 8px; flex-direction: column; text-align: center; }
}
