/* === DESIGN TOKENS (matching aminakosmetik.at) === */
:root {
    --ink:        #17160f;
    --ink-2:      #2b2820;
    --gold:       #c9a96e;
    --gold-2:     #b2904f;
    --paper:      #ffffff;
    --paper-2:    #f5f5f5;
    --muted:      #6b6758;
    --rule:       rgba(23, 22, 15, 0.15);
    --font-disp:  'Cormorant Garamond', 'Times New Roman', serif;
    --font-sans:  'Manrope', ui-sans-serif, system-ui, sans-serif;
    --container:  1440px;
    --r:          0.5rem;
    --r-lg:       1rem;
    --shadow:     0 4px 24px rgba(23,22,15,0.07);
    --shadow-lg:  0 12px 48px rgba(23,22,15,0.12);
    --t:          0.25s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "ss01", "cv11";
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--ink); color: var(--paper); }

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
    font-family: var(--font-disp);
    font-feature-settings: "liga", "dlig";
    line-height: 1.15;
    color: var(--ink);
}
h1 { font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 3.5vw, 3.5rem); font-weight: 400; }
h3 { font-size: 1.5rem; font-weight: 400; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* Kicker label style */
.kicker {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all var(--t);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn-primary {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}
.btn-primary:hover {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn-gold {
    background: var(--gold);
    color: var(--paper);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-2);
    border-color: var(--gold-2);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201,169,110,0.3);
}
.btn-outline {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-outline-light {
    background: transparent;
    color: var(--paper);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
}
.btn-text {
    padding: 0;
    color: var(--gold);
    font-weight: 600;
    border: none;
    background: none;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.btn-text:hover { color: var(--gold-2); gap: 12px; }

/* === SECTIONS === */
section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.section-title { margin-bottom: 16px; font-size: clamp(2rem, 3vw, 3rem); }
.section-subtitle {
    color: var(--muted);
    max-width: 500px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.75;
}

/* === HEADER === */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(245,241,234,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--rule);
}

/* Scroll progress bar */
.header-progress {
    position: absolute;
    bottom: 0; left: 0;
    height: 1px;
    width: 100%;
    background: var(--gold);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 2;
}

/* Three-column grid: nav-left | logo | nav-right */
.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    height: 72px;
    gap: 16px;
}

/* CENTER: Logo */
.site-branding { display: flex; justify-content: center; align-items: center; }
.site-branding a,
.site-branding .custom-logo-link { display: flex; align-items: center; }
.site-branding img,
.site-branding .custom-logo {
    height: 40px !important;
    width: auto !important;
    max-width: 180px !important;
    display: block;
}
.logo-text-fallback {
    font-family: var(--font-disp);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.05em;
}

/* NAV LINK shared style */
.nav-link {
    color: var(--ink);
    opacity: .8;
    transition: opacity var(--t);
}
.nav-link:hover { opacity: 1; }

/* LEFT nav */
.nav-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

/* RIGHT nav */
.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}
.nav-right-link { white-space: nowrap; }

/* Small pill buttons in header */
.btn-pill-sm { padding: 8px 18px; font-size: 10px; }

/* Buchen button */
.nav-book {
    background: var(--ink);
    color: var(--paper);
    border-radius: 9999px;
    padding: 9px 20px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: opacity var(--t);
    white-space: nowrap;
}
.nav-book:hover { opacity: .88; }

/* Anmelden outline pill */
.nav-login {
    border: 1px solid var(--ink);
    border-radius: 9999px;
    padding: 8px 16px;
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: background var(--t), color var(--t);
    opacity: 1;
}
.nav-login:hover { background: var(--ink); color: var(--paper); }

/* Mobile hamburger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}
.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    transition: all var(--t);
    transform-origin: center;
}
.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* === MOBILE DRAWER === */
.mobile-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(340px, 88vw);
    background: var(--paper);
    z-index: 200;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.32,.72,0,1);
    display: flex;
    flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(23,22,15,.45);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
}
.mobile-drawer-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-drawer-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
}
.mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--rule);
}
.mobile-drawer-logo .site-branding { justify-content: flex-start; }
.mobile-drawer-logo img,
.mobile-drawer-logo .custom-logo { height: 32px !important; }
.mobile-drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--ink);
    opacity: .7;
    transition: opacity var(--t);
}
.mobile-drawer-close:hover { opacity: 1; }

.mobile-drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 32px 0;
    flex: 1;
    gap: 4px;
}
.mobile-nav-link {
    display: block;
    font-family: var(--font-disp);
    font-size: 2rem;
    font-weight: 300;
    color: var(--ink);
    padding: 8px 0;
    border-bottom: 1px solid var(--rule);
    transition: color var(--t), padding-left var(--t);
    opacity: .85;
}
.mobile-nav-link:hover { opacity: 1; padding-left: 8px; color: var(--gold); }
.mobile-nav-link:last-child { border-bottom: none; }

.mobile-drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
}
.mobile-drawer-book { width: 100%; justify-content: center; padding: 14px 24px; font-size: 11px; }
.mobile-drawer-social { text-align: center; opacity: .5; }

/* === RESPONSIVE HEADER === */
@media (max-width: 900px) {
    .nav-left,
    .nav-right-link,
    .nav-login { display: none; }
    .mobile-menu-toggle { display: flex; }
    .header-inner { grid-template-columns: auto 1fr auto; padding: 0 20px; height: 64px; }
    .nav-left { display: none; }
    .site-branding { justify-content: flex-start; }
    .nav-right { gap: 12px; }
}
@media (min-width: 901px) {
    .mobile-menu-toggle { display: none; }
}

/* === HERO === */
.hero {
    min-height: 100vh;
    padding-top: 68px;
    background: #191919;
    color: var(--paper);
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #2b2820 0%, #191919 60%, #17160f 100%);
}
.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.55;
}
.hero .container {
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
    padding-top: 80px;
    width: 100%;
}
.hero-inner {
    max-width: 700px;
}
.hero-label {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 24px;
    display: block;
}
.hero-title {
    font-family: var(--font-disp);
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 400;
    line-height: 0.95;
    color: var(--paper);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}
.hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 48px;
    max-width: 420px;
    line-height: 1.8;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 64px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
.hero-meta a { color: rgba(255,255,255,0.4); transition: color var(--t); }
.hero-meta a:hover { color: var(--gold); }

/* === TRUST STRIP === */
.trust-strip {
    padding: 0;
    background: var(--ink);
    color: var(--paper);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid rgba(255,255,255,0.06);
}
.trust-item {
    padding: 40px 32px;
    border-right: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}
