:root {
    --bg: #f5efe5;
    --bg-strong: #efe3d1;
    --surface: rgba(255, 248, 239, 0.72);
    --surface-solid: #fff9f2;
    --surface-deep: #18211f;
    --line: rgba(94, 72, 33, 0.16);
    --line-strong: rgba(212, 168, 89, 0.34);
    --text: #1f1a16;
    --muted: rgba(31, 26, 22, 0.68);
    --gold: #c79a4b;
    --gold-soft: #e7c88f;
    --forest: #203632;
    --forest-soft: #31514b;
    --white: #fffdf9;
    --shadow-lg: 0 30px 80px rgba(27, 22, 18, 0.12);
    --shadow-md: 0 18px 45px rgba(27, 22, 18, 0.09);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --shell: min(1180px, calc(100vw - 32px));
}

html[data-theme="dark"] {
    --bg: #0f1615;
    --bg-strong: #17211f;
    --surface: rgba(20, 30, 28, 0.82);
    --surface-solid: #18211f;
    --surface-deep: #edf2ef;
    --line: rgba(231, 200, 143, 0.16);
    --line-strong: rgba(231, 200, 143, 0.3);
    --text: #f4ede4;
    --muted: rgba(244, 237, 228, 0.72);
    --gold: #ddb56a;
    --gold-soft: #f3d8a1;
    --forest: #d5e4de;
    --forest-soft: #a7c0b7;
    --white: #fffdf9;
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 18px 45px rgba(0, 0, 0, 0.28);
    color-scheme: dark;
}

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

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

body.frontend-body {
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(199, 154, 75, 0.2), transparent 28%),
        radial-gradient(circle at 85% 18%, rgba(32, 54, 50, 0.14), transparent 22%),
        linear-gradient(180deg, #fbf6ef 0%, #f2e6d5 100%);
    min-height: 100vh;
}

html[data-theme="dark"] body.frontend-body {
    background:
        radial-gradient(circle at top left, rgba(221, 181, 106, 0.14), transparent 28%),
        radial-gradient(circle at 85% 18%, rgba(115, 149, 138, 0.12), transparent 22%),
        linear-gradient(180deg, #101716 0%, #182220 100%);
}

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

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

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

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

.site-shell {
    position: relative;
    overflow: clip;
}

.site-main {
    position: relative;
    z-index: 1;
}

.shell {
    width: var(--shell);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 3px 0 0;
    transition: padding 0.35s ease, background 0.35s ease;
}

.site-header.is-scrolled {
    padding-top: 0;
}

.header-topbar {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 248, 239, 0.72);
    background: linear-gradient(90deg, rgba(21, 33, 31, 0.94) 0%, rgba(32, 54, 50, 0.9) 52%, rgba(21, 33, 31, 0.94) 100%);
    border-bottom: 1px solid rgba(231, 200, 143, 0.08);
}

.header-topbar__inner {
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.header-topbar__meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.header-topbar__label,
.contact-chip,
.btn-icon,
.footer-title,
.footer-link--icon,
.footer-mini-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ui-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.ui-icon svg {
    width: 100%;
    height: 100%;
}

.ui-icon--tiny {
    width: 14px;
    height: 14px;
}

.header-topbar__label {
    margin: 0;
}

.contact-chip {
    padding: 4px 10px;
    border-radius: 999px;
    color: rgba(255, 248, 239, 0.88);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(231, 200, 143, 0.12);
}

.btn-icon .ui-icon {
    width: 15px;
    height: 15px;
}

.navbar {
    margin-top: 5px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 999px;
    background: rgba(255, 250, 245, 0.62);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 30px rgba(27, 22, 18, 0.08);
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.site-header.is-scrolled .navbar {
    background: rgba(255, 250, 245, 0.8);
    border-color: rgba(199, 154, 75, 0.18);
}

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

.brand-mark strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    line-height: 0.95;
    letter-spacing: 0.03em;
}

.brand-mark small {
    display: block;
    margin-top: 2px;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(31, 26, 22, 0.65);
}

.brand-mark__seal {
    width: 62px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
    flex: 0 0 auto;
    transform: translateY(-6px);
}

.brand-mark__seal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: none;
    filter: contrast(1.08) saturate(1.06);
}

.brand-mark--footer .brand-mark__seal {
    width: 92px;
    height: 58px;
}

