/* Fideco Global — Premium corporate design system
   Trust & Authority style: deep navy, warm gold, elegant serif headings,
   clean sans body, generous whitespace, subtle premium details.
*/

:root {
    /* Brand palette */
    --navy: #0b1220;
    --navy-900: #0f172a;
    --navy-800: #1e293b;
    --navy-700: #334155;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --cream: #fafaf9;
    --warm-white: #fdfdfc;
    --gold: #b8860b;
    --gold-light: #d4a93a;
    --gold-dark: #8a6508;

    /* Semantic tokens */
    --bg: var(--warm-white);
    --surface: #ffffff;
    --surface-raised: var(--cream);
    --text: var(--navy);
    --text-secondary: var(--navy-700);
    --muted: var(--slate-500);
    --line: rgba(11, 18, 32, 0.1);
    --line-light: rgba(11, 18, 32, 0.06);
    --brand: var(--navy-900);
    --brand-2: var(--navy-800);
    --accent: var(--gold);
    --accent-light: var(--gold-light);
    --accent-dark: var(--gold-dark);

    /* Effects */
    --shadow-sm: 0 1px 2px rgba(11, 18, 32, 0.06);
    --shadow: 0 4px 16px rgba(11, 18, 32, 0.08);
    --shadow-lg: 0 12px 40px rgba(11, 18, 32, 0.12);
    --shadow-xl: 0 24px 70px rgba(11, 18, 32, 0.16);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --max: 1200px;
    --max-narrow: 960px;

    /* Typography */
    --font-serif:
        "Cormorant", "Playfair Display", Georgia, "Times New Roman", serif;
    --font-sans:
        "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--text);
}

h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
}
h2 {
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
}
h3 {
    font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}
h4 {
    font-size: 1.1rem;
}

p {
    margin: 0 0 1em;
}

p:last-child {
    margin-bottom: 0;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* Screen-reader only */
.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;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: var(--max-narrow);
}

/* Section spacing */
.section {
    padding: 80px 0;
}

.section--tint {
    background: var(--surface-raised);
}

.section--dark {
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.85);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: #ffffff;
}

.section--dark p {
    color: rgba(255, 255, 255, 0.78);
}

.section-header {
    max-width: 720px;
    margin-bottom: 48px;
}

.section-header--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.section-label::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--accent);
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    background: var(--surface-raised);
    border-color: var(--slate-300);
    box-shadow: var(--shadow);
}

.btn:active {
    transform: translateY(0);
}

.btn--primary {
    background: var(--navy-900);
    color: #ffffff;
    border-color: var(--navy-900);
}

.btn--primary:hover {
    background: var(--navy-800);
    border-color: var(--navy-800);
    color: #ffffff;
}

.btn--accent {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

.btn--accent:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: #ffffff;
}

.btn--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline {
    background: transparent;
    border-color: var(--line);
    color: var(--text);
}

.btn--outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Header / Nav */
.site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    background: transparent;
    border-bottom: 1px solid var(--line-light);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: -1;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    height: 44px;
    width: auto;
}

.brand-logo.is-footer {
    height: 40px;
    filter: brightness(0) invert(1);
}

.nav-cluster {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a,
.nav-links button {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    padding: 6px 0;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links button:hover,
.nav-links a[aria-current="page"] {
    color: var(--navy);
}

.nav-links a::after,
.nav-links button::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links button:hover::after,
.nav-links a[aria-current="page"]::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
    cursor: pointer;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 200px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
    z-index: 60;
}

.dropdown[data-open="true"] .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-panel a {
    display: block;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition:
        background 0.15s ease,
        color 0.15s ease;
}

.dropdown-panel a:hover {
    background: var(--surface-raised);
    color: var(--navy);
}

/* Hero */
.hero {
    position: relative;
    padding: 90px 0 160px;
    background:
        radial-gradient(
            circle at 20% 0%,
            rgba(184, 134, 11, 0.06) 0%,
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 100%,
            rgba(15, 23, 42, 0.04) 0%,
            transparent 40%
        ),
        var(--bg);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.hero-badge svg {
    color: var(--accent);
    flex-shrink: 0;
}

.hero h1 {
    margin-bottom: 22px;
    max-width: 16ch;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 58ch;
    margin-bottom: 34px;
}

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

.hero-media {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/5;
    max-height: 560px;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 50%,
        rgba(11, 18, 32, 0.35) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-media__caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    color: #ffffff;
}

.hero-media__caption h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 4px;
}

.hero-media__caption p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Trust bar */
.trust-bar {
    padding: 28px 0;
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
}

.trust-list svg {
    color: var(--accent-light);
    flex-shrink: 0;
}

/* Split feature */
.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.feature-split--reverse {
    direction: rtl;
}

.feature-split--reverse > * {
    direction: ltr;
}

.feature-split__media {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
}

.feature-split__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-split__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(11, 18, 32, 0.12), transparent 60%);
    pointer-events: none;
}

