/* ============================================
   Udaipur Business Directory
   Aesthetic: Editorial Heritage · Mewar Royal
   ============================================ */

:root {
    --bg: #f7f2e8;
    --bg-warm: #efe6d2;
    --bg-cream: #faf6ec;
    --ink: #1c1410;
    --ink-soft: #5a4a3f;
    --ink-mute: #8a7868;
    --red: #7a1a2f;
    --red-deep: #5a0f23;
    --red-bright: #a02340;
    --gold: #b8893e;
    --gold-light: #d4a85a;
    --gold-pale: #e8d4a8;
    --line: #d9c8a8;
    --line-soft: #e8dcc4;
    --white: #ffffff;
    --black: #0f0a08;
    
    --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
    --display: 'Fraunces', Georgia, serif;
    --italic: 'Cormorant Garamond', 'Fraunces', Georgia, serif;
    --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(28,20,16,0.06);
    --shadow-md: 0 12px 30px rgba(28,20,16,0.10);
    --shadow-lg: 0 24px 60px rgba(28,20,16,0.15);
    --shadow-deep: 0 30px 80px rgba(122,26,47,0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    font-size: 16px;
    font-weight: 450;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "ss01", "ss02";
}

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--red); }

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

h1, h2, h3, h4, h5 {
    font-family: var(--display);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
}

/* Italic accents use Cormorant for elegant contrast */
em, .italic-accent {
    font-family: var(--italic);
    font-style: italic;
    font-weight: 700;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}
.container-narrow {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 32px;
}

::selection { background: var(--gold-pale); color: var(--red-deep); }

/* TOPBAR */
.topbar {
    background: var(--black);
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    padding: 10px 0;
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--red-deep);
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--gold-light); }
.topbar .info-list { display: flex; gap: 28px; flex-wrap: wrap; font-weight: 600; }
.topbar .info-list span i { color: var(--gold-light); margin-right: 6px; font-size: 13px; }
.topbar .socials { display: flex; gap: 16px; font-size: 14px; }
.topbar .socials a { transition: transform 0.2s; }
.topbar .socials a:hover { transform: translateY(-1px); }

/* HEADER */
.header {
    background: rgba(250, 246, 236, 0.96);
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(122,26,47,0.04);
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
    width: 54px;
    height: 54px;
    position: relative;
    flex-shrink: 0;
}
.brand-mark svg {
    width: 100%;
    height: 100%;
}
.brand-text { line-height: 1.05; }
.brand-name {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--ink);
}
.brand-tag {
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 800;
    margin-top: 4px;
}

.brand-logo-img {
    max-height: 68px;
    width: auto;
    object-fit: contain;
    display: block;
}
@media (max-width: 768px) {
    .brand-logo-img { max-height: 48px; }
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-main ul {
    display: flex;
    gap: 38px;
    list-style: none;
}
.nav-main a {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    position: relative;
    padding: 6px 0;
}
.nav-main a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: all 0.3s;
    transform: translateX(-50%);
}
.nav-main a:hover::after, .nav-main a.active::after { width: 100%; }

.btn-list,
a.btn-list,
.nav-main a.btn-list {
    background: var(--red);
    color: var(--white) !important;
    padding: 13px 22px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(122,26,47,0.25);
    text-decoration: none;
}
.btn-list:hover,
a.btn-list:hover,
.nav-main a.btn-list:hover {
    background: var(--red-deep);
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(122,26,47,0.4);
}
.btn-list i { color: var(--white); }
.btn-list::after { display: none !important; }

.menu-toggle {
    display: none !important;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--ink);
}

.nav-close {
    display: none !important;
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-warm);
    border: 1px solid var(--line);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--ink);
}

.mobile-list-btn { 
    display: none !important;
    align-items: center;
    gap: 6px;
    background: var(--red);
    color: var(--white) !important;
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
}
.mobile-list-btn:hover { color: var(--white) !important; }
.mobile-list-btn i { font-size: 14px; color: var(--white); }

.nav-backdrop { display: none !important; }

/* HERO */
.hero {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg) 100%);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at top, rgba(184,137,62,0.10) 0%, transparent 60%),
        radial-gradient(ellipse at bottom, rgba(122,26,47,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 32px;
    font-weight: 700;
}
.hero-eyebrow::before, .hero-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-size: clamp(44px, 7vw, 84px);
    font-weight: 800;
    line-height: 1.0;
    margin-bottom: 28px;
    color: var(--ink);
    letter-spacing: -0.035em;
    font-family: var(--display);
}
.hero-title em {
    font-family: var(--italic);
    font-style: italic;
    color: var(--red);
    font-weight: 600;
    position: relative;
    display: inline-block;
}
.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: 0; right: 0;
    height: 6px;
    background: var(--gold-pale);
    opacity: 0.5;
    z-index: -1;
}

