:root {
    --accent: #ad8b6a;
    --accent-dark: #8e6d4e;
    --ink: #111111;
    --muted: #777777;
    --sand: #e5dace;
    --soft: #f7f5f2;
    --ivory: #f9f6f2;
    --line: #ececec;
    --shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
    --shadow-deep: 0 60px 100px -20px rgba(0, 0, 0, 0.15);
    --lux-header-height: 128px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

main {
    padding-top: 0;
}

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

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

.font-serif {
    font-family: "Playfair Display", serif;
}

.text-accent {
    color: #bbb96c;
}

.bg-ink {
    background: #111111;
}

.bg-ivory {
    background: var(--ivory);
}

.bg-soft {
    background: var(--soft);
}

.section-pad-lg {
    padding: 8rem 0;
}

.section-pad-xl {
    padding: 12rem 0;
}

@media (max-width: 767.98px) {
    .section-pad-lg {
        padding: 5rem 0;
    }
    .section-pad-xl {
        padding: 8rem 0;
    }
}

::selection {
    background: var(--accent);
    color: #ffffff;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slide-up {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes zoom-out {
    from {
        transform: scale(1.15);
    }
    to {
        transform: scale(1);
    }
}

.reveal {
    animation: fade-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in {
    animation: fade-in 1s ease-out forwards;
}

.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__media,
.hero__overlay {
    position: absolute;
    inset: 0;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom-out 30s ease-in-out infinite alternate;
}

.hero__overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.7)
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.hero__badge {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    backdrop-filter: blur(8px);
    position: relative;
}

.hero__badge-lines::before,
.hero__badge-lines::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero__badge-lines {
    position: absolute;
    inset: 0;
}

.hero__badge-lines::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.hero__badge-lines::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.hero__badge-text {
    position: absolute;
    bottom: -28px;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
}

.hero__badge--center {
    flex-direction: column;
    gap: 0;
    text-align: center;
}

.hero__badge--center .hero__badge-text {
    position: static;
    font-size: 10px;
    letter-spacing: 0.2em;
}

.hero__eyebrow {
    font-size: 11px;
    letter-spacing: 0.6em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero__title {
    font-size: clamp(3rem, 6vw, 10rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
}

.hero__title-accent {
    color: #ffffff;
    font-style: italic;
}

.hero__subtitle {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
}

.hero__divider {
    height: 1px;
    width: 90px;
    background: #ffffff;
}

.hero__hint {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.7em;
}

.hero__hint-line {
    width: 1px;
    height: 90px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgb(255, 255, 255),
        transparent
    );
}

.hero__cta {
    position: absolute;
    bottom: 4rem;
    right: 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2rem;
    color: #ffffff;
    z-index: 3;
}

.hero__cta .cta-button {
    position: relative;
    overflow: hidden;
    padding: 1.2rem 3.5rem;
    border: none;
    background: #ffffff;
    color: #111111;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.4em;
    font-weight: 700;
}

.hero__cta .cta-button span {
    position: relative;
    z-index: 2;
}

.hero__cta .cta-button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.hero__cta .cta-button:hover {
    color: #ffffff;
}

.hero__cta .cta-button:hover::after {
    transform: translateY(0);
}

@media (max-width: 1199.98px) {
    .hero__cta {
        display: none;
    }
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.8s ease;
    padding: 2.5rem 0;
}

.site-nav.nav--light {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 1.4rem 0;
}

.nav-shell {
    max-width: 1900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.site-nav.nav--light .nav-links {
    color: #111111;
}

.nav-links a {
    position: relative;
    padding-bottom: 4px;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.4s ease;
}

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

.nav-links a.is-active {
    color: var(--accent);
    opacity: 1;
}

.nav-logo {
    grid-column: 2 / 3;
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    letter-spacing: 0.3em;
    color: #ffffff;
    transition: transform 0.8s ease;
}

.site-nav.nav--light .nav-logo {
    color: #111111;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    color: #ffffff;
    font-size: 10px;
}

.site-nav.nav--light .nav-tools {
    color: #111111;
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-weight: 700;
}

.nav-divider {
    width: 1px;
    height: 24px;
    background: currentColor;
    opacity: 0.2;
}

.nav-toggle {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 1.5rem;
}

.nav-toggle .bi-x-lg {
    display: none;
}

body.menu-open .nav-toggle .bi-list {
    display: none;
}

body.menu-open .nav-toggle .bi-x-lg {
    display: inline-block;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    text-align: center;
}

body.menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu__links {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mobile-menu__links a {
    font-size: 2.2rem;
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: #111111;
}

.mobile-menu__links a:hover {
    color: var(--accent);
}

.mobile-menu__footer {
    position: absolute;
    bottom: 4rem;
    left: 0;
    right: 0;
    padding: 0 2rem;
    border-top: 1px solid #f0f0f0;
    padding-top: 2.5rem;
}

.mobile-menu__social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.2em;
    font-weight: 700;
}

.intro-section {
    padding: 12rem 0;
}

@media (max-width: 767.98px) {
    .intro-section {
        padding: 8rem 0;
    }
}

.intro-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: var(--accent);
    font-weight: 700;
}

.intro-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1;
    letter-spacing: -0.02em;
}

.intro-copy {
    color: #000000;
    font-weight: 300;
    line-height: 1.7;
    font-size: 1.1rem;
}

.intro-dropcap::first-letter {
    font-size: 3rem;
    font-family: "Playfair Display", serif;
    margin-right: 0.5rem;
    float: left;
    color: var(--accent);
    line-height: 1;
}

.intro-card {
    position: relative;
}

.intro-card__frame {
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    width: 160px;
    height: 160px;
    border: 1px solid #99641e;
    z-index: -1;
}

.intro-quote {
    position: absolute;
    left: -3rem;
    bottom: -3rem;
    background: #000000;
    color: #ffffff;
    padding: 1.5rem 2rem;
    max-width: 280px;
    border-bottom: 7px solid #9f3a15;
    border-left: 7px solid #9f3a15;
}

@media (max-width: 991.98px) {
    .intro-quote {
        position: static;
        margin-top: 2rem;
    }
}

.expanding-section {
    padding: 6rem 0 8rem;
}

.expanding-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .expanding-cards {
        flex-direction: row;
        height: 750px;
    }
}

