:root {
    --brand: #041F3B;
    --brand-2: #0C2D52;
    --brand-3: #153B67;
    --text: #041F3B;
    --muted: rgba(4, 31, 59, 0.72);
    --muted-soft: rgba(4, 31, 59, 0.56);
    --line: rgba(4, 31, 59, 0.10);
    --line-strong: rgba(4, 31, 59, 0.16);
    --white: #FFFFFF;
    --surface: #F7F9FC;
    --surface-2: #EEF3F8;
    --shadow-soft: 0 18px 50px rgba(4, 31, 59, 0.08);
    --shadow-mid: 0 24px 60px rgba(4, 31, 59, 0.12);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 38px;
    --shell: 1480px;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

[hidden] {
    display: none !important;
}

.shell {
    width: min(var(--shell), calc(100% - 72px));
    margin: 0 auto;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(4, 31, 59, 0.08);
}

.header__inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand__name {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
    margin-right: 10px;
}

.nav a {
    position: relative;
    font-size: 0.96rem;
    font-weight: 600;
    color: rgba(4, 31, 59, 0.82);
    transition: color 0.25s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s var(--ease);
}

.nav a:hover {
    color: var(--brand);
}

.nav a:hover::after {
    transform: scaleX(1);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--brand);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 36px 22px;
    border-top: 1px solid rgba(4, 31, 59, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

.mobile-nav a {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(4, 31, 59, 0.06);
    font-weight: 600;
    color: rgba(4, 31, 59, 0.84);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition:
        transform 0.22s var(--ease),
        background 0.22s var(--ease),
        color 0.22s var(--ease),
        border-color 0.22s var(--ease),
        box-shadow 0.22s var(--ease);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 14px 32px rgba(4, 31, 59, 0.18);
}

.btn--primary:hover {
    background: #06274C;
    box-shadow: 0 18px 40px rgba(4, 31, 59, 0.22);
}

.btn--ghost {
    background: transparent;
    color: var(--brand);
    border-color: rgba(4, 31, 59, 0.12);
}

.btn--ghost:hover {
    background: rgba(4, 31, 59, 0.04);
    border-color: rgba(4, 31, 59, 0.18);
}

.btn--secondary {
    background: #fff;
    color: var(--brand);
    border-color: rgba(4, 31, 59, 0.12);
}

.btn--secondary:hover {
    background: rgba(4, 31, 59, 0.03);
    border-color: rgba(4, 31, 59, 0.18);
}

.btn--light {
    background: #fff;
    color: var(--brand);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.btn--light:hover {
    background: #F7FAFD;
}

.btn--large {
    min-height: 58px;
    padding: 0 28px;
    font-size: 0.98rem;
}

/* GENERIC */
.eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2E69A1;
}

.eyebrow--light {
    color: rgba(255, 255, 255, 0.78);
}

.section {
    position: relative;
}

.section--spacious {
    padding: 120px 0;
}

.section--deep {
    padding: 135px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.06), transparent 28%),
        radial-gradient(circle at 85% 78%, rgba(255, 255, 255, 0.04), transparent 24%),
        linear-gradient(180deg, #041F3B 0%, #08284B 100%);
    color: #fff;
}

.section--light {
    padding: 120px 0;
    background: linear-gradient(180deg, #F8FAFD 0%, #F2F6FB 100%);
}

.section--minimal {
    padding: 120px 0;
    background: #fff;
}

.section--faq {
    padding: 120px 0 130px;
    background: #FBFCFE;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 72px;
}

.section-heading--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading--split {
    max-width: none;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: end;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4.2vw, 4.4rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 18px 0 0;
    font-size: 1.06rem;
    line-height: 1.9;
    color: var(--muted);
}

.section--deep .section-heading p,
.section--deep .section-heading h2 {
    color: #fff;
}

.section--deep .section-heading p {
    color: rgba(255, 255, 255, 0.72);
}

/* HERO */
.hero {
    position: relative;
    min-height: calc(100svh - 84px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 8px 0 16px;
    background:
        radial-gradient(circle at 78% 22%, rgba(4, 31, 59, 0.045), transparent 24%),
        radial-gradient(circle at 22% 82%, rgba(4, 31, 59, 0.045), transparent 22%),
        #fff;
}

.hero__grid {
    min-height: calc(100svh - 120px);
    display: grid;
    grid-template-columns: minmax(0, 640px) minmax(0, 560px);
    justify-content: space-between;
    gap: 40px;
    align-items: center;
}

.hero__content {
    max-width: 640px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(2.8rem, 5.4vw, 5.2rem);
    line-height: 0.93;
    letter-spacing: -0.065em;
    font-weight: 800;
    color: var(--brand);
}

.hero h1 span {
    display: block;
    color: rgba(4, 31, 59, 0.92);
}

.hero__text {
    max-width: 620px;
    margin: 18px 0 0;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--muted);
}

.hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 14px;
    margin-top: 20px;
}

.hero__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(4, 31, 59, 0.10);
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(4, 31, 59, 0.76);
    background: rgba(255, 255, 255, 0.88);
}