.hero-sub {
    font-size: 19px;
    color: var(--ink-soft);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.6;
    font-weight: 400;
}

/* Search Box */
.search-box {
    background: var(--white);
    border-radius: 4px;
    padding: 10px;
    box-shadow: var(--shadow-deep);
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr auto;
    gap: 4px;
    border: 1px solid var(--line);
    position: relative;
}
.search-box::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid var(--gold);
    border-radius: 6px;
    opacity: 0.3;
    pointer-events: none;
}
.search-field {
    position: relative;
    padding: 14px 18px 14px 50px;
}
.search-field i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--red);
    font-size: 18px;
}
.search-field input,
.search-field select {
    border: none;
    outline: none;
    font-size: 16px;
    font-family: inherit;
    width: 100%;
    background: transparent;
    padding: 6px 0;
    color: var(--ink);
    font-weight: 600;
}
.search-field input::placeholder { color: var(--ink-mute); font-weight: 400; }
.search-field + .search-field { border-left: 1px solid var(--line-soft); }
.search-btn {
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 2px;
    padding: 0 36px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.25s;
}
.search-btn:hover { background: var(--red-deep); }

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 80px;
    flex-wrap: wrap;
    position: relative;
}
.stat-item { text-align: center; }
.stat-num {
    font-family: var(--display);
    font-size: 56px;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    letter-spacing: -0.02em;
}
.stat-label {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-top: 12px;
    font-weight: 700;
}

/* SECTIONS */
.section { padding: 100px 0; position: relative; }
.section-bg-alt { background: var(--bg-warm); }

.section-head {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
}
.section-eyebrow {
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.section-eyebrow::before, .section-eyebrow::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}
.section-title {
    font-size: clamp(36px, 5vw, 58px);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.0;
}
.section-title em { 
    font-family: var(--italic);
    font-style: italic; 
    color: var(--red); 
    font-weight: 600; 
}
.section-sub {
    color: var(--ink-soft);
    font-size: 17px;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* CATEGORIES */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}
.cat-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 36px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.cat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.cat-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--gold-pale) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}
.cat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--red);
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-card:hover::after { opacity: 0.3; }
.cat-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: var(--bg-warm);
    border: 2px solid var(--gold-light);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 32px;
    color: var(--red);
    transition: all 0.4s;
    position: relative;
    z-index: 2;
}
.cat-card:hover .cat-icon {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    transform: rotate(-8deg) scale(1.1);
}
.cat-name {
    font-family: var(--display);
    font-size: 21px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}
.cat-count {
    font-size: 11px;
    color: var(--ink-mute);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

/* BUSINESS CARDS */
.biz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 36px;
}
.biz-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--line-soft);
    display: flex;
    flex-direction: column;
    position: relative;
}
.biz-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.biz-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-warm);
}
.biz-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.biz-card:hover .biz-image img { transform: scale(1.08); }

/* Rich dark placeholder with Mewar feel */
.biz-image-placeholder {
    width: 100%; 
    height: 100%;
    background: 
        radial-gradient(circle at 50% 40%, rgba(184,137,62,0.22) 0%, transparent 60%),
        linear-gradient(135deg, #2a1815 0%, #3a1e1a 35%, #5a2530 100%);
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}
.biz-image-placeholder::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 180px; height: 180px;
    border: 1.5px solid rgba(212,168,90,0.35);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.biz-image-placeholder::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 220px; height: 220px;
    border: 1px solid rgba(212,168,90,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.biz-image-placeholder span {
    font-family: var(--display);
    font-size: 88px;
    font-weight: 600;
    font-style: italic;
    color: var(--gold-light);
    z-index: 2;
    position: relative;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.biz-hero-img.biz-image-placeholder { aspect-ratio: 21/9; }
.biz-hero-img.biz-image-placeholder span { font-size: 180px; }
.biz-hero-img.biz-image-placeholder::before { width: 360px; height: 360px; }
.biz-hero-img.biz-image-placeholder::after { width: 440px; height: 440px; }

.biz-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 6px;
    z-index: 3;
}
.badge-featured {
    background: var(--red);
    color: var(--white);
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.badge-verified {
    background: var(--gold);
    color: var(--white);
    padding: 6px 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.biz-content {
    padding: 28px 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.biz-cat {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
    font-weight: 700;
    display: inline-block;
}
.biz-name {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -0.025em;
}
.biz-name a { color: inherit; }
.biz-name a:hover { color: var(--red); }
.biz-tagline {
    font-size: 14px;
    color: var(--ink-soft);
    margin-bottom: 18px;
    font-style: italic;
    font-family: var(--display);
    font-weight: 600;
    line-height: 1.4;
}
.biz-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 13px;
    color: var(--ink-soft);
    font-weight: 600;
}
.biz-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.biz-meta-item i { color: var(--gold); width: 14px; font-size: 14px; }
.biz-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line-soft);
}
.biz-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--ink);
    font-weight: 700;
}
.biz-rating i { color: var(--gold); font-size: 14px; }
.biz-view {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}
.biz-card:hover .biz-view { gap: 14px; }

