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

:root {
    --color-black: #0a0a0a;
    --color-charcoal: #1a1a1a;
    --color-gold: #d4af37;
    --color-cream: #f5f5f0;
    --color-white: #ffffff;
    --color-grey: #8a8a8a;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Lato', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-charcoal);
    background: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}


.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-charcoal);
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 40px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 20px 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

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

/* Logo w navbarze */
.nav-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo-link:hover {
    opacity: 0.85;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: brightness(1.1);
}

.navbar.scrolled .nav-logo-img {
    height: 40px;
    filter: brightness(0.9);
}


.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 15px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.hamburger span {
    display: block;
    width: 40px;
    height: 3px;
    background: var(--color-white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar.scrolled .hamburger span {
    background: var(--color-black);
}

.hamburger:hover {
    transform: scale(1.1);
}


.menu-overlay {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
}

.menu-overlay.active {
    right: 0;
}

.menu-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    backdrop-filter: blur(2px);
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    position: relative;
    text-align: center;
}

.menu-close {
    position: fixed;
    top: 40px;
    right: 40px;
    transform: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    font-weight: 200;
    opacity: 0.4;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 2001;
    letter-spacing: 0;
}

.menu-close:hover {
    color: var(--color-gold);
    opacity: 1;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 0 40px;
}

.menu-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-white);
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    position: relative;
    display: block;
    padding: 15px 0;
    opacity: 0.9;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    width: 100%;
    height: 1px;
    background: var(--color-gold);
    transition: transform 0.4s ease;
}

.menu-link:hover {
    color: var(--color-gold);
    opacity: 1;
    transform: translateX(10px);
}

.menu-link:hover::after {
    transform: scaleX(1);
}

/* Zenith Boutique link w menu */
.menu-link-boutique {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    padding: 20px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--color-gold);
    font-size: 1.8rem;
    letter-spacing: 3px;
    opacity: 1;
}

.menu-link-boutique:hover {
    color: var(--color-white);
    transform: translateX(10px);
}

.menu-link-boutique::after {
    background: var(--color-white);
}

.boutique-icon {
    font-size: 1.2rem;
    color: var(--color-gold);
    transition: transform 0.4s ease;
}

.menu-link-boutique:hover .boutique-icon {
    transform: rotate(45deg) scale(1.2);
}



.menu-support {
    margin-top: 60px;
    padding: 0 40px;
    text-align: center;
}

.menu-support-label {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--color-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 25px;
    opacity: 0.7;
    font-weight: 300;
}

.menu-support-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 0;
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    background: transparent;
    min-width: 220px;
    justify-content: center;
    opacity: 0.8;
}

.support-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-gold);
    color: var(--color-gold);
    opacity: 1;
}

.support-icon {
    font-size: 1rem;
    line-height: 1;
}

.support-btn-revolut .support-icon {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.9rem;
}


.book-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    overflow-y: auto;
    padding: 40px 20px;
}

.book-page.active {
    opacity: 1;
    visibility: visible;
}

.book-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    background: var(--color-cream);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.book-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-charcoal);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    font-weight: 100;
    z-index: 10;
    opacity: 0.3;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-close:hover {
    color: var(--color-gold);
    opacity: 0.8;
}

.book-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.book-left {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.08) 0%, 
        rgba(212, 175, 55, 0.03) 50%,
        transparent 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(10, 10, 10, 0.08);
}

.book-decoration {
    width: 200px;
    height: 200px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    position: relative;
    opacity: 0.3;
}

.book-decoration::before,
.book-decoration::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
}

.book-decoration::before {
    width: 140px;
    height: 140px;
}

.book-decoration::after {
    width: 80px;
    height: 80px;
}

.book-right {
    padding: 80px 60px;
    background: var(--color-cream);
}

.book-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-black);
    margin-bottom: 50px;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 30px;
}

.book-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--color-gold);
}

.book-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 2;
    color: var(--color-charcoal);
    font-weight: 300;
}

.book-text p {
    margin-bottom: 30px;
    text-align: justify;
    text-indent: 2em;
}

.book-text p:first-child::first-letter {
    font-size: inherit;
    line-height: inherit;
    float: none;
    margin: 0;
    color: inherit;
    font-weight: inherit;
}


.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-charcoal);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.hero-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-text {
    opacity: 0;
    animation: fadeInHero 1.5s ease 0.3s forwards;
}

