/* ============================================================
   Yoga by Ananda — Sacred Nature Edition v12
   Fonts: Marcellus · Jost · Pinyon Script
   Palette: deep forest · antique gold · warm linen · earth
   ============================================================ */

:root {
    --c-sage: #2d5a47;
    --c-sage-dark: #1e3d30;
    --c-sage-light: #4a7c64;
    --c-gold: #c9a84c;
    --c-gold-dark: #a88a3a;
    --c-gold-light: #e8d5a0;
    --c-copper: #b86b3a;
    --c-copper-dark: #9a5530;
    --c-copper-light: #d4956a;
    --c-cream: #faf6ef;
    --c-cream-dark: #f0e8d8;
    --c-linen: #e8dfd0;
    --c-charcoal: #1a221e;
    --c-dark: #243028;
    --c-text: #4a554e;
    --c-text-dark: #2e3832;
    --c-white: #ffffff;
    --c-border: #d9cfc0;
    --font-serif: 'Marcellus', Georgia, serif;
    --font-sans: 'Jost', 'Segoe UI', sans-serif;
    --font-script: 'Pinyon Script', cursive;
    --font-accent: 'Jost', sans-serif;
    --page-accent: var(--c-sage);
    --header-h: 96px;
    --topbar-h: 42px;
    --ease: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --container: 1280px;
    --shadow-soft: 0 8px 40px rgba(26, 38, 30, 0.08);
    --shadow-lux: 0 24px 80px rgba(26, 38, 30, 0.14);
    --shadow-gold: 0 12px 40px rgba(201, 168, 76, 0.25);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--c-text);
    background: var(--c-white);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--ease), opacity var(--ease), border-color var(--ease), background var(--ease);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
}

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

/* ---- Scroll reveal ---- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--ease-out), transform var(--ease-out);
}

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

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--c-charcoal);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-transform: none;
}

.sc-title {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--c-gold-dark);
    margin-bottom: 24px;
}

.sc-title::before {
    content: '✦';
    font-size: 10px;
    color: var(--c-gold);
    width: auto;
    height: auto;
    background: none;
}

.sc-title-light {
    color: var(--c-gold-light);
}

.sc-title-light::before {
    color: var(--c-gold-light);
}

.sc-heading {
    font-size: clamp(2.4rem, 5.2vw, 4rem);
    font-weight: 400;
    margin-bottom: 28px;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.sc-heading em {
    font-family: var(--font-script);
    font-style: normal;
    font-size: 1.15em;
    color: var(--c-sage);
    letter-spacing: 0;
    display: inline;
}

.sc-heading-sm {
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 400;
}

.sc-desc {
    font-size: 18px;
    font-weight: 300;
    color: var(--c-text);
    max-width: 580px;
    line-height: 1.9;
}

.sc-desc.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 42px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-lux {
    background: var(--c-sage-dark);
    color: var(--c-white);
    border-color: var(--c-sage-dark);
}

.btn-lux:hover {
    background: var(--c-gold-dark);
    border-color: var(--c-gold-dark);
    box-shadow: var(--shadow-gold);
}

.btn-gold {
    background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-dark) 100%);
    color: var(--c-charcoal);
    border-color: var(--c-gold);
    font-weight: 600;
    margin-top: 28px;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--c-gold-light) 0%, var(--c-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(201, 168, 76, 0.35);
}

.btn-gold-outline {
    background: transparent;
    color: var(--c-white);
    border-color: var(--c-gold-light);
    font-weight: 600;
    margin-top: 28px;
}

.btn-gold-outline:hover {
    background: var(--c-gold);
    color: var(--c-charcoal);
    border-color: var(--c-gold);
}

.btn-lux-outline {
    background: transparent;
    color: var(--c-charcoal);
    border-color: var(--c-charcoal);
}

.btn-lux-outline:hover {
    background: var(--c-charcoal);
    color: var(--c-white);
}

.btn-dark {
    background: var(--c-charcoal);
    color: var(--c-white);
    border-color: var(--c-charcoal);
}

.btn-dark:hover {
    background: var(--c-copper-dark);
    border-color: var(--c-copper-dark);
}

.btn-white {
    background: var(--c-white);
    color: var(--c-charcoal);
    border-color: var(--c-white);
}

.btn-white:hover {
    background: transparent;
    color: var(--c-white);
}

.btn-outline {
    background: transparent;
    color: var(--c-charcoal);
    border-color: var(--c-charcoal);
}

.btn-outline:hover {
    background: var(--c-charcoal);
    color: var(--c-white);
}

.btn-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-charcoal);
    position: relative;
    padding-bottom: 6px;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--c-copper);
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform var(--ease);
}

.btn-link:hover {
    color: var(--c-copper-dark);
}

.btn-link:hover::after {
    transform: scaleX(1);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--c-charcoal);
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 0.06em;
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    z-index: 1001;
    position: relative;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.7);
    margin-right: 28px;
    transition: color var(--ease);
}

.top-bar a:hover {
    color: var(--c-copper-light);
}

.top-bar-social a {
    margin-right: 0;
    margin-left: 20px;
}

body.page-home .top-bar,
body.has-page-hero .top-bar {
    display: none;
}

/* ============================================================
   HEADER — centered logo grid (1fr auto 1fr)
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--ease);
}

/* Top bar removed from layout — header always at top */

