/**
 * Shared State Hub Design — Indiana coffee-brown system
 * Applies to all state taxonomy templates (in/va/nc/ny + state-hub).
 */

:root {
    --brew-primary: #2b1810;
    --brew-accent: #8b5a2b;
    --brew-gold: #c69214;
    --brew-gold-soft: #fbd36b;
    --brew-dark: #1f140e;
    --brew-light: #f7f3ee;
    --brew-cream: #fffaf4;
    --brew-border: #e8ded2;
    --brew-muted: #6b5749;
    --brew-radius: 12px;
    --brew-shadow: 0 4px 20px rgba(43, 24, 16, 0.08);
    --brew-transition: all 0.25s ease;
}

/* -------------------------------------------------------------------------- */
/* Page canvas                                                                */
/* -------------------------------------------------------------------------- */

.state-hub,
.in-hub-container,
.va-hub-container,
.nc-hub-container,
.ny-page,
body.tax-state .ds-page.state-hub {
    background-color: var(--brew-light);
    color: var(--brew-primary);
    font-family: "Inter", var(--ds-font-family, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif);
    line-height: 1.6;
}

.in-hub-container,
.va-hub-container,
.nc-hub-container,
.state-hub__inner,
.ny-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.ny-page > .ny-container,
.state-hub > .state-hub__inner {
    padding-top: 0;
}

/* -------------------------------------------------------------------------- */
/* Breadcrumb                                                                 */
/* -------------------------------------------------------------------------- */

.state-hub-breadcrumb,
.in-breadcrumb,
.va-breadcrumb,
.nc-breadcrumb {
    padding: 16px 0;
    font-size: 14px;
    color: var(--brew-muted);
}

.state-hub-breadcrumb a,
.in-breadcrumb a,
.va-breadcrumb a,
.nc-breadcrumb a {
    color: var(--brew-accent);
    text-decoration: none;
    font-weight: 600;
}

.state-hub-breadcrumb a:hover,
.in-breadcrumb a:hover,
.va-breadcrumb a:hover,
.nc-breadcrumb a:hover {
    text-decoration: underline;
}

.state-hub-breadcrumb .separator,
.in-breadcrumb span.separator,
.va-breadcrumb span.separator,
.nc-breadcrumb span.separator {
    margin: 0 8px;
    color: #b5a89c;
}

body.tax-state .ds-breadcrumb {
    background: var(--brew-light) !important;
    border-bottom: 1px solid var(--brew-border);
    padding: 0.75rem 0;
}

body.tax-state .ds-breadcrumb a {
    color: var(--brew-accent) !important;
    font-weight: 600;
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */

.state-hub-hero,
.in-hero,
.va-hero,
.nc-hero,
.ny-hero {
    background: linear-gradient(135deg, #2b1810 0%, #3e2216 55%, #543120 100%);
    color: #fff;
    padding: 48px 40px;
    border-radius: var(--brew-radius);
    margin-bottom: 28px;
    box-shadow: 0 10px 30px rgba(31, 20, 14, 0.25);
    position: relative;
    overflow: hidden;
    text-align: left;
    border-bottom: none;
    animation: stateHubHeroIn 0.55s ease both;
}

/* Full-bleed NY heroes become inset cards when wrapped */
.ny-page > .ny-hero {
    margin: 16px 20px 28px;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.state-hub-hero::before,
.in-hero::before,
.va-hero::before,
.nc-hero::before,
.ny-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(198, 146, 20, 0.18), transparent 68%);
    pointer-events: none;
    animation: stateHubGoldPulse 4s ease-in-out infinite alternate;
}

@keyframes stateHubHeroIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes stateHubGoldPulse {
    from { opacity: 0.85; }
    to { opacity: 1; }
}

.state-hub-hero__badge,
.in-hero-badge,
.va-hero-badge,
.nc-hero-badge,
.ny-hero__badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(198, 146, 20, 0.25);
    border: 1px solid rgba(198, 146, 20, 0.5);
    color: var(--brew-gold-soft);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.state-hub-hero h1,
.in-hero h1,
.va-hero h1,
.nc-hero h1,
.ny-hero__title {
    position: relative;
    z-index: 1;
    font-family: "Outfit", var(--ds-font-display, system-ui, sans-serif);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    line-height: 1.25;
    margin: 0 0 16px;
    font-weight: 800;
    color: #ffffff;
}

.state-hub-hero__desc,
.in-hero-desc,
.va-hero-desc,
.nc-hero-desc,
.ny-hero__subtitle {
    position: relative;
    z-index: 1;
    font-size: 17px;
    max-width: 840px;
    margin: 0 0 20px;
    color: #f1e7dd;
    line-height: 1.6;
}

.ny-hero__subtitle {
    margin-left: 0;
    margin-right: 0;
}

.state-hub-hero__ctas,
.in-hero-ctas,
.va-hero-ctas,
.nc-hero-ctas,
.ny-hero__ctas {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}

.state-hub-cta,
.in-hero-cta,
.ny-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--brew-transition);
}