.expanding-card {
    position: relative;
    flex: 1;
    border-radius: 40px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    height: 140px;
}

.expanding-card.is-active {
    flex: 5;
    height: 520px;
}

@media (min-width: 768px) {
    .expanding-card {
        height: 100%;
        border-radius: 80px;
    }
    .expanding-card.is-active {
        height: 100%;
    }
}

.expanding-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s ease;
}

.expanding-card.is-active .expanding-card__image {
    transform: scale(1);
}

.expanding-card:not(.is-active) .expanding-card__image {
    transform: scale(1.08);
    filter: grayscale(1);
}

.expanding-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.2),
        transparent
    );
    opacity: 0.8;
    transition: opacity 0.6s ease;
}

.expanding-card.is-active .expanding-card__overlay {
    opacity: 1;
}

.expanding-card__inactive {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    color: #ffffff;
}

@media (min-width: 768px) {
    .expanding-card__inactive {
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 4rem 1.5rem;
    }
}

.expanding-card.is-active .expanding-card__inactive {
    opacity: 0;
    pointer-events: none;
}

.expanding-card__inactive-title {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .expanding-card__inactive-title {
        transform: rotate(-90deg);
        white-space: nowrap;
        font-size: 2rem;
    }
}

.expanding-card__inactive-flag {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
    font-weight: 700;
}

.expanding-card__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.expanding-card.is-active .expanding-card__content {
    opacity: 1;
    transform: translateY(0);
}

.expanding-card__content h4 {
    font-size: clamp(2rem, 4vw, 5rem);
    line-height: 1;
    margin-bottom: 1rem;
}

