/* ============================================================
   MAHA SHANTI YOGA
   Isla Mujeres
   ============================================================ */

:root {
    --white: #FAF9F7;
    --cream: #F4F1EC;
    --sand: #E3D8C9;
    --earth: #C4B4A2;

    --ink: #292621;
    --ink-soft: #625C54;

    --border: rgba(41, 38, 33, 0.15);

    --font-primary: "Manrope", sans-serif;
    --font-secondary: "DM Sans", sans-serif;

    --header-height: 90px;
}


/* ============================================================
   RESET
   ============================================================ */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    margin: 0;
    padding: 0;

    background: var(--white);
    color: var(--ink);

    font-family: var(--font-primary);
    font-weight: 300;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

img,
video {
    display: block;
}

::selection {
    background: var(--earth);
    color: var(--ink);
}


/* ============================================================
   GLOBAL
   ============================================================ */

.container {
    max-width: 1320px;
}

.section {
    position: relative;

    padding:
        clamp(100px, 12vw, 190px)
        0;

    overflow: hidden;
}

.section-label {
    display: inline-block;

    margin-bottom: 32px;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 0.18em;
    line-height: 1.4;

    text-transform: uppercase;
}

.display-title {
    margin: 0;

    max-width: 620px;

    font-size:
        clamp(52px, 6.4vw, 104px);

    font-weight: 300;

    line-height: 0.92;

    letter-spacing: -0.055em;
}

.display-title span {
    display: block;

    color: var(--ink-soft);
}

.display-title--sm {
    font-size:
        clamp(48px, 5.2vw, 82px);
}

.editorial-copy {
    max-width: 640px;
}

.editorial-copy p {
    margin: 0 0 28px;

    font-size:
        clamp(18px, 1.6vw, 23px);

    line-height: 1.7;

    color: var(--ink-soft);
}

.editorial-copy__lead {
    color: var(--ink) !important;

    font-size:
        clamp(23px, 2.2vw, 32px) !important;

    line-height: 1.45 !important;
}

.editorial-copy__signature {
    margin-top: 65px !important;

    color: var(--ink) !important;

    font-size:
        clamp(27px, 3vw, 46px) !important;

    line-height: 1.2 !important;

    letter-spacing: -0.04em;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.btn-yoga {
    position: relative;

    display: inline-flex;

    justify-content: center;
    align-items: center;

    min-height: 56px;

    padding: 0 28px;

    border-radius: 100px;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.btn-yoga:hover {
    transform: translateY(-3px);
}

.btn-yoga--primary,
.btn-yoga--dark {
    background: var(--ink);
    color: var(--white);
}

.btn-yoga--primary:hover,
.btn-yoga--dark:hover {
    background: var(--earth);
    color: var(--ink);
}

.btn-yoga--link {
    padding-left: 8px;
    padding-right: 8px;

    gap: 14px;
}


/* ============================================================
   HEADER
   ============================================================ */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    z-index: 1000;

    width: 100%;

    color: var(--ink);

    transition:
        background-color 0.35s ease,
        backdrop-filter 0.35s ease,
        border-color 0.35s ease;
}

.site-header.is-scrolled {
    background:
        rgba(250, 249, 247, 0.88);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid rgba(41, 38, 33, 0.08);
}

.site-header__container {
    position: relative;

    z-index: 1002;

    display: flex;

    align-items: center;
    justify-content: space-between;

    min-height: var(--header-height);

    padding-left:
        clamp(24px, 4vw, 65px);

    padding-right:
        clamp(24px, 4vw, 65px);
}

.site-logo {
    display: flex;

    flex-direction: column;

    line-height: 1;
}

.site-logo__main {
    font-size: 15px;
    font-weight: 500;

    letter-spacing: 0.16em;
}

.site-logo__sub {
    margin-top: 7px;

    font-size: 8px;

    letter-spacing: 0.25em;

    opacity: 0.65;
}

.site-nav {
    display: flex;

    align-items: center;

    gap: 40px;
}

.site-nav a {
    font-size: 11px;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    transition: opacity 0.25s ease;
}

.site-nav a:hover {
    opacity: 0.55;
}

.site-nav__cta {
    padding: 11px 20px;

    border:
        1px solid
        rgba(41, 38, 33, 0.3);

    border-radius: 100px;
}

.site-header__controls {
    display: flex;

    align-items: center;

    gap: 24px;
}


/* ============================================================
   LANGUAGE
   ============================================================ */

.language-switch {
    display: flex;

    align-items: center;

    gap: 7px;

    font-size: 10px;

    letter-spacing: 0.13em;
}

.language-switch button {
    padding: 0;

    border: 0;

    background: transparent;

    color: inherit;

    cursor: pointer;

    opacity: 0.45;

    transition: opacity 0.25s ease;
}

.language-switch button[aria-pressed="true"] {
    opacity: 1;

    text-decoration: underline;

    text-underline-offset: 4px;
}

.language-switch span {
    opacity: 0.3;
}


/* ============================================================
   MOBILE MENU
   ============================================================ */

.menu-toggle {
    display: none;

    width: 40px;
    height: 40px;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 25px;
    height: 1px;

    margin: 7px auto;

    background: var(--ink);

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

body.menu-open .menu-toggle span:first-child {
    transform:
        translateY(4px)
        rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
    transform:
        translateY(-4px)
        rotate(-45deg);
}

.mobile-nav {
    position: fixed;

    inset: 0;

    z-index: 1001;

    display: flex;

    align-items: center;

    padding:
        calc(var(--header-height) + 50px)
        30px
        50px;

    background:
        rgba(244, 241, 236, 0.97);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    opacity: 0;

    visibility: hidden;

    transform: translateY(-20px);

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease,
        transform 0.4s ease;
}

body.menu-open .mobile-nav {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.mobile-nav nav {
    display: flex;

    flex-direction: column;

    width: 100%;
}

.mobile-nav a {
    padding: 20px 0;

    border-bottom:
        1px solid var(--border);

    font-size:
        clamp(32px, 8vw, 55px);

    font-weight: 300;

    line-height: 1;

    letter-spacing: -0.045em;
}


/* ============================================================
   PATTERN
   ============================================================ */

.pattern-grid {
    background-image:
        linear-gradient(
            90deg,
            rgba(196, 180, 162, 0.22) 18px,
            transparent 18px
        ),
        linear-gradient(
            rgba(196, 180, 162, 0.22) 18px,
            transparent 18px
        );

    background-size:
        54px 54px;
}


/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;

    display: flex;

    align-items: center;

    min-height: 100vh;
    min-height: 100svh;

    background: var(--white);

    overflow: hidden;
}

.hero__media {
    position: absolute;

    inset: 0;

    z-index: 0;

    overflow: hidden;

    pointer-events: none;
}

.hero__media-video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    transform: scale(1.02);

    will-change: transform;
}

.hero__media-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(250, 249, 247, 0.94) 0%,
            rgba(250, 249, 247, 0.88) 27%,
            rgba(250, 249, 247, 0.70) 48%,
            rgba(250, 249, 247, 0.24) 74%,
            rgba(250, 249, 247, 0.10) 100%
        );

    pointer-events: none;
}