/* LOCATIONS */
.loc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}
.loc-card {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 24px 22px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.loc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red);
    transform: translateY(100%);
    transition: transform 0.4s;
}
.loc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    color: var(--white);
    border-color: var(--red);
}
.loc-card:hover::before { transform: translateY(0); }
.loc-card > * { position: relative; z-index: 2; }
.loc-card:hover .loc-meta { color: rgba(255,255,255,0.75); }
.loc-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-warm);
    border: 1.5px solid var(--gold-light);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--red);
    flex-shrink: 0;
    transition: all 0.35s;
    font-size: 18px;
}
.loc-card:hover .loc-icon { 
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.loc-name {
    font-family: var(--display);
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    transition: color 0.35s;
}
.loc-card:hover .loc-name { color: var(--white); }
.loc-meta {
    font-size: 11px;
    color: var(--ink-mute);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 700;
    transition: color 0.35s;
}

/* CTA */
.cta-banner {
    background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 40%, var(--red-bright) 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M40 8l6 12 14 2-10 10 2 14-12-6-12 6 2-14-10-10 14-2z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner::after {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border: 1px solid rgba(184,137,62,0.2);
    border-radius: 50%;
}
.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 28px;
    font-weight: 700;
}
.cta-eyebrow::before, .cta-eyebrow::after {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--gold-light);
}
.cta-title {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 24px;
    color: var(--white);
    font-weight: 700;
}
.cta-title em { color: var(--gold-light); font-style: italic; font-weight: 600; }
.cta-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    line-height: 1.6;
}
.btn-cta {
    background: var(--gold);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-cta:hover {
    background: var(--gold-light);
    color: var(--ink);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.3);
}