.hero__visual {
    display: flex;
    justify-content: center;
}

.hero-composition {
    position: relative;
    width: min(100%, 560px);
    height: 620px;
}

.hero-composition__photo {
    position: absolute;
    overflow: hidden;
    box-shadow: var(--shadow-mid);
}

.hero-composition__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-composition__photo--main {
    right: 0;
    top: 86px;
    width: 62%;
    height: 72%;
    border-radius: 42px;
}

.hero-composition__photo--top {
    left: 0;
    top: 0;
    width: 46%;
    height: 42%;
    border-radius: 34px;
}

.hero-composition__photo--bottom {
    left: 6%;
    bottom: 0;
    width: 38%;
    height: 30%;
    border-radius: 30px;
}

/* INTRO STRIP */
.intro-strip {
    position: relative;
    background: var(--brand);
    color: #fff;
    padding: 72px 0;
    overflow: hidden;
}

.intro-strip::before,
.intro-strip::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    background: #fff;
    z-index: 1;
    pointer-events: none;
}

.intro-strip::before {
    top: -150px;
    height: 190px;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.intro-strip::after {
    bottom: -150px;
    height: 190px;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.intro-strip__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 64px;
    align-items: center;
}

.intro-strip__lead h2 {
    margin: 0;
    font-size: clamp(2rem, 3.5vw, 3.6rem);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.045em;
    color: #fff;
}

.intro-strip__points {
    display: grid;
    gap: 20px;
}

.intro-strip__points p {
    margin: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.80);
}

/* DESTINATIONS */
.destinations {
    display: grid;
    gap: 88px;
}

.destination-row {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 52px;
    align-items: center;
}

.destination-row--reverse {
    grid-template-columns: .92fr 1.08fr;
}

.destination-row--reverse .destination-row__media {
    order: 2;
}

.destination-row--reverse .destination-row__content {
    order: 1;
}

.destination-row__media {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    border-radius: 36px;
    background: var(--surface-2);
    box-shadow: var(--shadow-soft);
}

.destination-row__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-row__content {
    max-width: 620px;
}

.destination-row__index {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: rgba(4, 31, 59, 0.42);
}

.destination-row h3 {
    margin: 0;
    font-size: clamp(2rem, 3.2vw, 3.6rem);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 800;
    color: var(--brand);
}

.destination-row p {
    margin: 22px 0 0;
    font-size: 1.05rem;
    line-height: 1.95;
    color: var(--muted);
}

.destination-row__details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-top: 28px;
    margin-bottom: 30px;
}

.destination-row__details span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(4, 31, 59, 0.04);
    border: 1px solid rgba(4, 31, 59, 0.08);
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(4, 31, 59, 0.72);
}

.text-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--brand);
}

.text-link::after {
    content: "→";
    transition: transform 0.22s var(--ease);
}

.text-link:hover::after {
    transform: translateX(4px);
}

/* EXPERIENCE PANELS */
.experience-panels {
    display: grid;
    gap: 28px;
}

.experience-panel {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 32px;
    align-items: stretch;
    min-height: 460px;
}

.experience-panel:nth-child(even) {
    grid-template-columns: .92fr 1.08fr;
}

.experience-panel:nth-child(even) .experience-panel__image {
    order: 2;
}

.experience-panel:nth-child(even) .experience-panel__body {
    order: 1;
}

.experience-panel__image {
    overflow: hidden;
    border-radius: 34px;
    min-height: 460px;
}

.experience-panel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-panel__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 8px 34px 10px;
}

.experience-panel__tag {
    display: inline-flex;
    width: fit-content;
    min-height: 38px;
    padding: 0 14px;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.experience-panel__body h3 {
    margin: 18px 0 0;
    font-size: clamp(2rem, 3vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    font-weight: 800;
    color: #fff;
}

.experience-panel__body p {
    margin: 22px 0 0;
    max-width: 540px;
    font-size: 1.03rem;
    line-height: 1.92;
    color: rgba(255, 255, 255, 0.72);
}

.experience-panel__body .btn {
    margin-top: 28px;
    width: fit-content;
}

/* EXPERIENCE LIST */
.experience-list {
    border-top: 1px solid var(--line);
}

.experience-list__item {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 26px;
    align-items: center;
    padding: 34px 0;
    border-bottom: 1px solid var(--line);
}

.experience-list__number {
    font-size: 1.15rem;
    font-weight: 800;
    color: rgba(4, 31, 59, 0.34);
}

.experience-list__content h3 {
    margin: 0;
    font-size: clamp(1.5rem, 2.4vw, 2.5rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--brand);
}

.experience-list__content p {
    margin: 14px 0 0;
    max-width: 820px;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--muted);
}

/* VALUES */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-item {
    padding: 34px 14px 12px 0;
    border-top: 1px solid rgba(4, 31, 59, 0.14);
}

.value-item__symbol {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: rgba(4, 31, 59, 0.38);
}

.value-item h3 {
    margin: 0;
    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--brand);
}