.hero__container {
    position: relative;

    z-index: 5;

    width: 100%;
}

.hero__content {
    max-width: 900px;

    padding-top: 80px;
}

.hero__ambient {
    position: absolute;

    z-index: 2;

    width: min(60vw, 900px);

    aspect-ratio: 1;

    top: 50%;
    right: -15%;

    transform:
        translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(227, 216, 201, 0.25),
            rgba(250, 249, 247, 0)
        );
}

.hero__pattern {
    position: absolute;

    z-index: 3;

    right: 0;
    bottom: 0;

    width: 43vw;
    min-width: 420px;

    height: 37vh;

    opacity: 0.28;

    mix-blend-mode: multiply;
}

.hero__eyebrow {
    display: block;

    margin-bottom: 35px;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 0.22em;

    text-transform: uppercase;
}

.hero__title {
    margin: 0;

    font-size:
        clamp(72px, 10.4vw, 170px);

    font-weight: 300;

    line-height: 0.82;

    letter-spacing: -0.07em;
}

.hero__title span {
    display: block;

    margin-left:
        clamp(0px, 8vw, 120px);
}

.hero__subtitle {
    margin: 52px 0 0;

    max-width: 680px;

    font-size:
        clamp(19px, 1.8vw, 27px);

    line-height: 1.45;
}

.hero__copy {
    max-width: 590px;

    margin: 25px 0 0;

    color: var(--ink-soft);

    font-size: 15px;

    line-height: 1.8;
}

.hero__actions {
    display: flex;

    align-items: center;

    gap: 35px;

    margin-top: 45px;
}

.hero__scroll {
    position: absolute;

    z-index: 5;

    right:
        clamp(25px, 4vw, 65px);

    bottom: 35px;

    display: flex;

    align-items: center;

    gap: 15px;

    font-size: 9px;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}

.hero__scroll-line {
    width: 65px;
    height: 1px;

    background:
        rgba(41, 38, 33, 0.5);
}


/* ============================================================
   AUTHENTIC
   ============================================================ */

.section-authentic {
    min-height: 100vh;

    background: var(--cream);
}

.section-pattern {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 78px;

    opacity: 0.5;
}


/* ============================================================
   SCHOOL
   ============================================================ */

.school-section {
    position: relative;

    height: 300vh;

    background: var(--sand);
}

.school-section__sticky {
    position: sticky;

    top: 0;

    display: flex;

    align-items: center;

    min-height: 100vh;
    min-height: 100svh;

    overflow: hidden;
}

.school-media {
    position: absolute;

    inset: 0;

    z-index: 0;

    overflow: hidden;
}

.school-media__image {
    position: absolute;

    inset: -4%;

    width: 108%;
    height: 108%;

    object-fit: cover;

    filter:
        saturate(0.72)
        contrast(0.92);

    will-change: transform;
}

.school-media__overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(244, 241, 236, 0.84) 0%,
            rgba(227, 216, 201, 0.80) 52%,
            rgba(196, 180, 162, 0.76) 100%
        );

    pointer-events: none;
}

.school-section__content {
    position: relative;

    z-index: 3;

    width: 100%;
}

.school-heading {
    text-align: center;
}

.school-label {
    margin-bottom: 45px;

    color: var(--ink);
}

.school-statement {
    position: relative;

    display: grid;

    place-items: center;

    width: 100%;

    min-height:
        clamp(180px, 18vw, 290px);

    overflow: hidden;
}

.school-word {
    grid-column: 1;
    grid-row: 1;

    width: 100%;

    font-size:
        clamp(65px, 12vw, 190px);

    font-weight: 300;

    line-height: 0.95;

    letter-spacing: -0.07em;

    white-space: nowrap;

    text-align: center;

    color: var(--ink);

    text-shadow:
        0 1px 12px rgba(250, 249, 247, 0.16);

    will-change:
        transform,
        opacity;
}

