html.language-loading body {
    visibility: hidden;
}

:root {
    --bg-white: #ffffff;
    --bg-sage: #DEE7E0;
    --bg-sage-soft: #F3F6F3;
    --bg-sage-medium: #D3DDD5;
    --bg-sage-dark: #6F7F72;
    --text-primary: #39453D;
    --text-secondary: #667269;
    --text-soft: #7B867E;
    --logo-beige: #CFBFB2;
    --accent: #B7C5BA;
    --accent-dark: #8FA294;
    --border-soft: rgba(111, 127, 114, 0.22);
    --shadow-soft: 0 12px 35px rgba(57, 69, 61, 0.08);
    --font-main: 'Libre Bodoni', serif;
    --font-display: 'Cormorant Garamond', serif;
    --font-luxury: 'Bodoni Moda', serif;
    --font-nav: 1.2rem;
    --font-title: clamp(2.1rem, 3.2vw, 3.2rem);
    --font-subtitle: 1.25rem;
    --font-body: 1rem;
    --font-small: 0.95rem;
    --font-button: 0.9rem;
    --header-height: 100px;
    --radius: 20px;
}

html.language-loading body {
    visibility: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.7;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: none;
    color: var(--text-primary);
}

h2 {
    line-height: 1.15;
}

h3 {
    line-height: 1.2;
    padding-bottom: 0;
}

p {
    padding-bottom: 1rem;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
}

.navbar {
    position: relative;
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-left .logo {
    display: flex;
    align-items: center;
}

.nav-left .logo img {
    display: block;
    width: auto;
    height: 110px;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 2.7rem;
    list-style: none;
    font-family: var(--font-main);
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-links li {
    white-space: nowrap;
}

.nav-links li a {
    color: var(--logo-beige);
    font-size: var(--font-nav);
    font-weight: 500;
    letter-spacing: 1.6px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--accent-dark);
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 1rem;
}

.burger div {
    width: 25px;
    height: 2px;
    margin: 4px;
    background: var(--logo-beige);
}

.language-switcher {
    display: flex;
    align-items: center;
}

.lang-btn {
    display: flex;
    align-items: center;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

.lang-btn img {
    display: block;
    width: 36px;
    height: auto;
    border-radius: 10%;
    opacity: 0.6;
    transition: 
        transform 0.2s ease,
        opacity 0.5s ease;
}

.lang-btn:hover img {
    transform: scale(1.08);
    opacity: 0.8;
}

.hero-image {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Hero is intentionally white. The logo provides the main visual focus. */
    background: var(--bg-white);
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-20px);
    padding: 120px 20px 40px;
}

.hero-logo {
    display: block;
    width: min(420px, 72vw);
    height: auto;
    margin-bottom: 18px;
}

.hero-subtitle {
    margin-top: 0;
    font-family: var(--font-main);
    font-size: var(--font-subtitle);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 2.5px;
    /* Same color as the logo. */
    color: var(--logo-beige);
    text-align: center;
}

.intro-section {
    padding: 140px 8vw;
}

.intro-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 80px;
}

.intro-image {
    width: 100%;
}

.intro-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 24px;
}

.intro-heading h2 {
    font-family: var(--font-luxury);
    margin: 0;
    font-family: var(--font-luxury);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -1px;
    color: #28352d;
}

.intro-content {
    padding-top: 48px;
    max-width: 600px;
}

.intro-lead {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.15;
    color: #68776d;
}

.intro-content h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2vw, 25px);
    font-weight: 500;
    line-height: 1.15;
    color: #68776d;
}

.intro-divider {
    width: 42px;
    height: 1px;
    margin: 34px 0;
    background: #a9b8aa;
}

.intro-content > p:last-child {
    margin: 0;
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.9;
    color: #59645d;
}

.about-section {
    width: 100%;
    padding: 100px 0 110px;
    background-color: var(--bg-sage-soft);
}

