@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/CormorantGaramond-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/CormorantGaramond-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/CormorantGaramond-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/CormorantGaramond-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #f3eee5;
    --surface: #f8f3ea;
    --ink: #2a221c;
    --muted: #6e6459;
    --gold: #b68a47;
    --bronze: #7f5a33;
    --olive: #6f7350;
    --charcoal: #1f1b18;
    --line: rgba(50, 37, 25, 0.16);
    --shadow: 0 18px 45px rgba(33, 24, 17, 0.15);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at 10% 0%, rgba(182, 138, 71, 0.07), transparent 35%), var(--bg);
    line-height: 1.7;
}

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

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

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

h1,
h2,
h3,
h4 {
    font-family: "Cormorant Garamond", Georgia, serif;
    line-height: 1.15;
    margin: 0 0 14px;
    color: #1f1a16;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 600;
}

h2 {
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 600;
}

p {
    margin: 0 0 16px;
    color: var(--muted);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px;
}

.lead {
    font-size: 1.08rem;
    max-width: 740px;
}

.section {
    padding: 88px 0;
}

.soft-surface {
    background: linear-gradient(170deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.7));
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(50, 37, 25, 0.08);
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(31, 27, 24, 0.88);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 35px rgba(14, 10, 8, 0.35);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #f4ece1;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(140deg, #c79a56, #8f683f);
    color: #1f1a16;
    box-shadow: 0 6px 20px rgba(22, 16, 12, 0.45);
}

.brand-text {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.6rem;
    letter-spacing: 0.02em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.main-nav a {
    color: #efe3d5;
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.main-nav a:hover {
    color: #ffd8a2;
}

.nav-cta {
    border: 1px solid rgba(255, 224, 173, 0.65);
    padding: 11px 18px;
    border-radius: 999px;
    background: rgba(255, 220, 166, 0.08);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: #f2e9dd;
    margin: 6px 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
    min-height: 94vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #f7efe6;
    position: relative;
    padding-top: 110px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 140px;
    background: linear-gradient(to bottom, transparent, rgba(23, 18, 14, 0.58));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.hero h1,
.hero p {
    color: #f7efe6;
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    border-radius: 999px;
    padding: 13px 24px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
    background: linear-gradient(145deg, #c99f5f, #a4763f);
    color: #1f1711;
    box-shadow: 0 10px 28px rgba(22, 16, 11, 0.34);
}

.btn-ghost {
    border: 1px solid rgba(255, 230, 197, 0.62);
    color: #f8eddc;
    background: rgba(255, 250, 244, 0.06);
}

.split-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.image-panel img {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    width: 100%;
    min-height: 420px;
    object-fit: cover;
}

.section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 34px;
    flex-wrap: wrap;
}

.experience-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.experience-flow article {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(83, 60, 39, 0.14);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 10px 30px rgba(43, 30, 19, 0.08);
}

.destinations-wrap {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 36px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.destinations-grid div {
    border: 1px solid var(--line);
    padding: 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.55);
}

.destinations-grid span {
    display: block;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.55rem;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.statement-panel {
    background: linear-gradient(145deg, #221911, #34271d 60%, #2a2019);
    color: #f2e5d5;
}

.statement-panel h2 {
    color: #f7ebdb;
}

.statement-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 40px;
    align-items: start;
}

.statement-grid ul {
    display: grid;
    gap: 16px;
}

.statement-grid li {
    padding: 16px 18px;
    border-left: 2px solid #b98e52;
    background: rgba(255, 255, 255, 0.04);
}

.package-preview {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 38px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(250, 243, 233, 0.88));
}

.package-lines {
    display: grid;
    gap: 13px;
}

.package-lines div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(83, 60, 39, 0.13);
}

.package-lines div:last-child {
    border-bottom: 0;
}

.package-lines span {
    color: var(--bronze);
    font-weight: 600;
}

.trust-band {
    padding-top: 66px;
    padding-bottom: 66px;
}

.trust-grid {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.66);
    border-radius: 18px;
    padding: 34px;
    box-shadow: 0 8px 26px rgba(37, 27, 20, 0.08);
}

.photo-mosaic {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.95fr;
    gap: 14px;
    grid-auto-rows: 170px;
}

.photo-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(83, 60, 39, 0.18);
    box-shadow: 0 8px 24px rgba(37, 27, 20, 0.12);
}