.trust-number {
    display: block;
    font-family: var(--font-disp);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 8px;
    line-height: 1;
}
.trust-label {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

/* === SERVICES === */
.services { background: var(--paper-2); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.service-card {
    background: var(--paper);
    padding: 48px 36px;
    transition: background var(--t);
    position: relative;
}
.service-card:hover { background: #fdf9f4; }
.service-icon {
    color: var(--gold);
    margin-bottom: 28px;
    opacity: 0.9;
}
.service-card h3 {
    font-family: var(--font-disp);
    margin-bottom: 14px;
    font-size: 1.4rem;
    font-weight: 400;
}
.service-card p {
    color: var(--muted);
    margin-bottom: 28px;
    font-size: 0.9rem;
    line-height: 1.75;
}

/* === ABOUT === */
.about { background: var(--paper); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}
.about-image-wrap {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--paper-2);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #e8ddd0 0%, var(--gold) 60%, var(--gold-2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-family: var(--font-disp);
    font-size: 4rem;
}
.about-badge {
    position: absolute;
    top: 32px; right: -20px;
    background: var(--ink);
    color: var(--paper);
    padding: 20px 24px;
    border-radius: var(--r-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.about-badge-num {
    display: block;
    font-family: var(--font-disp);
    font-size: 2.2rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}
.about-badge-txt { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; }
.about-content .section-label { text-align: left; margin-bottom: 12px; }
.about-content h2 { margin-bottom: 28px; }
.about-content p { color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
.about-features { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.about-feature { display: flex; align-items: center; gap: 14px; font-size: 0.9rem; color: var(--ink); }
.feature-check {
    width: 20px; height: 20px;
    background: var(--gold);
    color: var(--paper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}
.about-owner {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--rule);
}
.owner-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-disp);
    font-size: 1.3rem;
    color: var(--paper);
    flex-shrink: 0;
}
.owner-info strong { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.owner-info span { font-size: 0.8rem; color: var(--muted); }

/* === PRODUCTS === */
.products { background: var(--paper-2); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.product-card {
    background: var(--paper);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--rule);
    transition: all var(--t);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-image {
    aspect-ratio: 1;
    background: var(--paper-2);
    overflow: hidden;
    position: relative;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-image img { transform: scale(1.04); }
.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-disp);
    font-size: 1.2rem;
    color: var(--muted);
    letter-spacing: 0.05em;
    background: linear-gradient(145deg, #f0ebe3 0%, #e8ddd0 100%);
}
.product-info { padding: 28px; }
.product-category { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 8px; display: block; }
.product-name { font-family: var(--font-disp); font-size: 1.3rem; font-weight: 400; margin-bottom: 10px; }
.product-desc { color: var(--muted); font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; }

/* === TESTIMONIALS === */
.testimonials { background: var(--paper); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--paper-2);
    padding: 40px;
    border-radius: var(--r-lg);
    border: 1px solid var(--rule);
    transition: all var(--t);
}
.testimonial-card:hover { background: #fdf9f4; box-shadow: var(--shadow); }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 20px; letter-spacing: 4px; }
.testimonial-card p {
    color: var(--ink-2);
    font-style: italic;
    margin-bottom: 28px;
    line-height: 1.85;
    font-size: 0.95rem;
    font-family: var(--font-disp);
    font-size: 1.05rem;
}
.testimonial-author strong { display: block; color: var(--ink); font-weight: 600; font-size: 0.875rem; margin-bottom: 4px; }
.testimonial-author span { font-size: 11px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* === BOOKING === */
.booking {
    background: var(--ink);
    color: var(--paper);
    text-align: center;
}
.booking .section-label { color: var(--gold); }
.booking .section-title { color: var(--paper); }
.booking .section-subtitle { color: rgba(255,255,255,0.5); }
.booking-inner { max-width: 640px; margin: 0 auto; }
.contact-options {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.contact-option {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 14px 26px;
    border-radius: 100px;
    color: var(--paper);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all var(--t);
}
.contact-option:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}
.contact-icon { display: flex; align-items: center; opacity: 0.8; }
.hours-info {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.hours-item {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.hours-day { color: rgba(255,255,255,0.4); margin-bottom: 4px; display: block; }
.hours-time { color: var(--gold); font-weight: 600; }

/* === FOOTER === */
.site-footer {
    background: #0e0d09;
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
    font-family: var(--font-disp);
    font-size: 1.6rem;
    color: var(--paper);
    margin-bottom: 12px;
    display: inline-block;
}
.footer-tagline { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 24px; display: block; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.4); line-height: 1.8; margin-bottom: 28px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.45);
    transition: all var(--t);
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.08); }
.footer-col h4 {
    font-family: var(--font-sans);
    color: var(--paper);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.footer-menu li { margin-bottom: 12px; }
.footer-menu a { color: rgba(255,255,255,0.4); font-size: 0.875rem; transition: color var(--t); }
.footer-menu a:hover { color: var(--gold); }
.footer-contact-list li { margin-bottom: 10px; }
.footer-contact-list a { color: rgba(255,255,255,0.4); font-size: 0.875rem; transition: color var(--t); }
.footer-contact-list a:hover { color: var(--gold); }
.footer-contact-list span { color: rgba(255,255,255,0.4); font-size: 0.875rem; }
.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.25);
}
.footer-bottom a { color: rgba(255,255,255,0.25); transition: color var(--t); }
.footer-bottom a:hover { color: var(--gold); }
.footer-links { display: flex; gap: 24px; }

/* === BLOG & PAGE === */
.main-content { padding-top: 68px; }
.page-content { max-width: 800px; margin: 0 auto; padding: 80px 0; }
.page-title { font-family: var(--font-disp); font-size: 3rem; margin-bottom: 48px; font-weight: 400; }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.post-card { background: var(--paper); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--rule); transition: all var(--t); }
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.post-thumbnail img { width: 100%; height: 220px; object-fit: cover; }
.post-content { padding: 28px; }
.post-title { font-family: var(--font-disp); font-size: 1.25rem; font-weight: 400; margin-bottom: 8px; }
.post-title a { color: var(--ink); transition: color var(--t); }
.post-title a:hover { color: var(--gold); }
.post-meta { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.post-excerpt { color: var(--muted); font-size: 0.875rem; margin-bottom: 20px; }
.entry-content { font-size: 1.05rem; line-height: 1.85; }
.entry-content h2, .entry-content h3 { margin: 48px 0 16px; }
.entry-content p { margin-bottom: 24px; }
.entry-content ul, .entry-content ol { padding-left: 28px; margin-bottom: 24px; }
.entry-content li { margin-bottom: 10px; }
.entry-content img { border-radius: var(--r-lg); margin: 32px 0; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 60px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .container { padding: 0 28px; }
}
@media (max-width: 768px) {
    section { padding: 64px 0; }
    .container { padding: 0 20px; }

    .site-nav {
        display: none;
        position: fixed;
        top: 68px; left: 0; right: 0; bottom: 0;
        background: var(--paper);
        padding: 48px 24px;
        overflow-y: auto;
        z-index: 99;
    }
    .site-nav.open { display: block; }
    .site-nav.open .nav-menu { flex-direction: column; gap: 4px; }
    .site-nav.open .nav-menu li a {
        display: block;
        font-family: var(--font-disp);
        font-size: 2rem;
        letter-spacing: 0.02em;
        text-transform: none;
        padding: 12px 0;
        border-bottom: 1px solid var(--rule);
        opacity: 1;
        font-weight: 400;
    }
    .mobile-menu-toggle { display: flex; }
    .btn-book { display: none; }
    /* Mobile: 3 cols collapse to logo + hamburger */
    .header-inner { grid-template-columns: 1fr auto; }
    .site-nav { order: -1; grid-column: 1 / -1; }

    .hero { min-height: 90vh; }
    .hero-title { font-size: 3.5rem; }
    .hero-meta { display: none; }

    .trust-items { grid-template-columns: repeat(2, 1fr); border-left: none; }
    .trust-item { border: 1px solid rgba(255,255,255,0.06); border-radius: 0; }

    .services-grid { grid-template-columns: 1fr; gap: 1px; }

    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image-wrap { aspect-ratio: 16/9; }
    .about-badge { display: none; }

    .products-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .footer-links { justify-content: center; }
    .posts-grid { grid-template-columns: 1fr; }
    .contact-options { flex-direction: column; align-items: stretch; }
    .contact-option { justify-content: center; }
    .hours-info { flex-direction: column; align-items: center; gap: 20px; }
    .hero-buttons { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2.8rem; }
    .trust-items { grid-template-columns: 1fr 1fr; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
}

/* ===== SHOWREEL ===== */
.showreel {
    position: relative;
    overflow: hidden;
    background: #191919;
    color: #fff;
    width: calc(100% - 48px);
    max-width: 1440px;
    margin: 72px auto 0;
    height: 300px;
}
@media (min-width: 540px)  { .showreel { height: 380px; } }
@media (min-width: 768px)  {
    .showreel {
        aspect-ratio: 2.6 / 1;
        height: auto;
        width: calc(100% - 80px);
    }
}
@media (min-width: 1200px) { .showreel { width: calc(100% - 120px); } }

/* Slides */
.sr-slides { position: absolute; inset: 0; }
.sr-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
}
.sr-slide.active { opacity: 1; }
.sr-media {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.sr-slide::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
}

/* Prev / Next */
.sr-side {
    position: absolute; top: 0; bottom: 0; z-index: 20;
    width: 56px;
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
@media (min-width: 768px) { .sr-side { display: flex; } }
.sr-prev { left: 0; }
.sr-next { right: 0; }
.sr-side:hover { color: #fff; background: rgba(255,255,255,0.06); }
.sr-side span {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 500;
    writing-mode: vertical-rl;
}
.sr-prev span { transform: rotate(180deg); }

/* Content */
.sr-content {
    position: absolute; inset: 0; z-index: 10;
    max-width: 1440px; margin: 0 auto;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 16px 20px 16px;
    transition: opacity 0.25s ease;
}
@media (min-width: 768px) {
    .sr-content { padding: 32px 80px 32px; }
}
.sr-content.sr-fade { opacity: 0; }

/* Counter */
.sr-counter {
    display: flex; align-items: baseline; gap: 6px;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.85);
}
.sr-cur {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}
@media (min-width: 768px) { .sr-cur { font-size: 1.75rem; } }
.sr-sep { opacity: 0.4; font-size: 0.75rem; }
.sr-tot { opacity: 0.55; font-size: 0.85rem; }

/* Title */
.sr-title {
    font-family: var(--font-sans);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.02em;
    color: #fff;
    text-transform: lowercase;
    font-size: clamp(1.6rem, 5vw, 3.8rem);
    margin: 0 0 8px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.sr-t1, .sr-t2 { display: block; }

/* Description */
.sr-desc {
    display: none;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    max-width: 420px;
    line-height: 1.6;
    margin: 0 0 10px;
}
@media (min-width: 768px) { .sr-desc { display: block; } }

/* CTAs */
.sr-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
    justify-content: center;
}
@media (min-width: 768px) { .sr-ctas { justify-content: flex-start; } }
.sr-btn {
    display: inline-flex; align-items: center;
    background: #fff;
    color: #17160f;
    border: 2px solid transparent;
    border-radius: 100px;
    padding: 7px 16px;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    white-space: nowrap;
}
@media (min-width: 768px) { .sr-btn { padding: 9px 22px; font-size: 11px; } }
.sr-btn:hover { border-color: #17160f; background: transparent; color: #fff; }

/* Bottom meta */
.sr-meta {
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 8px;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.75);
    border-top: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) { .sr-meta { display: flex; } }
.sr-slash { opacity: 0.45; margin: 0 4px; }

/* Footer row */
.sr-footer {
    display: none;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 10px;
}
@media (min-width: 768px) { .sr-footer { display: flex; } }
.sr-about {
    font-size: 11px;
    letter-spacing: 0.28em;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s, text-decoration 0.2s;
}
.sr-about:hover { color: #fff; text-decoration: underline; text-underline-offset: 6px; }
.sr-socials { display: flex; align-items: center; gap: 16px; }
.sr-socials a { color: rgba(255,255,255,0.7); transition: opacity 0.2s; display: flex; }
.sr-socials a:hover { opacity: 0.5; }

/* Mobile dots */
.sr-dots {
    position: absolute;
    bottom: 16px; left: 20px;
    z-index: 20;
    display: flex; align-items: center; gap: 8px;
}
@media (min-width: 768px) { .sr-dots { display: none; } }
.sr-dot {
    height: 1px;
    width: 16px;
    background: rgba(255,255,255,0.4);
    border: none; cursor: pointer;
    transition: width 0.3s, background 0.3s;
    padding: 0;
}
.sr-dot.active { width: 40px; background: #fff; }

/* sr-only utility */
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   SHARED LAYOUT HELPERS
   ============================================================ */
.lp-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}
@media (min-width: 768px) { .lp-container { padding: 0 40px; } }

.font-display { font-family: var(--font-disp); }

.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 9999px;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    transition: opacity .2s, background .2s, color .2s;
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 500;
    cursor: pointer;
    border: none;
}
.btn-pill-dark  { background: var(--ink); color: var(--paper); }
.btn-pill-dark:hover { opacity: .88; }
.btn-pill-outline { background: transparent; border: 1px solid var(--ink); color: var(--ink); }
.btn-pill-outline:hover { background: var(--ink); color: var(--paper); }
.btn-pill-gold  { background: var(--gold); color: var(--ink); font-weight: 600; }
.btn-pill-gold:hover { opacity: .90; }
.btn-pill-white-outline { background: transparent; border: 1px solid rgba(255,255,255,.3); color: #fff; }
.btn-pill-white-outline:hover { background: rgba(255,255,255,.1); }

/* ============================================================
   DISTRIBUTION BADGE
   ============================================================ */
.dist-badge {
    border-bottom: 1px solid var(--rule);
    padding: 28px 24px;
}
.dist-badge-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.dist-badge-label {
    color: var(--ink);
    opacity: .55;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-family: var(--font-sans);
    margin: 0;
}
.dist-badge-countries {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 36px;
    font-size: 15px;
    font-family: var(--font-sans);
    color: var(--ink);
}
.dist-country {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    opacity: .9;
}
.dist-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}
.dist-flag svg { display: block; border-radius: 50%; }

/* ============================================================
   B2B BENEFITS
   ============================================================ */
.b2b-section {
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    padding: 80px 0;
}
@media (min-width: 768px) { .b2b-section { padding: 128px 0; } }

.b2b-heading {
    font-family: var(--font-disp);
    font-size: clamp(2rem, 5.5vw, 4.5rem);
    line-height: .95;
    font-weight: 300;
    color: var(--ink);
}
.b2b-heading em, .b2b-heading-gold {
    font-style: italic;
    color: var(--gold);
}
.b2b-lead {
    margin-top: 24px;
    max-width: 672px;
    font-size: 17px;
    line-height: 1.7;
    opacity: .8;
    font-family: var(--font-sans);
}
.b2b-cards {
    margin-top: 56px;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 20px;
    margin-left: -24px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 16px;
}
.b2b-cards::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
    .b2b-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        overflow-x: visible;
        margin-left: 0; padding-left: 0; padding-right: 0; padding-bottom: 0;
        gap: 24px;
    }
}
@media (min-width: 1024px) {
    .b2b-cards { grid-template-columns: 1fr 1fr 1fr; }
}
.b2b-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    flex: 0 0 85%;
    scroll-snap-align: start;
    box-shadow: 0 2px 18px -6px rgba(23,22,15,.07);
    transition: transform .5s ease, box-shadow .5s ease;
}
@media (min-width: 768px) { .b2b-card { flex: unset; padding: 36px; } }
.b2b-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -12px rgba(23,22,15,.14);
}
.b2b-card-stripe {
    position: absolute;
    top: 0;
    left: 36px; right: 36px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,169,110,.5), transparent);
}
.b2b-card-num {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 10px;
    opacity: .3;
    transition: opacity .5s;
}
.b2b-card:hover .b2b-card-num { opacity: .6; }
.b2b-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    border-radius: 9999px;
    background: rgba(201,169,110,.1);
    color: var(--gold);
    margin-bottom: 20px;
    transition: background .5s;
}
.b2b-card:hover .b2b-card-icon { background: rgba(201,169,110,.2); }
.b2b-card-title {
    font-family: var(--font-disp);
    font-size: 20px;
    line-height: 1.2;
    color: var(--ink);
    font-weight: 400;
}
@media (min-width: 768px) { .b2b-card-title { font-size: 22px; } }
.b2b-card-div {
    margin-top: 12px;
    height: 1px;
    width: 32px;
    background: rgba(201,169,110,.7);
    transition: width .5s ease;
}
.b2b-card:hover .b2b-card-div { width: 64px; }
.b2b-card-body {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(23,22,15,.7);
    font-family: var(--font-sans);
}
.b2b-ctas {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* ============================================================
   ZENA STANDARDS
   ============================================================ */
.standards-section {
    background: var(--paper-2);
    border-bottom: 1px solid var(--rule);
    padding: 80px 0;
}
@media (min-width: 768px) { .standards-section { padding: 128px 0; } }

.standards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
@media (min-width: 768px) {
    .standards-grid {
        grid-template-columns: 4fr 8fr;
        gap: 48px;
        align-items: center;
    }
}
.standards-kicker { opacity: .6; display: block; margin-bottom: 16px; }
.standards-heading {
    font-family: var(--font-disp);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    line-height: 1.15;
    font-weight: 300;
    color: var(--ink);
}
.standards-body {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    font-family: var(--font-sans);
}
.standards-cta { margin-top: 28px; }

.standards-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 768px) {
    .standards-cards { grid-template-columns: repeat(3, 1fr); }
}
.std-card {
    border: 1px solid var(--rule);
    background: var(--paper);
    padding: 24px;
}
.std-card-icon {
    color: var(--gold);
    margin-bottom: 12px;
}
.std-card-title {
    font-family: var(--font-disp);
    font-size: 18px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 8px;
}
.std-card-body {
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
    font-family: var(--font-sans);
}
.standards-certs-cta { margin-top: 16px; text-align: center; }

