:root {
    --ivory: #f4efe4;
    --paper: #fbf8f0;
    --sand: #ded1b7;
    --clay: #a76041;
    --gold: #b58b54;
    --olive: #6d7352;
    --indigo: #41455b;
    --ink: #241f1a;
    --muted: #746a5d;
    --line: rgba(36, 31, 26, .14);
    --white: #fffaf2;
    --shadow: 0 24px 70px rgba(44, 35, 25, .13);
    --radius-soft: 22px;
    --radius-large: 34px;
    --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
    --sans: Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(rgba(251, 248, 240, .92), rgba(251, 248, 240, .92)),
        url("../images/texture-paper.jpg");
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
}

body.is-menu-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    min-height: 78px;
    padding: 18px clamp(18px, 4vw, 58px);
    color: var(--paper);
    transition: background .5s ease, color .5s ease, border-color .5s ease;
}

.site-header.is-scrolled,
body:not(.home-page) .site-header {
    color: var(--ink);
    background: rgba(251, 248, 240, .88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    position: relative;
    width: 108px;
    height: 58px;
}

.brand-logo {
    display: block;
    position: absolute;
    inset: 0;
    width: 200%;
    height: 200%;
    object-fit: contain;
    object-position: left center;
    transition: opacity .45s ease, filter .45s ease;
}

.brand-logo-cream {
    opacity: 1;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .16));
}

.brand-logo-dark {
    opacity: 0;
}

.site-header.is-scrolled .brand-logo-cream,
body:not(.home-page) .site-header .brand-logo-cream {
    opacity: 0;
}

.site-header.is-scrolled .brand-logo-dark,
body:not(.home-page) .site-header .brand-logo-dark {
    opacity: 1;
}

