:root {
    --primary: #292866;
    --primary-light: #3a3a82;
    --white: #ffffff;
    --bg-warm: #fafafa;
    --bg-section: #f5f5f8;
    --text: #1a1a2e;
    --text-muted: #6a6a7a;
    --text-light: #b0b0be;
    --line: #e8e8ec;
    --line-dark: #d4d4e0;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.eyebrow {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 2rem;
    display: block;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 5vw;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.2rem 5vw;
    box-shadow: 0 1px 0 var(--line);
}

.nav.scrolled .nav-logo { color: var(--primary); }
.nav.scrolled .nav-links a { color: var(--text-muted); }
.nav.scrolled .nav-links a:hover { color: var(--primary); }
.nav.scrolled .nav-links a.active { color: var(--primary); }

.nav-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 44px;
    width: auto;
    display: block;
    transition: opacity 0.5s ease;
}

.nav-logo--switching {
    position: relative;
    height: 44px;
}

.nav-logo--switching .nav-logo-scrolled {
    position: absolute;
    inset: 0 auto auto 0;
    opacity: 0;
}

.nav.scrolled .nav-logo--switching .nav-logo-hero {
    opacity: 0;
}

.nav.scrolled .nav-logo--switching .nav-logo-scrolled {
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 2.4rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    white-space: nowrap;
    transition: color 0.4s ease;
    position: relative;
}

/* Keep the expanded desktop menu on one line at laptop widths. */
@media (min-width: 969px) and (max-width: 1180px) {
    .nav-links { gap: 1rem; }
    .nav-links a { font-size: 0.68rem; letter-spacing: 0.04em; }
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.4s ease;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

/* On dark hero pages, keep the underline white */
.nav:not(.scrolled) .nav-links a.active { color: var(--white); }
.nav:not(.scrolled) .nav-links a.active::after { width: 100%; background: var(--white); }

.nav-cta {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 0.7rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s ease;
    text-decoration: none;
    display: inline-block;
}

.nav.scrolled .nav-cta {
    border-color: var(--primary);
    color: var(--primary);
}

.nav-cta:hover {
    background: var(--white);
    color: var(--primary);
}

.nav.scrolled .nav-cta:hover {
    background: var(--primary);
    color: var(--white);
}

/* Light nav variant for non-hero pages (nav is always light-bg when not on hero) */
.nav.light {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.2rem 5vw;
    box-shadow: 0 1px 0 var(--line);
}
.nav.light .nav-links a { color: var(--text-muted); }
.nav.light .nav-links a:hover { color: var(--primary); }
.nav.light .nav-links a.active { color: var(--primary); }
.nav.light .nav-cta { border-color: var(--primary); color: var(--primary); }
.nav.light .nav-cta:hover { background: var(--primary); color: var(--white); }
.nav.light .mobile-menu-btn { color: var(--primary); }

/* Hero (Home) */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) contrast(1.05) saturate(0.9);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-video-container video.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(41,40,102,0.25) 0%, rgba(41,40,102,0.55) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    color: var(--white);
}

.hero-eyebrow {
    color: rgba(255,255,255,0.6);
    margin-bottom: 2.5rem;
    letter-spacing: 0.3em;
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 5.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(40px);
    line-height: 1.1;
}

.hero-title-line {
    display: block;
}

.hero-title-line:first-child {
    white-space: nowrap;
}

.hero-title em {
    font-style: italic;
    font-weight: 300;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    max-width: 480px;
    margin: 0 auto 3.5rem;
    line-height: 1.9;
    opacity: 0;
    transform: translateY(20px);
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.5s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.5s ease;
    text-decoration: none;
    display: inline-block;
}

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

.hero-scroll {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

/* Page Hero (inner pages) */
.page-hero {
    position: relative;
    height: 70vh;
    min-height: 480px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.35;
}

.page-hero-bg video,
.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.05) saturate(0.9);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(41,40,102,0.4) 0%, rgba(41,40,102,0.85) 100%);
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.page-hero-eyebrow {
    color: rgba(255,255,255,0.55);
    margin-bottom: 2rem;
}

.page-hero-title {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.1;
}

.page-hero-title em {
    font-style: italic;
    opacity: 0.85;
}

.page-hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.9;
}

/* Section Spacing */
section {
    padding: 10rem 5vw;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 450px;
    font-size: 1rem;
    line-height: 1.8;
}

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

/* Pillars */
.pillars {
    background: var(--white);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
}

.pillar-item {
    padding-top: 3rem;
    border-top: 1px solid var(--line);
    transition: all 0.6s ease;
}

