:root {
    --canvas: #f5f1e8;
    --surface: #f0eadc;
    --surface-strong: #e7ddc8;
    --surface-stronger: #ddd0b4;
    --ink: #0e1a24;
    --ink-soft: #40505e;
    --ink-muted: #6d7a84;
    --line: rgba(14, 26, 36, 0.12);
    --line-strong: rgba(14, 26, 36, 0.22);
    --brand: #bc9560;
    --brand-deep: #9b7747;
    --brand-glow: rgba(188, 149, 96, 0.26);
    --brand-pale: rgba(188, 149, 96, 0.12);
    --hero: #0d1620;
    --hero-soft: rgba(11, 18, 27, 0.72);
    --white: #ffffff;
    --success: #294c43;
    --max: 1240px;
    --narrow: 880px;
    --nav-height: 88px;
    --radius: 22px;
    --radius-sm: 14px;
    --shadow: 0 18px 60px rgba(10, 18, 27, 0.1);
    --transition: 220ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(188, 149, 96, 0.09), transparent 30%),
        radial-gradient(circle at top right, rgba(11, 18, 27, 0.07), transparent 34%),
        linear-gradient(180deg, #f7f3ea 0%, #f3ede2 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

button {
    cursor: pointer;
    background: none;
    border: 0;
    color: inherit;
}

p,
ul,
ol {
    margin: 0;
}

ul,
ol {
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 0.98;
}

h1 {
    font-size: clamp(3.6rem, 8vw, 7.2rem);
}

h2 {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.container {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
}

.container-narrow {
    width: min(calc(100% - 40px), var(--narrow));
    margin: 0 auto;
}

.section {
    padding: 108px 0;
}

.section-dark {
    background: var(--hero);
    color: var(--white);
}

.section-soft {
    background: linear-gradient(180deg, rgba(231, 221, 200, 0.62), rgba(245, 241, 232, 0));
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-deep);
}

.section-kicker::before {
    content: "";
    width: 46px;
    height: 1px;
    background: currentColor;
    opacity: 0.56;
}

.section-intro {
    display: grid;
    gap: 18px;
    max-width: 820px;
    margin-bottom: 54px;
}

.section-copy,
.lede,
.body-copy {
    font-size: 1.06rem;
    color: var(--ink-soft);
}

.section-dark .section-copy,
.section-dark .body-copy,
.section-dark .lede {
    color: rgba(255, 255, 255, 0.72);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow.light {
    background: var(--brand-pale);
    color: var(--brand-deep);
    border-color: rgba(188, 149, 96, 0.24);
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform var(--transition), border-color var(--transition), background-color var(--transition), color var(--transition);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.btn:hover,
.btn-secondary:hover {
    transform: translateY(-1px);
}

.btn {
    background: var(--brand);
    color: var(--ink);
}

.btn:hover {
    background: #c9a26d;
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

.btn-secondary.dark {
    border-color: var(--line-strong);
    color: var(--ink);
    background: transparent;
}

.btn-secondary.dark:hover {
    border-color: var(--brand);
    color: var(--brand-deep);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    transition: background-color var(--transition), border-color var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
    background: rgba(10, 18, 27, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px) saturate(140%);
    box-shadow: 0 18px 50px rgba(7, 13, 20, 0.18);
}

.site-header.light.is-scrolled {
    background: rgba(247, 243, 234, 0.88);
    border-bottom-color: rgba(14, 26, 36, 0.08);
    box-shadow: 0 18px 50px rgba(14, 26, 36, 0.08);
}

.site-nav {
    min-height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.site-nav .brand-copy {
    display: none;
}

.brand-logo {
    width: 154px;
    height: auto;
    flex: 0 0 auto;
    display: block;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--brand), #e3c48c);
    color: var(--ink);
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.brand-copy {
    display: grid;
    gap: 3px;
}

.brand-copy strong {
    font-size: 0.98rem;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-copy span {
    font-size: 0.76rem;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.62);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-header.light .brand-copy span,
.site-header.light .nav-link,
.site-header.light .nav-dropdown-toggle,
.site-header.light .nav-toggle {
    color: var(--ink);
}

.site-header.light .nav-link.subtle,
.site-header.light .brand-copy span {
    color: var(--ink-muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
}

.site-header.light .nav-links,
.site-header.light.is-scrolled .nav-links {
    background: rgba(255, 255, 255, 0.54);
    border-color: rgba(14, 26, 36, 0.08);
}

.nav-link,
.nav-dropdown-toggle {
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.84);
    transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active,
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
    color: var(--brand);
}

.nav-link.subtle {
    color: rgba(255, 255, 255, 0.62);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    min-width: 240px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(12, 20, 29, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    display: grid;
    gap: 10px;
}

.site-header.light .nav-dropdown-menu {
    background: rgba(247, 243, 236, 0.98);
    border-color: rgba(14, 26, 36, 0.08);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    padding: 10px 12px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.76);
    transition: background-color var(--transition), color var(--transition);
}

.site-header.light .nav-dropdown-menu a {
    color: var(--ink-soft);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    background: rgba(188, 149, 96, 0.12);
    color: var(--brand);
}

.nav-cta {
    background: linear-gradient(135deg, #c6a06b, #ae844e);
    color: var(--ink);
    padding: 0 22px;
    min-height: 48px;
    border-radius: 999px;
    box-shadow: 0 16px 36px rgba(188, 149, 96, 0.2);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white);
}

.site-header.light .nav-toggle {
    border-color: rgba(14, 26, 36, 0.14);
}

.nav-toggle-lines {
    width: 18px;
    display: grid;
    gap: 4px;
}

.nav-toggle-lines span {
    display: block;
    height: 1px;
    width: 100%;
    background: currentColor;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-open .nav-toggle-lines span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.nav-open .nav-toggle-lines span:nth-child(2) {
    opacity: 0;
}

.nav-open .nav-toggle-lines span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 18;
    padding: calc(var(--nav-height) + 24px) 16px 20px;
    background:
        radial-gradient(circle at top right, rgba(188, 149, 96, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(7, 13, 20, 0.98), rgba(11, 18, 27, 0.98));
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.mobile-menu-inner {
    display: grid;
    gap: 0;
    padding: 20px 18px 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

.mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 62px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    padding: 0 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu a::after {
    content: "↗";
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.92rem;
}

.mobile-menu .nav-note {
    margin-top: 18px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.66);
    padding: 0 4px;
}

.nav-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
}

.hero-home,
.page-hero {
    position: relative;
    color: var(--white);
    background: var(--hero);
    overflow: clip;
}

.hero-home {
    min-height: 100svh;
}

.hero-visual {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0.54;
}

.hero-visual::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(188, 149, 96, 0.18), transparent 36%),
        linear-gradient(180deg, rgba(7, 13, 20, 0.44), rgba(7, 13, 20, 0.9));
}

.hero-inner,
.page-hero-inner {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--nav-height) + 68px);
    padding-bottom: 74px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 48px;
    align-items: center;
}

.hero-content {
    max-width: 820px;
}

.hero-content h1 {
    max-width: 9.2ch;
    font-size: clamp(2.9rem, 5vw, 5rem);
    line-height: 0.94;
}

.hero-content .lede {
    margin-top: 22px;
    max-width: 560px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.74);
}

.hero-actions {
    margin-top: 30px;
}

.hero-side {
    display: grid;
    gap: 20px;
    align-self: stretch;
    justify-items: start;
    padding-bottom: 0;
}

.hero-video-card {
    position: relative;
    width: 100%;
    min-height: 460px;
    border-radius: 28px;
    overflow: clip;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
}

.hero-video-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(188, 149, 96, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(7, 13, 20, 0.08), rgba(7, 13, 20, 0.78));
}

.hero-video-copy {
    position: absolute;
    inset: auto 28px 28px 28px;
    z-index: 1;
    display: grid;
    gap: 14px;
}

.hero-video-copy strong {
    display: block;
    font-size: 1.26rem;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    color: var(--white);
}

.hero-video-copy p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
}