.site-nav {
    justify-self: center;
    display: flex;
    gap: clamp(14px, 2vw, 30px);
    font-size: 12px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.site-nav a,
.language-switch a,
.site-footer a {
    opacity: .72;
    transition: opacity .25s ease, color .25s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.language-switch a:hover,
.language-switch .is-active,
.site-footer a:hover {
    opacity: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    letter-spacing: 0;
}

.language-switch span {
    width: 1px;
    height: 13px;
    background: currentColor;
    opacity: .25;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
    border: 1px solid rgba(255, 250, 242, .46);
    border-radius: var(--radius-soft);
    background: rgba(255, 250, 242, .18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .26), 0 14px 34px rgba(36, 31, 26, .12);
    backdrop-filter: blur(18px) saturate(1.14);
    color: inherit;
    font: 600 12px/1 var(--sans);
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}

.button:hover {
    color: var(--ink);
    background: rgba(255, 250, 242, .78);
    transform: translateY(-1px);
}

.button-small {
    min-height: 36px;
    padding: 0 16px;
    font-size: 11px;
}

.site-header.is-scrolled .button,
body:not(.home-page) .site-header .button,
.contact-form .button,
.final-invite .button,
.cost-section .button {
    border-color: rgba(36, 31, 26, .16);
    background: rgba(255, 250, 242, .62);
    color: var(--ink);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(36, 31, 26, .16);
    border-radius: 999px;
    background: rgba(255, 250, 242, .62);
    color: inherit;
    position: relative;
    z-index: 40;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 6px auto;
    background: currentColor;
    transition: transform .25s ease, opacity .25s ease;
}

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

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

.hero {
    position: relative;
    min-height: 94vh;
    display: grid;
    align-items: end;
    padding: 120px clamp(22px, 6vw, 92px) 72px;
    color: var(--paper);
    overflow: hidden;
    border-radius: 0 0 var(--radius-large) var(--radius-large);
}

.hero-media {
    position: absolute;
    inset: 10px;
    overflow: hidden;
    border-radius: var(--radius-large);
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(22, 20, 17, .58), rgba(22, 20, 17, .14) 58%, rgba(22, 20, 17, .28)),
        linear-gradient(0deg, rgba(22, 20, 17, .56), rgba(22, 20, 17, .04) 45%);
}

.hero-content {
    position: relative;
    max-width: 980px;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    line-height: .96;
}

.hero h1 {
    max-width: 920px;
    font-size: 100px;
}

.hero-subtitle {
    max-width: 760px;
    margin: 24px 0 16px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 39px;
    line-height: 1.05;
}

.hero-places {
    max-width: 760px;
    margin: 0 0 34px;
    color: rgba(251, 248, 240, .82);
    font-size: 13px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section {
    padding: clamp(74px, 11vw, 156px) clamp(22px, 6vw, 92px);
}

.section-index,
.highlight-number,
.timeline-marker,
.info-item span,
.section-kicker,
.section-heading span {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.editorial-intro {
    display: grid;
    grid-template-columns: minmax(40px, 130px) minmax(0, 920px);
    gap: clamp(24px, 6vw, 90px);
    align-items: start;
    border-bottom: 1px solid var(--line);
}

.lead {
    margin: 0;
    font-family: var(--serif);
    font-style: italic;
    font-size: 54px;
    line-height: 1.04;
}

.section-heading {
    max-width: 900px;
    margin: 0 0 clamp(50px, 8vw, 104px);
}

.section-heading h2,
.glance h2,
.cost-section h2,
.page-hero h1 {
    margin: 12px 0 20px;
    font-size: 73px;
}

.section-heading p,
.page-hero p {
    max-width: 660px;
    margin: 0;
    color: var(--muted);
    font-size: 19px;
}

.highlight-list {
    display: grid;
    gap: 72px;
}

.route-map-section {
    background: var(--ivory);
}

.route-map {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(260px, 420px);
    gap: clamp(28px, 6vw, 86px);
    align-items: center;
    padding: clamp(24px, 5vw, 58px);
    border: 1px solid rgba(36, 31, 26, .1);
    border-radius: var(--radius-large);
    background: rgba(255, 250, 242, .52);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.map-canvas {
    min-height: 460px;
    border-radius: var(--radius-soft);
    background: var(--sand);
    overflow: hidden;
}

.map-stops {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.map-stops li {
    border-bottom: 1px solid var(--line);
}

.map-stops button {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    width: 100%;
    padding: 20px 0;
    border: 0;
    background: transparent;
    color: var(--muted);
    font: 17px/1.45 var(--sans);
    text-align: left;
    cursor: pointer;
    transition: color .25s ease, transform .25s ease;
}

.map-stops button:hover,
.map-stops button.is-active {
    color: var(--ink);
    transform: translateX(3px);
}

.map-stops span {
    color: var(--gold);
    font-size: 12px;
}

.route-marker {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 2px solid var(--paper);
    border-radius: 999px;
    background: var(--ink);
    color: var(--paper);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
    font: 700 11px/1 var(--sans);
}

.route-popup {
    color: var(--ink);
    font: 14px/1.45 var(--sans);
}

.route-popup strong {
    display: block;
    margin-bottom: 4px;
    font-family: var(--serif);
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    line-height: 1;
}

.leaflet-container {
    font-family: var(--sans);
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    border-radius: 14px;
    background: rgba(255, 250, 242, .94);
    box-shadow: 0 18px 44px rgba(36, 31, 26, .18);
}

.highlight-item {
    display: grid;
    grid-template-columns: 72px minmax(280px, .95fr) minmax(260px, .75fr);
    gap: clamp(22px, 4vw, 56px);
    align-items: center;
    padding-top: 34px;
    border-top: 1px solid var(--line);
}

.highlight-item:nth-child(even) {
    grid-template-columns: 72px minmax(260px, .75fr) minmax(280px, .95fr);
}

.highlight-item:nth-child(even) .highlight-image {
    grid-column: 3;
}

.highlight-item:nth-child(even) .highlight-copy {
    grid-column: 2;
    grid-row: 1;
}

.highlight-image {
    aspect-ratio: 1.35 / 1;
    min-height: 330px;
    overflow: hidden;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow);
}

.highlight-image img {
    transition: transform 1.2s ease;
}

.highlight-item:hover .highlight-image img {
    transform: scale(1.035);
}

.highlight-copy h3 {
    font-size: 48px;
    line-height: 1;
}

.highlight-copy p {
    max-width: 430px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.glance {
    background: var(--ink);
    color: var(--paper);
    display: grid;
    grid-template-columns: minmax(40px, 130px) 1fr;
    gap: clamp(24px, 6vw, 90px);
}

.glance dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 46px 0 0;
    border-top: 1px solid rgba(251, 248, 240, .2);
    border-left: 1px solid rgba(251, 248, 240, .2);
    border-radius: var(--radius-soft);
    overflow: hidden;
}

.glance dl div {
    min-height: 150px;
    padding: 24px;
    border-right: 1px solid rgba(251, 248, 240, .2);
    border-bottom: 1px solid rgba(251, 248, 240, .2);
}

dt {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 0;
    text-transform: uppercase;
}

dd {
    margin: 12px 0 0;
}

.final-invite {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid var(--line);
}

.final-invite p {
    max-width: 760px;
    margin: 0;
    font-family: var(--serif);
    font-style: italic;
    font-size: 58px;
    line-height: 1;
}

.page-hero {
    min-height: calc(70vh - 32px);
    margin: 100px 10px 0;
    padding: 120px clamp(22px, 6vw, 92px) 86px;
    display: grid;
    align-items: end;
    color: var(--paper);
    overflow: hidden;
    border-radius: var(--radius-large);
    box-shadow: 0 24px 70px rgba(36, 31, 26, .12);
}

.page-hero .page-hero-copy {
    max-width: 760px;
    text-shadow: 0 3px 28px rgba(0, 0, 0, .36);
}

.page-hero p {
    color: rgba(251, 248, 240, .9);
}

.split-hero {
    grid-template-columns: minmax(260px, .72fr) minmax(320px, .9fr);
    gap: clamp(34px, 8vw, 130px);
    align-items: center;
}

.split-hero.reverse {
    grid-template-columns: minmax(320px, .9fr) minmax(260px, .72fr);
}

.portrait-frame {
    aspect-ratio: .78 / 1;
    max-height: 660px;
    overflow: hidden;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow);
}

.profile-text {
    max-width: 1060px;
}

.profile-text p {
    margin: 0 0 28px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 41px;
    line-height: 1.08;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
    gap: clamp(36px, 7vw, 100px);
}

.quiet-list,
.cost-lists ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.quiet-list li,
.cost-lists li {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}

.route-hero,
.info-hero,
.contact-hero,
.guides-hero {
    background:
        linear-gradient(90deg, rgba(20, 17, 14, .48), rgba(20, 17, 14, .12) 58%, rgba(20, 17, 14, .26)),
        linear-gradient(0deg, rgba(20, 17, 14, .42), rgba(20, 17, 14, .06) 52%),
        url("../images/arunachala-ramana.jpg") center / cover;
}

.guides-hero {
    background-image:
        linear-gradient(90deg, rgba(20, 17, 14, .48), rgba(20, 17, 14, .12) 58%, rgba(20, 17, 14, .26)),
        linear-gradient(0deg, rgba(20, 17, 14, .42), rgba(20, 17, 14, .06) 52%),
        url("../images/hero-south-india.jpg");
}

.info-hero {
    background-image:
        linear-gradient(90deg, rgba(20, 17, 14, .48), rgba(20, 17, 14, .12) 58%, rgba(20, 17, 14, .26)),
        linear-gradient(0deg, rgba(20, 17, 14, .42), rgba(20, 17, 14, .06) 52%),
        url("../images/pondicherry-aurobindo.jpg");
}

.contact-hero {
    background-image:
        linear-gradient(90deg, rgba(20, 17, 14, .48), rgba(20, 17, 14, .12) 58%, rgba(20, 17, 14, .26)),
        linear-gradient(0deg, rgba(20, 17, 14, .42), rgba(20, 17, 14, .06) 52%),
        url("../images/osho-pune.jpg");
}

.guides-section {
    display: grid;
    gap: clamp(76px, 10vw, 140px);
}

.guide-block {
    display: grid;
    grid-template-columns: minmax(260px, .7fr) minmax(320px, 1fr);
    gap: clamp(34px, 8vw, 118px);
    align-items: center;
}

.guide-block.reverse {
    grid-template-columns: minmax(320px, 1fr) minmax(260px, .7fr);
}

.guide-block.reverse .portrait-frame {
    grid-column: 2;
}

.guide-block.reverse .guide-copy {
    grid-column: 1;
    grid-row: 1;
}

.guide-copy {
    max-width: 760px;
}

.guide-copy > span {
    color: var(--gold);
    display: inline-block;
    font-size: 12px;
    margin-bottom: 18px;
}

.guide-copy h2 {
    font-size: 64px;
}

.guide-copy p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.guide-copy .guide-role {
    margin: 10px 0 32px;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 30px;
    font-style: italic;
    line-height: 1.1;
}

.timeline {
    position: relative;
    margin: clamp(36px, 5vw, 72px) clamp(10px, 4vw, 58px) 0;
    border-radius: var(--radius-large);
    background: rgba(255, 250, 242, .34);
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: clamp(56px, 8vw, 124px);
    width: 1px;
    background: var(--line);
}

.timeline-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 760px) minmax(260px, 430px);
    gap: clamp(22px, 5vw, 74px);
    padding: 0 0 74px;
    position: relative;
}

.timeline-marker {
    position: sticky;
    top: 110px;
    align-self: start;
    height: 46px;
    display: grid;
    place-items: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
}

.timeline-copy {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    border-bottom: 1px solid var(--line);
}

.timeline-copy > span {
    color: var(--olive);
    font-size: 13px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.timeline-copy h2 {
    margin: 14px 0 20px;
    font-size: 53px;
}

.timeline-copy p {
    max-width: 760px;
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 19px;
}

.timeline-visual {
    aspect-ratio: .82 / 1;
    min-height: 360px;
    overflow: hidden;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow);
}

.timeline-visual img {
    transition: transform 1.2s ease;
}

.timeline-item:hover .timeline-visual img {
    transform: scale(1.035);
}

.stage-carousel {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 10px;
    align-items: end;
    margin-top: auto;
    padding-top: 30px;
}

.stage-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 1px;
}

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

