/* ============================================
   BLACK HUSKY SPB · stylesheet
   ============================================ */

:root {
    --bg: #060608;
    --bg-2: #0c0c10;
    --surface: #131318;
    --surface-2: #1a1a22;
    --border: rgba(255, 255, 255, 0.08);
    --text: #f0f0f5;
    --text-muted: #8a8a96;
    --text-faint: #50505a;
    --accent: #6db8ff;
    --accent-2: #b9e3ff;
    --accent-glow: rgba(109, 184, 255, 0.35);
    --warm: #d4a373;
    --danger: #ff6b6b;

    --font-display: 'Unbounded', sans-serif;
    --font-mono: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;

    --max-w: 1320px;
    --pad: clamp(1.25rem, 4vw, 3rem);

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: none;
    background: none;
    border: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

::selection {
    background: var(--accent);
    color: var(--bg);
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor,
.cursor-follower {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    mix-blend-mode: difference;
    transition: opacity 0.2s;
}

.cursor {
    width: 6px;
    height: 6px;
    background: #fff;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: transform 0.18s var(--ease), width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-follower.hover {
    width: 56px;
    height: 56px;
    border-color: var(--accent-2);
    background: rgba(109, 184, 255, 0.08);
}

@media (max-width: 900px) {
    body { cursor: auto; }
    button, a { cursor: pointer; }
    .cursor, .cursor-follower { display: none; }
}

/* ============================================
   GLOBAL DECORATIVE LAYERS
   ============================================ */
.noise {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.grid-overlay {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 70%);
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad);
    position: relative;
    z-index: 2;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 0;
    background: rgba(6, 6, 8, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: padding 0.3s var(--ease), border-color 0.3s, background 0.3s;
}

.nav.scrolled {
    padding: 1rem 0;
    border-color: var(--border);
    background: rgba(6, 6, 8, 0.85);
}

.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.logo-mark {
    color: var(--accent);
    font-size: 1.4rem;
    line-height: 1;
    transform: rotate(0deg);
    transition: transform 0.6s var(--ease);
}

.logo:hover .logo-mark {
    transform: rotate(360deg);
}

.logo-accent {
    color: var(--accent);
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    overflow: hidden;
    display: inline-block;
    transition: color 0.3s;
}

.nav-links a::before {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    color: var(--text);
    transition: transform 0.4s var(--ease);
}

.nav-links a:hover {
    color: transparent;
}

.nav-links a:hover::before {
    transform: translateY(-100%);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-burger span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--text);
    transition: transform 0.3s;
}

.nav-burger.open span:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
}

@media (max-width: 800px) {
    .nav-burger { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--bg-2);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 4rem 2rem;
        gap: 1.5rem;
        border-left: 1px solid var(--border);
        transform: translateX(100%);
        transition: transform 0.5s var(--ease);
    }
    .nav-links.open {
        transform: translateX(0);
    }
    .nav-links a {
        font-size: 1.5rem;
        font-family: var(--font-display);
    }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem var(--pad) 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 60% 60% at 70% 40%, rgba(109, 184, 255, 0.18), transparent 60%),
        radial-gradient(ellipse 50% 50% at 20% 70%, rgba(109, 184, 255, 0.10), transparent 60%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 70vmin;
    height: 70vmin;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(109, 184, 255, 0.25) 0%, transparent 60%);
    transform: translateY(-50%);
    filter: blur(40px);
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, -50%) scale(1); }
    50% { transform: translate(-5%, -45%) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s var(--ease) 0.2s forwards;
}

.hero-tag .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 14vw, 14rem);
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line span {
    display: inline-block;
    background: linear-gradient(180deg, #fff 0%, #aaa 70%, #555 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    transform: translateY(110%);
    animation: rise 1.2s var(--ease) forwards;
}

.title-line:nth-child(2) span {
    background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent) 60%, #2a4a7a 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation-delay: 0.15s;
}

@keyframes rise {
    to { transform: translateY(0); }
}

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

.hero-sub {
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 1s var(--ease) 0.6s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s var(--ease) 0.8s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 100px;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--accent);
    color: var(--bg);
    box-shadow: 0 0 0 0 var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-2);
    box-shadow: 0 0 30px 0 var(--accent-glow);
    transform: translateY(-2px);
}

.btn-ghost {
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    color: var(--text);
    border: 1px solid var(--accent);
    padding: 0.85rem 1.6rem;
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--bg);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: clamp(2rem, 6vw, 5rem);
    margin-top: clamp(3rem, 8vw, 5rem);
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    opacity: 0;
    animation: fadeUp 1s var(--ease) 1s forwards;
}

.stat {
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1;
    color: var(--text);
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.3;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    right: var(--pad);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    z-index: 3;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: var(--accent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(400%); }
}

@media (max-width: 700px) {
    .hero-scroll { display: none; }
    .hero-stats { gap: 1.5rem; }
}

/* ============================================
   SECTION HEAD (shared)
   ============================================ */
section {
    padding: clamp(5rem, 12vw, 9rem) 0;
    position: relative;
    z-index: 2;
}