.school-word--class {
    opacity: 1;
}

.school-word--school {
    opacity: 0;
}

.school-not {
    margin: 18px 0 0;

    font-size:
        clamp(14px, 1.25vw, 19px);

    letter-spacing: 0.23em;

    color: var(--ink);
}

.school-details {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 65px;

    border-top:
        1px solid rgba(41, 38, 33, 0.24);

    border-bottom:
        1px solid rgba(41, 38, 33, 0.24);

    background:
        rgba(250, 249, 247, 0.24);

    box-shadow:
        inset 0 1px 0 rgba(250, 249, 247, 0.18),
        inset 0 -1px 0 rgba(250, 249, 247, 0.10);

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.school-detail {
    display: flex;

    flex-direction: column;

    padding: 28px 22px;

    border-right:
        1px solid rgba(41, 38, 33, 0.20);
}

.school-detail:last-child {
    border-right: none;
}

.school-detail__number {
    margin-bottom: 22px;

    font-size: 9px;

    letter-spacing: 0.2em;

    color: rgba(41, 38, 33, 0.68);
}

.school-detail__text {
    font-size:
        clamp(14px, 1.6vw, 22px);

    letter-spacing: 0.07em;

    color: var(--ink);
}


/* ============================================================
   SCHOOL INTRO
   ============================================================ */

.school-intro {
    background: var(--white);
}


/* ============================================================
   PRIVATE
   ============================================================ */

.private-yoga {
    background: var(--sand);
}

.private-yoga__panel {
    max-width: 980px;

    margin: 0 auto;

    text-align: center;
}

.private-yoga__title {
    margin: 0 auto;

    font-size:
        clamp(65px, 9vw, 140px);

    font-weight: 300;

    line-height: 0.87;

    letter-spacing: -0.065em;
}

.private-yoga__title span {
    display: block;

    color: var(--ink-soft);
}

.private-yoga__copy {
    max-width: 620px;

    margin:
        45px
        auto
        38px;

    font-size:
        clamp(18px, 1.6vw, 22px);

    line-height: 1.7;

    color: var(--ink-soft);
}


/* ============================================================
   BREATHE
   ============================================================ */

.breath-preview {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 100vh;
    min-height: 100svh;

    background: var(--earth);

    overflow: hidden;

    text-align: center;
}

.breath-media {
    position: absolute;

    inset: 0;

    z-index: 0;

    overflow: hidden;
}

.breath-media__image {
    position: absolute;

    inset: -5%;

    width: 110%;
    height: 110%;

    object-fit: cover;

    filter:
        saturate(0.68)
        contrast(0.93);

    will-change: transform;
}

.breath-media__overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(244, 241, 236, 0.76) 0%,
            rgba(227, 216, 201, 0.72) 48%,
            rgba(196, 180, 162, 0.70) 100%
        );

    pointer-events: none;
}

.breath-preview__circle {
    position: absolute;

    z-index: 2;

    width: min(60vw, 700px);

    aspect-ratio: 1;

    border:
        1px solid
        rgba(98, 92, 84, 0.58);

    border-radius: 50%;

    transform-origin: center center;

    box-shadow:
        0 0 0 1px rgba(250, 249, 247, 0.06);

    will-change:
        transform,
        opacity;
}

.breath-preview__content {
    position: relative;

    z-index: 4;
}

.breath-preview__content .section-label {
    color: var(--ink-soft);

    text-shadow:
        0 1px 10px rgba(250, 249, 247, 0.18);

    will-change:
        opacity;
}

.breath-preview h2 {
    margin: 0;

    font-size:
        clamp(85px, 17vw, 250px);

    font-weight: 300;

    line-height: 0.8;

    letter-spacing: -0.07em;

    color: var(--ink);

    text-shadow:
        0 2px 16px rgba(250, 249, 247, 0.10);

    transform-origin: center center;

    will-change:
        transform;
}

.breath-preview p {
    margin-top: 42px;

    font-size: 11px;

    letter-spacing: 0.22em;

    text-transform: uppercase;

    color: var(--ink-soft);

    text-shadow:
        0 1px 10px rgba(250, 249, 247, 0.18);

    will-change:
        opacity;
}

.breath-media__image {
    transform-origin: center center;

    will-change:
        transform;
}



/* ============================================================
   WELLNESS EXPERIENCE
   ============================================================ */

.wellness-experience {
    background: var(--white);
}

.wellness-experience__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(360px, 0.78fr);

    gap:
        clamp(70px, 9vw, 145px);

    align-items: center;
}

.wellness-experience__title {
    max-width: 760px;

    margin: 0;

    font-size:
        clamp(56px, 7.2vw, 112px);

    font-weight: 300;

    line-height: 0.9;

    letter-spacing: -0.06em;
}

.wellness-experience__title span {
    display: block;

    color: #967652;
}

.wellness-experience__copy {
    max-width: 700px;

    margin-top: 55px;
}

.wellness-experience__copy p {
    margin: 0 0 26px;

    color: var(--ink-soft);

    font-size:
        clamp(17px, 1.45vw, 21px);

    line-height: 1.75;
}

.wellness-experience__lead {
    color: var(--ink) !important;

    font-size:
        clamp(21px, 2vw, 29px) !important;

    line-height: 1.55 !important;
}

.wellness-experience__signature {
    margin-top: 48px !important;

    color: var(--ink) !important;

    font-size:
        clamp(27px, 3vw, 44px) !important;

    line-height: 1.15 !important;

    letter-spacing: -0.04em;
}

