/* ============================================
   GOOGLE FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --navy: #0F2A44;
    --navy-light: #1a3d5c;
    --gold: #C6A04A;
    --gold-light: #d4b56a;
    --gold-dark: #b08a3a;
    --white: #FFFFFF;
    --off-white: #f8f9fa;
    --cream: #faf8f5;
    --charcoal: #333333;
    --charcoal-light: #555555;
    --light-gray: #e8e8e8;
    --medium-gray: #999999;

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --nav-height: 76px;
    --container-width: 1200px;
    --container-padding: 0 24px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-reveal: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--charcoal);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--charcoal);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--charcoal-light);
}

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

.section { padding: 100px 0; }
.section--white { background-color: var(--white); }
.section--offwhite { background-color: var(--off-white); }
.section--cream { background-color: var(--cream); }
.section--navy { background-color: var(--navy); }

/* Curved transition from hero into first content section */
.hero + .section,
.page-hero + .section {
    --hero-overlap: 2vh;
    --hero-corner-width: clamp(28px, 3.2vw, 56px);
    --hero-corner-depth: clamp(12px, 1.6vw, 24px);
    margin-top: calc(-1 * var(--hero-overlap));
    padding-top: calc(100px + var(--hero-overlap));
    position: relative;
    z-index: 2;
    border-top-left-radius: var(--hero-corner-width) var(--hero-corner-depth);
    border-top-right-radius: var(--hero-corner-width) var(--hero-corner-depth);
}

.section--has-jump-line { position: relative; }

.hero-jump-line {
    position: absolute;
    top: clamp(24px, 3.2vw, 44px);
    left: 50%;
    width: clamp(90px, 12vw, 140px);
    height: 18px;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    z-index: 3;
    transform: translateX(-50%);
    transition: transform var(--transition-base);
}

.hero-jump-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
    border-radius: 999px;
    transform: translateY(-50%) scaleX(1);
    opacity: 0.85;
    transition: transform var(--transition-base), box-shadow var(--transition-base), opacity var(--transition-base);
}

.hero-jump-line:hover,
.hero-jump-line:focus-visible {
    transform: translateX(-50%) translateY(2px);
}

.hero-jump-line:hover::before,
.hero-jump-line:focus-visible::before {
    transform: translateY(-50%) scaleX(1.12);
    opacity: 1;
    box-shadow: 0 0 0 5px rgba(198, 160, 74, 0.14);
}

.hero-jump-line:focus-visible {
    outline: none;
}

.section-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.section-title { margin-bottom: 24px; }

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    color: var(--charcoal-light);
    line-height: 1.8;
}

.gold-line {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 24px 0;
}

.gold-line--center {
    margin-left: auto;
    margin-right: auto;
}

.text-center .gold-line {
    display: none;
}

.text-center { text-align: center; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all var(--transition-base);
    background-color: var(--white);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
    --nav-current-height: var(--nav-height);
}

.nav--scrolled {
    background-color: var(--white);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
    height: 76px;
    --nav-current-height: 76px;
}

.nav--scrolled .nav__logo a { color: var(--navy); }
.nav--scrolled .nav__link { color: var(--charcoal); }
.nav--scrolled .nav__link:hover { color: var(--gold); }
.nav--scrolled .hamburger span { background-color: var(--navy); }

.nav--dark .nav__logo a { color: var(--navy); }
.nav--dark .nav__link { color: var(--charcoal); }
.nav--dark .hamburger span { background-color: var(--navy); }

.nav__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo a {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.nav__logo-image {
    width: 230px;
    height: auto;
    object-fit: contain;
    display: block;
}

.nav__logo-image--stacked { display: none; }

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-base);
}

.nav__link:hover { color: var(--gold); }
.nav__link--active { color: var(--gold) !important; }

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

/* Dropdown */
.nav__dropdown { position: relative; }

