﻿/* ================================================
   TANG ADVOCATES — Main Stylesheet
   ================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Custom Properties --- */
:root {
    --color-dark:        #0A0F1E;
    --color-dark-2:      #0F1828;
    --color-dark-3:      #18243A;
    --color-gold:        #3286c7;
    --color-gold-light:  #5BA3D9;
    --color-gold-dim:    rgba(50, 134, 199, 0.12);
    --color-bg:          #F8F9FC;
    --color-bg-alt:      #EFF2F8;
    --color-white:       #FFFFFF;
    --color-text:        #111827;
    --color-muted:       #6B7280;
    --color-border:      #D9DEE8;

    --font-display:  'Cormorant Garamond', Georgia, serif;
    --font-heading:  'Space Grotesk', system-ui, sans-serif;
    --font-body:     'Inter', system-ui, sans-serif;

    --nav-height:       80px;
    --container-max:    1400px;
    --container-pad:    clamp(20px, 5vw, 80px);

    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 16px;

    --shadow-xs:  0 1px 4px rgba(0,0,0,0.04);
    --shadow-sm:  0 2px 16px rgba(0,0,0,0.05);
    --shadow-md:  0 6px 32px rgba(0,0,0,0.08);
    --shadow-lg:  0 16px 56px rgba(0,0,0,0.11);
    --shadow-card: 0 2px 16px rgba(0,0,0,0.04), 0 1px 4px rgba(0,0,0,0.03);
    --shadow-card-hover: 0 8px 40px rgba(0,0,0,0.09), 0 2px 8px rgba(0,0,0,0.04);

    --ease:       cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --trans-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ================================================
   LAYOUT & UTILITIES
   ================================================ */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.section-header {
    text-align: center;
    margin-bottom: 68px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}


/* ================================================
   TYPOGRAPHY
   ================================================ */

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: currentColor;
    flex-shrink: 0;
}

.section-tag.light {
    color: var(--color-gold-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.12;
    color: var(--color-dark);
    margin-bottom: 28px;
    letter-spacing: -0.015em;
}

.section-title.light {
    color: var(--color-white);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.12rem;
    color: var(--color-muted);
    max-width: 560px;
    line-height: 1.8;
}

.section-body {
    font-size: 1.05rem;
    color: var(--color-muted);
    line-height: 1.9;
    margin-bottom: 18px;
    max-width: 540px;
}

.section-body.light {
    color: rgba(255, 255, 255, 0.6);
}


/* ================================================
   BUTTONS
   ================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
    border: 1.5px solid transparent;
}

.btn-gold {
    background: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}
.btn-gold:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(50, 134, 199, 0.38);
}

.btn-dark {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}
.btn-dark:hover {
    background: var(--color-dark-3);
    border-color: var(--color-dark-3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline-white:hover {
    border-color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.07);
}

.btn-nav {
    background: var(--color-gold);
    color: var(--color-white);
    font-size: 0.78rem;
    padding: 10px 20px;
    border-color: var(--color-gold);
}
.btn-nav:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 0.92rem;
}


/* ================================================
   NAVBAR
   ================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    flex-shrink: 0;
    margin-right: 52px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-white);
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    color: var(--color-gold);
    margin-top: 4px;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.72);
    transition: color var(--transition);
    position: relative;
    padding-bottom: 3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--color-white);
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ================================================
   HERO
   ================================================ */

.hero {
    position: relative;
    min-height: 100vh;
    background: var(--color-dark);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 15% 55%, rgba(50, 134, 199, 0.06) 0%, transparent 65%),
        radial-gradient(ellipse 50% 70% at 85% 15%, rgba(50, 134, 199, 0.03) 0%, transparent 55%);
    pointer-events: none;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: calc(var(--nav-height) + 72px) var(--container-pad) 130px;
    width: 100%;
    flex: 1;
}

/* Hero â€” animated entrance */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 36px;
    animation: heroFadeUp 0.9s 0.3s both;
}

.tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-gold);
    display: inline-block;
    flex-shrink: 0;
    animation: tagPulse 2.5s ease-in-out infinite;
}

@keyframes tagPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.75); }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(5rem, 16vw, 15rem);
    font-weight: 600;
    line-height: 0.94;
    letter-spacing: -0.02em;
    color: var(--color-white);
    margin-bottom: 44px;
}

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

.hero-headline .line:nth-child(1) { animation: heroFadeUp 0.9s 0.5s both; }
.hero-headline .line:nth-child(2) { animation: heroFadeUp 0.9s 0.65s both; }
.hero-headline .line:nth-child(3) { animation: heroFadeUp 0.9s 0.8s both; }

.hero-headline .accent {
    color: var(--color-gold);
    font-style: italic;
}

.hero-description {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.4vw, 1.3rem);
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.55);
    max-width: 640px;
    margin-bottom: 56px;
    animation: heroFadeUp 0.9s 0.95s both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: heroFadeUp 0.9s 1.1s both;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-visual {
    position: absolute;
    right: 4vw;
    top: 50%;
    transform: translateY(-56%);
    pointer-events: none;
    z-index: 0;
    animation: heroBgFade 1.8s 1.0s both;
}

@keyframes heroBgFade {
    from { opacity: 0; }
    to   { opacity: 0.1; }
}

.hero-emblem {
    width: clamp(300px, 38vw, 580px);
    height: clamp(300px, 38vw, 580px);
}

.hero-emblem svg {
    width: 100%;
    height: 100%;
}

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

@keyframes heroFadeIn {
    from { opacity: 0; }
    to   { opacity: 0.55; }
}

/* Hero stats bar */
.hero-stats {
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    animation: heroFadeUp 0.8s 1.3s both;
}

.stat-item {
    padding: 28px 56px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    line-height: 1;
    margin-bottom: 7px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 600;
    color: var(--color-white);
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 400;
    color: var(--color-gold);
}

.stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.04em;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    right: var(--container-pad);
    bottom: 108px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    writing-mode: vertical-rl;
    animation: heroFadeIn 1s 1.5s both;
}

.scroll-line {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, rgba(50, 134, 199, 0.7), transparent);
    animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}


/* ================================================
   ABOUT
   ================================================ */

.about {
    padding: 128px 0;
    background: var(--color-bg);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: start;
}

.about-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.about-card {
    background: var(--color-white);
    padding: 34px 28px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: box-shadow var(--transition), transform var(--transition);
}

.about-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.about-card-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 4vw, 3.8rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 14px;
    opacity: 0.85;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.about-card p {
    font-size: 0.86rem;
    color: var(--color-muted);
    line-height: 1.72;
}


/* ================================================
   SERVICES / PRACTICE AREAS
   ================================================ */

.services {
    padding: 128px 0;
    background: var(--color-bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--color-white);
    padding: 52px 40px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: box-shadow var(--transition), transform var(--transition);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--trans-slow);
}

.service-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
}

.service-card:hover::before {
    width: 100%;
}

.service-icon {
    width: 64px;
    height: 64px;
    color: var(--color-gold);
    margin-bottom: 32px;
    transition: transform var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.08);
}

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

.service-content h3 {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 14px;
    line-height: 1.25;
}

.service-content p {
    font-size: 0.96rem;
    color: var(--color-muted);
    line-height: 1.85;
    margin-bottom: 26px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--color-gold);
    transition: gap var(--transition);
}

.service-link:hover {
    gap: 14px;
}


/* ================================================
   WHY US
   ================================================ */

.why-us {
    padding: 128px 0;
    background: var(--color-dark);
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 96px;
    align-items: start;
}

.why-left {
    position: sticky;
    top: calc(var(--nav-height) + 40px);
}

.why-item {
    display: flex;
    gap: 26px;
    padding: 34px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: var(--transition);
}