.expanding-card__content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.expanding-card__button {
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.8rem 2.5rem;
    border-radius: 999px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-weight: 700;
    background: transparent;
    color: #ffffff;
}

.storytelling {
    position: relative;
}

.story-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 2px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.08);
    z-index: 80;
}

.story-progress__bar {
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: height 0.3s ease;
}

.story-chapter {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column-reverse;
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
}

@media (min-width: 992px) {
    .story-chapter {
        flex-direction: row;
        height: 100vh;
        position: sticky;
        top: 0;
    }
}

.story-chapter.theme-light {
    background: #ffffff;
    color: #111111;
}

.story-chapter.theme-beige {
    background: #f9f6f2;
    color: #1f1f1f;
}

.story-chapter.theme-dark {
    background: #111111;
    color: #f5f5f5;
}

.story-chapter__content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.story-chapter__inner {
    max-width: 540px;
}

.story-chapter__image {
    flex: 1;
    position: relative;
    min-height: 40vh;
}

.story-chapter__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease, opacity 1.2s ease;
}

.story-chapter.is-active .story-chapter__image img {
    transform: scale(1);
    opacity: 1;
    filter: grayscale(0);
}

.story-chapter:not(.is-active) .story-chapter__image img {
    transform: scale(1.08);
    opacity: 0.6;
    filter: grayscale(0.3);
}

.story-chapter__meta {
    font-size: 10px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.story-chapter__title {
    font-size: clamp(2rem, 3vw, 3.5rem);
    font-family: "Playfair Display", serif;
    margin: 1.5rem 0;
}

.story-chapter__text {
    font-size: 17px;
    line-height: 1.8;
    font-weight: 300;
    color: inherit;
    opacity: 0.85;
}

.story-chapter__link {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-weight: 700;
}

/* .story-chapter__link-line {
  width: 80px;
  height: 1px;
  background: currentColor;
} */

.experience-section {
    padding: 8rem 0;
}

.experience-video {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.experience-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.experience-video:hover img {
    transform: scale(1.05);
}

.experience-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-play__circle {
    width: 96px;
    height: 96px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: all 0.4s ease;
    color: #ffffff;
}

.experience-video:hover .experience-play__circle {
    background: #ffffff;
    color: #111111;
}

.timeline-section {
    background: var(--sand);
    padding: 5rem 0;
}

.timeline-section h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
}

.timeline-images {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.timeline-images img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    width: 110px;
}

.timeline-images img:nth-child(2) {
    width: 160px;
    margin-bottom: -10px;
}

@media (min-width: 576px) {
    .timeline-images img {
        width: 140px;
    }

    .timeline-images img:nth-child(2) {
        width: 200px;
        margin-bottom: -20px;
    }
}

@media (min-width: 992px) {
    .timeline-images img {
        width: 180px;
    }

    .timeline-images img:nth-child(2) {
        width: 260px;
        margin-bottom: -24px;
    }
}

.inspiration-section {
    background: var(--ivory);
    padding: 10rem 0;
}

.inspiration-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 6rem;
}

@media (min-width: 992px) {
    .inspiration-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.inspiration-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.inspiration-card__media {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.inspiration-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 4s ease;
}

.inspiration-card:hover .inspiration-card__media img {
    transform: scale(1.08);
}

.inspiration-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    transition: background 0.6s ease;
}

.inspiration-card:hover .inspiration-card__media::after {
    background: rgba(0, 0, 0, 0.2);
}

.inspiration-tag {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--accent);
    font-weight: 700;
}

.inspiration-card__title {
    font-size: 1.9rem;
    font-family: "Playfair Display", serif;
}

.inspiration-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    font-size: 10px;
    font-weight: 700;
    color: #111111;
}

.inspiration-cta-line {
    width: 40px;
    height: 1px;
    background: #111111;
    transition: all 0.7s ease;
}

.inspiration-card:hover .inspiration-cta-line {
    width: 80px;
    background: var(--accent);
}