.pillar-item:hover {
    border-top-color: var(--primary);
}

.pillar-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 0.2em;
    margin-bottom: 2.5rem;
    display: block;
    font-weight: 400;
}

.pillar-item h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.4rem;
    font-weight: 400;
}

.pillar-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.9;
}

/* Wheel Section */
.wheel-section {
    background: var(--bg-section);
}

.wheel-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
}

.wheel-text h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--primary);
    margin-bottom: 2rem;
}

.wheel-text > p {
    color: var(--text-muted);
    margin-bottom: 4rem;
    max-width: 400px;
    line-height: 1.9;
}

.wheel-stages {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wheel-stage {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    padding: 1.6rem 0;
    border-bottom: 1px solid var(--line);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
}

.wheel-stage:first-child {
    border-top: 1px solid var(--line);
}

.wheel-stage::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wheel-stage:hover,
.wheel-stage.active {
    padding-left: 1.5rem;
}

.wheel-stage:hover::before,
.wheel-stage.active::before {
    width: 1rem;
}

.wheel-stage-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--text-light);
    min-width: 48px;
    transition: color 0.5s ease;
}

.wheel-stage.active .wheel-stage-num,
.wheel-stage:hover .wheel-stage-num {
    color: var(--primary);
}

.wheel-stage-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--text);
    font-weight: 400;
    min-width: 140px;
    transition: color 0.5s ease;
}

.wheel-stage.active .wheel-stage-title,
.wheel-stage:hover .wheel-stage-title {
    color: var(--primary);
}

.wheel-stage-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    flex: 1;
    transition: color 0.5s ease;
}

.wheel-stage.active .wheel-stage-desc,
.wheel-stage:hover .wheel-stage-desc {
    color: var(--text);
}

.wheel-visual {
    position: sticky;
    top: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60vh;
}

.wheel {
    position: relative;
    width: 480px;
    height: 480px;
    max-width: 90vw;
    max-height: 90vw;
}

.wheel-rotator {
    position: absolute;
    inset: 0;
    transform: rotate(var(--rotation, 0deg));
    transition: transform 1.1s cubic-bezier(0.65, 0, 0.35, 1);
}

.wheel-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.wheel-track {
    fill: none;
    stroke: rgba(41, 40, 102, 0.08);
    stroke-width: 1;
}

.wheel-track-inner {
    fill: none;
    stroke: rgba(41, 40, 102, 0.05);
    stroke-width: 1;
    stroke-dasharray: 2 4;
}

.wheel-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--white);
    border: 1.5px solid var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    opacity: 0;
    animation: markerFadeIn 0.6s ease forwards;
}

.wheel-marker:nth-child(2) { animation-delay: 0.05s; }
.wheel-marker:nth-child(3) { animation-delay: 0.1s; }
.wheel-marker:nth-child(4) { animation-delay: 0.15s; }
.wheel-marker:nth-child(5) { animation-delay: 0.2s; }
.wheel-marker:nth-child(6) { animation-delay: 0.25s; }
.wheel-marker:nth-child(7) { animation-delay: 0.3s; }
.wheel-marker:nth-child(8) { animation-delay: 0.35s; }

@keyframes markerFadeIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.wheel-marker.active {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.6);
    box-shadow: 0 0 0 6px rgba(41, 40, 102, 0.08), 0 0 0 14px rgba(41, 40, 102, 0.04);
}

.wheel-pin {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 0 4px rgba(41, 40, 102, 0.1);
}

.wheel-pin::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, rgba(41, 40, 102, 0.3), transparent);
}

.wheel-center {
    position: absolute;
    inset: 22%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
}

.wheel-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.wheel-current {
    color: var(--primary);
    font-weight: 500;
}

.wheel-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    color: var(--primary);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
    min-height: 2.6rem;
    display: flex;
    align-items: center;
}

.wheel-desc {
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 180px;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
}

/* Industries */
.industries {
    background: var(--white);
    text-align: center;
}

.industries h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.industries > .section-inner > p {
    color: var(--text-muted);
    margin-bottom: 5rem;
}

.industries-list {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.industry-item {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--text-muted);
    position: relative;
    cursor: default;
    transition: color 0.4s ease;
    padding-bottom: 0.5rem;
}

.industry-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.5s ease;
}

.industry-item:hover {
    color: var(--primary);
}

.industry-item:hover::after {
    width: 100%;
}

/* Strategy Cards */
.strategy {
    background: var(--bg-warm);
}

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

.strategy-card {
    padding: 4rem;
    background: var(--white);
    border: 1px solid var(--line);
    transition: all 0.5s ease;
}