.wellness-experience__media {
    position: relative;

    margin: 0;

    min-height:
        clamp(520px, 58vw, 760px);

    overflow: hidden;

    background: var(--sand);
}

.wellness-experience__image {
    position: absolute;

    inset: -4%;

    width: 108%;
    height: 108%;

    object-fit: cover;

    filter:
        saturate(0.72)
        contrast(0.94);

    transition:
        transform 0.8s
        cubic-bezier(.2, .65, .3, 1);
}

.wellness-experience__media:hover
.wellness-experience__image {
    transform: scale(1.025);
}

.wellness-experience__media figcaption {
    position: absolute;

    z-index: 2;

    right: 26px;
    bottom: 24px;

    padding:
        11px
        14px;

    background:
        rgba(250, 249, 247, 0.86);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: var(--ink);

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


/* ============================================================
   YOGA NEAR CANCUN
   ============================================================ */

.cancun-journey {
    background: var(--sand);
}

.cancun-journey__heading {
    display: grid;

    grid-template-columns:
        minmax(0, 0.34fr)
        minmax(0, 1fr);

    gap:
        clamp(45px, 7vw, 105px);

    align-items: start;

    margin-bottom:
        clamp(70px, 8vw, 120px);
}

.cancun-journey__heading .section-label {
    margin-top: 8px;
}

.cancun-journey__title {
    max-width: 1050px;

    margin: 0;

    font-size:
        clamp(54px, 6.5vw, 104px);

    font-weight: 300;

    line-height: 0.91;

    letter-spacing: -0.06em;
}

.cancun-journey__title span {
    display: block;

    color: #967652;
}

.cancun-journey__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(330px, 0.72fr);

    gap:
        clamp(55px, 7vw, 110px);

    align-items: center;
}

.cancun-journey__media {
    position: relative;

    margin: 0;

    aspect-ratio: 1.42 / 1;

    overflow: hidden;

    background: var(--earth);
}

.cancun-journey__image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        saturate(0.68)
        contrast(0.93)
        sepia(0.06);

    transition:
        transform 0.8s
        cubic-bezier(.2, .65, .3, 1);
}

.cancun-journey__media:hover
.cancun-journey__image {
    transform: scale(1.025);
}

.cancun-journey__media::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(41, 38, 33, 0) 55%,
            rgba(41, 38, 33, 0.38) 100%
        );

    pointer-events: none;
}

.cancun-journey__media-label {
    position: absolute;

    z-index: 2;

    left: 24px;
    bottom: 22px;

    color: var(--white);

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.cancun-journey__copy {
    max-width: 590px;
}

.cancun-journey__copy p {
    margin: 0 0 27px;

    color: var(--ink-soft);

    font-size:
        clamp(17px, 1.5vw, 21px);

    line-height: 1.72;
}

.cancun-journey__lead {
    color: var(--ink) !important;

    font-size:
        clamp(23px, 2.3vw, 33px) !important;

    line-height: 1.4 !important;

    letter-spacing: -0.025em;
}

.cancun-journey__cta {
    margin-top: 15px;
}


/* ============================================================
   WHY ISLA MUJERES
   ============================================================ */

.why-island {
    position: relative;

    background: var(--ink);

    color: var(--white);

    overflow: hidden;
}

.why-island__ambient {
    position: absolute;

    top: 50%;
    right: -15%;

    width: min(62vw, 900px);

    aspect-ratio: 1;

    transform:
        translateY(-50%);

    border:
        1px solid
        rgba(227, 216, 201, 0.14);

    border-radius: 50%;

    pointer-events: none;
}

.why-island__grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(320px, 0.72fr);

    gap:
        clamp(65px, 9vw, 145px);

    align-items: start;
}

.why-island__label {
    color:
        rgba(250, 249, 247, 0.58);
}

.why-island__title {
    max-width: 820px;

    margin: 0;

    font-size:
        clamp(58px, 7.6vw, 118px);

    font-weight: 300;

    line-height: 0.89;

    letter-spacing: -0.065em;
}

.why-island__title span {
    display: block;

    color: var(--earth);
}

.why-island__copy {
    padding-top: 62px;
}

.why-island__copy p {
    margin: 0 0 28px;

    color:
        rgba(250, 249, 247, 0.68);

    font-size:
        clamp(17px, 1.5vw, 21px);

    line-height: 1.75;
}

.why-island__lead {
    color:
        rgba(250, 249, 247, 0.96) !important;

    font-size:
        clamp(22px, 2.2vw, 31px) !important;

    line-height: 1.48 !important;
}

.why-island__mantra {
    position: relative;

    z-index: 2;

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap:
        clamp(12px, 2vw, 30px);

    margin-top:
        clamp(85px, 10vw, 145px);

    padding:
        36px
        0;

    border-top:
        1px solid
        rgba(250, 249, 247, 0.16);

    border-bottom:
        1px solid
        rgba(250, 249, 247, 0.16);

    font-size:
        clamp(32px, 5.4vw, 82px);

    font-weight: 300;

    line-height: 1;

    letter-spacing: -0.045em;
}

.why-island__mantra span[aria-hidden="true"] {
    color:
        rgba(227, 216, 201, 0.36);

    font-size: 0.68em;
}

.why-island__closing {
    position: relative;

    z-index: 2;

    margin:
        45px
        0
        0;

    color: var(--earth);

    font-size:
        clamp(22px, 2.7vw, 38px);

    line-height: 1.3;

    letter-spacing: -0.03em;
}