.hero-video-trigger {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    min-height: 56px;
    padding: 0 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-signals {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
}

.hero-signal {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.hero-signal span {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
    font-weight: 700;
}

.hero-signal strong {
    font-size: 1rem;
    line-height: 1.15;
    font-family: "Cormorant Garamond", serif;
    color: var(--white);
}

.hero-foot {
    position: relative;
    z-index: 1;
    padding-bottom: 26px;
}

.hero-marquee {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.83rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.58);
}

.hero-marquee span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-marquee span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
}

.page-hero {
    min-height: 62svh;
}

.page-hero .hero-visual {
    opacity: 0.46;
}

.page-hero-copy {
    display: grid;
    gap: 22px;
    max-width: 760px;
}

.page-hero-copy h1 {
    font-size: clamp(2.6rem, 4.7vw, 4.7rem);
    line-height: 0.95;
    max-width: 12.5ch;
}

.page-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.poster {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 34px;
    align-items: stretch;
}

.poster-media {
    position: relative;
    min-height: 480px;
    border-radius: var(--radius);
    overflow: clip;
    background: #162230;
}

.poster-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(11, 18, 27, 0.66));
}

.play-button {
    position: absolute;
    inset: auto auto 28px 28px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 22px;
    min-height: 56px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    font-weight: 700;
}