.strategy-card:hover {
    border-color: var(--line-dark);
    box-shadow: 0 30px 60px rgba(41,40,102,0.04);
    transform: translateY(-4px);
}

.strategy-card h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin: 2rem 0 1rem;
    font-weight: 400;
}

.strategy-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.strategy-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
    opacity: 0.6;
}

/* Industry Detail Cards (industries page) */
.industry-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.industry-detail-card {
    padding: 3.5rem;
    background: var(--white);
    border: 1px solid var(--line);
    transition: all 0.5s ease;
}

.industry-detail-card:hover {
    border-color: var(--line-dark);
    box-shadow: 0 30px 60px rgba(41,40,102,0.04);
    transform: translateY(-4px);
}

.industry-detail-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 400;
}

.industry-detail-card .industry-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    display: block;
}

.industry-detail-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.industry-detail-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.industry-detail-card ul li {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0.6rem 0;
    border-top: 1px solid var(--line);
    position: relative;
    padding-left: 1.2rem;
}

.industry-detail-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 1px;
    background: var(--primary);
}

/* Service Blocks (services page) */
.service-block {
    padding: 6rem 0;
    border-top: 1px solid var(--line);
    scroll-margin-top: 180px;
}

.service-block:first-of-type { border-top: none; padding-top: 0; }

.service-block-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.service-block-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--primary);
    line-height: 1;
    opacity: 0.4;
}

.service-block-title h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.service-block-title p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.9;
    max-width: 540px;
}

.service-body {
    display: grid;
    gap: 4rem;
    align-items: stretch;
}

.service-body--image-left {
    grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr);
}

.service-body--image-left .service-visual {
    order: -1;
}

.service-visual {
    margin: 0;
    min-height: 100%;
    overflow: hidden;
    background: var(--bg-warm);
    border: 1px solid var(--line);
}

.service-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-visual:hover img {
    transform: scale(1.025);
}

.service-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 2rem;
    margin-left: 0;
}

.service-items--five .service-item:last-child {
    grid-column: 1 / -1;
}

.service-item {
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid var(--line);
    transition: all 0.5s ease;
}

.service-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.service-item h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

.service-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* Selected partner logos (case studies page) */
.partner-strip {
    padding: 6rem 5vw;
    background: var(--white);
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 280px));
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
    justify-content: center;
    margin-top: 3.5rem;
}

.partner-logo {
    margin: 0;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.partner-logo img {
    display: block;
    max-width: 100%;
    max-height: 125px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Gifting subsection */
.gifting-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.gifting-item {
    padding: 2.5rem 2rem;
    background: var(--bg-warm);
    border: 1px solid var(--line);
    text-align: center;
    transition: all 0.5s ease;
}

.gifting-item:hover {
    border-color: var(--primary);
    background: var(--white);
}

.gifting-item h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.6rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

.gifting-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* Case Studies */
.case-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.case-study {
    padding: 5rem 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.case-study:first-child { border-top: none; padding-top: 0; }

.case-meta {
    position: sticky;
    top: 15vh;
}

.case-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    display: block;
}

.case-client {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.case-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 400;
}

.case-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-light);
    margin: 2.5rem 0 1rem;
    font-weight: 500;
}

.case-content h4:first-child { margin-top: 0; }

.case-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.9;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--line);
}

.case-metric .case-metric-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.6rem;
    font-weight: 300;
}

.case-metric .case-metric-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Insights */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.insight-card {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 3rem;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    min-height: 360px;
}

.insight-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(41,40,102,0.04);
}

.insight-tag {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.insight-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    font-weight: 400;
    line-height: 1.3;
}

.insight-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    flex: 1;
}

.insight-card .insight-meta {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
}

.insight-card .insight-meta span {
    color: var(--text-muted);
}

/* Image Slider Section */
.image-slider-section {
    background: var(--bg-section);
    padding: 8rem 5vw;
}

.slider-container {
    max-width: 1000px;
    margin: 0 auto;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 4px;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slider-image.active {
    opacity: 1;
}

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

.slider-label {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(41, 40, 102, 0.85);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Spotlight Tagline Section */
.spotlight-section {
    background: var(--primary);
    color: var(--white);
    padding: 6rem 5vw;
    text-align: center;
}

.spotlight-section h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.spotlight-section p {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Metrics */
.metrics {
    background: var(--white);
    padding: 8rem 5vw;
    position: relative;
    overflow: hidden;
}

.metrics-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.metrics-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) contrast(1.1) saturate(0.8);
    opacity: 0.6;
}

.metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.95) 100%);
    z-index: 1;
}