.about-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.about-text {
    max-width: 600px;
    margin: 0;
    font-family: var(--font-main);
    font-size: var(--font-body);
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: left;
}

.about-text p {
    margin: 0 0 0.8rem;
    padding-bottom: 0;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    font-weight: 600;
    color: var(--text-primary);
}

.about-text h2 {
    font-family: var(--font-luxury);
    font-size: clamp(36px, 3.2vw, 50px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.5px;
    padding-bottom: 20px;
}

.about-button {
    display: block;
    width: fit-content;
    margin: 28px auto 0;
    padding: 12px 30px;
    font-family: var(--font-main);
    font-size: var(--font-button);
    font-weight: 600;
    letter-spacing: 0.8px;
    text-decoration: none;
    color: var(--text-primary);
    background-color: transparent;
    border: 1px solid var(--accent);
    border-radius: 30px;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

.about-button:hover {
    background-color: var(--bg-sage-dark);
    border-color: var(--bg-sage-dark);
    color: #fff;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.about-image img {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.services-section {
    width: 100%;
    padding: 110px 0;
    background-color: var(--bg-white);
}

.services-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.services-image {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.services-image img {
    display: block;
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.services-text {
    max-width: 600px;
    margin: 0;
    font-family: var(--font-main);
    font-size: var(--font-body);
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: left;
}

.services-text h2 {
    font-family: var(--font-luxury);
    font-size: clamp(36px, 3.2vw, 50px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.5px;
    padding-bottom: 20px;
}

.services-text p {
    margin: 0 0 8px;
    padding-bottom: 0;
}

.services-text p:last-child {
    margin-bottom: 0;
}

.services-text strong {
    font-weight: 600;
}

.services-list {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 2rem;
}

.service-card {
    position: relative;
    width: 100%;
    padding: 24px 60px 24px 28px;

    border: 1px solid transparent;
    border-radius: 18px;

    background-color: var(--bg-sage-dark);
    color: #fff;

    font-family: var(--font-main);
    text-align: left;

    cursor: pointer;
    overflow: hidden;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.service-card-title {
    display: block;

    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.3;
}

.service-card-icon {
    position: absolute;
    top: 24px;
    right: 25px;

    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;

    transition: transform 0.3s ease;
}

.service-card-description {
    display: block;

    max-height: 0;
    margin-top: 0;

    overflow: hidden;

    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.92);

    opacity: 0;

    transition:
        max-height 0.4s ease,
        margin-top 0.4s ease,
        opacity 0.3s ease;
}

.service-card.active .service-card-description {
    max-height: 250px;
    margin-top: 15px;
    opacity: 1;
}

.service-card.active .service-card-icon {
    transform: rotate(45deg);
}

.services-cards {
    gap: 12px;
    margin-top: 1.5rem;
}

.service-card {
    padding: 21px 52px 21px 22px;
    border-radius: 16px;
}

.service-card-title {
    font-size: 1.3rem;
}

.service-card-description {
    font-size: 0.9rem;
    line-height: 1.65;
}

.service-card-icon {
    top: 21px;
    right: 20px;
}


.why-unamed-section {
    width: 100%;
    padding: 110px 20px;
    background-color: var(--bg-sage-soft);
    text-align: center;
    overflow: hidden;
}

.why-unamed-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

.why-unamed-container > h2 {
    font-family: var(--font-luxury);
    margin-bottom: 55px;
    font-family: var(--font-display);
    font-size: var(--font-title);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.why-unamed-carousel {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.why-unamed-track {
    position: relative;
    width: min(720px, 70vw);
    height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-unamed-item {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 50px 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateX(100px) scale(0.92);
    pointer-events: none;
    transition:
        opacity 0.5s ease,
        transform 0.5s ease,
        box-shadow 0.3s ease;
}

.why-unamed-item.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    z-index: 3;
}

.why-unamed-item.previous {
    opacity: 0.35;
    transform: translateX(-105%) scale(0.88);
    z-index: 1;
}

.why-unamed-item.next {
    opacity: 0.35;
    transform: translateX(105%) scale(0.88);
    z-index: 1;
}

.why-unamed-item h3 {
    margin-bottom: 18px;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--text-primary);
    text-align: center;
}

.why-unamed-item p {
    max-width: 570px;
    margin: 0;
    padding-bottom: 0;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
}

.carousel-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--logo-beige);
    background-color: transparent;
    border: 1px solid var(--logo-beige);
    border-radius: 50%;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.carousel-arrow:hover {
    background-color: var(--logo-beige);
    color: #fff;
    transform: scale(1.05);
}

.carousel-arrow:active {
    transform: scale(0.96);
}

.carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    background-color: var(--accent);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.45;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        background-color 0.3s ease;
}

.carousel-dot:hover {
    opacity: 0.8;
}

.carousel-dot.active {
    width: 10px;
    height: 10px;
    background-color: var(--logo-beige);
    opacity: 1;
    transform: scale(1.15);
}

.health-cta-section {
    width: 100%;
    padding: 110px 20px;
    /* This is the strongest sage tone. Used only for CTA so the page still feels light. */
    background-color: var(--bg-sage-dark);
    text-align: center;
}

.health-cta-container {
    max-width: 850px;
    margin: 0 auto;
}

.health-cta-container h2 {
    font-family: var(--font-luxury);
    margin-bottom: 30px;
    font-size: var(--font-title);
    letter-spacing: 0.5px;
    color: #fff;
}

.health-cta-intro {
    margin-bottom: 25px;
    font-family: var(--font-main);
    font-size: var(--font-body);
    font-weight: 400;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
}

.health-cta-text {
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 0;
    font-family: var(--font-main);
    font-size: var(--font-body);
    font-weight: 500;
    line-height: 1.7;
    color: #fff;
}

.contact-section {
    width: 100%;
    padding: 110px 0 0;
    background-color: var(--bg-white);
}

.contact-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 80px;
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.contact-info,
.contact-form-wrapper {
    flex: 1;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-family: var(--font-luxury);
    margin-bottom: 38px;
    font-size: var(--font-title);
    letter-spacing: 0.5px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-item i {
    width: 22px;
    margin-top: 5px;
    font-size: var(--font-body);
    color: var(--logo-beige);
}

.contact-item h3 {
    margin-bottom: 5px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--text-primary);
}

.contact-item p {
    margin: 0;
    padding-bottom: 0;
    font-family: var(--font-main);
    font-size: var(--font-body);
    line-height: 1.6;
    color: var(--text-secondary);
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-family: var(--font-main);
    font-size: var(--font-small);
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    font-family: var(--font-main);
    font-size: var(--font-small);
    color: var(--text-primary);
    background-color: var(--bg-sage-soft);
    border: 1px solid var(--accent);
    border-radius: 12px;
    outline: none;
    transition:
        border-color 0.3s ease,
        background-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-soft);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--bg-sage-dark);
    background-color: #fff;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-submit {
    display: block;
    width: fit-content;
    margin: 8px 0 0;
    padding: 12px 30px;
    font-family: var(--font-main);
    font-size: var(--font-button);
    font-weight: 600;
    letter-spacing: 0.8px;
    text-decoration: none;
    color: var(--text-primary);
    background-color: transparent;
    border: 1px solid var(--accent);
    border-radius: 30px;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

.contact-submit:hover {
    background-color: var(--bg-sage-dark);
    border-color: var(--bg-sage-dark);
    color: #fff;
}

.form-status {
    margin-top: 15px;
    padding-bottom: 0;
    font-family: var(--font-main);
    font-size: var(--font-small);
}

.contact-map {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: 0;
    border-radius: 25px 25px 0 0;
}

.footer {
    padding: 30px 20px 10px;
    background: var(--bg-sage-soft);
    color: var(--text-secondary);
    text-align: center;
    font-family: var(--font-main);
}

.footer-bottom {
    margin-top: 0;
    padding-top: 15px;
    border-top: 1px solid var(--border-soft);
    font-size: var(--font-small);
    color: var(--text-soft);
}

.footer-bottom p {
    padding-bottom: 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-body);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-dark);
}

@media (max-width: 768px) {
    .navbar {
        width: 100%;
        padding: 0.8rem 1.2rem;
    }

    .nav-left .logo img {
        height: 82px;
    }

    .nav-center {
        display: none;
    }

    .nav-right {
        gap: 1rem;
    }

    .burger {
        display: flex;
    }

    .lang-btn img {
        width: 32px;
    }

    .hero-image {
        min-height: 92vh;
        background: var(--bg-white);
    }

    .hero-logo {
        width: min(300px, 76vw);
        margin-bottom: 15px;
    }

    .hero-subtitle {
        margin-top: 0;
        font-size: 0.9rem;
        line-height: 1.5;
        letter-spacing: 1.4px;
        color: var(--logo-beige);
    }

    .hero-content {
        transform: translateY(25px);
        padding-top: 100px;
    }

    .intro-section {
        padding: 70px 25px 55px;
    }

    .intro-container h2,
    .about-text h2,
    .services-text h2,
    .why-unamed-container > h2,
    .health-cta-container h2,
    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 2rem;
        line-height: 1.2;
        letter-spacing: 0;
    }

    .intro-container h3 {
        font-size: var(--font-body);
    }

    .intro-container p {
        font-size: var(--font-small);
    }

    .about-section {
        padding: 75px 0 80px;
        background-color: var(--bg-sage-soft);
    }

    .about-container {
        width: 90%;
        flex-direction: column;
        gap: 45px;
    }

    .about-text {
        width: 100%;
    }

    .about-text p {
        font-size: var(--font-small);
    }

    .about-text h2 {
        margin-bottom: 22px;
    }

    .about-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .about-image img {
        max-width: 100%;
    }

    .services-section {
        padding: 75px 0;
        background-color: var(--bg-white);
    }

    .services-container {
        width: 90%;
        flex-direction: column;
        gap: 45px;
    }

    .services-text {
        width: 100%;
        order: 1;
    }

    .services-image {
        width: 100%;
        justify-content: center;
        order: 2;
    }

    .services-image img {
        max-width: 100%;
    }

    .services-cards {
    gap: 12px;
    margin-top: 1.5rem;
    }

    .service-card {
        padding: 21px 52px 21px 22px;
        border-radius: 16px;
    }

    .service-card-title {
        font-size: 1.3rem;
    }

    .service-card-description {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .service-card-icon {
        top: 21px;
        right: 20px;
    }


    .why-unamed-section {
        padding: 75px 15px;
    }

    .why-unamed-container > h2 {
        font-family: var(--font-luxury);
        margin-bottom: 38px;
    }

    .why-unamed-carousel {
        gap: 10px;
    }

    .why-unamed-track {
        width: calc(100vw - 105px);
        height: 360px;
    }

    .why-unamed-item {
        padding: 50px 28px 40px;
        border-radius: 20px;
    }

    .why-unamed-item.previous {
        transform: translateX(-105%) scale(0.9);
    }

    .why-unamed-item.next {
        transform: translateX(105%) scale(0.9);
    }

    .why-unamed-item h3 {
        font-size: 1.65rem;
        margin-bottom: 16px;
    }

    .why-unamed-item p {
        font-size: var(--font-small);
        line-height: 1.75;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .carousel-dots {
        margin-top: 25px;
    }

    .health-cta-section {
        padding: 75px 25px;
        background-color: var(--bg-sage-dark);
    }

    .health-cta-intro {
        font-size: var(--font-small);
        line-height: 1.8;
    }

    .health-cta-text {
        font-size: var(--font-small);
    }

    .contact-section {
        padding-top: 65px;
        background-color: var(--bg-white);
    }

    .contact-details {
        gap: 22px;
    }

    .contact-container {
        width: 90%;
        padding-bottom: 60px;
        flex-direction: column;
        gap: 50px;
    }

    .contact-info,
    .contact-form-wrapper {
        width: 100%;
    }

    .contact-info h2,
    .contact-form-wrapper h2 {
        margin-bottom: 30px;
    }

    .contact-item h3 {
        font-size: var(--font-small);
    }

    .contact-item p {
        font-size: var(--font-small);
    }

    .form-group label,
    .form-group input,
    .form-group textarea {
        font-size: var(--font-small);
    }

    .contact-submit {
        font-size: var(--font-button);
    }

    .contact-map {
        width: 90%;
    }

    .contact-map iframe {
        height: 350px;
        border-radius: 20px 20px 0 0;
    }

    .footer {
        padding: 30px 20px 10px;
        background-color: var(--bg-sage-soft);
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-links a {
        font-size: var(--font-small);
    }

    .intro-section {
        padding: 90px 24px;
    }

    .intro-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-text {
        order: 1;
    }
    
    .intro-image {
        order: 2;
    }
    
    .intro-image img {
        border-radius: 20px;
    }


    .intro-heading h2 {
        font-family: var(--font-luxury);
        font-size: 48px;
    }

    .intro-content {
        padding-top: 0;
        max-width: none;
    }

    .intro-lead {
        font-size: 30px;
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-center {
        display: block;
        position: absolute;
        top: 100%;
        right: 1.5rem;
        left: auto;
        transform: none;
        z-index: 1001;
    }

    .nav-links {
        display: none;
    }

    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        min-width: 230px;
        padding: 1.4rem;
        list-style: none;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--border-soft);
        border-radius: 16px;
        box-shadow: var(--shadow-soft);
        white-space: nowrap;
    }

    .nav-links.mobile-active li {
        width: 100%;
    }

    .nav-links.mobile-active li a {
        display: block;
        font-size: 1rem;
        white-space: nowrap;
        /* Keep mobile navigation identical to the logo color. */
        color: var(--logo-beige);
    }

    .nav-links.mobile-active li a:hover,
    .nav-links.mobile-active li a.active {
        color: var(--accent-dark);
    }

    .burger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 32px;
        height: 32px;
        cursor: pointer;
        margin-left: 0;
    }

    .burger div {
        width: 26px;
        height: 2px;
        margin: 3px 0;
        background: var(--logo-beige);
        transition: all 0.3s ease;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }
}

@media (max-width: 500px) {
    .navbar {
        padding: 0.7rem 1rem;
    }

    .nav-left .logo img {
        height: 78px;
    }

    .lang-btn img {
        width: 32px;
        opacity: 0.5;
    }

    .nav-center {
        right: 1rem;
    }

    .nav-links.mobile-active {
        min-width: 0;
        width: calc(100vw - 2rem);
    }

    .hero-image {
        min-height: 88vh;
        background-color: var(--bg-white);
    }

    .hero-logo {
        width: min(270px, 76vw);
        margin-bottom: 13px;
    }

    .hero-subtitle {
        margin-top: 0;
        font-size: 0.82rem;
        line-height: 1.5;
        letter-spacing: 1.1px;
        color: var(--logo-beige);
    }

    .why-unamed-section {
        padding: 65px 10px;
    }

    .why-unamed-track {
        width: calc(100vw - 90px);
        height: 390px;
    }

    .why-unamed-item {
        padding: 50px 22px 35px;
    }

    .why-unamed-item h3 {
        font-size: 1.5rem;
    }

    .why-unamed-item p {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}

@media (min-width: 769px) and (max-width: 1400px) {
    .nav-left .logo img {
        height: 70px;
    }

    .hero-logo {
        width: min(310px, 62vw);
        margin-bottom: 16px;
    }

    .hero-content {
        transform: translateY(-10px);
    }
}