.main-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 7rem;
    color: var(--color-white);
    letter-spacing: 4px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.name-first,
.name-second {
    display: block;
}

.ampersand {
    display: block;
    font-size: 4rem;
    color: var(--color-gold);
    margin: 20px 0;
    font-style: italic;
}

.surname {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 12px;
    color: var(--color-grey);
    text-transform: uppercase;
}

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


.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}


.intro-section {
    padding: 150px 0;
    background: var(--color-white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1.8;
    color: var(--color-charcoal);
    font-weight: 300;
    letter-spacing: 0.5px;
}


.portrait-section {
    padding: 100px 0;
    background: var(--color-cream);
}

.portrait-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.portrait-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.portrait-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(10, 10, 10, 0.1);
    pointer-events: none;
    z-index: 2;
}

.portrait-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(20%) contrast(1.05);
    transition: transform 0.8s ease;
}

.portrait-frame:hover .portrait-image {
    transform: scale(1.02);
}


.philosophy-section {
    padding: 150px 0;
    background: var(--color-white);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.philosophy-item {
    text-align: center;
}

.philosophy-number {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--color-gold);
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.philosophy-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-black);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.philosophy-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--color-grey);
    font-weight: 300;
}


.essence-section {
    padding: 150px 0;
    background: var(--color-charcoal);
}

.essence-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.essence-content {
    text-align: center;
}

.essence-quote {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    line-height: 1.7;
    color: var(--color-white);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.5px;
    border: none;
    position: relative;
    padding: 0 40px;
}

.essence-quote::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 5rem;
    color: var(--color-gold);
    font-family: var(--font-serif);
    line-height: 1;
}


.journey-section {
    padding: 150px 0;
    background: var(--color-white);
}

.section-heading {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    text-align: center;
    color: var(--color-black);
    margin-bottom: 100px;
    letter-spacing: 2px;
}

.journey-content {
    max-width: 900px;
    margin: 0 auto;
}

.journey-block {
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.journey-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.journey-year {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--color-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.journey-description {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--color-charcoal);
    font-weight: 300;
}


.profiles-section {
    padding: 150px 0;
    background: var(--color-cream);
}

.profiles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 80px;
    align-items: center;
}

.profile-card {
    text-align: center;
}

.profile-letter {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    border: 1px solid var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--color-black);
    font-weight: 300;
    transition: all 0.4s ease;
}

.profile-card:hover .profile-letter {
    background: var(--color-black);
    color: var(--color-white);
}

.profile-name {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-black);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.profile-essence {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--color-grey);
    font-weight: 300;
    max-width: 400px;
    margin: 0 auto;
}

.profile-divider {
    width: 1px;
    height: 200px;
    background: rgba(10, 10, 10, 0.15);
}


.footer {
    padding: 80px 0;
    background: var(--color-charcoal);
}

.footer-content {
    text-align: center;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 30px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--color-grey);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Footer Details */
.footer-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 30px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    gap: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col-left {
    text-align: left;
}