.header-wrap {
    transition: all var(--ease);
}

body.page-home .site-header:not(.scrolled) .header-wrap,
body.has-page-hero .site-header:not(.scrolled) .header-wrap {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
}

body.page-home .site-header:not(.scrolled) .logo-text,
body.page-home .site-header:not(.scrolled) .nav-list > li > a,
body.page-home .site-header:not(.scrolled) .header-enroll,
body.has-page-hero .site-header:not(.scrolled) .logo-text,
body.has-page-hero .site-header:not(.scrolled) .nav-list > li > a,
body.has-page-hero .site-header:not(.scrolled) .header-enroll {
    color: var(--c-white);
}

body.page-home .site-header:not(.scrolled) .logo-mark,
body.has-page-hero .site-header:not(.scrolled) .logo-mark {
    color: var(--c-gold-light);
    border-color: var(--c-gold-light);
}

body.page-home .site-header:not(.scrolled) .mobile-toggle span,
body.has-page-hero .site-header:not(.scrolled) .mobile-toggle span {
    background: var(--c-white);
}

body:not(.page-home):not(.has-page-hero) .site-header .header-wrap {
    background: var(--c-white);
    box-shadow: 0 1px 0 var(--c-border);
}

.site-header.scrolled .header-wrap {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06) !important;
}

.site-header.scrolled .logo-text,
.site-header.scrolled .nav-list > li > a,
.site-header.scrolled .header-enroll {
    color: var(--c-charcoal) !important;
}

.site-header.scrolled .logo-mark {
    color: var(--c-gold-dark) !important;
    border-color: var(--c-gold) !important;
}

.site-header.scrolled .mobile-toggle span {
    background: var(--c-charcoal) !important;
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: var(--header-h);
    gap: 24px;
}

.nav-left {
    justify-self: start;
}

.logo-center {
    justify-self: center;
}

.header-right {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 28px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 1002;
}

.logo-mark {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--c-gold);
    letter-spacing: 0.06em;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--c-gold);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all var(--ease);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--c-charcoal);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-right-list {
    gap: 28px;
}

.nav-list > li > a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-text-dark);
    padding: 8px 0;
    position: relative;
}

.nav-list > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--c-copper);
    transition: width var(--ease);
}

.nav-list > li > a:hover::after,
.nav-list > li.active > a::after,
.nav-list > li > a.active::after {
    width: 100%;
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: -20px;
    min-width: 220px;
    background: var(--c-white);
    padding: 16px 0;
    box-shadow: var(--shadow-lux);
    border-top: 2px solid var(--c-copper);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--ease);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.02em;
    color: var(--c-text);
}

.dropdown li a:hover {
    color: var(--c-copper-dark);
    background: var(--c-cream);
}

.header-enroll {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-charcoal);
    padding: 14px 28px;
    border: 1px solid currentColor;
    transition: all var(--ease);
    white-space: nowrap;
}

.header-enroll:hover {
    background: var(--c-gold);
    border-color: var(--c-gold);
    color: var(--c-charcoal);
    box-shadow: var(--shadow-gold);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--c-charcoal);
    transition: all var(--ease);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-nav-header,
.mobile-nav-footer {
    display: none;
}

.nav-mobile-extra {
    display: none;
}

/* ============================================================
   HERO — full viewport, ken burns, side label, counter
   ============================================================ */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    inset: -5%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1.08);
    animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        125deg,
        rgba(26, 34, 30, 0.72) 0%,
        rgba(45, 90, 71, 0.45) 40%,
        rgba(26, 34, 30, 0.15) 100%
    );
    z-index: 2;
}

.hero-slide-content {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    padding: 0 80px 80px 100px;
}

.hero-slide-text {
    color: var(--c-white);
    max-width: 680px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease 0.4s;
}

.hero-slide.active .hero-slide-text {
    opacity: 1;
    transform: translateY(0);
}

.hero-script {
    display: block;
    font-family: var(--font-script);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    color: var(--c-gold-light);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-slide-text .tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 20px;
}

.hero-slide-text .tag::before {
    content: '';
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--c-gold), transparent);
}

.hero-slide-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 400;
    color: var(--c-white);
    line-height: 1.02;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hero-slide-text h2 em {
    font-family: var(--font-script);
    font-style: normal;
    font-size: 0.85em;
    color: var(--c-gold-light);
    text-transform: none;
    letter-spacing: 0;
    display: block;
    margin-top: -0.1em;
}

.hero-lead {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    max-width: 480px;
    margin-top: 20px;
}

.hero-badge {
    position: absolute;
    top: 120px;
    right: 60px;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.hero-badge-icon {
    color: var(--c-gold);
    font-size: 14px;
}

.hero-side-label {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    z-index: 5;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
}

.hero-side-label span {
    color: var(--c-white);
    margin-left: 16px;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.hero-scroll-hint::after {
    content: '';
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--c-copper-light), transparent);
    margin: 16px auto 0;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

.hero-counter {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 5;
    color: var(--c-white);
    font-family: var(--font-serif);
    font-size: 18px;
    letter-spacing: 0.1em;
}

.hero-counter .sep {
    color: rgba(255, 255, 255, 0.35);
    margin: 0 4px;
}

.hero-counter #hero-current {
    color: var(--c-gold);
}

