/* =========================================================
   JUST ARRIVED™ — FREE EDITION
   Template Forge

   DESIGN DIRECTION
   ---------------------------------------------------------
   Editorial travel journal.
   Large destination photography.
   Asymmetrical compositions.
   Warm paper backgrounds.
   Magazine typography.
   Minimal travel-document decoration.

   This is intentionally NOT a dashboard / card-grid layout.
   ========================================================= */


/* =========================================================
   01. ROOT
   ========================================================= */

:root {
    --ink: #171714;
    --ink-soft: #35352f;

    --ivory: #f5f1e8;
    --paper: #ebe5d8;
    --paper-warm: #ded4c4;

    --white: #fffdf8;

    --green: #173d36;
    --green-deep: #102c28;

    --coral: #d55e49;
    --sand: #c8af86;
    --gold: #b18a4c;

    --line: rgba(23, 23, 20, 0.18);
    --line-dark: rgba(23, 23, 20, 0.42);
    --line-light: rgba(255, 253, 248, 0.22);

    --serif:
        "Cormorant Garamond",
        Georgia,
        serif;

    --sans:
        "Manrope",
        Arial,
        sans-serif;

    --mono:
        "IBM Plex Mono",
        Consolas,
        monospace;

    --shell: 1500px;
    --header-height: 82px;

    --ease:
        cubic-bezier(.22, .61, .36, 1);
}


/* =========================================================
   02. RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--ivory);
    font-family: var(--sans);
    font-size: 1.05rem;
    line-height: 1.68;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a,
summary {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
    margin-top: 0;
}

button {
    border: 0;
}

::selection {
    color: var(--white);
    background: var(--coral);
}


/* =========================================================
   03. GLOBAL
   ========================================================= */

.site-shell {
    width: min(
        calc(100% - 4rem),
        var(--shell)
    );
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 1rem;
    left: 1rem;
    padding:
        0.7rem
        1rem;
    color: var(--white);
    background: var(--ink);
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 600;
    transform: translateY(-180%);
    transition:
        transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.editorial-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-transform: uppercase;
}

.editorial-label > span:first-child {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border:
        1px solid var(--line-dark);
    border-radius: 50%;
}

.editorial-label--light {
    color:
        rgba(255, 253, 248, 0.75);
}

.editorial-label--light > span:first-child {
    border-color:
        rgba(255, 253, 248, 0.42);
}

.editorial-link {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid currentColor;
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: gap 200ms var(--ease),
        color 200ms ease;
}

.editorial-link:hover {
    gap: 1.2rem;
    color: var(--coral);
}

.editorial-link--light {
    color: var(--white);
}

.editorial-link--light:hover {
    color: #e5cfa9;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline:
        3px solid var(--coral);
    outline-offset: 4px;
}



/* ---------- LAYOUT CONTAINMENT ---------- */
/* Prevent intrinsic content from expanding editorial grids. */

.hero__content,
.feeling__intro,
.destination-story__japan-layout,
.destination-story--caribbean,
.overload__inner,
.travel-mosaic__layout,
.journey__feature,
.advisor,
.inquiry__heading,
.last-call__inner,
.site-footer__main {
    min-width: 0;
}

.hero__content > *,
.feeling__intro > *,
.destination-story__japan-layout > *,
.destination-story--caribbean > *,
.overload__inner > *,
.travel-mosaic__layout > *,
.journey__feature > *,
.advisor > *,
.inquiry__heading > *,
.last-call__inner > *,
.site-footer__main > * {
    min-width: 0;
}


/* =========================================================
   04. HEADER
   ========================================================= */