.awards-section {
    background: #111111;
    color: #ffffff;
    padding: 8rem 0;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 992px) {
    .awards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.awards-card {
    background: #111111;
    padding: 3rem 2rem;
    text-align: center;
    transition: background 0.4s ease;
}

.awards-card:hover {
    background: #1c1c1c;
}

.testimonial-section {
    background: var(--soft);
}

.testimonial-content {
    padding: 4rem 3rem;
}

@media (min-width: 992px) {
    .testimonial-content {
        padding: 6rem 6rem;
    }
}

.partner-section {
    padding: 6rem 0;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    color: #000000;
    opacity: 0.5;
}

.footer {
    background: #000000;
    color: #ffffff;
    padding: 6rem 0 4rem;
    position: relative;
}

.footer form input,
.footer form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #2a2a2a;
    color: #ffffff;
    padding: 0.6rem 0;
}

.footer form input:focus,
.footer form textarea:focus {
    outline: none;
    border-bottom-color: #ffffff;
}

.footer-links {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.footer-links h4 {
    color: #666666;
    font-size: 10px;
}

.footer-bottom {
    border-top: 1px solid #1b1b1b;
    padding-top: 2rem;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #666666;
}

.footer-fixed-cta {
    position: fixed;
    bottom: 0;
    right: 0;
    background: var(--accent);
    color: #ffffff;
    padding: 0.9rem 2rem;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.25em;
    font-weight: 700;
    z-index: 150;
    border: none;
}

.footer-fixed-cta:hover {
    background: var(--accent-dark);
}

@media (max-width: 767.98px) {
    .footer-fixed-cta {
        width: 100%;
        text-align: center;
    }
}

.package-hero .hero__image {
    animation-duration: 25s;
}

.editorial-section {
    padding: 10rem 0;
}

.editorial-lead {
    font-size: 1.2rem;
    color: #000000;
    font-weight: 300;
    line-height: 1.7;
}

.nature-section {
    background: #faf9f6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

@media (min-width: 992px) {
    .nature-section {
        flex-direction: row;
    }
}

.nature-media {
    position: relative;
    min-height: 50vh;
    overflow: hidden;
}

@media (min-width: 992px) {
    .nature-media {
        min-height: 100vh;
        width: 50%;
    }
}

.nature-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}

.nature-media:hover img {
    transform: scale(1.08);
}

.nature-content {
    padding: 6rem 3rem;
    background: #ad8b6a;
}

@media (min-width: 992px) {
    .nature-content {
        width: 50%;
        padding: 6rem 4rem;
    }
}

.nature-section--safari {
    background: #f2e7da;
}

@media (min-width: 992px) {
    .nature-section--safari {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
        align-items: stretch;
    }
}

.nature-section--safari .nature-media {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    width: 100%;
}

.nature-section--safari .nature-media img {
    filter: saturate(1.08) contrast(1.05) brightness(1.02);
    transform: scale(1.02);
}

.nature-section--safari .nature-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 30% 20%,
        rgba(255, 255, 255, 0.08),
        rgba(0, 0, 0, 0.12)
    );
    pointer-events: none;
}

.nature-section--safari .nature-media__badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    background: rgba(17, 17, 17, 0.6);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.nature-section--safari .nature-media__play {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
}

.nature-section--safari .nature-content {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2e7da;
    width: 100%;
}

.nature-section--safari .nature-panel {
    background: #fbf8f3;
    padding: 3rem;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow);
    max-width: 560px;
    width: 100%;
}

.nature-section--safari .nature-tag {
    text-transform: uppercase;
    letter-spacing: 0.5em;
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
}

.nature-section--safari .nature-title {
    font-size: clamp(2.4rem, 3.6vw, 4.4rem);
    line-height: 1.05;
}

.nature-section--safari .nature-quote {
    font-size: 1.2rem;
}

.nature-section--safari .nature-body {
    line-height: 1.7;
}

.nature-section--safari .nature-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.nature-section--safari .nature-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nature-section--safari .nature-chip {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.nature-section--safari .nature-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-content: space-between;
}

