/* =========================================================
   ALTER KNABE — Bespoke Tailoring
   Im Stil der englischen Schneidermeister
   ========================================================= */

:root {
    /* British Racing Green Palette */
    --brg-darkest: #0a1a14;
    --brg-deep: #0f2a1f;
    --brg-classic: #1a3a2a;
    --brg-medium: #234e34;
    --brg-olive: #3d5a3a;
    --brg-light: #5a7459;

    /* Gold */
    --gold: #c9a44c;
    --gold-bright: #d9b85a;
    --gold-dark: #9a7f3a;
    --gold-soft: rgba(201, 164, 76, 0.6);

    /* Neutrals */
    --cream: #f3ecdb;
    --paper: #e8dfc6;
    --paper-dark: #d9cfb3;
    --ink: #1a1612;
    --sepia: #5a4a30;

    /* Typo */
    --font-display: 'Playfair Display', 'Cormorant Garamond', serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-roman: 'Cinzel', 'Trajan Pro', serif;
    --font-italic: 'Italiana', serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.7;
    color: var(--cream);
    background: var(--brg-darkest);
    overflow-x: hidden;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* =========================================================
   FILM GRAIN & VIGNETTE
   ========================================================= */
.film-grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.07;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -2%); }
    20% { transform: translate(-10%, 5%); }
    30% { transform: translate(5%, -10%); }
    40% { transform: translate(-5%, 10%); }
    50% { transform: translate(-10%, 5%); }
    60% { transform: translate(10%, 0%); }
    70% { transform: translate(0%, 10%); }
    80% { transform: translate(-10%, 0%); }
    90% { transform: translate(5%, 5%); }
}

.vignette {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9997;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.5) 100%);
}

/* =========================================================
   CONTAINER
   ========================================================= */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* =========================================================
   HEADER / NAVIGATION
   The navigation is hidden on the Hero section and reveals
   elegantly as soon as the user begins to scroll.
   ========================================================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 22px 0;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1),
                opacity 0.6s ease,
                background-color 0.5s ease,
                padding 0.5s ease,
                border-color 0.5s ease;
    background: transparent;

    /* Initial state — hidden above the viewport */
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* Reveal state — appears as soon as the user begins scrolling */
.main-header.revealed {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    background: rgba(10, 26, 20, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Condensed state — after scrolling further down */
.main-header.scrolled {
    background: rgba(10, 26, 20, 0.97);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 164, 76, 0.25);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.main-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.nav-left {
    flex-shrink: 0;
}
.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav-right {
    flex-shrink: 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    padding: 4px;
}
.nav-logo {
    height: 36px;
    width: auto;
    transition: height 0.4s ease, filter 0.3s ease;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
.main-header.scrolled .nav-logo {
    height: 30px;
}

.nav-center ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: nowrap;
}
.nav-center li {
    display: flex;
    align-items: center;
}
.nav-center li + li::before {
    content: '·';
    color: var(--gold-soft);
    margin-right: 22px;
    margin-left: -22px;
    transform: translateX(-11px);
    font-size: 14px;
    opacity: 0.7;
}

.nav-center a {
    color: var(--cream);
    font-family: var(--font-roman);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    padding: 6px 2px;
    white-space: nowrap;
}

.nav-center a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: center;
}

.nav-center a:hover { color: var(--gold); }
.nav-center a:hover::after { transform: scaleX(1); }

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
}
.lang-btn {
    background: transparent;
    border: none;
    color: var(--paper-dark);
    font-family: var(--font-roman);
    font-size: 12px;
    letter-spacing: 0.2em;
    cursor: pointer;
    padding: 6px 8px;
    transition: color 0.3s ease;
    position: relative;
}
.lang-btn:hover { color: var(--gold-bright); }
.lang-btn.active { color: var(--gold); }
.lang-btn.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 8px;
    right: 8px;
    height: 1px;
    background: var(--gold);
}
.lang-sep {
    color: var(--gold-soft);
    font-size: 12px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.mobile-toggle span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--gold);
    transition: 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--brg-darkest);
    border-left: 1px solid var(--gold-soft);
    padding: 100px 40px 40px;
    transition: right 0.5s ease;
    z-index: 99;
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { padding: 18px 0; border-bottom: 1px solid rgba(201,164,76,0.15); }
.mobile-menu a {
    color: var(--cream);
    font-family: var(--font-roman);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 14px;
}
.mobile-lang {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 24px;
    border-top: 1px solid rgba(201,164,76,0.15);
}

