/* ============================================================
   ANGEL TATTOO STUDIO — OBSIDIAN GOLD × CYBER EDITION v4.0
   Aesthetic: Dark Luxury · Gold Neural · Neon Cyber Search
   ============================================================ */

/* ── Local Fonts (3 файла = 62KB) ── */
@font-face {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url('../fonts/Cinzel-Bold.woff2') format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 300 600;
    font-display: swap;
    src: url('../fonts/CormorantGaramond-Regular-cyrillic.woff2') format('woff2');
}
@font-face {
    font-family: 'DM Mono';
    font-style: normal;
    font-weight: 300 400;
    font-display: swap;
    src: url('../fonts/DMMono-Regular.woff2') format('woff2');
}

:root {
    --gold:        #C9A84C;
    --gold-bright: #E8C96A;
    --gold-pale:   #F5E4A8;
    --gold-mid:    #A8833A;
    --gold-dim:    rgba(201,168,76,0.28);
    --gold-mist:   rgba(201,168,76,0.06);
    --gold-glow:   rgba(201,168,76,0.45);

    --void:      #050505;
    --obsidian:  #0A0A0C;
    --surface:   rgba(10,10,12,0.94);
    --surface-2: rgba(14,14,17,0.96);
    --platinum:  #F0F0E8;
    --warm-white:#F8F5EE;
    --muted:     rgba(240,240,232,0.6);
    --faint:     rgba(240,240,232,0.25);

    --font-display: 'Cinzel', 'Georgia', serif;
    --font-body:    'Cormorant Garamond', 'Georgia', serif;
    --font-mono:    'DM Mono', 'Courier New', monospace;

    /* ── Cyber accents ── */
    --cyan:       #00E5FF;
    --cyan-dim:   rgba(0,229,255,0.18);
    --cyan-glow:  rgba(0,229,255,0.35);
    --cyan-mist:  rgba(0,229,255,0.06);
    --magenta:    #FF0080;
    --mag-dim:    rgba(255,0,128,0.15);
    --neon-green: #00FF41;

    --ease-silk:  cubic-bezier(0.23, 1, 0.32, 1);
    --ease-gold:  cubic-bezier(0.25, 0.46, 0.45, 0.94);

    --r-sm: 1px;
    --r-md: 2px;
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
a, a:hover, a:focus, a:active, a:visited { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; }

/* ── BODY ── */
body {
    font-family: var(--font-body);
    background: var(--void);
    color: var(--platinum);
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ── BACKGROUND CANVAS ── */
#neural-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.ambient-top {
    position: fixed;
    top: -20%; left: 50%;
    transform: translateX(-50%);
    width: 1200px; height: 700px;
    background: radial-gradient(ellipse at center,
        rgba(201,168,76,0.04) 0%,
        rgba(201,168,76,0.015) 40%,
        transparent 70%);
    pointer-events: none;
    z-index: 1;
}
.ambient-bottom {
    position: fixed;
    bottom: -15%; right: -10%;
    width: 800px; height: 600px;
    background: radial-gradient(ellipse at center,
        rgba(120,20,10,0.03) 0%,
        transparent 65%);
    pointer-events: none;
    z-index: 1;
}
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px;
}