.value-item p {
    margin: 16px 0 0;
    font-size: 0.98rem;
    line-height: 1.85;
    color: var(--muted);
}

/* PROCESS */
.process {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 56px;
    align-items: start;
}

.process__intro h2 {
    margin: 0;
    font-size: clamp(2rem, 3.8vw, 4rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.045em;
    color: var(--brand);
}

.process__steps {
    display: grid;
    gap: 28px;
}

.process-step {
    padding: 0 0 28px;
    border-bottom: 1px solid var(--line);
}

.process-step span {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: rgba(4, 31, 59, 0.38);
}

.process-step h3 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.08;
    font-weight: 800;
    color: var(--brand);
}

.process-step p {
    margin: 14px 0 0;
    max-width: 760px;
    font-size: 0.98rem;
    line-height: 1.85;
    color: var(--muted);
}

/* FAQ */
.faq-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 56px;
    align-items: start;
}

.faq-layout__aside {
    position: sticky;
    top: 120px;
}

.faq-layout__aside h2 {
    margin: 0;
    font-size: clamp(2rem, 3.6vw, 4rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.045em;
    color: var(--brand);
}

.faq-layout__aside p {
    margin: 18px 0 0;
    max-width: 520px;
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--muted);
}

.cta-note {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.cta-note h3 {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--brand);
}

.cta-note p {
    margin: 10px 0 0;
}

.cta-note .btn {
    margin-top: 18px;
}

.accordion {
    border-top: 1px solid var(--line);
}

.acc {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    text-align: left;
    cursor: pointer;
    color: var(--brand);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.acc__icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(4, 31, 59, 0.10);
    color: var(--brand);
    font-size: 1.1rem;
    font-weight: 600;
}

.panel {
    padding: 0 0 24px;
}

.panel p {
    margin: 0;
    max-width: 780px;
    font-size: 0.98rem;
    line-height: 1.85;
    color: var(--muted);
}

/* FINAL CTA */
.final-cta {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 22%),
        radial-gradient(circle at 84% 72%, rgba(255, 255, 255, 0.05), transparent 24%),
        linear-gradient(180deg, #041F3B 0%, #08284B 100%);
    color: #fff;
    overflow: hidden;
}

.final-cta__inner {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 56px;
    align-items: center;
}

.final-cta__content h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 4.8rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: #fff;
}

.final-cta__content p {
    margin: 20px 0 0;
    max-width: 760px;
    font-size: 1.06rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.76);
}

.final-cta__actions {
    display: flex;
    justify-content: flex-end;
}

/* FOOTER */
.footer {
    background: #03172D;
    color: #fff;
    padding: 34px 0;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer__brand strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer__brand p {
    margin: 10px 0 0;
    font-size: 0.94rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.68);
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 22px;
}

.footer__nav a {
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.76);
    transition: color 0.22s ease;
}

.footer__nav a:hover {
    color: #fff;
}

/* BACK TO TOP PLACEHOLDER STYLE */
.back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(4, 31, 59, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--brand);
    box-shadow: 0 16px 34px rgba(4, 31, 59, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 90;
}

/* LARGE DESKTOP */
@media (min-width: 1680px) {
    .hero__grid {
        gap: 88px;
    }

    .hero-composition {
        height: min(700px, 66svh);
    }

    .destination-row__media {
        min-height: 670px;
    }
}

/* LAPTOP */
@media (max-width: 1280px) {
    .shell {
        width: min(var(--shell), calc(100% - 56px));
    }

    .hero__grid,
    .intro-strip__inner,
    .section-heading--split,
    .process,
    .faq-layout,
    .final-cta__inner {
        gap: 40px;
    }

    .destination-row,
    .experience-panel {
        gap: 32px;
    }

    .hero-composition {
        height: 680px;
    }

    .destination-row__media {
        min-height: 520px;
    }
}