/* =========================================================
   HERO SECTION — Logo on British Racing Green
   ========================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 30px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 50% 40%, var(--brg-medium) 0%, var(--brg-deep) 40%, var(--brg-darkest) 100%);
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            135deg,
            transparent 0px,
            transparent 8px,
            rgba(201,164,76,0.025) 8px,
            rgba(201,164,76,0.025) 9px
        );
    pointer-events: none;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(201,164,76,0.07) 0%, transparent 50%);
    pointer-events: none;
}

/* Decorative corner frames inside hero */
.hero-ornament-frame {
    position: absolute;
    inset: 60px;
    z-index: 1;
    pointer-events: none;
    border: 1px solid rgba(201,164,76,0.15);
}
.hero-ornament-frame .corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    opacity: 0.6;
}
.hero-ornament-frame .top-left { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.hero-ornament-frame .top-right { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.hero-ornament-frame .bottom-left { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.hero-ornament-frame .bottom-right { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--cream);
    max-width: 900px;
    animation: heroFadeIn 1.8s ease-out;
}

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

.hero-flourish {
    color: var(--gold);
    width: 220px;
    margin: 0 auto;
    opacity: 0.85;
}
.hero-flourish.top { margin-bottom: 26px; }
.hero-flourish.bottom { margin-top: 26px; }

.hero-eyebrow {
    font-family: var(--font-roman);
    color: var(--gold);
    letter-spacing: 0.5em;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.hero-logo-wrap {
    margin: 0 auto 30px;
    max-width: 460px;
    position: relative;
    animation: logoFloat 1.6s ease-out;
}
@keyframes logoFloat {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.hero-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 30px rgba(0,0,0,0.6)) drop-shadow(0 0 60px rgba(201,164,76,0.15));
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
}

.hero-title .line-1,
.hero-title .line-2 {
    display: inline-block;
    font-size: clamp(50px, 8vw, 110px);
    color: var(--cream);
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-title .line-1 { margin-right: 0.3em; }
.hero-title .line-2 {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}

.hero-sub {
    font-family: var(--font-italic);
    font-style: italic;
    color: var(--paper);
    font-size: clamp(16px, 1.6vw, 22px);
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: var(--gold);
    font-family: var(--font-roman);
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    opacity: 0.85;
}
.scroll-line {
    width: 1px;
    height: 50px;
    background: var(--gold);
    margin: 14px auto 0;
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--cream);
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { top: -50%; }
    100% { top: 100%; }
}

/* =========================================================
   BRAND VIDEO SECTION
   Full-bleed cinematic placeholder for the brand film
   ========================================================= */
.brand-video {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    background: var(--brg-darkest);
    padding: 0;
}

.brand-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.brand-video-el {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
/* Hide the video element entirely if it has no playable source */
.brand-video-el:not([src]):empty + .brand-video-placeholder,
.brand-video-el:empty + .brand-video-placeholder {
    /* placeholder visible by default — see below */
}

.brand-video-placeholder {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse at 50% 50%, var(--brg-medium) 0%, var(--brg-deep) 55%, var(--brg-darkest) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201,164,76,0.1);
}
.brand-video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent 0px,
            transparent 10px,
            rgba(201,164,76,0.025) 10px,
            rgba(201,164,76,0.025) 11px
        );
    pointer-events: none;
}

.placeholder-corner {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold);
    opacity: 0.55;
}
.placeholder-corner.tl { top: 40px; left: 40px; border-right: none; border-bottom: none; }
.placeholder-corner.tr { top: 40px; right: 40px; border-left: none; border-bottom: none; }
.placeholder-corner.bl { bottom: 40px; left: 40px; border-right: none; border-top: none; }
.placeholder-corner.br { bottom: 40px; right: 40px; border-left: none; border-top: none; }