/* ── TICKER ── */
.ticker {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background: var(--gold);
    overflow: hidden;
    height: 28px;
    display: flex;
    align-items: center;
}
.ticker-track {
    display: flex;
    gap: 0;
    animation: ticker-scroll 35s linear infinite;
    white-space: nowrap;
    will-change: transform;
}
.ticker-item {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--void);
    padding: 0 36px;
    font-weight: 400;
    text-transform: uppercase;
}
.ticker-sep {
    color: rgba(5,5,5,0.35);
    padding: 0;
    font-size: 6px;
    letter-spacing: 0;
    align-self: center;
}
@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── HEADER ── */
.site-header {
    position: fixed;
    top: 28px; left: 0; right: 0;
    z-index: 100;
    background: rgba(5,5,5,0.82);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border-bottom: 1px solid rgba(201,168,76,0.07);
    transition: background 0.4s ease;
}
.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-logo {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 8px;
    color: var(--gold);
    text-transform: uppercase;
}
.header-nav {
    display: flex;
    gap: 36px;
    align-items: center;
}
.header-link {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2.5px;
    color: rgba(201,168,76,0.38);
    text-transform: uppercase;
    transition: color 0.25s ease;
    position: relative;
    padding-bottom: 3px;
}
.header-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-gold);
}
.header-link:hover { color: var(--gold); }
.header-link:hover::after { width: 100%; }
.header-accent {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    color: rgba(201,168,76,0.4);
}
.pulse-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold-glow);
    animation: pulse-anim 2.8s ease-in-out infinite;
}
@keyframes pulse-anim {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:0.3; transform:scale(0.65); }
}

/* ── SITE WRAPPER ── */
.site-wrapper {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 28px;
}

/* ════════════════════════════════
   HERO
   ════════════════════════════════ */
.hero {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 48px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-scan {
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201,168,76,0) 10%,
        rgba(201,168,76,0.25) 50%,
        rgba(201,168,76,0) 90%,
        transparent 100%);
    animation: scan-line 12s ease-in-out infinite;
    pointer-events: none;
}
@keyframes scan-line {
    0%   { top: 0; opacity:0; }
    5%   { opacity:0.8; }
    95%  { opacity:0.2; }
    100% { top: 100%; opacity:0; }
}
.hero-content { max-width: 1100px; width: 100%; }

/* Overline */
.hero-overline {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-family: var(--font-mono);
    font-size: 8.5px;
    letter-spacing: 5px;
    color: rgba(201,168,76,0.72);
    border: 1px solid rgba(201,168,76,0.12);
    padding: 10px 28px;
    margin-bottom: 64px;
    text-transform: uppercase;
    position: relative;
}
.hero-overline::before,
.hero-overline::after {
    content: '◆';
    font-size: 6px;
    color: rgba(201,168,76,0.5);
}

/* Main title */
.hero-title {
    margin-bottom: 0;
    line-height: 0.9;
}
.title-word {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(7rem, 20vw, 18rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.85;
    color: var(--gold-pale);
    background: linear-gradient(165deg,
        var(--gold-pale) 0%,
        var(--gold-bright) 18%,
        var(--gold) 42%,
        var(--gold-mid) 68%,
        #6B4010 88%,
        #3A1F05 100%);
    animation: title-breathe 9s ease-in-out infinite;
    position: relative;
}
.title-word::before,
.title-word::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.title-word::before {
    color: rgba(0,229,255,0.18);
    transform: translate(0.018em, 0.01em);
    mix-blend-mode: screen;
    opacity: 0.65;
}
.title-word::after {
    color: rgba(245,228,168,0.14);
    transform: translate(-0.02em, -0.012em);
    opacity: 0.75;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .title-word {
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }
}
@keyframes title-breathe {
    0%,100% { filter: drop-shadow(0 0 40px rgba(201,168,76,0.18)) drop-shadow(0 4px 80px rgba(201,168,76,0.08)); }
    50%      { filter: drop-shadow(0 0 80px rgba(201,168,76,0.35)) drop-shadow(0 8px 120px rgba(201,168,76,0.16)); }
}

/* Ornament rule */
.title-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 28px 0 40px;
}
.orn-bar {
    flex: 1; max-width: 280px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.28));
}
.orn-bar:last-child {
    background: linear-gradient(90deg, rgba(201,168,76,0.28), transparent);
}
.orn-text {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 8px;
    color: rgba(201,168,76,0.38);
    white-space: nowrap;
    flex: none;
}

.hero-sub {
    font-family: var(--font-body);
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1px;
    color: rgba(240,240,232,0.55);
    margin-bottom: 0;
}

