/* ============================================================
   brut-rental.com - Editorial Luxury
   Skill: high-end-visual-design
   ============================================================ */

:root {
    /* Palette - all warm tinted, no pure black/white */
    --bg: #F5F1EB;
    --bg-alt: #EBE4D5;
    --bg-deep: #1A1410;
    --ink: #1A1410;
    --ink-soft: #5C5249;
    --ink-mute: #8A8175;
    --accent: #C9A961;
    --accent-dark: #A88945;
    --accent-soft: rgba(201, 169, 97, 0.12);
    --hairline: rgba(26, 20, 16, 0.08);
    --hairline-strong: rgba(26, 20, 16, 0.14);
    --hairline-inverse: rgba(245, 241, 235, 0.10);

    /* Spatial rhythm - generous whitespace */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    --space-2xl: 12rem;

    /* Radius */
    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-pill: 999px;

    /* Motion */
    --ease-out: cubic-bezier(0.32, 0.72, 0, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --dur: 700ms;
    --dur-fast: 300ms;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--accent); color: var(--bg-deep); }

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

section[id] { scroll-margin-top: 7rem; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
    /* film grain overlay */
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    opacity: 0.035;
    z-index: 9999;
    mix-blend-mode: multiply;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--dur-fast) var(--ease-out);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.eyebrow {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-soft);
    padding: 0.5rem 0.9rem;
    border: 1px solid var(--hairline);
    border-radius: var(--r-pill);
    background: var(--bg-alt);
}

.eyebrow.on-dark {
    color: rgba(245, 241, 235, 0.7);
    border-color: var(--hairline-inverse);
    background: rgba(245, 241, 235, 0.04);
}

h1, h2, h3, h4 {
    font-family: 'Fraunces', 'Times New Roman', serif;
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--ink);
    font-variation-settings: "opsz" 144, "SOFT" 50;
}

.serif-italic {
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    color: var(--accent-dark);
}

h1, .display-1 {
    font-size: clamp(3rem, 8vw, 7rem);
    letter-spacing: -0.035em;
    line-height: 0.95;
}

h2, .display-2 {
    font-size: clamp(2.25rem, 5vw, 4rem);
    letter-spacing: -0.025em;
    line-height: 1.0;
}

h3 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); line-height: 1.1; }
h4 { font-size: 1.25rem; line-height: 1.2; font-weight: 500; }

.lead {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 52ch;
}

.body-text {
    font-size: 1rem;
    color: var(--ink-soft);
    max-width: 60ch;
}

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding-left: clamp(1.5rem, 4vw, 3rem);
    padding-right: clamp(1.5rem, 4vw, 3rem);
}

.container-narrow {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    padding-left: clamp(1.5rem, 4vw, 3rem);
    padding-right: clamp(1.5rem, 4vw, 3rem);
}

section {
    padding-top: clamp(5rem, 10vw, 9rem);
    padding-bottom: clamp(5rem, 10vw, 9rem);
}

section.section-deep {
    background: var(--bg-deep);
    color: var(--bg);
}
section.section-deep h1, section.section-deep h2, section.section-deep h3 { color: var(--bg); }
section.section-deep .lead, section.section-deep .body-text { color: rgba(245, 241, 235, 0.65); }

section.section-alt { background: var(--bg-alt); }

/* ============================================================
   NAV - Floating Fluid Island
   ============================================================ */

.nav-wrap {
    position: fixed;
    top: 1.25rem;
    left: 0;
    right: 0;
    z-index: 100;
    pointer-events: none;
}

.nav {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: max-content;
    max-width: calc(100% - 2.5rem);
    margin: 0 auto;
    padding: 0.55rem 0.55rem 0.55rem 1.5rem;
    background: rgba(245, 241, 235, 0.78);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid var(--hairline);
    border-radius: var(--r-pill);
    box-shadow:
        0 1px 0 rgba(245, 241, 235, 0.5) inset,
        0 30px 60px -20px rgba(26, 20, 16, 0.12);
}

.nav-logo {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.nav-logo .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    display: inline-block;
}

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

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-soft);
    transition: color var(--dur-fast) var(--ease-out);
}

.nav-links a:hover { color: var(--ink); }

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 36px;
    height: 36px;
    cursor: pointer;
    padding: 0;
    position: relative;
}
.nav-toggle span {
    position: absolute;
    left: 8px;
    right: 8px;
    height: 1.5px;
    background: var(--ink);
    border-radius: 1px;
    transition: transform var(--dur) var(--ease-out), top var(--dur) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle.active span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2) { top: 17px; transform: rotate(-45deg); }