.why-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.why-item:hover .why-icon {
    border-color: var(--color-gold);
    background: var(--color-gold-dim);
}

.why-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    color: var(--color-gold);
    padding: 9px;
    border: 1px solid rgba(50, 134, 199, 0.25);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

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

.why-text h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.why-text p {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.8;
}


/* ================================================
   FEATURED MATTERS
   ================================================ */

.matters {
    padding: 128px 0;
    background: var(--color-bg);
}

.matters-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.matter-card {
    background: var(--color-white);
    padding: 42px 38px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
    transition: box-shadow var(--transition), transform var(--transition);
}

.matter-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.matter-card--featured {
    grid-row: span 2;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.matter-card--featured::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,162,74,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.matter-card--featured:hover {
    background: var(--color-dark-3);
}

.matter-card--featured .matter-tag {
    color: rgba(255, 255, 255, 0.35);
}

.matter-card--featured h3 {
    color: var(--color-white);
    font-size: 2.2rem;
}

.matter-card--featured p {
    color: rgba(255, 255, 255, 0.55);
}

.matter-card--featured .matter-outcome {
    color: var(--color-gold);
    border-color: rgba(50, 134, 199, 0.3);
}

.matter-tag {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.matter-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 14px;
    line-height: 1.3;
}

.matter-card p {
    font-size: 0.87rem;
    color: var(--color-muted);
    line-height: 1.8;
    flex: 1;
    margin-bottom: 30px;
}

.matter-footer {
    margin-top: auto;
}

.matter-outcome {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--color-muted);
    border: 1px solid var(--color-border);
    padding: 6px 14px;
    border-radius: 2px;
}


/* ================================================
   TESTIMONIALS
   ================================================ */

.testimonials {
    padding: 128px 0;
    background: var(--color-dark-2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--color-dark-2);
    padding: 50px 38px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    transition: background var(--transition), transform var(--transition);
}

.testimonial-card:hover {
    background: var(--color-dark-3);
    transform: translateY(-2px);
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 5.5rem;
    line-height: 1;
    color: var(--color-gold);
    opacity: 0.45;
    margin-bottom: 18px;
    margin-top: -12px;
    letter-spacing: -0.02em;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.85;
    font-style: italic;
    flex: 1;
    margin-bottom: 36px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--color-gold-dim);
    border: 1px solid rgba(50, 134, 199, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-gold);
    flex-shrink: 0;
    letter-spacing: 0.04em;
}

.author-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.4;
}


/* ================================================
   CTA SECTION
   ================================================ */

.cta-section {
    padding: 128px var(--container-pad);
    background: var(--color-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 85% 65% at 50% 50%, rgba(50, 134, 199, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.08;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.cta-body {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.85;
    margin-bottom: 52px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ================================================
   FOOTER
   ================================================ */

.footer {
    background: var(--color-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.9fr 1fr 1.4fr 1.8fr;
    gap: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}

.footer-tagline {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.8;
    max-width: 270px;
    margin-bottom: 30px;
}

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

.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
    transition: var(--transition);
}

.social-link:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: var(--color-gold-dim);
}

.social-link svg {
    width: 15px;
    height: 15px;
}

.footer-nav h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 24px;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-nav a {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--transition);
    line-height: 1.5;
}

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

.footer-contact address {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}

.contact-item svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--color-gold);
    margin-top: 3px;
}

.contact-item span,
.contact-item a {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    transition: color var(--transition);
}

.contact-item a:hover {
    color: var(--color-white);
}

.footer-bottom {
    padding: 26px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.28);
}

.footer-bottom p span {
    margin: 0 10px;
    opacity: 0.5;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.28);
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.65);
}


/* ================================================
   SCROLL ANIMATIONS
   ================================================ */

[data-animate] {
    opacity: 0;
    transition:
        opacity 0.72s var(--ease),
        transform 0.72s var(--ease);
}

[data-animate="fade-up"]    { transform: translateY(32px); }
[data-animate="fade-right"] { transform: translateX(-32px); }

