/*
 * SalonesDeEventos.mx — dirección visual 2026
 * Capa de presentación sobre los componentes funcionales del directorio.
 */

@font-face {
    font-display: swap;
    font-family: "Merriweather";
    font-stretch: 100%;
    font-style: normal;
    font-weight: 400 700;
    src: url("../fonts/merriweather-latin-variable.woff2") format("woff2");
}
@font-face {
    font-display: swap;
    font-family: "Merriweather";
    font-stretch: 100%;
    font-style: italic;
    font-weight: 400 700;
    src: url("../fonts/merriweather-latin-variable-italic.woff2") format("woff2");
}

:root {
    --ink: #2f2a2c;
    --ink-2: #5a5356;
    --ink-3: #70686b;
    --navy: #3a3135;
    --navy-deep: #282225;
    --paper: #faf8f8;
    --paper-2: #f4eff0;
    --white: #fff;
    --line: #e7dfe1;
    --line-dark: #8e8186;
    --accent: #d53650;
    --accent-dark: #ad263d;
    --accent-soft: #fff0f3;
    --green: #287657;
    --green-soft: #eaf5ef;
    --blue-soft: #f7f1f3;
    --focus-dark: #7d3c52;
    --shadow: 0 20px 55px rgba(74, 38, 48, .10);
    --shadow-soft: 0 10px 32px rgba(74, 38, 48, .07);
    --shadow-lift: 0 24px 58px rgba(59, 25, 35, .15);
    --radius: 20px;
    --radius-sm: 13px;
    --container: 1240px;
    --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: "Merriweather", Georgia, "Times New Roman", serif;
    --font-display: var(--font-heading);
}