.nav__dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav__dropdown-trigger svg {
    width: 10px;
    height: 10px;
    transition: transform var(--transition-base);
}

.nav__dropdown:hover .nav__dropdown-trigger svg,
.nav__dropdown:focus-within .nav__dropdown-trigger svg,
.nav__dropdown.nav__dropdown--open .nav__dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav__dropdown-menu {
    position: fixed;
    top: var(--nav-current-height);
    left: 0;
    width: 100vw;
    height: 15vh;
    min-height: 120px;
    background: var(--cream);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
    padding: 0 5vw;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base);
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu,
.nav__dropdown.nav__dropdown--open .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav__dropdown-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--charcoal) !important;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    transition: color var(--transition-fast), background-color var(--transition-fast);
}

.nav__dropdown-link:first-child { border-left: none; }

.nav__dropdown-link:hover {
    background-color: rgba(198, 160, 74, 0.08);
    color: var(--gold) !important;
}

.nav__dropdown-link::after { display: none; }

/* CTA Button in Nav */
.nav__cta {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 12px 28px;
    background-color: var(--navy);
    color: var(--white) !important;
    border: 2px solid var(--navy);
    border-radius: 2px;
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
}

.nav__cta:hover {
    background-color: var(--gold);
    border-color: var(--gold);
}

.nav__cta::after { display: none !important; }

.nav--scrolled .nav__cta {
    background-color: var(--navy);
    color: var(--white) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--navy);
    transition: all var(--transition-base);
}

.hamburger--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger--active span:nth-child(2) { opacity: 0; }

.hamburger--active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--navy);
    z-index: 999;
    padding: 120px 40px 40px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
}

.mobile-nav--open { right: 0; }

.mobile-nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-nav__overlay--visible {
    opacity: 1;
    visibility: visible;
}

.mobile-nav__link {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--white);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color var(--transition-base);
}

.mobile-nav__link:hover { color: var(--gold); }

.mobile-nav__item--has-children {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__item-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-nav__link--parent {
    flex: 1;
    border-bottom: none;
}

.mobile-nav__toggle {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color var(--transition-base);
}

.mobile-nav__toggle svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-base);
}

.mobile-nav__toggle:hover,
.mobile-nav__item--open .mobile-nav__toggle {
    color: var(--gold);
}

.mobile-nav__item--open .mobile-nav__toggle svg {
    transform: rotate(180deg);
}

.mobile-nav__submenu {
    padding-bottom: 8px;
}

.mobile-nav__sublink {
    display: block;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 0 10px 20px;
    transition: color var(--transition-base);
}

.mobile-nav__sublink:hover { color: var(--gold); }

.mobile-nav__cta {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 32px;
    background-color: var(--gold);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background-color var(--transition-base);
}