.metrics-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem;
    position: relative;
    z-index: 2;
}

.metric-item {
    text-align: center;
}

.metric-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 1rem;
    font-weight: 300;
}

.metric-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.metric-desc {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Contact */
.contact {
    background: var(--white);
    padding: 10rem 5vw;
}

.contact-layout {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
}

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.contact-info > p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 4rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-detail-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-light);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid var(--line);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text);
    transition: all 0.4s ease;
    outline: none;
    border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-bottom-color: var(--primary);
}

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

.submit-btn {
    background: var(--primary);
    color: var(--white);
    padding: 1.2rem 2rem;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s ease;
    margin-top: 1rem;
    align-self: flex-start;
}

.submit-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* Philosophy / About */
.philosophy {
    background: var(--white);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.philosophy-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 400;
}

.philosophy-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.values-list {
    list-style: none;
    margin-top: 4rem;
}

.values-list li {
    padding: 1.5rem 0;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.values-list li:last-child { border-bottom: 1px solid var(--line); }

.values-list .value-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 400;
}

.values-list .value-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: right;
    max-width: 240px;
}

.why-list {
    list-style: none;
}

.why-list li {
    padding: 2rem 0;
    border-top: 1px solid var(--line);
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    padding-left: 2.5rem;
}

.why-list li:last-child { border-bottom: 1px solid var(--line); }

.why-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-family: 'Cormorant Garamond', serif;
}

.why-list li strong {
    color: var(--primary);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.4rem;
}

/* Vision / Mission split */
.vision-mission {
    background: var(--bg-section);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.vm-item h3 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.vm-item p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--primary);
    line-height: 1.4;
    font-style: italic;
    font-weight: 400;
}

/* CTA strip */
.cta-strip {
    background: var(--primary);
    color: var(--white);
    padding: 8rem 5vw;
    text-align: center;
}

.cta-strip h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-strip p {
    color: rgba(255,255,255,0.55);
    max-width: 480px;
    margin: 0 auto 3rem;
    line-height: 1.9;
}

.cta-strip .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-strip .btn-secondary {
    border-color: rgba(255,255,255,0.25);
    color: var(--white);
}

.cta-strip .btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.05);
}

/* Footer */
.footer {
    padding: 4rem 5vw;
    background: var(--bg-warm);
    border-top: 1px solid var(--line);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-brand img {
    height: 56px;
    width: auto;
    display: block;
}

.footer-tagline {
    color: var(--text-light);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1100px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0;
}

.nav.scrolled .mobile-menu-btn {
    color: var(--primary);
}

/* Mobile */
@media (max-width: 968px) {
    .nav { padding: 1.5rem 5vw; }
    .nav-links { 
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 2rem 5vw;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links a { color: var(--text-muted) !important; font-size: 0.9rem; }
    .nav-cta { display: none; }
    .mobile-menu-btn { display: block; }
    
    section { padding: 5rem 5vw; }
    
    .pillars-grid,
    .wheel-layout,
    .strategy-grid,
    .metrics-grid,
    .contact-layout,
    .footer-inner,
    .insights-grid,
    .industry-detail-grid,
    .philosophy-grid,
    .vm-grid,
    .case-study,
    .service-block-header,
    .service-items,
    .gifting-grid,
    .case-metrics {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .service-block-header { grid-template-columns: 46px minmax(0, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
    .service-block-letter { font-size: 3rem; }
    .service-items { margin-left: 0; }
    .service-body { grid-template-columns: 1fr; gap: 2.5rem; }
    .service-body--image-right .service-visual { order: -1; }
    .service-visual { min-height: 0; aspect-ratio: 3 / 2; }
    .service-items--five .service-item:last-child { grid-column: auto; }
    .partner-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; }
    .partner-logo { min-height: 110px; padding: 0.75rem; }
    .partner-logo img { max-height: 90px; }
    .case-meta { position: relative; top: 0; }
    
    .wheel-visual { position: relative; top: 0; height: auto; }
    .wheel { width: 320px; height: 320px; }
    
    .industries-list { gap: 2rem; }
    .footer-links { flex-direction: column; gap: 2rem; }
    .hero-cta-group { flex-direction: column; }
    
    .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Touchpoint detail list (experience page) */
.touchpoint-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 4rem;
}

.touchpoint {
    display: grid;
    grid-template-columns: 80px 1fr 1.5fr;
    gap: 3rem;
    padding: 3rem 0;
    border-top: 1px solid var(--line);
    align-items: start;
}

.touchpoint:last-child { border-bottom: 1px solid var(--line); }

.touchpoint-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--text-light);
    letter-spacing: 0.2em;
}

.touchpoint h3 {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 400;
    margin-bottom: 0.6rem;
}

.touchpoint .touchpoint-tag {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.touchpoint .touchpoint-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .touchpoint { grid-template-columns: 1fr; gap: 1rem; }
}

/* ============================================================
   NEW: Grouped "What We Do" dropdown navigation
   ============================================================ */
.nav-has-dropdown { position: relative; }

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.nav-dropdown-toggle svg {
    width: 12px;
    height: 12px;
    opacity: 0.6;
    transition: transform 0.4s ease;
}

.nav-has-dropdown:hover .nav-dropdown-toggle svg,
.nav-has-dropdown.open .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    list-style: none;
    padding: 1rem 0;
    min-width: 220px;
    box-shadow: 0 30px 60px rgba(41,40,102,0.10);
    border: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    z-index: 1001;
}

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

.nav-dropdown li { width: 100%; }

.nav-dropdown a {
    color: var(--text-muted) !important;
    padding: 0.7rem 2rem;
    font-size: 0.75rem;
    display: block;
    white-space: nowrap;
    transition: color 0.3s ease, background 0.3s ease;
}

.nav-dropdown a::after { display: none; }

.nav-dropdown a:hover {
    color: var(--primary) !important;
    background: var(--bg-warm);
}

.nav-dropdown a.active {
    color: var(--primary) !important;
}

/* Mobile: dropdown expands inline inside the menu panel */
@media (max-width: 968px) {
    .nav-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0.4rem 0 0.4rem 1.2rem;
        display: none;
        min-width: 0;
    }
    .nav-has-dropdown.open .nav-dropdown { display: flex; }
    .nav-dropdown a {
        color: var(--text-muted) !important;
        padding: 0.6rem 0;
        font-size: 0.85rem;
    }
    .nav-dropdown-toggle svg { display: inline-block; }
}

