:root {
    color-scheme: light;
    --orange: #DC7028;
    --teal: #468386;
    --ink: #172026;
    --muted: #667085;
    --line: #d9dee3;
    --soft: #f6f8f7;
    --paper: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px clamp(18px, 5vw, 64px);
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 21px;
    font-weight: 800;
    white-space: nowrap;
}

.logo-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    color: #fff;
    background: var(--orange);
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
}

.top-nav,
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-nav a,
.link-button {
    color: #344054;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.button,
.search-box button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 6px;
    color: #fff;
    background: var(--orange);
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
}

.button.small {
    min-height: 40px;
    padding-inline: 14px;
}

.button.alt {
    background: var(--teal);
}

.hero-search {
    min-height: 620px;
    display: grid;
    align-content: start;
    gap: 24px;
    padding: 16px clamp(18px, 5vw, 64px) 88px;
    background:
        linear-gradient(90deg, rgba(23, 32, 38, .86), rgba(70, 131, 134, .68)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='760' viewBox='0 0 1400 760'%3E%3Crect width='1400' height='760' fill='%23dfe8e5'/%3E%3Cg opacity='.95'%3E%3Crect x='70' y='86' width='270' height='190' rx='14' fill='%23ffffff'/%3E%3Crect x='380' y='86' width='270' height='190' rx='14' fill='%23ffffff'/%3E%3Crect x='690' y='86' width='270' height='190' rx='14' fill='%23ffffff'/%3E%3Crect x='1000' y='86' width='270' height='190' rx='14' fill='%23ffffff'/%3E%3Crect x='95' y='296' width='360' height='230' rx='14' fill='%23ffffff'/%3E%3Crect x='495' y='296' width='360' height='230' rx='14' fill='%23ffffff'/%3E%3Crect x='895' y='296' width='360' height='230' rx='14' fill='%23ffffff'/%3E%3C/g%3E%3Ccircle cx='1170' cy='610' r='84' fill='%23DC7028' opacity='.8'/%3E%3Ccircle cx='1040' cy='630' r='54' fill='%23468386' opacity='.85'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

.overlay-header {
    position: relative;
    top: auto;
    padding: 0 0 10px;
    background: transparent;
    border-bottom: 0;
    color: #fff;
}

.overlay-header .logo,
.overlay-header .link-button {
    color: #fff;
}

.yelpish-header {
    display: grid;
    grid-template-columns: auto minmax(420px, 930px) auto;
    align-items: center;
    gap: 20px;
}

.header-link {
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

.global-search {
    display: grid;
    grid-template-columns: 1.2fr 1fr 58px;
    min-height: 48px;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(16, 24, 40, .18);
}

.global-search input {
    width: 100%;
    border: 0;
    border-right: 1px solid var(--line);
    padding: 0 16px;
    color: var(--ink);
    outline: 0;
    font-size: 16px;
}

.global-search button {
    border: 0;
    background: #e11919;
    color: #fff;
    font-size: 0;
    font-weight: 900;
    cursor: pointer;
}

.global-search button::before {
    content: "Q";
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-size: 22px;
    font-weight: 900;
}

.hero-searchbar {
    width: min(1228px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 130px 1.2fr 1fr auto auto;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 14px;
    background: rgba(255, 255, 255, .34);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
    backdrop-filter: blur(8px);
}

.hero-searchbar .search-icon {
    display: grid;
    place-items: center;
    min-height: 80px;
    color: rgba(255, 255, 255, .76);
    font-weight: 900;
    border-right: 1px solid rgba(255, 255, 255, .42);
}

.hero-searchbar label {
    display: grid;
    gap: 4px;
    padding: 16px 22px;
    border-right: 1px solid rgba(255, 255, 255, .42);
}

.hero-searchbar span {
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-searchbar input {
    width: 100%;
    min-height: 34px;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
    font-size: 17px;
}

.hero-searchbar input::placeholder {
    color: #fff;
    opacity: .95;
}

.hero-searchbar button,
.hero-searchbar .login-action {
    align-self: center;
    min-height: 40px;
    margin: 0 10px;
}

.category-menu {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    width: min(1020px, 100%);
    margin: 4px auto 0;
    min-height: 48px;
}

.results-nav {
    position: sticky;
    top: 73px;
    z-index: 9;
    display: flex;
    justify-content: center;
    gap: 30px;
    min-height: 58px;
    padding: 0 clamp(18px, 5vw, 64px);
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.menu-item {
    position: relative;
}

.menu-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    white-space: nowrap;
    font-size: 15px;
    line-height: 1;
}

.results-nav .menu-trigger {
    color: var(--ink);
    font-weight: 700;
}

.results-nav .menu-chevron {
    color: var(--teal);
}

.menu-chevron {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    color: #d8f4f1;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .18s ease, color .18s ease;
}

.menu-item:hover .menu-chevron,
.menu-item:focus-within .menu-chevron {
    color: var(--orange);
    transform: rotate(225deg) translateY(-1px);
}

.mega-menu {
    position: absolute;
    left: 50%;
    top: 48px;
    width: min(760px, calc(100vw - 36px));
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 22px;
    border-top: 3px solid var(--orange);
    border-radius: 0 0 22px 22px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
    transform: translateX(-50%);
}

.menu-item:hover .mega-menu,
.menu-item:focus-within .mega-menu {
    display: grid;
}

.mega-menu a {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 14px;
    min-height: 64px;
    padding: 8px;
    color: #101828;
    text-decoration: none;
}

.mega-menu a:hover {
    background: #f7faf9;
}

.menu-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    color: var(--teal);
    font-size: 11px;
    font-weight: 900;
}

.results-header {
    position: sticky;
    top: 0;
    z-index: 11;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.hero-copy {
    max-width: 860px;
    margin-top: 130px;
    color: #fff;
}

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

.hero-copy .eyebrow {
    color: #ffbf91;
}

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

h1 {
    max-width: 900px;
    margin-bottom: 18px;
    font-size: clamp(42px, 6vw, 68px);
    line-height: .95;
}

.hero-copy p:not(.eyebrow) {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 20px;
    line-height: 1.55;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 18px;
}

.hero-badges span {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    font-size: 14px;
    font-weight: 800;
}

.search-box {
    width: min(980px, 100%);
    display: grid;
    grid-template-columns: 1.1fr 1fr auto;
    gap: 0;
    padding: 8px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 22px 60px rgba(16, 24, 40, .25);
}

.search-box label {
    display: grid;
    gap: 4px;
    padding: 4px 16px;
    border-right: 1px solid var(--line);
}

.search-box label:last-of-type {
    border-right: 0;
}

.search-box span {
    color: var(--teal);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.search-box input {
    width: 100%;
    min-height: 36px;
    border: 0;
    outline: 0;
    color: var(--ink);
    font-size: 16px;
}

.popular-searches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.popular-searches a {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    background: rgba(255, 255, 255, .12);
}

.intro-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px clamp(18px, 5vw, 64px);
    background: var(--teal);
    color: #fff;
}

.intro-band span {
    display: block;
    margin-bottom: 4px;
    color: #d8f4f1;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.intro-band strong {
    font-size: clamp(20px, 3vw, 30px);
    line-height: 1.15;
}

.section {
    padding: 72px clamp(18px, 5vw, 64px);
}

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

.section-heading h2,
.cta-section h2 {
    margin-bottom: 0;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.05;
}

.centered-heading {
    max-width: 780px;
    margin-inline: auto;
    text-align: center;
    position: relative;
}

.centered-heading > p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.55;
}

.ghost-title {
    position: absolute;
    left: 50%;
    top: -22px;
    z-index: 0;
    color: rgba(70, 131, 134, .08);
    font-size: clamp(56px, 9vw, 88px);
    font-weight: 900;
    line-height: 1;
    transform: translateX(-50%);
    white-space: nowrap;
}

.centered-heading .eyebrow,
.centered-heading h2,
.centered-heading p {
    position: relative;
    z-index: 1;
}

.about-section {
    background: #fff;
}

.about-split {
    display: grid;
    grid-template-columns: minmax(320px, .9fr) minmax(460px, 1.1fr);
    gap: clamp(32px, 7vw, 88px);
    align-items: center;
}

.about-copy h2 {
    max-width: 620px;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.05;
}

.about-copy p {
    max-width: 640px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.about-founder {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.about-founder span {
    color: #344054;
    font-weight: 800;
}

.about-visual {
    position: relative;
    min-height: 520px;
}

.about-image-main,
.about-image-small {
    position: absolute;
    overflow: hidden;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(220, 112, 40, .22), rgba(70, 131, 134, .48)),
        linear-gradient(135deg, #e8eef2, #f8fafc);
    box-shadow: 0 24px 60px rgba(16, 24, 40, .16);
}

.about-image-main {
    right: 0;
    top: 0;
    width: 72%;
    height: 430px;
}

.about-image-small{
    background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
        url("https://guadalupelandscaping.goldendigitalgroup.co/wp-content/uploads/2026/06/landscaping.webp") center center / cover no-repeat;
    left: 0;
    bottom: 30px;
    width: 38%;
    height: 230px;
}

.about-feature-card {
    position: absolute;
    left: 22%;
    top: 38%;
    width: min(380px, 64%);
    display: grid;
    gap: 14px;
    padding: 22px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 24px 50px rgba(16, 24, 40, .18);
}

.about-feature-card div {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 12px;
    align-items: start;
}

.about-feature-card span {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    background: var(--orange);
    font-size: 11px;
    font-weight: 900;
}

.about-feature-card p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.experience-badge {
    position: absolute;
    right: 5%;
    bottom: 0;
    min-width: 170px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 12px;
    color: #fff;
    background: rgba(23, 32, 38, .72);
    box-shadow: 0 18px 36px rgba(16, 24, 40, .22);
}

.experience-badge strong {
    display: block;
    font-size: 38px;
    line-height: 1;
}

.experience-badge span {
    font-size: 13px;
    font-weight: 800;
}

.mission-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 38px;
}

.mission-strip article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.mission-strip p {
    color: var(--muted);
    line-height: 1.65;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 18px;
}

.about-grid article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 36px rgba(16, 24, 40, .05);
}

.about-grid h3 {
    font-size: 22px;
}

.about-grid p {
    color: var(--muted);
    line-height: 1.65;
}

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

.category-card {
    min-height: 178px;
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    border-color: var(--teal);
    box-shadow: 0 18px 34px rgba(16, 24, 40, .08);
}

.category-card span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(220, 112, 40, .12);
    color: var(--orange);
    font-weight: 900;
}

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

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

.business-section,
.steps-section {
    background: var(--soft);
}

.latest-section {
    overflow: hidden;
    background: #fff;
}

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

.listing-card {
    min-height: 260px;
    display: grid;
    align-content: space-between;
    overflow: hidden;
    padding: 18px;
    border-radius: 8px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(10, 20, 38, .15), rgba(10, 20, 38, .92)),
        linear-gradient(135deg, var(--orange), var(--teal));
    box-shadow: 0 18px 38px rgba(16, 24, 40, .18);
    text-decoration: none;
}

.listing-card.shade-2 {
    background:
        linear-gradient(180deg, rgba(10, 20, 38, .15), rgba(10, 20, 38, .92)),
        linear-gradient(135deg, #5a78bd, var(--teal));
}

.listing-card.shade-3 {
    background:
        linear-gradient(180deg, rgba(10, 20, 38, .15), rgba(10, 20, 38, .92)),
        linear-gradient(135deg, #263549, var(--orange));
}

.listing-card.shade-4 {
    background:
        linear-gradient(180deg, rgba(10, 20, 38, .15), rgba(10, 20, 38, .92)),
        linear-gradient(135deg, #1b2b44, #4e8f72);
}

.listing-top,
.listing-bottom,
.listing-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.save-dot {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #385aa8;
    color: #fff;
    font-size: 20px;
}

.open-pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: #58c9b9;
    font-size: 12px;
    font-weight: 900;
}

.listing-main h3 {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.15;
}

.listing-main p {
    font-size: 14px;
    color: rgba(255, 255, 255, .82);
}

.listing-rating strong {
    padding: 8px 10px;
    border-radius: 4px;
    background: #3b5bab;
}

.listing-rating span,
.listing-bottom span {
    font-size: 13px;
    font-weight: 800;
}

.listing-bottom {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.listing-bottom strong {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
}

.popular-section {
    background: #fff;
}

.category-tabs {
    width: min(980px, 100%);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin: 34px auto 40px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 6px;
}

.category-tabs a {
    display: inline-grid;
    place-items: center;
    min-width: 126px;
    min-height: 58px;
    padding: 0 18px;
    color: #6b7b95;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    border-right: 1px solid var(--line);
    line-height: 1.25;
}

.category-tabs a:last-child {
    border-right: 0;
}

.category-tabs a.active,
.category-tabs a:hover {
    color: #fff;
    background: #52b8f5;
}

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

.popular-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 30px rgba(16, 24, 40, .07);
}

.popular-image {
    min-height: 190px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(13, 30, 55, .05), rgba(13, 30, 55, .85)),
        linear-gradient(135deg, var(--teal), var(--orange));
    background-position: center;
    background-size: cover;
}

.popular-image span,
.popular-image strong {
    display: grid;
    place-items: center;
    border-radius: 50%;
}

.popular-image span {
    width: 44px;
    height: 44px;
    background: #3b5bab;
    font-weight: 900;
}

.popular-image strong {
    min-width: 50px;
    height: 38px;
    padding: 0 10px;
    border-radius: 6px;
    background: var(--orange);
}

.popular-body {
    padding: 20px;
}

.popular-body p {
    color: var(--muted);
    line-height: 1.55;
}

.popular-body a {
    color: var(--teal);
    font-weight: 900;
}

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

.business-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.business-photo {
    height: 190px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(220, 112, 40, .92), rgba(70, 131, 134, .92)),
        var(--teal);
}

.business-photo span {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border: 3px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    color: #fff;
    font-size: 44px;
    font-weight: 900;
}

.business-body {
    padding: 18px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.rating strong {
    color: var(--teal);
}

.rating span {
    color: var(--orange);
    font-size: 13px;
    letter-spacing: 0;
}

.business-body h3 {
    margin-bottom: 8px;
    font-size: 22px;
}

.business-body p,
.steps p,
.cta-section p {
    color: var(--muted);
    line-height: 1.55;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.meta-row span {
    padding: 6px 8px;
    border-radius: 999px;
    background: #eef6f6;
    color: var(--teal);
    font-size: 12px;
    font-weight: 800;
}

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

.steps div {
    min-height: 210px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.free-section {
    background: #fff;
}

.free-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    gap: 28px;
    padding: clamp(24px, 5vw, 48px);
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, #172026, var(--teal));
}

.free-card h2 {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.05;
}

.free-card p {
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
    line-height: 1.6;
}

.free-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.free-card li {
    padding: 12px 14px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .12);
    font-weight: 800;
}

.free-card li::before {
    content: "OK";
    margin-right: 10px;
    color: #ffbf91;
    font-size: 12px;
}

.quick-services {
    background: var(--soft);
}

.service-cloud {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.service-cloud a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #344054;
    background: #fff;
    text-decoration: none;
    font-weight: 800;
}

.app-cta {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(360px, 1fr);
    align-items: center;
    min-height: 520px;
    overflow: hidden;
    padding: 72px clamp(18px, 10vw, 180px);
    color: #fff;
    background: #67baf0;
}

.app-cta::before,
.app-cta::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
}

.app-cta::before {
    width: 540px;
    height: 160px;
    left: -120px;
    bottom: -20px;
    transform: rotate(36deg);
}

.app-cta::after {
    width: 480px;
    height: 160px;
    right: -80px;
    top: -12px;
    transform: rotate(36deg);
}

.app-copy {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

.app-copy h2 {
    margin-bottom: 16px;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.05;
}

.app-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, .9);
    line-height: 1.55;
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.store-buttons a {
    min-width: 190px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 5px solid rgba(255, 255, 255, .55);
    border-radius: 999px;
    color: #6b7b95;
    background: #fff;
    text-decoration: none;
    font-weight: 900;
}

.phone-map {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    height: 300px;
    justify-self: end;
    border: 14px solid rgba(255, 255, 255, .95);
    border-radius: 34px;
    background:
        linear-gradient(45deg, rgba(70, 131, 134, .22) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(70, 131, 134, .22) 25%, transparent 25%),
        #edf5f3;
    background-size: 70px 70px;
    box-shadow: 0 30px 80px rgba(16, 24, 40, .22);
    transform: rotate(-18deg);
}

.map-chip {
    position: absolute;
    padding: 12px 16px;
    border-radius: 6px;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(16, 24, 40, .18);
}

.chip-one {
    right: 34px;
    top: 26px;
    background: #3755a4;
}

.chip-two {
    right: 120px;
    bottom: 46px;
    background: #58c9b9;
}

.chip-three {
    left: 80px;
    bottom: 86px;
    background: var(--orange);
}

.site-footer {
    color: #fff;
    background: #36589e;
}

.newsletter-bar {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(360px, 1.4fr);
    gap: 32px;
    align-items: center;
    padding: 42px clamp(18px, 10vw, 180px);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.newsletter-bar h2 {
    margin-bottom: 8px;
    font-size: 18px;
}

.newsletter-bar p,
.footer-main p,
.footer-main li {
    color: rgba(255, 255, 255, .76);
}

.newsletter-bar form {
    display: grid;
    grid-template-columns: 1fr 110px;
    overflow: hidden;
    border-radius: 999px;
    background: #fff;
}

.newsletter-bar input {
    min-height: 58px;
    border: 0;
    padding: 0 24px;
    outline: 0;
}

.newsletter-bar button {
    border: 0;
    color: var(--teal);
    background: #fff;
    font-weight: 900;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 44px;
    padding: 54px clamp(18px, 10vw, 180px);
}

.footer-main .logo {
    color: #fff;
    margin-bottom: 26px;
}

.footer-main ul {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.footer-main h3 {
    margin-bottom: 22px;
}

.footer-main a:not(.logo) {
    display: block;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, .86);
    text-decoration: none;
    font-weight: 800;
}

.steps span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    font-weight: 900;
}

.steps strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.cta-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 72px clamp(18px, 5vw, 64px);
    color: #fff;
    background: #172026;
}

.cta-section div {
    max-width: 760px;
}

.cta-section p:not(.eyebrow) {
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
}

.list-hero,
.form-hero {
    padding: 74px clamp(18px, 5vw, 64px);
    color: #fff;
    background: linear-gradient(135deg, #172026, var(--teal));
}

.list-hero p,
.form-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.55;
}

.inline-search {
    width: min(820px, 100%);
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
    margin-top: 22px;
}

.inline-search input,
.business-form input,
.business-form select,
.business-form textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    font: inherit;
}

