@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ============================================================
   DESIGN TOKENS — Single Source of Truth
   ============================================================ */
:root {
    --gold: #C9A96E;
    --gold-light: #E2C99A;
    --gold-dark: #A07840;
    --charcoal: #1A1A1A;
    --ink: #2C2C2C;
    --cream: #FAF8F5;
    --blush: #EDE5D8;
    --white: #FFFFFF;
    --glass-bg: rgba(250, 248, 245, 0.06);
    --glass-border: rgba(201, 169, 110, 0.18);

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Jost', sans-serif;

    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 2px;
    --radius-lg: 6px;

    --nav-h: 60px;
    --section-gap: clamp(80px, 10vw, 140px);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: var(--gold);
    color: var(--white);
}

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.t-display {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.t-heading {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.15;
}

.t-label {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.t-body {
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.75;
    color: #5a5451;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: clamp(24px, 5vw, 64px);
}

.gold-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin-right: 12px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    will-change: transform;
    min-width: 44px;
    min-height: 44px;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
    z-index: 0;
}

.btn:hover::before {
    transform: scaleX(1);
}

.btn>* {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
}

.btn-primary:hover {
    color: var(--charcoal);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost::before {
    background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline::before {
    background: var(--gold);
}

.btn-outline:hover {
    color: var(--charcoal);
}

/* Magnetic Effect Animation Styles */
.magnetic {
    display: inline-block;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-h);
    transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
    background: rgba(26, 26, 26, 0.88);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    box-shadow: 0 1px 0 var(--glass-border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    color: var(--white);
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition);
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.625rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.lang-switcher button {
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    font-family: var(--font-sans);
    font-size: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    transition: color var(--transition);
    padding: 0;
}

.lang-switcher button.active {
    color: var(--gold);
}

.lang-switcher button:hover {
    color: var(--white);
}

.lang-switcher span {
    color: rgba(255, 255, 255, 0.2);
}

#menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 4px;
}

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

    #menu-btn {
        display: flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
    }

    .lang-switcher {
        display: none;
    }
}

/* Mobile Menu */
#mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 800;
    background: var(--charcoal);
    display: flex;
    flex-direction: column;
    padding: 32px clamp(24px, 8vw, 48px);
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

#mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 64px;
}

.mobile-nav-links {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.mobile-nav-links li {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s, transform 0.4s;
}

#mobile-menu.open .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-links li:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-nav-links li:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-nav-links li:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-nav-links li:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-nav-links a {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 300;
    color: var(--white);
    transition: color var(--transition);
}

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

/* ============================================================
   HERO
   ============================================================ */
#hero {
    position: relative;
    height: 100dvh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1410 0%, #2d1f12 50%, #1a1a1a 100%);
    z-index: 0;
}

/* Decorative gold grain overlay */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 180px;
    opacity: 0.35;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 100% at 50% 60%, transparent 30%, rgba(26, 26, 26, 0.5) 100%);
    z-index: 1;
}

/* Decorative lines */
.hero-deco-line {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.hero-deco-line.left {
    left: clamp(24px, 4vw, 60px);
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.hero-deco-line.right {
    right: clamp(24px, 4vw, 60px);
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    margin-bottom: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

.hero-badge span {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 9vw, 7rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-sub {
    font-size: 0.8125rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 52px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-indicator span {
    font-size: 0.5625rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
        opacity: 0;
    }
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
    padding-block: var(--section-gap);
}

.section-header {
    margin-bottom: clamp(48px, 6vw, 80px);
}

.section-header.centered {
    text-align: center;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--charcoal);
}

.section-title em {
    font-style: italic;
    color: var(--gold-dark);
}

.section-desc {
    margin-top: 16px;
    max-width: 480px;
    font-size: 0.9375rem;
}

.section-header.centered .section-desc {
    margin-inline: auto;
}

/* ============================================================
   PHILOSOPHY / SERVICES
   ============================================================ */
#services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--blush);
}

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

.service-card {
    background: var(--white);
    padding: clamp(32px, 4vw, 56px);
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: background var(--transition);
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: #FDFCF9;
}

.service-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 300;
    color: var(--blush);
    line-height: 1;
    margin-bottom: 24px;
    transition: color var(--transition);
}

.service-card:hover .service-number {
    color: var(--gold-light);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--gold);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 14px;
    color: var(--charcoal);
}

.service-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #7a706b;
    margin-bottom: 32px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    transition: gap var(--transition);
}

.service-link:hover {
    gap: 16px;
}