.state-hub-cta--primary,
.in-hero-cta--primary,
.ny-hero__cta--primary {
    background: var(--brew-gold);
    color: var(--brew-dark) !important;
    border: 1px solid var(--brew-gold);
}

.state-hub-cta--primary:hover,
.in-hero-cta--primary:hover,
.ny-hero__cta--primary:hover {
    background: var(--brew-gold-soft);
    transform: translateY(-1px);
}

.state-hub-cta--ghost,
.in-hero-cta--ghost,
.ny-hero__cta--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.state-hub-cta--ghost:hover,
.in-hero-cta--ghost:hover,
.ny-hero__cta--ghost:hover {
    background: rgba(255, 255, 255, 0.16);
}

.state-hub-hero__stats,
.in-hero-stats,
.va-hero-stats,
.nc-hero-stats,
.ny-hero__stats,
.ny-stats-grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    justify-content: flex-start;
}

.state-hub-stat,
.in-stat-card,
.va-stat-card,
.nc-stat-card,
.ny-hero__stat-card,
.ny-stat-pill {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    min-width: 120px;
    text-align: left;
}

.ny-hero__stat-card {
    text-align: left;
}

.state-hub-stat__num,
.in-stat-num,
.va-stat-num,
.nc-stat-num,
.ny-hero__stat-number,
.ny-stat-pill__num {
    font-family: "Outfit", sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--brew-gold-soft);
    line-height: 1;
}

.state-hub-stat__label,
.in-stat-label,
.va-stat-label,
.nc-stat-label,
.ny-hero__stat-label,
.ny-stat-pill__label,
.ny-stat-pill__lbl {
    font-size: 13px;
    color: #e4d5c7;
    margin-top: 4px;
    text-transform: none;
    letter-spacing: 0;
}

/* -------------------------------------------------------------------------- */
/* Sticky jump nav                                                            */
/* -------------------------------------------------------------------------- */

.state-hub-jump,
.in-nav-sticky,
.va-nav-sticky,
.nc-nav-sticky {
    position: sticky;
    top: 20px;
    z-index: 100;
    background: #ffffff;
    border: 1px solid var(--brew-border);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    padding: 10px 16px;
    margin-bottom: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.ny-jumpbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border: 1px solid var(--brew-border);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    margin: 0 20px 36px;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid var(--brew-border);
}

.ny-jumpbar__nav,
.ny-jumpbar__list,
.ny-jumpbar__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 10px 16px;
    max-width: none;
    margin: 0;
    overflow-x: auto;
}

.state-hub-jump a,
.in-nav-sticky a,
.va-nav-sticky a,
.nc-nav-sticky a,
.ny-jumpbar__link,
.ny-jumpbar__item {
    color: var(--brew-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    background: var(--brew-light);
    transition: var(--brew-transition);
    white-space: nowrap;
}

.state-hub-jump a:hover,
.in-nav-sticky a:hover,
.va-nav-sticky a:hover,
.nc-nav-sticky a:hover,
.ny-jumpbar__link:hover,
.ny-jumpbar__item:hover {
    background: var(--brew-accent);
    color: #ffffff;
    transform: translateY(-1px);
}

/* -------------------------------------------------------------------------- */
/* Section titles                                                             */
/* -------------------------------------------------------------------------- */

.state-hub-title,
.in-section-title,
.va-section-title,
.nc-section-title,
.ny-section-header h2,
.ny-section-title {
    font-family: "Outfit", sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--brew-primary);
    margin: 0 0 12px;
    position: relative;
    padding-bottom: 8px;
}