.inline-search button,
.business-form button {
    min-height: 44px;
    border: 0;
    border-radius: 6px;
    padding: 0 18px;
    background: var(--orange);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.empty-state,
.business-form {
    width: min(860px, 100%);
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

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

.register-map-form {
    width: min(1180px, 100%);
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
    align-items: start;
}

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

.form-fields .wide {
    grid-column: 1 / -1;
}

.location-picker {
    display: grid;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fbfb;
}

.location-picker h2 {
    margin: 0;
}

.location-picker p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.register-map {
    display: block;
    width: 100%;
    height: 320px;
    min-height: 320px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #edf5f3;
}

.register-map.leaflet-container {
    min-height: 320px;
}

.business-form label {
    display: grid;
    gap: 7px;
    color: #344054;
    font-weight: 800;
}

.business-form > label:nth-of-type(5) {
    grid-column: 1 / -1;
}

.business-form button,
.success-box,
.error-box {
    grid-column: 1 / -1;
}

.register-map-form > button,
.register-map-form .success-box,
.register-map-form .error-box {
    grid-column: 1 / -1;
}

.success-box,
.error-box {
    padding: 12px;
    border-radius: 6px;
    font-weight: 800;
}

.success-box {
    background: #ecfdf3;
    color: #067647;
}

.error-box {
    background: #fef3f2;
    color: #b42318;
}

.results-layout {
    display: grid;
    grid-template-columns: 288px minmax(480px, 1fr) minmax(420px, 36vw);
    min-height: calc(100vh - 132px);
    background: #fff;
}

.filters-panel {
    padding: 34px 40px;
    border-right: 1px solid var(--line);
}

.filters-panel h2 {
    margin-bottom: 20px;
    font-size: 18px;
}

.filter-group {
    display: grid;
    gap: 12px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475467;
    font-size: 14px;
}

.filter-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.price-pills {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid #cfd4dc;
    border-radius: 999px;
}

.price-pills span {
    display: grid;
    place-items: center;
    min-height: 32px;
    border-right: 1px solid #cfd4dc;
    font-size: 13px;
    font-weight: 800;
}

.price-pills span:last-child {
    border-right: 0;
}

.filter-chip {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid #cfd4dc;
    border-radius: 999px;
    color: #344054;
    background: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.results-content {
    padding: 26px 24px 40px;
}

.results-titlebar {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: start;
    margin-bottom: 28px;
}

.results-titlebar h1 {
    max-width: 760px;
    margin: 0;
    color: var(--ink);
    font-size: 26px;
    line-height: 1.25;
}

.results-titlebar > span {
    margin-top: 34px;
    color: #344054;
    font-size: 14px;
    white-space: nowrap;
}

.quote-box {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    min-height: 178px;
    margin-bottom: 32px;
    padding: 28px;
    border: 2px dashed var(--line);
    border-radius: 8px;
}

.quote-box h2 {
    margin-bottom: 8px;
    font-size: 22px;
}

.quote-icon {
    display: grid;
    place-items: center;
    width: 110px;
    height: 110px;
    color: var(--teal);
    border: 2px solid var(--teal);
    border-radius: 22px;
    font-weight: 900;
}

.results-list {
    display: grid;
    gap: 24px;
}

.result-card {
    display: grid;
    grid-template-columns: 150px minmax(260px, 1fr) 190px;
    gap: 24px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: box-shadow .18s ease, transform .18s ease;
}

.result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(16, 24, 40, .08);
}

.result-photo {
    height: 150px;
    display: grid;
    place-items: center;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--orange), var(--teal));
}