.stage-card {
    flex: 0 0 min(280px, 86%);
    min-height: 128px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-soft);
    background: rgba(255, 250, 242, .56);
    scroll-snap-align: start;
}

.stage-card p {
    margin: 12px 0 0;
    color: var(--muted);
}

.stage-label {
    color: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
}

.stage-arrow {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(36, 31, 26, .16);
    border-radius: 999px;
    background: rgba(255, 250, 242, .62);
    color: var(--ink);
    cursor: pointer;
    font: 24px/1 var(--serif);
    transition: transform .25s ease, background .25s ease;
}

.stage-arrow:hover {
    background: var(--paper);
    transform: translateY(-1px);
}

.cost-section {
    display: grid;
    grid-template-columns: minmax(260px, .68fr) minmax(320px, 1fr);
    gap: clamp(32px, 7vw, 110px);
    background: var(--ivory);
    border-radius: var(--radius-large);
    margin: 0 clamp(18px, 4vw, 58px) clamp(60px, 8vw, 110px);
}

.cost-section p {
    color: var(--muted);
}

.cost-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
}

.cost-lists h3 {
    margin-bottom: 14px;
    font-size: 36px;
}

.info-accordion {
    display: grid;
    gap: 12px;
    margin: clamp(36px, 5vw, 72px) clamp(18px, 4vw, 58px) clamp(60px, 8vw, 110px);
    padding: clamp(18px, 3vw, 34px);
    border-radius: var(--radius-large);
    background: rgba(255, 250, 242, .42);
}