/* ════════════════════════════════
   SEARCH — CYBER ZONE
   ════════════════════════════════ */
.search-section {
    width: 100%;
    max-width: 1000px;
    padding: 0 48px 100px;
    position: relative;
}

/* Cyber grid за поиском */
.search-section::before {
    content: '';
    position: absolute;
    inset: -40px -60px;
    background-image:
        linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 50%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 50%, transparent 100%);
}

.search-section > * { position: relative; z-index: 1; }

.section-label {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 28px;
}
.label-bar {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,229,255,0.3));
}
.label-bar:last-child {
    background: linear-gradient(90deg, rgba(0,229,255,0.3), transparent);
}
.label-text {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 6px;
    color: var(--cyan);
    text-transform: uppercase;
    flex-shrink: 0;
    text-shadow: 0 0 12px var(--cyan-glow);
    animation: label-flicker 6s ease-in-out infinite;
}
@keyframes label-flicker {
    0%,95%,100% { opacity: 1; }
    96%          { opacity: 0.4; }
    97%          { opacity: 1; }
    98%          { opacity: 0.6; }
}

/* Обёртка поиска с кибер-рамкой */
.search-wrapper {
    position: relative;
}
.search-wrapper::before,
.search-wrapper::after {
    content: '';
    position: absolute;
    width: 18px; height: 18px;
    border-color: var(--cyan);
    border-style: solid;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}
.search-wrapper::before {
    top: -6px; left: -6px;
    border-width: 2px 0 0 2px;
}
.search-wrapper::after {
    bottom: -6px; right: -6px;
    border-width: 0 2px 2px 0;
}
.search-wrapper:focus-within::before,
.search-wrapper:focus-within::after {
    opacity: 1;
    box-shadow: 0 0 8px var(--cyan-glow);
}

.site-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(0,229,255,0.14);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(7,11,16,0.94), rgba(5,8,12,0.9));
    box-shadow: 0 20px 40px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.03);
}
.site-search-input {
    width: 100%;
    min-width: 0;
    border: 1px solid rgba(0,229,255,0.14);
    border-radius: 16px;
    background: rgba(1,6,10,0.72);
    color: var(--warm-white);
    font-family: var(--font-body);
    font-size: 24px;
    line-height: 1.2;
    padding: 18px 20px;
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.01);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.site-search-input::placeholder { color: rgba(240,240,232,0.34); }
.site-search-input:focus {
    border-color: rgba(0,229,255,0.42);
    background: rgba(1,8,14,0.8);
    box-shadow: 0 0 0 3px rgba(0,229,255,0.08);
}
.site-search-button {
    min-width: 132px;
    padding: 18px 22px;
    border: 1px solid rgba(0,229,255,0.28);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0,229,255,0.16), rgba(0,229,255,0.05));
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-search-button:hover,
.site-search-button:focus-visible {
    border-color: rgba(0,229,255,0.5);
    box-shadow: 0 0 18px rgba(0,229,255,0.14);
    transform: translateY(-1px);
}
.site-search-note {
    margin: 14px 6px 0;
    color: rgba(240,240,232,0.46);
    font-family: var(--font-body);
    font-size: 16px;
    font-style: italic;
    line-height: 1.4;
}
.search-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;
}

/* ════════════════════════════════
   STATS STRIP
   ════════════════════════════════ */
.stats-strip {
    width: 100%;
    border-top: 1px solid rgba(201,168,76,0.08);
    border-bottom: 1px solid rgba(201,168,76,0.08);
    background: rgba(14,14,17,0.6);
    backdrop-filter: blur(20px);
    margin-bottom: 0;
}
.stats-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}
.stat-item {
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid rgba(201,168,76,0.06);
    position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 3px;
    color: rgba(201,168,76,0.32);
    text-transform: uppercase;
}

/* ════════════════════════════════
   CATEGORIES
   ════════════════════════════════ */
