:root {
    --color-bg: #f7f5f2;
    --color-surface: #ffffff;
    --color-text: #17181b;
    --color-text-soft: #5a6068;
    --color-primary: #0b5a4b;
    --color-primary-soft: #137560;
    --color-success: #1e8e3e;
    --color-warning: #b8860b;
    --color-danger: #b3261e;
    --color-border-soft: #d7d3cc;
    --color-border-strong: #a49d90;
    --color-muted-bg: #f0ece6;
    --color-elevated-bg: #fbfaf7;
    --color-graphite: #2b3035;
    --color-walnut: #7a5332;
    --color-gold: #c9a66b;
    --color-gold-soft: rgba(201, 166, 107, .18);
    --color-overlay: rgba(10, 12, 16, .72);
    --font-sans: "Inter", "SF Pro Text", "system-ui", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Satoshi", "Inter", "system-ui", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-size-xs: .75rem;
    --font-size-sm: .875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.375rem;
    --font-size-2xl: clamp(1.25rem, 1.05rem + 1.4vw, 1.75rem);
    --font-size-3xl: clamp(1.4rem, 1.1rem + 2.4vw, 2.25rem);
    --font-size-4xl: clamp(1.75rem, 1.15rem + 4vw, 3rem);
    --line-height-tight: 1.15;
    --line-height-snug: 1.3;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.8;
    --space-0: 0;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-7: 28px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 999px;
    --shadow-xs: 0 4px 16px rgba(7, 9, 14, .05);
    --shadow-sm: 0 10px 35px rgba(7, 9, 14, .08);
    --shadow-md: 0 18px 55px rgba(7, 9, 14, .12);
    --shadow-soft-gold: 0 18px 60px rgba(10, 57, 47, .35);
    --shadow-border-gold: 0 0 0 1px rgba(201, 166, 107, .5);
    --shadow-focus: 0 0 0 1px #ffffff, 0 0 0 3px rgba(201, 166, 107, .9);
    --transition-fast: 120ms ease-out;
    --transition-base: 200ms ease;
    --transition-slow: 320ms ease;
    --container-max: 1200px;
    --header-height: 72px;
    background-color: var(--color-bg);
    color-scheme: light
}

*,
*::before,
*::after {
    box-sizing: border-box
}

* {
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent
}

body {
    min-height: 100vh;
    font-family: var(--font-sans);
    font-size: var(--font-size-md);
    line-height: var(--line-height-normal);
    background: radial-gradient(circle at top left, rgba(201, 166, 107, .09) 0, transparent 45%), radial-gradient(circle at bottom right, rgba(11, 90, 75, .12) 0, transparent 55%), var(--color-bg);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto
}

audio,
video {
    max-width: 100%
}

input,
button,
textarea,
select {
    font: inherit;
    color: inherit
}

button {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer
}

ul[role=list],
ol[role=list] {
    list-style: none
}

a {
    text-decoration: none;
    color: inherit
}

p {
    margin-bottom: var(--space-4);
    color: var(--color-text-soft)
}

p:last-child {
    margin-bottom: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: .02em
}

h1 {
    font-size: var(--font-size-4xl);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-4)
}

h2 {
    font-size: var(--font-size-3xl);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-4)
}

h3 {
    font-size: var(--font-size-2xl);
    line-height: var(--line-height-snug);
    margin-bottom: var(--space-3)
}

h4 {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-snug);
    margin-bottom: var(--space-3)
}

h5 {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-snug);
    margin-bottom: var(--space-2)
}

h6 {
    font-size: var(--font-size-md);
    line-height: var(--line-height-snug);
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--color-text-soft)
}

a:hover {
    color: var(--color-primary-soft)
}

a:focus-visible {
    outline: none;
    box-shadow: var(--shadow-focus);
    border-radius: var(--radius-sm)
}

body.lock-scroll {
    overflow: hidden
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

.page-main {
    flex: 1
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--space-4)
}