/* TABLET */
@media (max-width: 1080px) {

    .nav,
    .header__actions .btn--ghost,
    .header__actions .btn--primary {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .hero {
        padding: 50px 0 90px;
    }

    .hero__grid,
    .intro-strip__inner,
    .section-heading--split,
    .process,
    .faq-layout,
    .final-cta__inner,
    .destination-row,
    .destination-row--reverse,
    .experience-panel,
    .experience-panel:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .destination-row--reverse .destination-row__media,
    .destination-row--reverse .destination-row__content,
    .experience-panel:nth-child(even) .experience-panel__image,
    .experience-panel:nth-child(even) .experience-panel__body {
        order: initial;
    }

    .hero__grid {
        min-height: auto;
        gap: 48px;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__visual {
        justify-content: center;
    }

    .hero-composition {
        height: 640px;
        max-width: 760px;
    }

    .intro-strip {
        padding: 54px 0;
    }

    .section--spacious,
    .section--light,
    .section--minimal,
    .section--faq {
        padding: 96px 0;
    }

    .section--deep {
        padding: 104px 0;
    }

    .section-heading {
        margin-bottom: 56px;
    }

    .destinations {
        gap: 64px;
    }

    .destination-row__content,
    .faq-layout__aside p,
    .final-cta__content p {
        max-width: 100%;
    }

    .destination-row__media,
    .experience-panel__image {
        min-height: 420px;
    }

    .experience-list__item {
        grid-template-columns: 70px 1fr;
    }

    .experience-list__item .text-link {
        grid-column: 2;
        margin-top: 8px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .faq-layout__aside {
        position: static;
    }

    .final-cta__actions {
        justify-content: flex-start;
    }

    .footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .shell {
        width: min(var(--shell), calc(100% - 32px));
    }

    .header__inner {
        min-height: 74px;
        gap: 16px;
    }

    .brand__name {
        font-size: 0.94rem;
    }

    .hero {
        padding: 34px 0 74px;
    }

    .hero h1 {
        font-size: clamp(2.4rem, 13vw, 4.1rem);
        line-height: 0.98;
    }

    .hero__text,
    .section-heading p,
    .destination-row p,
    .experience-panel__body p,
    .experience-list__content p,
    .value-item p,
    .process-step p,
    .faq-layout__aside p,
    .panel p,
    .final-cta__content p,
    .intro-strip__points p {
        font-size: 0.96rem;
        line-height: 1.8;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero__meta {
        gap: 10px;
        margin-top: 28px;
    }

    .hero__meta span {
        min-height: 38px;
        padding: 0 12px;
        font-size: 0.84rem;
    }

    .hero-composition {
        height: 460px;
    }

    .hero-composition__photo--main {
        width: 64%;
        height: 68%;
        top: 64px;
        border-radius: 26px;
    }

    .hero-composition__photo--top {
        width: 46%;
        height: 38%;
        border-radius: 22px;
    }

    .hero-composition__photo--bottom {
        width: 42%;
        height: 28%;
        border-radius: 20px;
    }

    .intro-strip {
        padding: 46px 0;
    }

    .intro-strip::before,
    .intro-strip::after {
        height: 54px;
    }

    .section--spacious,
    .section--light,
    .section--minimal,
    .section--faq,
    .section--deep,
    .final-cta {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .section-heading h2,
    .intro-strip__lead h2,
    .faq-layout__aside h2,
    .final-cta__content h2,
    .process__intro h2 {
        font-size: clamp(1.9rem, 9vw, 3rem);
        line-height: 1.04;
    }

    .destination-row__media,
    .experience-panel__image {
        min-height: 300px;
        border-radius: 24px;
    }

    .destination-row h3,
    .experience-panel__body h3,
    .experience-list__content h3,
    .value-item h3,
    .process-step h3 {
        font-size: clamp(1.45rem, 7vw, 2.2rem);
        line-height: 1.08;
    }

    .destination-row__details {
        margin-top: 22px;
        margin-bottom: 24px;
    }

    .destination-row__details span {
        min-height: 38px;
        font-size: 0.82rem;
    }

    .experience-panel {
        min-height: 0;
        gap: 22px;
    }

    .experience-panel__body {
        padding: 0;
    }

    .experience-list__item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 24px 0;
    }

    .experience-list__number {
        font-size: 0.9rem;
    }

    .experience-list__item .text-link {
        grid-column: auto;
        margin-top: 2px;
    }

    .value-item {
        padding-top: 24px;
    }

    .footer {
        padding: 26px 0;
    }

    .footer__nav {
        gap: 12px 16px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .hero-composition {
        height: 380px;
    }

    .btn--large {
        min-height: 54px;
        padding: 0 22px;
    }

    .acc {
        font-size: 1rem;
        padding: 20px 0;
    }

    .acc__icon {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }
}