/* ==========================================================================
   1988 TATTOO STUDIO — 2026 UI/UX Design
   Dark luxury · Micro-animations · Glassmorphism · Grain texture
   Brand: #540c12 (burgundy) · #0a0a0a (fond) · #ece7e1 (texte)

   TYPE SCALE (6 tailles seulement):
   xs    = 0.75rem  — copyright, micro-notes
   sm    = 0.85rem  — nav, labels, badges, boutons, footer
   base  = 1rem     — body text, paragraphes, listes
   lg    = 1.15rem  — noms, titres cartes
   num   = 2.5rem   — numéros décoratifs
   display = clamp  — titres sections
   ========================================================================== */

/* --- FONTS --- */
@font-face { font-family:'Basted Clubs'; src:url('../fonts/BastedClubs-Regular.woff') format('woff'); font-weight:400; font-display:swap; }
@font-face { font-family:'Basted Clubs'; src:url('../fonts/BastedClubs-SemiBold.woff') format('woff'); font-weight:600; font-display:swap; }
@font-face { font-family:'Basted Clubs'; src:url('../fonts/BastedClubs-Bold.woff') format('woff'); font-weight:700; font-display:swap; }
@font-face { font-family:'Basted Clubs'; src:url('../fonts/BastedClubs-ExtraBold.woff') format('woff'); font-weight:800; font-display:swap; }
@font-face { font-family:'Basted Clubs'; src:url('../fonts/BastedClubs-Black.woff') format('woff'); font-weight:900; font-display:swap; }