.state-hub-title::after,
.in-section-title::after,
.va-section-title::after,
.nc-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--brew-accent);
    border-radius: 2px;
}

.ny-section-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.ny-section-header h2 {
    text-align: left;
}

.ny-section-header p,
.state-hub-intro,
.in-section-intro,
.va-section-intro,
.nc-section-intro,
.ny-section-desc {
    font-size: 16px;
    color: var(--brew-muted);
    margin-bottom: 24px;
    max-width: 820px;
}

.ny-section-header--left p {
    margin-left: 0;
}

.ny-section-badge,
.state-hub-badge {
    display: inline-block;
    background: #efe7dd;
    color: var(--brew-accent);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

/* Override purple DS badges on state pages */
body.tax-state .ds-section__badge--purple,
body.tax-state .ds-stat-card__value--purple {
    background: #efe7dd !important;
    color: var(--brew-accent) !important;
}

body.tax-state .ds-stat-card__value--purple {
    background: transparent !important;
    color: var(--brew-gold) !important;
}

body.tax-state .ds-hero--purple {
    background: linear-gradient(135deg, #2b1810 0%, #3e2216 55%, #543120 100%) !important;
}

/* -------------------------------------------------------------------------- */
/* AEO / answer cards                                                         */
/* -------------------------------------------------------------------------- */

.state-hub-aeo,
.in-aeo-section,
.va-aeo-section,
.nc-aeo-section {
    margin-bottom: 44px;
}

.state-hub-aeo__grid,
.in-aeo-grid,
.va-aeo-grid,
.nc-aeo-grid,
.ny-answer-grid,
.ny-grid-2,
.ny-grid-3,
.ny-aeo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 2rem;
}

.state-hub-aeo__card,
.in-aeo-card,
.va-aeo-card,
.nc-aeo-card,
.ny-answer-card,
.ny-aeo-box,
.ny-card,
.ny-aeo-card,
.ny-aeo-item {
    background: #ffffff;
    border: 1px solid var(--brew-border);
    border-left: 4px solid var(--brew-accent);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--brew-shadow);
    transition: var(--brew-transition);
}

.state-hub-aeo__card:hover,
.in-aeo-card:hover,
.va-aeo-card:hover,
.nc-aeo-card:hover,
.ny-answer-card:hover,
.ny-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(43, 24, 16, 0.12);
}

.state-hub-aeo__card h3,
.in-aeo-card h3,
.va-aeo-card h3,
.nc-aeo-card h3,
.ny-answer-card__title {
    margin: 0 0 10px;
    font-size: 17px;
    color: var(--brew-primary);
    font-weight: 700;
}

.ny-answer-card__title {
    color: var(--brew-accent);
}

.state-hub-aeo__card p,
.in-aeo-card p,
.va-aeo-card p,
.nc-aeo-card p,
.ny-answer-card p {
    margin: 0;
    font-size: 14.5px;
    color: #4a4a4a;
    line-height: 1.55;
}

/* -------------------------------------------------------------------------- */
/* Directory table                                                            */
/* -------------------------------------------------------------------------- */

.state-hub-table-wrap,
.in-table-section,
.va-table-section,
.nc-table-section,
.ny-table-card {
    background: #ffffff;
    border: 1px solid var(--brew-border);
    border-radius: var(--brew-radius);
    padding: 28px;
    margin-bottom: 44px;
    box-shadow: var(--brew-shadow);
    overflow: hidden;
}

.ny-table-card {
    padding: 0;
}

/* -------------------------------------------------------------------------- */
/* Directory search toolbar (unified coffee-hub)                              */
/* -------------------------------------------------------------------------- */

.state-hub-search,
.ny-table-toolbar,
.ny-table-filter,
.ny-filter-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 16px;
    padding: 14px 16px;
    margin-bottom: 0;
    background: linear-gradient(180deg, #fffaf4 0%, #f7f3ee 100%);
    border: 1px solid var(--brew-border);
    border-radius: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.ny-table-card > .ny-table-toolbar,
.ny-table-card > .state-hub-search {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--brew-border);
    margin: 0;
}

.ny-table-wrap > .ny-table-filter,
.ny-table-wrap > .state-hub-search,
.ny-filter-box {
    margin-bottom: 16px;
}

.state-hub-search__field,
.ny-table-toolbar__search,
.state-hub-search .in-search-box,
.state-hub-search .va-search-box,
.state-hub-search .nc-search-box {
    position: relative;
    flex: 1 1 260px;
    min-width: 220px;
    max-width: 520px;
}