.mobile-nav__cta:hover { background-color: var(--gold-light); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: 2px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-arrow {
    font-size: 1.1rem;
    display: inline-block;
    transition: transform var(--transition-base);
}

.btn--primary {
    background-color: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn--primary:hover {
    background-color: var(--gold);
    border-color: var(--gold);
}

.btn--outline {
    background-color: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn--outline:hover {
    background-color: var(--navy);
    color: var(--white);
}

.btn--outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn--outline-white:hover {
    background-color: var(--white);
    color: var(--navy);
}

.btn--gold {
    background-color: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn--gold:hover {
    background-color: var(--gold-dark);
    border-color: var(--gold-dark);
}

.btn--white {
    background-color: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.btn--white:hover {
    background-color: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: 80px;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    will-change: transform;
}

.hero__video,
.hero__bg-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__video {
    z-index: 0;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.hero__bg-fallback {
    z-index: 0;
    transform-origin: center center;
    animation: heroBreath 12s ease-in-out infinite;
    will-change: transform;
    transition: opacity var(--transition-base);
}

.hero__bg--video-ready .hero__video { opacity: 1; }

.hero__bg--video-ready .hero__bg-fallback { opacity: 0; }

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(15, 42, 68, 0.56) 0%,
        rgba(15, 42, 68, 0.74) 50%,
        rgba(15, 42, 68, 0.93) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    transform: translateY(-2%);
}

.hero--home .hero__content {
    padding-bottom: 36px;
}

.hero__title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--white);
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.1;
}

.hero__title .accent {
    color: var(--gold);
    font-style: italic;
}

.hero__subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero__cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 1;
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
    stroke: rgba(255, 255, 255, 0.6);
    fill: none;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

@keyframes heroBreath {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

/* Page Hero (inner pages) */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    background-color: var(--navy);
}

.page-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.page-hero__content {
    position: relative;
    z-index: 1;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    transform: translateY(-10%);
}

.page-hero__label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.page-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    max-width: 700px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.page-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    line-height: 1.8;
}

/* ============================================
   EXPERTISE / NUMBERED GRID
   ============================================ */
.home-expertise .container {
    max-width: 1600px;
}

.hero + .home-expertise {
    padding-top: calc(72px + var(--hero-overlap));
}

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

.expertise-card {
    display: flex;
    flex-direction: column;
    padding: 48px 40px;
    border-right: 1px solid var(--gold);
    position: relative;
}

.expertise-card:last-child { border-right: none; }

.expertise-card__number {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: var(--gold);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 32px;
    opacity: 0.7;
}

.expertise-card__title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--charcoal);
}

.expertise-card__text {
    font-size: 0.95rem;
    line-height: 1.7;
    min-height: clamp(7.2rem, 8.2vw, 9rem);
    margin-bottom: 20px;
    color: var(--charcoal-light);
}

.expertise-card__list {
    margin-bottom: 24px;
}

.expertise-card__list li {
    display: grid;
    grid-template-columns: 8px minmax(0, 1fr);
    column-gap: 12px;
    align-items: start;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--charcoal-light);
    padding: 6px 0;
}

.expertise-card__list li::before {
    content: '';
    position: static;
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    margin-top: 0.58em;
}

.expertise-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.expertise-card__link:hover { color: var(--gold); }

.expertise-card__link span {
    transition: transform var(--transition-base);
}

.expertise-card__link:hover span {
    transform: translateX(4px);
}

/* ============================================
   ABOUT PREVIEW (Home page)
   ============================================ */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-preview p + p {
    margin-top: 12px;
}

.about-preview__image {
    position: relative;
    overflow: hidden;
}

.about-preview__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.about-preview__image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--gold);
    z-index: -1;
}

/* ============================================
   MEMBERSHIPS
   ============================================ */
.memberships {
    padding: 34px 0;
    background:
        linear-gradient(135deg, rgba(15, 42, 68, 0.04), rgba(198, 160, 74, 0.08)),
        var(--off-white);
    border-top: 1px solid rgba(15, 42, 68, 0.08);
    border-bottom: 1px solid rgba(15, 42, 68, 0.08);
}

.memberships__inner {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.memberships__intro .section-label {
    margin-bottom: 10px;
}

.memberships__title {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    margin: 0;
}

.memberships__logos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.memberships__logo-card {
    min-height: 126px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 42, 68, 0.08);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(15, 42, 68, 0.06);
}

.memberships__logo {
    width: 100%;
    max-width: 220px;
    max-height: 72px;
    object-fit: contain;
    filter: saturate(0.92) contrast(1.02);
}

.memberships__logo--qls {
    max-width: 190px;
}

.memberships__logo--flpa {
    max-width: 170px;
}

.memberships__logo--fls {
    max-width: 210px;
    max-height: 68px;
}

/* ============================================
   VALUES / FEATURES GRID
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
}

.value-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
}

.value-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.value-card__title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.value-card__text {
    font-size: 0.95rem;
    color: var(--charcoal-light);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background-color: var(--navy);
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin: 0 auto 32px;
    font-size: 1.1rem;
}

/* ============================================
   PRACTICE AREAS GRID (Overview page)
   ============================================ */
