:root {
    --bg: #0b0b0b;
    --surface: #141414;
    --surface-2: #1c1c1c;
    --fg: #fafafa;
    --muted: #a3a3a3;
    --border: #262626;
    --accent: #ff5b1f;
    --accent-2: #ffd23f;
    --accent-fg: #0b0b0b;
    --radius: 10px;
    --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-display: 'Archivo Black', ui-sans-serif, system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    overflow-x: hidden;
}

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

.wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

h1, h2, h3 {
    font-family: var(--font-display);
    text-transform: uppercase;
    line-height: 1.05;
    margin: 0 0 0.5rem;
}

h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.1rem; letter-spacing: 0.02em; }

.eyebrow {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin: 0 0 0.6rem;
}

.section-sub {
    color: var(--muted);
    max-width: 40rem;
    font-size: 1.02rem;
}

.accent-text { color: var(--accent); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-accent {
    background: var(--accent);
    color: var(--accent-fg);
}
.btn-accent:hover { background: var(--accent-2); }

.btn-ghost {
    background: transparent;
    color: var(--fg);
    border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-lg { padding: 0.95rem 1.9rem; font-size: 1.05rem; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 11, 11, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    letter-spacing: 0.01em;
    font-size: 0.95rem;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 8px;
    background: var(--accent);
    color: var(--accent-fg);
    font-family: var(--font-display);
    font-size: 0.9rem;
}

.logo-text em { color: var(--accent); font-style: normal; }

.nav {
    display: flex;
    gap: 1.8rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.nav a { color: var(--muted); transition: color 0.15s ease; }
.nav a:hover { color: var(--fg); }

.nav-cta { flex-shrink: 0; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.2rem;
    height: 2.2rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--fg);
    margin: 0 6px;
}

/* Hero */
.hero {
    position: relative;
    padding: 6rem 0 5rem;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 140%;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 91, 31, 0.25), transparent 45%),
        radial-gradient(circle at 80% 30%, rgba(255, 210, 63, 0.15), transparent 40%);
    z-index: 0;
}

.hero-inner { position: relative; z-index: 1; }

.hero h1 {
    font-size: clamp(2.6rem, 7vw, 5rem);
    letter-spacing: -0.01em;
    margin: 0 0 1rem;
}

.hero-tagline {
    color: var(--muted);
    max-width: 34rem;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 5rem 0;
    border-top: 1px solid var(--border);
}

.section-head {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 3rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

/* Product grid */
.product-grid {
    grid-template-columns: repeat(3, 1fr);
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
}

.product-art {
    height: 140px;
    border-radius: 8px;
    margin-bottom: 1.1rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-art .swoop {
    width: 70%;
    height: 34%;
    border-radius: 999px 999px 0 0 / 100% 100% 0 0;
    background: rgba(0,0,0,0.25);
    transform: rotate(-8deg);
}
.art-1 { background: linear-gradient(135deg, #1c3a4b, #3186a8); }
.art-2 { background: linear-gradient(135deg, #3a2410, #ff5b1f); }
.art-3 { background: linear-gradient(135deg, #163d2b, #3fbf7f); }
.art-4 { background: linear-gradient(135deg, #3a1030, #c23fbf); }
.art-5 { background: linear-gradient(135deg, #241c40, #5b5bff); }
.art-6 { background: linear-gradient(135deg, #402a10, #ffd23f); }

.tag {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    color: var(--accent-fg);
}
.tag-limited { background: var(--accent); }
.tag-new { background: var(--accent-2); }
.tag-hot { background: #ff3f6b; color: #fff; }

.product-card h3 { margin-top: 0.2rem; }
.price {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.15rem;
    margin: 0.2rem 0 0.6rem;
}
.product-desc { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* About */
.about-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}
.about-copy p { color: var(--muted); }
.about-copy p:first-of-type { color: var(--fg); }

.about-visual {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.thread-lines {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.thread-lines span {
    display: block;
    height: 6px;
    border-radius: 999px;
    background: var(--border);
}
.thread-lines span:nth-child(1) { background: var(--accent); width: 100%; }
.thread-lines span:nth-child(2) { width: 70%; }
.thread-lines span:nth-child(3) { background: var(--accent-2); width: 85%; }
.thread-lines span:nth-child(4) { width: 55%; }
.thread-lines span:nth-child(5) { background: var(--accent); width: 40%; }

/* Visit */
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1.5rem;
}
.visit-info h3 { margin-top: 1.2rem; color: var(--accent); }
.visit-info h3:first-child { margin-top: 0; }
.visit-info p { color: var(--muted); margin: 0.2rem 0 0; }
.hours-list { list-style: none; padding: 0; margin: 0.2rem 0 0; color: var(--muted); }
.hours-list li { display: flex; justify-content: space-between; padding: 0.3rem 0; border-bottom: 1px dashed var(--border); }
.hours-list li:last-child { border-bottom: none; }

.visit-map {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-height: 280px;
    overflow: hidden;
}
.map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.6;
}
.map-river {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30%;
    width: 14%;
    background: linear-gradient(180deg, #1c3a4b, #3186a8);
    opacity: 0.5;
    transform: skewX(-8deg);
}
.map-pin {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.pin-dot {
    width: 20px;
    height: 20px;
    border-radius: 50% 50% 50% 0;
    background: var(--accent);
    transform: rotate(-45deg);
    margin-bottom: 0.8rem;
    box-shadow: 0 0 0 6px rgba(255, 91, 31, 0.25);
}
.pin-label {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.4rem 0.7rem;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Contact */
.contact-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
}
.contact-head { text-align: left; margin: 0; }
.contact-details { margin-top: 1.5rem; color: var(--muted); }
.contact-details p { margin: 0.3rem 0; }
.contact-details strong { color: var(--fg); }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.form-row label {
    font-weight: 600;
    font-size: 0.9rem;
}
.form-row input,
.form-row textarea {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem 0.9rem;
    color: var(--fg);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    resize: vertical;
}
.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.form-row.invalid input,
.form-row.invalid textarea {
    border-color: #ff3f6b;
}
.field-error {
    color: #ff3f6b;
    font-size: 0.8rem;
    min-height: 1em;
}
.form-submit { align-self: flex-start; }
.form-success {
    display: none;
    color: #3fbf7f;
    font-weight: 600;
    font-size: 0.95rem;
}
.form-success.visible { display: block; }

/* Footer */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 0;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
}
.footer-brand .logo-text em { color: var(--accent); font-style: normal; }
.footer-socials { display: flex; gap: 0.7rem; }
.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    font-size: 0.75rem;
    font-weight: 700;
    transition: background 0.15s ease, color 0.15s ease;
}
.footer-socials a:hover { background: var(--accent); color: var(--accent-fg); }
.footer-copy { color: var(--muted); font-size: 0.85rem; margin: 0; }

/* Responsive */
@media (max-width: 860px) {
    .nav { display: none; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .about-inner, .visit-grid, .contact-inner { grid-template-columns: 1fr; }
    .about-visual { order: -1; height: 180px; }
    .contact-head { text-align: center; }
    .contact-details { text-align: left; }
}

@media (max-width: 540px) {
    .product-grid { grid-template-columns: 1fr; }
    .hero { padding: 4.5rem 0 3.5rem; }
    .section { padding: 3.5rem 0; }
    .header-inner { flex-wrap: wrap; }
}

.site-header.nav-open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 1.5rem;
    gap: 1rem;
}
.site-header.nav-open .nav-cta { display: none; }