.nature-section--safari .nature-route {
    letter-spacing: 0.3em;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .nature-section--safari .nature-panel {
        margin: 2rem 0;
    }

    .nature-section--safari .nature-actions {
        justify-content: flex-start;
    }
}

.catalog-section {
    padding: 10rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f3ee 100%);
}

.catalog-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 360px;
}

.catalog-intro__line {
    width: 70px;
    height: 1px;
    background: rgba(173, 139, 106, 0.4);
}

.catalog-intro__lead {
    color: #7a7a7a;
    font-style: italic;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.catalog-intro__btn {
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: transparent;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 10px;
    padding: 0.9rem 1.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.4s ease;
}

.catalog-intro__btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(173, 139, 106, 0.08);
}

@media (min-width: 992px) {
    .catalog-intro {
        align-items: flex-end;
        text-align: right;
    }
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .catalog-grid {
        grid-template-columns: repeat(12, 1fr);
    }
}

.catalog-item {
    grid-column: span 12;
    transition: transform 0.6s ease;
}

.catalog-aside {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.catalog-kicker {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 9px;
    font-weight: 700;
    color: rgba(173, 139, 106, 0.9);
    margin: 0;
}

@media (min-width: 1200px) {
    .catalog-item.span-8 {
        grid-column: span 8;
    }
    .catalog-item.span-4 {
        grid-column: span 4;
    }
}

.catalog-card {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
    border-radius: 18px;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.catalog-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 35%,
        rgba(0, 0, 0, 0.28) 100%
    );
    pointer-events: none;
}

.catalog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 4s ease, filter 0.6s ease;
}

.catalog-item:hover .catalog-card img {
    transform: scale(1.08);
    filter: saturate(1.06);
}

.catalog-item:hover .catalog-card {
    transform: translateY(-6px);
    box-shadow: var(--shadow-deep);
}

.catalog-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    gap: 0.75rem;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
}

.catalog-badge span {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.catalog-badge span + span {
    background: rgba(17, 17, 17, 0.9);
    color: var(--accent);
}

.catalog-price {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.catalog-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: #8f8f8f;
    font-weight: 700;
}

.catalog-meta i {
    color: var(--accent);
}

.catalog-title {
    font-size: 2rem;
    font-family: "Playfair Display", serif;
    margin: 0.75rem 0 1rem;
    color: #1a1a1a;
    transition: color 0.4s ease;
}

.catalog-item:hover .catalog-title {
    color: var(--accent);
}

.catalog-desc {
    color: #000000;
    font-weight: 300;
    font-size: 1.3rem;
    line-height: 1.7;
}

.catalog-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1rem;
}

.catalog-list li {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: #999999;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.catalog-list li span {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
    display: inline-block;
}

.catalog-cta {
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: transparent;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 10px;
    font-weight: 700;
    padding: 0.75rem 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s ease;
}

.catalog-cta__arrow {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: rgba(17, 17, 17, 0.6);
    position: relative;
    transition: all 0.4s ease;
}

.catalog-cta__arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-right: 1px solid rgba(17, 17, 17, 0.6);
    border-top: 1px solid rgba(17, 17, 17, 0.6);
    transform: rotate(45deg);
}

.catalog-cta:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(173, 139, 106, 0.08);
}

.catalog-cta:hover .catalog-cta__arrow {
    width: 48px;
    background: var(--accent);
}

.catalog-cta:hover .catalog-cta__arrow::after {
    border-color: var(--accent);
}

.catalog-item .hero__divider {
    display: inline-block;
    height: 1px;
    background: rgba(173, 139, 106, 0.4);
    transition: transform 0.5s ease, background 0.5s ease;
    transform-origin: left;
}

.catalog-item:hover .hero__divider {
    transform: scaleX(1.35);
    background: var(--accent);
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cta-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.cta-section img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2) brightness(0.7);
}

.cta-section__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.cta-section__content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 800px;
}

.cta-section__content h2 {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 2.5rem;
}

.cta-button-outline {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    font-size: 11px;
    font-weight: 700;
    padding: 1rem 3rem;
    background: transparent;
}