.site-header {
    position: absolute;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    color: var(--white);
    transition: color 250ms ease,
        background 250ms ease,
        border-color 250ms ease,
        backdrop-filter 250ms ease;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-header::after {
    content: "";
    position: absolute;
    right: 2rem;
    bottom: 0;
    left: 2rem;
    height: 1px;
    background:
        rgba(255, 255, 255, 0.28);
    transition:
        background 250ms ease;
}

.site-header.site-header--scrolled {
    color: var(--white);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-header.site-header--scrolled::after {
    background: rgba(255, 255, 255, 0.28);
}

.site-header__inner {
    width:
        min(
            calc(100% - 4rem),
            var(--shell)
        );
    height: 100%;
    margin-inline: auto;
    display: grid;
    grid-template-columns:
        auto
        1fr
        auto;
    align-items: center;
    gap: 3rem;
}

.brand {
    font-family: var(--serif);
    font-size:
        clamp(1.4rem, 2vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
}

.brand span {
    position: relative;
    top: -0.65em;
    margin-left: 0.08em;
    font-family: var(--sans);
    font-size: 0.32em;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:
        clamp(1.2rem, 2vw, 2.5rem);
}

.site-nav a {
    position: relative;
    padding: 0.4rem
        0;
    font-family: var(--mono);
    font-size: 0.69rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.site-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition:
        transform 180ms ease;
}

.site-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.6rem
        0.95rem;
    border: 1px solid currentColor;
    font-family: var(--mono);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: color 180ms ease,
        background 180ms ease;
}

.header-cta:hover {
    color: var(--ink);
    background: var(--white);
}

.site-header--scrolled
.header-cta:hover {
    color: var(--ink);
    background: var(--white);
}

.nav-toggle {
    display: none;
    position: relative;
    width: 48px;
    height: 48px;
    padding: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    position: absolute;
    left: 10px;
    width: 28px;
    height: 1px;
    background: currentColor;
    transition:
        top 200ms ease,
        transform 200ms ease;
}

.nav-toggle span:first-child {
    top: 19px;
}

.nav-toggle span:last-child {
    top: 28px;
}

.nav-toggle[aria-expanded="true"]
span:first-child {
    top: 24px;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"]
span:last-child {
    top: 24px;
    transform: rotate(-45deg);
}


/* =========================================================
   05. HERO
   ========================================================= */

.hero {
    position: relative;
    min-height: 100svh;
    color: var(--white);
    background: var(--ink);
    overflow: hidden;
}

.hero__media,
.hero__shade {
    position: absolute;
    inset: 0;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.015);
}

.hero__shade {
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(12, 18, 17, 0.34) 0%,
            rgba(12, 18, 17, 0.10) 30%,
            rgba(12, 18, 17, 0.08) 52%,
            rgba(12, 18, 17, 0.72) 100%
        ),
        linear-gradient(
            90deg,
            rgba(11, 17, 16, 0.28),
            transparent 56%
        );
}

.hero__content {
    position: relative;
    z-index: 3;
    width:
        min(
            calc(100% - 4rem),
            var(--shell)
        );
    min-height: 100svh;
    margin-inline: auto;
    padding:
        calc(var(--header-height) + 4rem)
        0
        4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero__topline {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 1rem;
    font-family: var(--mono);
    font-size: 0.57rem;
    font-weight: 500;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    opacity: 0.82;
}

.hero h1 {
    max-width: 1050px;
    margin: auto
        0
        auto;
    padding: clamp(4rem, 10vh, 8rem)
        0;
    font-family: var(--serif);
    font-size: clamp(6rem, 14vw, 14rem);
    font-weight: 600;
    line-height: 0.72;
    letter-spacing: -0.055em;
}

.hero h1 em {
    display: block;
    margin-left: clamp(3rem, 9vw, 9rem);
    font-weight: 500;
}

.hero__bottom {
    display: grid;
    grid-template-columns:
        1fr
        minmax(290px, 0.42fr);
    align-items: end;
    gap: 4rem;
}

.hero__statement {
    max-width: 760px;
    margin-bottom: 0;
    font-family: var(--serif);
    font-size: clamp(2.3rem, 3.6vw, 3.8rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.025em;
}

.hero__intro {
    border-top:
        1px solid rgba(255,255,255,.44);
    padding-top: 1rem;
}

.hero__intro p {
    max-width: 320px;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.hero__intro a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem
        0;
    border-top: 1px solid rgba(255,255,255,.22);
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.hero__intro a span {
    font-size: 1rem;
}

.hero__scroll {
    position: absolute;
    z-index: 4;
    right: 2rem;
    bottom: 2.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    writing-mode: vertical-rl;
    font-family: var(--mono);
    font-size: 0.51rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* =========================================================
   06. FEELING
   ========================================================= */

.feeling {
    position: relative;
    padding:
        clamp(7rem, 11vw, 13rem)
        0
        clamp(6rem, 10vw, 11rem);
    background: var(--ivory);
    overflow: hidden;
}

.feeling__intro {
    display: grid;
    grid-template-columns:
        minmax(250px, 0.45fr)
        minmax(0, 1.2fr);
    align-items: end;
    gap:
        clamp(3rem, 8vw, 10rem);
    margin-top:
        clamp(4rem, 8vw, 8rem);
}

.feeling__intro > p {
    max-width: 390px;
    margin-bottom: 1rem;
    color: rgba(23, 23, 20, 0.63);
    font-size: 1rem;
    line-height: 1.7;
}

.feeling h2 {
    margin-bottom: 0;
    font-family: var(--serif);
    font-size: clamp(4rem, 7.6vw, 8.6rem);
    font-weight: 600;
    line-height: 0.83;
    letter-spacing: -0.045em;
    max-width: 1050px;
}

.feeling h2 em {
    display: block;
    margin-left: clamp(1rem, 3vw, 3rem);
    font-weight: 500;
    color: var(--green);
}

.feeling__marquee {
    width: 100%;
    margin:
        clamp(5rem, 8vw, 8rem)
        0
        clamp(3rem, 6vw, 6rem);
    overflow: hidden;
    border-top:
        1px solid var(--line);
    border-bottom:
        1px solid var(--line);
}

.feeling__marquee > div {
    display: flex;
    align-items: center;
    gap:
        clamp(2rem, 4vw, 5rem);
    width: max-content;
    padding:
        1.5rem
        0;
    transform: translateX(-3vw);
}

.feeling__marquee span {
    font-family: var(--serif);
    font-size: clamp(3rem, 5.8vw, 6.7rem);
    font-style: italic;
    line-height: 1;
    letter-spacing: -0.045em;
    white-space: nowrap;
    font-weight: 600;
}

.feeling__marquee span:nth-child(even) {
    color: var(--coral);
}

.feeling__note {
    max-width: 590px;
    margin: 0
        0
        0
        auto;
    padding-left: 2rem;
    border-left: 1px solid var(--line-dark);
    color: rgba(23,23,20,.66);
    font-size: 0.95rem;
    line-height: 1.65;
}


/* =========================================================
   07. ITALY
   ========================================================= */

.destination-story--italy {
    position: relative;
    min-height: 92svh;
    overflow: hidden;
    background: var(--green-deep);
}

.destination-story--italy
.destination-story__image {
    position: absolute;
    inset: 0;
}

.destination-story--italy
.destination-story__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(7, 18, 17, 0.5),
            transparent 50%
        ),
        linear-gradient(
            180deg,
            transparent 54%,
            rgba(7, 18, 17, 0.62)
        );
}

.destination-story--italy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-story__caption {
    position: absolute;
    z-index: 2;
    left:
        max(
            2rem,
            calc((100vw - var(--shell)) / 2)
        );
    bottom:
        clamp(3rem, 7vw, 7rem);
    color: var(--white);
}

.destination-story__caption > span {
    display: block;
    margin-bottom: 1rem;
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.12em;
}

.destination-story__caption h2 {
    margin-bottom: 0.1rem;
    font-family: var(--serif);
    font-size: clamp(5rem, 12vw, 12rem);
    font-weight: 600;
    line-height: 0.77;
    letter-spacing: -0.05em;
}

.destination-story__caption p {
    margin: 1.8rem
        0
        0
        clamp(2rem, 8vw, 9rem);
    font-family: var(--serif);
    font-size: clamp(2rem, 3.3vw, 3.3rem);
    line-height: 1.02;
    font-weight: 600;
}

.destination-story__number {
    position: absolute;
    z-index: 2;
    top: 3rem;
    right:
        max(
            2rem,
            calc((100vw - var(--shell)) / 2)
        );
    color:
        rgba(255,255,255,.7);
    font-family: var(--mono);
    font-size: 0.65rem;
}


/* =========================================================
   08. JAPAN
   ========================================================= */

.destination-story--japan {
    padding:
        clamp(7rem, 12vw, 14rem)
        0;
    background: var(--white);
    overflow: hidden;
}

.destination-story__japan-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(420px, 0.72fr);
    align-items: center;
    gap:
        clamp(4rem, 10vw, 12rem);
}

.destination-story__japan-copy {
    position: relative;
    z-index: 2;
}

.destination-story__japan-copy h2 {
    max-width: 760px;
    margin: clamp(3rem, 6vw, 6rem)
        0
        2.5rem;
    font-family: var(--serif);
    font-size: clamp(4rem, 6.6vw, 7.3rem);
    font-weight: 600;
    line-height: 0.84;
    letter-spacing: -0.045em;
}

.destination-story__japan-copy h2 em {
    display: block;
    margin-left: clamp(1rem, 4vw, 4rem);
    color: var(--coral);
    font-weight: 500;
}

.destination-story__japan-copy > p {
    max-width: 600px;
    margin-bottom: 2.5rem;
    color: rgba(23, 23, 20, 0.68);
    font-size: 1rem;
    line-height: 1.7;
}

.destination-story__japan-image {
    position: relative;
    width: 100%;
    height:
        clamp(600px, 75vw, 960px);
}

.destination-story__japan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-story__japan-image > span {
    position: absolute;
    right: 0;
    bottom: -2rem;
    font-family: var(--mono);
    font-size: 0.55rem;
    letter-spacing: 0.08em;
}


/* =========================================================
   09. CARIBBEAN
   ========================================================= */

.destination-story--caribbean {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(360px, 0.8fr);
    min-height: 760px;
    background: var(--paper);
}

.destination-story__caribbean-image {
    min-height: 760px;
    overflow: hidden;
}

.destination-story__caribbean-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-story__caribbean-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding:
        clamp(3rem, 6vw, 7rem);
}

.destination-story__caribbean-copy > span {
    margin-bottom: 3rem;
    font-family: var(--mono);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.11em;
}

.destination-story__caribbean-copy h2 {
    margin-bottom: 2rem;
    font-family: var(--serif);
    font-size: clamp(3.7rem, 5.6vw, 6.2rem);
    font-weight: 600;
    line-height: 0.88;
    letter-spacing: -0.04em;
    max-width: 650px;
}

.destination-story__caribbean-copy p {
    max-width: 420px;
    margin-bottom: 0;
    color: rgba(23,23,20,.68);
    font-size: 1rem;
    line-height: 1.65;
}


/* =========================================================
   10. INFORMATION OVERLOAD
   ========================================================= */

.overload {
    padding:
        clamp(8rem, 13vw, 15rem)
        0
        clamp(6rem, 10vw, 11rem);
    background: var(--ivory);
    overflow: hidden;
}

.overload__inner {
    display: grid;
    grid-template-columns:
        minmax(320px, 0.65fr)
        minmax(0, 1.15fr);
    align-items: center;
    gap:
        clamp(4rem, 10vw, 12rem);
}

.overload__noise {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 520px;
    color: rgba(23, 23, 20, 0.50);
    font-family: var(--mono);
    font-size: clamp(0.72rem, 0.85vw, 0.9rem);
    line-height: 1.75;
    transform: rotate(-2deg);
}

.overload__noise span:nth-child(2n) {
    margin-left: 10%;
}

.overload__noise span:nth-child(3n) {
    margin-left: 20%;
    color: rgba(23, 23, 20, 0.50);
}

.overload__noise span:nth-child(5n) {
    text-decoration: line-through;
    color: rgba(23, 23, 20, 0.50);
    text-decoration-color: rgba(23, 23, 20, 0.50);
}

.overload__statement h2 {
    max-width: 850px;
    margin: clamp(3rem, 5vw, 5rem)
        0
        0;
    font-family: var(--serif);
    font-size: clamp(4rem, 6.8vw, 7.6rem);
    font-weight: 600;
    line-height: 0.82;
    letter-spacing: -0.045em;
}

.overload__statement h2 strong {
    display: block;
    color: var(--coral);
    font-weight: 500;
}

.overload__answer {
    margin: clamp(3rem, 6vw, 6rem)
        0
        0;
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    line-height: 1;
    font-weight: 600;
}

.overload__answer em {
    color: var(--green);
}

.planning-lines {
    margin-top:
        clamp(7rem, 12vw, 13rem);
}

.planning-line {
    display: grid;
    grid-template-columns:
        minmax(180px, 0.4fr)
        minmax(0, 1fr);
    gap:
        clamp(2rem, 8vw, 10rem);
    padding:
        1.7rem
        0;
    border-top:
        1px solid var(--line-dark);
}

.planning-line:last-child {
    border-bottom:
        1px solid var(--line-dark);
}

.planning-line > span {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 2.4vw, 2.6rem);
    line-height: 1;
    font-weight: 600;
}