.practice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.practice-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    height: 400px;
    cursor: pointer;
    display: block;
}

.practice-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.practice-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.practice-card:hover .practice-card__bg {
    transform: scale(1.05);
}

.practice-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 42, 68, 0.9) 0%, rgba(15, 42, 68, 0.2) 100%);
    transition: background var(--transition-base);
}

.practice-card:hover .practice-card__overlay {
    background: linear-gradient(to top, rgba(15, 42, 68, 0.95) 0%, rgba(15, 42, 68, 0.4) 100%);
}

.practice-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 1;
}

.practice-card__number {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 8px;
    opacity: 0.7;
}

.practice-card__title {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 12px;
}

.practice-card__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    max-width: 400px;
}

.practice-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.practice-card__link span {
    transition: transform var(--transition-base);
}

.practice-card:hover .practice-card__link span {
    transform: translateX(4px);
}

/* ============================================
   SERVICE PAGE CONTENT
   ============================================ */
.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.service-content__main h3 {
    margin-top: 40px;
    margin-bottom: 16px;
}

.service-content__main h3:first-child { margin-top: 0; }

.service-content__main p { margin-bottom: 16px; }

.service-content__main ul {
    margin-bottom: 24px;
    padding-left: 0;
}

.service-content__main ul li {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.service-content__main ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    transform: translateY(-50%);
}

.highlight-box {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--cream) 100%);
    border-left: 4px solid var(--gold);
    padding: 32px;
    margin: 32px 0;
    border-radius: 0 4px 4px 0;
}

.highlight-box p {
    font-size: 1.05rem;
    color: var(--charcoal);
    font-style: italic;
    margin-bottom: 0;
}

.service-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background-color: var(--off-white);
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.sidebar-card h4 { margin-bottom: 16px; color: var(--navy); }
.sidebar-card p { font-size: 0.9rem; margin-bottom: 20px; }

.sidebar-card .btn {
    width: 100%;
    justify-content: center;
}

.sidebar-links {
    background-color: var(--navy);
    padding: 40px;
    border-radius: 4px;
}

.sidebar-links h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.sidebar-links a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.sidebar-links a:last-child { border-bottom: none; }

.sidebar-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.sidebar-links a.active-link {
    color: var(--gold);
    font-weight: 600;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info__item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-info__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background-color: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info__icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
}

.contact-info__text h4 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
    color: var(--navy);
}

.contact-info__text p { font-size: 0.95rem; }

.contact-info__text a {
    color: var(--navy);
    font-weight: 500;
}

.contact-info__text a:hover { color: var(--gold); }

/* Form */
.contact-form .form-group { margin-bottom: 24px; }

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    border: 1px solid var(--light-gray);
    border-radius: 2px;
    background-color: var(--white);
    color: var(--charcoal);
    transition: border-color var(--transition-base);
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--gold);
}

.contact-form textarea { height: 160px; resize: vertical; }

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

.contact-form__status {
    margin-top: 12px;
    min-height: 1.4em;
    font-size: 0.9rem;
}

.contact-form__status--success { color: #1b6e2f; }
.contact-form__status--error { color: #a62424; }

.contact-map {
    margin-top: 60px;
    height: 400px;
    background-color: var(--off-white);
    border-radius: 4px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-grid + .about-grid {
    margin-top: 100px;
    padding-top: 100px;
    border-top: 1px solid var(--light-gray);
}

.about-grid--text-only {
    grid-template-columns: 1fr;
}

.about-image { position: relative; }

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 2px;
}

.about-image--contained img {
    object-fit: contain;
    padding: 36px;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.about-image__accent {
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 160px;
    height: 160px;
    border: 2px solid var(--gold);
    z-index: -1;
}

.about-content h2 { margin-bottom: 24px; }
.about-content p { margin-bottom: 16px; }

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--light-gray);
}

.about-stat__number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat__label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Approach cards for about page */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.approach-card {
    padding: 40px 28px;
    background: var(--white);
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.approach-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.approach-card__number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 16px;
}

.approach-card h4 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.approach-card p {
    font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--navy);
    padding: 80px 0 0;
}