.navbar__links,
.navbar__actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 46px;
    height: 46px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(199, 154, 75, 0.22);
    background: rgba(255, 252, 247, 0.58);
    color: var(--text);
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    background: rgba(255, 248, 239, 0.88);
    border-color: rgba(199, 154, 75, 0.42);
}

.theme-toggle__icon {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
}

.theme-toggle--drawer {
    width: 100%;
    justify-content: flex-start;
    margin: 14px 0;
}

html[data-theme="light"] .theme-toggle__icon--moon,
html[data-theme="dark"] .theme-toggle__icon--sun {
    display: none;
}

html[data-theme="dark"] .navbar,
html[data-theme="dark"] .site-header.is-scrolled .navbar,
html[data-theme="dark"] .mobile-drawer__card,
html[data-theme="dark"] .user-menu__dropdown,
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .nav-toggle,
html[data-theme="dark"] .btn-secondary,
html[data-theme="dark"] .btn-ghost {
    background: rgba(18, 28, 26, 0.84);
    border-color: rgba(231, 200, 143, 0.16);
}

html[data-theme="dark"] .user-menu__trigger,
html[data-theme="dark"] .contact-chip {
    background: rgba(15, 23, 22, 0.8);
    border-color: rgba(231, 200, 143, 0.18);
}

html[data-theme="dark"] .btn-secondary:hover,
html[data-theme="dark"] .btn-ghost:hover,
html[data-theme="dark"] .theme-toggle:hover,
html[data-theme="dark"] .user-menu__trigger:hover {
    background: rgba(24, 37, 34, 0.96);
}

.navbar__links {
    justify-content: center;
}

.nav-link {
    position: relative;
    padding: 7px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(31, 26, 22, 0.7);
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 8px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--text);
    transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

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

.btn-primary {
    color: #1d1408;
    background: linear-gradient(135deg, #f0d7aa 0%, #c99945 45%, #f5e0b6 100%);
    box-shadow: 0 12px 24px rgba(173, 121, 43, 0.22);
}

.btn-primary:hover {
    box-shadow: 0 18px 32px rgba(173, 121, 43, 0.28);
}

.btn-secondary,
.btn-ghost {
    border-color: rgba(199, 154, 75, 0.18);
    background: rgba(255, 252, 247, 0.42);
    color: var(--text);
}

.btn-secondary:hover,
.btn-ghost:hover {
    border-color: rgba(199, 154, 75, 0.5);
    background: rgba(255, 248, 239, 0.88);
}

.btn-block {
    width: 100%;
}

/* ── User Menu Dropdown ── */
.user-menu {
    position: relative;
}

.user-menu__trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px 4px 4px;
    border-radius: 999px;
    border: 1px solid rgba(199,154,75,0.22);
    background: rgba(255,252,247,0.6);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    transition: background 0.2s, border-color 0.2s;
}

.user-menu__trigger:hover {
    background: rgba(255,248,235,0.9);
    border-color: rgba(199,154,75,0.4);
}

.user-menu__avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #8b6520);
    display: grid;
    place-items: center;
    color: #fff;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.28);
}

.user-menu__avatar svg {
    width: 15px;
    height: 15px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.user-menu__name {
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-menu__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 210px;
    background: rgba(255,252,247,0.98);
    border: 1px solid rgba(199,154,75,0.2);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(27,22,18,0.14);
    backdrop-filter: blur(16px);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 200;
}

.user-menu__dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-menu__item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    transition: background 0.18s;
}

.user-menu__item svg { width: 16px; height: 16px; color: var(--muted); flex-shrink: 0; }

.user-menu__item:hover {
    background: rgba(199,154,75,0.08);
    color: var(--text);
}

.user-menu__item--logout { color: #dc2626; }
.user-menu__item--logout svg { color: #dc2626; }
.user-menu__item--logout:hover { background: rgba(239,68,68,0.06); }

.user-menu__divider {
    height: 1px;
    background: var(--line);
    margin: 6px 8px;
}

.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(199, 154, 75, 0.3);
    background: rgba(255, 252, 247, 0.7);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-drawer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.mobile-drawer.is-open {
    max-height: 420px;
}

.mobile-drawer__card {
    margin-top: 14px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 249, 241, 0.92);
    border: 1px solid rgba(199, 154, 75, 0.22);
    box-shadow: var(--shadow-md);
}

.mobile-drawer__link {
    display: block;
    padding: 14px 8px;
    border-bottom: 1px solid rgba(31, 26, 22, 0.08);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.mobile-drawer__link:last-of-type {
    margin-bottom: 14px;
}

.page-section {
    position: relative;
    padding: 64px 0;
}

.page-section--tight {
    padding: 48px 0;
}

.page-hero {
    position: relative;
    padding: 92px 0 84px;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(12, 18, 17, 0.9) 0%, rgba(18, 27, 25, 0.78) 34%, rgba(18, 27, 25, 0.48) 64%, rgba(18, 27, 25, 0.36) 100%),
        linear-gradient(180deg, rgba(9, 13, 12, 0.22) 0%, rgba(9, 13, 12, 0.5) 100%),
        radial-gradient(circle at top right, rgba(231, 200, 143, 0.18), transparent 28%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 13, 12, 0.22) 0%, transparent 48%);
    pointer-events: none;
}