/* Stats row */
.stats-row {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}
@media (min-width: 768px) {
    .stats-row { grid-template-columns: repeat(4, 1fr); }
}
.stat-cell {
    padding: 40px 16px;
    text-align: center;
    border-right: 1px solid var(--rule);
}
.stat-cell:last-child { border-right: none; }
@media (max-width: 767px) {
    .stat-cell:nth-child(2n) { border-right: none; }
    .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--rule); }
}
.stat-icon { color: var(--ink); display: flex; justify-content: center; margin-bottom: 12px; }
.stat-number {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1;
    font-weight: 300;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
}
.stat-label { margin-top: 8px; opacity: .6; font-size: 10px; }
.standards-tagline {
    margin-top: 48px;
    text-align: center;
    font-size: 17px;
    font-style: italic;
    color: var(--muted);
}

/* ============================================================
   AMINA EXPERTISE
   ============================================================ */
.expertise-section {
    background: var(--ink);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 80px 0;
}
@media (min-width: 768px) { .expertise-section { padding: 128px 0; } }

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
@media (min-width: 768px) {
    .expertise-grid { grid-template-columns: 8fr 4fr; gap: 48px; }
}
.expertise-text { order: 2; }
@media (min-width: 768px) { .expertise-text { order: 1; } }
.expertise-photo { order: 1; }
@media (min-width: 768px) { .expertise-photo { order: 2; } }