.planning-line p {
    max-width: 760px;
    margin-bottom: 0;
    color: rgba(23,23,20,.68);
    font-size: 0.98rem;
    line-height: 1.65;
}


/* =========================================================
   11. TRAVEL MOSAIC
   ========================================================= */

.travel-mosaic {
    padding:
        clamp(7rem, 11vw, 13rem)
        0;
    background: var(--green-deep);
    color: var(--white);
    overflow: hidden;
}

.travel-mosaic
.editorial-label {
    color:
        rgba(255,255,255,.72);
}

.travel-mosaic
.editorial-label > span:first-child {
    border-color:
        rgba(255,255,255,.42);
}

.travel-mosaic__layout {
    width: min(calc(100% - 4rem), 1640px);
    margin: clamp(5rem, 8vw, 8rem) auto 0;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(1.5rem, 2.5vw, 3rem);
    align-items: start;
    grid-auto-rows: auto;
}

.travel-mosaic__item {
    margin: 0;
}

.travel-mosaic__item img {
    width: 100%;
    object-fit: cover;
    display: block;
    max-width: 100%;
}

.travel-mosaic__item figcaption {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 0.9rem;
    width: 100%;
    min-width: 0;
}

.travel-mosaic__item figcaption span {
    font-family: var(--mono);
    font-size: 0.64rem;
    letter-spacing: 0.09em;
}

.travel-mosaic__item figcaption strong {
    max-width: 300px;
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.25;
    text-align: right;
    min-width: 0;
    overflow-wrap: break-word;
}

.travel-mosaic__item--honeymoon {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
    margin-top: 7rem;
    width: 100%;
    min-width: 0;
}

.travel-mosaic__item--honeymoon img {
    height:
        clamp(580px, 62vw, 880px);
}

.travel-mosaic__quote {
    grid-column: 7 / 13;
    align-self: end;
    padding: clamp(2rem, 4vw, 5rem) 0 clamp(4rem, 7vw, 8rem);
    grid-row: 1;
    width: 100%;
    min-width: 0;
}