.feature-split__content h2 {
    margin-bottom: 16px;
}

.feature-split__content .lead {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.55;
}

.feature-split__content p {
    color: var(--muted);
    margin-bottom: 16px;
}

/* Cards grid */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

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

.card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--slate-200);
}

.card--media {
    padding: 0;
    overflow: hidden;
}

.card--media .card-media {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.card--media .card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card--media .card-body {
    padding: 24px;
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: rgba(184, 134, 11, 0.1);
    color: var(--accent);
    margin-bottom: 18px;
}

.card h3 {
    margin-bottom: 10px;
}

.card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 18px;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-meta .tag {
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--surface-raised);
    color: var(--text-secondary);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.2s ease;
}

.card-link:hover {
    gap: 10px;
}

/* Stats */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.stat {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat__value {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 6px;
}

.stat__label {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
}

/* CTA panel */
.cta-panel {
    background: var(--navy-900);
    border-radius: var(--radius-xl);
    padding: 48px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-panel h2 {
    color: #ffffff;
    margin-bottom: 10px;
}

.cta-panel p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 52ch;
}

.cta-panel__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Image strip */
.image-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.shot {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow);
}

.shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.shot:hover img {
    transform: scale(1.05);
}

.shot::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px;
    background: linear-gradient(0deg, rgba(11, 18, 32, 0.7), transparent);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Footer */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.72);
    padding: 72px 0 32px;
}

.site-footer h4 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 18px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-grid p {
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 54ch;
}

.footer-grid a {
    display: block;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.72);
    padding: 6px 0;
    transition: color 0.15s ease;
}

.footer-grid a:hover {
    color: #ffffff;
}

.footer-note {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-note a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-note a:hover {
    color: #ffffff;
}

/* Utility patterns */
.divider {
    width: 48px;
    height: 2px;
    background: var(--accent);
    margin: 18px 0;
}

.divider--center {
    margin-left: auto;
    margin-right: auto;
}

.icon-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lead {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.text-accent {
    color: var(--accent);
}

/* Premium placeholder / gradient media for missing images */
.media-placeholder {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(
            circle at 30% 20%,
            rgba(184, 134, 11, 0.18),
            transparent 40%
        ),
        linear-gradient(135deg, var(--navy-800), var(--navy-900));
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-placeholder svg {
    color: rgba(255, 255, 255, 0.35);
    width: 48px;
    height: 48px;
}

/* Page layouts */
.two-col {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 56px;
    align-items: start;
}

.prose {
    max-width: 760px;
}

.prose h2 {
    font-size: 1.8rem;
    margin: 42px 0 18px;
}

.prose h3 {
    font-size: 1.25rem;
    margin: 28px 0 12px;
}

.prose p,
.prose li {
    color: var(--text-secondary);
    line-height: 1.75;
}

.prose ul,
.prose ol {
    padding-left: 22px;
    margin: 0 0 18px;
}

.prose li {
    margin-bottom: 10px;
}

.prose a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.prose a:hover {
    color: var(--gold-dark);
}

/* Legacy hero-card / media used on service detail pages */
.hero-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--surface);
}

.hero-card .media {
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

.media {
    overflow: hidden;
}

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

/* Sidebar */
.aside {
    position: sticky;
    top: 96px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.aside h3 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.aside a {
    display: block;
    padding: 10px 0;
    font-size: 0.92rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--line-light);
    transition:
        color 0.15s ease,
        padding-left 0.15s ease;
}

.aside a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.aside a[aria-current="page"] {
    color: var(--accent);
    font-weight: 600;
}

.aside .btn {
    width: 100%;
    margin-top: 6px;
}

/* Article feature split (image leading, text following) */
.feature-split--article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

/* Founder quote */
.founder-quote {
    border-left: 3px solid var(--accent);
    padding-left: 22px;
    margin: 28px 0;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* Data tables */
.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin: 24px 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.data-table th,
.data-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--line-light);
}

.data-table th {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    background: var(--surface-raised);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table td {
    color: var(--text-secondary);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid,
    .feature-split,
    .feature-split--article,
    .two-col {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .two-col {
        gap: 40px;
    }

    .hero-grid > div[aria-hidden="true"] {
        display: none;
    }

    .aside {
        position: static;
    }

    .hero-media {
        max-height: 420px;
        aspect-ratio: 16/9;
    }

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

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

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

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

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

    .nav {
        height: 68px;
    }

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

    .nav-cluster {
        position: fixed;
        inset: 68px 0 0 0;
        background: var(--surface);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 24px;
        margin: 0;
        border-top: 1px solid var(--line);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        z-index: 100;
    }

    .nav[data-open="true"] .nav-cluster {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        width: 100%;
    }

    .nav-links a,
    .nav-links button {
        display: block;
        width: 100%;
        padding: 14px 0;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--line-light);
        text-align: left;
    }

    .nav-right {
        width: 100%;
        margin-top: 16px;
    }

    .nav-right .btn {
        width: 100%;
    }

    .dropdown {
        width: 100%;
    }

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

    .dropdown[data-open="true"] .dropdown-panel {
        display: block;
        transform: none;
    }

    .dropdown-panel a {
        border: 0;
        padding: 12px 0;
    }

    .hero {
        padding: 56px 0 64px;
    }

    .hero h1 {
        max-width: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .trust-list {
        gap: 20px 32px;
    }

    .grid,
    .grid--2,
    .grid--4,
    .stats-row {
        grid-template-columns: 1fr;
    }

    .image-strip {
        grid-template-columns: 1fr 1fr;
    }

    .cta-panel {
        padding: 32px;
    }

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

    .footer-note {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    .image-strip {
        grid-template-columns: 1fr;
    }
}

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

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

    .cursor,
    .grain {
        display: none;
    }

    .reveal,
    .reveal-hidden,
    .reveal--left,
    .reveal--right,
    .reveal--scale,
    .reveal--animated,
    .split-word span {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .parallax {
        transform: none !important;
    }
}

/* FAQ list (used on contact page) */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    transition:
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--slate-200);
}

.faq-summary {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
    user-select: none;
    -webkit-appearance: none;
    appearance: none;
}

.faq-summary:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

.faq-summary::after {
    content: "+";
    font-family: var(--font-sans);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent);
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.25s ease;
}

.faq-item[data-open="true"] {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent-light);
}