.photo-mosaic img:nth-child(1) {
    grid-row: span 2;
}

.photo-mosaic img:nth-child(4) {
    grid-column: span 2;
}

blockquote {
    margin: 0 0 12px;
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    line-height: 1.45;
    font-family: "Cormorant Garamond", Georgia, serif;
    color: #2a211b;
}

.cta-ribbon {
    background: linear-gradient(120deg, #756040, #4b3a28);
}

.cta-content {
    text-align: center;
}

.cta-content h2,
.cta-content p {
    color: #f8ebd9;
}

.inner-hero {
    min-height: 52vh;
    display: flex;
    align-items: end;
    padding: 130px 0 72px;
    background-size: cover;
    background-position: center;
}

.inner-hero h1,
.inner-hero p {
    color: #f5e8d7;
}

.legal-hero {
    background: linear-gradient(130deg, #211911, #3b2c1f);
    min-height: 36vh;
}

.rhythm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.rhythm-grid article {
    border: 1px solid rgba(83, 60, 39, 0.15);
    border-radius: 15px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.66);
}

.prose {
    max-width: 900px;
}

.pricing-table-wrap {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.78);
}

.pricing-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 28px 30px;
    border-bottom: 1px solid rgba(83, 60, 39, 0.13);
}

.pricing-item:last-child {
    border-bottom: 0;
}

.pricing-item.featured {
    background: linear-gradient(130deg, rgba(182, 138, 71, 0.2), rgba(111, 115, 80, 0.18));
}

.price {
    font-size: 1.65rem;
    font-family: "Cormorant Garamond", Georgia, serif;
    color: #3a2818;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 26px;
}

.contact-card,
.contact-form-wrap {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 24px rgba(37, 27, 20, 0.08);
}

.contact-card ul {
    display: grid;
    gap: 11px;
}

.premium-form {
    display: grid;
    gap: 15px;
}

.form-row {
    display: grid;
    gap: 7px;
}

label {
    font-size: 0.86rem;
    font-weight: 600;
    color: #473629;
}

input,
textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(83, 60, 39, 0.24);
    padding: 12px 13px;
    background: #fffdf9;
    color: #2d241d;
    font: inherit;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(182, 138, 71, 0.16);
}

.legal-content {
    max-width: 940px;
}

.legal-content h2 {
    margin-top: 34px;
    font-size: 1.9rem;
}

.legal-content ul {
    list-style: disc;
    margin: 0 0 16px 20px;
    color: var(--muted);
}

.site-footer {
    background: #171310;
    color: #d8c8b3;
    margin-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.75fr 0.95fr 0.7fr;
    gap: 28px;
    padding: 64px 0 38px;
}

.site-footer h3,
.site-footer h4 {
    color: #f1dfc6;
    margin-bottom: 14px;
}

.site-footer p,
.site-footer li {
    color: #cdbda8;
    margin-bottom: 9px;
}

.footer-col ul {
    display: grid;
    gap: 6px;
}

.footer-col a:hover {
    color: #f4d6a9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
    padding: 20px 0 26px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.87rem;
    color: #b9a58c;
}

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

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

@media (max-width: 1080px) {
    .main-nav {
        position: absolute;
        top: 86px;
        right: 4%;
        width: min(340px, 92vw);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        border-radius: 14px;
        background: rgba(23, 17, 13, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: 0 16px 40px rgba(9, 6, 4, 0.5);
    }

    .main-nav.open {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .split-layout,
    .statement-grid,
    .destinations-wrap,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .experience-flow,
    .rhythm-grid,
    .destinations-grid,
    .photo-mosaic {
        grid-template-columns: 1fr;
    }

    .photo-mosaic {
        grid-auto-rows: 220px;
    }

    .photo-mosaic img:nth-child(1),
    .photo-mosaic img:nth-child(4) {
        grid-row: auto;
        grid-column: auto;
    }
}

@media (max-width: 720px) {
    .section {
        padding: 72px 0;
    }

    .hero {
        min-height: 88vh;
    }

    .pricing-item {
        grid-template-columns: 1fr;
        padding: 22px 20px;
    }
}