/* ============================================================
   CONTACT
   ============================================================ */

.contact-section {
    position: relative;

    padding:
        clamp(120px, 13vw, 210px)
        0;

    background: var(--cream);

    overflow: hidden;
}

.contact-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 0.85fr);

    gap:
        clamp(80px, 10vw, 160px);

    align-items: start;
}

.contact-intro {
    position: sticky;

    top:
        calc(var(--header-height) + 70px);
}

.contact-title {
    margin: 0;

    font-size:
        clamp(60px, 7.3vw, 116px);

    font-weight: 300;

    line-height: 0.89;

    letter-spacing: -0.065em;
}

.contact-title span {
    display: block;

    color: var(--earth);
}

.contact-lead {
    max-width: 560px;

    margin:
        48px
        0
        0;

    color: var(--ink-soft);

    font-size:
        clamp(17px, 1.4vw, 21px);

    line-height: 1.75;
}

.contact-location {
    margin-top: 70px;

    padding-top: 28px;

    border-top:
        1px solid var(--border);
}

.contact-location__small {
    display: block;

    margin-bottom: 18px;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 0.19em;
}

.contact-location p {
    margin: 0;

    color: var(--ink-soft);

    font-size: 14px;

    line-height: 1.8;
}

.contact-interests {
    margin-top: 45px;
}

.contact-interests__title {
    display: block;

    margin-bottom: 18px;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.contact-interests__items {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.contact-interests__items span {
    display: inline-flex;

    align-items: center;

    min-height: 35px;

    padding: 0 14px;

    border:
        1px solid var(--border);

    border-radius: 100px;

    color: var(--ink-soft);

    font-size: 11px;
}


.contact-form {
    width: 100%;
}

.contact-form-row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        clamp(28px, 3vw, 52px);
}

.contact-form-row .contact-field {
    min-width: 0;
}


.contact-field {
    margin-bottom: 34px;
}

.contact-field label {
    display: block;

    margin-bottom: 10px;

    color: var(--ink-soft);

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 0.17em;

    text-transform: uppercase;
}

.contact-field input,
.contact-field textarea,
.contact-field select {
    display: block;

    width: 100%;

    padding:
        12px
        0
        14px;

    border: 0;

    border-bottom:
        1px solid
        rgba(41, 38, 33, 0.28);

    border-radius: 0;

    outline: none;

    background: transparent;

    color: var(--ink);

    font-size:
        clamp(18px, 1.5vw, 22px);

    font-weight: 300;
}

.contact-field textarea {
    min-height: 125px;

    resize: vertical;
}

.contact-field select {
    cursor: pointer;
}


.contact-field--message {
    margin-top: 4px;
}

.contact-field--message textarea {
    min-height: 115px;
}

.contact-field input[type="date"],
.contact-field select {
    min-height: 52px;
}

.contact-field input[type="date"] {
    color-scheme: light;
}

.contact-submit {
    margin-top: 10px;
}


.contact-field .is-invalid {
    border-bottom-color: #8a4038;
}

.contact-honeypot {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;

    clip-path: inset(50%) !important;
}

.contact-form-status {
    min-height: 24px;

    margin-bottom: 20px;

    font-size: 13px;
}

.contact-form-status.is-success {
    color: #56634d;
}

.contact-form-status.is-error {
    color: #8a4038;
}

.contact-submit {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    min-height: 72px;

    padding: 0 26px;

    border:
        1px solid var(--ink);

    background: var(--ink);

    color: var(--white);

    cursor: pointer;

    transition:
        background 0.35s ease,
        color 0.35s ease;
}

.contact-submit:hover {
    background: transparent;

    color: var(--ink);
}

.contact-submit:disabled {
    opacity: 0.6;

    cursor: wait;
}

.contact-submit__text {
    font-size: 11px;
    font-weight: 500;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}

.contact-submit__arrow {
    font-size: 22px;
}


/* ============================================================
   FINAL CTA WITH IMAGE
   ============================================================ */

.final-cta {
    position: relative;

    display: flex;

    align-items: center;

    min-height: 100vh;
    min-height: 100svh;

    background: var(--white);

    text-align: center;

    overflow: hidden;
}

.final-cta__media {
    position: absolute;

    inset: 0;

    z-index: 0;

    overflow: hidden;
}

.final-cta__image {
    position: absolute;

    inset: -5%;

    width: 110%;
    height: 110%;

    object-fit: cover;
    object-position: center center;

    filter:
        saturate(0.75)
        contrast(0.95);

    will-change: transform;
}

.final-cta__overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(250, 249, 247, 0.72) 0%,
            rgba(244, 241, 236, 0.66) 50%,
            rgba(227, 216, 201, 0.62) 100%
        );

    pointer-events: none;
}

.final-cta__content {
    position: relative;

    z-index: 3;
}

.final-cta__inner {
    max-width: 1100px;

    margin: auto;
}

.final-cta h2 {
    margin: 0;

    font-size:
        clamp(65px, 9vw, 145px);

    font-weight: 300;

    line-height: 0.88;

    letter-spacing: -0.065em;
}

.final-cta h2 span {
    display: block;

    
        color: rgb(150 118 82);
}

.final-cta p {
    margin:
        42px
        0
        32px;

    font-size:
        clamp(18px, 1.7vw, 24px);
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    padding:
        80px
        0
        30px;

    background: var(--ink);

    color: var(--white);
}

.site-footer__top {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    padding-bottom: 70px;
}