.play-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand);
    display: grid;
    place-items: center;
}

.poster-copy {
    display: grid;
    gap: 22px;
    align-content: start;
}

.poster-list {
    display: grid;
    gap: 12px;
}

.poster-list li {
    padding: 0 0 12px 18px;
    border-bottom: 1px solid var(--line);
    position: relative;
    color: var(--ink-soft);
}

.poster-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
}

.editorial-grid {
    display: grid;
    gap: 24px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 34px;
}

.audience-item,
.benefit-line,
.principle-item,
.offer-card,
.faq-item,
.market-card,
.detail-block,
.booking-card,
.direction-panel {
    border-top: 1px solid var(--line-strong);
    padding-top: 18px;
}

.audience-item {
    display: grid;
    gap: 10px;
    position: relative;
    min-height: 240px;
    padding: 24px;
    border-top: 0;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.38));
    border: 1px solid rgba(14, 26, 36, 0.08);
    box-shadow: 0 18px 46px rgba(14, 26, 36, 0.06);
    overflow: clip;
    transition: transform 500ms cubic-bezier(.19,1,.22,1), box-shadow 500ms cubic-bezier(.19,1,.22,1), border-color var(--transition);
}

.audience-item::after {
    content: "";
    position: absolute;
    inset: auto -60px -60px auto;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(188, 149, 96, 0.16), transparent 70%);
    opacity: 0;
    transition: opacity 420ms ease;
}

.audience-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 68px rgba(14, 26, 36, 0.1);
    border-color: rgba(188, 149, 96, 0.18);
}

.audience-item:hover::after {
    opacity: 1;
}

.audience-item-top {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.audience-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(188, 149, 96, 0.14);
    color: var(--brand-deep);
    box-shadow: inset 0 0 0 1px rgba(188, 149, 96, 0.12);
}

.audience-icon svg {
    width: 20px;
    height: 20px;
}

.audience-type {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.audience-hover-media {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 148px;
    height: 104px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(10, 18, 27, 0.16);
    transform: translateY(16px) rotate(-4deg) scale(0.92);
    opacity: 0;
    transition: transform 520ms cubic-bezier(.19,1,.22,1), opacity 520ms cubic-bezier(.19,1,.22,1);
}

.audience-hover-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.audience-item:hover .audience-hover-media {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
}

.audience-item strong,
.benefit-line strong,
.principle-item strong,
.market-card strong,
.offer-card strong,
.detail-block strong {
    font-size: 1.16rem;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    line-height: 1.1;
}

.audience-item p,
.benefit-line p,
.principle-item p,
.market-card p,
.offer-card p,
.detail-block p {
    color: var(--ink-soft);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 44px;
    align-items: start;
}

.sticky-copy {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 24px;
}

.benefit-stack {
    display: grid;
    gap: 18px;
}

.benefit-line {
    display: grid;
    gap: 10px;
    padding: 24px 26px;
    border-top: 0;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(14, 26, 36, 0.08);
    box-shadow: 0 18px 46px rgba(14, 26, 36, 0.05);
    transition: transform 420ms cubic-bezier(.19,1,.22,1), box-shadow 420ms cubic-bezier(.19,1,.22,1), border-color var(--transition);
}

.benefit-line:hover {
    transform: translateX(4px);
    box-shadow: 0 24px 56px rgba(14, 26, 36, 0.08);
    border-color: rgba(188, 149, 96, 0.18);
}

.benefit-line-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(188, 149, 96, 0.18), rgba(188, 149, 96, 0.08));
    color: var(--brand-deep);
}

.benefit-icon svg {
    width: 18px;
    height: 18px;
}