.service-link svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* ============================================================
   PRICING
   ============================================================ */
#pricing {
    background: var(--charcoal);
}

#pricing .section-title {
    color: var(--white);
}

#pricing .section-desc {
    color: rgba(255, 255, 255, 0.45);
}

.pricing-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 56px;
    overflow-x: auto;
    scrollbar-width: none;
}

.pricing-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    font-family: var(--font-sans);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 12px 28px 14px;
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition);
    white-space: nowrap;
    margin-bottom: -1px;
}

.tab-btn:hover {
    color: rgba(255, 255, 255, 0.7);
}

.tab-btn.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 1023px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.pricing-card {
    background: var(--charcoal);
    padding: 36px 32px;
    position: relative;
    transition: background var(--transition);
    will-change: transform;
}

.pricing-card:hover {
    background: #1f1f1f;
}

.pricing-card.featured {
    background: #1f1a14;
}

.pricing-card.featured::before {
    content: 'Beliebt';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.5625rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-dark);
    padding: 4px 10px;
}

.pricing-card-name {
    font-family: var(--font-serif);
    font-size: 1.1875rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 8px;
}

.pricing-card-meta {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.06em;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pricing-card-meta svg {
    width: 12px;
    height: 12px;
    opacity: 0.5;
}

.pricing-card-price {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 300;
    color: var(--gold-light);
}

.pricing-card-price sup {
    font-size: 1rem;
    vertical-align: super;
}

.pricing-book {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.book-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 50%;
    background: none;
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition);
}

.book-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
}

.book-btn svg {
    width: 14px;
    height: 14px;
}

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
    background: var(--cream);
    padding-bottom: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 4px;
}

@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:first-child {
    grid-row: span 2;
}

.gallery-item img,
.gallery-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
}

.gallery-item:hover .gallery-placeholder,
.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(201, 169, 110, 0.0);
    transition: background var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-overlay svg {
    color: var(--white);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity var(--transition), transform var(--transition);
}

.gallery-item:hover .gallery-overlay {
    background: rgba(26, 20, 10, 0.38);
}

.gallery-item:hover .gallery-overlay svg {
    opacity: 1;
    transform: scale(1);
}

/* Gallery colors (placeholder) */
.gallery-item:nth-child(1) .gallery-placeholder {
    background: #2d2420;
}

.gallery-item:nth-child(2) .gallery-placeholder {
    background: #1e1a18;
}

.gallery-item:nth-child(3) .gallery-placeholder {
    background: #2a2018;
}

.gallery-item:nth-child(4) .gallery-placeholder {
    background: #231e1b;
}

.gallery-item:nth-child(5) .gallery-placeholder {
    background: #1a1714;
}

.gallery-item:nth-child(6) .gallery-placeholder {
    background: #28201a;
}

.gallery-item:nth-child(7) .gallery-placeholder {
    background: #1d1a17;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
    background: var(--white);
    overflow: hidden;
}

.testimonials-track-wrap {
    position: relative;
    overflow: hidden;
}

.testimonials-track-wrap::before,
.testimonials-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.testimonials-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.testimonials-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.testimonials-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee 32s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    flex: 0 0 320px;
    padding: 32px;
    border: 1px solid var(--blush);
    background: var(--cream);
    position: relative;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 12px;
    height: 12px;
    fill: var(--gold);
    color: var(--gold);
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.65;
    color: var(--ink);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--white);
    flex-shrink: 0;
}

.author-name {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--charcoal);
}

.author-date {
    font-size: 0.6875rem;
    color: #a09890;
    margin-top: 2px;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}

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

.about-portrait-wrap {
    position: relative;
}

.about-portrait-frame {
    position: relative;
    aspect-ratio: 3/4;
    max-width: 420px;
    overflow: hidden;
}

.about-portrait-frame::before {
    content: '';
    position: absolute;
    inset: -12px -12px auto auto;
    width: 60%;
    height: 40%;
    border-top: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    z-index: 2;
    pointer-events: none;
}

.about-portrait-frame::after {
    content: '';
    position: absolute;
    inset: auto auto -12px -12px;
    width: 60%;
    height: 40%;
    border-bottom: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
    z-index: 2;
    pointer-events: none;
}

.about-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(145deg, #2d2218 0%, #1a1410 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portrait-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2d2218 0%, #1a1410 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: rgba(201, 169, 110, 0.3);
    font-style: italic;
    letter-spacing: 0.1em;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.about-badge-num {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1;
}

.about-badge-label {
    font-size: 0.5rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.7);
    text-align: center;
    max-width: 60px;
    line-height: 1.3;
}