@media (max-width: 880px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-toggle { display: block; }
    .nav { padding: 0.55rem 0.55rem 0.55rem 1.25rem; }
    .nav-links.active {
        display: flex;
        position: fixed;
        inset: 0;
        background: rgba(245, 241, 235, 0.96);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 99;
    }
    .nav-links.active a { font-size: 2rem; font-family: 'Fraunces', serif; color: var(--ink); }
}

/* ============================================================
   BUTTONS - Pill with nested icon
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
    padding: 0.95rem 1.4rem 0.95rem 1.6rem;
    border-radius: var(--r-pill);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--dur) var(--ease-out);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: var(--r-pill);
    transition: all var(--dur) var(--ease-out);
}

.btn .icon svg {
    width: 14px;
    height: 14px;
    stroke-width: 1.5;
    transition: transform var(--dur) var(--ease-out);
}

.btn-primary {
    background: var(--ink);
    color: var(--bg);
    box-shadow: 0 1px 0 rgba(245, 241, 235, 0.06) inset;
}
.btn-primary .icon { background: rgba(245, 241, 235, 0.12); }
.btn-primary:hover {
    background: var(--accent-dark);
    color: var(--bg-deep);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px -8px rgba(168, 137, 69, 0.4);
}
.btn-primary:hover .icon { background: rgba(26, 20, 16, 0.15); }
.btn-primary:hover .icon svg { transform: translateX(2px); }

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--hairline-strong);
}
.btn-ghost .icon { background: var(--accent-soft); }
.btn-ghost:hover {
    background: var(--bg-alt);
    border-color: transparent;
}
.btn-ghost:hover .icon svg { transform: translate(1px, -1px); }

.btn-on-dark.btn-ghost {
    color: var(--bg);
    border-color: var(--hairline-inverse);
}
.btn-on-dark.btn-ghost .icon { background: rgba(245, 241, 235, 0.08); }
.btn-on-dark.btn-ghost:hover { background: rgba(245, 241, 235, 0.06); border-color: rgba(245, 241, 235, 0.2); }

.nav-cta {
    padding: 0.6rem 0.7rem 0.6rem 1.1rem;
    font-size: 0.82rem;
}
.nav-cta .icon { width: 24px; height: 24px; }
.nav-cta .icon svg { width: 12px; height: 12px; }

/* ============================================================
   HERO - Editorial Split (60/40)
   ============================================================ */

.hero {
    padding-top: clamp(7rem, 12vw, 11rem);
    padding-bottom: clamp(4rem, 7vw, 7rem);
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.hero-copy { max-width: 700px; }

.hero-title {
    margin-top: 1.5rem;
    margin-bottom: 1.75rem;
}

.hero-sub {
    font-size: clamp(1.1rem, 1.4vw, 1.3rem);
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 50ch;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-meta {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--hairline);
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    color: var(--ink-soft);
    font-size: 0.85rem;
}
.hero-meta strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 0.15rem;
}

/* Hero image stack - cascading editorial pills */
.hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    width: 100%;
}

.hero-img {
    position: absolute;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: 0 30px 60px -25px rgba(26, 20, 16, 0.35);
    background: var(--bg-alt);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

.hero-img-1 { top: 0; left: 0; width: 70%; aspect-ratio: 3/4; transform: rotate(-2deg); z-index: 2; }
.hero-img-2 { bottom: 0; right: 0; width: 60%; aspect-ratio: 4/5; transform: rotate(3deg); z-index: 1; }
.hero-img-tag {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg);
    border: 1px solid var(--hairline);
    border-radius: var(--r-pill);
    padding: 0.6rem 1.2rem;
    font-family: 'Plus Jakarta Sans', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-soft);
    z-index: 3;
    box-shadow: 0 12px 32px -10px rgba(26, 20, 16, 0.18);
}

@media (max-width: 880px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { aspect-ratio: 3/4; max-width: 480px; margin: 0 auto; order: -1; }
    .hero-meta { gap: 1.5rem; }
}

/* ============================================================
   MANIFEST - Big quote section
   ============================================================ */

.manifest {
    background: var(--bg-deep);
    color: var(--bg);
    text-align: center;
    padding-top: clamp(5rem, 8vw, 7rem);
    padding-bottom: clamp(5rem, 8vw, 7rem);
    position: relative;
    overflow: hidden;
}

.manifest::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.manifest-quote {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    max-width: 22ch;
    margin: 0 auto;
    color: var(--bg);
    position: relative;
}