.benefit-tag {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.proof-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.proof-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--brand-pale);
    color: var(--brand-deep);
    font-size: 0.86rem;
    font-weight: 700;
}

.proof-chip::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 6px rgba(188, 149, 96, 0.12);
}

.process-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 40px;
}

.process-steps {
    display: grid;
    gap: 20px;
}

.process-step {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 18px;
    padding: 18px 0 22px;
    border-top: 1px solid var(--line-strong);
}

.step-index {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    color: var(--brand-deep);
    line-height: 1;
}

.step-body {
    display: grid;
    gap: 10px;
}

.step-body span {
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-muted);
}

.market-showcase {
    display: grid;
    gap: 26px;
}

.market-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    gap: 26px;
}

.market-media {
    position: relative;
    min-height: 280px;
    border-radius: var(--radius-sm);
    overflow: clip;
    box-shadow: 0 18px 46px rgba(10, 18, 27, 0.12);
}

.market-card img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.market-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 13, 20, 0.06), rgba(7, 13, 20, 0.7));
}

.market-video-trigger {
    position: absolute;
    inset: auto 18px 18px 18px;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    gap: 14px;
    width: calc(100% - 36px);
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    color: var(--white);
    text-align: left;
}

.market-video-play {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    font-size: 0.96rem;
    font-weight: 800;
}

.market-video-copy {
    display: grid;
    gap: 2px;
}

.market-video-copy span {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.market-video-copy strong {
    font-size: 1.1rem;
    line-height: 1.05;
    color: var(--white);
}

.market-video-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(188, 149, 96, 0.12);
    color: var(--brand-deep);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    transition: transform var(--transition), background-color var(--transition), color var(--transition);
}

.market-video-link .play-icon {
    width: 28px;
    height: 28px;
    font-size: 0.72rem;
}

.market-video-link:hover {
    transform: translateY(-1px);
    background: rgba(188, 149, 96, 0.18);
}

.market-body {
    display: grid;
    gap: 16px;
}

.market-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--ink-muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.data-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.data-pill {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-size: 0.84rem;
    color: var(--ink-soft);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 34px;
}

.offer-card {
    display: grid;
    gap: 10px;
    position: relative;
}

.offer-card-media {
    position: relative;
    border-radius: 18px;
    overflow: clip;
    min-height: 220px;
    background: var(--surface-strong);
    box-shadow: 0 18px 46px rgba(10, 18, 27, 0.12);
}

.offer-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms cubic-bezier(.19, 1, .22, 1);
}

.offer-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(14, 26, 36, 0.82);
    color: var(--white);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.offer-card:hover .offer-card-media img {
    transform: scale(1.04);
}

.offer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 0.82rem;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.offer-price {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 0.95;
    color: var(--ink);
}

.offer-price-note {
    display: block;
    margin-top: 6px;
    color: var(--ink-muted);
    font-size: 0.86rem;
}

.offer-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.offer-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--brand-pale);
    color: var(--brand-deep);
    font-size: 0.8rem;
    font-weight: 700;
}

.offer-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    color: var(--brand-deep);
    font-size: 0.92rem;
    font-weight: 700;
}

.offer-cta::after,
.market-link::after {
    content: "↗";
}

.offer-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
}

.offer-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.66);
    color: var(--ink-soft);
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color var(--transition), border-color var(--transition), background-color var(--transition), transform var(--transition);
}

.offer-filter:hover,
.offer-filter.is-active {
    color: var(--white);
    border-color: rgba(10, 18, 27, 0.08);
    background: linear-gradient(135deg, #122031, #0d1620);
    transform: translateY(-1px);
}

.offer-grid.is-catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.offer-card.is-property {
    gap: 14px;
    padding-top: 0;
    border-top: 0;
}

.offer-card-shell {
    display: grid;
    gap: 16px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(14, 26, 36, 0.08);
    box-shadow: 0 24px 60px rgba(10, 18, 27, 0.08);
    transition: transform 600ms cubic-bezier(.19, 1, .22, 1), box-shadow 600ms cubic-bezier(.19, 1, .22, 1), border-color var(--transition);
}

.offer-card.is-property:hover .offer-card-shell {
    transform: translateY(-6px);
    border-color: rgba(188, 149, 96, 0.22);
    box-shadow: 0 30px 74px rgba(10, 18, 27, 0.12);
}

.offer-card-copy {
    display: grid;
    gap: 12px;
}

.offer-summary {
    color: var(--ink-soft);
}

.offer-card[data-market].is-hidden {
    display: none;
}

.offer-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.offer-stat {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(14, 26, 36, 0.04);
}

.offer-stat span {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.offer-stat strong {
    font-size: 1rem;
    line-height: 1.18;
}

.catalog-note {
    display: grid;
    gap: 18px;
    padding: 32px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.22));
    border: 1px solid rgba(14, 26, 36, 0.08);
    box-shadow: 0 18px 46px rgba(14, 26, 36, 0.06);
}