.site-footer__brand {
    font-size:
        clamp(30px, 5vw, 65px);

    font-weight: 300;

    letter-spacing: -0.04em;
}

.site-footer__brand-sub {
    margin-top: 10px;

    font-size: 9px;

    letter-spacing: 0.18em;
}

.site-footer__location {
    color:
        rgba(250, 249, 247, 0.65);

    font-size: 13px;

    line-height: 1.8;

    text-align: right;
}

.site-footer__bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-top: 25px;

    border-top:
        1px solid
        rgba(250, 249, 247, 0.16);

    color:
        rgba(250, 249, 247, 0.55);

    font-size: 10px;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 991px) {

    :root {
        --header-height: 75px;
    }

    .site-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-nav {
        display: flex;
    }

    .hero__title span {
        margin-left: 0;
    }

    .school-details {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .wellness-experience__grid,
    .cancun-journey__grid,
    .why-island__grid {
        grid-template-columns: 1fr;
    }

    .wellness-experience__media {
        min-height: 600px;
    }

    .cancun-journey__heading {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .cancun-journey__copy {
        max-width: 760px;
    }

    .why-island__copy {
        max-width: 760px;

        padding-top: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 80px;
    }

    .contact-intro {
        position: relative;

        top: auto;
    }

}


/* ============================================================
   DESKTOP ONLY
   ============================================================ */

@media (min-width: 992px) {

    .mobile-nav {
        display: none !important;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 767px) {

    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .language-switch {
        font-size: 9px;
    }

    .hero__media-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(250, 249, 247, 0.78) 0%,
                rgba(250, 249, 247, 0.78) 55%,
                rgba(250, 249, 247, 0.50) 100%
            );
    }

    .hero__title {
        font-size:
            clamp(62px, 19vw, 98px);
    }

    .hero__title span {
        margin-left: 0;
    }

    .hero__actions {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }

    .hero__scroll,
    .hero__pattern {
        display: none;
    }

    .display-title,
    .display-title--sm {
        margin-bottom: 65px;

        font-size:
            clamp(48px, 15vw, 72px);
    }

    .school-section {
        height: 260vh;
    }

    .school-statement {
        min-height: 145px;
    }

    .school-word {
        font-size:
            clamp(44px, 15vw, 78px);
    }

    .private-yoga__title {
        font-size:
            clamp(55px, 17vw, 90px);
    }

    .breath-preview h2 {
        font-size:
            clamp(72px, 23vw, 125px);
    }

    .breath-preview__circle {
        width: 82vw;
    }


    .wellness-experience__title,
    .cancun-journey__title,
    .why-island__title {
        font-size:
            clamp(48px, 15vw, 76px);
    }

    .wellness-experience__copy {
        margin-top: 42px;
    }

    .wellness-experience__media {
        min-height: 470px;
    }

    .cancun-journey__heading {
        margin-bottom: 55px;
    }

    .cancun-journey__grid {
        gap: 50px;
    }

    .why-island__mantra {
        gap:
            10px
            14px;

        margin-top: 70px;

        padding:
            28px
            0;

        font-size:
            clamp(29px, 9.5vw, 46px);
    }

    .contact-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .contact-section {
        padding:
            100px
            0;
    }

    .contact-title {
        font-size:
            clamp(52px, 15vw, 78px);
    }

    .final-cta {
        min-height: 100svh;
    }

    .final-cta__image {
        object-position: center center;
    }

    .final-cta__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(250, 249, 247, 0.72),
                rgba(227, 216, 201, 0.66)
            );
    }

    .final-cta h2 {
        font-size:
            clamp(55px, 15vw, 85px);
    }

    .site-footer__top,
    .site-footer__bottom {
        align-items: flex-start;

        flex-direction: column;

        gap: 25px;
    }

    .site-footer__location {
        text-align: left;
    }

}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;
    }

}


/* ============================================================
   MAHA SHANTI
   FLOATING CONTACT ACTIONS
   ============================================================ */


/* ============================================================
   WRAPPER
   ============================================================ */

.floating-actions {
    position: fixed;

    z-index: 950;

    right:
        clamp(16px, 2vw, 28px);

    bottom:
        clamp(18px, 3vw, 34px);

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 9px;

    pointer-events: none;
}


/* ============================================================
   ACTION
   ============================================================ */

.floating-action {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: flex-end;

    min-width: 48px;
    height: 48px;

    border:
        1px solid
        rgba(41, 38, 33, 0.14);

    border-radius: 100px;

    background:
        rgba(250, 249, 247, 0.88);

    color: var(--ink);

    box-shadow:
        0 6px 28px
        rgba(41, 38, 33, 0.07);

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);

    overflow: hidden;

    pointer-events: auto;

    transition:
        width 0.4s cubic-bezier(.22, 1, .36, 1),
        background-color 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* ============================================================
   ICON
   ============================================================ */

.floating-action__icon {
    position: relative;

    z-index: 2;

    display: flex;

    flex: 0 0 48px;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;
}

.floating-action__icon svg {
    display: block;

    width: 19px;
    height: 19px;
}


/* ============================================================
   LABEL
   ============================================================ */

.floating-action__label {
    position: relative;

    z-index: 1;

    max-width: 0;

    overflow: hidden;

    opacity: 0;

    white-space: nowrap;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 0.13em;

    text-transform: uppercase;

    transform:
        translateX(10px);

    transition:
        max-width 0.4s cubic-bezier(.22, 1, .36, 1),
        opacity 0.25s ease,
        transform 0.4s cubic-bezier(.22, 1, .36, 1),
        padding 0.4s cubic-bezier(.22, 1, .36, 1);
}