.categories-section {
    width: 100%;
    max-width: 1400px;
    padding: 90px 48px 90px;
}
.section-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 36px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(201,168,76,0.07);
}
.section-num {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(201,168,76,0.52);
}
.section-title {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 5px;
    color: rgba(201,168,76,0.72);
    text-transform: uppercase;
}
.categories {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.06);
}
.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 44px 14px;
    background: var(--void);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    gap: 14px;
    transition: background 0.4s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.cat-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(201,168,76,0.06) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.cat-card:hover::before { opacity: 1; }
.cat-card:hover { background: rgba(201,168,76,0.025); }
.cat-line {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width 0.45s var(--ease-silk);
}
.cat-card:hover .cat-line { width: 100%; }
.cat-icon {
    font-size: 22px;
    line-height: 1;
    color: rgba(201,168,76,0.5);
    transition: color 0.3s ease, transform 0.35s var(--ease-silk);
}
.cat-card:hover .cat-icon {
    color: var(--gold);
    transform: scale(1.15) translateY(-3px);
}
.cat-name {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    color: rgba(240,240,232,0.65);
    text-align: center;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.cat-card:hover .cat-name { color: rgba(201,168,76,0.9); }

/* ════════════════════════════════
   MASTERS
   ════════════════════════════════ */
.masters-section {
    width: 100%;
    max-width: 1400px;
    padding: 0 48px 100px;
}
.masters-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.06);
    margin-top: 1px;
}
.master-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 16px 36px;
    background: var(--obsidian);
    position: relative;
    overflow: hidden;
    gap: 16px;
    transition: background 0.35s ease;
    cursor: default;
}
.master-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0), transparent);
    transition: background 0.35s ease;
}
.master-card:hover::after {
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}
.master-card:hover { background: rgba(201,168,76,0.025); }
.master-monogram {
    width: 52px; height: 52px;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: rgba(201,168,76,0.72);
    transition: border-color 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}
.master-card:hover .master-monogram {
    border-color: rgba(201,168,76,0.5);
    color: var(--gold);
    box-shadow: 0 0 20px rgba(201,168,76,0.1);
}
.master-name {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: rgba(240,240,232,0.82);
    text-align: center;
    line-height: 1.4;
    transition: color 0.3s ease;
}
.master-card:hover .master-name { color: rgba(240,240,232,0.95); }
.master-role {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    color: rgba(201,168,76,0.6);
    text-transform: uppercase;
    text-align: center;
    transition: color 0.3s ease;
}
.master-card:hover .master-role { color: rgba(201,168,76,0.85); }

/* ════════════════════════════════
   SERVICES
   ════════════════════════════════ */
.services-section {
    width: 100%;
    max-width: 1400px;
    padding: 0 48px 110px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.06);
    margin-top: 1px;
}
.service-card {
    padding: 44px 36px;
    background: var(--obsidian);
    position: relative;
    overflow: hidden;
    transition: background 0.35s ease;
}
.service-card:hover { background: rgba(201,168,76,0.02); }
.service-num {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 2px;
    color: rgba(201,168,76,0.45);
    display: block;
    margin-bottom: 20px;
}
.service-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(240,240,232,0.88);
    margin-bottom: 16px;
    display: block;
}
.service-desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    color: rgba(240,240,232,0.62);
    line-height: 1.8;
}
.service-line {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(201,168,76,0), transparent);
    transition: background 0.4s ease;
}
.service-card:hover .service-line {
    background: linear-gradient(180deg, transparent, rgba(201,168,76,0.35), transparent);
}

/* ════════════════════════════════
   CHEYENNE BADGE
   ════════════════════════════════ */