.expertise-kicker { color: var(--gold); opacity: .8; display: block; margin-bottom: 16px; }
.expertise-heading {
    font-family: var(--font-disp);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    line-height: 1.15;
    font-weight: 300;
    color: #fff;
}
.expertise-subtitle {
    margin-top: 16px;
    font-size: 17px;
    color: rgba(255,255,255,.6);
    font-style: italic;
    font-family: var(--font-disp);
}
.credentials-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 640px) { .credentials-grid { grid-template-columns: 1fr 1fr; gap: 24px 32px; } }
.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.credential-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.credential-title { font-size: 14px; font-weight: 500; color: #fff; font-family: var(--font-sans); }
.credential-sub { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; font-family: var(--font-sans); }

.expertise-ctas { margin-top: 40px; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
@media (min-width: 768px) { .expertise-ctas { justify-content: flex-start; } }

.expertise-quote {
    margin-top: 40px;
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    font-style: italic;
    line-height: 1.4;
    color: rgba(255,255,255,.8);
    max-width: 480px;
    border: none;
    padding: 0;
}

.expertise-photo-wrap {
    position: relative;
    aspect-ratio: 3/4;
    max-width: 340px;
    margin: 0 auto;
    overflow: hidden;
}
.expertise-photo-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.expertise-photo-border {
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(201,169,110,.3);
    pointer-events: none;
}

/* ============================================================
   COLLECTIONS
   ============================================================ */
.collections-section {
    background: var(--ink-2, #2b2820);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 80px 0;
}
@media (min-width: 768px) { .collections-section { padding: 128px 0; } }

.collections-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 48px;
}
@media (min-width: 768px) {
    .collections-header { grid-template-columns: 3fr 9fr; align-items: end; }
}
.collections-kicker { opacity: .7; align-self: start; margin-top: 8px; }
.collections-heading {
    font-family: var(--font-disp);
    font-size: clamp(2.5rem, 7vw, 7rem);
    line-height: .9;
    font-weight: 300;
    color: #fff;
}
.collections-heading-gold { font-style: italic; color: var(--gold); }

.collections-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 16px;
    margin-left: -24px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 8px;
}
.collections-list::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
    .collections-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow-x: visible;
        margin-left: 0; padding-left: 0; padding-right: 0; padding-bottom: 0;
        gap: 0;
        border-top: 1px solid rgba(255,255,255,.15);
    }
}
.collection-item {
    flex: 0 0 85%;
    scroll-snap-align: start;
    border: 1px solid rgba(255,255,255,.15);
}
@media (min-width: 768px) {
    .collection-item {
        flex: unset;
        border: none;
        border-bottom: 1px solid rgba(255,255,255,.15);
        border-right: 1px solid rgba(255,255,255,.15);
    }
    .collection-item:nth-child(3n) { border-right: none; }
}
.collection-link {
    display: block;
    padding: 24px;
    text-decoration: none;
    color: #fff;
}
@media (min-width: 768px) { .collection-link { padding: 32px; } }
.collection-link:hover .collection-name { font-style: italic; }
.collection-link:hover .collection-open { opacity: 1; }
.collection-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: .7;
    margin-bottom: 32px;
}
.collection-open { opacity: 0; transition: opacity .3s; font-size: 10px; }
.collection-image-wrap {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.05);
}
.collection-image-wrap img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 32px;
    transition: transform .7s ease;
    mix-blend-mode: multiply;
    filter: brightness(1.1);
}
.collection-link:hover .collection-image-wrap img { transform: scale(1.04); }
.collection-image-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(23,22,15,.7);
    color: #fff;
    font-size: 10px;
    backdrop-filter: blur(4px);
}
.collection-footer { margin-top: 24px; }
.collection-name {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    font-weight: 300;
    color: #fff;
    transition: font-style .3s;
}
.collection-note { margin-top: 8px; opacity: .7; }