@media (min-width:768px) {
    .container {
        padding-inline: var(--space-6)
    }
}

@media (min-width:1200px) {
    .container {
        padding-inline: 0
    }
}

.section {
    padding-block: var(--space-10)
}

@media (min-width:768px) {
    .section {
        padding-block: var(--space-12)
    }
}

@media (min-width:1024px) {
    .section {
        padding-block: var(--space-16)
    }
}

.flex {
    display: flex
}

.inline-flex {
    display: inline-flex
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.flex-col {
    display: flex;
    flex-direction: column
}

.items-center {
    align-items: center
}

.items-start {
    align-items: flex-start
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.gap-2 {
    gap: var(--space-2)
}

.gap-3 {
    gap: var(--space-3)
}

.gap-4 {
    gap: var(--space-4)
}

.gap-6 {
    gap: var(--space-6)
}

.grid {
    display: grid
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-6)
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-6)
}

@media (max-width:767.98px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr
    }
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}

.text-muted {
    color: var(--color-text-soft)
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: 2px 10px;
    border-radius: var(--radius-full);
    background: rgba(23, 24, 27, .72);
    color: #f7f5f2;
    font-size: var(--font-size-xs);
    letter-spacing: .12em;
    text-transform: uppercase
}

.surface {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm)
}

.elevated {
    background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(245, 242, 236, .98));
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md), var(--shadow-border-gold)
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: var(--font-size-sm);
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color var(--transition-base), color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-fast), border-color var(--transition-base);
    white-space: nowrap
}

.btn-primary {
    background: linear-gradient(135deg, #0b5a4b, #137560);
    color: #f7f5f2;
    box-shadow: var(--shadow-soft-gold)
}

.btn-primary:hover {
    background: linear-gradient(135deg, #137560, #0b5a4b);
    color: #17181b;
    transform: translateY(-1px);
    box-shadow: 0 26px 60px rgba(7, 9, 14, .32)
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm)
}

.btn-outline {
    background: rgba(23, 24, 27, .02);
    border-color: rgba(201, 166, 107, .7);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .25)
}

.btn-outline:hover {
    background: var(--color-gold-soft);
    border-color: var(--color-gold);
    color: #17181b;
    box-shadow: var(--shadow-xs)
}

.btn-ghost {
    background: transparent;
    color: var(--color-text);
    border-color: transparent
}

.btn-ghost:hover {
    background: rgba(23, 24, 27, .04);
    color: #17181b
}

.btn-lg {
    padding: 14px 28px;
    font-size: var(--font-size-md)
}

.btn-sm {
    padding: 8px 18px;
    font-size: var(--font-size-xs)
}

.btn[disabled],
.btn.disabled {
    opacity: .55;
    pointer-events: none;
    box-shadow: none
}

.btn:focus-visible {
    outline: none;
    box-shadow: var(--shadow-focus)
}

.input {
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-soft);
    background: rgba(255, 255, 255, .96);
    font-size: var(--font-size-sm);
    color: var(--color-text);
    transition: border-color var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base)
}

.input::placeholder {
    color: rgba(90, 96, 104, .8)
}

.input:focus-visible {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 1px rgba(201, 166, 107, .7), 0 18px 45px rgba(7, 9, 14, .16);
    background: #ffffff
}

.input.error {
    border-color: var(--color-danger)
}

textarea.input {
    min-height: 140px;
    resize: vertical
}

.form-label {
    display: block;
    margin-bottom: var(--space-1);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text)
}

.form-helper {
    margin-top: var(--space-1);
    font-size: var(--font-size-xs);
    color: var(--color-text-soft)
}

.form-error {
    margin-top: var(--space-1);
    font-size: var(--font-size-xs);
    color: var(--color-danger)
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(244, 240, 233, .98));
    border: 1px solid rgba(201, 166, 107, .18);
    box-shadow: var(--shadow-sm)
}