/* ============================================================
   HOVER
   ============================================================ */

@media (hover: hover) {

    .floating-action:hover {
        transform:
            translateX(-3px);

        border-color:
            rgba(41, 38, 33, 0.28);

        background:
            var(--sand);

        box-shadow:
            0 10px 30px
            rgba(41, 38, 33, 0.10);
    }

    .floating-action:hover
    .floating-action__label {
        max-width: 130px;

        padding-left: 18px;

        opacity: 1;

        transform:
            translateX(0);
    }

}


/* ============================================================
   FOCUS
   ============================================================ */

.floating-action:focus-visible {
    outline:
        1px solid
        var(--ink);

    outline-offset: 3px;
}


/* ============================================================
   CONTACT BUTTON
   ============================================================ */

.floating-action--contact {
    background:
        rgba(227, 216, 201, 0.91);
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 767px) {

    .floating-actions {
        right: 14px;
        bottom: 16px;

        gap: 7px;
    }

    .floating-action {
        min-width: 44px;
        height: 44px;
    }

    .floating-action__icon {
        flex-basis: 44px;

        width: 44px;
        height: 44px;
    }

    .floating-action__icon svg {
        width: 18px;
        height: 18px;
    }

    /*
     * En móvil dejamos únicamente
     * los iconos para no ocupar espacio.
     */
    .floating-action__label {
        display: none;
    }

}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .floating-action,
    .floating-action__label {
        transition: none;
    }

}


/* ============================================================
   CONCIERGE SUCCESS MODAL
   ============================================================ */

.concierge-modal {
    --bs-modal-width: 650px;
}


/* BACKDROP */

.modal-backdrop.show {
    opacity: 0.42;
}


/* CONTENT */

.concierge-modal .modal-content {
    position: relative;

    border: none;

    border-radius: 0;

    background:
        var(--cream);

    color:
        var(--ink);

    box-shadow:
        0 30px 90px
        rgba(41, 38, 33, 0.16);

    overflow: hidden;
}


/* DECORATIVE AMBIENT CIRCLE */

.concierge-modal .modal-content::before {
    content: "";

    position: absolute;

    top: -180px;
    right: -170px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(227, 216, 201, 0.85) 0%,
            rgba(227, 216, 201, 0.28) 45%,
            rgba(227, 216, 201, 0) 72%
        );

    pointer-events: none;
}


/* CLOSE */