/* ============================================================
   FEATURED / HOT DROPS
   ============================================================ */
.featured-section {
    background: var(--paper-2);
    border-bottom: 1px solid var(--rule);
    padding: 80px 0;
}
@media (min-width: 768px) { .featured-section { padding: 128px 0; } }

.featured-header { margin-bottom: 48px; }
@media (min-width: 768px) { .featured-header { margin-bottom: 64px; } }
.featured-kicker { opacity: .6; display: block; margin-bottom: 12px; }
.featured-heading {
    font-family: var(--font-disp);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: .95;
    font-weight: 300;
    color: var(--ink);
}
.featured-heading em, .featured-heading-gold { font-style: italic; color: var(--gold); }
.featured-body { margin-top: 16px; font-size: 15px; color: var(--muted); font-family: var(--font-sans); max-width: 480px; }

.featured-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 4px;
    margin-left: -24px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 8px;
}
.featured-list::-webkit-scrollbar { display: none; }
@media (min-width: 640px) {
    .featured-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow-x: visible;
        margin-left: 0; padding-left: 0; padding-right: 0; padding-bottom: 0;
        gap: 1px;
        background: var(--rule);
        border: 1px solid var(--rule);
    }
}
.featured-item {
    flex: 0 0 82%;
    scroll-snap-align: start;
    border: 1px solid var(--rule);
    background: var(--paper);
}
@media (min-width: 640px) { .featured-item { flex: unset; border: none; } }
.featured-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    text-decoration: none;
    color: var(--ink);
}
@media (min-width: 768px) { .featured-link { padding: 28px; } }
.featured-link:hover .featured-name { font-style: italic; }
.featured-item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.featured-code { opacity: .6; }
.featured-badge { font-size: 10px; letter-spacing: .15em; }
.featured-image-wrap {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border: 1px solid var(--rule);
    background: var(--paper-2);
}
.featured-image-wrap img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 24px;
    mix-blend-mode: multiply;
    transition: transform .7s ease;
}
.featured-link:hover .featured-image-wrap img { transform: scale(1.04); }
.featured-image-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(23,22,15,.8);
    color: #fff;
    font-size: 10px;
    backdrop-filter: blur(4px);
}
.featured-info {
    margin-top: 24px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}