.hero-nav {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-nav button {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--c-white);
    font-size: 18px;
    cursor: pointer;
    transition: all var(--ease);
}

.hero-nav button:hover {
    background: var(--c-copper);
    border-color: var(--c-copper);
}

/* ============================================================
   MARQUEE — infinite scroll, uppercase separated words
   ============================================================ */
.marquee-wrap {
    overflow: hidden;
    background: linear-gradient(90deg, var(--c-sage-dark) 0%, var(--c-sage) 50%, var(--c-sage-dark) 100%);
    padding: 26px 0;
    border-top: 2px solid var(--c-gold);
    position: relative;
}

.marquee-wrap::before,
.marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--c-charcoal), transparent);
}

.marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--c-charcoal), transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: marqueeScroll 35s linear infinite;
}

.marquee-track span {
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    padding: 0 36px;
    position: relative;
}

.marquee-track span::after {
    content: '✦';
    position: absolute;
    right: -4px;
    color: var(--c-gold);
    font-weight: 400;
    letter-spacing: 0;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   WELCOME STRIP — first-visit impact below hero
   ============================================================ */
.welcome-strip {
    padding: 100px 0;
    background: var(--c-cream);
    background-image:
        radial-gradient(ellipse at 10% 50%, rgba(201, 168, 76, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 50%, rgba(45, 90, 71, 0.08) 0%, transparent 55%);
    text-align: center;
    border-bottom: 1px solid var(--c-border);
}

.welcome-strip-inner {
    max-width: 820px;
    margin: 0 auto;
}

.welcome-strip-badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--c-sage-dark);
    color: var(--c-gold-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 28px;
    border-radius: 50px;
}

.welcome-strip-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    color: var(--c-charcoal);
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: 0.04em;
}

.welcome-strip-title em {
    font-family: var(--font-script);
    font-style: normal;
    font-size: 1.2em;
    color: var(--c-sage);
}

.welcome-strip-inner > p {
    font-size: 17px;
    font-weight: 300;
    color: var(--c-text);
    line-height: 1.85;
    margin-bottom: 36px;
}

.welcome-strip-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.welcome-strip-actions .btn {
    margin-top: 0;
}

.btn-gold-outline-dark {
    background: transparent;
    color: var(--c-sage-dark);
    border-color: var(--c-sage-dark);
    font-weight: 600;
}

.btn-gold-outline-dark:hover {
    background: var(--c-sage-dark);
    color: var(--c-white);
    border-color: var(--c-sage-dark);
}

/* ============================================================
   SECTIONS
   ============================================================ */
section {
    padding: 120px 0;
}

.section-luxury {
    padding: 120px 0;
}

.bg-soft {
    background: var(--c-cream);
}

.bg-cream {
    background: var(--c-cream);
    background-image:
        radial-gradient(circle at 20% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45, 90, 71, 0.05) 0%, transparent 50%);
}

.bg-warm {
    background: var(--c-cream-dark);
}

.bg-linen {
    background: var(--c-cream-dark);
}

.section-head-center {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 72px;
}

.section-head-center .sc-title {
    justify-content: center;
}

.section-head-center .sc-title::before {
    display: none;
}

.section-head-center .sc-title::after {
    content: '✦';
    width: auto;
    height: auto;
    background: none;
    color: var(--c-gold);
    font-size: 10px;
}

/* ============================================================
   WHAT WE DO — 2 column split, inline num + title
   ============================================================ */
.what-we-do {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start;
}

.what-we-do-left {
    padding-top: 24px;
}

.what-we-do-left .author {
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--c-copper-light);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.what-we-do-left .author h6 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}

.what-we-do-left .author span {
    font-size: 11px;
    color: var(--c-text);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.what-we-do-items {
    display: flex;
    flex-direction: column;
}

/* Homepage variant — inline num + title */
.service-item:has(.service-item-head) {
    display: block;
    padding: 36px 0;
    border-bottom: 1px solid var(--c-border);
    transition: padding-left var(--ease);
}

.service-item:has(.service-item-head):first-child {
    border-top: 1px solid var(--c-border);
}

.service-item:has(.service-item-head):hover {
    padding-left: 12px;
}

.service-item-head {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 14px;
}

.service-item-head .service-num {
    font-family: var(--font-script);
    font-size: 52px;
    font-weight: 400;
    color: var(--c-gold);
    line-height: 1;
    opacity: 1;
    flex-shrink: 0;
}

.service-item-head h4 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    margin: 0;
}

.service-item:has(.service-item-head) p {
    font-size: 15px;
    font-weight: 300;
    color: var(--c-text);
    margin-bottom: 16px;
    line-height: 1.8;
    padding-left: 62px;
}

.service-item:has(.service-item-head) .btn-link {
    margin-left: 62px;
}