.faq-item[data-open="true"] .faq-summary {
    color: var(--accent-dark);
}

.faq-item[data-open="true"] .faq-summary::after {
    transform: rotate(45deg);
}

.faq-summary:hover::after,
.faq-summary:hover {
    color: var(--accent);
}

.faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 0;
}

.faq-item[data-open="true"] .faq-panel {
    grid-template-rows: 1fr;
    margin-top: 16px;
}

.faq-panel > p {
    overflow: hidden;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* Reduced motion fallback for FAQ */
@media (prefers-reduced-motion: reduce) {
    .faq-panel {
        grid-template-rows: 1fr !important;
    }

    .faq-item[data-open="true"] {
        border-color: var(--line);
        box-shadow: none;
    }
}

/* ──────────────────────────────────────────────────────────────────────────
   LUXURY MOTION & INTERACTION LAYER
   Cinematic, scroll-driven, accessible-first. Disabled via prefers-reduced-motion.
   ────────────────────────────────────────────────────────────────────────── */

/* Grain texture overlay */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Custom cursor (desktop only, hides on touch) */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(184, 134, 11, 0.85);
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition:
        width 0.25s ease,
        height 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
    will-change: transform;
}

.cursor::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(184, 134, 11, 0.35);
    transition:
        inset 0.25s ease,
        border-color 0.25s ease;
}

.cursor--hover {
    width: 8px;
    height: 8px;
    background: rgba(184, 134, 11, 1);
}

.cursor--hover::after {
    inset: -16px;
    border-color: rgba(184, 134, 11, 0.55);
}

@media (hover: none), (pointer: coarse) {
    .cursor {
        display: none;
    }
}