.travel-mosaic__quote p {
    max-width: 720px;
    margin-bottom: 0;
    font-family: var(--serif);
    font-size: clamp(2.8rem, 4.25vw, 5rem);
    font-weight: 600;
    line-height: 0.94;
    letter-spacing: -0.035em;
    width: 100%;
    margin: 0 0 0 auto;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
}

.travel-mosaic__item--family {
    grid-column: 7 / 10;
    grid-row: 2;
    margin-top: 0;
    width: 100%;
    min-width: 0;
}

.travel-mosaic__item--family img {
    height:
        clamp(420px, 48vw, 690px);
}

.travel-mosaic__item--cruise {
    grid-column: 10 / 13;
    grid-row: 2;
    align-self: end;
    width: 100%;
    min-width: 0;
}

.travel-mosaic__item--cruise img {
    height:
        clamp(340px, 34vw, 520px);
}


/* =========================================================
   12. SAMPLE JOURNEY
   ========================================================= */

.journey {
    padding:
        clamp(8rem, 13vw, 15rem)
        0;
    background: var(--white);
    overflow: hidden;
}

.journey__heading h2 {
    max-width: 1220px;
    margin: clamp(3rem, 6vw, 6rem)
        0
        clamp(5rem, 8vw, 9rem);
    font-family: var(--serif);
    font-size: clamp(4rem, 6.8vw, 7.7rem);
    font-weight: 600;
    line-height: 0.82;
    letter-spacing: -0.045em;
}

.journey__heading h2 em {
    color: var(--coral);
    font-weight: 500;
}

.journey__feature {
    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(380px, 0.65fr);
    align-items: stretch;
}

.journey__feature-image {
    min-height: 860px;
}

.journey__feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journey__schedule {
    padding:
        clamp(3rem, 6vw, 7rem);
    color: var(--white);
    background: var(--green);
}

.journey__schedule article {
    position: relative;
    padding:
        0
        0
        2.4rem
        2rem;
    border-left:
        1px solid rgba(255,255,255,.26);
}

.journey__schedule article:last-child {
    padding-bottom: 0;
}

.journey__schedule article::before {
    content: "";
    position: absolute;
    top: 0.35rem;
    left: -5px;
    width: 9px;
    height: 9px;
    background: var(--white);
    border-radius: 50%;
}

.journey__schedule span {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--mono);
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

.journey__schedule h3 {
    margin-bottom: 0.5rem;
    font-family: var(--serif);
    font-size: clamp(2rem, 2.6vw, 2.8rem);
    font-weight: 600;
    line-height: 1;
}

.journey__schedule p {
    max-width: 430px;
    margin-bottom: 0;
    color: rgba(255,255,255,.68);
    font-size: 0.92rem;
    line-height: 1.65;
}

.journey__note {
    display: grid;
    grid-template-columns:
        auto
        minmax(0, 700px);
    justify-content: end;
    gap:
        clamp(2rem, 5vw, 5rem);
    margin-top:
        clamp(4rem, 7vw, 7rem);
}

.journey__note span {
    padding-top: 0.5rem;
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.09em;
}

.journey__note p {
    margin-bottom: 0;
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1.05;
    font-weight: 600;
}


/* =========================================================
   13. ADVISOR
   ========================================================= */

.advisor {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);
    min-height: 900px;
    color: var(--white);
    background: var(--ink);
}

.advisor__image {
    min-height: 900px;
}

.advisor__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advisor__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding:
        clamp(4rem, 8vw, 9rem);
}

.advisor__content h2 {
    margin: clamp(3rem, 6vw, 6rem)
        0
        2rem;
    font-family: var(--serif);
    font-size: clamp(3.7rem, 5.8vw, 6.3rem);
    font-weight: 600;
    line-height: 0.84;
    letter-spacing: -0.045em;
    max-width: 720px;
}

.advisor__content h2 em {
    display: block;
    color: #dfc7a2;
    font-weight: 500;
}

.advisor__lead {
    max-width: 650px;
    margin-bottom: 1.8rem;
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2vw, 2.1rem);
    line-height: 1.25;
    font-weight: 600;
}

.advisor__content > p:not(.advisor__lead) {
    max-width: 620px;
    color: rgba(255,255,255,.62);
    font-size: 0.98rem;
    line-height: 1.7;
}

.advisor__details {
    max-width: 700px;
    margin:
        3rem
        0;
    border-top:
        1px solid var(--line-light);
}

.advisor__details > div {
    display: grid;
    grid-template-columns:
        145px
        1fr;
    gap: 2rem;
    padding:
        1rem
        0;
    border-bottom:
        1px solid var(--line-light);
}

.advisor__details dt {
    font-family: var(--mono);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.58;
}

.advisor__details dd {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
}


/* =========================================================
   14. TRAVELER STORY
   ========================================================= */

.traveler-story {
    position: relative;
    min-height: 95svh;
    color: var(--white);
    background: var(--ink);
    overflow: hidden;
}

.traveler-story__image,
.traveler-story__shade {
    position: absolute;
    inset: 0;
}

.traveler-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.traveler-story__shade {
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(11,17,16,.78),
            rgba(11,17,16,.18) 65%,
            rgba(11,17,16,.05)
        ),
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(11,17,16,.55)
        );
}