.manifest-quote em { font-style: italic; color: var(--accent); }

.manifest-attribution {
    margin-top: 2.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 241, 235, 0.5);
    position: relative;
}

/* ============================================================
   CATEGORIES - Asymmetric Bento Grid
   ============================================================ */

.cats-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
    margin-top: 4rem;
}

.cat-card {
    border-radius: var(--r-md);
    overflow: hidden;
    position: relative;
    background: var(--bg-alt);
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform var(--dur) var(--ease-out);
}
.cat-card:hover { transform: translateY(-4px); }

.cat-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s var(--ease-out);
}
.cat-card:hover .cat-card-bg { transform: scale(1.06); }

.cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(26, 20, 16, 0.85) 100%);
    pointer-events: none;
}

.cat-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem 1.75rem;
    color: var(--bg);
    z-index: 1;
}

.cat-card-eyebrow {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cat-card-title {
    font-family: 'Fraunces', serif;
    font-size: 1.85rem;
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: var(--bg);
    margin-bottom: 0.5rem;
}

.cat-card-desc {
    font-size: 0.88rem;
    line-height: 1.45;
    color: rgba(245, 241, 235, 0.78);
    max-width: 28ch;
}

.cat-1 { grid-column: span 7; aspect-ratio: 7/6; }
.cat-2 { grid-column: span 5; aspect-ratio: 5/6; }
.cat-3 { grid-column: span 5; aspect-ratio: 5/6; }
.cat-4 { grid-column: span 7; aspect-ratio: 7/6; }

@media (max-width: 880px) {
    .cats-grid { grid-template-columns: 1fr; gap: 1rem; }
    .cat-1, .cat-2, .cat-3, .cat-4 { grid-column: span 1; aspect-ratio: 4/3; }
}

/* ============================================================
   ASSORTMENT TEASER - Editorial grid
   ============================================================ */

.assort-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.assort-item {
    cursor: pointer;
}

.assort-item-img {
    aspect-ratio: 4/5;
    border-radius: var(--r-sm);
    overflow: hidden;
    background: var(--bg-alt);
    margin-bottom: 1rem;
}
.assort-item-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1s var(--ease-out);
}
.assort-item:hover .assort-item-img img { transform: scale(1.04); }

.assort-item-name {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    color: var(--ink);
    margin-bottom: 0.2rem;
}
.assort-item-meta {
    font-size: 0.82rem;
    color: var(--ink-mute);
    letter-spacing: 0.05em;
}

@media (max-width: 880px) {
    .assort-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 520px) {
    .assort-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROCESS - 3 numbered editorial steps
   ============================================================ */

.process-list {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.process-step {
    display: grid;
    grid-template-columns: 100px 1fr 2fr;
    gap: 2rem;
    padding: 2.5rem 0;
    border-top: 1px solid var(--hairline);
    align-items: start;
}

.process-step:last-child { border-bottom: 1px solid var(--hairline); }

.process-num {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: 3rem;
    color: var(--accent-dark);
    line-height: 1;
    font-style: italic;
}

.process-step h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.75rem;
    line-height: 1.1;
    margin-bottom: 0;
}

.process-step p {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 50ch;
}

@media (max-width: 880px) {
    .process-step { grid-template-columns: 1fr; gap: 1rem; padding: 2rem 0; }
    .process-num { font-size: 2.25rem; }
}

/* ============================================================
   REGIO - text-only cinematic
   ============================================================ */

.regio-display {
    text-align: center;
    margin-top: 3rem;
}

.regio-cities {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 2.5rem;
    font-family: 'Fraunces', serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.4;
    color: var(--ink-soft);
}
.regio-cities .primary { color: var(--ink); font-style: italic; }

/* ============================================================
   TESTIMONIALS - Z-Cascade
   ============================================================ */

.test-stack {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.test-card {
    background: var(--bg);
    border: 1px solid var(--hairline);
    border-radius: var(--r-md);
    padding: 2rem;
    box-shadow: 0 30px 50px -25px rgba(26, 20, 16, 0.18);
    transition: transform var(--dur) var(--ease-out);
}

.test-card:nth-child(1) { transform: rotate(-1.2deg); }
.test-card:nth-child(2) { transform: translateY(1.5rem); }
.test-card:nth-child(3) { transform: rotate(1.6deg); }
.test-card:hover { transform: translateY(-4px) rotate(0); }

.test-quote {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--ink);
    margin-bottom: 1.5rem;
}
.test-quote::before { content: '\201C'; font-size: 2rem; line-height: 0; vertical-align: -0.4em; color: var(--accent-dark); margin-right: 0.15em; }

.test-author {
    font-size: 0.85rem;
    color: var(--ink-soft);
    border-top: 1px solid var(--hairline);
    padding-top: 1rem;
}
.test-author strong { display: block; color: var(--ink); font-weight: 600; }

@media (max-width: 880px) {
    .test-stack { grid-template-columns: 1fr; gap: 1.5rem; }
    .test-card:nth-child(1), .test-card:nth-child(2), .test-card:nth-child(3) { transform: none; }
}

/* ============================================================
   INSTAGRAM TEASER
   ============================================================ */

.insta-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
}