.footer__grid {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer__brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 16px;
    max-width: 340px;
}

.footer__logo {
    width: 280px;
    max-width: 100%;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.footer__heading {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.footer__link {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 0;
    transition: all var(--transition-base);
}

.footer__link:hover {
    color: var(--white);
    padding-left: 6px;
}

.footer__bottom {
    max-width: var(--container-width);
    margin: 60px auto 0;
    padding: 22px 24px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__legal {
    display: grid;
    gap: 8px;
    max-width: 960px;
}

.footer__copyright {
    margin: 0;
    font-size: 0.81rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.58);
}

.footer__disclaimer {
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.48);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-reveal), transform var(--transition-reveal);
}

.reveal--left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity var(--transition-reveal), transform var(--transition-reveal);
}

.reveal--right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity var(--transition-reveal), transform var(--transition-reveal);
}

.reveal.visible,
.reveal--left.visible,
.reveal--right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.reveal-stagger-1 { transition-delay: 0s; }
.reveal-stagger-2 { transition-delay: 0.2s; }
.reveal-stagger-3 { transition-delay: 0.4s; }
.reveal-stagger-4 { transition-delay: 0.6s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1249px) and (min-width: 1025px) {
    .hero__content {
        transform: translateY(1%);
    }

    .hero--home .hero__content {
        padding-bottom: 24px;
    }

    .hero__title {
        font-size: clamp(2.45rem, 5.2vw, 3.85rem);
        margin-bottom: 18px;
        max-width: 740px;
        line-height: 1.08;
    }

    .hero__subtitle {
        font-size: clamp(0.98rem, 1.35vw, 1.08rem);
        max-width: 530px;
        margin-bottom: 32px;
        line-height: 1.68;
    }

    .hero__cta-group .btn {
        font-size: 0.79rem;
        padding: 14px 24px;
    }

    .expertise-sound-break {
        display: none;
    }

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

    .expertise-card {
        border-right: 1px solid var(--gold);
        border-bottom: 1px solid var(--gold);
    }

    .expertise-card:nth-child(2n) { border-right: none; }
    .expertise-card:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 1024px) {
    .hero + .home-expertise {
        padding-top: calc(56px + var(--hero-overlap));
    }

    .hero--home .hero__content {
        padding-bottom: 18px;
    }

    .hero__content {
        transform: translateY(4%);
    }

    .hero__title {
        font-size: clamp(2.05rem, 5.3vw, 3.15rem);
        margin-bottom: 16px;
        max-width: 680px;
        line-height: 1.07;
    }

    .hero__subtitle {
        font-size: clamp(0.93rem, 1.45vw, 1.02rem);
        max-width: 500px;
        margin-bottom: 26px;
        line-height: 1.58;
    }

    .hero__cta-group .btn {
        font-size: 0.76rem;
        padding: 13px 22px;
    }

    .hero + .section,
    .page-hero + .section {
        --hero-overlap: 2vh;
        --hero-corner-width: clamp(24px, 4vw, 44px);
        --hero-corner-depth: clamp(10px, 2.4vw, 18px);
    }

    .nav__links { display: none; }
    .hamburger { display: flex; }
    .nav__logo-image--landscape { display: none; }
    .nav__logo-image--stacked {
        display: block;
        width: 170px;
    }

    .expertise-grid { grid-template-columns: 1fr; }
    .expertise-card { border-right: none; border-bottom: 1px solid var(--gold); }
    .expertise-card:last-child { border-bottom: none; }

    .memberships__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-preview { grid-template-columns: 1fr; gap: 40px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-grid + .about-grid { margin-top: 72px; padding-top: 72px; }
    .service-content { grid-template-columns: 1fr; gap: 40px; }
    .service-sidebar { position: static; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .practice-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .approach-grid { grid-template-columns: 1fr 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-height: 840px) and (min-width: 1025px) {
    .hero--home .hero__content {
        padding-bottom: 18px;
    }

    .hero__title {
        margin-bottom: 14px;
    }

    .hero__subtitle {
        margin-bottom: 24px;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .hero + .home-expertise {
        padding-top: calc(40px + var(--hero-overlap));
    }

    :root { --nav-height: 70px; }
    .hero + .section,
    .page-hero + .section {
        --hero-overlap: 2vh;
        --hero-corner-width: clamp(20px, 5vw, 34px);
        --hero-corner-depth: clamp(8px, 3.2vw, 14px);
    }
    .nav__logo-image--stacked { width: 145px; }
    .hero--home {
        padding-top: 12px;
    }
    .hero--home .hero__content { padding-bottom: 10px; }
    .hero__content {
        padding: 0 20px;
        transform: translateY(6%);
    }
    .hero__title {
        font-size: clamp(1.88rem, 7.1vw, 2.5rem);
        margin-bottom: 12px;
        max-width: 640px;
        line-height: 1.08;
    }
    .hero__subtitle {
        font-size: 0.9rem;
        line-height: 1.55;
        margin-bottom: 20px;
        max-width: 470px;
    }
    .hero__cta-group { gap: 10px; }
    .hero__cta-group .btn {
        padding: 13px 22px;
        font-size: 0.74rem;
    }
    .section { padding: 60px 0; }
    .hero { min-height: 92vh; padding-bottom: 56px; }
    .page-hero { padding: 140px 0 60px; }
    .memberships {
        padding: 28px 0;
    }
    .memberships__logos {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .memberships__logo-card {
        min-height: 110px;
    }
    .values-grid { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom { margin-top: 44px; padding: 20px 24px 24px; text-align: center; }
    .footer__legal { margin: 0 auto; }
    .practice-card { height: 300px; }
    .practice-card__content { padding: 28px 24px; }
    .practice-card__number {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }
    .practice-card__title {
        font-size: 1.45rem;
        margin-bottom: 10px;
    }
    .practice-card__text {
        font-size: 0.82rem;
        line-height: 1.55;
        margin-bottom: 14px;
    }
    .practice-card__link { font-size: 0.76rem; }
    .about-image img { height: 400px; }
    .about-image--contained img { padding: 24px; }
    .about-preview__image img { height: auto; }
    .cta-banner { padding: 60px 0; }
}

@media (max-width: 480px) {
    .hero--home {
        padding-top: 16px;
    }
    .hero__content {
        padding: 0 16px;
        transform: translateY(7%);
    }
    .hero__title {
        font-size: clamp(1.66rem, 8.8vw, 2.1rem);
        margin-bottom: 10px;
        line-height: 1.06;
    }
    .hero__subtitle {
        font-size: 0.84rem;
        line-height: 1.45;
        margin-bottom: 16px;
    }
    .hero__cta-group { gap: 10px; }
    .about-stats { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .hero__cta-group { flex-direction: column; }
    .hero__cta-group .btn {
        text-align: center;
        justify-content: center;
        width: 100%;
        padding: 12px 16px;
        font-size: 0.71rem;
    }
    .practice-card__content { padding: 24px 18px; }
    .practice-card__number { font-size: 1.45rem; }
    .practice-card__title {
        font-size: 1.32rem;
        margin-bottom: 8px;
    }
    .practice-card__text {
        font-size: 0.76rem;
        line-height: 1.45;
        margin-bottom: 12px;
    }
    .practice-card__link { font-size: 0.71rem; }
    .scroll-indicator { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .hero__bg-fallback {
        animation: none;
    }
}