.traveler-story__content {
    position: relative;
    z-index: 2;
    width:
        min(
            calc(100% - 4rem),
            var(--shell)
        );
    min-height: 95svh;
    margin-inline: auto;
    padding:
        clamp(5rem, 9vw, 9rem)
        0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.traveler-story__content > span {
    margin-bottom: clamp(2rem, 4vw, 4rem);
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.11em;
}

.traveler-story blockquote {
    max-width: 980px;
    margin-bottom: clamp(3rem, 6vw, 6rem);
    font-family: var(--serif);
    font-size: clamp(3.8rem, 6.7vw, 7.5rem);
    font-weight: 600;
    line-height: 0.85;
    letter-spacing: -0.04em;
}

.traveler-story__content > p {
    margin-bottom: 0;
    font-family: var(--mono);
    font-size: 0.68rem;
    line-height: 1.8;
    letter-spacing: 0.04em;
}


/* =========================================================
   15. INQUIRY
   ========================================================= */

.inquiry {
    padding:
        clamp(8rem, 13vw, 15rem)
        0;
    background: var(--paper);
}

.inquiry__heading {
    display: grid;
    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(280px, 0.38fr);
    align-items: end;
    gap:
        clamp(4rem, 8vw, 9rem);
    margin:
        clamp(4rem, 7vw, 7rem)
        0
        clamp(6rem, 10vw, 10rem);
}

.inquiry__heading h2 {
    margin-bottom: 0;
    font-family: var(--serif);
    font-size: clamp(4rem, 7vw, 7.8rem);
    font-weight: 600;
    line-height: 0.82;
    letter-spacing: -0.045em;
    max-width: 1050px;
}

.inquiry__heading h2 em {
    color: var(--green);
    font-weight: 500;
}

.inquiry__heading p {
    max-width: 430px;
    margin-bottom: 0.6rem;
    color: rgba(23,23,20,.65);
    font-size: 1rem;
    line-height: 1.65;
}

.inquiry-form {
    max-width: 1180px;
    margin-inline: auto;
}

.sentence-field {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.7rem
        1rem;
    padding: 1.8rem
        0;
    border-bottom: 1px solid var(--line-dark);
    font-family: var(--serif);
    font-size: clamp(2rem, 3.4vw, 3.6rem);
    line-height: 1.2;
    font-weight: 600;
}

.sentence-field label {
    flex: 0 0 auto;
}

.sentence-field input,
.sentence-field select {
    flex: 1 1 260px;
    min-width: 160px;
    padding: 0
        0.15rem
        0.18rem;
    color: var(--coral);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(23,23,20,.23);
    border-radius: 0;
    outline: 0;
    font-family: var(--serif);
    font-size: inherit;
    line-height: 1.15;
    font-weight: 600;
}

.sentence-field input::placeholder {
    color:
        rgba(213,94,73,.46);
}

.sentence-field select {
    appearance: auto;
}

.sentence-field > span {
    flex: 0 0 auto;
}

.inquiry-form__notes {
    padding:
        3rem
        0;
}

.inquiry-form__notes label {
    display: block;
    margin-bottom: 1rem;
    font-family: var(--mono);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.inquiry-form__notes textarea {
    width: 100%;
    min-height: 150px;
    padding: 1rem
        0;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    border-radius: 0;
    outline: 0;
    resize: vertical;
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.1vw, 2.2rem);
    line-height: 1.25;
    font-weight: 600;
}

.inquiry-form__notes textarea::placeholder {
    color:
        rgba(23,23,20,.34);
}

.inquiry-form__submit {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(260px, 0.4fr);
    align-items: end;
    gap:
        clamp(3rem, 7vw, 8rem);
    margin-top:
        clamp(2rem, 5vw, 5rem);
}

.inquiry-form__submit button {
    position: relative;
    display: grid;
    grid-template-columns: auto
        1fr
        auto;
    align-items: end;
    gap: 1rem;
    width: 100%;
    padding: 1.4rem
        0;
    color: var(--ink);
    background: transparent;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    font-weight: 600;
    line-height: 0.95;
    text-align: left;
    cursor: pointer;
    transition: color 200ms ease,
        padding 200ms var(--ease);
}

.inquiry-form__submit button:hover {
    color: var(--coral);
    padding-left: 1rem;
    padding-right: 1rem;
}

.inquiry-form__submit button em {
    font-weight: 500;
}

.inquiry-form__submit button span {
    font-family: var(--sans);
    font-size:
        clamp(1.2rem, 2vw, 2rem);
}

.inquiry-form__submit p {
    margin-bottom: 0.4rem;
    color:
        rgba(23,23,20,.54);
    font-family: var(--mono);
    font-size: 0.55rem;
    line-height: 1.7;
}


/* =========================================================
   16. LAST CALL
   ========================================================= */

.last-call {
    padding:
        clamp(7rem, 12vw, 14rem)
        0;
    color: var(--white);
    background: var(--coral);
}

.last-call__inner {
    display: grid;
    grid-template-columns:
        0.25fr
        1fr;
    gap:
        clamp(2rem, 7vw, 8rem);
}

.last-call p {
    padding-top: 0.7rem;
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.last-call h2 {
    max-width: 980px;
    margin-bottom: clamp(3rem, 6vw, 6rem);
    font-family: var(--serif);
    font-size: clamp(4.2rem, 7vw, 7.7rem);
    font-weight: 600;
    line-height: 0.82;
    letter-spacing: -0.045em;
}

.last-call h2 em {
    display: block;
    color: var(--ink);
    font-weight: 500;
}

.last-call a {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.2rem
        0;
    border-top: 1px solid rgba(255,255,255,.65);
    border-bottom: 1px solid rgba(255,255,255,.65);
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1;
    font-weight: 600;
}

.last-call a span {
    transition:
        transform 200ms var(--ease);
}

.last-call a:hover span {
    transform: translateX(8px);
}


/* =========================================================
   17. FOOTER
   ========================================================= */

.site-footer {
    color:
        rgba(255,255,255,.78);
    background: var(--ink);
}

.site-footer__main {
    display: grid;
    grid-template-columns:
        1fr
        0.7fr
        0.7fr;
    gap:
        clamp(3rem, 7vw, 8rem);
    padding:
        5rem
        0;
    border-bottom:
        1px solid rgba(255,255,255,.15);
}

.site-footer__brand {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--white);
    font-family: var(--serif);
    font-size: clamp(2.3rem, 3vw, 3.2rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04em;
}

.site-footer__main > div:first-child p {
    margin-bottom: 0;
    color: rgba(255,255,255,.54);
    font-family: var(--serif);
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 600;
}

.site-footer__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
}

.site-footer__nav a {
    font-family: var(--mono);
    font-size: 0.66rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.site-footer__nav a:hover {
    color: #dfc7a2;
}

.site-footer__note span {
    display: block;
    margin-bottom: 0.8rem;
    color: rgba(255,255,255,.44);
    font-family: var(--mono);
    font-size: 0.63rem;
    letter-spacing: 0.08em;
}

.site-footer__note p {
    max-width: 290px;
    margin-bottom: 0;
    font-size: 0.86rem;
}

.site-footer__bottom {
    display: grid;
    grid-template-columns: auto
        1fr
        auto;
    gap: 2rem;
    padding: 1.3rem
        0
        1.5rem;
    font-family: var(--mono);
    font-size: 0.58rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    opacity: 0.48;
}

.site-footer__bottom span:nth-child(2) {
    text-align: center;
}


/* =========================================================
   18. DEMO TOAST
   ========================================================= */

.demo-toast {
    position: fixed;
    z-index: 1000;
    right: 1.4rem;
    bottom: 1.4rem;
    width:
        min(
            430px,
            calc(100% - 2.8rem)
        );
    padding:
        1.2rem
        1.3rem;
    color: var(--white);
    background: var(--green-deep);
    border:
        1px solid rgba(255,255,255,.32);
    box-shadow:
        0 24px 70px rgba(0,0,0,.26);
}

.demo-toast[hidden] {
    display: none;
}

.demo-toast strong {
    display: block;
    margin-bottom: 0.45rem;
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
}

.demo-toast span {
    display: block;
    color:
        rgba(255,255,255,.68);
    font-size: 0.75rem;
    line-height: 1.55;
}


/* =========================================================
   19. MOBILE NAV PORTAL
   main.js will move the navigation to body on mobile.
   ========================================================= */

.site-nav.site-nav--portal {
    position: fixed;
    z-index: 90;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding:
        calc(var(--header-height) + 3rem)
        2rem
        3rem;
    color: var(--white);
    background: var(--green-deep);
    overflow-y: auto;
}

.site-nav.site-nav--portal a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding:
        0.8rem
        0;
    border-bottom:
        1px solid rgba(255,255,255,.2);
    font-family: var(--serif);
    font-size:
        clamp(2.6rem, 9vw, 5rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: none;
}

.site-nav.site-nav--portal a:first-child {
    border-top:
        1px solid rgba(255,255,255,.2);
}

.site-nav.site-nav--portal a::after {
    content: "↗";
    position: static;
    width: auto;
    height: auto;
    background: none;
    transform: none;
    font-family: var(--sans);
    font-size: 1rem;
}

.site-nav.site-nav--portal a:hover::after {
    transform: none;
}


/* =========================================================
   20. WIDE SCREENS
   ========================================================= */

@media (min-width: 1700px) {

    

    .destination-story__japan-layout {
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(520px, 0.64fr);
    }

    

}



/* =========================================================
   21. MOSAIC — MEDIUM DESKTOP
   ========================================================= */

@media (min-width: 981px) and (max-width: 1300px) {

    .travel-mosaic__layout {
        grid-template-columns:
            repeat(10, minmax(0, 1fr));
    }

    .travel-mosaic__item--honeymoon {
        grid-column: 1 / 6;
    }

    .travel-mosaic__quote {
        grid-column: 6 / 11;
    }

    .travel-mosaic__item--family {
        grid-column: 6 / 8;
    }

    .travel-mosaic__item--cruise {
        grid-column: 8 / 11;
    }

    .travel-mosaic__quote p {
        max-width: 100%;
        font-size:
            clamp(2.6rem, 4vw, 4.1rem);
    }

}


/* =========================================================
   22. MEDIUM DESKTOP
   ========================================================= */

@media (max-width: 1200px) {

    .site-shell,
    .site-header__inner,
    .hero__content,
    .traveler-story__content {
        width:
            min(
                calc(100% - 3rem),
                var(--shell)
            );
    }

    .site-header__inner {
        gap: 2rem;
    }

    .site-nav {
        gap: 1rem;
    }

    .site-nav a {
        font-size: 0.69rem;
    }

    .header-cta {
        font-size: 0.66rem;
    }

    .hero h1 {
        font-size: clamp(6rem, 14vw, 14rem);
    }

    .destination-story__japan-layout {
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(380px, 0.7fr);
        gap: 5rem;
    }

    

    .journey__schedule {
        padding: 4rem 3rem;
    }

    .advisor__content {
        padding:
            5rem
            4rem;
    }

}


/* =========================================================
   23. TABLET
   ========================================================= */

@media (max-width: 980px) {

    :root {
        --header-height: 74px;
    }

    .site-nav,
    .header-cta {
        display: none;
    }

    .site-header__inner {
        grid-template-columns:
            1fr
            auto;
    }

    .nav-toggle {
        display: block;
    }

    .site-header {
        color: var(--white);
    }

    .site-header--scrolled {
        color: var(--white);
    }

    .hero__content {
        padding-bottom: 3rem;
    }

    .hero h1 {
        font-size: clamp(6rem, 18vw, 10rem);
    }

    .hero__bottom {
        grid-template-columns:
            1fr
            0.55fr;
        gap: 2.5rem;
    }

    .feeling__intro {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .feeling__intro > p {
        max-width: 520px;
    }

    .destination-story__japan-layout {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .destination-story__japan-copy {
        max-width: 850px;
    }

    .destination-story__japan-image {
        width: 72%;
        margin-left: auto;
    }

    .destination-story--caribbean {
        grid-template-columns: 1fr;
    }

    .destination-story__caribbean-image {
        min-height: 620px;
    }

    .destination-story__caribbean-copy {
        width: min(100%, 850px);
    }

    .overload__inner {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .overload__noise {
        order: 2;
        max-width: 650px;
        margin-left: auto;
    }

    .travel-mosaic__layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
        width: calc(100% - 3rem);
        gap: 3rem 2rem;
    }

    .travel-mosaic__item--honeymoon {
        grid-column: 1;
        grid-row: 2;
        width: 100%;
        margin: 0;
    }

    .travel-mosaic__quote {
        grid-column: 1 / -1;
        grid-row: 1;
        align-self: end;
        padding: 1rem 0 3rem;
        width: 100%;
        margin: 0;
    }

    .travel-mosaic__item--family {
        grid-column: 2;
        grid-row: 2;
        width: 100%;
        margin: 5rem 0 0;
    }

    .travel-mosaic__item--cruise {
        grid-column: 1 / -1;
        grid-row: 3;
        width: 72%;
        margin: 2rem 0 0 auto;
    }

    .journey__feature {
        grid-template-columns: 1fr;
    }

    .journey__feature-image {
        min-height: 680px;
    }

    .journey__schedule {
        display: grid;
        grid-template-columns:
            repeat(2, 1fr);
        gap:
            0
            3rem;
    }

    .advisor {
        grid-template-columns: 1fr;
    }

    .advisor__image {
        min-height: 720px;
    }

    .advisor__content {
        padding:
            7rem
            max(
                2rem,
                calc((100vw - 900px) / 2)
            );
    }

    .inquiry__heading {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .inquiry__heading p {
        max-width: 500px;
    }

    .inquiry-form__submit {
        grid-template-columns: 1fr;
        gap: 2rem;
    }



    .site-nav.site-nav--portal a {
        font-size: clamp(2.4rem, 7vw, 4rem);
    }

    .destination-story__japan-copy h2,
    .destination-story__caribbean-copy h2,
    .overload__statement h2,
    .journey__heading h2,
    .advisor__content h2,
    .inquiry__heading h2,
    .last-call h2 {
        font-size: clamp(3.7rem, 9vw, 6rem);
    }

    .travel-mosaic__quote p {
        width: min(100%, 760px);
        max-width: none;
        margin: 0;
        font-size: clamp(3rem, 7vw, 5rem);
    }
}


/* =========================================================
   24. SMALL TABLET
   ========================================================= */

@media (max-width: 760px) {

    .site-shell,
    .site-header__inner,
    .hero__content,
    .traveler-story__content {
        width:
            min(
                calc(100% - 2rem),
                var(--shell)
            );
    }

    .site-header::after {
        right: 1rem;
        left: 1rem;
    }

    .hero__topline {
        flex-direction: column;
        gap: 0.45rem;
    }

    .hero h1 {
        font-size: clamp(5rem, 20vw, 8rem);
        line-height: 0.74;
    }

    .hero h1 em {
        margin-left: 1.7rem;
    }

    .hero__bottom {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero__intro {
        max-width: 390px;
    }

    .hero__scroll {
        display: none;
    }

    .feeling {
        padding:
            6rem
            0;
    }

    .feeling h2 {
        font-size: clamp(3.5rem, 13vw, 5.5rem);
    }

    .feeling__marquee span {
        font-size: clamp(3rem, 11vw, 4.8rem);
    }

    .destination-story--italy {
        min-height: 740px;
    }

    .destination-story__caption {
        left: 1rem;
        bottom: 3rem;
    }

    .destination-story__number {
        top: 2rem;
        right: 1rem;
    }

    .destination-story__caption h2 {
        font-size: clamp(5rem, 20vw, 8rem);
    }

    .destination-story__caption p {
        margin-left: 1.3rem;
    }

    .destination-story--japan {
        padding:
            6rem
            0;
    }

    .destination-story__japan-copy h2 {
        font-size: clamp(3.5rem, 13vw, 5.4rem);
        line-height: 0.86;
    }

    .destination-story__japan-image {
        width: 86%;
        height: 620px;
    }

    .destination-story__caribbean-image {
        min-height: 520px;
    }

    .destination-story__caribbean-copy {
        padding:
            4rem
            1rem
            5rem;
    }

    .destination-story__caribbean-copy h2 {
        font-size: clamp(3.5rem, 13vw, 5.4rem);
        line-height: 0.86;
    }

    .overload {
        padding:
            6rem
            0;
    }

    .overload__statement h2 {
        font-size: clamp(3.5rem, 13vw, 5.4rem);
        line-height: 0.86;
    }

    .planning-line {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding:
            1.6rem
            0;
    }

    .travel-mosaic {
        padding:
            6rem
            0;
    }

    .travel-mosaic__layout {
        width: calc(100% - 2rem);
        gap: 4rem;
        display: flex;
        flex-direction: column;
    }

    .travel-mosaic__item--honeymoon,
    .travel-mosaic__item--family,
    .travel-mosaic__item--cruise,
    .travel-mosaic__quote {
        width: 100%;
        margin: 0;
    }

    .travel-mosaic__item--honeymoon {
        order: 2;
        width: 100%;
        margin: 0;
    }

    .travel-mosaic__item--honeymoon img {
        height: 580px;
    }

    .travel-mosaic__item--family {
        width: 80%;
        order: 3;
        margin: 0 0 0 auto;
    }

    .travel-mosaic__item--family img {
        height: 560px;
    }

    .travel-mosaic__item--cruise {
        width: 88%;
        order: 4;
        margin: 0;
    }

    .travel-mosaic__quote p {
        max-width: 650px;
        width: 100%;
        margin: 0;
        font-size: clamp(2.8rem, 12vw, 4.6rem);
        line-height: 0.96;
    }

    .journey {
        padding:
            6rem
            0;
    }

    .journey__heading h2 {
        font-size: clamp(3.5rem, 13vw, 5.4rem);
        line-height: 0.86;
    }

    .journey__feature-image {
        min-height: 540px;
    }

    .journey__schedule {
        grid-template-columns: 1fr;
    }

    .journey__note {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .advisor__image {
        min-height: 620px;
    }

    .advisor__content {
        padding:
            6rem
            1rem;
    }

    .advisor__content h2 {
        font-size: clamp(3.5rem, 13vw, 5.4rem);
        line-height: 0.86;
    }

    .traveler-story {
        min-height: 760px;
    }

    .traveler-story__content {
        min-height: 760px;
    }

    .traveler-story blockquote {
        font-size: clamp(3.2rem, 13vw, 5.4rem);
        line-height: 0.9;
    }

    .inquiry {
        padding:
            6rem
            0;
    }

    .inquiry__heading h2 {
        font-size: clamp(3.5rem, 13vw, 5.4rem);
        line-height: 0.86;
    }

    .sentence-field {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .last-call__inner {
        grid-template-columns: 1fr;
    }

    .last-call p {
        padding-top: 0;
    }

    .last-call h2,
    .last-call a {
        grid-column: 1;
    }

    .last-call h2 {
        font-size: clamp(3.5rem, 13vw, 5.4rem);
        line-height: 0.86;
    }

    .site-footer__main {
        grid-template-columns:
            1fr
            1fr;
    }

    .site-footer__note {
        grid-column: 1 / -1;
    }

    .site-footer__bottom {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .site-footer__bottom
    span:nth-child(2) {
        text-align: left;
    }



    body {
        font-size: 1rem;
    }

    .hero__statement {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .overload__noise {
        color: rgba(23, 23, 20, 0.50);
        font-size: 0.72rem;
    }

    .overload__noise span:nth-child(3n) {
        color: rgba(23, 23, 20, 0.50);
    }

    .travel-mosaic__quote {
        order: 1;
        width: 100%;
        margin: 0;
        padding: 1rem 0 0;
    }
}


/* =========================================================
   25. MOBILE
   ========================================================= */

@media (max-width: 520px) {

    :root {
        --header-height: 68px;
    }

    .site-header__inner {
        width:
            calc(100% - 1.5rem);
    }

    .brand {
        font-size: 1.35rem;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
    }

    .hero__content {
        width:
            calc(100% - 1.5rem);
        padding:
            calc(var(--header-height) + 3rem)
            0
            2.5rem;
    }

    .hero__topline {
        font-size: 0.49rem;
    }

    .hero h1 {
        font-size: clamp(4.6rem, 21vw, 6.6rem);
        line-height: 0.74;
    }

    .hero h1 em {
        margin-left: 1rem;
    }

    .hero__statement {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero__intro p {
        font-size: 0.82rem;
    }

    .editorial-label {
        font-size: 0.6rem;
    }

    .editorial-label > span:first-child {
        width: 30px;
        height: 30px;
    }

    .feeling__intro {
        margin-top: 3rem;
    }

    .feeling h2 {
        font-size: clamp(3.5rem, 13vw, 5.5rem);
    }

    .feeling h2 em {
        margin-left: 0.8rem;
    }

    .feeling__note {
        margin-left: 0;
        padding-left: 1rem;
    }

    .destination-story--italy {
        min-height: 640px;
    }

    .destination-story__caption h2 {
        font-size: clamp(5rem, 20vw, 8rem);
    }

    .destination-story__caption p {
        font-size: 2rem;
    }

    .destination-story__japan-copy h2,
    .destination-story__caribbean-copy h2,
    .overload__statement h2,
    .journey__heading h2,
    .advisor__content h2,
    .inquiry__heading h2 {
        font-size:
            clamp(3.5rem, 17vw, 5.4rem);
    }

    .destination-story__japan-image {
        width: 92%;
        height: 520px;
    }

    .destination-story__caribbean-image {
        min-height: 430px;
    }

    .overload__noise {
        font-size: 0.72rem;
    }

    .overload__answer {
        font-size:
            clamp(2.3rem, 11vw, 3.6rem);
    }

    .travel-mosaic__item--honeymoon img {
        height: 460px;
    }

    .travel-mosaic__item--family {
        width: 100%;
    }

    .travel-mosaic__item--family img {
        height: 470px;
    }

    .travel-mosaic__item figcaption {
        flex-direction: column;
        gap: 0.35rem;
    }

    .travel-mosaic__item
    figcaption strong {
        text-align: left;
    }

    .travel-mosaic__quote p {
        font-size: clamp(2.6rem, 13vw, 4rem);
    }

    .journey__feature-image {
        min-height: 430px;
    }

    .journey__schedule {
        padding:
            3rem
            1.4rem;
    }

    .journey__note p {
        font-size:
            clamp(2rem, 10vw, 3rem);
    }

    .advisor__image {
        min-height: 520px;
    }

    .advisor__content {
        padding:
            5rem
            0.8rem;
    }

    .advisor__details > div {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .traveler-story,
    .traveler-story__content {
        min-height: 650px;
    }

    .traveler-story__content {
        width:
            calc(100% - 1.5rem);
    }

    .traveler-story blockquote {
        font-size: clamp(3.2rem, 13vw, 5.4rem);
        line-height: 0.9;
    }

    .sentence-field {
        display: block;
        padding: 1.5rem
            0;
        font-size: clamp(1.9rem, 9vw, 2.7rem);
    }

    .sentence-field label {
        display: block;
        margin-bottom: 0.45rem;
    }

    .sentence-field input,
    .sentence-field select {
        display: block;
        width: 100%;
        margin-top: 0.4rem;
        font-size: inherit;
    }

    .sentence-field > span {
        display: block;
        margin-top: 0.35rem;
    }

    .inquiry-form__notes textarea {
        font-size:
            clamp(1.4rem, 7vw, 2rem);
    }

    .inquiry-form__submit button {
        grid-template-columns:
            1fr
            auto;
        font-size:
            clamp(2.3rem, 11vw, 3.5rem);
    }

    .inquiry-form__submit
    button em {
        grid-column: 1;
    }

    .inquiry-form__submit
    button span {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: center;
    }

    .last-call {
        padding:
            6rem
            0;
    }

    .last-call h2 {
        font-size: clamp(3.2rem, 15vw, 4.7rem);
        line-height: 0.86;
    }

    .last-call a {
        font-size:
            clamp(2rem, 10vw, 3rem);
    }

    .site-footer__main {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding:
            4rem
            0;
    }

    .site-footer__note {
        grid-column: auto;
    }

    .demo-toast {
        right: 0.75rem;
        bottom: 0.75rem;
        width:
            calc(100% - 1.5rem);
    }



    .feeling__marquee span {
        font-size: clamp(3rem, 11vw, 4.8rem);
    }

    .destination-story__japan-copy h2 {
        font-size: clamp(3.2rem, 15vw, 4.7rem);
        line-height: 0.86;
    }

    .destination-story__caribbean-copy h2 {
        font-size: clamp(3.2rem, 15vw, 4.7rem);
        line-height: 0.86;
    }

    .overload__statement h2 {
        font-size: clamp(3.2rem, 15vw, 4.7rem);
        line-height: 0.86;
    }

    .journey__heading h2 {
        font-size: clamp(3.2rem, 15vw, 4.7rem);
        line-height: 0.86;
    }

    .advisor__content h2 {
        font-size: clamp(3.2rem, 15vw, 4.7rem);
        line-height: 0.86;
    }

    .inquiry__heading h2 {
        font-size: clamp(3.2rem, 15vw, 4.7rem);
        line-height: 0.86;
    }

    .travel-mosaic__layout {
        width: calc(100% - 1.5rem);
    }

    .travel-mosaic__item--cruise {
        width: 100%;
    }
}


/* =========================================================
   26. VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    

    .hero__statement {
        font-size: 2rem;
    }

    .destination-story__japan-image {
        width: 100%;
    }

    

    

}


/* =========================================================
   27. ANCHOR OFFSET
   ========================================================= */

main[id],
section[id] {
    scroll-margin-top: 24px;
}


/* =========================================================
   28. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

}


/* =========================================================
   29. PRINT
   ========================================================= */

@media print {

    .site-header,
    .hero__scroll,
    .demo-toast,
    .nav-toggle {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero {
        min-height: 700px;
    }

}