.result-photo span {
    color: #fff;
    font-size: 54px;
    font-weight: 900;
}

.result-body h2 {
    margin-bottom: 8px;
    font-size: 22px;
}

.result-rating {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
}

.result-rating strong {
    display: inline-flex;
    min-height: 24px;
    padding: 2px 8px;
    border-radius: 4px;
    color: #fff;
    background: var(--orange);
}

.result-rating span {
    color: #475467;
    font-size: 14px;
}

.result-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
    color: var(--teal);
    font-weight: 800;
}

.result-actions a {
    color: var(--teal);
}

.result-card address {
    color: #475467;
    font-style: normal;
    font-size: 13px;
    line-height: 1.4;
    text-align: right;
}

.map-panel {
    position: sticky;
    top: 132px;
    height: calc(100vh - 132px);
    overflow: hidden;
    border-left: 1px solid var(--line);
    background:
        linear-gradient(45deg, rgba(70, 131, 134, .16) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(70, 131, 134, .16) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(70, 131, 134, .16) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(70, 131, 134, .16) 75%),
        #edf5f3;
    background-size: 80px 80px;
    background-position: 0 0, 0 40px, 40px -40px, -40px 0;
}

.map-panel::before,
.map-panel::after {
    content: "";
    position: absolute;
    inset: 15% -12%;
    height: 20px;
    background: rgba(80, 118, 160, .4);
    border-radius: 999px;
    transform: rotate(-22deg);
}