.footer-col-center {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-col-right {
    text-align: right;
}

.footer-company-name {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.footer-address {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.5px;
    font-weight: 300;
    margin-bottom: 3px;
}

.footer-nip {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.5px;
    font-weight: 300;
}

.footer-subtle-link {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-subtle-link:hover {
    color: var(--color-gold);
}

.footer-dot {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
}

.footer-powered {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 300;
}

.footer-ml-link {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-ml-link:hover {
    color: var(--color-gold);
}

/* Footer Legal */
.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-legal-btn {
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 4px 8px;
    font-weight: 300;
}

.footer-legal-btn:hover {
    color: var(--color-gold);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    padding: 20px 40px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 300;
    border-radius: 2px;
}

.cookie-btn-accept {
    background: var(--color-gold);
    color: var(--color-charcoal);
    border: 1px solid var(--color-gold);
}

.cookie-btn-accept:hover {
    background: var(--color-white);
    border-color: var(--color-white);
}

.cookie-btn-settings {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn-settings:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* Legal Overlay */
.legal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 40px;
    overflow-y: auto;
}

.legal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.legal-container {
    width: 100%;
    max-width: 700px;
    max-height: 85vh;
    background: var(--color-charcoal);
    border-radius: 6px;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.legal-close {
    position: sticky;
    top: 0;
    float: right;
    background: var(--color-charcoal);
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.4rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    font-weight: 200;
    z-index: 2;
    margin: 8px 8px 0 0;
}

.legal-close:hover {
    color: var(--color-gold);
}

.legal-content {
    padding: 40px 50px 50px;
}

.legal-content h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 2px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.legal-content h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-gold);
    margin: 28px 0 12px;
    letter-spacing: 1px;
}

.legal-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 14px;
}


@media (max-width: 1024px) {
    .content-wrapper {
        padding: 0 40px;
    }
    
    .main-title {
        font-size: 5rem;
    }
    
    .intro-text {
        font-size: 1.6rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .essence-quote {
        font-size: 2rem;
    }
    
    .profiles-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .profile-divider {
        width: 100px;
        height: 1px;
        margin: 0 auto;
    }

    .book-content {
        grid-template-columns: 1fr;
    }

    .book-left {
        display: none;
    }

    .book-right {
        padding: 60px 40px;
    }

    .book-title {
        font-size: 2.8rem;
    }

    .menu-link {
        font-size: 2.5rem;
    }

    .menu-close {
        top: 40px;
        right: 40px;
        font-size: 1.4rem;
    }

    .boutique-overlay {
        padding: 15px;
    }

    .boutique-container {
        height: 90vh;
    }
}

@media (max-width: 768px) {
    .nav-content {
        padding: 0 30px;
    }
    
    .nav-logo-img {
        height: 36px;
    }

    .navbar.scrolled .nav-logo-img {
        height: 30px;
    }

    .hamburger {
        padding: 10px;
    }

    .hamburger span {
        width: 32px;
        height: 2.5px;
    }
    
    .main-title {
        font-size: 3.5rem;
    }
    
    .ampersand {
        font-size: 2.5rem;
    }
    
    .surname {
        font-size: 0.9rem;
        letter-spacing: 8px;
    }
    
    .intro-section,
    .philosophy-section,
    .essence-section,
    .journey-section,
    .profiles-section {
        padding: 80px 0;
    }
    
    .content-wrapper,
    .portrait-container,
    .essence-container,
    .profiles-container {
        padding: 0 30px;
    }
    
    .intro-text {
        font-size: 1.3rem;
    }
    
    .philosophy-title {
        font-size: 2rem;
    }
    
    .essence-quote {
        font-size: 1.5rem;
        padding: 0 20px;
    }
    
    .section-heading {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }
    
    .profile-letter {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    .profile-name {
        font-size: 2rem;
    }

    .book-right {
        padding: 50px 30px;
    }

    .book-title {
        font-size: 2.2rem;
        margin-bottom: 35px;
    }

    .book-text {
        font-size: 1rem;
        line-height: 1.8;
    }

    .book-text p {
        margin-bottom: 20px;
        text-indent: 1.5em;
    }

    .book-text p:first-child::first-letter {
        font-size: inherit;
        float: none;
        margin: 0;
        color: inherit;
    }

    .book-close {
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
    }

    .menu-overlay {
        width: 100%;
        right: -100%;
    }

    .menu-overlay.active {
        right: 0;
    }

    .menu-link {
        font-size: 1.8rem;
    }

    .menu-link-boutique {
        font-size: 1.5rem;
    }

    .menu-close {
        top: 30px;
        right: 30px;
        font-size: 1.3rem;
    }

    .menu-nav {
        gap: 40px;
        padding: 0 30px;
    }

    .menu-support {
        margin-top: 40px;
        padding: 0 30px;
    }

    .support-btn {
        padding: 12px 28px;
        font-size: 0.8rem;
        min-width: 200px;
        letter-spacing: 2px;
    }

    .menu-support-label {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }

    .book-page {
        padding: 20px 10px;
    }

    .book-container {
        margin: auto;
    }

    .boutique-overlay {
        padding: 0;
    }

    .boutique-container {
        height: 100vh;
        border-radius: 0;
        max-width: 100%;
    }

    .boutique-header {
        padding: 12px 20px;
    }

    .boutique-title {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .footer-logo-img {
        height: 45px;
    }

    .footer-details {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .footer-col-left,
    .footer-col-right {
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 0 10px;
    }

    .cookie-text {
        font-size: 0.75rem;
    }

    .legal-overlay {
        padding: 20px;
    }

    .legal-content {
        padding: 30px 24px 36px;
    }

    .legal-content h2 {
        font-size: 1.6rem;
    }
}


.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