.info-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius-soft);
    background: rgba(255, 250, 242, .58);
    overflow: hidden;
}

.info-panel summary {
    display: grid;
    grid-template-columns: 64px 1fr 32px;
    gap: 18px;
    align-items: center;
    padding: clamp(20px, 3vw, 30px);
    cursor: pointer;
    list-style: none;
}

.info-panel summary::-webkit-details-marker {
    display: none;
}

.info-panel summary::after {
    content: "+";
    justify-self: end;
    color: var(--gold);
    font: 32px/1 var(--serif);
    transition: transform .25s ease;
}

.info-panel[open] summary::after {
    transform: rotate(45deg);
}

.info-panel span {
    color: var(--gold);
    font-size: 12px;
}

.info-panel strong {
    font-family: var(--serif);
    font-size: 36px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.02;
}

.info-panel p {
    max-width: 760px;
    margin: 0;
    padding: 0 clamp(20px, 3vw, 30px) clamp(24px, 3vw, 34px) calc(clamp(20px, 3vw, 30px) + 82px);
    color: var(--muted);
    font-size: 18px;
}

.contact-section {
    display: grid;
    justify-items: center;
}

.contact-form {
    width: min(100%, 900px);
    padding: clamp(26px, 5vw, 58px);
    border: 1px solid var(--line);
    border-radius: var(--radius-large);
    background: rgba(255, 250, 242, .48);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

label {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

label span {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0;
    text-transform: uppercase;
}

input,
textarea,
select {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    font: 18px/1.5 var(--sans);
    padding: 12px 0;
    outline: none;
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--ink);
}

.has-error input,
.has-error textarea,
.has-error select,
.has-error.consent {
    border-color: var(--clay);
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid transparent;
}

.consent input {
    width: 18px;
    margin-top: 4px;
}

.consent span {
    letter-spacing: 0;
    text-transform: none;
    font-size: 15px;
}

.website-field {
    position: absolute;
    left: -9999px;
}

.form-message {
    margin-bottom: 30px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--olive);
}