[data-animate].is-visible {
    opacity: 1;
    transform: none;
}


/* ================================================
   RESPONSIVE â€” 1024px (Tablet/Small Desktop)
   ================================================ */

@media (max-width: 1100px) {
    :root { --container-pad: 5vw; }

    .hero-visual { display: none; }

    .about-inner  { grid-template-columns: 1fr; gap: 56px; }
    .why-inner    { grid-template-columns: 1fr; gap: 56px; }
    .why-left     { position: static; }

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

    .matters-grid {
        grid-template-columns: 1fr 1fr;
    }
    .matter-card--featured {
        grid-row: span 1;
        grid-column: span 2;
    }

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


/* ================================================
   RESPONSIVE â€” 768px (Mobile)
   ================================================ */

@media (max-width: 768px) {
    :root {
        --container-pad: 6vw;
        --nav-height: 68px;
    }

    /* Nav */
    .nav-links  { display: none; }
    .nav-cta-desktop { display: none; }

    .nav-right .btn-nav { display: none; }
    .nav-toggle { display: flex; }

    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(24px);
        padding: 48px var(--container-pad);
        gap: 32px;
        z-index: 999;
        align-items: flex-start;
        overflow-y: auto;
    }

    .nav-links.mobile-open .nav-link {
        font-size: 1.4rem;
        font-family: var(--font-display);
        font-weight: 400;
        letter-spacing: 0.01em;
        color: rgba(255, 255, 255, 0.75);
    }

    .nav-links.mobile-open .nav-link::after { display: none; }

    /* Hero */
    .hero-scroll-indicator { display: none; }
    .hero-container { padding-bottom: 0; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: fit-content; }

    /* Sections */
    .services-grid     { grid-template-columns: 1fr; }
    .matters-grid      { grid-template-columns: 1fr; }
    .matter-card--featured { grid-column: span 1; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-card-grid   { grid-template-columns: 1fr; }

    .footer-grid       { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom     { flex-direction: column; align-items: flex-start; }
    .footer-bottom-links { flex-wrap: wrap; gap: 16px; }

    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: fit-content; }
}


/* ================================================
   RESPONSIVE â€” 480px (Small Mobile)
   ================================================ */

@media (max-width: 480px) {
    .about-card-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-links {
        gap: 12px;
    }
}


/* ================================================
   PRINT
   ================================================ */

@media print {
    .navbar, .hero-scroll-indicator, .cta-section { display: none; }
    body { background: white; color: black; }
}


/* ================================================
   CAREERS PAGE
   ================================================ */

/* --- Page Hero (inner pages) --- */

.page-hero {
    position: relative;
    background: var(--color-dark);
    padding: calc(var(--nav-height) + 88px) 0 88px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 80% at 10% 60%, rgba(50, 134, 199, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 90% 10%, rgba(50, 134, 199, 0.03) 0%, transparent 55%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    max-width: 100%;
    animation: heroFadeUp 0.9s 0.2s both;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 28px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--transition);
}

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

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 7vw, 7rem);
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.page-hero-title em {
    color: var(--color-gold);
    font-style: italic;
}

.page-hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.85;
    max-width: 560px;
    margin-bottom: 36px;
}

.page-hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.hiring-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 16px;
    border-radius: 100px;
}

.hiring-badge .badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    animation: tagPulse 2.5s ease-in-out infinite;
}

.hiring-badge--outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
}

/* --- Why Join Us pillars --- */

.careers-why {
    padding: 128px 0;
    background: var(--color-bg);
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--color-border);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.pillar-card {
    background: var(--color-bg);
    padding: 40px 32px;
    transition: background var(--transition);
}

.pillar-card:hover {
    background: var(--color-white);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    color: var(--color-gold);
    margin-bottom: 24px;
    transition: transform var(--transition);
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1);
}

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

.pillar-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.pillar-card p {
    font-size: 0.87rem;
    color: var(--color-muted);
    line-height: 1.78;
}