.map-panel::after {
    inset: 54% -15%;
    transform: rotate(18deg);
}

.map-toolbar {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 12px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(16, 24, 40, .16);
}

.map-pin {
    position: absolute;
    z-index: 2;
    width: 28px;
    height: 28px;
    border: 5px solid #fff;
    border-radius: 50% 50% 50% 0;
    background: #ef3f35;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .22);
    transform: rotate(-45deg);
}

.map-pin::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: #fff;
}

.map-pin.p1 { left: 28%; top: 28%; }
.map-pin.p2 { left: 42%; top: 42%; }
.map-pin.p3 { left: 57%; top: 34%; }
.map-pin.p4 { left: 67%; top: 62%; }
.map-pin.p5 { left: 34%; top: 68%; }

.map-city {
    position: absolute;
    left: 38%;
    top: 48%;
    z-index: 1;
    color: rgba(23, 32, 38, .65);
    font-size: 28px;
    font-weight: 800;
}

.map-zoom {
    position: absolute;
    right: 14px;
    top: 66px;
    z-index: 2;
    display: grid;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(16, 24, 40, .16);
}

.map-zoom button {
    width: 46px;
    height: 44px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: #fff;
    font-size: 24px;
    cursor: default;
}

.map-zoom button:last-child {
    border-bottom: 0;
}