.card-soft {
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .65);
    box-shadow: 0 18px 55px rgba(7, 9, 14, .18)
}

.card-header {
    margin-bottom: var(--space-3)
}

.card-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-1);
    color: var(--color-text)
}

.card-subtitle {
    font-size: var(--font-size-sm);
    color: var(--color-text-soft)
}

.card-body {
    flex: 1
}

.card-footer {
    margin-top: var(--space-4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3)
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: rgba(23, 24, 27, .04);
    border: 1px solid rgba(201, 166, 107, .35);
    font-size: var(--font-size-xs);
    color: var(--color-text-soft)
}

.pill-metric {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: rgba(11, 90, 75, .06);
    color: var(--color-primary)
}

.pill-metric span:first-child {
    font-weight: 600
}

.pill-metric span:last-child {
    font-size: var(--font-size-xs);
    color: var(--color-text-soft)
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(22px);
    background: linear-gradient(to bottom, rgba(10, 12, 16, .86), rgba(10, 12, 16, .72), rgba(10, 12, 16, .5), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.site-header-inner {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4)
}

.brand {
    display: flex;
    align-items: center;
    gap: var(--space-3)
}

.brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 40% 60% 55% 45%;
    background: radial-gradient(circle at 20% 20%, #ffffff, rgba(255, 255, 255, .1)), conic-gradient(from 140deg, #c9a66b, #0b5a4b, #2b3035, #c9a66b);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .45), 0 12px 40px rgba(0, 0, 0, .55)
}

.brand-text-main {
    font-family: var(--font-display);
    font-size: var(--font-size-md);
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #f7f5f2
}

.brand-text-sub {
    font-size: var(--font-size-xs);
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(247, 245, 242, .68)
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    font-size: var(--font-size-sm)
}

.nav-link {
    position: relative;
    padding-block: 6px;
    color: rgba(247, 245, 242, .78);
    letter-spacing: .08em;
    text-transform: uppercase
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #c9a66b, #ffffff);
    transition: width var(--transition-base)
}

.nav-link:hover {
    color: #ffffff
}

.nav-link:hover::after {
    width: 100%
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-2)
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(247, 245, 242, .35);
    color: #f7f5f2;
    background: rgba(10, 12, 16, .4)
}

@media (max-width:959.98px) {
    .nav {
        display: none
    }

    .nav-toggle {
        display: inline-flex
    }
}

.hero-full {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: stretch;
    color: #f7f5f2;
    background: #050608
}

.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none
}

.hero-media img,
.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.04) brightness(.88)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 0, rgba(201, 166, 107, .45), transparent 55%), radial-gradient(circle at 100% 0, rgba(4, 44, 36, .9), rgba(4, 44, 36, .2) 42%, transparent 72%), linear-gradient(to bottom, rgba(5, 7, 11, .9), rgba(5, 7, 11, .65), rgba(5, 7, 11, .9))
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding-block: var(--space-12);
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: var(--space-8);
    align-items: center
}

@media (max-width:959.98px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding-block: var(--space-10)
    }
}

.hero-kicker {
    margin-bottom: var(--space-3)
}

.hero-title {
    font-size: clamp(1.9rem, 1.3rem + 3vw, 2.4rem);
    line-height: 1.08;
    max-width: 15ch;
    margin-bottom: var(--space-4)
}

@media (min-width:768px) {
    .hero-title {
        font-size: 3rem
    }
}

@media (min-width:1024px) {
    .hero-title {
        font-size: 3.4rem
    }
}