.property-hero {
    min-height: 88svh;
}

.property-hero .hero-grid {
    align-items: center;
}

.property-hero-copy {
    display: grid;
    gap: 22px;
    max-width: 690px;
}

.property-hero-copy h1 {
    max-width: 11.8ch;
    font-size: clamp(3rem, 5.2vw, 5rem);
    line-height: 0.94;
}

.property-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.property-facts span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.property-sidecard {
    display: grid;
    gap: 18px;
    padding: 28px;
    border-radius: 26px;
    background: rgba(9, 15, 23, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(14px);
}

.property-sidecard .offer-price,
.property-sidecard strong,
.property-sidecard p,
.property-sidecard .offer-price-note {
    color: var(--white);
}

.property-sidecard .offer-price-note,
.property-sidecard p {
    opacity: 0.76;
}

.property-sidecard .offer-pills span {
    background: rgba(188, 149, 96, 0.16);
    color: rgba(255, 255, 255, 0.9);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 18px;
}

.comparison-table th,
.comparison-table td {
    text-align: left;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    vertical-align: top;
}

.comparison-table th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-muted);
    font-weight: 700;
}

.comparison-table td strong {
    display: block;
    margin-bottom: 8px;
}

.trust-grid,
.principle-grid,
.detail-grid,
.stats-grid {
    display: grid;
    gap: 24px 30px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-grid.two,
.principle-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-block,
.principle-item {
    display: grid;
    gap: 8px;
}

.stat-box {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 18px;
}

.stat-box strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 0.9;
    color: var(--white);
}

.stat-box span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.66);
}

.quote-block {
    padding: 40px 0 0;
    border-top: 1px solid var(--line-strong);
    max-width: 920px;
}

.quote-block blockquote {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.04;
}

.quote-block p {
    margin-top: 18px;
    color: var(--ink-soft);
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    padding-top: 0;
    border-top: 1px solid var(--line-strong);
}

.faq-trigger {
    width: 100%;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
}

.faq-trigger span:first-child {
    font-size: 1.1rem;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
}

.faq-icon {
    width: 18px;
    height: 18px;
    position: relative;
    flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: currentColor;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: transform var(--transition), opacity var(--transition);
}

.faq-icon::before {
    width: 16px;
    height: 1px;
}

.faq-icon::after {
    width: 1px;
    height: 16px;
}

.faq-item.is-open .faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(0);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition);
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer p {
    color: var(--ink-soft);
    padding: 0 0 22px;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}

.cta-panel {
    display: grid;
    gap: 24px;
    padding: 56px;
    border-radius: var(--radius);
    background: linear-gradient(145deg, #111c28, #172433);
    color: var(--white);
}

.cta-panel p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 620px;
}

.booking-showcase {
    padding: 32px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(188, 149, 96, 0.12), transparent 30%),
        linear-gradient(145deg, #101b27, #182536);
    color: var(--white);
    box-shadow: 0 34px 90px rgba(8, 15, 23, 0.22);
}

.booking-showcase .section-intro {
    margin-bottom: 32px;
    max-width: 760px;
}

.booking-showcase .section-copy,
.booking-showcase .booking-card p,
.booking-showcase .contact-list a,
.booking-showcase .contact-list span {
    color: rgba(255, 255, 255, 0.72);
}

.booking-showcase .booking-card {
    padding-top: 18px;
    border-top-color: rgba(255, 255, 255, 0.14);
}

.booking-showcase .booking-frame {
    min-height: 720px;
}

.booking-showcase .btn-secondary.dark {
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--white);
}