/* Scroll reveal base */
.reveal {
    opacity: 1;
    transform: none;
    transition:
        opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.reveal--visible {
    opacity: 1 !important;
    transform: translateY(0) translateX(0) scale(1) !important;
}

/* Subtle scroll-entrance state (content remains visible without JS) */
.reveal--animated {
    animation: revealIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes revealIn {
    from {
        opacity: 0.4;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal--animated.reveal--left {
    animation-name: revealInLeft;
}

.reveal--animated.reveal--right {
    animation-name: revealInRight;
}

.reveal--animated.reveal--scale {
    animation-name: revealInScale;
}

@keyframes revealInLeft {
    from {
        opacity: 0.4;
        transform: translateX(-24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes revealInRight {
    from {
        opacity: 0.4;
        transform: translateX(24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes revealInScale {
    from {
        opacity: 0.4;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Stagger delays for animated entrance */
.reveal--animated[data-delay="1"] {
    animation-delay: 0.08s;
}
.reveal--animated[data-delay="2"] {
    animation-delay: 0.16s;
}
.reveal--animated[data-delay="3"] {
    animation-delay: 0.24s;
}
.reveal--animated[data-delay="4"] {
    animation-delay: 0.32s;
}
.reveal--animated[data-delay="5"] {
    animation-delay: 0.4s;
}
.reveal--animated[data-delay="6"] {
    animation-delay: 0.48s;
}

.split-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.split-word span {
    display: inline-block;
    transform: translateY(0);
}

.split-word.reveal--animated span {
    animation: splitWordIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes splitWordIn {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Parallax containers */
.parallax {
    will-change: transform;
    transform: translateZ(0);
}

.parallax-slow {
    --parallax-speed: 0.12;
}

.parallax-medium {
    --parallax-speed: 0.22;
}

.parallax-fast {
    --parallax-speed: 0.35;
}

/* Magnetic button wrap */
.magnetic {
    display: inline-flex;
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Premium hover lifts */
.hover-lift {
    transition:
        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Shimmer / sheen for CTA panels */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        transparent
    );
    transform: skewX(-20deg);
    pointer-events: none;
}

.shimmer:hover::after {
    animation: shimmer-sweep 1.2s ease forwards;
}

@keyframes shimmer-sweep {
    from {
        left: -100%;
    }
    to {
        left: 200%;
    }
}

/* Modal / lightbox system */
.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(11, 18, 32, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

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

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%) scale(0.96);
    z-index: 210;
    width: min(720px, calc(100% - 48px));
    max-height: calc(100vh - 48px);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition:
        opacity 0.35s ease,
        transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        visibility 0.35s ease;
}

.modal--open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-raised);
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 10;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.modal__close:hover {
    background: var(--navy-900);
    color: #fff;
    transform: rotate(90deg);
}

.modal__media {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--navy-900);
}

.modal__media img,
.modal__media iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

.modal__body {
    padding: 32px;
}

.modal__body h3 {
    margin-bottom: 10px;
}

.modal__body p {
    color: var(--muted);
    margin-bottom: 20px;
}

/* Hero split text animation */
/* Floating badge / pill */
.float-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
}

/* Premium card hover with image zoom */
.card-luxury {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition:
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-luxury:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-luxury__media {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.card-luxury__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-luxury:hover .card-luxury__media img {
    transform: scale(1.08);
}

.card-luxury__body {
    padding: 28px;
}

/* Cinematic section divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
    border: 0;
    margin: 0;
}

/* Elegant underline for headings */
.underline-gold {
    position: relative;
    display: inline-block;
}

.underline-gold::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent);
}

/* Stats counter styling */
.stat-counter {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 600;
    color: var(--accent-light);
    line-height: 1;
}

/* Cinematic dark section with subtle radial glow */
.section-cinematic {
    position: relative;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    overflow: hidden;
}

.section-cinematic::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(
        circle,
        rgba(184, 134, 11, 0.1) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.section-cinematic::after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.04) 0%,
        transparent 55%
    );
    pointer-events: none;
}

.section-cinematic .container {
    position: relative;
    z-index: 1;
}

/* Video / story play button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(11, 18, 32, 0.25);
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background: #ffffff;
}

.play-button svg {
    margin-left: 4px;
    color: var(--navy);
}

/* Cookie consent */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--navy-900);
    color: #ffffff;
    padding: 18px 0;
    box-shadow: 0 -8px 32px rgba(11, 18, 32, 0.25);
}

body.has-cookie-banner {
    padding-bottom: 90px;
}

@media (max-width: 768px) {
    body.has-cookie-banner {
        padding-bottom: 120px;
    }
}

.cookie-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

.cookie-banner__title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.cookie-banner__copy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
}

.cookie-banner__copy a {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-backdrop {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(11, 18, 32, 0.6);
    backdrop-filter: blur(4px);
}

.cookie-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 120;
    width: min(560px, calc(100% - 40px));
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.cookie-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 24px 14px;
    border-bottom: 1px solid var(--line);
}

.cookie-modal__eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

.cookie-modal__title {
    font-size: 1.5rem;
    font-weight: 500;
}

.cookie-icon-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 1.4rem;
    cursor: pointer;
    transition:
        color 0.15s ease,
        border-color 0.15s ease;
}

.cookie-icon-btn:hover {
    color: var(--text);
    border-color: var(--slate-300);
}

.cookie-modal__body {
    padding: 20px 24px;
}

.cookie-copy {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0 0 16px;
}

.cookie-link {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-light);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.cookie-option__desc {
    font-size: 0.85rem;
    color: var(--muted);
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--muted);
}

.cookie-modal__footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 24px 24px;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 12px 0;
    }

    .cookie-banner__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .cookie-banner__copy {
        font-size: 0.82rem;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-banner__actions .btn {
        flex: 1;
        padding: 10px 14px;
        font-size: 0.82rem;
    }
}