.cta-button-outline:hover {
    background: #ffffff;
    color: #111111;
}

.contact-hero .hero__image {
    animation-duration: 20s;
}

.contact-form label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #999999;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #eeeeee;
    padding: 0.5rem 0;
    background: transparent;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.contact-sidebar {
    background: var(--ivory);
    padding: 4rem 3rem;
}

.contact-sidebar h3 {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--accent);
    font-weight: 700;
}

.contact-sidebar__links {
    display: grid;
    gap: 12px;
    margin-top: 1.25rem;
}

.contact-sidebar__links .sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0.85rem 1rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 11px;
    font-weight: 700;
    color: #2b241d;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.contact-sidebar__links .sidebar-link i {
    font-size: 1rem;
    color: var(--accent);
}

.contact-sidebar__links .sidebar-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(173, 139, 106, 0.35);
    color: #111111;
}

.contact-sidebar__links .sidebar-link:hover i {
    color: #9f3a15;
}

.contact-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 3rem;
    margin-top: 4rem;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    font-size: 10px;
    color: #999999;
}

.bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
}

.underline-swoosh {
    position: relative;
    display: inline-block;
}

.underline-swoosh svg {
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 100%;
    opacity: 0.3;
}

.mt-lg-offset {
    margin-top: 0;
}

@media (min-width: 992px) {
    .mt-lg-offset {
        margin-top: 6rem;
    }
}

/* Related packages carousel */
.related-packages {
    padding: 6rem 0;
    background: #ffffff;
}

.accommodation-tabs-nav .btn {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    color: #777;
    background: transparent;
    border: none;
}

.accommodation-tabs-nav .btn.is-active {
    background: #fff;
    color: #9f3a15;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.accommodation-panel {
    display: none;
}

.accommodation-panel.is-active {
    display: block;
    animation: fade-in 0.6s ease forwards;
}

.related-slider {
    position: relative;
}

.related-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 0 12px;
    scrollbar-width: none;
}

.related-track::-webkit-scrollbar {
    display: none;
}

.related-card {
    flex: 0 0 calc(33.333% - 16px);
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px rgba(0, 0, 0, 0.12);
}

.related-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.related-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.related-card:hover .related-media img {
    transform: scale(1.05);
}

.related-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 6px 10px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 999px;
}

.related-body {
    padding: 18px 18px 20px;
    display: grid;
    gap: 10px;
}

.related-link {
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 18px;
    color: black;
}

.related-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.related-control:hover {
    background: #111;
    color: #fff;
}

#related-packages-prev {
    left: -12px;
}

#related-packages-next {
    right: -12px;
}

@media (max-width: 1199px) {
    .related-card {
        flex-basis: calc(50% - 14px);
    }

    #related-packages-prev {
        left: 0;
    }

    #related-packages-next {
        right: 0;
    }
}

@media (max-width: 767px) {
    .related-packages {
        padding: 4rem 0;
    }

    .related-card {
        flex-basis: 85%;
    }
}

/* Navigation pulled from the home layout */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: #fff;
}

.site-header .top-bar {
    background: #bbb96c;
    color: #301912;
}

.site-header .top-bar a {
    color: #301912 !important;
}

.site-header .main-nav {
    border-bottom: 1px solid #f1f1f1;
}

.site-header .nav-link-custom {
    color: #301912 !important;
    text-decoration: none;
    font-size: 14px;
}

.site-header .nav-link-custom:hover {
    color: #301912;
}

.site-header .brand-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.site-header .brand-logo {
    max-height: 55px;
    width: auto;
    display: block;
}

.site-header .main-nav .d-flex {
    flex-wrap: nowrap;
}

.site-header .text-10 {
    font-size: 10px;
}
.site-header .text-11 {
    font-size: 11px;
}
.site-header .tracking-015 {
    letter-spacing: 0.15em;
}
.site-header .text-dark {
    color: #111;
}
.site-header .text-white {
    color: #fff;
}
.site-header .text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