/* --- Jobs Section --- */

.jobs-section {
    padding: 128px 0;
    background: var(--color-bg-alt);
}

.jobs-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 56px;
}

.jobs-header .section-title {
    margin-bottom: 0;
}

.jobs-count {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-shrink: 0;
    padding-bottom: 4px;
}

.count-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
}

.count-label {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted);
    line-height: 1.4;
}

/* --- Individual Job Cards --- */

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--color-border);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.job-card {
    background: var(--color-bg-alt);
    padding: 48px 48px 40px;
    border-left: 3px solid transparent;
    transition: background var(--transition), border-color var(--transition);
}

.job-card:hover {
    background: var(--color-white);
    border-left-color: var(--color-gold);
}

.job-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--color-border);
}

.job-header-left {
    flex: 1;
}

.job-meta-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.job-tag {
    font-family: var(--font-heading);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    padding: 5px 12px;
    border-radius: 2px;
}

.job-tag--dept {
    color: var(--color-gold);
    background: rgba(50, 134, 199, 0.08);
    border-color: rgba(50, 134, 199, 0.28);
}

.job-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.job-summary {
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.82;
    max-width: 680px;
    margin: 0;
}

.job-header-right {
    flex-shrink: 0;
    padding-top: 6px;
}

.vacancy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.25);
    padding: 7px 14px;
    border-radius: 100px;
    white-space: nowrap;
}

.vacancy-badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    animation: tagPulse 2.5s ease-in-out infinite;
}

/* --- Job Details: 2-column responsibilities/requirements --- */

.job-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 36px;
}

.detail-heading {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 18px;
}

.detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-list li {
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.72;
    padding-left: 18px;
    position: relative;
}

.detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 1px;
    background: var(--color-gold);
}

/* --- Job Apply Area --- */

.job-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 12px;
}

.apply-note {
    font-size: 0.82rem;
    color: var(--color-muted);
}

.apply-note a {
    color: var(--color-gold);
    transition: color var(--transition);
}

.apply-note a:hover {
    color: var(--color-gold-light);
}

/* --- Careers CTA --- */

.careers-cta {
    padding: 120px var(--container-pad);
    background: var(--color-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.careers-cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(50, 134, 199, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.careers-cta-content {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
}

.careers-cta-email {
    margin-top: 24px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.38);
}

.careers-cta-email a {
    color: var(--color-gold);
    transition: color var(--transition);
}

.careers-cta-email a:hover {
    color: var(--color-gold-light);
}

/* --- Careers Responsive --- */

@media (max-width: 1100px) {
    .pillar-grid { grid-template-columns: repeat(2, 1fr); }

    .job-details { gap: 32px; }

    .jobs-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 768px) {
    .page-hero { padding: calc(var(--nav-height) + 56px) 0 64px; }

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

    .job-card { padding: 36px 24px 32px; }

    .job-card-header {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 28px;
        padding-bottom: 28px;
    }

    .job-details { grid-template-columns: 1fr; gap: 28px; }

    .job-actions { flex-direction: column; align-items: flex-start; gap: 14px; }

    .hiring-badge { font-size: 0.7rem; }
}


/* ================================================
   CONTACT PAGE
   ================================================ */

.contact-section {
    padding: 100px 0 120px;
    background: var(--color-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: start;
}

/* Form panel */
.cf-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.cf-subheading {
    color: var(--color-muted);
    font-size: 0.97rem;
    margin-bottom: 40px;
}

.cf-alert {
    padding: 18px 22px;
    border-radius: var(--radius-md);
    margin-bottom: 32px;
    font-size: 0.93rem;
    line-height: 1.6;
}

.cf-alert p { margin: 0; }
.cf-alert p + p { margin-top: 6px; }

.cf-alert--success {
    background: rgba(16, 185, 129, 0.07);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #065f46;
}

.cf-alert--error {
    background: rgba(220, 38, 38, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.22);
    color: #991b1b;
}

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

.cf-field {
    margin-bottom: 24px;
}

.cf-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 8px;
}

.cf-label .req {
    color: var(--color-gold);
    margin-left: 1px;
}

.cf-optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--color-muted);
    font-size: 0.78rem;
}