/* FOOTER */
.footer {
    background: var(--black);
    color: rgba(255,255,255,0.7);
    padding: 100px 0 0;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red) 0%, var(--gold) 50%, var(--red) 100%);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 56px;
    margin-bottom: 64px;
}
.footer h4 {
    color: var(--white);
    font-size: 17px;
    margin-bottom: 26px;
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: -0.01em;
}
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-tag { color: var(--gold-light); }
.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 24px;
    margin-bottom: 28px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,0.75);
    transition: all 0.3s;
    font-size: 16px;
}
.footer-socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 14px; font-size: 14px; }
.footer ul a {
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
}
.footer ul a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 28px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-bottom a { color: var(--gold-light); }
.footer-credit {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.06em;
}
.footer-credit strong { 
    color: var(--gold-light); 
    font-weight: 700; 
}
.footer-credit a { 
    color: var(--gold-light); 
    font-weight: 600; 
    transition: color 0.2s;
}
.footer-credit a:hover { color: var(--white); }
.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    align-items: flex-start;
}
.footer-contact-item i { color: var(--gold); margin-top: 4px; font-size: 16px; flex-shrink: 0; }

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}
.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(122,26,47,0.25);
}
.btn-primary:hover {
    background: var(--red-deep);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(122,26,47,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--red);
    border: 1.5px solid var(--red);
}
.btn-outline:hover {
    background: var(--red);
    color: var(--white);
}
.btn-gold {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(184,137,62,0.3);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

/* PAGE HEADER */
.page-header {
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
    padding: 70px 0 60px;
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 90% 10%, rgba(184,137,62,0.12) 0%, transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(122,26,47,0.06) 0%, transparent 40%);
}
.page-header::after {
    content: '';
    position: absolute;
    right: -100px; bottom: -100px;
    width: 300px; height: 300px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.1;
}
.page-header .container { position: relative; z-index: 1; }
.breadcrumb {
    font-size: 12px;
    color: var(--ink-soft);
    margin-bottom: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb i { font-size: 10px; margin: 0 10px; opacity: 0.5; color: var(--gold); }
.page-title {
    font-size: clamp(40px, 5.5vw, 68px);
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
}
.page-title em { 
    font-family: var(--italic);
    font-style: italic; 
    color: var(--red); 
    font-weight: 600;
}
.page-sub { 
    color: var(--ink-soft); 
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* FILTERS */
.filters-bar {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 22px 24px;
    margin-bottom: 36px;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: var(--shadow-sm);
}
.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}
.filter-group label {
    font-size: 11px;
    color: var(--ink-soft);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}
.filter-group select, .filter-group input {
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 10px 14px;
    font-size: 14px;
    font-family: inherit;
    background: var(--bg-cream);
    font-weight: 600;
    color: var(--ink);
}
.filter-group select:focus, .filter-group input:focus {
    outline: none;
    border-color: var(--red);
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 56px;
}
.pagination a, .pagination span {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 2px;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 700;
    background: var(--white);
    color: var(--ink);
    transition: all 0.25s;
}
.pagination a:hover { 
    border-color: var(--red); 
    color: var(--red); 
    background: var(--bg-cream);
}
.pagination .active {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

/* ALERTS */
.alert {
    padding: 18px 24px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 15px;
    border-left: 4px solid;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: alertSlideIn 0.4s ease-out;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.alert::before {
    font-family: "bootstrap-icons";
    font-size: 22px;
    flex-shrink: 0;
}
.alert-success::before { content: "\F26B"; }
.alert-error::before { content: "\F33A"; }
.alert-info::before { content: "\F431"; }
.alert-warning::before { content: "\F33B"; }
@keyframes alertSlideIn {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
}
.alert-success { background: #e8f5e9; border-color: #2e7d32; color: #1b5e20; }
.alert-error { background: #ffebee; border-color: #c62828; color: #b71c1c; }
.alert-info { background: #e3f2fd; border-color: #1565c0; color: #0d47a1; }
.alert-warning { background: #fff8e1; border-color: #f57f17; color: #e65100; }

/* FORMS */
.form-row { margin-bottom: 22px; }
.form-row label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--ink);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.form-row label .req { color: var(--red); }
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row input[type="url"],
.form-row input[type="password"],
.form-row input[type="number"],
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 2px;
    font-size: 15px;
    font-family: inherit;
    background: var(--white);
    transition: border-color 0.25s, box-shadow 0.25s;
    color: var(--ink);
    font-weight: 600;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(122,26,47,0.08);
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

/* SINGLE BUSINESS PAGE */
.biz-hero {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
    border: 1px solid var(--line-soft);
}
.biz-hero-img {
    width: 100%;
    aspect-ratio: 21/9;
    object-fit: cover;
}
.biz-hero-info { padding: 40px 48px; }
.biz-hero-title {
    font-size: clamp(36px, 4.5vw, 54px);
    margin-bottom: 12px;
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.02em;
}
.biz-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}
@media (max-width: 900px) { .biz-detail-grid { grid-template-columns: 1fr; } }

.biz-content-block {
    background: var(--white);
    border-radius: 4px;
    padding: 36px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line-soft);
}
.biz-content-block h3 {
    font-size: 26px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gold);
    font-weight: 700;
    display: inline-block;
}
.biz-info-list { list-style: none; }
.biz-info-list li {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 14px;
}
.biz-info-list li:last-child { border-bottom: none; }
.biz-info-list i {
    color: var(--red);
    width: 22px;
    margin-top: 4px;
    font-size: 16px;
}
.biz-info-list .label {
    font-weight: 700;
    min-width: 110px;
    color: var(--ink-soft);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.12em;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
}
.gallery-grid img {
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s;
}
.gallery-grid img:hover { 
    transform: scale(1.04);
    box-shadow: var(--shadow-md);
}

.star-input i {
    cursor: pointer;
    transition: all 0.2s;
    margin-right: 4px;
}

/* Pure-CSS star rating - no JS needed, fully accessible */
.star-rating-input {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 4px;
    font-size: 32px;
}
.star-rating-input input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.star-rating-input label {
    color: #ddd;
    cursor: pointer;
    transition: color 0.15s;
    line-height: 1;
}
.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label {
    color: var(--gold);
}
.star-rating-input input:focus + label {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-radius: 4px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .search-box { 
        grid-template-columns: 1fr;
        padding: 8px;
    }
    .search-field + .search-field { 
        border-left: none; 
        border-top: 1px solid var(--line-soft); 
    }
    .search-btn {
        padding: 16px;
        justify-content: center;
        margin-top: 4px;
    }
    .hero-stats { gap: 40px; }
}

@media (max-width: 768px) {
    .container, .container-narrow { padding: 0 18px; }
    
    /* Header layout for mobile */
    .header { padding: 14px 0; }
    .header .container {
        flex-wrap: wrap;
        gap: 12px;
    }
    .brand-mark { width: 42px; height: 42px; }
    .brand-name { font-size: 19px; }
    .brand-tag { font-size: 9px; letter-spacing: 0.24em; }
    .brand-logo-img { max-height: 42px; }
    
    /* Mobile nav drawer */
    .nav-main { 
        position: fixed; 
        top: 0;
        left: 100%; 
        right: 0; 
        bottom: 0;
        width: 80%;
        max-width: 320px;
        background: var(--bg-cream);
        border-left: 1px solid var(--line);
        flex-direction: column; 
        padding: 80px 28px 28px;
        gap: 0;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -20px 0 40px rgba(0,0,0,0.15);
        align-items: stretch;
        overflow-y: auto;
        z-index: 200;
    }
    .nav-main.open { left: 20%; }
    .nav-close { display: flex !important; }
    .nav-main ul { 
        flex-direction: column; 
        gap: 4px; 
        width: 100%; 
        margin-bottom: 28px;
    }
    .nav-main ul li { border-bottom: 1px solid var(--line-soft); }
    .nav-main a { 
        padding: 16px 0;
        display: block;
        font-size: 14px;
    }
    .nav-main a::after { display: none; }
    
    /* Mobile menu backdrop */
    .nav-backdrop {
        display: block !important;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
        z-index: 150;
    }
    .nav-backdrop.open { 
        opacity: 1; 
        pointer-events: auto; 
    }
    
    /* Make List Business prominent on mobile - shown in nav, also visible from menu toggle */
    .nav-main .btn-list {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 13px;
    }
    
    /* Menu toggle button */
    .menu-toggle { 
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: var(--red);
        color: var(--white);
        border-radius: 4px;
        font-size: 22px;
        order: 3;
    }
    
    /* Optional: Show small List Business CTA in header on mobile (next to menu) */
    .mobile-list-btn {
        display: inline-flex !important;
        align-items: center;
        gap: 6px;
        background: var(--red);
        color: var(--white);
        padding: 10px 14px;
        border-radius: 4px;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        order: 2;
    }
    .mobile-list-btn i { font-size: 14px; }
    
    .topbar .info-list { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero { padding: 50px 0 60px; }
    .hero-title { font-size: 40px; line-height: 1.05; }
    .section { padding: 56px 0; }
    .section-title { font-size: 32px; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .biz-hero-info { padding: 28px 22px; }
    .stat-num { font-size: 38px; }
    .hero-stats { gap: 32px; margin-top: 48px; }
    .hero-eyebrow { font-size: 10px; letter-spacing: 0.24em; }
    .hero-eyebrow::before, .hero-eyebrow::after { width: 24px; }
    
    /* Categories grid - 2 columns on mobile */
    .cat-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .cat-card { padding: 24px 16px; }
    .cat-icon { width: 56px; height: 56px; font-size: 24px; }
    .cat-name { font-size: 16px; }
    .cat-count { font-size: 10px; }
    
    /* Business grid - 1 column */
    .biz-grid { 
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Locations - 2 columns */
    .loc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .loc-card { padding: 16px 14px; gap: 10px; }
    .loc-icon { width: 38px; height: 38px; font-size: 14px; }
    .loc-name { font-size: 14px; }
    .loc-meta { font-size: 10px; }
    
    /* Filters bar - stack on mobile */
    .filters-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        gap: 12px;
    }
    .filter-group { 
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }
    .filter-group select, .filter-group input {
        width: 100%;
    }
    
    /* Page header */
    .page-header { padding: 48px 0 40px; }
    .page-title { font-size: 36px; }
    
    /* CTA banner */
    .cta-banner { padding: 64px 0; }
    .cta-title { font-size: 32px; }
    .cta-sub { font-size: 16px; }
    .btn-cta { padding: 14px 28px; font-size: 12px; }
    
    /* Footer */
    .footer { padding: 60px 0 0; }
    
    /* Search field padding tighter */
    .search-field { padding: 12px 16px 12px 44px; }
    .search-field i { left: 16px; font-size: 16px; }
    .search-field input, .search-field select { font-size: 15px; }
    
    /* Business hero */
    .biz-hero-title { font-size: 30px; }
}

@media (max-width: 480px) {
    .cat-grid { grid-template-columns: 1fr; }
    .loc-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 34px; }
    .section-title { font-size: 28px; }
    .page-title { font-size: 30px; }
    .brand-tag { display: none; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-up { 
    animation: fadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; 
}