.state-hub-search__icon,
.ny-table-toolbar__search svg,
.state-hub-search__field > svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    fill: var(--brew-accent);
    pointer-events: none;
    opacity: 0.9;
}

.state-hub-search__label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brew-muted);
    margin-bottom: 6px;
}

/* Keep labels accessible without shifting the icon */
.state-hub-search__label.state-hub-search__label--sr,
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.state-hub-search__input,
.ny-table-toolbar__search input,
.ny-filter-input,
.ny-search-input,
.in-search-input,
.va-search-input,
.nc-search-input,
.ny-table-filter input[type="text"],
.ny-table-filter input[type="search"],
.ny-filter-box input[type="text"],
.ny-filter-box input[type="search"],
.state-hub input[type="search"].state-hub-search__input,
.state-hub input[type="search"].in-search-input,
.state-hub input[type="search"].va-search-input,
.state-hub input[type="search"].nc-search-input,
.state-hub input[type="search"].ny-filter-input,
.state-hub input[type="search"].ny-search-input {
    width: 100%;
    padding: 12px 16px 12px 42px !important;
    border: 1.5px solid var(--brew-border) !important;
    border-radius: 10px !important;
    font-size: 15px;
    font-family: inherit;
    color: var(--brew-primary);
    box-sizing: border-box;
    background: #ffffff !important;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 1px 2px rgba(43, 24, 16, 0.04);
    -webkit-appearance: none;
    appearance: none;
}

.state-hub-search__input::placeholder,
.ny-table-toolbar__search input::placeholder,
.ny-filter-input::placeholder,
.ny-search-input::placeholder,
.in-search-input::placeholder,
.va-search-input::placeholder,
.nc-search-input::placeholder,
.ny-table-filter input::placeholder,
.ny-filter-box input::placeholder {
    color: #a89888;
}

.state-hub-search__input:hover,
.ny-table-toolbar__search input:hover,
.ny-filter-input:hover,
.ny-search-input:hover,
.in-search-input:hover,
.va-search-input:hover,
.nc-search-input:hover,
.ny-table-filter input:hover,
.ny-filter-box input:hover {
    border-color: #d4c4b4 !important;
}

.state-hub-search__input:focus,
.ny-table-toolbar__search input:focus,
.ny-filter-input:focus,
.ny-search-input:focus,
.in-search-input:focus,
.va-search-input:focus,
.nc-search-input:focus,
.ny-table-filter input:focus,
.ny-filter-box input:focus {
    border-color: var(--brew-accent) !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.18) !important;
}

.state-hub-search__meta,
.ny-table-toolbar__count {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.state-hub-search__count,
.ny-table-toolbar__count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #efe7dd;
    border: 1px solid #e0d2c2;
    color: var(--brew-primary);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1.2;
}

.state-hub-search__hint {
    margin: 6px 0 0;
    font-size: 14px;
    color: var(--brew-muted);
    line-height: 1.45;
}

.state-hub-search__hint strong,
.state-hub-search__hint span[id$="-count"] {
    color: var(--brew-accent);
    font-weight: 800;
}

.state-hub-search__count::before,
.ny-table-toolbar__count::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brew-gold);
    box-shadow: 0 0 0 3px rgba(198, 146, 20, 0.2);
}

/* Keep Indiana header layout; elevate its search field */
.in-table-header,
.va-table-header,
.nc-table-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 20px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.in-table-header h2,
.va-table-header h2,
.nc-table-header h2 {
    margin: 0;
    font-size: 24px;
    color: var(--brew-primary);
    font-weight: 800;
    font-family: "Outfit", sans-serif;
}

.in-search-box,
.va-search-box,
.nc-search-box {
    position: relative;
    min-width: min(100%, 320px);
    flex: 1 1 280px;
    max-width: 420px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.in-search-box .in-search-input,
.va-search-box .va-search-input,
.nc-search-box .nc-search-input {
    padding-left: 42px;
}

.in-search-icon,
.va-search-icon,
.nc-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    fill: var(--brew-accent);
    color: var(--brew-accent);
    pointer-events: none;
    line-height: 1;
    z-index: 1;
}