.placeholder-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--gold);
    padding: 30px;
}
.placeholder-icon {
    color: var(--gold);
    width: 90px;
    height: 90px;
    margin: 0 auto 22px;
    opacity: 0.85;
    transition: transform 0.6s ease;
}
.placeholder-icon svg { width: 100%; height: 100%; }
.brand-video:hover .placeholder-icon { transform: scale(1.08); }

.placeholder-label {
    font-family: var(--font-roman);
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    display: block;
}

/* Hide placeholder once the video has a real source */
.brand-video.has-video .brand-video-placeholder {
    opacity: 0;
    pointer-events: none;
}

.brand-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(10,26,20,0.45) 0%, rgba(10,26,20,0.25) 40%, rgba(10,26,20,0.85) 100%);
}

.brand-video-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 70px;
    z-index: 4;
    text-align: center;
    padding: 0 30px;
    color: var(--cream);
}

.brand-video-eyebrow {
    font-family: var(--font-roman);
    color: var(--gold);
    letter-spacing: 0.5em;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.brand-video-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(38px, 5.5vw, 76px);
    line-height: 1;
    color: var(--cream);
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}
.brand-video-title em {
    font-style: italic;
    color: var(--gold);
}

.brand-video-caption {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--paper);
    font-size: clamp(15px, 1.4vw, 19px);
    letter-spacing: 0.04em;
}

/* =========================================================
   GENERIC SECTION ELEMENTS
   ========================================================= */
section {
    position: relative;
    padding: 130px 0;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    color: var(--gold);
}
.section-label.center {
    justify-content: center;
    text-align: center;
}
.section-label.light { color: var(--gold-bright); }

.numeral {
    font-family: var(--font-roman);
    font-size: 14px;
    letter-spacing: 0.2em;
    border: 1px solid var(--gold);
    padding: 6px 12px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.label-text {
    font-family: var(--font-roman);
    font-size: 12px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

.display-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 60px;
    letter-spacing: -0.01em;
}
.display-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}
.display-title.small { font-size: clamp(38px, 5vw, 64px); }
.display-title.center { text-align: center; }
.display-title.light { color: var(--cream); }

.section-intro {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 22px;
    color: var(--paper-dark);
    max-width: 700px;
    margin: 0 auto 80px;
    line-height: 1.6;
}
.section-intro.center { text-align: center; }

/* =========================================================
   MANIFEST SECTION
   ========================================================= */
.manifest {
    background: linear-gradient(180deg, var(--brg-darkest) 0%, var(--brg-deep) 100%);
}

.manifest-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    margin-top: 40px;
}

.manifest-col p {
    margin-bottom: 22px;
    color: var(--paper);
    font-size: 19px;
    line-height: 1.85;
}
.manifest-col .lead {
    font-size: 26px;
    font-style: italic;
    color: var(--cream);
    line-height: 1.55;
    font-family: var(--font-serif);
}
.manifest-col strong {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.05em;
}
.manifest-col em {
    color: var(--gold);
    font-style: italic;
}

/* =========================================================
   ATELIER / HEMD SECTIONS
   ========================================================= */
.atelier {
    background: var(--brg-deep);
    position: relative;
}
.atelier::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(201, 164, 76, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.hemd {
    background: linear-gradient(180deg, var(--brg-deep) 0%, var(--brg-classic) 100%);
}

.atelier-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.atelier-grid.reverse .atelier-text { order: 2; }
.atelier-grid.reverse .atelier-visual { order: 1; }

.atelier-text p {
    color: var(--paper);
    font-size: 19px;
    line-height: 1.85;
    margin-bottom: 35px;
}

.craft-list {
    list-style: none;
    border-top: 1px solid rgba(201,164,76,0.2);
}
.craft-list li {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(201,164,76,0.2);
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--cream);
    transition: padding 0.3s ease;
}
.craft-list li:hover {
    padding-left: 12px;
    color: var(--gold);
}
.craft-num {
    font-family: var(--font-roman);
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.2em;
    min-width: 30px;
}