.form-message.error,
.form-message.mail_error {
    color: var(--clay);
}

.site-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    padding: 54px clamp(22px, 6vw, 92px);
    background: var(--ink);
    color: var(--paper);
}

.site-footer p {
    margin: 0 0 10px;
    font-family: var(--serif);
    font-size: 34px;
}

.site-footer span {
    display: block;
    max-width: 660px;
    color: rgba(251, 248, 240, .62);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .9s ease, transform .9s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .highlight-image img,
    .button {
        transition: none;
    }
}

@media (max-width: 1040px) {
    .site-header {
        grid-template-columns: minmax(0, 1fr) auto auto;
        justify-content: initial;
        gap: 12px;
        color: var(--ink);
        background: rgba(251, 248, 240, .9);
        border-bottom: 1px solid var(--line);
        backdrop-filter: blur(18px);
    }

    .brand {
        position: relative;
        z-index: 40;
        overflow: hidden;
        width: 92px;
        height: 50px;
    }

    .brand-logo-cream {
        opacity: 0;
        filter: none;
    }

    .brand-logo-dark {
        opacity: 1;
    }

    .menu-toggle {
        display: block;
        justify-self: end;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        z-index: 30;
        display: none;
        width: 100vw;
        min-height: 100dvh;
        padding: 124px 26px 40px;
        background: rgba(251, 248, 240, .96);
        color: var(--ink);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        font-size: clamp(28px, 8vw, 58px);
        font-family: var(--serif);
        font-style: italic;
        text-transform: none;
        backdrop-filter: blur(22px);
    }

    .site-nav a {
        opacity: .88;
    }

    .header-actions {
        position: relative;
        z-index: 40;
        display: flex;
        gap: 10px;
        justify-self: end;
    }

    .header-actions .button-small {
        min-height: 36px;
        padding: 0 14px;
        white-space: nowrap;
    }

    body.is-menu-open .site-nav {
        display: flex;
    }

    .hero h1 {
        font-size: 73px;
    }

    .page-hero {
        margin-top: 88px;
    }

    .hero-subtitle {
        font-size: 34px;
    }

    .lead,
    .final-invite p {
        font-size: 44px;
    }

    .section-heading h2,
    .glance h2,
    .cost-section h2,
    .page-hero h1 {
        font-size: 54px;
    }

    .highlight-copy h3,
    .timeline-copy h2,
    .guide-copy h2 {
        font-size: 39px;
    }

    .profile-text p {
        font-size: 34px;
    }

    .highlight-item,
    .highlight-item:nth-child(even) {
        grid-template-columns: 54px 1fr;
    }

    .timeline-item {
        grid-template-columns: 64px 1fr;
    }

    .timeline-visual {
        grid-column: 2;
        aspect-ratio: 1.5 / 1;
        min-height: 260px;
    }

    .highlight-image,
    .highlight-item:nth-child(even) .highlight-image {
        grid-column: 2;
    }

    .highlight-copy,
    .highlight-item:nth-child(even) .highlight-copy {
        grid-column: 2;
        grid-row: auto;
    }

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

    .route-map {
        grid-template-columns: 1fr;
    }

    .split-hero,
    .split-hero.reverse,
    .guide-block,
    .guide-block.reverse,
    .cost-section,
    .two-column {
        grid-template-columns: 1fr;
    }

    .guide-block.reverse .portrait-frame,
    .guide-block.reverse .guide-copy {
        grid-column: auto;
        grid-row: auto;
    }

    .cost-section,
    .info-accordion {
        margin-left: 18px;
        margin-right: 18px;
    }

    .timeline {
        margin-left: 18px;
        margin-right: 18px;
    }
}