.partner-strip {
    width: 100%;
    border-top: 1px solid rgba(201,168,76,0.07);
    border-bottom: 1px solid rgba(201,168,76,0.07);
    background: rgba(10,10,12,0.7);
    padding: 28px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 0;
}
.partner-label {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 4px;
    color: rgba(201,168,76,0.5);
    text-transform: uppercase;
}
.partner-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 6px;
    color: rgba(201,168,76,0.55);
    text-transform: uppercase;
}
.partner-sep {
    width: 1px; height: 28px;
    background: rgba(201,168,76,0.12);
}
.partner-info {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 2px;
    color: rgba(201,168,76,0.22);
    text-transform: uppercase;
}

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
.footer {
    width: 100%;
    margin-top: auto;
    border-top: 1px solid rgba(201,168,76,0.07);
    background: rgba(5,5,5,0.85);
    backdrop-filter: blur(24px);
    position: relative;
}
.footer-shine {
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201,168,76,0) 15%,
        rgba(201,168,76,0.65) 35%,
        var(--gold-bright) 50%,
        rgba(201,168,76,0.65) 65%,
        rgba(201,168,76,0) 85%,
        transparent 100%);
}
.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 72px 48px 52px;
    display: grid;
    grid-template-columns: 2.2fr 1.3fr 1fr 1fr 1fr;
    gap: 56px;
}
.footer-brand {}
.footer-logo {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, var(--gold-pale), var(--gold), var(--gold-mid));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    display: block;
}
.footer-tagline {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    color: rgba(240,240,232,0.55);
    line-height: 1.9;
    margin-bottom: 32px;
    max-width: 260px;
}
.footer-year {
    font-family: var(--font-mono);
    font-size: 8.5px;
    letter-spacing: 2.5px;
    color: rgba(201,168,76,0.45);
    display: block;
}
.footer-col-title {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 3.5px;
    color: rgba(201,168,76,0.4);
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(201,168,76,0.07);
    display: block;
}
.footer-item {
    margin-bottom: 20px;
}
.footer-item-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 7.5px;
    letter-spacing: 2px;
    color: rgba(201,168,76,0.52);
    margin-bottom: 4px;
    text-transform: uppercase;
}
.footer-item-value {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: rgba(240,240,232,0.68);
    letter-spacing: 0.3px;
}
.footer-link-item {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(240,240,232,0.58);
    margin-bottom: 14px;
    transition: color 0.22s ease;
}
.footer-link-item:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(201,168,76,0.05);
    padding: 20px 48px 28px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copy {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 2px;
    color: rgba(232,232,224,0.1);
    text-transform: uppercase;
}
.footer-privacy {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 2px;
    color: rgba(201,168,76,0.16);
    text-transform: uppercase;
}

/* ════════════════════════════════
   INTERACTIVITY
   ════════════════════════════════ */

/* Custom cursor */
#custom-cursor { position: fixed; top:0; left:0; pointer-events:none; z-index:9999; }
.cur-dot {
    position: fixed; top:-4px; left:-4px;
    width:8px; height:8px;
    background: var(--gold);
    border-radius: 50%;
    will-change: transform;
}
.cur-ring {
    position: fixed; top:-18px; left:-18px;
    width:36px; height:36px;
    border: 1px solid rgba(201,168,76,0.5);
    border-radius: 50%;
    will-change: transform;
    transition: width 0.2s ease, height 0.2s ease, top 0.2s ease, left 0.2s ease, border-color 0.2s ease;
}
#custom-cursor.hover .cur-ring {
    width:56px; height:56px;
    top:-28px; left:-28px;
    border-color: rgba(201,168,76,0.8);
}
@media (hover: none) { #custom-cursor { display:none; } }

/* Ripple on cat-card */
.cat-card { position: relative; overflow: hidden; }
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(201,168,76,0.12);
    transform: scale(0);
    animation: ripple-out 0.55s ease-out forwards;
    pointer-events: none;
}
@keyframes ripple-out {
    to { transform: scale(1); opacity: 0; }
}