.detail-list {
    margin-top: 35px;
    border-top: 1px solid rgba(201,164,76,0.2);
}
.detail-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 24px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(201,164,76,0.15);
    align-items: baseline;
}
.detail-label {
    font-family: var(--font-roman);
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.detail-value {
    font-family: var(--font-serif);
    color: var(--cream);
    font-size: 17px;
    font-style: italic;
    line-height: 1.5;
}

/* Visual Card — replaces previous photographic images */
.atelier-visual {
    position: relative;
}

.visual-card {
    position: relative;
    padding: 14px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    aspect-ratio: 4 / 5;
}
.visual-card::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(255,255,255,0.2);
    pointer-events: none;
    z-index: 2;
}

.visual-card-inner {
    height: 100%;
    background:
        radial-gradient(ellipse at 50% 30%, var(--brg-medium) 0%, var(--brg-deep) 60%, var(--brg-darkest) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 40px;
    text-align: center;
    position: relative;
}
.visual-card-inner::before {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(201,164,76,0.25);
    pointer-events: none;
}
.visual-card-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent 0px,
            transparent 6px,
            rgba(201,164,76,0.02) 6px,
            rgba(201,164,76,0.02) 7px
        );
    pointer-events: none;
}

.visual-monogram {
    width: 60%;
    max-width: 220px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
.visual-monogram.small { width: 50%; max-width: 180px; }
.visual-monogram img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.5));
}

.visual-divider {
    color: var(--gold);
    width: 180px;
    margin-bottom: 26px;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

.visual-quote {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--cream);
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.45;
    max-width: 320px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.visual-attribution {
    font-family: var(--font-roman);
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.stamp-seal {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: var(--brg-classic);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-12deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    z-index: 3;
}
.seal-inner {
    text-align: center;
    color: var(--gold);
    border: 1px dashed var(--gold-soft);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.seal-top, .seal-bottom {
    font-family: var(--font-roman);
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}
.seal-center {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 28px;
    margin: 4px 0;
    font-weight: 500;
}

/* =========================================================
   KOLLEKTION SECTION
   ========================================================= */
.kollektion {
    background: linear-gradient(180deg, var(--brg-classic) 0%, var(--brg-deep) 100%);
}

.kollektion-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.kollektion-card {
    background: rgba(10,26,20,0.6);
    border: 1px solid rgba(201,164,76,0.25);
    padding: 50px 30px 40px;
    position: relative;
    transition: transform 0.6s ease, box-shadow 0.6s ease, border-color 0.6s ease, background 0.6s ease;
    overflow: hidden;
    text-align: center;
}
.kollektion-card::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(201,164,76,0.1);
    pointer-events: none;
    transition: all 0.4s ease;
}
.kollektion-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    background: rgba(10,26,20,0.85);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.kollektion-card:hover::before {
    border-color: var(--gold-soft);
    top: 8px; left: 8px; right: 8px; bottom: 8px;
}

.card-number {
    font-family: var(--font-roman);
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 0.3em;
    margin-bottom: 26px;
    display: block;
}

.card-emblem {
    color: var(--gold);
    width: 90px;
    height: 90px;
    margin: 0 auto 26px;
    opacity: 0.85;
    transition: transform 0.6s ease, opacity 0.4s ease;
}
.card-emblem svg { width: 100%; height: 100%; }
.kollektion-card:hover .card-emblem {
    transform: translateY(-4px);
    opacity: 1;
}

.kollektion-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--cream);
    margin-bottom: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.kollektion-card p {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--paper-dark);
    font-size: 16px;
    line-height: 1.6;
}

/* =========================================================
   ACCESSOIRES SECTION
   ========================================================= */
.accessoires {
    background: var(--brg-classic);
    position: relative;
}

.accessoires-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.accessoire-item {
    text-align: center;
    padding: 50px 25px;
    border: 1px solid rgba(201,164,76,0.2);
    background: rgba(10,26,20,0.5);
    transition: all 0.5s ease;
    position: relative;
}
.accessoire-item::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(201,164,76,0.1);
    pointer-events: none;
    transition: all 0.4s ease;
}
.accessoire-item:hover {
    background: rgba(10,26,20,0.8);
    border-color: var(--gold);
    transform: translateY(-5px);
}
.accessoire-item:hover::before {
    border-color: var(--gold-soft);
    top: 6px; left: 6px; right: 6px; bottom: 6px;
}

.accessoire-num {
    font-family: var(--font-italic);
    color: var(--gold);
    font-style: italic;
    font-size: 22px;
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}