@media (max-width: 640px) {
    .state-hub-search,
    .ny-table-toolbar,
    .ny-table-filter,
    .ny-filter-box {
        flex-direction: column;
        align-items: stretch;
    }

    .state-hub-search__field,
    .ny-table-toolbar__search {
        max-width: none;
    }

    .state-hub-search__count,
    .ny-table-toolbar__count {
        justify-content: center;
        width: 100%;
    }

    .in-table-header,
    .va-table-header,
    .nc-table-header {
        flex-direction: column;
        align-items: stretch;
    }

    .in-search-box,
    .va-search-box,
    .nc-search-box {
        max-width: none;
    }
}

.in-table-wrapper,
.va-table-wrapper,
.nc-table-wrapper,
.ny-table-responsive {
    overflow-x: auto;
}

.state-hub-table,
.in-table,
.va-table,
.nc-table,
.ny-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: left;
}

.state-hub-table th,
.in-table th,
.va-table th,
.nc-table th,
.ny-table th {
    background: var(--brew-primary);
    color: #ffffff;
    padding: 12px 16px;
    font-weight: 600;
    border: none;
}

.ny-table th {
    background: var(--brew-primary);
    color: #fff;
    border-bottom: none;
}

.state-hub-table th:first-child,
.in-table th:first-child {
    border-top-left-radius: 8px;
}

.state-hub-table th:last-child,
.in-table th:last-child {
    border-top-right-radius: 8px;
}

.state-hub-table td,
.in-table td,
.va-table td,
.nc-table td,
.ny-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--brew-border);
    vertical-align: middle;
    color: #3d2e24;
}

.state-hub-table tr:hover,
.in-table tr:hover,
.ny-table tr:hover td {
    background: var(--brew-light);
}

.in-stand-link,
.va-stand-link,
.nc-stand-link,
.ny-table a,
.ny-link {
    font-weight: 700;
    color: var(--brew-primary);
    text-decoration: none;
}

.ny-table a,
.ny-link {
    color: var(--brew-accent);
}

.in-stand-link:hover,
.ny-table a:hover,
.ny-link:hover {
    color: var(--brew-accent);
    text-decoration: underline;
}

.in-city-badge,
.va-city-badge,
.nc-city-badge,
.ny-pill {
    display: inline-block;
    background: #efe7dd;
    color: var(--brew-primary);
    padding: 3px 9px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--brew-transition);
}

.ny-pill {
    border-radius: 9999px;
    padding: 0.25rem 0.65rem;
    color: #5c4333;
}

.in-city-badge:hover,
.ny-pill:hover {
    background: var(--brew-accent);
    color: #ffffff;
}

/* Direction / primary buttons */
.in-btn-dir,
.va-btn-dir,
.nc-btn-dir,
.state-hub-btn,
.ny-btn-sm,
.ny-regional-card__btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    background-color: #2b1810 !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    border: 1px solid #2b1810 !important;
    box-shadow: 0 2px 5px rgba(43, 24, 16, 0.25) !important;
    transition: all 0.2s ease !important;
    white-space: nowrap !important;
}

.in-btn-dir:hover,
.va-btn-dir:hover,
.nc-btn-dir:hover,
.state-hub-btn:hover,
.ny-btn-sm:hover,
.ny-regional-card__btn:hover {
    background-color: #c69214 !important;
    border-color: #c69214 !important;
    color: #1f140e !important;
}

.in-btn-dir span,
.va-btn-dir span,
.nc-btn-dir span {
    color: inherit !important;
    font-weight: 700 !important;
}

/* -------------------------------------------------------------------------- */
/* Spotlights / regions                                                       */
/* -------------------------------------------------------------------------- */

.in-spotlight-section,
.va-spotlight-section,
.nc-spotlight-section,
.ny-spotlight-box,
.ny-section {
    margin-bottom: 44px;
}

.ny-spotlight-box,
.ny-section--white,
.ny-section--cream,
.ny-section--latte {
    background: #ffffff;
    border: 1px solid var(--brew-border);
    border-radius: var(--brew-radius);
    padding: 28px;
    box-shadow: var(--brew-shadow);
}

.ny-section--cream,
.ny-section--latte {
    background: var(--brew-cream);
}

