:root {
    --bg-top: #f7f2e8;
    --bg-bottom: #f2ece1;
    --surface: rgba(255, 252, 246, 0.92);
    --surface-strong: #fffaf2;
    --text: #1f241f;
    --muted: #68756b;
    --primary: #1d4f3e;
    --primary-deep: #123127;
    --accent: #d89c64;
    --accent-soft: #f1dcc6;
    --line: rgba(27, 54, 42, 0.1);
    --shadow: 0 24px 60px rgba(24, 48, 35, 0.12);
    --radius-lg: 28px;
    --radius-md: 20px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--accent) 12%, transparent), transparent 24%),
        linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
    color: var(--text);
    font-family: "Manrope", sans-serif;
}

h1, h2, h3, h4, .navbar-brand {
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 0.02em;
}

p {
    margin-bottom: 0;
}

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

.lang {
    display: none;
}

.lang.active {
    display: block;
}

.lang-inline {
    display: none;
}

.lang-inline.active {
    display: inline;
}

.page-shell {
    overflow: hidden;
}

.navbar {
    background: rgba(18, 40, 31, 0.88) !important;
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(18, 40, 31, 0.16);
}

.navbar-brand {
    font-size: 2rem;
    line-height: 1;
}

.nav-link {
    color: rgba(255, 255, 255, 0.86) !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.92rem;
}

.nav-link:hover,
.nav-link:focus {
    color: #fff !important;
}

.language-switcher {
    display: inline-flex;
    gap: 0.45rem;
    margin-left: 1rem;
}

.language-switcher button {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: transparent;
    color: #fff;
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.language-switcher button.active {
    background: #fff;
    color: var(--primary-deep);
    border-color: #fff;
}

.preview-strip {
    background: linear-gradient(90deg, var(--primary-deep) 0%, var(--primary) 100%);
    color: #fff;
    padding: 0.95rem 0;
    font-size: 0.95rem;
}

.preview-strip strong {
    color: color-mix(in srgb, var(--accent) 72%, white);
}

.preview-strip a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.18rem;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(15, 28, 23, 0.84) 0%, rgba(15, 28, 23, 0.58) 42%, rgba(15, 28, 23, 0.28) 100%),
        var(--hero-image);
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(180deg, transparent, rgba(247, 242, 232, 0.97));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    padding: 6rem 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.15rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.83rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(3.2rem, 7vw, 6.2rem);
    line-height: 0.92;
    margin-bottom: 1rem;
}

.hero-copy {
    max-width: 640px;
    font-size: 1.13rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-main,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 999px;
    padding: 0.98rem 1.6rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.btn-main {
    background: var(--accent);
    color: #20160f;
    box-shadow: 0 18px 30px color-mix(in srgb, var(--accent) 30%, transparent);
}

.btn-main:hover,
.btn-main:focus {
    background: color-mix(in srgb, var(--accent) 86%, white);
    color: #20160f;
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.34);
    color: #fff;
}

.btn-ghost:hover,
.btn-ghost:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}

.fact {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.fact strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.08rem;
}

.fact span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
}

.section-pad {
    padding: 5.3rem 0;
}

.section-title {
    max-width: 780px;
    margin: 0 auto 3rem;
    text-align: center;
}

.kicker {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: clamp(2.6rem, 5vw, 4.1rem);
    line-height: 0.96;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.card-soft,
.feature-card,
.showcase-card,
.quote-card,
.contact-card,
.info-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.feature-card,
.quote-card,
.info-panel,
.contact-card {
    height: 100%;
    padding: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    margin-bottom: 1.2rem;
    border-radius: 18px;
    background: linear-gradient(145deg, color-mix(in srgb, var(--primary) 12%, white), color-mix(in srgb, var(--accent) 18%, white));
    color: var(--primary);
    font-size: 1.55rem;
}

.feature-card p,
.quote-card p,
.contact-card p,
.showcase-card p,
.meta-list,
.info-list li {
    color: var(--muted);
    line-height: 1.75;
}

.showcase-card {
    overflow: hidden;
    height: 100%;
}

.showcase-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.showcase-content {
    padding: 1.7rem;
}

.showcase-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
    margin-bottom: 0.85rem;
}

.badge-soft {
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--primary) 12%, white);
    color: var(--primary-deep);
    font-size: 0.84rem;
    font-weight: 800;
    white-space: nowrap;
}

.meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    font-size: 0.92rem;
}

.meta-list i,
.info-list i,
.contact-list i {
    color: var(--primary);
    margin-right: 0.45rem;
}

.accent-panel {
    background: linear-gradient(135deg, var(--primary-deep), var(--primary));
    color: #fff;
    border-radius: 34px;
    padding: 3rem;
    box-shadow: 0 26px 50px rgba(17, 38, 29, 0.22);
}

.accent-panel .kicker {
    color: rgba(255, 255, 255, 0.7);
}

.accent-panel p,
.accent-panel li {
    color: rgba(255, 255, 255, 0.84);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    min-height: 230px;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.quote-mark {
    color: var(--accent);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.info-list,
.contact-list {
    margin: 1.2rem 0 0;
    padding: 0;
    list-style: none;
}

.info-list li,
.contact-list li {
    margin-bottom: 0.85rem;
}

.cta-note {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

footer {
    background: var(--primary-deep);
    color: rgba(255, 249, 241, 0.82);
    padding: 2rem 0 2.5rem;
}

footer p {
    margin: 0;
}

@media (max-width: 991.98px) {
    .hero {
        min-height: auto;
        padding-top: 5rem;
    }

    .hero-facts,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .language-switcher {
        margin: 1rem 0 0;
    }
}

@media (max-width: 767.98px) {
    .hero-content {
        padding: 4.4rem 0 4.8rem;
    }

    .hero h1 {
        font-size: 3.35rem;
    }

    .section-pad {
        padding: 4.2rem 0;
    }

    .feature-card,
    .showcase-content,
    .quote-card,
    .contact-card,
    .info-panel,
    .accent-panel {
        padding: 1.5rem;
    }

    .showcase-top {
        flex-direction: column;
        align-items: flex-start;
    }
}