/* Inner page variant — num column + content */
.service-item:not(:has(.service-item-head)) {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 28px;
    padding: 40px 0;
    border-bottom: 1px solid var(--c-border);
    align-items: start;
    transition: padding-left var(--ease);
}

.service-item:not(:has(.service-item-head)):first-child {
    border-top: 1px solid var(--c-border);
}

.service-item:not(:has(.service-item-head)):hover {
    padding-left: 16px;
}

.service-item:not(:has(.service-item-head)) .service-num {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 300;
    color: var(--c-copper);
    line-height: 1;
    opacity: 0.7;
}

.service-item:not(:has(.service-item-head)) h4 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 10px;
}

.service-item:not(:has(.service-item-head)) p {
    font-size: 15px;
    font-weight: 300;
    color: var(--c-text);
    line-height: 1.8;
}

/* ============================================================
   ABOUT LUXURY — full width image, overlapping card offset right
   ============================================================ */
.about-luxury {
    position: relative;
    padding: 0 0 120px;
    overflow: hidden;
}

.about-luxury-image {
    width: 100%;
    height: clamp(420px, 55vw, 640px);
    overflow: hidden;
    position: relative;
}

.about-luxury-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease-out);
}

.about-luxury:hover .about-luxury-image img {
    transform: scale(1.03);
}

.about-luxury-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.08), transparent 60%);
    pointer-events: none;
}

.about-luxury .container {
    position: relative;
    margin-top: -180px;
    z-index: 2;
}

.about-luxury-card {
    background: var(--c-white);
    padding: 72px 64px;
    max-width: 540px;
    margin-left: auto;
    box-shadow: var(--shadow-lux);
    border: 1px solid var(--c-border);
    border-top: 4px solid var(--c-gold);
    position: relative;
}

.about-luxury-card::before {
    content: '✦';
    position: absolute;
    top: 28px;
    right: 32px;
    font-size: 24px;
    color: var(--c-gold);
    opacity: 0.5;
}

.about-luxury-card p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--c-text);
}

.about-luxury-card .btn {
    margin-top: 12px;
}

/* ============================================================
   ABOUT BLOCK (inner pages)
   ============================================================ */
.about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.about-block.reverse {
    direction: rtl;
}

.about-block.reverse > * {
    direction: ltr;
}

.about-block-image {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.about-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 1.2s var(--ease-out);
}

.about-block:hover .about-block-image img {
    transform: scale(1.04);
}

.about-block-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.15), transparent);
    z-index: 1;
}

.about-block-content {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--c-cream);
}

.about-block-content p {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
}

.about-block-content .btn {
    margin-top: 28px;
    align-self: flex-start;
}

/* ============================================================
   TESTIMONIAL CAROUSEL — image left, text right, dots nav
   ============================================================ */
.testimonials-header {
    text-align: center;
    margin-bottom: 72px;
}

.testimonials-header .sc-title {
    justify-content: center;
}

.testimonials-header .sc-title::before {
    display: none;
}

.testimonials-header .sc-title::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--c-copper);
}

.testimonial-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonial-track {
    position: relative;
    min-height: 380px;
}

.testimonial-lux {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    overflow: hidden;
    animation: fadeUp 0.7s var(--ease-out);
}

.testimonial-lux.active {
    display: grid;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-lux-img {
    position: relative;
    min-height: 380px;
    overflow: hidden;
}

.testimonial-lux-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.8s var(--ease-out);
}

.testimonial-lux:hover .testimonial-lux-img img {
    transform: scale(1.04);
}

.testimonial-lux-body {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--c-white);
}

.testimonial-lux-body p {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    font-style: italic;
    font-weight: 400;
    color: var(--c-charcoal);
    line-height: 1.6;
    margin-bottom: 32px;
}

.testimonial-lux-body h5 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 6px;
}

.testimonial-lux-body span {
    font-size: 11px;
    color: var(--c-copper);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.testimonial-lux-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.tlux-prev,
.tlux-next {
    width: 48px;
    height: 48px;
    border: 1px solid var(--c-border);
    background: var(--c-white);
    color: var(--c-charcoal);
    font-size: 18px;
    cursor: pointer;
    transition: all var(--ease);
}

.tlux-prev:hover,
.tlux-next:hover {
    background: var(--c-charcoal);
    color: var(--c-white);
    border-color: var(--c-charcoal);
}

.tlux-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tlux-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--c-copper);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all var(--ease);
}

.tlux-dots button.active {
    background: var(--c-copper);
    transform: scale(1.2);
}

/* Inner page testimonial slider */
.testimonial-slider-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slide-item {
    display: none;
    text-align: center;
    padding: 20px 48px;
}

.testimonial-slide-item.active {
    display: block;
    animation: fadeUp 0.7s var(--ease-out);
}

.testimonial-slide-item blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-style: italic;
    font-weight: 400;
    color: var(--c-charcoal);
    line-height: 1.5;
    margin-bottom: 36px;
}

.testimonial-slide-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.testimonial-slide-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-copper-light);
}

.testimonial-arrows {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 44px;
}