.about-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.about-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--charcoal);
}

.about-title em {
    font-style: italic;
    color: var(--gold-dark);
}

.about-body {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #6a5e58;
    margin-bottom: 36px;
}

.about-trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: var(--charcoal);
}

.trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.signature {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    color: var(--gold-dark);
    margin-top: 8px;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
    background: var(--charcoal);
    padding-bottom: 0;
}

#contact .section-title {
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
}

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

.contact-col {
    background: var(--charcoal);
    padding: clamp(32px, 4vw, 52px);
}

.contact-col-title {
    font-size: 0.5625rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: padding-left var(--transition);
    cursor: pointer;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    padding-left: 6px;
}

.contact-item-label {
    font-size: 0.5625rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.contact-item-value {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--white);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8125rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .day {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
}

.hours-row .time {
    color: var(--white);
}

.hours-row.highlight .day {
    color: var(--gold);
}

.hours-row.highlight .time {
    color: var(--gold-light);
}

.map-container {
    height: 200px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    filter: grayscale(1) contrast(1.1);
    opacity: 0.7;
    transition: opacity var(--transition), filter var(--transition);
}

.map-container:hover {
    opacity: 0.9;
    filter: grayscale(0.5) contrast(1.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-block: 60px;
}

@media (max-width: 1023px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 639px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
}

.footer-brand p {
    font-size: 0.8125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 12px;
    max-width: 260px;
}

.footer-col-title {
    font-size: 0.5625rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-block: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.06em;
}

.footer-ghost {
    text-align: center;
    padding-block: 20px 0;
    overflow: hidden;
}

.footer-ghost-text {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 14vw, 12rem);
    font-weight: 300;
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
    letter-spacing: -0.04em;
    line-height: 0.85;
    user-select: none;
    pointer-events: none;
}

/* ============================================================
   REVEAL ANIMATIONS (JS-powered)
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   SCROLL TOP BTN
   ============================================================ */
#scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--charcoal);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity var(--transition), transform var(--transition), background var(--transition);
    z-index: 50;
    will-change: transform;
}

#scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

#scroll-top:hover {
    background: var(--gold-dark);
}

#scroll-top svg {
    width: 20px;
    height: 20px;
}

/* Mobile Adjustments */
@media (max-width: 639px) {
    .luxury-heading {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 1.75rem !important;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .container {
        padding-inline: 20px;
    }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
#lightbox {
    position: fixed;
    inset: 0;
    z-index: 900;
    background: rgba(26, 20, 10, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
}

#lightbox.open {
    display: flex;
}

#lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}

#lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition);
}

#lightbox-close:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

#lightbox-close svg {
    width: 18px;
    height: 18px;
}

/* ============================================================
   COOKIE BANNER (MODERN ELEGANCE)
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: 90%;
    max-width: 600px;
    background: var(--cream);
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    padding: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    visibility: hidden;
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s, visibility 0.6s;
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    visibility: visible;
    opacity: 1;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cookie-title {
    color: var(--charcoal);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    font-family: var(--font-serif);
    letter-spacing: 0.05em;
}

.cookie-content p {
    font-size: 0.875rem;
    color: rgba(26, 26, 26, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
}

.cookie-link {
    font-size: 0.8125rem;
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s;
    font-weight: 500;
    align-self: flex-start;
}

.cookie-link:hover {
    color: var(--gold-light);
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cookie-actions-main {
    display: flex;
    gap: 12px;
}

.cookie-actions .btn {
    padding: 12px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    flex: 1;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.btn-cookie-accept:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.btn-cookie-reject {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid rgba(26, 26, 26, 0.2);
}

.btn-cookie-reject:hover {
    background: rgba(26, 26, 26, 0.05);
    border-color: rgba(26, 26, 26, 0.4);
    transform: translateY(-2px);
}

.btn-cookie-settings {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    padding: 8px;
    font-size: 0.75rem;
    text-decoration: underline;
    text-underline-offset: 4px;
    border: none;
    transition: color 0.3s ease;
    align-self: center;
    margin-top: 4px;
}

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

@media (min-width: 768px) {
    .cookie-banner {
        flex-direction: row;
        align-items: center;
        width: 800px;
        max-width: 85vw;
        padding: 30px 40px;
        gap: 30px;
    }

    .cookie-content {
        flex: 1.5;
    }

    .cookie-actions {
        flex: 1;
        flex-direction: column;
    }
}