/* --- VARIABLES --- */
:root {
    --bg: #0a0a0a;
    --bg-elevated: #111111;
    --bg-card: #161616;
    --text: #ece7e1;
    --text-dim: rgba(236,231,225,0.45);
    --accent: #540c12;
    --accent-light: #731822;
    --gold: #a68a4b;
    --border: rgba(236,231,225,0.08);
    --border-hover: rgba(236,231,225,0.15);

    --ff-display: 'Basted Clubs', Georgia, serif;
    --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Type scale */
    --text-xs: 0.75rem;
    --text-sm: 0.85rem;
    --text-base: 1rem;
    --text-lg: 1.15rem;
    --text-num: 2.5rem;

    --nav-h: 72px;
    --max-w: 1200px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

/* --- RESET --- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
    font-family: var(--ff-body);
    font-size: var(--text-base);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    cursor: none;
}
@media (pointer: coarse) { body { cursor: auto; } }

img { max-width:100%; height:auto; display:block; }
a { color: var(--text); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--accent-light); }
ul { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }

/* ==========================================================================
   LOADER
   ========================================================================== */
.loader {
    position: fixed; inset:0; z-index:9999;
    background: var(--bg);
    display: flex; align-items:center; justify-content:center;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.done { opacity:0; visibility:hidden; pointer-events:none; }
.loader__inner { text-align:center; }
.loader__logo {
    width: 80px; margin: 0 auto 24px;
    animation: loaderPulse 1.2s ease-in-out infinite;
}
.loader__bar {
    width: 120px; height: 2px;
    background: var(--border);
    border-radius: 2px; overflow:hidden;
}
.loader__progress {
    width: 0; height: 100%;
    background: var(--accent);
    animation: loaderFill 1.1s var(--ease) forwards;
}

@keyframes loaderPulse { 0%,100%{opacity:.4} 50%{opacity:1} }
@keyframes loaderFill { to { width:100% } }

/* ==========================================================================
   GRAIN OVERLAY
   ========================================================================== */
.grain {
    position: fixed; inset:0; z-index:9998;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
    mix-blend-mode: screen;
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.cursor {
    position: fixed; z-index:9997;
    width: 40px; height: 40px;
    border: 1px solid rgba(236,231,225,0.25);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%,-50%);
    transition: width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.3s, background 0.3s;
    mix-blend-mode: difference;
}
.cursor--hover {
    width: 64px; height: 64px;
    border-color: #ece7e1;
    background: rgba(236,231,225,0.06);
}
.cursor-dot {
    position: fixed; z-index:9997;
    width: 5px; height: 5px;
    background: #ece7e1;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%,-50%);
    mix-blend-mode: difference;
}
@media (pointer: coarse) {
    .cursor, .cursor-dot { display: none; }
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
    position: fixed; top:0; left:0; width:100%;
    height: var(--nav-h); z-index:100;
    background: rgba(10,10,10,0);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    border-bottom: 1px solid transparent;
    transition: all 0.5s var(--ease);
}
.nav--scrolled {
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom-color: var(--border);
}

.nav__inner {
    max-width: var(--max-w); margin:0 auto;
    padding: 0 clamp(20px,4vw,40px);
    display:flex; align-items:center; justify-content:center;
    height:100%;
}

.nav__logo { display: none; }

.nav__menu {
    display: flex; align-items:center; gap: 36px;
}

.nav__link {
    font-family: var(--ff-display);
    font-weight: 600; font-size: var(--text-sm);
    letter-spacing: 0.14em; text-transform: uppercase;
    color: #ece7e1;
    position: relative;
    overflow: hidden;
    display: inline-block;
    height: 1.3em;
    transition: color 0.4s var(--ease);
}
.nav__link span {
    display: block;
    transition: transform 0.4s var(--ease);
    line-height: 1.3;
}
.nav__link:hover span { transform: translateY(-100%); }
.nav__link span::after {
    content: attr(data-text);
    display: block;
    color: var(--accent);
}
.nav__link--active { color: #ece7e1; }

.nav--scrolled .nav__link { color: #ece7e1; }
.nav--scrolled .nav__link--active { color: var(--accent-light); }

.nav__toggle {
    display:none; background:none; border:none; cursor:pointer;
    padding:10px; flex-direction:column; gap:8px; position:absolute; right: clamp(20px,4vw,40px); z-index:101;
}
.nav__toggle span {
    display:block; width:28px; height:1px;
    background: #ece7e1;
    transition: all 0.4s var(--ease);
    transform-origin: center;
}
.nav--scrolled .nav__toggle span { background: #ece7e1; }
.nav__toggle.active span:first-child { transform: rotate(45deg) translate(3px, 3px); }
.nav__toggle.active span:last-child { transform: rotate(-45deg) translate(3px, -3px); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative; height: 100vh; min-height: 700px;
    display:flex; align-items:center; justify-content:center;
    overflow:hidden;
}

.hero__bg { position:absolute; inset:0; z-index:0; }
.hero__video { width:100%; height:100%; object-fit:cover; }
.hero__overlay {
    position:absolute; inset:0;
    background: linear-gradient(180deg,
        rgba(0,0,0,0.25) 0%,
        rgba(0,0,0,0.1) 35%,
        rgba(10,10,10,0.35) 65%,
        rgba(10,10,10,0.92) 90%,
        #0a0a0a 100%
    );
}

.hero__content {
    position:relative; z-index:1;
    text-align:center; padding:0 24px;
}

.hero__logo-wrap {
    margin-bottom: 40px;
    animation: heroLogoIn 1s var(--ease) 0.5s both;
}
.hero__logo {
    width: 220px; margin:0 auto;
    filter: drop-shadow(0 0 60px rgba(84,12,18,0.25));
}

.hero__tagline {
    display: flex; align-items:center; justify-content:center; gap:16px;
    font-family: var(--ff-display);
    font-weight: 400; font-size: var(--text-sm);
    letter-spacing: 0.35em; text-transform: uppercase;
    color: rgba(236,231,225,0.6);
    margin-bottom: 64px;
}
.hero__dot {
    width: 4px; height: 4px;
    background: var(--accent); border-radius: 50%;
}

.fade-up {
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease) forwards;
    animation-delay: var(--delay, 0s);
}

.hero__cta {
    display: inline-block;
    font-family: var(--ff-display);
    font-weight: 700; font-size: var(--text-sm);
    letter-spacing: 0.18em; text-transform: uppercase;
    color: #ece7e1;
    padding: 16px 48px;
    border: 1px solid rgba(236,231,225,0.3);
    transition: all 0.5s var(--ease);
    margin-bottom: 80px;
}
.hero__cta:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #ece7e1;
    box-shadow: 0 8px 32px rgba(84,12,18,0.4);
}

.hero__scroll {
    position: absolute; bottom: 48px; left:50%; transform:translateX(-50%);
}
.hero__scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollLine 2s var(--ease) infinite;
}

/* ==========================================================================
   SECTIONS COMMON
   ========================================================================== */
.section { padding: clamp(80px, 12vw, 160px) 0; }

.section__header { text-align:center; margin-bottom: 80px; }

.section__title {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.section__title--left { text-align:left; }

/* --- Reveal animation --- */
.reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity:1; transform:translateY(0); }

/* ==========================================================================
   ARTISTES
   ========================================================================== */
.artistes { background: var(--bg); }

.artistes__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.artiste-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.6s var(--ease);
    flex: 0 0 calc(25% - 15px);
    min-width: 0;
}
.artiste-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

.artiste-card__visual {
    position:relative; aspect-ratio: 1/1; overflow:hidden;
}

.artiste-card__img {
    width:100%; height:100%; object-fit:cover;
    transition: transform 0.8s var(--ease);
    filter: grayscale(30%) brightness(0.85);
}
.artiste-card:hover .artiste-card__img {
    transform: scale(1.06);
    filter: grayscale(0%) brightness(1);
}

.artiste-card__overlay {
    position:absolute; inset:0;
    background: linear-gradient(to top, rgba(53,20,24,0.9) 0%, transparent 50%);
    display:flex; align-items:flex-end; justify-content:center;
    padding: 32px;
    opacity:0; transition: opacity 0.5s var(--ease);
}
.artiste-card:hover .artiste-card__overlay { opacity:1; }

.artiste-card__cta {
    font-family: var(--ff-display);
    font-weight: 700; font-size: var(--text-sm);
    letter-spacing: 0.15em; text-transform: uppercase;
    color: #ece7e1; padding: 12px 32px;
    border: 1px solid rgba(236,231,225,0.3);
    transition: all 0.3s var(--ease);
}
.artiste-card__cta:hover {
    background: var(--accent); border-color: var(--accent);
    color: #ece7e1;
}

.artiste-card__info { padding: 24px 28px; }
.artiste-card__name {
    font-family: var(--ff-display);
    font-weight: 700; font-size: var(--text-lg);
    letter-spacing: 0.06em; text-transform: uppercase;
}

/* ==========================================================================
   HORIZONTAL GALLERY
   ========================================================================== */
.hgallery {
    padding: 0; overflow: hidden;
    background: var(--bg-elevated);
}
.hgallery__track {
    display: flex; gap: 4px;
    animation: hScroll 40s linear infinite;
    width: max-content;
}
.hgallery__item {
    flex-shrink: 0; height: 480px; overflow:hidden;
}
.hgallery__item img {
    height:100%; width:auto; object-fit:cover;
    filter: grayscale(40%) brightness(0.7);
    transition: filter 0.5s var(--ease);
}
.hgallery__item:hover img {
    filter: grayscale(0%) brightness(0.95);
}

/* ==========================================================================
   RÉSERVATIONS / STEPS
   ========================================================================== */
.reservations { background: var(--bg-elevated); }

.steps {
    max-width: 700px; margin: 0 auto 64px;
    display: flex; flex-direction: column;
}

.step {
    display: flex; align-items:flex-start; gap: 32px;
    padding: 40px 0; position:relative;
}
.step:not(:last-child) { border-bottom: 1px solid var(--border); }

.step__num {
    font-family: var(--ff-display);
    font-weight: 900; font-size: var(--text-num);
    color: var(--accent); line-height:1;
    flex-shrink:0; width: 80px;
    opacity: 0.4; transition: opacity 0.4s;
}
.step:hover .step__num { opacity:1; }

.step__title {
    font-family: var(--ff-display);
    font-weight: 700; font-size: var(--text-lg);
    letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 8px;
}
.step__text {
    color: var(--text-dim); font-size: var(--text-base); line-height:1.7;
}

.reservations__cta { text-align:center; }
.reservations__note {
    color: var(--text-dim); font-size: var(--text-xs); margin-top:16px;
    letter-spacing: 0.03em;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex; align-items:center; gap:12px;
    font-family: var(--ff-display);
    font-weight: 700; font-size: var(--text-sm);
    letter-spacing: 0.14em; text-transform: uppercase;
    padding: 18px 48px;
    background: var(--accent); color: #ece7e1;
    border: 1px solid var(--accent);
    cursor: pointer;
    transition: all 0.5s var(--ease);
    position:relative; overflow:hidden;
}
.btn::before {
    content:''; position:absolute; inset:0;
    background: var(--accent-light);
    transform: translateX(-101%);
    transition: transform 0.5s var(--ease);
}
.btn:hover::before { transform: translateX(0); }
.btn__text, .btn__arrow { position:relative; z-index:1; }
.btn:hover { color: #ece7e1; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(84,12,18,0.5); }

.btn--outline {
    background: transparent; border-color: rgba(236,231,225,0.2); color: var(--text);
}
.btn--outline::before { background: var(--accent); }
.btn--outline:hover { border-color: var(--accent); color: #ece7e1; }

/* ==========================================================================
   EMPLACEMENT
   ========================================================================== */
.emplacement { background: var(--bg); }

.emplacement__layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.emplacement__left .section__title { margin-bottom: 48px; }

.emplacement__details { display:flex; flex-direction:column; gap:36px; }

.edetail__label {
    display: block;
    font-family: var(--ff-display);
    font-weight: 700; font-size: var(--text-sm);
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}
.edetail__value {
    color: var(--text-dim); line-height:1.8; font-size: var(--text-base);
}
.edetail__value a {
    color: var(--text);
    border-bottom: 1px solid rgba(236,231,225,0.15);
    padding-bottom: 2px;
}
.edetail__value a:hover { color: #ece7e1; border-color: var(--accent); }

.emplacement__img-wrap { overflow:hidden; }
.emplacement__img {
    width:100%; aspect-ratio: 4/5; object-fit:cover;
    filter: grayscale(15%) brightness(0.85);
    transition: all 0.7s var(--ease);
}
.emplacement__img-wrap:hover .emplacement__img {
    transform: scale(1.03); filter: grayscale(0%) brightness(0.95);
}

/* ==========================================================================
   SERVICES CORPORATIF
   ========================================================================== */
.corporatif { background: var(--bg-elevated); }

.services__grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px; margin-bottom: 64px;
}

.svc-card {
    padding: 48px 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease);
    position: relative;
}
.svc-card::before {
    content:''; position:absolute; top:0; left:0;
    width:0; height:2px; background: var(--accent);
    transition: width 0.6s var(--ease);
}
.svc-card:hover::before { width:100%; }
.svc-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.svc-card__num {
    font-family: var(--ff-display);
    font-weight: 900; font-size: var(--text-num);
    color: var(--accent); opacity: 0.25;
    margin-bottom: 20px; display:block; line-height:1;
}

.svc-card__title {
    font-family: var(--ff-display);
    font-weight: 700; font-size: var(--text-lg);
    letter-spacing: 0.05em; text-transform: uppercase;
    margin-bottom: 16px;
}
.svc-card__text {
    color: var(--text-dim); font-size: var(--text-base); line-height:1.7;
}

.corporatif__cta { text-align:center; }

/* ==========================================================================
   SOINS (TIMELINE)
   ========================================================================== */
.soins { background: var(--bg); }

.soins__timeline {
    display: flex; flex-direction: column;
    gap: 2px;
    max-width: 800px; margin: 0 auto;
}

.tl-card {
    padding: 36px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: grid; grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto;
    gap: 8px 24px;
    align-items: center;
    transition: border-color 0.4s var(--ease);
}
.tl-card:hover { border-color: var(--gold); }

.tl-card__badge {
    display: flex; align-items: center; justify-content: center;
    font-family: var(--ff-display);
    font-weight: 800; font-size: var(--text-sm);
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(166,138,75,0.4);
    width: 64px; height: 64px;
    margin: 0;
    flex-shrink: 0;
}

.tl-card__title {
    font-family: var(--ff-display);
    font-weight: 700; font-size: var(--text-lg);
    letter-spacing: 0.04em; text-transform: uppercase;
}

.tl-card__list {
    grid-column: 1 / -1;
    padding-top: 12px;
    display:flex; flex-direction:column; gap:12px;
}
.tl-card__list li {
    color: var(--text-dim); font-size: var(--text-base); line-height:1.6;
    padding-left: 18px; position:relative;
}
.tl-card__list li::before {
    content:''; position:absolute; left:0; top:8px;
    width:5px; height:5px; border-radius:50%;
    background: var(--accent);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #0d0507;
    border-top: 1px solid rgba(84,12,18,0.25);
    padding: 80px 0 40px;
}

.footer__top {
    display: flex; align-items:flex-start; justify-content:space-between;
    gap: 40px; margin-bottom: 64px; flex-wrap: wrap;
}

.footer__logo { width:50px; margin-bottom:12px; }
.footer__tagline {
    font-family: var(--ff-display);
    font-size: var(--text-sm); letter-spacing: 0.2em;
    text-transform: uppercase; color: rgba(236,231,225,0.5);
}

.footer__nav {
    display: flex; gap: 32px; flex-wrap:wrap;
}
.footer__nav a {
    font-family: var(--ff-display);
    font-weight: 600; font-size: var(--text-sm);
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(236,231,225,0.5);
}
.footer__nav a:hover { color: #ece7e1; }

.footer__ig {
    display: inline-flex; align-items:center; gap:10px;
    color: rgba(236,231,225,0.5); transition: color 0.3s;
    font-size: var(--text-sm);
}
.footer__ig:hover { color: #ece7e1; }

.footer__email {
    display: block;
    color: rgba(236,231,225,0.5); font-size: var(--text-sm);
    margin-top: 12px;
    transition: color 0.3s;
}
.footer__email:hover { color: #ece7e1; }

.footer__bottom {
    border-top: 1px solid rgba(236,231,225,0.08);
    padding-top: 32px; text-align:center;
    color: rgba(236,231,225,0.35); font-size: var(--text-xs);
    letter-spacing: 0.03em;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes textReveal {
    to { transform: translateY(0); }
}
@keyframes fadeUp {
    to { opacity:1; transform: translateY(0); }
}
@keyframes heroLogoIn {
    from { opacity:0; transform: scale(0.8) translateY(20px); }
    to { opacity:1; transform: scale(1) translateY(0); }
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; opacity:1; }
    50% { transform: scaleY(1); transform-origin: top; opacity:1; }
    50.01% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity:1; }
}
@keyframes hScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .artiste-card { flex: 0 0 calc(50% - 10px); }
    .services__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --nav-h: 64px; }

    .nav__toggle { display: flex; }
    .nav__menu {
        position: fixed; inset:0; z-index:100;
        background: rgba(10,10,10,0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center; gap: 40px;
        opacity: 0; visibility: hidden;
        transition: all 0.5s var(--ease);
    }
    .nav__menu.open { opacity:1; visibility:visible; }
    .nav__menu.open .nav__link { color: #ece7e1; }
    .nav__menu.open .nav__link--active { color: var(--accent-light); }
    .nav__link { font-size: var(--text-lg); }

    .artiste-card { flex: 0 0 100%; }
    .services__grid { grid-template-columns: 1fr; }

    .tl-card { grid-template-columns: 56px 1fr; gap: 8px 16px; }
    .tl-card__badge { width: 56px; height: 56px; }

    .emplacement__layout {
        grid-template-columns: 1fr; gap: 48px;
    }

    .step { flex-direction: column; gap:16px; }
    .step__num { font-size: 2rem; width:auto; }

    .hgallery__item { height: 300px; }

    .hero__logo { width: 140px; }

    .footer__top { flex-direction:column; align-items:center; text-align:center; }
    .footer__nav { justify-content:center; }
}

@media (max-width: 480px) {
    .hero__tagline { gap:10px; letter-spacing: 0.2em; }
    .hero__logo { width: 120px; }
    .hero__cta { padding: 14px 36px; }
    .btn { padding: 14px 32px; }
}

/* ==========================================================================
   SELECTION & SCROLLBAR
   ========================================================================== */
::selection {
    background: var(--accent);
    color: #ece7e1;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: rgba(84,12,18,0.6); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