.testimonial-arrows button {
    width: 52px;
    height: 52px;
    border: 1px solid var(--c-border);
    background: var(--c-white);
    cursor: pointer;
    font-size: 20px;
    transition: all var(--ease);
}

.testimonial-arrows button:hover {
    background: var(--c-charcoal);
    color: var(--c-white);
    border-color: var(--c-charcoal);
}

/* ============================================================
   PRICING — minimal Ancora style, price-wrap, featured dark
   ============================================================ */
.pricing-header {
    text-align: center;
    margin-bottom: 72px;
}

.pricing-header .sc-title {
    justify-content: center;
}

.pricing-header .sc-title::before {
    display: none;
}

.pricing-header .sc-title::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--c-copper);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.pricing-card {
    text-align: center;
    padding: 56px 40px;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    transition: all var(--ease);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lux);
    border-color: transparent;
}

.pricing-card.featured {
    background: var(--c-charcoal);
    color: var(--c-white);
    border-color: var(--c-charcoal);
}

.pricing-card.featured:hover {
    transform: translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-copper-light);
    padding: 6px 14px;
    border: 1px solid rgba(193, 127, 89, 0.4);
}

.pricing-card h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 32px;
}

.pricing-card.featured h3 {
    color: var(--c-white);
}

.price-wrap {
    margin-bottom: 24px;
}

.price-wrap .price {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 4vw, 3.4rem);
    font-weight: 400;
    color: var(--c-charcoal);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.pricing-card.featured .price-wrap .price {
    color: var(--c-white);
}

.price-wrap .price-period {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-copper);
}

.pricing-card.featured .price-wrap .price-period {
    color: var(--c-copper-light);
}

.pricing-card .price {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 400;
    color: var(--c-charcoal);
    line-height: 1;
    margin-bottom: 6px;
}

.pricing-card.featured .price {
    color: var(--c-white);
}

.pricing-card .price-sub {
    font-size: 11px;
    color: var(--c-copper-dark);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 28px;
}

.pricing-card.featured .price-sub {
    color: rgba(255, 255, 255, 0.55);
}

.price-desc {
    font-size: 15px;
    font-weight: 300;
    color: var(--c-text);
    margin-bottom: 36px;
    min-height: 52px;
    line-height: 1.75;
    flex-grow: 1;
}

.pricing-card.featured .price-desc {
    color: rgba(255, 255, 255, 0.65);
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

.pricing-card.featured .btn-lux {
    background: var(--c-copper);
    border-color: var(--c-copper);
}

.pricing-card.featured .btn-lux:hover {
    background: var(--c-copper-dark);
    border-color: var(--c-copper-dark);
}

.pricing-card.has-image {
    padding: 0;
    overflow: hidden;
    text-align: left;
}

.pricing-card.has-image:hover {
    transform: translateY(-8px);
}

.pricing-card-img-wrap {
    height: 240px;
    overflow: hidden;
}

.pricing-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.pricing-card.has-image:hover .pricing-card-img-wrap img {
    transform: scale(1.06);
}

.pricing-card.has-image .pricing-card-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pricing-features {
    margin: 24px 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--c-border);
    font-size: 14px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--c-copper);
    flex-shrink: 0;
}

/* ============================================================
   STATS LUX — bordered columns, large serif numbers
   ============================================================ */
.stats-lux {
    padding: 100px 0;
    background: var(--c-white);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

.stats-lux .stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stats-lux .stat-box {
    text-align: center;
    padding: 48px 24px;
    border-left: 1px solid var(--c-border);
}

.stats-lux .stat-box:first-child {
    border-left: none;
}

.stats-lux .stat-box h3 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--c-charcoal);
    margin-bottom: 10px;
    line-height: 1;
}

.stats-lux .stat-box h3 span {
    color: var(--c-copper);
}

.stats-lux .stat-box p {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-sage);
    font-weight: 500;
}

/* Inner page stats bar (dark) */
.stats-bar {
    padding: 90px 0;
    background: var(--c-charcoal);
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-copper), transparent);
}

.stats-bar .stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stats-bar .stat-box h3 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--c-white);
    margin-bottom: 10px;
    line-height: 1;
}

.stats-bar .stat-box h3 span {
    color: var(--c-copper-light);
}

.stats-bar .stat-box p {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   BLOG CAROUSEL — horizontal scroll snap
   ============================================================ */
.blog-header {
    text-align: center;
    margin-bottom: 72px;
}

.blog-header .sc-title {
    justify-content: center;
}

.blog-header .sc-title::before {
    display: none;
}

.blog-header .sc-title::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--c-copper);
}

.blog-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 40px 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.blog-carousel::-webkit-scrollbar {
    display: none;
}

.blog-track {
    display: flex;
    gap: 28px;
    width: max-content;
    padding-right: 40px;
}

.blog-lux {
    flex: 0 0 340px;
    scroll-snap-align: start;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    transition: transform var(--ease), box-shadow var(--ease);
}

.blog-lux:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.blog-lux-img {
    display: block;
    height: 260px;
    overflow: hidden;
}

.blog-lux-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.blog-lux:hover .blog-lux-img img {
    transform: scale(1.06);
}

