:root {
    --ivory: #f7f1e8;
    --cream: #fffaf2;
    --espresso: #17110d;
    --charcoal: #241b15;
    --taupe: #8d7f70;
    --gold: #b99a5f;
    --gold-dark: #8b6f3f;
    --line: rgba(23, 17, 13, 0.14);

    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Inter", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--espresso);
    line-height: 1.7;
    text-rendering: optimizeLegibility;
}

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

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

a:hover {
    color: var(--gold-dark);
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.035em;
}

h1 {
    font-size: clamp(2.8rem, 5vw, 5.5rem);
    color: var(--cream);
}

h2 {
    font-size: clamp(2.8rem, 5vw, 5.5rem);
}

h3 {
    font-size: 2rem;
}

p {
    color: rgba(23, 17, 13, 0.76);
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 1rem;
    z-index: 9999;
    background: var(--cream);
    color: var(--espresso);
    padding: .75rem 1rem;
}

.skip-link:focus {
    left: 1rem;
}

.luxury-nav {
    padding: 1.25rem 0;
    background: rgba(23, 17, 13, 0.58);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 250, 242, 0.12);
    transition: background 0.25s ease, padding 0.25s ease;
}

.luxury-nav.is-scrolled {
    padding: .8rem 0;
    background: rgba(23, 17, 13, 0.94);
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: -0.02em;
}

.nav-link {
    color: rgba(255, 250, 242, 0.82);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
}

.nav-cta {
    border: 1px solid rgba(255, 250, 242, 0.35);
    padding: 0.75rem 1.2rem !important;
}

.navbar-toggler {
    border-color: rgba(255,255,255,.35);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.hero {
    position: relative;
    min-height: 100vh;
    background: var(--espresso);
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 18% 42%, rgba(23, 17, 13, 0.16), transparent 38%),
        linear-gradient(rgba(23, 17, 13, 0.34), rgba(23, 17, 13, 0.68));
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 38%;
    background: linear-gradient(transparent, var(--cream));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 6rem;
}

.page-hero {
    position: relative;
    padding: 14rem 0 7rem;
    background:
        linear-gradient(rgba(23, 17, 13, 0.72), rgba(23, 17, 13, 0.72)),
        url("/static/img/detail.svg") center / cover no-repeat;
}

.page-hero h1 {
    max-width: 950px;
}

.eyebrow {
    margin-bottom: 1.2rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--gold-dark);
}