.page-hero__media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    filter: saturate(0.92) brightness(0.72);
}

.page-hero__content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 760px;
    padding: 30px 34px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(10, 16, 15, 0.32), rgba(10, 16, 15, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.eyebrow::before {
    content: '';
    width: 42px;
    height: 1px;
    background: currentColor;
}

.display-title,
.section-title,
.card-title,
.hero-stat__value,
.quote-card blockquote {
    font-family: 'Cormorant Garamond', serif;
}

.display-title {
    margin: 18px 0 0;
    font-size: clamp(3.2rem, 7vw, 6.8rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
}

.display-title span,
.section-title span {
    color: var(--gold-soft);
}

.hero-copy,
.section-copy,
.card-copy,
.mini-copy {
    color: black;
    line-height: 1.8;
}

.page-hero .hero-copy {
    margin-top: 24px;
    max-width: 680px;
    color: rgba(255, 248, 239, 0.94);
    font-size: 17px;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.hero-actions,
.cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

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

.hero-grid,
.grid-two,
.grid-three,
.grid-four,
.feature-grid {
    display: grid;
    gap: 24px;
}

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

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

.grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
}

.glass-card,
.lux-card,
.stat-card,
.quote-card,
.info-card,
.form-card,
.media-card {
    position: relative;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.54);
    background: linear-gradient(180deg, rgba(255, 252, 248, 0.9), rgba(255, 248, 239, 0.66));
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-lg);
}

.glass-card,
.form-card,
.quote-card {
    padding: 32px;
}

.lux-card,
.info-card,
.stat-card {
    padding: 28px;
}

.card-kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
}

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

.section-title {
    margin: 12px 0 0;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 0.95;
}

.card-title {
    margin: 16px 0 10px;
    font-size: 2rem;
    line-height: 1;
}

.section-copy {
    max-width: 620px;
    font-size: 15px;
}

.lux-card {
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.lux-card:hover,
.info-card:hover,
.stat-card:hover,
.media-card:hover {
    transform: translateY(-8px);
    border-color: rgba(199, 154, 75, 0.38);
    box-shadow: 0 34px 84px rgba(27, 22, 18, 0.14);
}

.lux-card__media,
.media-cover {
    min-height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.lux-card__media::after,
.media-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 10, 10, 0.02), rgba(8, 10, 10, 0.48));
}

.lux-card__body {
    padding: 26px;
}

.pill-row,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill,
.tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(199, 154, 75, 0.24);
    background: rgba(255, 252, 247, 0.62);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text);
}

.hero-stats,
.stats-strip {
    display: grid;
    gap: 14px;
}

.hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
}

.hero-stat,
.stats-strip__item {
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.hero-stat__value {
    display: block;
    font-size: 2.2rem;
}

.hero-stat__label {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 248, 239, 0.82);
}

.hero-panel {
    padding: 34px;
}

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

.field-grid--single {
    grid-template-columns: 1fr;
}

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

.field span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(31, 26, 22, 0.55);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid rgba(199, 154, 75, 0.18);
    border-radius: 18px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(199, 154, 75, 0.52);
    box-shadow: 0 0 0 4px rgba(199, 154, 75, 0.1);
    transform: translateY(-1px);
}

.surface-section {
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.72), rgba(255, 248, 239, 0.92));
}

.dark-section {
    color: #df9500;
    background:
        radial-gradient(circle at top right, rgba(231, 200, 143, 0.12), transparent 20%),
        linear-gradient(180deg, #18211f 0%, #0f1715 100%);
}

.dark-section .section-copy,
.dark-section .card-copy,
.dark-section .mini-copy {
    color: rgba(255, 248, 239, 0.72);
}

.dark-section .section-title,
.dark-section .card-title {
    color: var(--white);
}

.dark-section .pill,
.dark-section .tag {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 248, 239, 0.86);
    border-color: rgba(255, 255, 255, 0.16);
}