.blog-lux-body {
    padding: 28px 28px 32px;
}

.blog-lux-cat {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-copper);
    margin-bottom: 12px;
    display: block;
}

.blog-lux-body h4 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 12px;
}

.blog-lux-body h4 a:hover {
    color: var(--c-copper-dark);
}

.blog-lux-meta {
    font-size: 12px;
    color: var(--c-text);
    letter-spacing: 0.04em;
}

/* Blog grid (inner pages) */
.blog-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.blog-item {
    position: relative;
}

.blog-item-img {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.blog-item-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.3), transparent);
    opacity: 0;
    transition: opacity var(--ease);
}

.blog-item:hover .blog-item-img::after {
    opacity: 1;
}

.blog-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.blog-item:hover .blog-item-img img {
    transform: scale(1.08);
}

.blog-item-body {
    padding: 28px 0 0;
}

.blog-item-cat {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-copper);
    margin-bottom: 12px;
}

.blog-item-body h4 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 12px;
}

.blog-item-body h4 a:hover {
    color: var(--c-copper-dark);
}

.blog-item-meta {
    font-size: 12px;
    color: var(--c-text);
    letter-spacing: 0.04em;
}

.blog-featured .blog-item-img {
    height: 400px;
}

/* ============================================================
   PAGE HERO / TITLE BAR (inner pages)
   ============================================================ */
.page-hero {
    position: relative;
    height: 75vh;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.68));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--c-white);
    padding: 0 40px;
    max-width: 860px;
}

.page-hero-content h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 400;
    color: var(--c-white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.page-hero-content p {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero-social {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 3;
    display: flex;
    gap: 24px;
}

.page-hero-social a {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.page-hero-social a:hover {
    color: var(--c-copper-light);
}

.page-title-bar {
    padding: 160px 0 80px;
    background: var(--c-cream);
    text-align: center;
}

.page-title-bar h1 {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 400;
    margin-bottom: 16px;
}

.breadcrumb {
    font-size: 13px;
    letter-spacing: 0.06em;
    color: var(--c-text);
}

.breadcrumb a:hover {
    color: var(--c-copper);
}

/* ============================================================
   PARTNERS / FEATURES / SERVICES / TEAM
   ============================================================ */
.partners-grid,
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.partner-card,
.feature-box {
    padding: 44px 32px;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    text-align: center;
    transition: all var(--ease);
}

.partner-card:hover,
.feature-box:hover {
    border-color: var(--c-copper-light);
    box-shadow: var(--shadow-soft);
    transform: translateY(-6px);
}

.feature-num {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 300;
    color: var(--c-copper);
    margin-bottom: 20px;
    opacity: 0.8;
}

.partner-card h4,
.feature-box h4 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
}

.partner-card p,
.feature-box p {
    font-size: 14px;
    font-weight: 300;
    color: var(--c-text);
    margin-bottom: 20px;
    line-height: 1.75;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.service-box {
    position: relative;
    overflow: hidden;
}

.service-box-img {
    height: 340px;
    overflow: hidden;
    position: relative;
}

.service-box-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.5), transparent 50%);
    z-index: 1;
}

.service-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.service-box:hover .service-box-img img {
    transform: scale(1.08);
}

.service-box-body {
    padding: 28px 0 0;
}

.service-box-body h4 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.service-box-body p {
    font-size: 14px;
    font-weight: 300;
    color: var(--c-text);
    margin-bottom: 14px;
}

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

.team-member {
    text-align: center;
}

.team-member-img {
    overflow: hidden;
    margin-bottom: 28px;
    aspect-ratio: 3 / 4;
    position: relative;
}

.team-member-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.25), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity var(--ease);
}

.team-member:hover .team-member-img::after {
    opacity: 1;
}

.team-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.team-member:hover .team-member-img img {
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 8px;
}

.team-member .role {
    font-size: 11px;
    color: var(--c-copper);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 14px;
}

.team-member p {
    font-size: 15px;
    font-weight: 300;
    color: var(--c-text);
}

/* ============================================================
   AWARDS TABLE
   ============================================================ */
.awards-table {
    width: 100%;
    border-collapse: collapse;
}

.awards-table th,
.awards-table td {
    padding: 24px 20px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
    font-size: 14px;
    font-weight: 300;
}

.awards-table th {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-copper-dark);
}

.awards-table td:first-child {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--c-charcoal);
}

.awards-num {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 300;
    color: var(--c-copper);
}

