/* ============================================================
   HIGH NOON TATTOO — Main Stylesheet  v4
   Dark / Navy / Gold — Western moderne
   ============================================================ */

:root {
    /* Fond bleu nuit profond inspiré des logos (et non noir pur) */
    --bg:         #0A0E1A;
    --bg-surface: #0F1424;
    --bg-card:    #141A2E;
    --bg-raised:  #1B2238;

    /* Or chaud — la couleur signature des logos */
    --gold:        #C9A84C;
    --gold-bright: #E0C06A;
    --gold-dim:    #7A6530;
    --gold-glow:   rgba(201,168,76,.18);

    /* Navy accents (utilisés sur badges, halos) */
    --navy:        #16243F;
    --navy-soft:   rgba(22,36,63,.6);

    /* Crème / texte */
    --cream:     #EDE8D8;
    --cream-dim: #8B8474;
    --white:     #F4F1EA;

    /* Danger (effacer) */
    --danger:     #D9534F;
    --danger-bg:  rgba(217,83,79,.12);

    /* Rayons */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 32px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Lato', sans-serif;
    background: var(--bg);
    color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* Sélection */
::selection { background: var(--gold); color: var(--bg); }

/* Scrollbar discrète */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-raised); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }

/* ── NAVBAR ────────────────────────────────────────────────── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0.75rem 0;
}
.nav-container {
    max-width: 1160px; margin: 0 auto; padding: 0 1.25rem 0 1.5rem;
    height: 58px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(15,20,36,.82);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-radius: var(--r-xl);
    border: 1px solid rgba(201,168,76,.14);
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.navbar.scrolled .nav-container {
    border-color: rgba(201,168,76,.28);
    box-shadow: 0 10px 40px rgba(0,0,0,.55);
    background: rgba(10,14,26,.92);
}
.nav-logo { display: flex; align-items: center; gap: 0.7rem; }
.nav-logo-img {
    height: 36px; width: 36px; object-fit: contain;
    border-radius: 50%; border: 1px solid rgba(201,168,76,.3);
    background: var(--navy);
}
.nav-logo-text {
    font-family: 'Cinzel', serif; font-weight: 900; font-size: 0.92rem;
    color: var(--gold); letter-spacing: 3px;
}
.nav-logo-amp { color: var(--cream); font-weight: 700; }

.nav-links { list-style: none; display: flex; gap: 0.25rem; align-items: center; }
.nav-links li a {
    display: block; padding: 0.45rem 0.9rem;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: var(--cream-dim); border-radius: var(--r-sm);
    transition: color 0.2s, background 0.2s;
}
.nav-links li a:hover { color: var(--gold); background: rgba(201,168,76,.08); }
.nav-links li a.nav-cta {
    background: var(--gold); color: var(--bg);
    border-radius: var(--r-sm); margin-left: 0.5rem;
}
.nav-links li a.nav-cta:hover { background: var(--gold-bright); transform: translateY(-1px); }

/* Toggle hamburger animé en X */
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--gold); border-radius: 2px;
    transition: transform 0.3s, opacity 0.2s;
    transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Lien favoris dans la nav */