.profile-page {
    background: #fff;
}

.profile-layout {
    width: min(1140px, calc(100% - 36px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    margin: 0 auto;
    padding: 44px 0 80px;
}

.profile-heading {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.profile-heading h1 {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: clamp(40px, 5vw, 56px);
}

.profile-title-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.profile-logo {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.profile-rating,
.profile-actions,
.profile-section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.profile-rating strong {
    padding: 6px 10px;
    border-radius: 4px;
    color: #fff;
    background: var(--orange);
}

.profile-rating span {
    color: var(--orange);
    font-weight: 900;
}

.open-line {
    color: #067647;
    font-weight: 800;
}

.profile-actions {
    margin-top: 20px;
}

.profile-actions button {
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-weight: 800;
}

.profile-section {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}

.profile-section h2 {
    font-size: 22px;
}

.profile-section-head {
    justify-content: space-between;
    margin-bottom: 14px;
}

.profile-section-head a {
    color: var(--teal);
    font-weight: 900;
}

.photo-strip {
    display: grid;
    grid-template-columns: 220px 220px;
    gap: 12px;
}

.profile-photo {
    min-height: 150px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--orange), var(--teal));
    color: #fff;
    font-weight: 900;
}

.profile-photo span {
    font-size: 54px;
}

.add-photo {
    color: #344054;
    background: #f2f4f7;
}

.profile-photo-img {
    width: 220px;
    height: 150px;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 6px;
}

.real-photos {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    overflow-x: auto;
    padding-bottom: 6px;
}

.location-hours {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 22px;
}

.location-hours h2 {
    grid-column: 1 / -1;
}

.profile-map {
    position: relative;
    min-height: 180px;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(45deg, rgba(70, 131, 134, .16) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(70, 131, 134, .16) 25%, transparent 25%),
        #edf5f3;
    background-size: 60px 60px;
}

.profile-map strong {
    position: absolute;
    left: 24px;
    bottom: 20px;
    color: rgba(23, 32, 38, .72);
}

.profile-google-map {
    min-height: 220px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f2f4f7;
}

.profile-google-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 220px;
    border: 0;
}

.map-link {
    display: inline-flex;
    margin: 10px 0 14px;
    color: var(--teal);
    font-weight: 900;
}

.leaflet-map {
    min-height: 100%;
    width: 100%;
    z-index: 1;
}

.ebp-map-marker {
    width: 24px;
    height: 24px;
    border: 3px solid #fff;
    border-radius: 50% 50% 50% 0;
    background: var(--orange);
    box-shadow: 0 8px 18px rgba(16, 24, 40, .28);
    transform: rotate(-45deg);
}

.ebp-map-marker::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: #fff;
}