.in-spotlight-grid,
.va-spotlight-grid,
.nc-spotlight-grid,
.ny-spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.in-spotlight-card,
.va-spotlight-card,
.nc-spotlight-card,
.ny-spotlight-card {
    background: #ffffff;
    border: 1px solid var(--brew-border);
    border-radius: var(--brew-radius);
    padding: 24px;
    box-shadow: var(--brew-shadow);
    transition: var(--brew-transition);
}

.ny-spotlight-card {
    background: var(--brew-cream);
}

.in-spotlight-card:hover,
.ny-spotlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(43, 24, 16, 0.12);
}

.in-spotlight-tag,
.va-spotlight-tag,
.nc-spotlight-tag,
.ny-region-tag {
    display: inline-block;
    background: #fdf3e2;
    color: #a06312;
    border: 1px solid #edd4af;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.in-spotlight-card h3,
.ny-spotlight-card h4,
.in-region-card h4,
.ny-region-card__title {
    margin: 0 0 12px;
    font-size: 20px;
    color: var(--brew-primary);
    font-weight: 700;
    font-family: "Outfit", sans-serif;
}

.in-regions-grid,
.va-regions-grid,
.nc-regions-grid,
.ny-regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 2rem;
}

.in-region-card,
.va-region-card,
.nc-region-card,
.ny-region-card,
.ny-regional-card {
    background: #ffffff;
    border: 1px solid var(--brew-border);
    border-radius: var(--brew-radius);
    padding: 20px;
    box-shadow: var(--brew-shadow);
    transition: var(--brew-transition);
}

.in-region-card:hover,
.ny-region-card:hover,
.ny-regional-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(43, 24, 16, 0.12);
}

.in-region-count,
.ny-region-card__badge {
    font-size: 13px;
    color: var(--brew-accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.in-city-chips,
.ny-region-card__cities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ny-stand-list,
.ny-stand-item {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.ny-stand-item {
    background: var(--brew-cream);
    border: 1px solid var(--brew-border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
}

.ny-stand-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--brew-muted);
}

/* Menu / drinks */
.in-menu-guide,
.va-menu-guide,
.nc-menu-guide {
    background: #ffffff;
    border: 1px solid var(--brew-border);
    border-radius: var(--brew-radius);
    padding: 28px;
    margin-bottom: 44px;
    box-shadow: var(--brew-shadow);
}

.in-drinks-grid,
.va-drinks-grid,
.nc-drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.in-drink-card,
.va-drink-card,
.nc-drink-card {
    background: var(--brew-cream);
    border: 1px solid var(--brew-border);
    border-radius: 8px;
    padding: 16px;
}

.in-drink-card h4,
.va-drink-card h4,
.nc-drink-card h4 {
    margin: 0 0 6px;
    font-size: 16px;
    color: var(--brew-primary);
    font-weight: 700;
}

.in-drink-flavor {
    font-size: 12px;
    color: var(--brew-accent);
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* -------------------------------------------------------------------------- */
/* Map                                                                        */
/* -------------------------------------------------------------------------- */

.state-hub-map,
.in-map-section,
.va-map-section,
.nc-map-section {
    background: #ffffff;
    border: 1px solid var(--brew-border);
    border-radius: var(--brew-radius);
    padding: 28px;
    margin-bottom: 44px;
    box-shadow: var(--brew-shadow);
}

#in-map,
#va-map,
#nc-map,
#al-leaflet-map,
#il-leaflet-map,
#ky-leaflet-map,
#ms-leaflet-map,
#mo-leaflet-map,
#tn-leaflet-map,
#oh-leaflet-map,
#ga-leaflet-map,
#tx-leaflet-map,
#fl-leaflet-map,
#ny-leaflet-map,
#brew-state-map,
.state-hub-map__canvas {
    height: 480px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--brew-border);
    margin-top: 16px;
    box-shadow: 0 4px 16px rgba(43, 24, 16, 0.08);
}

.leaflet-popup-content h4 {
    margin: 0 0 4px;
    color: var(--brew-primary);
    font-size: 1rem;
}

.leaflet-popup-content a {
    color: var(--brew-accent);
    font-weight: 700;
}

/* -------------------------------------------------------------------------- */
/* FAQ                                                                        */
/* -------------------------------------------------------------------------- */

.state-hub-faq,
.in-faq-section,
.va-faq-section,
.nc-faq-section,
.ny-faq-list {
    margin-bottom: 44px;
}

.state-hub-faq__item,
.in-faq-item,
.va-faq-item,
.nc-faq-item,
.ny-faq-item {
    background: #ffffff;
    border: 1px solid var(--brew-border);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.state-hub-faq__q,
.in-faq-question,
.va-faq-question,
.nc-faq-question,
.ny-faq-question {
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    color: var(--brew-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    transition: var(--brew-transition);
    user-select: none;
}

.state-hub-faq__q:hover,
.in-faq-question:hover,
.ny-faq-question:hover {
    background: var(--brew-light);
}

.in-faq-toggle {
    font-size: 20px;
    color: var(--brew-accent);
    transition: transform 0.25s ease;
}

.in-faq-item.active .in-faq-toggle {
    transform: rotate(45deg);
}

.ny-faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--brew-accent);
    font-weight: 700;
}

.ny-faq-item.active .ny-faq-question::after {
    content: "−";
}

.state-hub-faq__a,
.in-faq-answer,
.va-faq-answer,
.nc-faq-answer,
.ny-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 14.5px;
    color: #4a4a4a;
    line-height: 1.6;
    background: #fffdfa;
}

.in-faq-item.active .in-faq-answer,
.va-faq-item.active .va-faq-answer,
.nc-faq-item.active .nc-faq-answer,
.ny-faq-item.active .ny-faq-answer,
.state-hub-faq__item.active .state-hub-faq__a {
    padding: 16px 20px;
    max-height: 1000px;
    border-top: 1px solid var(--brew-border);
}

/* Careers / nearby states */
.in-pay-section,
.va-pay-section,
.nc-pay-section {
    background: linear-gradient(135deg, #f7f3ee 0%, #fffaf4 100%);
    border: 1px solid var(--brew-border);
    border-radius: var(--brew-radius);
    padding: 28px;
    margin-bottom: 44px;
    box-shadow: var(--brew-shadow);
}

.in-highway-section,
.va-highway-section,
.nc-highway-section {
    background: #ffffff;
    border: 1px solid var(--brew-border);
    border-radius: var(--brew-radius);
    padding: 24px;
    margin-bottom: 44px;
    box-shadow: var(--brew-shadow);
}

.in-states-grid,
.va-states-grid,
.nc-states-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.in-state-link,
.va-state-link,
.nc-state-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--brew-light);
    border: 1px solid var(--brew-border);
    border-radius: 8px;
    color: var(--brew-primary);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    transition: var(--brew-transition);
}