@media (max-width: 720px) {
    .site-header {
        min-height: 68px;
        padding: 14px 18px;
    }

    .brand {
        width: 82px;
        height: 45px;
    }

    .header-actions .button-small {
        display: none;
    }

    .site-nav {
        padding-top: 110px;
    }

    .hero {
        min-height: 92vh;
        padding: 110px 20px 42px;
    }

    .page-hero {
        min-height: 62vh;
        margin: 78px 8px 0;
        padding-top: 88px;
        padding-bottom: 50px;
        border-radius: 24px;
    }

    .hero h1 {
        font-size: 49px;
    }

    .hero-subtitle {
        font-size: 26px;
    }

    .hero-places {
        font-size: 11px;
        line-height: 1.8;
    }

    .section,
    .page-hero {
        padding-left: 20px;
        padding-right: 20px;
    }

    .cost-section,
    .info-accordion {
        margin-left: 12px;
        margin-right: 12px;
    }

    .timeline {
        margin-left: 12px;
        margin-right: 12px;
    }

    .editorial-intro,
    .glance,
    .timeline-item {
        grid-template-columns: 1fr;
    }

    .timeline-visual {
        grid-column: auto;
        min-height: 250px;
    }

    .lead,
    .final-invite p,
    .profile-text p {
        font-size: 30px;
    }

    .section-heading h2,
    .glance h2,
    .cost-section h2,
    .page-hero h1 {
        font-size: 41px;
    }

    .guide-copy h2 {
        font-size: 42px;
    }

    .guide-copy .guide-role {
        font-size: 25px;
    }

    .highlight-list {
        gap: 54px;
    }

    .highlight-item,
    .highlight-item:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .highlight-image,
    .highlight-item:nth-child(even) .highlight-image,
    .highlight-copy,
    .highlight-item:nth-child(even) .highlight-copy {
        grid-column: auto;
    }

    .highlight-image {
        min-height: 260px;
    }

    .glance dl,
    .cost-lists,
    .form-row,
    .route-map {
        grid-template-columns: 1fr;
    }

    .stage-carousel {
        grid-template-columns: 34px minmax(0, 1fr) 34px;
    }

    .stage-arrow {
        width: 34px;
        height: 34px;
    }

    .info-panel summary {
        grid-template-columns: 42px 1fr 28px;
    }

    .info-panel strong {
        font-size: 28px;
    }

    .info-panel p {
        padding-left: 20px;
        font-size: 16px;
    }

    .map-canvas,
    .map-canvas svg {
        min-height: 320px;
    }

    .final-invite,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .timeline::before {
        display: none;
    }

    .timeline-marker {
        position: static;
        width: 54px;
    }
}