.insta-item {
    aspect-ratio: 1;
    background: var(--bg-alt);
    border-radius: var(--r-sm);
    overflow: hidden;
    cursor: pointer;
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out), filter var(--dur) var(--ease-out); filter: saturate(0.85); }
.insta-item:hover img { transform: scale(1.06); filter: saturate(1); }

@media (max-width: 880px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   CONTACT - Editorial split
   ============================================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    margin-top: 3.5rem;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: var(--bg);
    border: 1px solid var(--hairline);
    border-radius: var(--r-md);
    transition: all var(--dur) var(--ease-out);
}
.contact-card:hover {
    border-color: var(--accent);
    background: var(--bg);
    transform: translateX(4px);
    box-shadow: 0 12px 32px -12px rgba(168, 137, 69, 0.25);
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-pill);
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; stroke: var(--accent-dark); stroke-width: 1.5; fill: none; }

.contact-card-body { flex: 1; }
.contact-card-label { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 0.2rem; }
.contact-card-value { font-family: 'Fraunces', serif; font-size: 1.2rem; color: var(--ink); }

.contact-prose .lead { margin-top: 1.5rem; }

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

/* ============================================================
   FOOTER
   ============================================================ */

footer {
    padding: 3rem 0;
    background: var(--bg-deep);
    color: rgba(245, 241, 235, 0.5);
    font-size: 0.82rem;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

footer a { color: rgba(245, 241, 235, 0.75); }
footer a:hover { color: var(--accent); }

.footer-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(245, 241, 235, 0.25);
    font-size: 0.7rem;
}
.footer-counter img { filter: invert(1); opacity: 0.3; height: 12px; }

@media (max-width: 880px) {
    footer .container { flex-direction: column; text-align: center; }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 80ms; }
[data-reveal-delay="2"] { transition-delay: 160ms; }
[data-reveal-delay="3"] { transition-delay: 240ms; }
[data-reveal-delay="4"] { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   PAKKETTEN
   ============================================================ */

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    align-items: stretch;
}

.pkg-card {
    background: var(--bg);
    border: 1px solid var(--hairline);
    border-radius: var(--r-md);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--dur) var(--ease-out);
}

.pkg-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 30px 60px -25px rgba(168, 137, 69, 0.18);
}

.pkg-feat {
    background: var(--bg-deep);
    color: var(--bg);
    border-color: transparent;
    box-shadow: 0 30px 60px -25px rgba(26, 20, 16, 0.35);
}
.pkg-feat:hover { border-color: var(--accent); }

.pkg-badge {
    position: absolute;
    top: -0.65rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg-deep);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: var(--r-pill);
    white-space: nowrap;
}

.pkg-eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.pkg-feat .pkg-eyebrow { color: rgba(245, 241, 235, 0.5); }

.pkg-title {
    font-family: 'Fraunces', serif;
    font-size: 1.85rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--ink);
}
.pkg-feat .pkg-title { color: var(--bg); }

.pkg-price {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--hairline);
}
.pkg-feat .pkg-price { border-color: var(--hairline-inverse); }

.pkg-price-from {
    font-size: 0.85rem;
    color: var(--ink-soft);
    font-style: italic;
}
.pkg-feat .pkg-price-from { color: rgba(245, 241, 235, 0.5); }

.pkg-price-amount {
    font-family: 'Fraunces', serif;
    font-size: 2.75rem;
    font-weight: 400;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.pkg-feat .pkg-price-amount { color: var(--accent); }

.pkg-price-suffix {
    font-size: 0.95rem;
    color: var(--ink-soft);
}
.pkg-feat .pkg-price-suffix { color: rgba(245, 241, 235, 0.6); }

.pkg-list {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    flex: 1;
}

.pkg-list li {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.55;
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
}
.pkg-feat .pkg-list li { color: rgba(245, 241, 235, 0.78); }

.pkg-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85em;
    width: 12px;
    height: 1px;
    background: var(--accent-dark);
}
.pkg-feat .pkg-list li::before { background: var(--accent); }