.split-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.media-card {
    overflow: hidden;
    min-height: 250px;
}

.media-card__content {
    position: absolute;
    inset: auto 26px 26px;
    padding: 24px;
    border-radius: 26px;
    color: var(--white);
    background: rgba(20, 28, 26, 0.52);
    backdrop-filter: blur(14px);
}

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

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

.testimonial-person {
    width: 72px;
    height: 72px;
    margin-top: 18px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(199, 154, 75, 0.34);
    box-shadow: 0 14px 28px rgba(27, 22, 18, 0.12);
    background: rgba(255, 255, 255, 0.9);
}

.testimonial-person img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-stack {
    display: grid;
    gap: 14px;
}

.faq-item {
    border: 1px solid rgba(199, 154, 75, 0.18);
    border-radius: 24px;
    background: rgba(255, 251, 246, 0.84);
    box-shadow: 0 14px 34px rgba(27, 22, 18, 0.06);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    color: var(--text);
}

.faq-question span {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

.faq-question strong {
    font-size: 20px;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 24px 22px;
    color: var(--muted);
    line-height: 1.8;
}

.faq-item.is-open .faq-answer {
    max-height: 220px;
}

.faq-item.is-open .faq-question strong {
    transform: rotate(45deg);
}

.site-footer {
    position: relative;
    margin-top: 24px;
    padding: 0 0 34px;
    color: rgba(255, 248, 239, 0.88);
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(231, 200, 143, 0.12), transparent 18%),
        linear-gradient(180deg, #13201d 0%, #0d1513 100%);
    z-index: -1;
}

.footer-cta {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    padding: 42px;
    margin-top: 48px;
    border: 1px solid rgba(231, 200, 143, 0.18);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
}

.footer-cta h2 {
    margin: 12px 0 14px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.3rem, 4vw, 4.1rem);
    line-height: 0.94;
}

.footer-cta p,
.footer-copy {
    color: rgba(255, 248, 239, 0.7);
    line-height: 1.85;
}

.footer-cta__actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
    gap: 28px;
    padding: 54px 0 34px;
}

.brand-mark--footer strong,
.brand-mark--footer small {
    color: var(--white);
}

.footer-title {
    margin: 0 0 16px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.footer-grid a,
.footer-grid span {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 248, 239, 0.76);
}

.footer-grid a:hover {
    color: var(--white);
}

.footer-link {
    position: relative;
    width: fit-content;
}

.footer-link--icon {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    color: rgba(255, 248, 239, 0.76);
}

.footer-grid a.footer-link--icon,
.footer-grid span.footer-link--icon {
    display: flex;
}

.footer-link--static {
    cursor: default;
}

.footer-link--icon .ui-icon {
    width: 16px;
    height: 16px;
    color: var(--gold-soft);
    flex: 0 0 16px;
    align-self: center;
    transform: translateY(1px);
}

.footer-mini-link {
    color: inherit;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: rgba(255, 248, 239, 0.56);
}

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

@media (max-width: 1080px) {
    .navbar {
        grid-template-columns: auto auto;
    }

    .navbar__links {
        display: none;
    }

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

    .footer-grid,
    .footer-cta,
    .feature-grid,
    .split-showcase,
    .hero-grid,
    .grid-two,
    .grid-three,
    .grid-four,
    .field-grid {
        grid-template-columns: 1fr;
    }

    .header-topbar__inner,
    .section-head,
    .footer-bottom {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 780px) {
    .header-topbar {
        display: none;
    }

    .navbar {
        margin-top: 5px;
        padding: 10px 12px;
        border-radius: 24px;
        grid-template-columns: 1fr auto;
    }

    .navbar__actions .btn {
        display: none;
    }

    .brand-mark strong {
        font-size: 18px;
    }

    .brand-mark small {
        letter-spacing: 0.2em;
        font-size: 10px;
    }

    .brand-mark__seal {
        width: 54px;
        height: 34px;
        transform: translateY(-5px);
    }

    .page-section,
    .page-hero {
        padding: 48px 0;
    }

    .page-hero__content {
        padding: 24px 22px;
        border-radius: 24px;
    }

    .glass-card,
    .form-card,
    .quote-card,
    .lux-card,
    .info-card,
    .stat-card {
        padding: 22px;
    }

    .display-title {
        font-size: 3.3rem;
    }

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