.in-state-link:hover,
.va-state-link:hover,
.nc-state-link:hover {
    background: var(--brew-accent);
    color: #ffffff;
    border-color: var(--brew-accent);
}

/* Fallback DS content cards on state pages */
body.tax-state .ds-content-card {
    border-color: var(--brew-border);
    box-shadow: var(--brew-shadow);
}

body.tax-state .ds-section--offwhite,
body.tax-state .ds-section--cream {
    background: var(--brew-light);
}

body.tax-state .ds-section--white {
    background: transparent;
}

body.tax-state .ds-btn--primary {
    background: var(--brew-primary) !important;
    border-color: var(--brew-primary) !important;
}

body.tax-state .ds-btn--purple {
    background: var(--brew-accent) !important;
    border-color: var(--brew-accent) !important;
}

/* -------------------------------------------------------------------------- */
/* Responsive                                                                 */
/* -------------------------------------------------------------------------- */

@media (max-width: 768px) {
    .state-hub-hero,
    .in-hero,
    .va-hero,
    .nc-hero,
    .ny-hero,
    .ny-page > .ny-hero {
        padding: 32px 20px;
        margin-left: 12px;
        margin-right: 12px;
    }

    .state-hub-hero h1,
    .in-hero h1,
    .ny-hero__title {
        font-size: 1.65rem;
    }

    .state-hub-hero__stats,
    .in-hero-stats,
    .ny-hero__stats {
        gap: 12px;
    }

    .ny-jumpbar {
        margin-left: 12px;
        margin-right: 12px;
        top: 8px;
    }

    .in-spotlight-grid,
    .ny-spotlight-grid {
        grid-template-columns: 1fr;
    }

    .in-table-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .in-search-box {
        width: 100%;
    }

    #in-map,
    #va-map,
    #nc-map,
    #al-leaflet-map,
    #brew-state-map,
    [id$="-leaflet-map"] {
        height: 350px;
    }
}