.featured-name {
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
    line-height: 1.2;
    font-weight: 300;
    transition: font-style .3s;
}
.featured-cta-label { opacity: 0; font-size: 10px; transition: opacity .3s; flex-shrink: 0; }
.featured-link:hover .featured-cta-label { opacity: 1; }
.featured-blurb {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.6;
    opacity: .7;
    font-family: var(--font-sans);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.featured-footer {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
}
.featured-stock { opacity: .6; }
.featured-view-label { opacity: 0; transition: opacity .3s; }
.featured-link:hover .featured-view-label { opacity: 1; }

/* ============================================================
   PARTNER FORM
   ============================================================ */
.partner-form-section {
    border-bottom: 1px solid var(--rule);
    padding: 40px 0;
}
@media (min-width: 768px) { .partner-form-section { padding: 96px 0; } }
.partner-form-inner { max-width: 900px; margin: 0 auto; }
.partner-form-heading {
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    line-height: 1.15;
    font-weight: 300;
    text-align: center;
    color: var(--ink);
    margin-bottom: 40px;
}
@media (min-width: 768px) { .partner-form-heading { margin-bottom: 56px; } }
.partner-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 640px) { .partner-form-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .partner-form-grid { grid-template-columns: 1fr 1fr 1fr; } }
.partner-field label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    font-family: var(--font-sans);
    color: var(--ink);
}
.partner-field label span { color: #f87171; margin-left: 4px; }
.partner-field input,
.partner-field select {
    width: 100%;
    background: #fbf9f5;
    border: 1px solid rgba(23,22,15,.1);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-family: var(--font-sans);
    color: var(--ink);
    outline: none;
    transition: border-color .2s;
    box-sizing: border-box;
    appearance: none;
}
@media (min-width: 768px) {
    .partner-field input, .partner-field select { padding: 14px 16px; font-size: 15px; }
}
.partner-field input:focus,
.partner-field select:focus { border-color: rgba(201,169,110,.5); }
.partner-form-submit {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
.partner-submit {
    padding: 14px 40px;
    font-size: 12px;
}
@media (min-width: 768px) { .partner-submit { padding: 16px 48px; } }
.partner-success {
    text-align: center;
    font-family: var(--font-disp);
    font-size: 1.5rem;
    color: var(--gold);
    padding: 40px 0;
}
.partner-error {
    text-align: center;
    color: #ef4444;
    font-size: 14px;
    margin-bottom: 24px;
    font-family: var(--font-sans);
}

/* ============================================================
   NAV DROPDOWN
   ============================================================ */
.nav-dd-wrap {
    position: relative;
}
.nav-dd-trigger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    font-family: var(--font-sans);
    color: var(--ink);
}
.nav-dd-chevron {
    flex-shrink: 0;
    transition: transform .2s ease;
    opacity: .7;
}
.nav-dd-wrap.open .nav-dd-chevron { transform: rotate(180deg); }
.nav-dd-trigger:hover .nav-dd-chevron { opacity: 1; }

.nav-dd-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 220px;
    background: var(--paper);
    border: 1px solid var(--rule);
    box-shadow: 0 8px 32px rgba(23,22,15,.10);
    z-index: 150;
    /* hidden by default */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease;
}
.nav-dd-wrap.open .nav-dd-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.nav-dd-panel ul { padding: 8px 0; }
.nav-dd-item {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--ink);
    transition: background var(--t), padding-left var(--t);
    opacity: .85;
}
.nav-dd-item:hover {
    background: var(--paper-2);
    opacity: 1;
    padding-left: 28px;
}

/* ============================================
   INNER PAGES (page-{slug}.php)
   ============================================ */
.inner-page { background: var(--paper); }

.inner-page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
    border-bottom: 1px solid var(--rule);
}
.inner-page-kicker { color: var(--gold); margin-bottom: 16px; display: inline-block; }
.inner-page-title {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
    color: var(--ink);
}
.inner-page-title em { font-style: italic; }
.inner-page-lead {
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.6;
    max-width: 680px;
    color: var(--ink);
    opacity: .8;
    margin: 0;
}

.inner-page-body { padding: 80px 0; }
.prose {
    max-width: 720px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink);
}
.prose h2 { font-family: var(--font-display); font-size: 32px; margin: 48px 0 16px; }
.prose h3 { font-family: var(--font-display); font-size: 24px; margin: 32px 0 12px; }
.prose p { margin: 0 0 18px; }
.prose ul, .prose ol { margin: 0 0 18px 24px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--gold); text-decoration: underline; }

.inner-page-cta-block {
    margin-top: 80px;
    padding: 60px 40px;
    background: var(--ink);
    color: var(--paper);
    text-align: center;
    border: 1px solid var(--ink);
}
.inner-page-cta-block .inner-page-cta-heading {
    font-size: clamp(28px, 3.5vw, 40px);
    margin: 0 0 12px;
    color: var(--paper);
}
.inner-page-cta-block p { opacity: .8; margin: 0 0 28px; }
.inner-page-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* ============================================
   TREATMENTS PAGE
   ============================================ */
.treatments-section { padding: 80px 0; }
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 720px) { .treatments-grid { grid-template-columns: 1fr; } }
.treatment-card {
    padding: 40px 32px;
    background: var(--paper);
    border: 1px solid var(--rule);
    transition: border-color var(--t), transform var(--t);
}
.treatment-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.treatment-card-icon { color: var(--gold); margin-bottom: 20px; }
.treatment-card-kicker { color: var(--gold); margin-bottom: 8px; display: block; }
.treatment-card-title { font-size: 28px; margin: 0 0 16px; line-height: 1.15; }
.treatment-card-div { width: 32px; height: 1px; background: var(--gold); margin: 0 0 16px; }
.treatment-card-desc { line-height: 1.6; opacity: .85; margin: 0 0 24px; }

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.products-page-section { padding: 80px 0; }
.products-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
@media (max-width: 1000px) { .products-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .products-page-grid { grid-template-columns: 1fr; } }

.product-page-card {
    display: flex;
    flex-direction: column;
}
.product-page-image-wrap {
    position: relative;
    background: var(--paper-2);
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 16px;
}
.product-page-image-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s ease;
}
.product-page-card:hover .product-page-image-wrap img { transform: scale(1.04); }
.product-page-image-bar {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 10px 16px;
    background: rgba(23,22,15,.85);
    color: var(--paper);
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: .12em;
}
.product-page-cat { color: var(--gold); margin-bottom: 6px; display: block; }
.product-page-name { font-size: 26px; margin: 0 0 12px; line-height: 1.2; }
.product-page-name a { color: var(--ink); }
.product-page-name a:hover { color: var(--gold); }
.product-page-desc { line-height: 1.6; opacity: .85; margin: 0 0 20px; flex: 1; }
.product-page-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================
   PRODUCT DETAIL
   ============================================ */
.product-detail-section { padding: 80px 0; }
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
@media (max-width: 900px) { .product-detail-grid { grid-template-columns: 1fr; gap: 32px; } }
.product-detail-image {
    background: var(--paper-2);
    aspect-ratio: 4/5;
    overflow: hidden;
}
.product-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-name { font-size: clamp(36px, 4vw, 52px); margin: 12px 0 4px; line-height: 1.05; }
.product-detail-cat { color: var(--ink); opacity: .7; margin: 0; font-size: 15px; }
.product-detail-div { width: 48px; height: 1px; background: var(--gold); margin: 24px 0; }
.product-detail-desc { font-size: 17px; line-height: 1.7; margin: 0 0 28px; }
.product-detail-h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin: 28px 0 14px;
    color: var(--ink);
}
.product-detail-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.product-detail-list li {
    padding: 10px 0 10px 24px;
    border-bottom: 1px solid var(--rule);
    position: relative;
    font-size: 15px;
}
.product-detail-list li:before {
    content: "";
    position: absolute;
    left: 0; top: 18px;
    width: 12px; height: 1px;
    background: var(--gold);
}
.product-detail-body { line-height: 1.7; margin: 0 0 24px; opacity: .9; }
.product-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