/* Highlight the "What We Do" toggle when viewing one of its pages */
.nav.light .nav-has-dropdown.current-section > .nav-dropdown-toggle { color: var(--primary); }
.nav.scrolled .nav-has-dropdown.current-section > .nav-dropdown-toggle { color: var(--primary); }

/* ============================================================
   NEW: Lighter secondary CTA (text + arrow link) for hierarchy
   ============================================================ */
.btn-link {
    background: transparent;
    color: rgba(255,255,255,0.65);
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    padding: 1rem 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: color 0.4s ease;
    cursor: pointer;
}

.btn-link::after {
    content: '→';
    font-size: 1rem;
    transition: transform 0.4s ease;
}

.btn-link:hover { color: var(--white); }
.btn-link:hover::after { transform: translateX(5px); }

/* ============================================================
   NEW: Services page quick navigation (jump menu)
   ============================================================ */
.service-block { scroll-margin-top: 130px; }

.quick-nav {
    background: var(--bg-section);
    border-bottom: 1px solid var(--line);
    padding: 1.1rem 5vw;
    position: sticky;
    top: 70px;
    z-index: 40;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.quick-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2.2rem;
    white-space: nowrap;
}

.quick-nav-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-light);
    flex-shrink: 0;
}

.quick-nav-link {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 0.4rem 0;
    border-bottom: 1px solid transparent;
    flex-shrink: 0;
}

.quick-nav-link:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* ============================================================
   NEW: Insights "Coming soon" badge
   ============================================================ */
.insight-card { position: relative; }

.insight-coming-soon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--bg-section);
    color: var(--primary);
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border: 1px solid var(--line);
    font-weight: 500;
}

/* ============================================================
   NEW: Contact form select styling (visible options + chevron)
   ============================================================ */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236a6a7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 1.8rem;
    cursor: pointer;
}

.form-group select:invalid { color: var(--text-light); }
.form-group select option { color: var(--text); }

/* ============================================================
   NEW: Plain service line on homepage hero
   ============================================================ */
.hero-service-line {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.85);
    max-width: 620px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    padding: 1.2rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.18);
    border-bottom: 1px solid rgba(255,255,255,0.18);
}

@media (max-width: 768px) {
    .hero-service-line { font-size: 0.8rem; }
}

/* ============================================================
   NEW: Wheel tap hint (mobile)
   ============================================================ */
.wheel-stage { cursor: pointer; }
.wheel-tap-hint { display: none; }

@media (max-width: 968px) {
    .wheel-tap-hint {
        display: block;
        font-size: 0.75rem;
        color: var(--text-light);
        margin-top: 1rem;
        font-style: italic;
    }
}