.booking-showcase .btn-secondary.dark:hover {
    border-color: rgba(188, 149, 96, 0.5);
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.team-card {
    display: grid;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid var(--line-strong);
}

.team-photo {
    aspect-ratio: 4 / 5;
    overflow: clip;
    border-radius: 20px;
    background: var(--surface-strong);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-meta {
    display: grid;
    gap: 8px;
}

.team-role {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-deep);
    font-weight: 700;
}

.team-desc {
    color: var(--ink-soft);
}

.footer {
    padding: 34px 0 28px;
    background: #0a131c;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(0, 0.6fr));
    gap: 28px;
    padding: 46px 0 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: grid;
    gap: 16px;
}

.footer-brand .brand {
    align-items: flex-start;
}

.footer-brand .brand-logo {
    width: 172px;
}

.footer-brand p,
.footer-col a,
.footer-bottom {
    color: rgba(255, 255, 255, 0.62);
}

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

.footer-col strong {
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.86rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 34px;
}

.booking-frame {
    width: 100%;
    min-height: 760px;
    border: 0;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.booking-card {
    display: grid;
    gap: 18px;
}

.contact-list {
    display: grid;
    gap: 12px;
}

.contact-list a,
.contact-list span {
    color: var(--ink-soft);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.field {
    display: grid;
    gap: 8px;
}

.field label {
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-muted);
    font-weight: 700;
}

.field input,
.field textarea {
    width: 100%;
    border-radius: 18px;
    border: 1px solid var(--line);
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--ink);
}

.field textarea {
    min-height: 180px;
    resize: vertical;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 30;
    background: rgba(5, 10, 15, 0.78);
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.video-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.video-modal-frame {
    position: relative;
    width: min(100%, 1040px);
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 22px;
    overflow: clip;
}

.video-modal-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    font-size: 1.2rem;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 640ms ease, transform 640ms ease;
}

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

.muted {
    color: var(--ink-muted);
}

.market-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--brand-deep);
}

@media (max-width: 1080px) {
    .hero-grid,
    .poster,
    .split-layout,
    .process-shell,
    .booking-layout {
        grid-template-columns: 1fr;
    }

    .sticky-copy {
        position: static;
    }

    .market-card,
    .footer-grid,
    .trust-grid,
    .principle-grid,
    .detail-grid,
    .stats-grid,
    .team-grid,
    .offer-grid.is-catalog,
    .offer-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 920px) {
    .nav-links,
    .nav-link.nav-cta {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .hero-home {
        min-height: auto;
    }

    .hero-inner,
    .page-hero-inner {
        padding-top: calc(var(--nav-height) + 48px);
    }

    .hero-side {
        padding-bottom: 0;
    }

    .hero-video-card {
        min-height: 360px;
    }

    .property-hero {
        min-height: auto;
    }

    .offer-grid,
    .offer-grid.is-catalog,
    .audience-grid,
    .market-card,
    .market-showcase,
    .form-grid,
    .team-grid,
    .offer-stats {
        grid-template-columns: 1fr;
    }

    .market-card img {
        min-height: 240px;
    }
}

@media (max-width: 680px) {
    body {
        font-size: 15px;
    }

    .container,
    .container-narrow {
        width: min(calc(100% - 28px), var(--max));
    }

    .section {
        padding: 78px 0;
    }

    .hero-grid,
    .poster,
    .split-layout,
    .process-shell,
    .booking-layout,
    .offer-grid,
    .offer-grid.is-catalog,
    .audience-grid,
    .trust-grid,
    .principle-grid,
    .detail-grid,
    .stats-grid,
    .footer-grid,
    .team-grid,
    .offer-stats {
        grid-template-columns: 1fr;
    }

    .hero-actions .btn-row,
    .btn-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    .btn-secondary {
        width: 100%;
    }

    .cta-panel {
        padding: 34px 24px;
    }

    .poster-media {
        min-height: 300px;
    }

    .hero-content h1,
    .page-hero-copy h1,
    .property-hero-copy h1 {
        max-width: none;
    }

    .hero-video-card {
        min-height: 260px;
    }

    .hero-signals {
        grid-template-columns: 1fr;
    }

    .comparison-table,
    .comparison-table tbody,
    .comparison-table tr,
    .comparison-table th,
    .comparison-table td {
        display: block;
        width: 100%;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tr {
        padding-top: 14px;
        border-top: 1px solid var(--line);
    }

    .comparison-table td {
        padding: 10px 0;
        border-top: 0;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