.accessoire-icon {
    color: var(--gold);
    width: 60px;
    height: 60px;
    margin: 0 auto 22px;
    opacity: 0.85;
}
.accessoire-icon svg { width: 100%; height: 100%; }

.accessoire-item h3 {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--cream);
    font-size: 30px;
    margin-bottom: 14px;
    font-weight: 500;
}
.accessoire-item p {
    color: var(--paper-dark);
    font-family: var(--font-serif);
    font-size: 16px;
    line-height: 1.6;
}

/* =========================================================
   QUOTE BREAK
   ========================================================= */
.quote-break {
    background: var(--brg-darkest);
    padding: 140px 0;
    text-align: center;
    position: relative;
}
.quote-break::before, .quote-break::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}
.quote-break::before { top: 0; }
.quote-break::after { bottom: 0; }

.ornament-large {
    color: var(--gold);
    width: 240px;
    margin: 0 auto 40px;
    opacity: 0.7;
}

.quote-break blockquote {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.3;
    color: var(--cream);
    max-width: 900px;
    margin: 0 auto 30px;
    font-weight: 400;
    font-style: normal;
}
.quote-break blockquote em {
    font-style: italic;
    color: var(--gold);
}

.attribution {
    font-family: var(--font-roman);
    color: var(--gold);
    letter-spacing: 0.3em;
    font-size: 12px;
    text-transform: uppercase;
}

/* =========================================================
   BOUTIQUE
   ========================================================= */
.boutique {
    background:
        linear-gradient(180deg, var(--brg-darkest) 0%, var(--brg-deep) 100%);
    padding: 160px 0;
    position: relative;
}
.boutique::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(201,164,76,0.07) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201,164,76,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.boutique-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.boutique-intro {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 21px;
    color: var(--paper);
    max-width: 760px;
    margin: 0 auto 70px;
    line-height: 1.7;
}
.boutique-intro strong {
    color: var(--gold);
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.boutique-card {
    background: rgba(10,26,20,0.6);
    border: 1px solid var(--gold-soft);
    padding: 10px;
    margin-bottom: 50px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.boutique-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 1px solid var(--gold);
    pointer-events: none;
    opacity: 0.3;
}

.boutique-card-inner {
    border: 1px solid rgba(201,164,76,0.3);
    padding: 70px 50px;
    background: linear-gradient(135deg, rgba(15,42,31,0.6), rgba(10,26,20,0.6));
}

.boutique-logo {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold);
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.boutique-tagline {
    font-family: var(--font-roman);
    color: var(--paper-dark);
    font-size: 12px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 50px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--gold-soft);
    display: inline-block;
    position: relative;
}
.boutique-tagline::after {
    content: '❦';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brg-deep);
    color: var(--gold);
    padding: 0 12px;
    font-size: 16px;
}

.boutique-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    text-align: center;
}

.boutique-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.boutique-label {
    font-family: var(--font-roman);
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.boutique-value {
    font-family: var(--font-serif);
    color: var(--cream);
    font-size: 17px;
    line-height: 1.55;
}
.boutique-block a {
    font-family: var(--font-serif);
    color: var(--cream);
    font-size: 17px;
    border-bottom: 1px solid var(--gold-soft);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}
.boutique-block a:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.boutique-footnote {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--paper-dark);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.65;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 50px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    font-family: var(--font-roman);
    font-size: 13px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-101%);
    transition: transform 0.5s ease;
    z-index: 0;
}
.cta-button span, .cta-button i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}
.cta-button:hover::before { transform: translateX(0); }
.cta-button:hover span, .cta-button:hover i { color: var(--brg-darkest); }

/* =========================================================
   FOOTER
   ========================================================= */
.main-footer {
    background: var(--brg-darkest);
    padding: 80px 0 35px;
    border-top: 1px solid rgba(201,164,76,0.2);
    color: var(--paper-dark);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}
.footer-mark {
    height: 80px;
    width: auto;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}
.brand-text.large {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 30px;
    letter-spacing: 0.05em;
    font-style: italic;
    font-weight: 500;
}
.footer-tagline {
    font-family: var(--font-roman);
    color: var(--paper-dark);
    letter-spacing: 0.3em;
    font-size: 11px;
    text-transform: uppercase;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: var(--font-roman);
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a, .footer-col span {
    color: var(--paper-dark);
    font-family: var(--font-serif);
    font-size: 16px;
    transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--gold); }