/* ============================================================
   CONTACT / FAQ / CTA
   ============================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
}

.contact-detail-icon {
    width: 52px;
    height: 52px;
    background: var(--c-cream);
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--c-copper);
    flex-shrink: 0;
}

.contact-detail h5 {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 6px;
    color: var(--c-charcoal);
}

.contact-detail p,
.contact-detail a {
    font-size: 15px;
    font-weight: 300;
    color: var(--c-text);
}

.contact-detail a:hover {
    color: var(--c-copper);
}

.contact-form-wrap {
    background: var(--c-cream);
    padding: 56px;
    border: 1px solid var(--c-border);
}

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

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--c-charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--c-border);
    background: var(--c-white);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    transition: border-color var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--c-copper);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.faq-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--c-border);
}

.faq-question {
    width: 100%;
    padding: 28px 0;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--c-charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color var(--ease);
}

.faq-question:hover {
    color: var(--c-copper-dark);
}

.faq-question .icon {
    font-size: 28px;
    font-weight: 300;
    color: var(--c-copper);
    transition: transform var(--ease);
    flex-shrink: 0;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}

.faq-answer-inner {
    padding: 0 0 28px;
    font-size: 16px;
    font-weight: 300;
    color: var(--c-text);
    line-height: 1.9;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.cta-banner {
    position: relative;
    padding: 140px 0;
    text-align: center;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.62);
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    color: var(--c-white);
    max-width: 760px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-banner-content h2 {
    color: var(--c-white);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 400;
    margin-bottom: 36px;
}

/* ============================================================
   PRE-FOOTER CTA & DARK FOOTER
   ============================================================ */
.pre-footer-cta {
    position: relative;
    padding: 140px 0;
    text-align: center;
    overflow: hidden;
}

.pre-footer-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 0.3s;
}

.pre-footer-cta:hover .pre-footer-bg {
    transform: scale(1.03);
}

.pre-footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.65);
}

.pre-footer-inner {
    position: relative;
    z-index: 2;
    color: var(--c-white);
}

.pre-footer-inner h2 {
    color: var(--c-white);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 400;
    max-width: 760px;
    margin: 0 auto 40px;
    line-height: 1.15;
}

.site-footer {
    background: var(--c-charcoal);
    color: rgba(255, 255, 255, 0.55);
}

.footer-top {
    padding: 90px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.2fr;
    gap: 60px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--c-white);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.footer-logo .logo-mark {
    font-family: var(--font-accent);
    font-size: 18px;
    width: 42px;
    height: 42px;
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--c-copper-light);
}

.footer-col h5 {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-copper-light);
    margin-bottom: 24px;
}

.footer-office p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 20px;
}

.footer-email a,
.footer-phone a {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
}

.footer-email a:hover,
.footer-phone a:hover {
    color: var(--c-copper-light);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
}

.footer-col ul li a:hover {
    color: var(--c-white);
}

.footer-news-text {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.7;
}

.newsletter-field {
    display: flex;
    gap: 0;
    margin-bottom: 14px;
}

.newsletter-field input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--c-white);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
}

.newsletter-field input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-field input:focus {
    outline: none;
    border-color: var(--c-copper);
}

.newsletter-field .btn {
    padding: 16px 28px;
    flex-shrink: 0;
}

.newsletter-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 28px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.04em;
}

.footer-social {
    display: flex;
    gap: 28px;
}