.section-head {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-num {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.about-lead {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-size: 1.02rem;
}

.about-features {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.about-features span {
    color: var(--accent);
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(109, 184, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.about-visual {
    position: relative;
    height: clamp(420px, 60vw, 600px);
}

.visual-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, var(--accent-glow), transparent 60%);
    filter: blur(60px);
    z-index: 0;
}

.visual-card {
    position: absolute;
    background: var(--surface);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    transition: transform 0.6s var(--ease);
}

.card-1 {
    width: 65%;
    height: 75%;
    top: 0;
    left: 0;
    transform: rotate(-3deg);
    z-index: 2;
}

.card-2 {
    width: 60%;
    height: 60%;
    bottom: 0;
    right: 0;
    transform: rotate(4deg);
    z-index: 1;
}

.about-visual:hover .card-1 {
    transform: rotate(-5deg) translate(-10px, -10px);
}

.about-visual:hover .card-2 {
    transform: rotate(6deg) translate(10px, 10px);
}

.card-img {
    width: 100%;
    height: calc(100% - 60px);
    background-size: cover;
    background-position: center;
}

.card-info {
    padding: 0.8rem 1.2rem;
    display: flex;
    flex-direction: column;
    background: var(--surface-2);
    border-top: 1px solid var(--border);
}

.card-info span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.card-info small {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
}

@media (max-width: 800px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { height: 480px; }
}

/* ============================================
   DOGS
   ============================================ */
.dogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.dog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s var(--ease);
    position: relative;
    cursor: none;
}

.dog-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px solid var(--accent);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.dog-card:hover {
    transform: translateY(-6px);
    background: var(--surface-2);
}

.dog-card:hover::after {
    opacity: 0.6;
}

.dog-img,
.puppy-img,
.card-img,
.gallery-item {
    background-color: var(--surface-2);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), filter 0.8s var(--ease);
    filter: saturate(0.9) contrast(1.05);
}

.dog-img.img-loaded,
.puppy-img.img-loaded,
.card-img.img-loaded,
.gallery-item.img-loaded {
    filter: saturate(1) contrast(1.05);
}

.dog-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--ease);
}

.dog-card:hover .dog-img {
    transform: scale(1.05);
}

.dog-meta {
    padding: 1.5rem;
}

.dog-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.6rem;
}

.dog-name h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.dog-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
    background: rgba(109, 184, 255, 0.12);
    color: var(--accent);
    border: 1px solid rgba(109, 184, 255, 0.2);
}

.dog-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border);
}

.dog-titles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.dog-titles span {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text);
}

/* ============================================
   PUPPIES
   ============================================ */
.litter-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.litter-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-glow), transparent 60%);
    filter: blur(40px);
    pointer-events: none;
}

.litter-info {
    position: relative;
}

.litter-tag {
    display: inline-block;
    font-size: 0.78rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.litter-info h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}

.litter-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.puppies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.2rem;
}

.puppy-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s var(--ease);
}

.puppy-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.puppy-status {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    z-index: 2;
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.puppy-card.available .puppy-status {
    background: rgba(109, 184, 255, 0.85);
    color: var(--bg);
}

.puppy-card.reserved .puppy-status {
    background: rgba(212, 163, 115, 0.85);
    color: var(--bg);
}

.puppy-card.sold .puppy-status {
    background: rgba(80, 80, 90, 0.85);
    color: var(--text);
}

.puppy-card.sold {
    opacity: 0.55;
}

.puppy-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
}

.puppy-info {
    padding: 1rem 1.2rem;
    position: relative;
}

.puppy-info h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    display: inline-block;
}

.puppy-info .sex {
    margin-left: 0.4rem;
    font-size: 1rem;
}

.sex.male { color: var(--accent); }
.sex.female { color: var(--warm); }

.puppy-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 0.8rem;
}

.gallery-item {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s var(--ease);
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

@media (max-width: 800px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
}

.contact-headline {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.accent {
    background: linear-gradient(120deg, var(--accent-2) 0%, var(--accent) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    max-width: 480px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--border);
    transition: padding-left 0.3s var(--ease);
    position: relative;
}

.contact-item:not(.static):hover {
    padding-left: 1rem;
}

.contact-item:not(.static)::before {
    content: '→';
    position: absolute;
    left: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    opacity: 0;
    transition: all 0.3s var(--ease);
}

.contact-item:not(.static):hover::before {
    opacity: 1;
    left: 0;
}

.contact-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-faint);
}

.contact-value {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.01em;
}

/* form */
.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.form-group {
    position: relative;
    margin-bottom: 1.8rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 1.4rem 0 0.6rem;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    resize: none;
    cursor: none;
}

.form-group label {
    position: absolute;
    top: 1.4rem;
    left: 0;
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s var(--ease);
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: 0;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background: var(--accent);
    transition: width 0.4s var(--ease);
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
    width: 100%;
}

.form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.form-status {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    min-height: 1.2rem;
    color: var(--accent);
}

@media (max-width: 800px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
    background: var(--bg-2);
    position: relative;
    z-index: 2;
}

.footer-top {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-bottom: 3rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.footer-marquee {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}

.marquee-track {
    display: inline-flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--text-faint);
    letter-spacing: 0.1em;
}

.marquee-track span {
    margin-right: 1.5rem;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.82rem;
    color: var(--text-faint);
}

@media (max-width: 700px) {
    .footer-top { flex-direction: column; align-items: flex-start; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