.footer-col ul.social {
    display: flex;
    gap: 18px;
}
.footer-col ul.social li { margin: 0; }
.footer-col ul.social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201,164,76,0.4);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.footer-col ul.social a:hover {
    border-color: var(--gold);
    background: rgba(201,164,76,0.1);
}

.footer-divider {
    color: var(--gold-soft);
    width: 100%;
    margin: 20px 0;
    opacity: 0.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--paper-dark);
    font-size: 13px;
    font-family: var(--font-serif);
    letter-spacing: 0.05em;
}
.footer-motto {
    font-family: var(--font-italic);
    color: var(--gold);
    font-style: italic;
    letter-spacing: 0.2em;
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1200px) {
    .nav-center ul { gap: 18px; }
    .nav-center li + li::before { margin-right: 18px; margin-left: -18px; transform: translateX(-9px); }
    .nav-center a { font-size: 10.5px; letter-spacing: 0.18em; }
}

@media (max-width: 1024px) {
    .kollektion-grid, .accessoires-grid { grid-template-columns: repeat(2, 1fr); }
    .manifest-grid, .atelier-grid { grid-template-columns: 1fr; gap: 50px; }
    .atelier-grid.reverse .atelier-text { order: 2; }
    .atelier-grid.reverse .atelier-visual { order: 1; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: repeat(3, 1fr); }
    .nav-center { display: none; }
    .nav-right { display: none; }
    .mobile-toggle { display: flex; }
    .main-nav { justify-content: space-between; }
    .boutique-grid { grid-template-columns: 1fr; gap: 30px; }
    .boutique-card-inner { padding: 50px 30px; }
    .hero-ornament-frame { inset: 30px; }
    .visual-card { max-width: 480px; margin: 0 auto; }
    .brand-video-content { bottom: 50px; }
    .placeholder-corner { width: 36px; height: 36px; }
    .placeholder-corner.tl, .placeholder-corner.tr { top: 24px; }
    .placeholder-corner.bl, .placeholder-corner.br { bottom: 24px; }
    .placeholder-corner.tl, .placeholder-corner.bl { left: 24px; }
    .placeholder-corner.tr, .placeholder-corner.br { right: 24px; }
}

@media (max-width: 768px) {
    body { font-size: 16px; }
    .container { padding: 0 24px; }
    section { padding: 90px 0; }
    .hero { min-height: 90vh; padding: 110px 24px 70px; }
    .hero-logo-wrap { max-width: 320px; }
    .hero-ornament-frame { inset: 20px; }
    .display-title { margin-bottom: 40px; }
    .footer-cols { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { justify-content: center; text-align: center; }
    .stamp-seal { right: 10px; bottom: -30px; width: 100px; height: 100px; }
    .seal-inner { width: 84px; height: 84px; }
    .seal-center { font-size: 20px; }
    .quote-break blockquote { font-size: 26px; }
    .detail-row { grid-template-columns: 1fr; gap: 6px; }
    .boutique { padding: 100px 0; }
    .nav-logo { height: 32px; }
    .brand-video { height: 70vh; min-height: 500px; }
    .placeholder-icon { width: 70px; height: 70px; margin-bottom: 16px; }
    .placeholder-label { font-size: 10px; letter-spacing: 0.3em; }
    .brand-video-content { bottom: 40px; }
}

@media (max-width: 480px) {
    .kollektion-grid, .accessoires-grid { grid-template-columns: 1fr; }
    .hero-flourish { width: 160px; }
    .hero-logo-wrap { max-width: 260px; }
    .cta-button { padding: 16px 30px; font-size: 11px; }
    .boutique-card-inner { padding: 40px 20px; }
    .placeholder-corner { width: 28px; height: 28px; }
    .placeholder-corner.tl, .placeholder-corner.tr { top: 16px; }
    .placeholder-corner.bl, .placeholder-corner.br { bottom: 16px; }
    .placeholder-corner.tl, .placeholder-corner.bl { left: 16px; }
    .placeholder-corner.tr, .placeholder-corner.br { right: 16px; }
}
