/* ─── Reset + Tokens ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #faf4e8;
    --bg-soft: #f1e9d6;
    --card: #ffffff;
    --text: #2c2a25;
    --muted: #6b6457;
    --accent: #d9633c;          /* warmer sunset orange */
    --accent-soft: #f0c8a8;
    --sea: #4a8a8c;             /* dusty teal */
    --border: #ddd1b8;
    --maxw: 1080px;
}

html { scroll-behavior: smooth; }

body {
    font-family: ui-rounded, "Segoe UI", system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding-inline: clamp(20px, 4vw, 32px);
}

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.brand {
    color: var(--text);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.brand-mark { font-size: 1.4rem; }

.site-nav {
    display: flex;
    gap: 20px;
    font-size: 0.95rem;
}
.site-nav a {
    color: var(--muted);
    text-decoration: none;
}
.site-nav a:hover { color: var(--text); }

@media (max-width: 640px) {
    .site-nav { display: none; }
}

/* ─── Hero ───────────────────────────────────────────────────────── */
.hero {
    padding-block: clamp(64px, 10vw, 120px) clamp(48px, 8vw, 96px);
    background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg) 100%);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.05;
    max-width: 20ch;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.lead {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    max-width: 60ch;
    color: var(--muted);
    margin-bottom: 28px;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: transform 0.12s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #c0552f; }
.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--card); }

/* ─── Section ────────────────────────────────────────────────────── */
.section { padding-block: clamp(56px, 7vw, 96px); }
.section--alt { background: var(--bg-soft); }
.section--manifest { background: var(--sea); color: #fff; }
.section--manifest .kicker { color: var(--accent-soft); }
.section--manifest .section-lead,
.section--manifest p,
.section--manifest li { color: rgba(255,255,255,0.92); }

.kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.section h2 {
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 24ch;
    letter-spacing: -0.01em;
}

.section-lead {
    color: var(--muted);
    max-width: 60ch;
    margin-bottom: 36px;
    font-size: 1.05rem;
}

/* ─── Product grid ───────────────────────────────────────────────── */
.product-grid {
    list-style: none;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}
@media (min-width: 720px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.15s ease, border-color 0.15s ease;
}
.product-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}

.product-art {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 2.4rem;
    color: #fff;
    letter-spacing: 0.05em;
}
.product-art--boxer  { background: linear-gradient(135deg, #d9633c, #c0552f); }
.product-art--slip   { background: linear-gradient(135deg, #4a8a8c, #386e70); }
.product-art--long   { background: linear-gradient(135deg, #8b6f47, #6b563a); }
.product-art--trunk  { background: linear-gradient(135deg, #4a8a8c, #3a6e70); }
.product-art--shorty { background: linear-gradient(135deg, #5e8aa6, #426582); }
.product-art--bikini { background: linear-gradient(135deg, #e08d5c, #c46f3f); }
.product-art--towel  { background: linear-gradient(135deg, #d9b873, #b89757); }
.product-art--flip   { background: linear-gradient(135deg, #946245, #6e4730); }
.product-art--sun    { background: linear-gradient(135deg, #2c2a25, #4a4640); }

.product-card h3 {
    font-size: 1.15rem;
    margin: 0;
}
.product-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
}
.product-card .price {
    color: var(--text);
    font-weight: 700;
    font-size: 1rem;
    margin-top: auto;
}

/* ─── Manifest ───────────────────────────────────────────────────── */
.manifest-list {
    list-style: none;
    counter-reset: m;
    display: grid;
    gap: 22px;
    margin-top: 24px;
    max-width: 70ch;
}
.manifest-list li {
    counter-increment: m;
    position: relative;
    padding-left: 50px;
    font-size: 1.05rem;
}
.manifest-list li::before {
    content: counter(m);
    position: absolute;
    left: 0;
    top: -2px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
}
.manifest-list strong { color: #fff; font-weight: 800; }

/* ─── Footer ─────────────────────────────────────────────────────── */
.site-footer {
    padding-block: 40px 56px;
    background: var(--text);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}
.footer-brand {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 10px;
}
.site-footer code {
    background: rgba(255,255,255,0.08);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85rem;
}
.site-footer p { max-width: 60ch; margin-bottom: 8px; }