.pkg-cta { width: 100%; }

@media (max-width: 880px) {
    .pkg-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* ============================================================
   GARANTIE + SEIZOEN
   ============================================================ */

.guarantee-section { background: var(--bg-alt); }

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.guarantee-card {
    background: var(--bg);
    border: 1px solid var(--hairline);
    border-radius: var(--r-md);
    padding: 2.5rem 2.25rem;
    transition: transform var(--dur) var(--ease-out);
}
.guarantee-card:hover { transform: translateY(-3px); box-shadow: 0 30px 60px -25px rgba(26, 20, 16, 0.15); }

.guarantee-card-alt {
    background: var(--bg-deep);
    color: var(--bg);
    border-color: transparent;
}
.guarantee-card-alt h3 { color: var(--bg); }
.guarantee-card-alt p { color: rgba(245, 241, 235, 0.7); }

.guarantee-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-pill);
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.guarantee-icon svg { width: 22px; height: 22px; stroke: var(--accent-dark); fill: none; }
.guarantee-card-alt .guarantee-icon { background: rgba(201, 169, 97, 0.18); }
.guarantee-card-alt .guarantee-icon svg { stroke: var(--accent); }

.guarantee-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.85rem;
    line-height: 1.05;
    margin: 0.5rem 0 1rem;
    color: var(--ink);
}

.guarantee-card p {
    color: var(--ink-soft);
    line-height: 1.65;
    font-size: 1rem;
    max-width: 50ch;
}

.guarantee-card .eyebrow {
    display: inline-block;
}

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

/* ============================================================
   NAV CART BADGE
   ============================================================ */

#navCart .icon {
    background: var(--accent);
    color: var(--bg-deep);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    width: 24px;
    height: 24px;
    transition: all var(--dur) var(--ease-out);
}
#navCart .icon svg { display: none; }

#navCart.has-items .icon {
    background: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.25);
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */

.page-header {
    padding-top: clamp(7rem, 12vw, 10rem);
    padding-bottom: clamp(3rem, 5vw, 5rem);
    background: var(--bg);
    border-bottom: 1px solid var(--hairline);
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-top: 1.5rem;
}

.page-header .lead { margin-top: 1.5rem; max-width: 60ch; }

.breadcrumb {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-mute);
}
.breadcrumb a { color: var(--ink-soft); transition: color var(--dur-fast) var(--ease-out); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb-sep { color: var(--ink-mute); margin: 0 0.5rem; }

/* ============================================================
   ASSORTIMENT - SHOP
   ============================================================ */

.shop-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin: 3rem 0 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--hairline);
}

.shop-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex: 1;
}

.shop-filter-btn {
    background: transparent;
    border: 1px solid var(--hairline-strong);
    border-radius: var(--r-pill);
    padding: 0.55rem 1.1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all var(--dur-fast) var(--ease-out);
}

.shop-filter-btn:hover {
    border-color: var(--accent);
    color: var(--ink);
}

.shop-filter-btn.active {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}

.shop-count {
    font-size: 0.85rem;
    color: var(--ink-mute);
    font-style: italic;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
}

.shop-item {
    background: var(--bg);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: transform var(--dur) var(--ease-out);
}

.shop-item:hover { transform: translateY(-4px); }

.shop-item-img {
    aspect-ratio: 4/5;
    background: var(--bg-alt);
    overflow: hidden;
    border-radius: var(--r-md);
    margin-bottom: 1.25rem;
    position: relative;
}

.shop-item-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1s var(--ease-out);
}
.shop-item:hover .shop-item-img img { transform: scale(1.04); }

.shop-item-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(245, 241, 235, 0.92);
    backdrop-filter: blur(10px);
    border-radius: var(--r-pill);
    padding: 0.3rem 0.7rem;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.shop-item-body { padding: 0 0.5rem; }

.shop-item-cat {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-dark);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.shop-item-name {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    line-height: 1.1;
    margin-bottom: 0.35rem;
    color: var(--ink);
}

.shop-item-meta {
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin-bottom: 1rem;
}

.shop-item-price {
    font-size: 0.9rem;
    color: var(--ink-soft);
}
.shop-item-price strong {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    color: var(--ink);
    font-size: 1.05rem;
}