.hero-lead {
    max-width: 680px;
    color: rgba(255, 250, 242, 0.86);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.btn {
    border-radius: 0;
    padding: 0.95rem 1.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.btn-luxury {
    background: var(--gold);
    color: var(--espresso);
    border: 1px solid var(--gold);
}

.btn-luxury:hover {
    background: var(--cream);
    border-color: var(--cream);
    color: var(--espresso);
}

.btn-outline-luxury {
    color: var(--cream);
    border: 1px solid rgba(255, 250, 242, 0.42);
}

.btn-outline-luxury:hover {
    color: var(--espresso);
    background: var(--cream);
}

.section {
    padding: clamp(5rem, 9vw, 9rem) 0;
}

.narrow {
    max-width: 820px;
}

.intro-section {
    background: var(--cream);
}

.large-text {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.12;
    color: var(--espresso);
}

.service-section,
.menu-section {
    background: var(--ivory);
}

.section-heading {
    max-width: 780px;
}

.service-card {
    height: 100%;
    padding: 2.2rem;
    background: var(--cream);
    border: 1px solid var(--line);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(23, 17, 13, 0.09);
}

.service-card span {
    display: block;
    margin-bottom: 2.5rem;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.service-card i {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    border: 1px solid rgba(185, 154, 95, 0.4);
    color: var(--gold-dark);
}

.service-card p {
    margin-bottom: 0;
}

.image-text-section {
    background: var(--cream);
}

.image-frame {
    position: relative;
    padding: 1rem;
    border: 1px solid var(--line);
}

.image-frame::before {
    content: "";
    position: absolute;
    inset: 2rem -1rem -1rem 2rem;
    border: 1px solid rgba(185, 154, 95, 0.35);
    z-index: 0;
}

.image-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.luxury-list {
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.luxury-list li {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
}

.luxury-list li::before {
    content: "—";
    color: var(--gold-dark);
    margin-right: 0.8rem;
}

.menu-note {
    min-height: 100%;
    padding: 2rem;
    background: rgba(255, 250, 242, .68);
    border-left: 1px solid var(--gold);
}

.quote-section {
    padding: clamp(5rem, 9vw, 8rem) 0;
    background:
        linear-gradient(rgba(23, 17, 13, 0.78), rgba(23, 17, 13, 0.78)),
        url("/static/img/detail.svg") center / cover no-repeat;
}

.quote-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-box h2 {
    color: var(--cream);
}

.contact-section .form-control {
    border-radius: 0;
    padding: 1rem;
    background: rgba(255, 250, 242, .8);
    border: 1px solid var(--line);
}

.contact-section .form-control:focus {
    box-shadow: none;
    border-color: var(--gold);
}

.contact-details {
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.site-footer {
    padding: 5rem 0 2rem;
    background: var(--espresso);
    color: var(--cream);
}

.site-footer h2,
.site-footer h3 {
    color: var(--cream);
}

.site-footer h2 span {
    color: var(--gold);
}

.site-footer p,
.site-footer a,
.site-footer small {
    color: rgba(255, 250, 242, 0.72);
}

.site-footer a:hover {
    color: var(--gold);
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li {
    margin-bottom: 0.45rem;
}

.social-links {
    display: flex;
    gap: .75rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 250, 242, 0.18);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 4rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 250, 242, 0.12);
}

@media (max-width: 991px) {
    .luxury-nav {
        background: rgba(23, 17, 13, 0.94);
    }

    h1 {
        font-size: clamp(3.4rem, 16vw, 6rem);
    }

    .nav-cta {
        border: 0;
        padding-left: 0 !important;
    }

    .footer-bottom {
        flex-direction: column;
    }
}


.brand-logo-link {
    display: inline-flex;
    align-items: center;
    width: auto;
    max-width: 190px;
}

.brand-logo {
    width: 100%;
    max-height: 54px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.luxury-nav.is-scrolled .brand-logo {
    max-height: 46px;
}

@media (max-width: 991px) {
    .brand-logo-link {
        max-width: 165px;
    }

    .brand-logo {
        max-height: 48px;
    }
}


.language-switch {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: rgba(255, 250, 242, 0.5);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.language-switch a {
    color: rgba(255, 250, 242, 0.72);
}

.language-switch a:hover,
.language-switch a.active {
    color: #fff;
}

.signature-card {
    height: 100%;
    padding: 2rem;
    background: rgba(255, 250, 242, 0.68);
    border: 1px solid var(--line);
}

.signature-card h3 {
    margin-bottom: 1rem;
}

.signature-card p {
    margin-bottom: 0;
}

.language-landing {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--espresso);
    padding: 4rem 0;
}

.language-landing-bg,
.language-landing-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.language-landing-bg {
    object-fit: cover;
    z-index: 0;
}

.language-landing-shade {
    z-index: 1;
    background: linear-gradient(rgba(23, 17, 13, 0.42), rgba(23, 17, 13, 0.78));
}

.language-landing .container {
    z-index: 2;
}

.language-card {
    max-width: 760px;
    padding: clamp(2.5rem, 6vw, 5rem);
    background: rgba(23, 17, 13, 0.62);
    border: 1px solid rgba(255, 250, 242, 0.16);
    backdrop-filter: blur(16px);
}

.language-card h1 {
    color: var(--cream);
    margin-bottom: 1rem;
}

.language-card p {
    color: rgba(255, 250, 242, .78);
}

.language-logo {
    width: min(220px, 70%);
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
}

@media (max-width: 991px) {
    .language-switch {
        padding-top: .75rem;
    }
}
