@font-face {
    font-family: "Bodoni Moda";
    src: url("/assets/fonts/bodoni-moda-400.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bodoni Moda";
    src: url("/assets/fonts/bodoni-moda-500.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bodoni Moda";
    src: url("/assets/fonts/bodoni-moda-600.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("/assets/fonts/montserrat-400.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("/assets/fonts/montserrat-500.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("/assets/fonts/montserrat-600.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Material Symbols Outlined";
    src: url("/assets/fonts/material-symbols-outlined-300.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

.theme-internal-page {
    --surface: #fcf8f8;
    --surface-lowest: #ffffff;
    --surface-low: #f6f3f2;
    --surface-variant: #e5e2e1;
    --on-surface: #1c1b1b;
    --on-surface-variant: #4d4635;
    --primary: #735c00;
    --primary-soft: #d4af37;
    --outline: rgba(208, 197, 175, 0.4);
    --inverse-surface: #313030;
    --inverse-text: rgba(246, 243, 242, 0.85);
    --shadow-soft: 0 20px 40px rgba(0, 28, 58, 0.06);
    --brand-logo-desktop-height: 150px;
    --brand-logo-mobile-height: 116px;
    --brand-logo-hang-offset: 28px;
    --brand-logo-glow-blur: 44px;
    --brand-logo-glow-color: rgba(240, 201, 113, 0.42);
    background: var(--surface);
    color: var(--on-surface);
    min-height: 100vh;
}

.theme-internal-page,
.theme-internal-page button,
.theme-internal-page input,
.theme-internal-page textarea,
.theme-internal-page select {
    font-family: "Montserrat", sans-serif;
}

.theme-internal-page .material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    display: inline-block;
    white-space: nowrap;
    direction: ltr;
    font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.internal-container {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

.internal-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    background: rgba(252, 248, 248, 0.84);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(208, 197, 175, 0.2);
    box-shadow: 0 4px 18px rgba(28, 27, 27, 0.04);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    overflow: visible;
}

.internal-header.is-scrolled {
    background: rgba(252, 248, 248, 0.96);
    box-shadow: 0 10px 30px rgba(28, 27, 27, 0.08);
}

.internal-header-inner {
    min-height: calc(86px + var(--brand-logo-hang-offset));
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.internal-brand {
    display: inline-flex;
    align-items: flex-start;
    color: var(--primary);
    text-decoration: none;
    font-family: "Bodoni Moda", serif;
    font-style: italic;
    font-weight: 500;
    font-size: 28px;
    letter-spacing: -0.02em;
}

.internal-brand-logo-wrap {
    position: relative;
    display: inline-flex;
    transform: translateY(var(--brand-logo-hang-offset));
}

.internal-brand-logo-glow {
    position: absolute;
    left: 50%;
    top: 54%;
    width: calc(var(--brand-logo-desktop-height) * 1.2);
    height: calc(var(--brand-logo-desktop-height) * 0.88);
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--brand-logo-glow-color) 0%, rgba(255, 255, 255, 0) 72%);
    filter: blur(var(--brand-logo-glow-blur));
    pointer-events: none;
}

.internal-brand-logo {
    position: relative;
    z-index: 1;
    display: block;
    width: auto;
    max-height: var(--brand-logo-desktop-height);
    filter: drop-shadow(0 14px 22px rgba(28, 27, 27, 0.1));
}

.internal-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px 34px;
    flex-wrap: wrap;
}

.internal-nav a,
.internal-booking-link {
    color: var(--on-surface);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.internal-nav a {
    text-transform: none;
    letter-spacing: 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--on-surface-variant);
}

.internal-nav a:hover,
.internal-booking-link:hover {
    color: var(--primary);
}

.internal-nav .site-lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(115, 92, 0, 0.18);
    background: rgba(115, 92, 0, 0.06);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.internal-booking-link {
    justify-self: end;
    color: var(--primary);
}

.internal-menu-toggle {
    display: none;
    justify-self: end;
    background: transparent;
    border: 0;
    color: var(--primary);
    padding: 8px;
    cursor: pointer;
}

.internal-main {
    padding: 128px 0 56px;
}

.internal-page-intro {
    padding: 8px 0 28px;
}

.internal-intro-shell {
    max-width: 860px;
    text-align: center;
}

.internal-eyebrow,
.internal-card-kicker {
    margin: 0 0 14px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.internal-page-intro h1,
.internal-content-card h2,
.internal-visual-content h3,
.internal-journey-body h3,
.internal-footer-brand {
    font-family: "Bodoni Moda", serif;
}

.internal-page-intro h1 {
    margin: 0 0 20px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    font-weight: 500;
    color: var(--on-surface);
}

.internal-intro-copy {
    margin: 0 auto;
    max-width: 760px;
    color: var(--on-surface-variant);
    font-size: 18px;
    line-height: 1.7;
}

.internal-layout {
    display: block;
}

.internal-article {
    width: min(100%, 980px);
    margin: 0 auto;
}

.internal-document {
    position: relative;
    padding: 30px 0 0;
}

.internal-document::before {
    content: "";
    position: absolute;
    left: 56px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(208, 197, 175, 0.15), rgba(208, 197, 175, 0.75), rgba(208, 197, 175, 0.15));
}

.internal-document-section {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    padding: 0 0 28px;
    margin: 0 0 28px;
    border-bottom: 1px solid rgba(208, 197, 175, 0.35);
}

.internal-document-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.internal-section-index {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(180deg, #f8f2e4 0%, #efe5c8 100%);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    box-shadow: 0 10px 24px rgba(115, 92, 0, 0.08);
}

.internal-section-body h2 {
    margin: 0 0 14px;
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -0.025em;
    font-weight: 500;
    font-family: "Bodoni Moda", serif;
    color: var(--on-surface);
}

.internal-section-body p {
    margin: 0 0 14px;
    color: var(--on-surface-variant);
    font-size: 17px;
    line-height: 1.9;
}

.internal-section-body p:last-child {
    margin-bottom: 0;
}

.internal-footer {
    background: var(--inverse-surface);
    color: var(--inverse-text);
    padding: 82px 0;
}

.internal-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-end;
}

.internal-footer-brand-column {
    max-width: 340px;
}

.internal-footer-logo {
    display: block;
    max-height: 108px;
    width: auto;
    margin-bottom: 16px;
}

.internal-footer-brand {
    margin-bottom: 16px;
    color: #f0cb64;
    font-size: 62px;
    line-height: 0.95;
    letter-spacing: -0.04em;
    font-style: italic;
}

.internal-footer-brand-column p,
.internal-footer-copy,
.internal-footer-links a {
    color: var(--inverse-text);
    font-size: 16px;
    line-height: 1.7;
    text-decoration: none;
}

.internal-footer-links-column {
    display: grid;
    gap: 20px;
    justify-items: end;
}

.internal-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 34px;
    justify-content: flex-end;
}

.internal-footer-links a:hover {
    color: #f0cb64;
}

.internal-footer-copy {
    color: rgba(246, 243, 242, 0.64);
}

html[dir="rtl"] .theme-internal-page {
    direction: rtl;
}

html[dir="rtl"] .internal-intro-shell,
html[dir="rtl"] .internal-section-body,
html[dir="rtl"] .internal-document,
html[dir="rtl"] .contact-page-card,
html[dir="rtl"] .contact-page-list {
    text-align: right;
}

html[dir="rtl"] .internal-header-inner {
    grid-template-columns: auto 1fr auto;
}

html[dir="rtl"] .internal-document::before {
    left: auto;
    right: 56px;
}

html[dir="rtl"] .internal-document-section {
    grid-template-columns: minmax(0, 1fr) 56px;
}

html[dir="rtl"] .internal-section-index {
    grid-column: 2;
    justify-self: center;
}

html[dir="rtl"] .internal-section-body {
    grid-column: 1;
}

@media (max-width: 960px) {
    .internal-header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .internal-menu-toggle {
        display: none;
    }

    .internal-footer-inner,
    .internal-footer-links-column {
        align-items: flex-start;
        justify-items: start;
    }

    .internal-footer-inner {
        flex-direction: column;
    }

    .internal-footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .internal-container {
        width: min(100% - 28px, 1280px);
    }

    .internal-header-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 12px;
        padding-top: 8px;
        padding-bottom: 12px;
    }

    .internal-brand-logo-wrap {
        transform: translateY(calc(var(--brand-logo-hang-offset) * 0.82));
    }

    .internal-brand-logo-glow {
        width: calc(var(--brand-logo-mobile-height) * 1.18);
        height: calc(var(--brand-logo-mobile-height) * 0.86);
    }

    .internal-brand-logo {
        max-height: var(--brand-logo-mobile-height);
    }

    .internal-nav {
        display: none;
    }

    .internal-main {
        padding-top: 108px;
    }

    .internal-page-intro {
        padding-bottom: 16px;
    }

    .internal-page-intro h1 {
        font-size: 44px;
    }

    .internal-intro-copy {
        font-size: 16px;
    }

    .internal-document {
        padding-top: 20px;
    }

    .internal-document::before {
        left: 22px;
    }

    .internal-document-section {
        grid-template-columns: 22px minmax(0, 1fr);
        gap: 18px;
        padding-bottom: 22px;
        margin-bottom: 22px;
    }

    .internal-section-index {
        width: 22px;
        height: 22px;
        font-size: 0;
        letter-spacing: 0;
        background: linear-gradient(180deg, #d8b452 0%, #b18b27 100%);
        box-shadow: none;
    }

    .internal-section-body h2 {
        font-size: 26px;
    }

    .internal-section-body p {
        font-size: 15px;
        line-height: 1.8;
    }

    .internal-footer {
        padding: 60px 0 90px;
    }

    .internal-footer-brand {
        font-size: 52px;
    }

    html[dir="rtl"] .internal-document::before {
        left: auto;
        right: 22px;
    }

    html[dir="rtl"] .internal-document-section {
        grid-template-columns: minmax(0, 1fr) 22px;
    }

    html[dir="rtl"] .internal-section-index {
        grid-column: 2;
    }

    html[dir="rtl"] .internal-section-body {
        grid-column: 1;
    }
}