.cf-control {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

.cf-control:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px var(--color-gold-dim);
}

.cf-control::placeholder { color: var(--color-muted); }

.cf-control--error {
    border-color: #dc2626;
}

.cf-control--error:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.cf-control--select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 42px;
    cursor: pointer;
}

textarea.cf-control {
    resize: vertical;
    min-height: 148px;
    line-height: 1.6;
}

.cf-field-error {
    display: block;
    margin-top: 6px;
    font-size: 0.82rem;
    color: #dc2626;
}

.cf-privacy-note {
    font-size: 0.8rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    padding-top: 4px;
}

.cf-submit {
    width: 100%;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Honeypot â€” invisible to humans */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Contact info sidebar */
.cf-info {
    position: sticky;
    top: calc(var(--nav-height) + 32px);
}

.cf-info-card {
    background: var(--color-dark);
    color: var(--color-white);
    border-radius: var(--radius-md);
    padding: 48px 40px;
}

.cf-info-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 300;
    color: var(--color-white);
    margin-bottom: 36px;
}

.cf-info-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.cf-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cf-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(50, 134, 199, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-gold-light);
}

.cf-info-icon svg {
    width: 17px;
    height: 17px;
}

.cf-info-text strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 5px;
}

.cf-info-text span,
.cf-info-text a {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
}

.cf-info-text a:hover { color: var(--color-white); }

.cf-maps-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    font-size: 0.78rem;
    color: var(--color-gold-light);
    transition: color var(--transition);
}

.cf-maps-link:hover {
    color: var(--color-white);
}

.cf-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 32px 0;
}

.cf-response-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 20px;
    padding: 20px 22px;
    background: rgba(50, 134, 199, 0.07);
    border: 1px solid rgba(50, 134, 199, 0.2);
    border-radius: var(--radius-md);
}

.cf-response-note svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-gold);
    margin-top: 2px;
}

.cf-response-note p {
    font-size: 0.88rem;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

/* Contact responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cf-info {
        position: static;
        order: -1;
    }

    .cf-info-card {
        padding: 36px 32px;
    }
}

@media (max-width: 600px) {
    .cf-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cf-info-card {
        padding: 28px 20px;
    }

    .contact-section {
        padding: 64px 0 80px;
    }
}


/* ================================================
   LEGAL PAGES (Privacy Policy, Terms, Disclaimer)
   ================================================ */

.legal-section {
    padding: 100px 0 120px;
    background: var(--color-bg);
}

.legal-wrap {
    max-width: 800px;
}

.legal-updated {
    font-size: 0.82rem;
    color: var(--color-muted);
    letter-spacing: 0.03em;
    margin-bottom: 56px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.legal-block {
    margin-bottom: 48px;
}

.legal-block:last-child {
    margin-bottom: 0;
}

.legal-block h2 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.legal-block p {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.88;
    margin-bottom: 14px;
}

.legal-block p:last-child {
    margin-bottom: 0;
}

.legal-block ul {
    list-style: none;
    margin: 14px 0 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-block ul li {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.78;
    padding-left: 20px;
    position: relative;
}

.legal-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 1px;
    background: var(--color-gold);
}

.legal-block a {
    color: var(--color-gold);
    transition: color var(--transition);
}

.legal-block a:hover {
    color: var(--color-gold-light);
}

.legal-address {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 2.1;
}

.legal-address a {
    color: var(--color-gold);
    transition: color var(--transition);
}

.legal-address a:hover {
    color: var(--color-gold-light);
}

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

    .legal-block {
        margin-bottom: 36px;
    }

    .legal-block h2 {
        font-size: 1.25rem;
    }
}