.site-header .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: 6px 10px;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.site-header .btn-whatsapp:hover {
    background: #128c7e;
    color: #fff;
}

.site-header .icon {
    display: inline-block;
    vertical-align: middle;
}

.site-header .icon-11 {
    width: 11px;
    height: 11px;
}
.site-header .icon-12 {
    width: 12px;
    height: 12px;
}
.site-header .icon-13 {
    width: 13px;
    height: 13px;
}
.site-header .icon-16 {
    width: 16px;
    height: 16px;
}

.site-header .icon-fill {
    fill: currentColor;
    stroke: currentColor;
}

@media (min-width: 768px) {
    .site-header .px-md-5 {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width: 992px) {
    .site-header .px-lg-5 {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (max-width: 991px) {
    .site-header .brand-center {
        position: static;
        transform: none;
        text-align: left;
        margin-right: auto;
    }

    .site-header .main-nav .d-flex {
        flex-wrap: nowrap;
        align-items: center;
        gap: 12px;
    }

    /* hide desktop nav text on mobile, show hamburger */
    .site-header .nav-link-custom {
        display: none !important;
    }
    .site-header .main-nav nav,
    .site-header .main-nav .d-flex.align-items-center.gap-4.text-11 {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: inline-flex !important;
        margin-left: auto;
    }

    .site-header .main-nav .d-lg-none {
        margin-left: auto;
    }
}

/* Mobile drawer nav */
.mobile-menu-toggle {
    border: 0;
    background: transparent;
    padding: 8px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.mobile-toggle-bar {
    width: 20px;
    height: 2px;
    background: #111;
    display: block;
}

.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1049;
}

.mobile-drawer {
    position: fixed;
    inset: 0 auto 0 0;
    width: 82vw;
    max-width: 320px;
    background: #000;
    color: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
}

.mobile-drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-drawer__close {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-drawer__links {
    display: grid;
    gap: 14px;
}

.mobile-drawer__links a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    font-weight: 700;
}

.mobile-drawer__links a:hover {
    color: #f7f7f7;
}

.mobile-drawer__contact {
    margin-top: auto;
    display: grid;
    gap: 6px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.mobile-drawer-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

/* Floating WhatsApp button */
.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #25d366;
    border-radius: 50%;
    padding: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: #fff;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
    color: #fff;
}

.floating-whatsapp__icon {
    width: 38px;
    height: 38px;
    display: block;
    fill: currentColor;
}
/* Luxury footer */
.lux-footer {
    background: #050505;
    color: #ffffff;
    padding: 80px 0 40px;
}

.lux-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.15fr);
    gap: 60px;
}

.lux-footer__title {
    font-family: "Inter", sans-serif;
    font-size: 28px;
    margin-bottom: 8px;
}

.lux-footer__subtitle {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 0 26px;
    max-width: 420px;
}

.lux-footer__form {
    margin-bottom: 24px;
}

.lux-footer__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.lux-footer__input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #ffffff;
    color: #1f1b16;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
}

.lux-footer__input::placeholder {
    color: #6b6157;
}

.lux-footer__input--full {
    grid-column: 1 / -1;
}

.lux-footer__advisor {
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 16px;
}

.lux-footer__advisor label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lux-footer__advisor input[type="radio"] {
    accent-color: #ffffff;
}

.lux-footer__legal {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 0 18px;
}

.lux-footer__legal a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
}

.lux-footer__button {
    padding: 12px 28px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
}

.lux-footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.lux-footer__socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
}

.lux-footer__socials svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.lux-footer__links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
}

.lux-footer__column h4 {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.lux-footer__column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.lux-footer__column a {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #ffffff;
    text-decoration: none;
}

.lux-footer__bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 28px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
}

@media (max-width: 1024px) {
    .lux-footer__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .lux-footer__links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .lux-footer {
        padding: 60px 0 30px;
    }

    .lux-footer__fields {
        grid-template-columns: 1fr;
    }

    .lux-footer__links {
        grid-template-columns: 1fr;
    }
}