/* ============================================
   AUSBILDUNG (EDU)
   ============================================ */

/* hero */
.edu-hero-section { padding: 80px 0; background: var(--paper); }
.edu-hero-grid {
    display: grid;
    grid-template-columns: minmax(280px, 460px) 1fr;
    gap: 80px;
    align-items: start;
}
@media (max-width: 1000px) { .edu-hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.edu-hero-image-card {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--paper-2);
    overflow: hidden;
}
.edu-hero-image-card img {
    width: 100%; height: 100%; object-fit: cover;
}
.edu-hero-image-brand {
    position: absolute;
    top: 32px; right: 28px;
    text-align: right;
    color: var(--gold);
}
.edu-hero-image-zena {
    display: block;
    font-size: 36px;
    line-height: 1;
    letter-spacing: .02em;
    color: var(--gold);
    margin-bottom: 6px;
}
.edu-hero-image-sub {
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
    line-height: 1.5;
    color: var(--gold);
    font-family: var(--font-sans);
}
.edu-hero-image-caption {
    position: absolute;
    bottom: 32px; right: 32px;
    color: var(--gold);
    font-size: 22px;
    font-style: italic;
    line-height: 1.15;
    text-align: right;
}

.edu-hero-kicker { color: var(--gold); display: inline-block; margin-bottom: 20px; }
.edu-hero-heading {
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.2;
    margin: 0 0 24px;
    color: var(--ink);
}
.edu-hero-lead {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    opacity: .8;
    margin: 0 0 40px;
    max-width: 580px;
}

.edu-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 32px;
}
@media (max-width: 720px) { .edu-features-list { grid-template-columns: 1fr; gap: 24px; } }
.edu-feature-row {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 14px;
    align-items: start;
}
.edu-feature-icon-sun {
    color: var(--gold);
    margin-top: 2px;
}
.edu-feature-row-title {
    font-size: 17px;
    line-height: 1.3;
    margin: 0 0 8px;
    color: var(--ink);
}
.edu-feature-row-body {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink);
    opacity: .75;
    margin: 0;
}

/* calendar section */
.edu-calendar-section {
    padding: 80px 0;
    background: var(--paper);
    border-top: 1px solid var(--rule);
}
.edu-calendar-head {
    text-align: center;
    margin-bottom: 40px;
}
.edu-calendar-title {
    font-size: clamp(36px, 5vw, 56px);
    margin: 12px 0 12px;
    line-height: 1.1;
}
.edu-calendar-title em { font-style: italic; }
.edu-calendar-sub {
    font-size: 16px;
    color: var(--ink);
    opacity: .7;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.5;
}

.edu-calendar {
    max-width: 920px;
    margin: 0 auto 60px;
    background: var(--paper);
    border: 1px solid var(--rule);
    padding: 28px;
}
.edu-calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.edu-cal-arrow {
    width: 36px; height: 36px;
    background: transparent;
    border: none;
    color: var(--ink);
    font-size: 22px;
    cursor: pointer;
    opacity: .5;
}
.edu-cal-arrow:hover:not([disabled]) { opacity: 1; color: var(--gold); }
.edu-cal-arrow[disabled] { cursor: default; }
.edu-calendar-month {
    font-size: 22px;
    font-style: italic;
    color: var(--ink);
}
.edu-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
}
.edu-cal-day-header {
    background: var(--paper);
    text-align: center;
    padding: 12px 0;
    font-size: 10px;
    color: var(--ink);
    opacity: .55;
    font-family: var(--font-sans);
    letter-spacing: .14em;
}
.edu-cal-day {
    background: var(--paper);
    aspect-ratio: 1.4/1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 14px;
    color: var(--ink);
    font-family: var(--font-sans);
}
.edu-cal-day-out {
    background: var(--paper-2);
    color: var(--ink);
    opacity: .35;
}
.edu-cal-day-today {
    color: var(--gold);
    font-weight: 600;
}
.edu-cal-day-event { cursor: pointer; }
.edu-cal-dot {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

.edu-next-title {
    font-size: 28px;
    margin: 40px 0 24px;
    color: var(--ink);
}
.edu-next-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 720px) { .edu-next-grid { grid-template-columns: 1fr; } }
.edu-next-card {
    padding: 28px 28px 24px;
    border: 1px solid var(--rule);
    background: var(--paper);
    transition: border-color var(--t);
}
.edu-next-card:hover { border-color: var(--gold); }
.edu-next-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}
.edu-next-meta .text-gold { color: var(--gold); }
.edu-next-card-title { font-size: 22px; margin: 0 0 10px; }
.edu-next-card-div { width: 32px; height: 1px; background: var(--gold); margin: 0 0 14px; }
.edu-next-card-desc { font-size: 14px; line-height: 1.55; opacity: .8; margin: 0 0 16px; }
.edu-next-card-info {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.edu-next-card-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--ink);
    opacity: .75;
}
.edu-next-icon { color: var(--gold); font-size: 14px; }
.edu-next-dot { color: var(--gold); }
.edu-next-cta {
    display: inline-block;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 2px;
    transition: color var(--t), border-color var(--t);
}
.edu-next-cta:hover { color: var(--gold); border-color: var(--gold); }

/* seminars section */
.edu-seminars-section {
    padding: 80px 0;
    background: var(--paper-2);
    border-top: 1px solid var(--rule);
}
.edu-seminars-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 56px;
    align-items: start;
}
@media (max-width: 1000px) { .edu-seminars-grid { grid-template-columns: 1fr; gap: 32px; } }

.edu-seminars-aside { position: sticky; top: 100px; }
.edu-seminars-num { color: var(--ink); opacity: .55; display: block; margin-bottom: 8px; }
.edu-seminars-title { font-size: clamp(40px, 5vw, 60px); margin: 0 0 24px; line-height: 1.05; }
.edu-seminars-academy { color: var(--gold); display: block; margin-bottom: 8px; }
.edu-seminars-sub { font-size: 14px; color: var(--ink); opacity: .75; margin: 0; }

.edu-seminars-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 1100px) { .edu-seminars-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .edu-seminars-cards { grid-template-columns: 1fr; } }