.map-fallback {
    min-height: 100%;
    display: grid;
    place-items: center;
    padding: 18px;
    color: #475467;
    text-align: center;
    background: #f2f4f7;
    font-weight: 800;
}

.map-panel .leaflet-map {
    position: absolute;
    inset: 0;
}

.map-panel .leaflet-control-container,
.profile-map .leaflet-control-container {
    font-family: inherit;
}

.location-hours table {
    width: 100%;
    border-collapse: collapse;
}

.location-hours td {
    padding: 7px 0;
}

.hours-note {
    margin-top: 12px;
    padding: 12px;
    border-radius: 8px;
    background: #f8fbfb;
    color: var(--muted);
}

.review-card,
.contact-card,
.verify-card {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.review-card {
    background: #eef8ff;
}

.profile-side {
    display: grid;
    align-content: start;
    gap: 18px;
    position: sticky;
    top: 94px;
}

.contact-card p {
    display: grid;
    gap: 4px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.contact-card span {
    color: var(--teal);
    font-weight: 900;
}

.verify-card p {
    color: var(--muted);
    line-height: 1.5;
}

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

.post-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(23, 32, 38, .08);
}

.post-image {
    min-height: 180px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 14px;
    background:
        linear-gradient(135deg, rgba(220, 112, 40, .78), rgba(70, 131, 134, .82)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='240' viewBox='0 0 420 240'%3E%3Cpath fill='%23fff' fill-opacity='.2' d='M0 160 130 40l90 70 70-50 130 100v80H0z'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

.post-image span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: var(--ink);
    font-weight: 800;
    font-size: 12px;
}

.post-body {
    padding: 20px;
}

.post-body h2 {
    margin: 4px 0 10px;
    font-size: 22px;
}

.post-body p {
    color: var(--muted);
    line-height: 1.55;
}

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

    .business-grid,
    .steps,
    .about-grid,
    .popular-card-grid,
    .about-split,
    .post-grid,
    .profile-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .listing-row {
        overflow-x: auto;
        grid-template-columns: repeat(4, minmax(280px, 340px));
        padding-bottom: 12px;
    }

    .app-cta,
    .newsletter-bar,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .phone-map {
        justify-self: start;
    }

    .hero-searchbar {
        grid-template-columns: 1fr 1fr;
    }

    .hero-searchbar .search-icon {
        display: none;
    }

    .category-menu {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .yelpish-header {
        grid-template-columns: 1fr;
    }

    .results-layout {
        grid-template-columns: 240px 1fr;
    }

    .map-panel {
        display: none;
    }

    .result-card {
        grid-template-columns: 130px 1fr;
    }

    .result-card address {
        grid-column: 2;
        text-align: left;
    }
}

@media (max-width: 760px) {
    .hero-search {
        min-height: auto;
        display: block;
        padding: 0;
        background:
            linear-gradient(90deg, rgba(23, 32, 38, .88), rgba(70, 131, 134, .72)),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='760' height='900' viewBox='0 0 760 900'%3E%3Crect width='760' height='900' fill='%23dfe8e5'/%3E%3Cg opacity='.72'%3E%3Crect x='34' y='110' width='180' height='140' rx='14' fill='%23ffffff'/%3E%3Crect x='248' y='110' width='180' height='140' rx='14' fill='%23ffffff'/%3E%3Crect x='462' y='110' width='180' height='140' rx='14' fill='%23ffffff'/%3E%3Crect x='72' y='300' width='240' height='190' rx='14' fill='%23ffffff'/%3E%3Crect x='360' y='300' width='240' height='190' rx='14' fill='%23ffffff'/%3E%3C/g%3E%3C/svg%3E");
        background-size: cover;
        background-position: center top;
    }

    .site-header,
    .intro-band,
    .cta-section {
        align-items: flex-start;
        flex-direction: column;
    }

    .overlay-header.yelpish-header {
        position: relative;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 10px;
        width: 100%;
        padding: 12px 12px 10px;
        background: #e11919;
        color: #fff;
    }

    .overlay-header .logo {
        justify-self: center;
        grid-column: 1 / -1;
        font-size: 20px;
    }

    .overlay-header .logo-mark {
        width: 34px;
        height: 34px;
        border-radius: 7px;
        background: var(--orange);
        font-size: 22px;
    }

    .overlay-header .header-actions {
        position: absolute;
        right: 10px;
        top: 12px;
        width: auto;
        gap: 0;
    }

    .overlay-header .header-link {
        display: none;
    }

    .overlay-header .button.small {
        min-height: 34px;
        max-width: 86px;
        padding-inline: 10px;
        overflow: hidden;
        border-radius: 5px;
        background: rgba(0, 0, 0, .16);
        font-size: 0;
    }

    .overlay-header .button.small::before {
        content: "Entrar";
        font-size: 13px;
    }

    .global-search {
        grid-column: 1 / -1;
        grid-template-columns: 1fr 46px;
        width: 100%;
        min-height: 44px;
        border-radius: 6px;
        box-shadow: none;
    }

    .global-search input {
        min-height: 44px;
        border-right: 0;
        font-size: 15px;
    }

    .global-search input[name="city"] {
        display: none;
    }

    .global-search button {
        background: #fff;
        color: #e11919;
    }

    .global-search button::before {
        content: "Q";
        font-size: 24px;
        color: #e11919;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .category-menu {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px 8px;
        width: 100%;
        margin: 0;
        padding: 16px 12px 18px;
        overflow: visible;
        background: #fff;
        box-shadow: 0 1px 0 rgba(16, 24, 40, .08);
    }

    .category-menu .menu-item {
        position: static;
    }

    .category-menu .menu-trigger {
        min-height: 74px;
        display: grid;
        justify-items: center;
        align-content: start;
        gap: 7px;
        color: #344054;
        font-size: 12px;
        font-weight: 700;
        line-height: 1.15;
        text-align: center;
        white-space: normal;
    }

    .category-menu .menu-trigger::before {
        content: "▣";
        display: grid;
        place-items: center;
        width: 34px;
        height: 34px;
        border-radius: 8px;
        color: var(--orange);
        background: #fff4ed;
        font-size: 18px;
        box-shadow: inset 0 0 0 1px rgba(220, 112, 40, .18);
    }

    .category-menu .menu-chevron,
    .category-menu .mega-menu {
        display: none;
    }

    .hero-copy {
        max-width: none;
        margin: 0;
        padding: 34px 18px 48px;
        overflow: hidden;
    }

    .hero-copy h1 {
        max-width: 100%;
        font-size: clamp(34px, 12vw, 46px);
        line-height: .98;
        overflow-wrap: anywhere;
    }

    .hero-copy p {
        max-width: 100%;
        font-size: 17px;
        line-height: 1.5;
    }

    .hero-badges {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .hero-searchbar,
    .inline-search,
    .business-form,
    .register-map-form,
    .form-fields {
        grid-template-columns: 1fr;
    }

    .results-nav {
        top: 0;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .results-layout {
        grid-template-columns: 1fr;
    }

    .filters-panel {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .results-titlebar,
    .quote-box,
    .result-card {
        grid-template-columns: 1fr;
        display: grid;
    }

    .result-card address {
        grid-column: auto;
    }

    .search-box {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .search-box label {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .category-grid,
    .business-grid,
    .steps,
    .about-grid,
    .popular-card-grid,
    .post-grid,
    .free-card {
        grid-template-columns: 1fr;
    }

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

    .about-split,
    .mission-strip,
    .profile-layout,
    .location-hours,
    .photo-strip {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 560px;
    }

    .profile-side {
        position: static;
    }

    .phone-map {
        height: 240px;
        transform: rotate(-8deg);
    }

    .newsletter-bar form {
        grid-template-columns: 1fr;
        border-radius: 8px;
    }

    .mega-menu {
        left: 0;
        width: calc(100vw - 36px);
        grid-template-columns: 1fr;
        transform: none;
    }
}

/* Responsive audit fixes: mobile navigation, filters and overflow control. */
@media (max-width: 760px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .category-menu {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
        padding: 14px 12px 16px;
    }

    .category-menu .menu-trigger {
        min-height: 70px;
        font-size: 11px;
        line-height: 1.15;
    }

    .category-menu .menu-trigger::before {
        content: "b";
        width: 32px;
        height: 32px;
        font-size: 18px;
        font-weight: 900;
    }

    .category-menu .menu-chevron,
    .category-menu .mega-menu,
    .results-nav .menu-chevron,
    .results-nav .mega-menu {
        display: none;
    }

    .hero-copy {
        padding: 30px 18px 42px;
    }

    .hero-copy h1 {
        font-size: clamp(30px, 9vw, 38px);
        line-height: 1.05;
        overflow-wrap: normal;
    }

    .hero-copy p {
        font-size: 16px;
        line-height: 1.5;
    }

    .section-heading h2,
    .about-copy h2,
    .cta-section h2 {
        font-size: clamp(28px, 8vw, 36px);
        line-height: 1.12;
    }

    .ghost-title {
        max-width: 100%;
        font-size: clamp(46px, 16vw, 70px);
        white-space: nowrap;
    }

    .listing-row {
        grid-template-columns: 1fr;
        gap: 14px;
        overflow: visible;
        padding-bottom: 0;
    }

    .listing-card {
        width: 100%;
        min-height: 230px;
    }

    .about-visual {
        display: grid;
        gap: 14px;
        min-height: auto;
    }

    .about-image-main,
    .about-image-small,
    .about-feature-card,
    .experience-badge {
        position: static;
        width: 100%;
        transform: none;
    }

    .about-image-main {
        height: 260px;
    }

    .about-image-small {
        height: 170px;
    }

    .about-feature-card {
        padding: 18px;
        box-shadow: 0 18px 36px rgba(16, 24, 40, .12);
    }

    .experience-badge {
        min-width: 0;
    }

    .results-nav {
        top: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        min-height: auto;
        padding: 10px 12px;
        overflow: visible;
        background: #fff;
    }

    .results-nav .menu-trigger {
        justify-content: center;
        min-height: 40px;
        padding: 0 8px;
        border: 1px solid var(--line);
        border-radius: 999px;
        font-size: 12px;
        line-height: 1.15;
        text-align: center;
        white-space: normal;
    }

    .results-layout {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .results-content {
        order: 1;
        padding: 22px 16px 26px;
    }

    .filters-panel {
        order: 2;
        padding: 18px;
        border-right: 0;
        border-top: 1px solid var(--line);
        border-bottom: 0;
    }

    .filters-panel h2 {
        margin-bottom: 8px;
        font-size: 20px;
    }

    .filter-group {
        gap: 10px;
        padding: 14px 0;
    }

    .price-pills {
        width: 100%;
    }

    .filter-chip {
        max-width: 100%;
        white-space: normal;
    }

    .results-titlebar {
        gap: 8px;
        margin-bottom: 18px;
    }

    .results-titlebar h1 {
        font-size: clamp(24px, 7vw, 32px);
        line-height: 1.15;
    }

    .results-titlebar > span {
        margin-top: 0;
        white-space: normal;
    }

    .quote-box {
        min-height: auto;
        margin-bottom: 22px;
        padding: 18px;
    }

    .quote-box h2 {
        font-size: 20px;
        line-height: 1.2;
    }

    .quote-icon {
        display: none;
    }

    .result-card {
        gap: 14px;
        padding: 14px;
    }

    .result-photo {
        height: 140px;
    }

    .result-body h2 {
        font-size: 20px;
        line-height: 1.2;
    }

    .result-card address {
        text-align: left;
    }
}

@media (max-width: 420px) {
    .category-menu {
        gap: 8px 6px;
        padding-inline: 8px;
    }

    .category-menu .menu-trigger {
        font-size: 10.5px;
    }

    .results-nav {
        padding-inline: 8px;
    }
}

.menu-icon::before {
    content: "\25A0";
    font-size: 20px;
    line-height: 1;
}

.menu-icon-commerce::before,
.menu-item-commerce .menu-trigger::before {
    content: "\1F6D2";
}

.menu-icon-food::before,
.menu-item-food .menu-trigger::before {
    content: "\1F374";
}

.menu-icon-travel::before,
.menu-item-travel .menu-trigger::before {
    content: "\1F3E8";
}

.menu-icon-beauty::before,
.menu-item-beauty .menu-trigger::before {
    content: "\1F484";
}

.menu-icon-health::before,
.menu-item-health .menu-trigger::before {
    content: "\2695";
}

.menu-icon-home::before,
.menu-item-home .menu-trigger::before {
    content: "\2302";
}

.menu-icon-auto::before,
.menu-item-auto .menu-trigger::before {
    content: "\1F697";
}

.menu-icon-professional::before,
.menu-item-professional .menu-trigger::before {
    content: "\1F4BC";
}

.menu-icon-tech::before,
.menu-item-tech .menu-trigger::before {
    content: "\1F4BB";
}

.menu-icon-education::before,
.menu-item-education .menu-trigger::before {
    content: "\1F393";
}

.menu-icon-events::before,
.menu-item-events .menu-trigger::before {
    content: "\1F389";
}

.menu-icon-pets::before,
.menu-item-pets .menu-trigger::before {
    content: "\1F43E";
}

.menu-icon-sports::before,
.menu-item-sports .menu-trigger::before {
    content: "\26BD";
}

.menu-icon-services::before,
.menu-item-services .menu-trigger::before {
    content: "\1F527";
}

.menu-icon-general::before,
.menu-item-general .menu-trigger::before {
    content: "b";
}

@media (min-width: 1021px) {
    .category-menu .menu-trigger::before,
    .results-nav .menu-trigger::before {
        content: none;
    }
}

@media (max-width: 1020px) {
    .category-menu .mega-menu,
    .results-nav .mega-menu {
        display: none !important;
    }

    .category-menu .menu-chevron,
    .results-nav .menu-chevron {
        display: none !important;
    }
}

.mega-menu .menu-icon {
    font-size: 21px;
}

.mega-menu .menu-icon::before {
    content: none !important;
}

.more-menu {
    width: min(820px, calc(100vw - 36px));
}

.more-menu a {
    grid-template-columns: 54px 1fr;
}

@media (max-width: 1020px) {
    .menu-item-more {
        display: none;
    }
}