.nav-fav-link {
    display: flex !important; align-items: center; gap: 0.4rem;
    padding: 0.4rem 0.8rem !important;
    background: rgba(201,168,76,.08) !important;
    border: 1px solid rgba(201,168,76,.2) !important;
    border-radius: 50px !important;
    color: var(--gold) !important;
    transition: background 0.2s, border-color 0.2s !important;
    line-height: 1 !important;
    margin-left: 0.4rem;
}
.nav-fav-link:hover, .nav-fav-link.active {
    background: rgba(201,168,76,.18) !important;
    border-color: rgba(201,168,76,.4) !important;
}
.nav-fav-icon {
    width: 14px; height: 14px; fill: currentColor;
    display: inline-block;
}
.fav-count {
    font-family: 'Cinzel', serif; font-size: 0.7rem; font-weight: 900;
    color: var(--gold); min-width: 14px; text-align: center;
    transition: transform 0.25s;
}
.fav-count.has-items {
    background: var(--gold); color: var(--bg);
    border-radius: 50px; padding: 0.1rem 0.45rem;
    font-size: 0.62rem;
}
.fav-count.pulse { animation: countPulse 0.4s ease; }
@keyframes countPulse {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.35); }
    100% { transform: scale(1); }
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
    min-height: 100vh; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center; text-align: center;
    background: var(--bg);
}
.hero-bg-texture {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(201,168,76,.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(22,36,63,.55) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 50% 50%, rgba(201,168,76,.04) 0%, transparent 70%);
}
.hero-bg-texture::before {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.035'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
    position: relative; z-index: 2; padding: 8rem 2rem 4rem;
    display: flex; flex-direction: column; align-items: center;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.2);
    border-radius: 50px; padding: 0.4rem 1.25rem;
    font-family: 'Cinzel', serif; font-size: 0.62rem;
    color: var(--gold); letter-spacing: 4px; font-weight: 700;
    margin-bottom: 2.25rem;
    animation: fadeUp 0.7s ease both;
}
.star-sep { font-size: 0.45rem; }
.hero-logo-wrap { margin-bottom: 2rem; animation: fadeUp 0.7s 0.1s ease both; }
.hero-logo {
    width: 180px; height: 180px; object-fit: contain;
    filter: drop-shadow(0 0 50px rgba(201,168,76,.28));
    transition: filter 0.4s, transform 0.4s;
}
.hero-logo:hover { filter: drop-shadow(0 0 80px rgba(201,168,76,.5)); transform: scale(1.03); }
.hero-title {
    font-family: 'Cinzel', serif; font-weight: 900;
    font-size: clamp(3rem, 9vw, 7.5rem);
    color: var(--white); letter-spacing: 6px; line-height: 1;
    margin-bottom: 0.75rem;
    animation: fadeUp 0.7s 0.15s ease both;
}
.hero-title span { display: block; color: var(--gold); font-size: 0.5em; letter-spacing: 14px; margin-top: 0.15em; }
.hero-tagline {
    font-size: 1rem; font-weight: 300; font-style: italic;
    color: var(--cream-dim); letter-spacing: 4px;
    margin-bottom: 0.5rem; animation: fadeUp 0.7s 0.25s ease both;
}
.hero-location {
    font-family: 'Cinzel', serif; font-size: 0.72rem; color: var(--gold);
    letter-spacing: 3px; margin-bottom: 2.75rem;
    animation: fadeUp 0.7s 0.3s ease both;
}
.hero-cta {
    display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
    margin-bottom: 2rem; animation: fadeUp 0.7s 0.35s ease both;
}
.hero-sub {
    font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 6px;
    color: var(--gold-dim); animation: fadeUp 0.7s 0.45s ease both;
}
.hero-scroll-hint {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    color: var(--gold); font-size: 1.2rem; opacity: 0.35;
    animation: bounce 2.5s ease infinite;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    font-family: 'Cinzel', serif;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    border: 1px solid var(--gold); border-radius: var(--r-sm);
    padding: 0.88rem 2.25rem; transition: all 0.22s ease; cursor: pointer;
    background: transparent; color: var(--gold);
}
.btn-primary { background: var(--gold); color: var(--bg); }
.btn-primary:hover { background: var(--gold-bright); box-shadow: 0 4px 32px rgba(201,168,76,.4); transform: translateY(-2px); }
.btn-outline:hover { background: rgba(201,168,76,.1); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.75rem; font-size: 0.78rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.65rem; }
.btn-danger { background: var(--danger); border-color: var(--danger); color: #fff; }
.btn-danger:hover { background: #C8413D; box-shadow: 0 4px 24px rgba(217,83,79,.4); }

/* ── SECTION HEADERS ───────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-ornament { display: block; color: var(--gold); font-size: 0.9rem; letter-spacing: 6px; margin-bottom: 0.9rem; }
.section-header h2 {
    font-family: 'Cinzel', serif; font-weight: 900;
    font-size: clamp(1.7rem, 4vw, 2.5rem); letter-spacing: 5px; text-transform: uppercase;
    color: var(--white);
}
.divider-line {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto;
}
.section-header p { font-size: 0.85rem; letter-spacing: 2px; color: var(--cream-dim); }

/* ── ABOUT ─────────────────────────────────────────────────── */
.about { padding: 7rem 0; background: var(--bg-surface); }
.about-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.about-card {
    padding: 2.5rem 2rem; text-align: center;
    background: var(--bg-card);
    border-radius: var(--r-lg);
    border: 1px solid rgba(201,168,76,.08);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.about-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,.3);
    box-shadow: 0 16px 48px rgba(201,168,76,.07);
}
.card-icon { font-size: 1.4rem; color: var(--gold); margin-bottom: 1.4rem; }
.about-card h3 {
    font-family: 'Cinzel', serif; font-size: 0.82rem;
    color: var(--white); letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 0.9rem;
}
.about-card p { color: var(--cream-dim); line-height: 1.8; font-size: 0.9rem; }

/* ── ARTISTS ───────────────────────────────────────────────── */
.artists { padding: 7rem 0; background: var(--bg); }
.artists-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.artist-card {
    background: var(--bg-card);
    border-radius: var(--r-lg); overflow: hidden;
    border: 1px solid rgba(201,168,76,.08);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.artist-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,.3);
    box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(201,168,76,.15);
}
.artist-photo {
    height: 260px; position: relative; overflow: hidden;
    background: var(--bg-surface);
    display: flex; align-items: center; justify-content: center;
}
.artist-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.artist-card:hover .artist-photo img { transform: scale(1.04); }
.artist-photo::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, var(--bg-card) 0%, transparent 55%);
    pointer-events: none;
}
.artist-photo.no-img::before { content: '★'; font-size: 4rem; color: rgba(201,168,76,.12); }
.artist-photo.no-img img { display: none; }
.artist-badge {
    position: absolute; top: 1rem; right: 1rem; z-index: 1;
    background: var(--gold); color: var(--bg);
    font-family: 'Cinzel', serif; font-size: 0.58rem; font-weight: 900;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 0.3rem 0.8rem; border-radius: 50px;
}
.artist-body { padding: 1.4rem 1.5rem 1.5rem; }
.artist-body h3 {
    font-family: 'Cinzel', serif; font-size: 1.1rem;
    color: var(--white); letter-spacing: 2px; margin-bottom: 0.3rem;
}
.artist-specialty {
    font-size: 0.68rem; color: var(--gold);
    letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
}
.artist-body p { color: var(--cream-dim); font-size: 0.88rem; line-height: 1.7; margin: 0.85rem 0; }
.artist-phone {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: var(--gold); font-family: 'Cinzel', serif; font-size: 0.82rem; letter-spacing: 1px;
    background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.18);
    border-radius: 50px; padding: 0.4rem 1rem;
    transition: background 0.2s, border-color 0.2s;
}
.artist-phone:hover { background: rgba(201,168,76,.18); border-color: rgba(201,168,76,.4); }