.hero-title span.accent {
    background: linear-gradient(110deg, #ffffff, #f4e3c4, #c9a66b);
    -webkit-background-clip: text;
    color: transparent
}

.hero-lead {
    font-size: var(--font-size-lg);
    max-width: 40ch;
    color: rgba(244, 242, 238, .88);
    margin-bottom: var(--space-5)
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    align-items: center;
    margin-bottom: var(--space-4)
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    align-items: center
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(244, 242, 238, .76)
}

.hero-meta-item strong {
    font-size: var(--font-size-sm);
    color: #ffffff
}

.hero-panel {
    align-self: stretch;
    display: flex;
    align-items: stretch
}

@media (max-width:959.98px) {
    .hero-panel {
        order: -1
    }
}

.hero-card {
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    border-radius: 26px;
    background: radial-gradient(circle at top, #1b2f2a, #05090a);
    border: 1px solid rgba(201, 166, 107, .4);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .85);
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    color: #f7f5f2
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-3)
}

.hero-card-title {
    font-size: var(--font-size-md);
    font-weight: 600;
    color: #f7f5f2
}

.hero-card .text-muted {
    color: rgba(244, 242, 238, .72)
}

.hero-card-tag {
    font-size: var(--font-size-xs);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: rgba(5, 11, 12, .9);
    border: 1px solid rgba(201, 166, 107, .6);
    letter-spacing: .12em;
    text-transform: uppercase
}

.hero-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-sm);
    color: rgba(244, 242, 238, .86)
}

.hero-card-row span.label {
    color: rgba(244, 242, 238, .64)
}

.hero-card-row span.value {
    font-weight: 500
}

.hero-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2)
}

.hero-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(7, 21, 20, .9);
    border: 1px solid rgba(201, 166, 107, .35);
    font-size: var(--font-size-xs)
}

.hero-card-footer {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-2)
}

.hero-card-note {
    font-size: var(--font-size-xs);
    color: rgba(244, 242, 238, .7)
}

.site-footer {
    border-top: 1px solid rgba(23, 24, 27, .08);
    background: radial-gradient(circle at top left, rgba(201, 166, 107, .12), transparent 55%), var(--color-graphite);
    color: rgba(247, 245, 242, .78);
    padding-block: var(--space-10)
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-8)
}

@media (max-width:959.98px) {
    .footer-top {
        grid-template-columns: 1fr 1fr
    }

    .footer-brand {
        grid-column: 1/-1
    }
}

@media (max-width:639.98px) {
    .footer-top {
        grid-template-columns: 1fr
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-3)
}

.footer-brand p {
    color: rgba(247, 245, 242, .76);
    font-size: var(--font-size-sm)
}

.footer-title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .16em;
    margin-bottom: var(--space-3);
    color: #f7f5f2
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    font-size: var(--font-size-sm)
}

.footer-link {
    color: rgba(247, 245, 242, .75);
    transition: color var(--transition-base), transform var(--transition-fast)
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(2px)
}

.footer-contact {
    font-size: var(--font-size-sm);
    display: flex;
    flex-direction: column;
    gap: var(--space-2)
}

.footer-contact a {
    color: rgba(247, 245, 242, .9)
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    max-width: 320px
}

.footer-newsletter small {
    font-size: var(--font-size-xs);
    color: rgba(247, 245, 242, .7)
}

.footer-newsletter-form {
    display: flex;
    gap: var(--space-2)
}

.footer-newsletter-form .input {
    background: rgba(5, 7, 11, .9);
    border-color: rgba(247, 245, 242, .18);
    color: #f7f5f2
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(247, 245, 242, .14);
    font-size: var(--font-size-xs);
    color: rgba(247, 245, 242, .6)
}

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3)
}

.social-links {
    display: flex;
    align-items: center;
    gap: var(--space-2)
}

.social-pill {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(247, 245, 242, .32);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: rgba(247, 245, 242, .86);
    transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base), transform var(--transition-fast)
}

.social-pill:hover {
    background: #f7f5f2;
    color: #17181b;
    border-color: #f7f5f2;
    transform: translateY(-1px)
}

.focus-visible:focus-visible {
    outline: none;
    box-shadow: var(--shadow-focus)
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-margin: 0 !important
    }
}