:root {
    --bg-dark: #050608;
    --bg-alt: #101218;
    --gold: #d4af37;
    --gold-soft: #f1e0a0;
    --text: #f7f7f7;
    --text-muted: #b0b3c1;
    --accent: #ffb347;
    --card-radius: 18px;
    --shadow-soft: 0 18px 40px rgba(0,0,0,0.45);
}

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", Arial, sans-serif;
    background: radial-gradient(circle at top left, #202437 0, #050608 55%, #000000 100%);
    color: var(--text);
    line-height: 1.6;
    scroll-behavior: smooth;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrapper { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem 4rem; }

header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: linear-gradient(to right, rgba(5,6,8,0.97), rgba(5,6,8,0.9));
    border-bottom: 1px solid rgba(212,175,55,0.25);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.5rem;
    max-width: 1120px;
    margin: 0 auto;
}

.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-img { height: 54px; width: auto; filter: drop-shadow(0 6px 12px rgba(0,0,0,0.6)); }

.logo-text-main {
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.logo-text-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.4rem;
    font-size: 0.87rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

nav li a {
    color: var(--text-muted);
    position: relative;
    padding-bottom: 0.2rem;
}

nav li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--accent));
    transition: width 0.25s ease-out;
}

nav li a:hover { color: var(--text); }
nav li a:hover::after { width: 100%; }

.nav-cta {
    border-radius: 999px;
    border: 1px solid rgba(212,175,55,0.5);
    padding: 0.4rem 1.1rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: radial-gradient(circle at top left, rgba(250,234,184,0.12), rgba(5,6,8,0.9));
    cursor: pointer;
    transition: background 0.25s ease, transform 0.15s ease;
    color: var(--text);
}
.nav-cta:hover {
    background: radial-gradient(circle at top left, rgba(250,234,184,0.22), rgba(5,6,8,1));
    transform: translateY(-1px);
}

/* HERO */
.hero {
    padding: 3.5rem 0 2.8rem;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 2.8rem;
    align-items: center;
}
.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.7rem;
    color: var(--gold-soft);
    margin-bottom: 0.7rem;
}
.hero h1 {
    font-size: clamp(2.2rem, 3vw + 1.2rem, 3.1rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}
.hero h1 span {
    background: linear-gradient(120deg, var(--gold), var(--accent));
    -webkit-background-clip: text;
    color: transparent;
}
.hero-sub {
    color: var(--text-muted);
    max-width: 34rem;
    font-size: 0.98rem;
    margin-bottom: 1.4rem;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.8rem; }
.badge {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(212,175,55,0.4);
    background: rgba(5,6,8,0.7);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }
.btn-primary, .btn-secondary {
    border-radius: 999px;
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}
.btn-primary {
    background: linear-gradient(130deg, var(--gold), var(--accent));
    color: #1a1204;
    box-shadow: 0 16px 35px rgba(0,0,0,0.55);
}
.btn-primary:hover { filter: brightness(1.05); }
.btn-secondary { background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,0.16); }

.hero-note { margin-top: 0.6rem; font-size: 0.8rem; color: var(--text-muted); }
.hero-right { position: relative; }
.hero-logo { width: 110px; margin: 0 auto 1rem; filter: drop-shadow(0 8px 20px rgba(0,0,0,0.7)); }

.hero-card {
    background: radial-gradient(circle at top, #222638, #101118 40%, #050608);
    border-radius: 26px;
    padding: 1.4rem 1.4rem 1.1rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255,255,255,0.04);
}
.hero-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.1rem; }
.hero-card-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold-soft);
}
.hero-card-chip {
    font-size: 0.72rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(212,175,55,0.35);
}
.hero-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.9rem; }
.hero-mini-card {
    background: rgba(0,0,0,0.48);
    border-radius: 16px;
    padding: 0.8rem 0.9rem;
    border: 1px solid rgba(255,255,255,0.04);
}
.mini-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-muted); margin-bottom: 0.3rem; }
.mini-main { font-size: 0.95rem; font-weight: 600; }
.mini-sub { margin-top: 0.1rem; font-size: 0.72rem; color: var(--text-muted); }

.hero-pet { margin-top: 1rem; display: flex; align-items: center; gap: 0.7rem; font-size: 0.8rem; }
.pet-avatar {
    width: 32px; height: 32px; border-radius: 999px;
    background: radial-gradient(circle at 30% 10%, #ffe9c2, #e88b55, #8b4513);
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.pet-name { font-size: 0.86rem; font-weight: 500; }
.pet-text { font-size: 0.78rem; color: var(--text-muted); }

/* Sections */
section { margin-bottom: 3.2rem; }
.section-header { margin-bottom: 1.6rem; }
.section-kicker { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.72rem; color: var(--gold-soft); margin-bottom: 0.3rem; }
.section-title { font-size: 1.5rem; margin-bottom: 0.4rem; }
.section-desc { color: var(--text-muted); font-size: 0.94rem; max-width: 40rem; }
.section-note { font-size: 0.86rem; color: var(--text-muted); margin-top: 0.6rem; }

.two-columns { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 2rem; }
.card {
    background: rgba(5,6,8,0.88);
    border-radius: var(--card-radius);
    padding: 1.3rem 1.4rem;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 14px 30px rgba(0,0,0,0.55);
}
.card-ghost {
    background: rgba(5,6,8,0.55);
    border-radius: var(--card-radius);
    padding: 1.1rem 1.3rem;
    border: 1px dashed rgba(212,175,55,0.4);
}
.card-title { font-size: 1.05rem; margin-bottom: 0.6rem; }

p { margin-bottom: 0.6rem; font-size: 0.94rem; }
ul { padding-left: 1.1rem; margin-bottom: 0.6rem; }
li { margin-bottom: 0.35rem; font-size: 0.92rem; }

.pill-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.4rem; }
.pill { font-size: 0.7rem; border-radius: 999px; padding: 0.28rem 0.7rem; border: 1px solid rgba(255,255,255,0.09); color: var(--text-muted); }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }

.tag-title { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-muted); margin-bottom: 0.3rem; }
.highlight { color: var(--gold-soft); font-weight: 500; }

/* Contact */
.contact { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 1.8rem; align-items: center; }
.contact-form { display: grid; gap: 0.7rem; }

.field label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.18rem;
}
.field input, .field textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(0,0,0,0.55);
    padding: 0.6rem 0.7rem;
    font-size: 0.9rem;
    color: var(--text);
    resize: vertical;
    min-height: 42px;
}
.field input:focus, .field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 1px rgba(212,175,55,0.4);
}

.slogan { margin-top: 0.4rem; font-size: 0.9rem; font-style: italic; color: var(--gold-soft); }

/* Footer */
footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.1rem 1.5rem 1.6rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
    .hero, .two-columns, .grid-3, .contact { grid-template-columns: 1fr; }
    nav ul { display: none; }
    .hero { padding-top: 2.4rem; }
    .wrapper { padding-inline: 1.2rem; }
}
@media (max-width: 600px) {
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-secondary { justify-content: center; width: 100%; }
}