/* ── CATALOGUE CTA ─────────────────────────────────────────── */
.catalogue-cta { padding: 6rem 0; background: var(--bg-surface); }
.cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
    background: var(--bg-card);
    border: 1px solid rgba(201,168,76,.14);
    border-radius: var(--r-xl);
    padding: 3rem 3.5rem;
    position: relative; overflow: hidden;
}
.cta-inner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(201,168,76,.07), transparent 60%);
    pointer-events: none;
}
.cta-text { position: relative; }
.cta-text .section-ornament { text-align: left; display: inline-block; margin-bottom: 0.5rem; }
.cta-text h2 {
    font-family: 'Cinzel', serif; font-size: clamp(1.5rem,3.5vw,2.1rem);
    font-weight: 900; color: var(--white); letter-spacing: 4px;
}
.cta-text p { color: var(--cream-dim); margin-top: 0.5rem; font-size: 0.88rem; }

/* ── CI ICON (utilisé sur la page contact) ─────────────────── */
.ci-icon { font-size: 1rem; color: var(--gold); flex-shrink: 0; }

/* ── CONTACT TEASER (homepage) ─────────────────────────────── */
.contact-teaser { padding: 7rem 0; background: var(--bg-surface); }
.teaser-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
    background: var(--bg-card);
    border: 1px solid rgba(201,168,76,.14);
    border-radius: var(--r-xl);
    padding: 3rem 3.5rem;
    position: relative; overflow: hidden;
}
.teaser-inner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 80% at 0% 50%, rgba(201,168,76,.07), transparent 60%);
    pointer-events: none;
}
.teaser-text { position: relative; max-width: 540px; }
.teaser-text .section-ornament { text-align: left; display: inline-block; margin-bottom: 0.5rem; }
.teaser-text h2 {
    font-family: 'Cinzel', serif; font-size: clamp(1.5rem,3.5vw,2.1rem);
    font-weight: 900; color: var(--white); letter-spacing: 4px;
}
.teaser-text p { color: var(--cream-dim); margin-top: 0.6rem; font-size: 0.92rem; line-height: 1.6; }