.concierge-modal__close {
    position: absolute;

    z-index: 5;

    top: 22px;
    right: 25px;

    width: 42px;
    height: 42px;

    padding: 0;

    border:
        1px solid
        rgba(41, 38, 33, 0.16);

    border-radius: 50%;

    background: transparent;

    color: var(--ink);

    font-size: 24px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.concierge-modal__close:hover {
    background:
        var(--sand);

    border-color:
        rgba(41, 38, 33, 0.30);

    transform:
        rotate(6deg);
}


/* BODY */

.concierge-modal__body {
    position: relative;

    z-index: 2;

    padding:
        clamp(50px, 7vw, 82px)
        clamp(34px, 6vw, 72px)
        clamp(42px, 6vw, 65px);
}


/* EYEBROW */

.concierge-modal__eyebrow {
    display: block;

    margin-bottom: 30px;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 0.22em;

    text-transform: uppercase;

    color:
        var(--ink-soft);
}


/* TITLE */

.concierge-modal__title {
    max-width: 520px;

    margin: 0;

    font-size:
        clamp(46px, 6vw, 74px);

    font-weight: 300;

    line-height: 0.94;

    letter-spacing: -0.055em;
}


.concierge-modal__title span {
    display: block;

    color:
        var(--earth);
}


/* TEXT */

.concierge-modal__text {
    max-width: 520px;

    margin:
        35px
        0
        0;

    color:
        var(--ink-soft);

    font-size:
        clamp(16px, 1.5vw, 19px);

    line-height: 1.75;
}


/* DIVIDER */

.concierge-modal__divider {
    width: 100%;

    height: 1px;

    margin:
        38px
        0
        23px;

    background:
        rgba(41, 38, 33, 0.13);
}


/* SMALL */

.concierge-modal__small {
    margin: 0;

    color:
        var(--ink-soft);

    font-size: 9px;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


/* BUTTON */

.concierge-modal__button {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    min-height: 62px;

    margin-top: 35px;

    padding:
        0
        23px;

    border:
        1px solid
        var(--ink);

    border-radius: 0;

    background:
        var(--ink);

    color:
        var(--white);

    cursor: pointer;

    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}


.concierge-modal__button:hover {
    background: transparent;

    color:
        var(--ink);
}


.concierge-modal__button span:first-child {
    font-size: 10px;
    font-weight: 500;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


.concierge-modal__button span:last-child {
    font-size: 19px;
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 767px) {

    .concierge-modal {
        padding:
            18px !important;
    }


    .concierge-modal .modal-dialog {
        margin:
            18px
            auto;
    }


    .concierge-modal__body {
        padding:
            55px
            27px
            30px;
    }


    .concierge-modal__title {
        font-size:
            clamp(43px, 13vw, 62px);
    }


    .concierge-modal__text {
        margin-top: 28px;

        font-size: 15px;
    }


    .concierge-modal__close {
        top: 15px;
        right: 15px;

        width: 38px;
        height: 38px;
    }

}


/* ============================================================
   MOBILE MENU - FINAL FIX
   ============================================================ */


/* ------------------------------------------------------------
   IMPORTANT:
   Do not use backdrop-filter on the header while the
   fullscreen mobile navigation is open.

   The mobile nav is a fixed child of .site-header.
   ------------------------------------------------------------ */

body.menu-open .site-header {
    background: var(--cream);

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    border-bottom:
        1px solid rgba(41, 38, 33, 0.10);
}


/* The blurred header is still allowed normally while scrolling */

.site-header.is-scrolled:not(:has(~ .mobile-nav)) {
    /* fallback handled by original rule */
}


/* ------------------------------------------------------------
   MOBILE NAV FULLSCREEN
   ------------------------------------------------------------ */

.mobile-nav {
    position: fixed !important;

    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;

    width: 100vw !important;

    height: 100vh !important;
    height: 100dvh !important;

    min-height: 100svh;

    z-index: 1001;

    display: flex;

    align-items: flex-start;
    justify-content: flex-start;

    padding:
        calc(var(--header-height) + 38px)
        clamp(24px, 6vw, 38px)
        35px;

    background: var(--cream);

    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    overflow-y: auto;
    overflow-x: hidden;

    overscroll-behavior: contain;

    -webkit-overflow-scrolling: touch;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform:
        translateY(-12px);

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.45s cubic-bezier(.22, 1, .36, 1);
}


/* ------------------------------------------------------------
   OPEN STATE
   ------------------------------------------------------------ */

body.menu-open .mobile-nav {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateY(0);
}


/* ------------------------------------------------------------
   NAV CONTAINER
   ------------------------------------------------------------ */

.mobile-nav nav {
    display: flex;

    flex-direction: column;

    align-items: stretch;

    width: 100%;

    max-width: none;

    margin: 0;

    padding: 0;
}


/* ------------------------------------------------------------
   MENU LINKS
   ------------------------------------------------------------ */

.mobile-nav a {
    position: relative;

    display: flex;

    align-items: center;

    width: 100%;

    min-height: 78px;

    padding:
        20px
        0;

    margin: 0;

    border-bottom:
        1px solid rgba(41, 38, 33, 0.14);

    color: var(--ink);

    font-size:
        clamp(34px, 10vw, 52px);

    font-weight: 300;

    line-height: 1.02;

    letter-spacing: -0.055em;

    white-space: normal;

    overflow-wrap: anywhere;

    transition:
        padding-left 0.35s cubic-bezier(.22, 1, .36, 1),
        color 0.3s ease,
        opacity 0.3s ease;
}


/* First line gets top separator */

.mobile-nav a:first-child {
    border-top:
        1px solid rgba(41, 38, 33, 0.14);
}


/* ------------------------------------------------------------
   MOBILE CTA
   ------------------------------------------------------------ */

.mobile-nav a:last-child {
    margin-top: 22px;

    min-height: 58px;

    padding:
        0
        24px;

    border:
        1px solid var(--ink);

    background:
        var(--ink);

    color:
        var(--white);

    font-size:
        11px;

    font-weight: 500;

    line-height: 1;

    letter-spacing: 0.13em;

    text-transform: uppercase;
}


/* ------------------------------------------------------------
   HEADER WHILE MENU IS OPEN
   ------------------------------------------------------------ */

body.menu-open .site-header__container {
    position: relative;

    z-index: 1003;

    background: var(--cream);
}


/* Logo stays clean and readable */

body.menu-open .site-logo {
    position: relative;

    z-index: 1004;
}


/* Controls stay above mobile nav */

body.menu-open .site-header__controls {
    position: relative;

    z-index: 1004;
}


/* ------------------------------------------------------------
   MENU TOGGLE
   ------------------------------------------------------------ */

body.menu-open .menu-toggle {
    position: relative;

    z-index: 1005;
}


/* Turn hamburger into X */

body.menu-open .menu-toggle span:first-child {
    transform:
        translateY(4px)
        rotate(45deg);
}


body.menu-open .menu-toggle span:last-child {
    transform:
        translateY(-4px)
        rotate(-45deg);
}


/* ------------------------------------------------------------
   FLOATING ACTIONS

   They should not compete visually with the fullscreen menu.
   ------------------------------------------------------------ */

body.menu-open .floating-actions {
    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform:
        translateX(15px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}


/* ------------------------------------------------------------
   MOBILE
   ------------------------------------------------------------ */

@media (max-width: 767px) {

    body.menu-open {
        overflow: hidden;
    }


    .mobile-nav {
        padding:
            calc(var(--header-height) + 28px)
            24px
            calc(28px + env(safe-area-inset-bottom));
    }


    .mobile-nav a {
        min-height: 72px;

        padding:
            17px
            0;

        font-size:
            clamp(34px, 10.5vw, 48px);
    }


    .mobile-nav a:last-child {
        min-height: 56px;

        margin-top: 24px;

        padding:
            0
            20px;

        font-size: 10px;
    }


    .site-header__container {
        padding-left: 24px;

        padding-right: 20px;
    }


    .site-header__controls {
        gap: 17px;
    }

}


/* ------------------------------------------------------------
   VERY SMALL PHONES
   ------------------------------------------------------------ */

@media (max-width: 390px) {

    .mobile-nav {
        padding-top:
            calc(var(--header-height) + 20px);
    }


    .mobile-nav a {
        min-height: 64px;

        font-size:
            clamp(30px, 9.5vw, 42px);
    }


    .mobile-nav a:last-child {
        font-size: 9px;

        letter-spacing: 0.11em;
    }

}