.shop-item-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.shop-stepper {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border: 1px solid var(--hairline-strong);
    border-radius: var(--r-pill);
    padding: 0.15rem;
    background: var(--bg);
}

.shop-stepper button {
    width: 28px;
    height: 28px;
    background: transparent;
    border: 0;
    cursor: pointer;
    border-radius: 50%;
    color: var(--ink-soft);
    font-size: 1rem;
    transition: all var(--dur-fast) var(--ease-out);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.shop-stepper button:hover { background: var(--accent-soft); color: var(--ink); }
.shop-stepper button:disabled { opacity: 0.3; cursor: not-allowed; }

.shop-stepper-value {
    min-width: 28px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
}

.shop-add-btn {
    flex: 1;
    background: var(--ink);
    color: var(--bg);
    border: 0;
    border-radius: var(--r-pill);
    padding: 0.65rem 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--dur-fast) var(--ease-out);
    white-space: nowrap;
}
.shop-add-btn:hover { background: var(--accent-dark); }
.shop-add-btn.added {
    background: var(--accent-dark);
    color: var(--bg-deep);
}

@media (max-width: 880px) { .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; } }
@media (max-width: 520px) { .shop-grid { grid-template-columns: 1fr; } }

/* ============================================================
   OFFERTE PAGE
   ============================================================ */

.offerte-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    margin-top: 3rem;
}

.cart-list { display: flex; flex-direction: column; gap: 1rem; }

.cart-empty {
    padding: 3rem 2rem;
    text-align: center;
    border: 1px dashed var(--hairline-strong);
    border-radius: var(--r-md);
    background: var(--bg);
}
.cart-empty h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.cart-empty p { color: var(--ink-soft); margin-bottom: 1.5rem; }

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1.25rem;
    padding: 1rem;
    background: var(--bg);
    border: 1px solid var(--hairline);
    border-radius: var(--r-md);
    align-items: center;
}

.cart-item-img {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-alt);
    border-radius: var(--r-sm);
    overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-body { display: flex; flex-direction: column; gap: 0.2rem; }
.cart-item-name { font-family: 'Fraunces', serif; font-size: 1.1rem; color: var(--ink); }
.cart-item-meta { font-size: 0.82rem; color: var(--ink-mute); }
.cart-item-price { font-size: 0.88rem; color: var(--ink-soft); margin-top: 0.25rem; }

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.cart-item-remove {
    background: transparent;
    border: 0;
    color: var(--ink-mute);
    cursor: pointer;
    font-size: 0.78rem;
    text-decoration: underline;
    padding: 0.25rem;
}
.cart-item-remove:hover { color: var(--ink); }

@media (max-width: 880px) {
    .offerte-grid { grid-template-columns: 1fr; }
    .cart-item { grid-template-columns: 80px 1fr; }
    .cart-item-controls { grid-column: span 2; flex-direction: row; align-items: center; justify-content: space-between; }
}

.offerte-form {
    background: var(--bg);
    border: 1px solid var(--hairline);
    border-radius: var(--r-md);
    padding: 2rem;
    position: sticky;
    top: 6rem;
}

.offerte-form h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.offerte-form-sub { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 1.75rem; }

.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem; }
.field-row .field { margin-bottom: 0; }

.field label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
    background: var(--bg-alt);
    border: 1px solid transparent;
    border-radius: var(--r-sm);
    color: var(--ink);
    transition: all var(--dur-fast) var(--ease-out);
    width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: 0;
    border-color: var(--accent);
    background: var(--bg);
    box-shadow: 0 0 0 4px var(--accent-soft);
}

.field textarea { resize: vertical; min-height: 100px; }

.field-checkbox { flex-direction: row; align-items: center; gap: 0.6rem; }
.field-checkbox input { width: auto; }
.field-checkbox label { letter-spacing: 0; text-transform: none; font-weight: 500; font-size: 0.92rem; color: var(--ink); }

.form-submit {
    width: 100%;
    padding: 1rem 1.4rem;
    margin-top: 0.5rem;
}

.form-trust {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--ink-mute);
    text-align: center;
    line-height: 1.5;
}

.form-success {
    text-align: center;
    padding: 3rem 1rem;
}
.form-success h3 { font-family: 'Fraunces', serif; font-size: 2rem; margin-bottom: 1rem; }
.form-success p { color: var(--ink-soft); max-width: 40ch; margin: 0 auto; }

@media (max-width: 880px) {
    .offerte-form { position: static; }
    .field-row { grid-template-columns: 1fr; gap: 0; }
    .field-row .field { margin-bottom: 1.25rem; }
}