html { background: var(--paper); }
body {
    background:
        radial-gradient(circle at 5% 5%, rgba(213, 54, 80, .07), transparent 21rem),
        var(--paper);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.62;
}
::selection { background: var(--accent); color: #fff; }
h1, h2, h3 { font-weight: 600; letter-spacing: -.035em; }
h1 { font-size: clamp(2.65rem, 5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.2vw, 3.25rem); }
.container { padding-inline: 30px; }
input, select, textarea {
    border-color: #96888d;
    border-radius: 11px;
    min-height: 52px;
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
select { color: var(--ink); color-scheme: light; }
select option, select optgroup { background-color: #fff; color: #2f2a2c; }
select option:checked { background-color: var(--accent); color: #fff; }
input:hover, select:hover, textarea:hover { border-color: #74696d; }
input:focus, select:focus, textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(213, 54, 80, .14);
    outline: 0;
}

/* Header */
.site-header {
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    background: rgba(255, 251, 252, .92);
    border-bottom: 1px solid rgba(24, 42, 36, .09);
    position: sticky;
    top: 0;
    z-index: 100;
}
.site-header__inner { height: 82px; }
.brand__lockup { height: auto; max-width: min(242px, 51vw); width: 242px; }
.main-nav { gap: .35rem; }
.main-nav > a:not(.button) {
    align-items: center;
    border-radius: 999px;
    color: var(--ink-2);
    display: inline-flex;
    font-size: .87rem;
    font-weight: 700;
    gap: .4rem;
    min-height: 44px;
    padding: .55rem .86rem;
    transition: background-color .18s ease, color .18s ease;
}
.main-nav > a:not(.button):hover { background: rgba(23, 55, 45, .07); color: var(--ink); }
.main-nav > .main-nav__nearby:not(.button) {
    background: var(--accent);
    color: #fff;
    font-size: .8rem;
    margin-left: .4rem;
    padding-inline: 1.05rem;
}
.main-nav > .main-nav__nearby:not(.button):hover { background: var(--accent-dark); color: #fff; }
.menu-toggle { border-radius: 50%; }

/* Buttons and links */
.button {
    border-radius: 12px;
    font-size: .9rem;
    font-weight: 780;
    letter-spacing: -.01em;
    min-height: 50px;
    padding-inline: 1.25rem;
}
.button--primary { background: var(--accent); color: #fff; }
.button--primary:hover { background: var(--accent-dark); box-shadow: 0 10px 24px rgba(133, 26, 48, .22); }
.button--accent { background: var(--accent); color: #fff; }
.button--accent:hover { background: var(--accent-dark); box-shadow: 0 10px 24px rgba(133, 26, 48, .22); }
.button--secondary { background: var(--blue-soft); }
.button--outline { border-color: var(--line-dark); }
.text-link { color: var(--accent-dark); font-size: .88rem; }

/* Home hero */
.hero {
    background: var(--navy-deep);
    color: #fff;
    min-height: 580px;
    overflow: hidden;
    padding-block: 0;
    position: relative;
}
.hero::before { display: none; }
.hero::after {
    background:
        radial-gradient(circle at center, rgba(34,24,28,.36), rgba(30,22,25,.72) 78%),
        linear-gradient(180deg, rgba(24,19,21,.28), rgba(24,19,21,.58));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}
.hero__backdrop, .hero__backdrop img { height: 100%; inset: 0; position: absolute; width: 100%; }
.hero__backdrop img { object-fit: cover; object-position: center 58%; }
.hero__center {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 580px;
    padding-block: 58px;
    position: relative;
    z-index: 2;
}
.hero__content {
    margin: 0 auto;
    max-width: 960px;
    padding: 0;
    text-align: center;
    width: 100%;
}
.hero h1 {
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 1;
    margin: 0 0 1.25rem;
    max-width: 900px;
    text-shadow: 0 3px 28px rgba(0,0,0,.42);
    text-wrap: balance;
}
.hero__accent { color: #ff9cad; font-style: italic; }
.hero__lead { color: #f4edef; font-size: clamp(1rem, 1.3vw, 1.14rem); line-height: 1.65; margin: 0 auto 1.65rem; max-width: 720px; text-shadow: 0 2px 18px rgba(0,0,0,.62); }
.hero-search {
    align-items: end;
    background: rgba(255,255,255,.97);
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 17px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, .22);
    color: var(--ink);
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr) auto;
    margin: 0 auto;
    max-width: 920px;
    padding: 12px;
    text-align: left;
}
.hero-search .field label { display: block; font-size: .7rem; font-weight: 800; margin: 0 0 .28rem .18rem; }
.hero-search input, .hero-search select { background: #fffafa; border-color: #e5dadd; color: var(--ink); font-size: .88rem; min-height: 52px; }
.hero-search__submit { grid-column: auto; min-height: 52px; min-width: 190px; }
.home-stats { background: #fff; border-bottom: 1px solid var(--line); padding-block: 22px; }
.home-stats__grid { display: grid; gap: 14px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.home-stat {
    align-items: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 17px;
    display: grid;
    gap: 1rem;
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 98px;
    padding: 1rem 1.15rem;
    transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.home-stat:hover { background: #fff; border-color: rgba(213,54,80,.35); box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.home-stat__icon { align-items: center; background: var(--accent-soft); border-radius: 14px; color: var(--accent-dark); display: flex; height: 52px; justify-content: center; width: 52px; }
.home-stat > span:nth-child(2) { min-width: 0; }
.home-stat strong { color: var(--ink); display: block; font-family: var(--font-heading); font-size: 1.75rem; font-weight: 600; line-height: 1; }
.home-stat small { color: var(--ink-3); display: block; font-size: .75rem; margin-top: .35rem; }
.home-stat > svg { color: var(--accent-dark); }

/* Búsqueda geográfica en la portada */
.nearby-section { padding: 32px 0; scroll-margin-top: 100px; }
.nearby-section--footer { background: var(--paper-2); padding: 0 0 64px; }
.nearby-section--footer .trust-strip { margin-bottom: 32px; }
.trust-strip__inner--compact { align-items: stretch; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.trust-strip__guide-link { align-items: center; background: #fff; border-radius: 14px; box-shadow: 0 10px 28px rgba(85,20,37,.18); color: var(--accent-dark); display: flex; gap: .7rem; min-height: 76px; min-width: 0; padding: .8rem 1rem; transition: box-shadow .18s ease, transform .18s ease; width: 100%; }
.trust-strip__guide-link:hover { box-shadow: 0 15px 34px rgba(85,20,37,.26); transform: translateY(-2px); }
.trust-strip__guide-link > svg { flex: 0 0 auto; }
.trust-strip__guide-link > svg:last-child { margin-left: .2rem; }
.trust-strip__guide-link > span { min-width: 0; }
.trust-strip__guide-link b { color: var(--accent-dark); font-family: var(--font); font-size: .8rem; font-weight: 800; }
.trust-strip__guide-link small { color: var(--ink-3); font-size: .68rem; line-height: 1.4; white-space: normal; }
.nearby-finder {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(151,145,132,.2);
    border-radius: 26px;
    box-shadow: var(--shadow);
    display: grid;
    gap: clamp(2.5rem, 6vw, 6rem);
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    overflow: hidden;
    padding: clamp(2rem, 5vw, 4rem);
    position: relative;
}
.nearby-finder::before {
    background: radial-gradient(circle, rgba(213,54,80,.22) 0 1px, transparent 1.6px);
    background-size: 18px 18px;
    content: "";
    height: 170px;
    left: -42px;
    opacity: .5;
    position: absolute;
    top: -48px;
    width: 190px;
}
.nearby-finder__intro { position: relative; z-index: 1; }
.nearby-finder__icon {
    align-items: center;
    background: var(--accent);
    border-radius: 50%;
    color: #fff;
    display: flex;
    height: 62px;
    justify-content: center;
    margin-bottom: 1.6rem;
    width: 62px;
}
.nearby-finder__intro h2 { font-size: clamp(2.25rem, 3.5vw, 3.4rem); line-height: 1; margin-bottom: 1.1rem; }
.nearby-finder__intro > p:last-child { color: var(--ink-3); font-size: .92rem; line-height: 1.75; margin: 0; max-width: 520px; }
.nearby-finder__actions {
    background: #fff4f6;
    border: 1px solid #f0dce1;
    border-radius: 19px;
    padding: 1.25rem;
}
.nearby-finder__locate { width: 100%; }
.nearby-finder__locate[disabled] { cursor: wait; opacity: .7; transform: none; }
.nearby-finder__status { color: var(--ink-2); font-size: .78rem; margin: .7rem 0 0; min-height: 1.25rem; text-align: center; }
.nearby-finder__status.is-error { color: var(--red); }
.nearby-finder__result {
    align-items: center;
    background: var(--navy);
    border-radius: 13px;
    color: #fff;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: .8rem;
    min-height: 76px;
    padding: .85rem 1rem;
    transition: background-color .18s ease, transform .18s ease;
}
.nearby-finder__result[hidden] { display: none; }
.nearby-finder__result:hover { background: var(--navy-deep); transform: translateY(-2px); }
.nearby-finder__result span, .nearby-finder__result small, .nearby-finder__result strong, .nearby-finder__result em { display: block; }
.nearby-finder__result small { color: #c0b3b7; font-size: .62rem; font-style: normal; letter-spacing: .05em; text-transform: uppercase; }
.nearby-finder__result strong { color: #fff; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; line-height: 1.2; margin-top: .12rem; }
.nearby-finder__result em { color: #ffb5c1; font-size: .68rem; font-style: normal; margin-top: .16rem; }
.nearby-finder__result > svg { color: #ffb5c1; flex: 0 0 auto; }
.nearby-finder__divider { align-items: center; color: var(--ink-3); display: flex; font-size: .67rem; gap: .75rem; margin: 1rem 0 .8rem; text-transform: uppercase; }
.nearby-finder__divider::before, .nearby-finder__divider::after { background: #d8d2c6; content: ""; flex: 1; height: 1px; }
.nearby-finder__manual label { display: block; font-size: .7rem; font-weight: 800; margin: 0 0 .3rem .1rem; }
.nearby-finder__manual-row { align-items: stretch; display: grid; gap: 8px; grid-template-columns: minmax(0, 1fr) auto; }
.nearby-finder__manual-row select { background: #fff; font-size: .84rem; }
.nearby-finder__manual-row .button { white-space: nowrap; }

/* Home sections */
.section { padding-block: 88px; }
.section--tight { padding-block: 70px; }
.section-heading { align-items: end; margin-bottom: 42px; }
.section-heading h2 { line-height: 1.02; }
.section-heading__copy { font-size: .94rem; line-height: 1.65; }
.city-grid { gap: 16px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.city-card {
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(151, 145, 132, .28);
    border-radius: 18px;
    gap: 1rem;
    min-height: 128px;
    overflow: hidden;
    padding: 1.25rem;
    position: relative;
}
.city-card::before { background: var(--accent); content: ""; height: 3px; left: 0; opacity: 0; position: absolute; right: 0; top: 0; transform: scaleX(.3); transition: opacity .2s ease, transform .2s ease; }
.city-card:hover { border-color: rgba(118, 88, 33, .45); box-shadow: var(--shadow-lift); transform: translateY(-5px); }
.city-card:hover::before { opacity: 1; transform: scaleX(1); }
.city-card__icon { background: var(--accent); color: #fff; height: 52px; width: 52px; }
.city-card__copy b { font-family: var(--font-heading); font-size: 1.28rem; font-weight: 600; }
.city-card__copy small { color: var(--accent-dark); }
.city-card__copy > span { font-size: .74rem; }
.city-card > svg { color: var(--accent); transition: transform .18s ease; }
.city-card:hover > svg { transform: translateX(4px); }

.section--process { background: var(--navy-deep); color: #fff; overflow: hidden; position: relative; }
.section--process::before { border: 1px solid rgba(255,255,255,.08); border-radius: 50%; content: ""; height: 520px; position: absolute; right: -240px; top: -250px; width: 520px; }
.section--process .section-heading { position: relative; }
.steps-grid { gap: 0; position: relative; }
.step-card {
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, .16);
    border-radius: 0;
    min-height: 255px;
    padding: 1.4rem 2rem 1rem;
}
.step-card:first-child { border-left: 0; padding-left: 0; }
.step-card > span:first-child { color: rgba(255,255,255,.22); font-size: 3.2rem; right: 1.6rem; top: .6rem; }
.step-card__icon { background: rgba(213, 54, 80, .18); color: #ffb9c4; margin-bottom: 2.2rem; }
.step-card h3 { color: #fff; font-size: 1.55rem; }
.step-card p { color: #c6b9bd; max-width: 285px; }

.states-section { background: #fff; }
.state-link-grid { gap: 10px; }
.state-link-grid a {
    background: #fff3f5;
    border: 1px solid transparent;
    border-radius: 12px;
    min-height: 78px;
    padding: .95rem 1rem;
    position: relative;
    transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.state-link-grid a::after { color: var(--accent); content: "›"; font-family: Georgia, serif; font-size: 1.35rem; opacity: 0; position: absolute; right: .9rem; top: 50%; transform: translate(-5px, -50%); transition: opacity .18s ease, transform .18s ease; }
.state-link-grid a:hover { background: #fff; border-color: var(--line); transform: translateY(-2px); }
.state-link-grid a:hover::after { opacity: 1; transform: translate(0, -50%); }
.state-link-grid span { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; }
.state-link-grid small { font-size: .67rem; }
.trust-strip { background: linear-gradient(100deg, #a9233a, #c8324c); padding-block: 45px; }
.trust-strip__inner > div { gap: 1rem; }
.trust-strip__inner > div > svg { background: rgba(255,255,255,.12); border-radius: 50%; box-sizing: content-box; color: #fff; padding: .75rem; }
.trust-strip b { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; }
.trust-strip small { color: #fff; }

/* Directory and search */
.directory-hero {
    background:
        radial-gradient(circle at 88% 12%, rgba(213,54,80,.23), transparent 28%),
        linear-gradient(130deg, #282225, #46383e);
    border: 0;
    color: #fff;
    overflow: hidden;
    padding-bottom: 38px;
    position: relative;
}
.directory-hero::after { border: 1px solid rgba(255,255,255,.07); border-radius: 50%; content: ""; height: 420px; position: absolute; right: -150px; top: -230px; width: 420px; }
.directory-hero .breadcrumbs { position: relative; z-index: 2; }
.directory-hero .breadcrumbs li { color: #c7b9be; }
.directory-hero .breadcrumbs a:hover { color: #fff; }
.directory-hero__copy { padding: 28px 0 26px; position: relative; z-index: 2; }
.directory-hero__copy h1 { font-size: clamp(2.65rem, 4.7vw, 4.6rem); line-height: 1; margin-bottom: 1rem; max-width: 900px; }
.directory-hero__copy > p:last-child { color: #d7cdd0; font-size: 1rem; }
.directory-search {
    background: #fff;
    border: 0;
    border-radius: 17px;
    box-shadow: 0 20px 50px rgba(0,0,0,.2);
    color: var(--ink);
    gap: 10px;
    padding: 12px;
    position: relative;
    z-index: 2;
}
.directory-search input, .directory-search select { background: #fffafa; border-color: #e5dadd; min-height: 52px; }
.directory-search .button { min-height: 52px; }
.coverage-strip { background: #fff7f8; border-color: #eedce1; }
.coverage-strip__header-icon { background: var(--accent-soft); color: var(--accent-dark); }
.coverage-strip__header h2 { color: var(--ink); font-family: var(--font-display); }
.coverage-strip__header p { color: var(--ink-3); }
.coverage-city-card { background: #fff; border-color: #e3d8db; box-shadow: 0 4px 14px rgba(74,32,44,.035); color: var(--ink); transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.coverage-city-card:hover { border-color: var(--accent); box-shadow: 0 9px 22px rgba(74,32,44,.09); color: var(--accent-dark); transform: translateY(-2px); }
.coverage-city-card:focus-visible, .coverage-strip__more summary:focus-visible { outline: 3px solid rgba(213,54,80,.28); outline-offset: 3px; }
.coverage-city-card small { color: var(--ink-3); }
.coverage-city-card > svg { color: var(--accent); }
.coverage-strip__more summary { color: var(--accent-dark); }
.coverage-strip__more summary:hover { color: var(--accent); }
.coverage-strip__all { border-color: #eadde0; }
.directory-section { padding-block: 44px 100px; }
.directory-layout { gap: 30px; grid-template-columns: 255px minmax(0, 1fr); }
.filters-panel {
    border: 0;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    padding: 1.15rem;
    top: 104px;
}
.filters-panel__header { padding-bottom: .9rem; }
.filters-panel__header h2 { color: var(--accent); font-size: 1.35rem; }
.filters-panel > form { padding-top: .8rem; }
.filters-panel fieldset { padding-block: 1.1rem; }
.check-row { border-radius: 8px; min-height: 38px; padding-inline: .35rem; }
.check-row:hover { background: #f7f5f0; }
.results-toolbar {
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(151,145,132,.2);
    border-radius: 13px;
    margin-bottom: 16px;
    padding: .65rem .8rem .65rem 1rem;
}
.results-toolbar p strong { font-family: var(--font-heading); font-size: 1.12rem; }
.results-toolbar select { border-color: transparent; }
.business-list { gap: 16px; }
.business-card {
    align-items: stretch;
    background: linear-gradient(118deg, #fff 0%, #fff 68%, #fff7f9 100%);
    border: 1px solid rgba(151,145,132,.27);
    border-radius: 20px;
    display: grid;
    gap: 1.2rem;
    grid-template-columns: minmax(0, 1fr) 185px;
    overflow: hidden;
    padding: 1.4rem;
    position: relative;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.business-card::after { background: var(--accent); bottom: 0; content: ""; left: 0; position: absolute; top: 0; transform: scaleY(0); transform-origin: bottom; transition: transform .2s ease; width: 3px; }
.business-card:hover { border-color: rgba(213,54,80,.38); box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.business-card:hover::after { transform: scaleY(1); }
.business-card__topline { margin-bottom: .65rem; }
.business-card h2 { font-size: 1.48rem; line-height: 1.13; margin-bottom: .55rem; }
.business-card h2 a { text-decoration-color: transparent; }
.business-card__location { line-height: 1.55; }
.business-card__aside { border-left-color: #e8dfe1; padding-left: 1.2rem; }
.business-card__actions { align-content: center; height: 100%; }
.business-card__actions .button { border-radius: 10px; }
.status { border-radius: 999px; }
.tag { border-radius: 999px; }
.pagination { gap: .55rem; margin-top: 30px; }
.pagination a { border-color: #ccc6bb; border-radius: 10px; }
.related-links { gap: 14px; }
.related-links a { border: 0; border-radius: 17px; box-shadow: var(--shadow-soft); min-height: 112px; padding: 1.25rem; transition: box-shadow .18s ease, transform .18s ease; }
.related-links a:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }

/* Business detail */
.business-hero {
    background:
        radial-gradient(circle at 84% 5%, rgba(213,54,80,.25), transparent 29%),
        radial-gradient(circle at 2% 100%, rgba(255,255,255,.06), transparent 30%),
        var(--navy-deep);
    min-height: 390px;
    overflow: hidden;
    padding-bottom: 54px;
    position: relative;
}
.business-hero::after {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50% 50% 0 0;
    bottom: -95px;
    content: "";
    height: 330px;
    position: absolute;
    right: 4%;
    width: 360px;
}
.business-hero__grid { gap: clamp(2rem, 6vw, 6rem); padding-top: 32px; position: relative; z-index: 2; }
.business-hero h1 { font-size: clamp(3rem, 5vw, 5rem); line-height: .98; margin-bottom: 1.3rem; }
.business-hero__location { color: #d9ced2; line-height: 1.55; }
.business-hero__actions { border-left-color: rgba(255,255,255,.16); gap: 10px; padding-left: 30px; }
.business-hero__actions .button { min-height: 52px; }
.business-hero__actions .button--outline { border-color: rgba(255,255,255,.45); color: #fff; }
.business-hero__actions .button--outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.business-detail-section { padding-block: 54px 96px; }
.business-detail-layout { gap: 30px; grid-template-columns: minmax(0, 1fr) 345px; }
.business-detail-main { gap: 22px; }
.detail-card, .sidebar-card {
    border: 1px solid rgba(151,145,132,.24);
    border-radius: 20px;
    box-shadow: 0 8px 26px rgba(74,38,48,.05);
}
.detail-card { padding: clamp(1.5rem, 3vw, 2.3rem); }
.detail-card h2 { font-size: 1.85rem; }
.detail-card__heading--icon { align-items: center; display: flex; gap: .8rem; margin-bottom: 1.2rem; }
.detail-card__heading--icon h2 { margin: 0; }
.business-section-icon { align-items: center; background: var(--accent-soft); border-radius: 11px; color: var(--accent-dark); display: inline-flex; flex: 0 0 auto; height: 42px; justify-content: center; width: 42px; }
.business-section-icon--small { border-radius: 9px; height: 36px; width: 36px; }
.business-section-icon--inverse { background: rgba(255,255,255,.1); color: #ff9cad; }
.sidebar-card__heading { align-items: center; display: flex; gap: .7rem; }
.sidebar-card__heading h2 { margin: 0; }
.detail-card > p { line-height: 1.75; }
.hours-list > div { font-size: .86rem; padding: .72rem .2rem; }
.hours-list > div:last-child { border-bottom: 0; }
.sidebar-card { padding: 1.35rem; }
.sidebar-card h2 { font-size: 1.32rem; }
.business-sidebar { gap: 18px; top: 104px; }
.sidebar-card--contact { background: #fff; border-color: #ded4d7; box-shadow: 0 12px 34px rgba(74,38,48,.07); }
.sidebar-card--contact .sidebar-card__heading { border-bottom-color: var(--line); }
.sidebar-card--contact .contact-list { margin: .15rem 0 0; }
.sidebar-card--contact .contact-list > div { border-top: 0; border-bottom: 1px solid var(--line); gap: .3rem; padding: .85rem 0; }
.sidebar-card--contact .contact-list > div:last-child { border-bottom: 0; padding-bottom: .15rem; }
.sidebar-card--contact .contact-list dt { color: var(--ink-3); letter-spacing: .045em; }
.sidebar-card--contact .contact-list dd { color: var(--ink); font-size: .9rem; line-height: 1.45; }
.sidebar-card--contact .contact-list__phone { align-items: center; color: var(--accent-dark); display: inline-flex; font-size: 1rem; font-variant-numeric: tabular-nums; gap: .4rem; letter-spacing: .025em; }
.sidebar-card--contact .contact-list__phone:hover { color: var(--accent); }
.sidebar-card--muted { box-shadow: none; }
.detail-card--location .detail-card__heading { margin-bottom: 1.5rem; }
.detail-card--location .detail-card__heading h2 { margin-bottom: 0; }
#direccion-como-llegar { scroll-margin-top: 104px; }
.location-summary { background: #f4f0e8; border-color: #d8d0c3; border-radius: 13px; margin-top: 0; padding: 1.15rem 1.35rem; }
.location-summary small { color: var(--ink-3); font-size: .67rem; letter-spacing: .08em; }
.location-summary strong { color: var(--ink); font-size: 1rem; }
.location-summary span { font-size: .8rem; }
.location-summary .button { background: transparent; border-color: #82787c; color: var(--ink); min-width: 170px; }
.location-summary .button:hover { background: #fff; border-color: var(--accent); color: var(--accent-dark); }
.detail-map { border: 1px solid #d8d0c3; border-radius: 15px; height: 390px; margin-top: 16px; }
.detail-map__external { border: 0; border-radius: 9px; box-shadow: 0 7px 20px rgba(40,34,37,.18); font-size: .8rem; left: 14px; top: 14px; }
.sidebar-card--hours .sidebar-card__heading { border-color: var(--line); }
.sidebar-card--hours .hours-list > div { gap: .65rem; grid-template-columns: 72px minmax(0, 1fr); padding: .55rem 0; }
.sidebar-card--hours .hours-list dd { font-size: .75rem; line-height: 1.35; overflow-wrap: anywhere; }
.sidebar-card__note--empty { border-top: 0; margin-top: 0; padding-top: 0; }

.venue-advice { background: var(--paper-2); padding-block: 72px; }
.venue-advice .detail-card--essentials {
    background:
        radial-gradient(circle at 94% 0, rgba(213,54,80,.25), transparent 22rem),
        linear-gradient(130deg, #282225, #403238);
    border: 0;
    border-radius: 24px;
    box-shadow: 0 22px 52px rgba(57,34,42,.16);
    padding: clamp(2rem, 4vw, 3.2rem);
}
.venue-advice .detail-card--essentials h2 { color: #fff; font-size: clamp(2rem, 3.2vw, 3rem); line-height: 1.05; margin-bottom: .8rem; }
.venue-advice__heading { align-items: center; display: flex; gap: .9rem; margin-bottom: .8rem; }
.venue-advice__heading h2 { margin: 0; }
.venue-advice .detail-card--essentials > p { color: #e1d5d9; margin-bottom: 1.8rem; max-width: 820px; }
.venue-advice .venue-checklist { gap: 12px; }
.venue-advice .venue-checklist li { border-radius: 13px; gap: .8rem; min-height: 112px; padding: 1.05rem; }
.venue-advice .venue-checklist li > span { color: #ff9cad; font-size: .68rem; padding-top: .14rem; }
.venue-advice .venue-checklist b { color: #fff; font-size: .86rem; }
.venue-advice .venue-checklist small { color: #ddd0d5; font-size: .73rem; }
.venue-advice__actions { align-items: center; border-top: 1px solid rgba(255,255,255,.18); display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; margin-top: 1.4rem; padding-top: 1.2rem; }
.venue-advice .detail-card__guide-link { border-top: 0; color: #ff9cad; margin: 0; max-width: none; padding: 0; width: auto; }
.venue-advice .detail-card__guide-link:hover { color: #fff; }
.venue-advice__checklist-link { background: #fff; border-color: #fff; box-shadow: 0 10px 28px rgba(0,0,0,.16); color: var(--accent-dark); min-width: 245px; }
.venue-advice__checklist-link:hover { background: var(--accent-soft); border-color: var(--accent-soft); color: var(--accent-dark); }

/* Useful, data-backed FAQs */
.section--faq-home {
    background:
        radial-gradient(circle at 8% 0, rgba(213,54,80,.18), transparent 25rem),
        linear-gradient(135deg, #33292d, #282225);
    border-top: 1px solid rgba(255,255,255,.06);
    padding-block: clamp(70px, 8vw, 110px);
}
.section--faq-home .faq-layout { gap: clamp(3rem, 7vw, 6rem); }
.section--faq-home .faq-intro h2 { color: #fff; line-height: 1.04; }
.section--faq-home .faq-intro > p { color: #dfd2d7; font-size: .92rem; line-height: 1.75; }
.section--faq-home .faq-list { border-top-color: rgba(255,255,255,.24); }
.section--faq-home .faq-list details { border-bottom-color: rgba(255,255,255,.18); }
.section--faq-home .faq-list summary { color: #fff; font-size: 1.03rem; }
.section--faq-home .faq-list summary svg { color: #ff9cad; }
.section--faq-home .faq-list details > div { color: #dfd2d7; font-size: .9rem; line-height: 1.75; }
.detail-faq { background: #fff; border-top-color: rgba(151,145,132,.24); padding-block: clamp(64px, 7vw, 96px); }
.detail-faq__layout { max-width: 1120px; }
.detail-faq__intro { border-bottom: 0; margin-bottom: 1.4rem; }
.detail-faq__intro h2 { font-size: clamp(2rem, 3.2vw, 3rem); }
.detail-faq__intro p { font-size: .86rem; line-height: 1.7; }
.business-faq-list { border-top-color: #d8ced1; }
.business-faq-list details { border-bottom-color: #ddd3d6; }
.business-faq-list summary { font-size: 1.02rem; }
.business-faq-list details > div { color: var(--ink-2); }
.faq-list summary:focus-visible,
.business-faq-list summary:focus-visible { border-radius: 8px; outline: 3px solid #ff9cad; outline-offset: 4px; }

/* Downloadable event checklists */
.section--checklists { background: #fff; padding-top: 0; }
.checklist-cta {
    background:
        radial-gradient(circle at 92% 2%, rgba(213,54,80,.32), transparent 25rem),
        linear-gradient(135deg, #282225, #403238);
    border-radius: 26px;
    color: #fff;
    overflow: hidden;
    padding: clamp(2rem, 4.5vw, 3.6rem);
    position: relative;
}
.checklist-cta::after { border: 1px solid rgba(255,255,255,.07); border-radius: 50%; content: ""; height: 330px; position: absolute; right: -130px; top: -170px; width: 330px; }
.checklist-cta > * { position: relative; z-index: 1; }
.checklist-cta__heading { margin-bottom: 2rem; max-width: 760px; }
.checklist-cta__heading h2 { color: #fff; font-size: clamp(2rem, 3.6vw, 3.35rem); line-height: 1.05; margin-bottom: .8rem; }
.checklist-cta__heading > p:last-child { color: #d9cfd2; margin: 0; max-width: 680px; }
.checklist-download-grid { display: grid; gap: 14px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.checklist-download {
    background: rgba(255,255,255,.97);
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 18px;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    min-height: 255px;
    padding: 1.35rem;
    transition: box-shadow .2s ease, transform .2s ease;
}
.checklist-download:hover { box-shadow: 0 22px 45px rgba(0,0,0,.25); transform: translateY(-4px); }
.checklist-download__icon { align-items: center; background: var(--accent-soft); border-radius: 13px; color: var(--accent-dark); display: flex; height: 46px; justify-content: center; margin-bottom: 1.2rem; width: 46px; }
.checklist-download__copy { display: block; }
.checklist-download__copy small { color: var(--accent-dark); display: block; font-size: .68rem; font-weight: 800; letter-spacing: .1em; margin-bottom: .35rem; text-transform: uppercase; }
.checklist-download__copy strong { display: block; font-family: var(--font-heading); font-size: 1.35rem; font-weight: 600; line-height: 1.15; }
.checklist-download__copy > span { color: var(--ink-3); display: block; font-size: .78rem; line-height: 1.55; margin-top: .65rem; }
.checklist-download__action { align-items: center; border-top: 1px solid var(--line); color: var(--accent-dark); display: flex; font-size: .76rem; font-weight: 800; gap: .35rem; justify-content: space-between; margin-top: auto; padding-top: .9rem; }
.checklist-cta__note { color: #bfb2b6; font-size: .72rem; margin: 1.1rem 0 0; }

/* Editorial guides */
.section--blog-home { background: #fff; }
.section--blog-index { background: var(--paper-2); }
.content-hero--guides {
    background:
        radial-gradient(circle at 85% 15%, rgba(213,54,80,.25), transparent 25rem),
        linear-gradient(125deg, #282225, #46383e);
    overflow: hidden;
    padding-bottom: 66px;
}
.content-hero--guides .breadcrumbs, .content-hero--guides .breadcrumbs li { color: #c7b9be; }
.content-hero--guides .breadcrumbs a:hover { color: #fff; }
.content-hero--guides h1 { font-size: clamp(2.8rem, 5vw, 4.75rem); line-height: 1; }
.content-hero--guides .content-hero__grid > div:first-child > p { color: #e1d7da; }
.content-hero--guides .editorial-note { border-left-color: rgba(255,255,255,.28); }
.content-hero--guides .editorial-note p { color: #cdbfc4; }
.article-card > a {
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(151,145,132,.27);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(74,38,48,.05);
    min-height: 300px;
    padding: 1.7rem;
    position: relative;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.article-card > a::before { background: var(--accent); border-radius: 2px; content: ""; height: 3px; left: 1.7rem; position: absolute; top: 0; width: 44px; }
.article-card > a:hover { background: #fff; border-color: rgba(213,54,80,.35); box-shadow: var(--shadow-lift); transform: translateY(-4px); }
.article-card__meta { gap: .8rem; margin-bottom: 1.7rem; }
.article-card__meta span { color: var(--accent-dark); letter-spacing: .08em; }
.article-card__meta span + span { color: var(--ink-3); font-size: .66rem; }
.article-card h3 { font-size: 1.55rem; line-height: 1.16; }
.article-card p { color: var(--ink-2); font-size: .88rem; line-height: 1.7; }
.article-card__link { color: var(--accent-dark); }
.guide-hero {
    background:
        radial-gradient(circle at 84% 10%, rgba(213,54,80,.25), transparent 28rem),
        linear-gradient(125deg, #282225, #46383e);
    overflow: hidden;
    padding-bottom: 66px;
}
.guide-hero .breadcrumbs, .guide-hero .breadcrumbs li { color: #c7b9be; }
.guide-hero .breadcrumbs a:hover { color: #fff; }
.guide-hero__category { color: #ff9cad; letter-spacing: .12em; text-transform: uppercase; }
.guide-hero h1 { font-size: clamp(2.8rem, 5vw, 4.75rem); line-height: 1; }
.guide-hero__lead { color: #e1d7da; line-height: 1.7; }
.guide-hero__meta { color: #c7b9be; }
.guide-body { background: #fff; }
.guide-layout { gap: clamp(2.5rem, 6vw, 5rem); grid-template-columns: 230px minmax(0, 780px); justify-content: center; }
.guide-index { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; padding: 1.2rem; top: 108px; }
.guide-index strong { color: var(--ink); }
.guide-index a { border-left-color: #c8bfc2; color: var(--ink-2); line-height: 1.45; }
.guide-index a:hover { border-color: var(--accent); color: var(--accent-dark); }
.guide-content h2 { color: var(--ink); line-height: 1.2; }
.guide-content p, .guide-content li { color: var(--ink-2); }
.guide-content ul { border-left-color: #e5b2bb; }
.guide-takeaway { background: var(--accent-soft); border: 0; border-left: 4px solid var(--accent); border-radius: 0 15px 15px 0; padding: 1.25rem 1.4rem; }
.guide-takeaway p { color: #70434c; }
.guide-cta { gap: 2rem; }
.section--related-guides { background: var(--paper); }
.section--cta .cta-panel {
    background:
        radial-gradient(circle at 95% 0, rgba(213,54,80,.28), transparent 20rem),
        var(--navy-deep);
}
.section--cta .cta-panel p { color: #d6c9cd; }

/* City index, legal and forms */
.page-hero {
    background:
        radial-gradient(circle at 82% 10%, rgba(213,54,80,.22), transparent 27%),
        linear-gradient(125deg, #282225, #46383e);
    padding-bottom: 68px;
}
.page-hero h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); line-height: 1; }
.city-index-toolbar {
    border: 0;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 24px;
    padding: 1.35rem;
}
.city-state-nav { gap: .5rem; margin-bottom: 34px; }
.city-state-nav > a { background: #ece7dc; border-radius: 999px; font-size: .76rem; font-weight: 700; padding: .5rem .82rem; }
.city-state-nav > a:hover { background: var(--navy); color: #fff; }
.city-directory { gap: 25px; }
.city-directory-state { background: rgba(255,255,255,.7); border: 1px solid rgba(151,145,132,.23); border-radius: 20px; padding: 1.4rem; }
.city-directory-state__heading { padding-inline: .2rem; }
.city-directory-state__heading h2 { font-size: 1.9rem; }
.city-directory-links { gap: 10px; }
.city-directory-link { background: #f5f2eb; border: 1px solid transparent; border-radius: 12px; min-height: 76px; padding: .85rem 1rem; }
.city-directory-link:hover { background: #fff; border-color: #d6d0c5; box-shadow: var(--shadow-soft); }
.city-directory-link b { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; }
.form-card, .legal-content, .success-card {
    border-color: rgba(151,145,132,.25);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}
.legal-hero { background: var(--navy-deep); color: #fff; }
.error-page__inner, .empty-state { border-radius: 22px; }

/* Footer */
.site-footer { background: #242023; padding-block: 78px 28px; position: relative; }
.site-footer::before { background: linear-gradient(90deg, transparent, rgba(213,54,80,.78), transparent); content: ""; height: 1px; left: 0; position: absolute; right: 0; top: 0; }
.site-footer__grid { gap: 60px; }
.site-footer__grid > div:first-child p { color: #a89ca0; font-size: .87rem; line-height: 1.7; }
.site-footer h2 { color: #ff9cad; font-size: .7rem; letter-spacing: .14em; }
.site-footer__grid > div:not(:first-child) a { color: #bdb1b5; font-size: .82rem; margin-bottom: .7rem; }
.site-footer__bottom { color: #a89ca0; margin-top: 54px; }
.back-to-top { background: var(--accent); border: 0; box-shadow: 0 12px 30px rgba(93,28,45,.24); color: #fff; }
.back-to-top:hover { background: var(--accent-dark); }

@media (max-width: 1050px) {
    .hero__content { max-width: 850px; }
    .hero h1 { font-size: clamp(3rem, 6vw, 4.5rem); }
    .hero-search { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero-search__submit { grid-column: 1 / -1; }
    .business-card { grid-template-columns: minmax(0, 1fr) 165px; }
    .state-link-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
    .container { padding-inline: 20px; }
    .site-header__inner { min-height: 72px; }
    .js .site-header__inner { height: 72px; }
    .js .main-nav { background: rgba(255,250,251,.98); border-radius: 0 0 18px 18px; padding: 1rem 20px 1.35rem; top: 72px; }
    .main-nav > a:not(.button) { border-radius: 10px; padding-inline: .75rem; }
    .main-nav > .main-nav__nearby:not(.button) { justify-content: center; margin: .4rem 0 0; }
    .hero, .hero__center { min-height: 560px; }
    .hero__center { padding-block: 48px; }
    .nearby-finder { gap: 2rem; grid-template-columns: 1fr; }
    .hero h1 { font-size: clamp(2.8rem, 10vw, 4.2rem); }
    .home-stats__grid { gap: 10px; }
    .home-stat { gap: .75rem; padding-inline: .85rem; }
    .home-stat__icon { height: 46px; width: 46px; }
    .home-stat strong { font-size: 1.5rem; }
    .city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .steps-grid { grid-template-columns: 1fr; }
    .step-card, .step-card:first-child { border-left: 0; border-top: 1px solid rgba(255,255,255,.15); min-height: 185px; padding: 1.6rem 0; }
    .step-card:first-child { border-top: 0; }
    .step-card__icon { margin-bottom: 1.2rem; }
    .state-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .directory-layout { grid-template-columns: 1fr; }
    .business-card { grid-template-columns: 1fr; }
    .business-card__aside { border-left: 0; border-top: 1px solid #e8dfe1; grid-column: 1 / -1; padding: 1rem 0 0; }
    .business-card__actions { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .business-detail-layout { grid-template-columns: 1fr; }
    .business-sidebar { position: static; }
    .content-hero__grid { gap: 2rem; grid-template-columns: 1fr; }
    .content-hero--guides .editorial-note { border-left: 0; border-top: 1px solid rgba(255,255,255,.2); max-width: none; padding: 1rem 0 0; }
    .guide-layout { grid-template-columns: 1fr; }
    .guide-index { position: static; }
    .checklist-download-grid { grid-template-columns: 1fr; }
    .checklist-download { display: grid; gap: 1rem; grid-template-columns: auto minmax(0, 1fr) auto; min-height: 0; }
    .checklist-download__icon { margin-bottom: 0; }
    .checklist-download__action { align-self: center; border-top: 0; margin-top: 0; padding-top: 0; }
    .trust-strip__inner--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .trust-strip__guide-link { grid-column: 1 / -1; justify-self: stretch; }
    .site-footer__grid { gap: 36px; }
}

@media (max-width: 620px) {
    body { font-size: 15px; }
    .container { padding-inline: 15px; }
    .brand__lockup { width: 214px; }
    .hero, .hero__center { min-height: 570px; }
    .hero__center { padding-block: 42px; }
    .hero__backdrop img { object-position: center; }
    .hero h1 { font-size: clamp(2.65rem, 12vw, 3.35rem); }
    .hero__lead { font-size: .95rem; }
    .hero-search { grid-template-columns: 1fr; padding: 10px; }
    .hero-search__submit { grid-column: auto; }
    select,
    .hero-search select,
    .directory-search select,
    .nearby-finder__manual-row select,
    .filters-panel select,
    .filter-select select,
    .results-toolbar select {
        height: 52px;
        line-height: 1.25;
        min-height: 52px;
        padding-bottom: .75rem;
        padding-top: .75rem;
    }
    .home-stats { padding-block: 15px; }
    .home-stats__grid { grid-template-columns: 1fr; }
    .home-stat { min-height: 84px; padding: .8rem; }
    .nearby-section { padding-bottom: 10px; }
    .nearby-section--footer { padding-top: 0; }
    .nearby-section--footer .trust-strip { margin-bottom: 20px; }
    .nearby-finder { border-radius: 19px; padding: 1.35rem; }
    .nearby-finder__icon { height: 54px; margin-bottom: 1.25rem; width: 54px; }
    .nearby-finder__intro h2 { font-size: 2.35rem; }
    .blog-grid, .blog-grid--index { grid-template-columns: 1fr; }
    .article-card > a { min-height: 260px; padding: 1.4rem; }
    .article-card > a::before { left: 1.4rem; }
    .content-hero--guides, .guide-hero { padding-bottom: 48px; }
    .content-hero--guides h1, .guide-hero h1 { font-size: 2.75rem; }
    .guide-body { padding-block: 38px 60px; }
    .guide-cta { align-items: stretch; flex-direction: column; }
    .guide-cta .button { width: 100%; }
    .section--checklists { padding-top: 0; }
    .section--checklists .container { padding-inline: 0; }
    .checklist-cta { border-radius: 0; padding: 2.1rem 1rem; }
    .checklist-download { display: flex; min-height: 225px; padding: 1.2rem; }
    .checklist-download__icon { margin-bottom: 1rem; }
    .checklist-download__action { align-self: stretch; border-top: 1px solid var(--line); margin-top: auto; padding-top: .85rem; }
    .nearby-finder__actions { border-radius: 15px; padding: .9rem; }
    .nearby-finder__manual-row { grid-template-columns: 1fr; }
    .nearby-finder__manual-row .button { width: 100%; }
    .section { padding-block: 64px; }
    .section--tight { padding-block: 52px; }
    .section-heading { margin-bottom: 30px; }
    .section-heading h2 { font-size: 2.25rem; }
    .city-grid { grid-template-columns: 1fr; }
    .city-card { min-height: 112px; }
    .city-card:nth-child(n + 7) { display: grid; }
    .state-link-grid { grid-template-columns: 1fr; }
    .trust-strip__inner { gap: 1.3rem; }
    .trust-strip__inner--compact { grid-template-columns: 1fr; }
    .trust-strip__guide-link { grid-column: auto; justify-self: stretch; width: 100%; }
    .directory-hero { padding-bottom: 24px; }
    .directory-hero__copy { padding-block: 18px; }
    .directory-hero__copy h1 { font-size: 2.45rem; }
    .directory-search { grid-template-columns: 1fr; }
    .directory-search .button { grid-column: auto; }
    .directory-section { padding-block: 28px 80px; }
    .results-toolbar { align-items: stretch; }
    .results-toolbar form { align-items: stretch; justify-content: space-between; width: 100%; }
    .results-toolbar select { flex: 1; width: 100%; }
    .business-card { gap: .9rem; grid-template-columns: 1fr; padding: 1.1rem; }
    .business-card h2 { font-size: 1.35rem; }
    .business-card__actions { grid-template-columns: repeat(2, 1fr); }
    .business-card__actions .button:last-child { grid-column: 1 / -1; }
    .business-hero { min-height: auto; padding-bottom: 34px; }
    .business-hero__grid { padding-top: 18px; }
    .business-hero h1 { font-size: 2.75rem; }
    .business-hero::after { opacity: .5; }
    .business-detail-section { padding-block: 32px 82px; }
    .venue-advice { padding-block: 42px; }
    .venue-advice .detail-card--essentials { border-radius: 18px; padding: 1.45rem; }
    .venue-advice__heading { align-items: flex-start; }
    .venue-advice__heading .business-section-icon { height: 38px; margin-top: .1rem; width: 38px; }
    .venue-advice .venue-checklist li { min-height: 0; }
    .venue-advice__actions { align-items: stretch; flex-direction: column; }
    .venue-advice__checklist-link { min-width: 0; order: -1; width: 100%; }
    .venue-advice .detail-card__guide-link { justify-content: center; width: 100%; }
    .detail-card { border-radius: 17px; padding: 1.25rem; }
    .detail-card h2 { font-size: 1.55rem; }
    .detail-map { height: 285px; }
    .page-hero { padding-bottom: 50px; }
    .page-hero h1 { font-size: 2.6rem; }
    .city-directory-state { border-radius: 17px; padding: 1rem; }
    .city-directory-links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: no-preference) {
    .hero__content { animation: design-rise .55s ease both; }
    .hero__backdrop { animation: design-fade .7s .08s ease both; }
    @keyframes design-rise { from { transform: translateY(8px); } to { transform: none; } }
    @keyframes design-fade { from { opacity: .86; } to { opacity: 1; } }
}