/* Master card touch highlight */
.master-card.touched .master-monogram {
    border-color: rgba(201,168,76,0.6);
    color: var(--gold);
    box-shadow: 0 0 20px rgba(201,168,76,0.15);
}
.master-card.touched .master-name { color: rgba(240,240,232,0.95); }

/* Mobile categories */
@media (max-width: 600px) {
    .categories {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
        background: rgba(201,168,76,0.06);
        border: 1px solid rgba(201,168,76,0.06);
        gap: 1px;
    }
    .cat-card {
        min-width: 0;
        border: none;
    }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.2); border-radius: 1px; }
::-webkit-scrollbar-thumb:hover { background: rgba(201,168,76,0.4); }

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */
@media (max-width: 1200px) {
    .footer-inner { grid-template-columns: 1fr 1fr 1fr; gap: 36px; }
    .footer-brand { grid-column: 1 / -1; }
    .masters-grid { grid-template-columns: repeat(4, 1fr); }
    .stats-inner { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .header-inner { padding: 14px 24px; }
    .header-nav { gap: 20px; }
    .hero { padding: 120px 24px 60px; }
    .search-section { padding: 0 24px 70px; }
    .categories-section, .masters-section, .services-section { padding-left: 24px; padding-right: 24px; }
    .categories { grid-template-columns: repeat(3, 1fr); }
    .masters-grid { grid-template-columns: repeat(3, 1fr); }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .stats-inner { grid-template-columns: repeat(3, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; padding: 48px 24px 36px; gap: 28px; }
    .footer-bottom { padding: 16px 24px 24px; }
}
@media (max-width: 600px) {
    body { color: rgba(248,245,238,0.92); }
    .ticker {
        height: 32px;
        box-shadow: 0 1px 0 rgba(245,228,168,0.18);
    }
    .ticker-track { animation-duration: 46s; }
    .ticker-item {
        font-size: 10px;
        letter-spacing: 1.3px;
        padding: 0 18px;
        font-weight: 500;
        color: #130d02;
    }
    .ticker-sep {
        color: rgba(19,13,2,0.58);
        font-size: 8px;
    }
    .site-header { top: 32px; }
    .site-wrapper { padding-top: 32px; }
    .hero {
        min-height: auto;
        padding: 118px 20px 56px;
    }
    .hero-overline {
        gap: 10px;
        margin-bottom: 36px;
        padding: 10px 16px;
        font-size: 8px;
        letter-spacing: 2.2px;
        color: rgba(245,228,168,0.88);
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-title {
        line-height: 0.96;
        overflow-wrap: anywhere;
    }
    .title-word {
        font-size: clamp(4rem, 24vw, 6.4rem);
        line-height: 0.92;
        letter-spacing: 0.01em;
        background: none;
        -webkit-background-clip: border-box;
        background-clip: border-box;
        -webkit-text-fill-color: currentColor;
        color: #f1d27a;
        text-shadow:
            0 0 10px rgba(232,201,106,0.32),
            0 0 22px rgba(232,201,106,0.16),
            0 0 34px rgba(0,229,255,0.08);
        filter: drop-shadow(0 0 8px rgba(0,229,255,0.08));
    }
    .title-word::before {
        color: rgba(0,229,255,0.28);
        transform: translate(0.028em, 0.012em);
        opacity: 0.85;
    }
    .title-word::after {
        color: rgba(255,255,255,0.11);
        transform: translate(-0.024em, -0.01em);
        opacity: 0.9;
    }
    .hero-title::after {
        content: '';
        display: block;
        width: min(68vw, 290px);
        height: 1px;
        margin: 10px auto 0;
        background: linear-gradient(90deg,
            transparent 0%,
            rgba(0,229,255,0.3) 18%,
            rgba(245,228,168,0.8) 50%,
            rgba(0,229,255,0.3) 82%,
            transparent 100%);
        box-shadow: 0 0 12px rgba(0,229,255,0.16);
    }
    .title-ornament {
        gap: 14px;
        margin: 22px 0 28px;
    }
    .orn-text {
        font-size: 8px;
        letter-spacing: 4px;
        color: rgba(245,228,168,0.62);
    }
    .hero-sub {
        font-size: 18px;
        letter-spacing: 0.4px;
        color: rgba(248,245,238,0.78);
        max-width: 26rem;
        margin: 0 auto;
    }
    .label-text,
    .section-title {
        color: rgba(230,248,255,0.9);
        text-shadow: 0 0 14px rgba(0,229,255,0.18);
    }
    .section-num,
    .partner-label,
    .partner-name,
    .partner-info,
    .footer-year,
    .footer-col-title,
    .footer-item-label,
    .footer-privacy {
        color: rgba(245,228,168,0.72);
    }
    .site-search-note,
    .cat-name,
    .service-desc,
    .footer-tagline,
    .footer-item-value,
    .footer-link-item,
    .footer-copy {
        color: rgba(248,245,238,0.82);
    }
    .master-name,
    .service-name {
        color: rgba(248,245,238,0.92);
    }
    .master-role,
    .service-num,
    .stat-label {
        color: rgba(245,228,168,0.76);
    }
    .header-link,
    .header-accent {
        color: rgba(245,228,168,0.78);
    }
    .stat-item,
    .service-card,
    .master-card,
    .cat-card,
    .footer,
    .partner-strip {
        -webkit-font-smoothing: antialiased;
    }
    .site-search-form { grid-template-columns: 1fr; padding: 12px; border-radius: 18px; }
    .site-search-input { font-size: 18px; padding: 16px 18px; border-radius: 14px; }
    .site-search-button { width: 100%; min-width: 0; padding: 16px 18px; border-radius: 14px; }
    .site-search-note { font-size: 14px; margin-top: 12px; }
    .categories { grid-template-columns: repeat(2, 1fr); }
    .cat-card { padding: 32px 10px; }
    .masters-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: 1fr 1fr; }
    .stat-item:last-child { grid-column: 1 / -1; }
    .footer-inner { grid-template-columns: 1fr; }
    .partner-strip { flex-wrap: wrap; gap: 20px; text-align: center; }
    .partner-sep { display: none; }
}
@media (max-width: 400px) {
    .header-inner {
        padding: 12px 14px;
        gap: 10px;
    }
    .header-logo {
        font-size: 12px;
        letter-spacing: 4px;
    }
    .header-nav { gap: 12px; }
    .header-link {
        font-size: 8px;
        letter-spacing: 1.3px;
        color: rgba(245,228,168,0.82);
    }
    .header-accent {
        font-size: 8px;
        letter-spacing: 1px;
        gap: 6px;
        color: rgba(245,228,168,0.8);
    }
    .ticker-item {
        font-size: 9px;
        letter-spacing: 1px;
        padding: 0 16px;
    }
    .hero { padding-left: 16px; padding-right: 16px; }
    .hero-overline {
        padding: 9px 12px;
        margin-bottom: 28px;
        letter-spacing: 1.6px;
    }
    .title-word {
        font-size: clamp(3.5rem, 22vw, 5rem);
        background: none;
        -webkit-background-clip: border-box;
        background-clip: border-box;
        -webkit-text-fill-color: currentColor;
        color: #f1d27a;
    }
    .title-word::before { transform: translate(0.02em, 0.01em); }
    .title-word::after { transform: translate(-0.018em, -0.008em); }
    .orn-text { letter-spacing: 3px; }
    .hero-sub { font-size: 17px; }
    .site-search-note,
    .cat-name,
    .service-desc,
    .footer-tagline,
    .footer-item-value,
    .footer-link-item,
    .footer-copy {
        color: rgba(248,245,238,0.86);
    }
    .categories { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cat-name { font-size: 7px; letter-spacing: 1.5px; }
    .cat-icon { font-size: 18px; }
}