.footer-social a {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.footer-social a:hover {
    color: var(--c-copper-light);
}

.sticky-contact {
    display: none;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

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

/* ============================================================
   RESPONSIVE — tablet
   ============================================================ */
@media (max-width: 1100px) {
    .what-we-do {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .partners-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-block-content {
        padding: 72px 48px;
    }

    .about-luxury-card {
        max-width: 480px;
        padding: 56px 48px;
    }

    .testimonial-lux {
        grid-template-columns: 1fr;
    }

    .testimonial-lux-img {
        min-height: 300px;
    }

    .testimonial-lux-body {
        padding: 40px 36px;
    }

    .stats-lux .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-lux .stat-box:nth-child(3) {
        border-left: none;
    }

    .stats-lux .stat-box:nth-child(odd) {
        border-left: none;
    }

    .stats-lux .stat-box:nth-child(even) {
        border-left: 1px solid var(--c-border);
    }

    .stats-lux .stat-box:nth-child(n+3) {
        border-top: 1px solid var(--c-border);
    }

    .header-inner {
        gap: 16px;
    }

    .nav-list {
        gap: 24px;
    }

    .nav-right-list {
        display: none;
    }
}

/* ============================================================
   RESPONSIVE — mobile
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --header-h: 72px;
    }

    section,
    .section-luxury {
        padding: 80px 0;
    }

    .container {
        padding: 0 24px;
    }

    .top-bar {
        display: none;
    }

    .header-inner {
        grid-template-columns: 1fr auto 1fr;
    }

    .nav-left {
        display: contents;
    }

    .nav-left .nav-list {
        display: none;
    }

    .logo-center {
        grid-column: 2;
    }

    .header-right {
        grid-column: 3;
        gap: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-enroll {
        display: none;
    }

    .main-nav {
        position: fixed;
        inset: 0;
        background: var(--c-white);
        z-index: 1001;
        transform: translateX(100%);
        transition: transform var(--ease);
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .main-nav.open {
        transform: translateX(0);
    }

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

    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 24px;
        border-bottom: 1px solid var(--c-border);
    }

    .nav-mobile-extra {
        display: block;
    }

    .nav-right-list {
        display: none;
    }

    .mobile-close {
        background: none;
        border: none;
        font-size: 32px;
        cursor: pointer;
        color: var(--c-charcoal);
        line-height: 1;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 24px;
        flex: 1;
    }

    .nav-list > li {
        border-bottom: 1px solid var(--c-border);
    }

    .nav-list > li > a {
        display: block;
        padding: 18px 0;
        font-size: 12px;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        padding: 0 0 12px 20px;
        display: none;
        background: transparent;
    }

    .has-dropdown.open .dropdown {
        display: block;
    }

    .mobile-nav-footer {
        display: block;
        padding: 28px 24px;
        border-top: 1px solid var(--c-border);
        background: var(--c-cream);
    }

    .mobile-nav-footer a {
        display: block;
        font-size: 14px;
        margin-bottom: 10px;
        color: var(--c-text);
    }

    .mobile-social {
        display: flex;
        gap: 20px;
        margin-top: 20px;
    }

    .mobile-social a {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    /* Hero mobile */
    .hero-slider {
        min-height: 560px;
    }

    .hero-slide-content {
        padding: 0 24px 100px;
        align-items: flex-end;
    }

    .hero-badge {
        display: none;
    }

    .hero-script {
        font-size: 2.2rem;
    }

    .hero-lead {
        font-size: 16px;
    }

    .welcome-strip {
        padding: 64px 0;
    }

    .welcome-strip-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-side-label,
    .hero-nav {
        display: none;
    }

    .hero-slide-text h2 {
        font-size: 2.6rem;
    }

    .hero-counter {
        right: 24px;
        bottom: 36px;
    }

    .hero-scroll-hint {
        bottom: 36px;
    }

    /* About luxury mobile */
    .about-luxury {
        padding-bottom: 80px;
    }

    .about-luxury .container {
        margin-top: -100px;
    }

    .about-luxury-card {
        margin-left: 0;
        max-width: 100%;
        padding: 40px 28px;
    }

    .about-luxury-image {
        height: 360px;
    }

    /* Service items mobile */
    .service-item:has(.service-item-head) p,
    .service-item:has(.service-item-head) .btn-link {
        padding-left: 0;
        margin-left: 0;
    }

    .service-item-head {
        flex-wrap: wrap;
        gap: 12px;
    }

    .service-item-head .service-num {
        font-size: 32px;
    }

    .service-item-head h4 {
        font-size: 22px;
    }

    /* About block mobile */
    .about-block {
        grid-template-columns: 1fr;
    }

    .about-block.reverse {
        direction: ltr;
    }

    .about-block-image {
        min-height: 400px;
    }

    .about-block-content {
        padding: 56px 28px;
    }

    /* Grids mobile */
    .blog-row,
    .services-showcase,
    .partners-grid,
    .features-grid,
    .team-row {
        grid-template-columns: 1fr;
    }

    .stats-row,
    .stats-lux .stats-row,
    .stats-bar .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .stats-lux .stat-box {
        border-left: none;
        border-top: 1px solid var(--c-border);
        padding: 32px 16px;
    }

    .stats-lux .stat-box:first-child,
    .stats-lux .stat-box:nth-child(2) {
        border-top: none;
    }

    .stats-lux .stat-box:nth-child(even) {
        border-left: 1px solid var(--c-border);
    }

    /* Contact mobile */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 32px 24px;
    }

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .newsletter-field {
        flex-direction: column;
    }

    /* Page hero mobile */
    .page-hero {
        height: 60vh;
        min-height: 400px;
    }

    .page-title-bar {
        padding: 120px 0 60px;
    }

    .page-hero-social {
        left: 24px;
        bottom: 30px;
    }

    /* Blog carousel mobile */
    .blog-carousel {
        padding: 0 24px 20px;
    }

    .blog-lux {
        flex: 0 0 280px;
    }

    .testimonial-carousel {
        padding: 0 24px;
    }

    .testimonial-lux-body {
        padding: 32px 24px;
    }

    /* CTA mobile */
    .pre-footer-cta,
    .cta-banner {
        padding: 100px 0;
    }

    /* Sticky contact bar */
    .sticky-contact {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: var(--c-charcoal);
    }

    .sticky-contact a {
        flex: 1;
        text-align: center;
        padding: 16px 8px;
        font-size: 11px;
        color: var(--c-white);
        letter-spacing: 0.06em;
    }

    .sticky-contact a:first-child {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    body {
        padding-bottom: 52px;
    }

    .marquee-track span {
        font-size: 10px;
        padding: 0 28px;
    }
}

/* ============================================================
   RESPONSIVE — small mobile
   ============================================================ */
@media (max-width: 480px) {
    .hero-slide-text h2 {
        font-size: 2.2rem;
    }

    .stat-box h3,
    .stats-lux .stat-box h3 {
        font-size: 2.4rem;
    }

    .pricing-card .price,
    .price-wrap .price {
        font-size: 2.4rem;
    }

    .sc-heading {
        font-size: 1.9rem;
    }

    .stats-row,
    .stats-lux .stats-row,
    .stats-bar .stats-row {
        grid-template-columns: 1fr;
    }

    .stats-lux .stat-box:nth-child(even) {
        border-left: none;
    }

    .service-item:not(:has(.service-item-head)) {
        grid-template-columns: 56px 1fr;
        gap: 16px;
    }

    .service-item:not(:has(.service-item-head)) .service-num {
        font-size: 32px;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo-mark {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