.edu-sem-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    padding: 20px 20px 24px;
    display: flex;
    flex-direction: column;
    transition: border-color var(--t), transform var(--t);
}
.edu-sem-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.edu-sem-card-img {
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #f7f1e8 0%, #ede4d4 100%);
    margin-bottom: 18px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.edu-sem-card-img:before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 60px; height: 60px;
    background: radial-gradient(circle at 0 0, rgba(201,169,110,.28), transparent 70%);
}
.edu-sem-card-img:after {
    content: "";
    position: absolute;
    bottom: 0; right: 0;
    width: 60px; height: 60px;
    background: radial-gradient(circle at 100% 100%, rgba(201,169,110,.28), transparent 70%);
}
.edu-sem-card-duration {
    position: absolute;
    top: 16px; right: 16px;
    font-size: 10px;
    color: var(--ink);
    opacity: .65;
    background: rgba(255,255,255,.7);
    padding: 4px 8px;
}
.edu-sem-card-badge {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 16px;
    line-height: 1.25;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 0 16px;
}
.edu-sem-card-title {
    font-size: 19px;
    line-height: 1.25;
    margin: 0 0 12px;
    color: var(--ink);
    min-height: 48px;
}
.edu-sem-card-desc {
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink);
    opacity: .75;
    margin: 0 0 18px;
    flex: 1;
}
.edu-sem-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--rule);
}
.edu-sem-card-price-val { font-size: 22px; color: var(--ink); }
.edu-sem-card-price-tax { font-size: 11px; color: var(--ink); opacity: .55; }
.edu-sem-card-cta {
    display: inline-block;
    padding-top: 12px;
    border-top: 1px solid var(--rule);
    color: var(--ink);
    transition: color var(--t);
}
.edu-sem-card-cta:hover { color: var(--gold); }

/* ============================================
   STUDIO INFO (Über uns)
   ============================================ */
.studio-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}
@media (max-width: 720px) { .studio-info-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================
   PARTNER FORM
   ============================================ */
.partner-form-section { padding: 80px 0; background: var(--paper-2); }
.partner-form-inner {
    max-width: 760px;
    margin: 0 auto;
    background: var(--paper);
    padding: 56px 48px;
    border: 1px solid var(--rule);
}
@media (max-width: 640px) { .partner-form-inner { padding: 40px 24px; } }
.partner-form-heading {
    font-size: clamp(24px, 3vw, 32px);
    margin: 0 0 32px;
    line-height: 1.25;
}
.partner-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 640px) { .partner-form-grid { grid-template-columns: 1fr; } }
.partner-field { display: flex; flex-direction: column; gap: 6px; }
.partner-field label {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink);
    opacity: .7;
}
.partner-field label span { color: var(--gold); }
.partner-field input,
.partner-field select {
    padding: 12px 14px;
    border: 1px solid var(--rule);
    background: var(--paper);
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--ink);
    transition: border-color var(--t);
}
.partner-field input:focus,
.partner-field select:focus { outline: none; border-color: var(--gold); }
.partner-form-submit { margin-top: 28px; text-align: center; }
.partner-success {
    text-align: center;
    font-size: 18px;
    color: var(--gold);
    padding: 40px 0;
}
.partner-error {
    background: #fef2f2;
    color: #991b1b;
    padding: 12px 16px;
    margin-bottom: 20px;
    border: 1px solid #fecaca;
    font-size: 14px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--ink);
    color: var(--paper);
    padding: 80px 0 32px;
    margin-top: 80px;
}
.footer-inner { color: var(--paper); }

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 56px;
}
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* col headings */
.footer-col-heading {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 18px;
    font-family: var(--font-sans);
    font-weight: 500;
    opacity: 1;
}

/* logo */
.footer-logo-wrap { margin-bottom: 24px; max-width: 240px; }
.footer-logo-link { display: block; }
.footer-logo-img { width: 100%; height: auto; display: block; }

.footer-newsletter-pitch {
    font-size: 17px;
    line-height: 1.5;
    color: var(--paper);
    opacity: .85;
    margin: 0 0 20px;
    max-width: 380px;
}

/* newsletter form */
.footer-nl-form {
    display: flex;
    gap: 0;
    max-width: 380px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.04);
    transition: border-color var(--t);
}
.footer-nl-form:focus-within { border-color: var(--gold); }
.footer-nl-input {
    flex: 1;
    padding: 14px 16px;
    background: transparent;
    border: none;
    color: var(--paper);
    font-family: var(--font-sans);
    font-size: 14px;
    outline: none;
}
.footer-nl-input::placeholder { color: rgba(255,255,255,.45); font-style: italic; }
.footer-nl-btn {
    padding: 14px 22px;
    background: var(--gold);
    color: var(--ink);
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 500;
    transition: background var(--t);
}
.footer-nl-btn:hover { background: #d4b884; }
.footer-nl-success {
    color: var(--gold);
    font-size: 14px;
    padding: 16px 0;
    font-family: var(--font-display);
    font-style: italic;
}

/* studio col */
.footer-address {
    font-size: 16px;
    line-height: 1.7;
    color: var(--paper);
    opacity: .9;
    font-style: normal;
    margin: 0 0 20px;
}
.footer-contact-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
}
.footer-contact-link {
    color: var(--paper);
    opacity: .75;
    font-size: 11px;
    letter-spacing: .12em;
    transition: opacity var(--t), color var(--t);
}
.footer-contact-link:hover { opacity: 1; color: var(--gold); }
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,.18);
    color: var(--paper);
    opacity: .85;
    transition: border-color var(--t), color var(--t), opacity var(--t);
}
.footer-social-btn:hover { border-color: var(--gold); color: var(--gold); opacity: 1; }

/* legal col */
.footer-legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-legal-link {
    color: var(--paper);
    opacity: .85;
    font-size: 16px;
    transition: color var(--t), opacity var(--t), padding-left var(--t);
}
.footer-legal-link:hover { color: var(--gold); opacity: 1; padding-left: 6px; }

/* distribution badge */
.footer-dist {
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,.10);
    border-bottom: 1px solid rgba(255,255,255,.10);
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px 32px;
}
.footer-dist-label {
    color: var(--gold);
    margin: 0;
    font-size: 11px;
    letter-spacing: .14em;
}
.footer-dist-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
}
.footer-dist-countries .dist-country {
    color: var(--paper);
    opacity: .9;
    font-size: 14px;
    font-family: var(--font-sans);
}
.footer-dist-countries .dist-flag {
    width: 20px; height: 20px;
    box-shadow: 0 0 0 1px rgba(255,255,255,.15);
}

/* bottom row */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: var(--paper);
    opacity: .55;
}
.footer-bottom a { color: var(--paper); }
.footer-bottom a.footer-built-link { color: var(--gold); opacity: 1; }
.footer-bottom a:hover { color: var(--gold); }