/* ── FOOTER ────────────────────────────────────────────────── */
.footer { background: var(--bg); border-top: 1px solid rgba(201,168,76,.1); padding: 3rem 0 1.5rem; }
.footer-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    flex-wrap: wrap; gap: 2rem; padding-bottom: 2rem;
    border-bottom: 1px solid rgba(201,168,76,.07); margin-bottom: 1.5rem;
}
.footer-logo-text {
    font-family: 'Cinzel', serif; font-size: 0.88rem;
    color: var(--gold); letter-spacing: 4px;
}
.footer-brand p { color: rgba(245,240,225,.22); font-size: 0.78rem; font-style: italic; margin-top: 0.4rem; }
.footer-nav, .footer-legal { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.footer-nav a, .footer-legal a {
    color: rgba(245,240,225,.3); font-size: 0.7rem;
    letter-spacing: 2px; text-transform: uppercase; transition: color 0.2s;
}
.footer-nav a:hover, .footer-legal a:hover { color: var(--gold); }
.footer-bottom { text-align: center; }
.footer-bottom p { color: rgba(245,240,225,.18); font-size: 0.73rem; }
.rp-tag { margin-top: 0.2rem; font-style: italic; }

/* ── REVEAL ────────────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
[data-reveal].visible { opacity: 1; transform: none; }
[data-reveal]:nth-child(2) { transition-delay: 0.08s; }
[data-reveal]:nth-child(3) { transition-delay: 0.16s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes bounce {
    0%,20%,50%,80%,100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* ============================================================
   TOAST  (notification non bloquante)
   ============================================================ */
.hnt-toast {
    position: fixed; left: 50%; bottom: 1.5rem;
    transform: translateX(-50%) translateY(120%);
    z-index: 10000;
    display: flex; align-items: center; gap: 0.7rem;
    background: var(--bg-card);
    border: 1px solid rgba(201,168,76,.3);
    border-radius: 50px;
    padding: 0.75rem 1.25rem 0.75rem 1rem;
    color: var(--cream);
    box-shadow: 0 14px 40px rgba(0,0,0,.55);
    backdrop-filter: blur(8px);
    font-size: 0.85rem;
    max-width: calc(100vw - 2rem);
    opacity: 0; pointer-events: none;
    transition: transform 0.35s cubic-bezier(.22,1.4,.36,1), opacity 0.25s;
}
.hnt-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.hnt-toast.toast-danger { border-color: rgba(217,83,79,.4); }
.hnt-toast-icon {
    color: var(--gold); font-size: 0.95rem; line-height: 1;
    display: inline-flex;
}
.hnt-toast.toast-danger .hnt-toast-icon { color: var(--danger); }
.hnt-toast-msg strong { color: var(--white); font-weight: 700; }

/* ============================================================
   CONFIRM MODAL  (remplace confirm())
   ============================================================ */
.hnt-confirm-overlay {
    position: fixed; inset: 0; z-index: 10001;
    background: rgba(4,6,12,.78);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    padding: 1.5rem;
    opacity: 0; transition: opacity 0.22s ease;
}
.hnt-confirm-overlay.open { opacity: 1; }
.hnt-confirm-box {
    background: var(--bg-card);
    border: 1px solid rgba(201,168,76,.25);
    border-radius: var(--r-lg);
    max-width: 420px; width: 100%;
    padding: 2rem 1.75rem 1.5rem;
    text-align: center;
    transform: translateY(14px) scale(.97);
    transition: transform 0.28s ease;
    box-shadow: 0 24px 70px rgba(0,0,0,.6);
}
.hnt-confirm-overlay.open .hnt-confirm-box { transform: none; }
.hnt-confirm-star {
    color: var(--gold); font-size: 1.4rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(201,168,76,.4);
}
.hnt-confirm-box h3 {
    font-family: 'Cinzel', serif; color: var(--white);
    font-size: 1.05rem; letter-spacing: 2px;
    margin-bottom: 0.75rem; text-transform: uppercase;
}
.hnt-confirm-box p {
    color: var(--cream-dim); font-size: 0.88rem; line-height: 1.6;
    margin-bottom: 1.5rem;
}
.hnt-confirm-actions {
    display: flex; gap: 0.6rem; justify-content: center;
}
.hnt-confirm-actions .btn { flex: 1; max-width: 160px; padding: 0.7rem 1.2rem; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 1rem; }
    .artists-grid { grid-template-columns: 1fr; gap: 1rem; }
    .cta-inner,
    .teaser-inner { flex-direction: column; text-align: center; padding: 2.5rem; }
    .cta-text .section-ornament,
    .teaser-text .section-ornament { display: block; text-align: center; }
    .teaser-text { max-width: none; }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-logo-text { font-size: 0.8rem; letter-spacing: 2px; }
    .nav-links {
        position: fixed; top: 80px; left: 1rem; right: 1rem;
        background: rgba(15,20,36,.97); border-radius: var(--r-lg);
        border: 1px solid rgba(201,168,76,.18);
        flex-direction: column; padding: 1.25rem;
        transform: translateY(-120%) scale(0.97); opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        pointer-events: none;
        backdrop-filter: blur(20px);
    }
    .nav-links.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }
    .nav-links li { width: 100%; }
    .nav-links li a { padding: 0.75rem 1rem; border-radius: var(--r-sm); }
    .nav-links li a.nav-cta { margin-left: 0; text-align: center; }
    .nav-fav-link { justify-content: center; margin-left: 0 !important; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-cta .btn { width: 100%; max-width: 280px; }
    .footer-top { flex-direction: column; align-items: center; text-align: center; }
    .form-row { flex-direction: column; }
}
