/* GRD Partners - Main Stylesheet */
/* Aesthetic: Refined luxury law firm - deep navy, gold accents, Cormorant + Jost */

/*:root {
    --navy: #0d1b2e;
    --navy-mid: #162236;
    --navy-light: #1e3350;
    --gold: #b8975a;
    --gold-light: #d4b07a;
    --gold-pale: #f5edd8;
    --white: #ffffff;
    --off-white: #f8f6f1;
    --gray-100: #f2f0eb;
    --gray-200: #e8e4dc;
    --gray-400: #a09888;
    --gray-600: #6b6358;
    --gray-800: #2a2520;
    --text: #1a1714;
    --text-muted: #6b6358;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', 'Helvetica Neue', sans-serif;
    --max-width: 1280px;
    --header-h: 80px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}*/

:root {
    --navy: #111111;          /* artık siyah */
    --navy-mid: #1a1a1a;
    --navy-light: #2a2a2a;

    --gold: #888888;          /* griye çekildi */
    --gold-light: #a3a3a3;    /* senin <em> burada kullanılıyor */
    --gold-pale: #f2f2f2;

    --white: #ffffff;
    --off-white: #f7f7f7;

    --gray-100: #f2f2f2;
    --gray-200: #e5e5e5;
    --gray-400: #bdbdbd;
    --gray-600: #7a7a7a;
    --gray-800: #3a3a3a;

    --text: #111111;
    --text-muted: #6f6f6f;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', 'Helvetica Neue', sans-serif;

    --max-width: 1280px;
    --header-h: 80px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─────────────────────────────────── */
*, *::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(--text); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Typography ─────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
p { font-size: 0.95rem; line-height: 1.8; color: var(--text-muted); }

.section-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    color: var(--navy);
    margin-bottom: 1.5rem;
}

/* ─── Layout ─────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section--dark { background: var(--navy); }
.section--gray { background: var(--off-white); }

/* ─── Header / Nav ───────────────────────────── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--header-h);
    background: rgba(13, 27, 46, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(184, 151, 90, 0.2);
    transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
    background: rgba(13, 27, 46, 0.99);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.1em; }
.logo-grd {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
}
.logo-partners {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-left: 0.5rem;
    align-self: flex-end;
    padding-bottom: 0.2rem;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    padding: 0.5rem 1rem;
    border-radius: 2px;
    transition: color var(--transition);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 1rem; right: 1rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: rgba(255,255,255,0.8);
    transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Buttons ────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all var(--transition);
    cursor: pointer;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border: 1px solid var(--gold);
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(184, 151, 90, 0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.btn-dark {
    background: var(--navy);
    color: var(--white);
    border: 1px solid var(--navy);
}
.btn-dark:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
}

/* ─── Hero ───────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-h);
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(ellipse 70% 60% at 80% 50%, rgba(184,151,90,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 0% 100%, rgba(30,51,80,0.6) 0%, transparent 60%);
}
.hero-grid {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(184,151,90,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184,151,90,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}
.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}
.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.1;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}
.hero-subtitle {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(184,151,90,0.6), transparent);
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── Stats / Numbers ────────────────────────── */
.stats-bar {
    background: var(--gold);
    padding: 2.5rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-item {
    text-align: center;
    padding: 1rem 2rem;
    border-right: 1px solid rgba(13,27,46,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
    display: block;
}
.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(13,27,46,0.65);
    margin-top: 0.4rem;
}

/* ─── About Section ──────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.about-visual {
    position: relative;
}
.about-image-frame {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--navy-light);
    position: relative;
    overflow: hidden;
}
.about-image-frame::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(184,151,90,0.3);
    z-index: 1;
}
.about-image-frame .frame-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: rgba(184,151,90,0.2);
    letter-spacing: 0.1em;
}
.about-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 160px;
    height: 160px;
    background: var(--gold);
    z-index: -1;
}
.about-content .section-label { margin-top: 0; }
.about-text { margin-bottom: 2rem; }
.principles { margin-top: 2rem; }
.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--gray-200);
}
.principle-item:last-child { border-bottom: none; }
.principle-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    min-width: 2.5rem;
}
.principle-text { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }
.principle-text strong { color: var(--navy); font-weight: 500; display: block; font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.05em; }

/* ─── Services ───────────────────────────────── */
.services-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 4rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--gray-200);
}
.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.service-card:hover { background: var(--navy); }
.service-card:hover .service-icon,
.service-card:hover .service-title,
.service-card:hover .service-short { color: var(--white); }
.service-card:hover .service-icon { color: var(--gold); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-arrow { color: var(--gold); transform: translateX(4px); }
.service-icon {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
    transition: color var(--transition);
}
.service-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    transition: color var(--transition);
    font-weight: 500;
}
.service-short {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.7;
    transition: color var(--transition);
}
.service-arrow {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* ─── Team ───────────────────────────────────── */
.team-intro { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.team-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all var(--transition);
}
.team-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}
.team-photo {
    height: 300px;
    background: var(--navy-light);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: rgba(184,151,90,0.4);
}
.team-photo-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(13,27,46,0.9) 0%, transparent 100%);
    padding: 2rem 1.5rem 1.2rem;
}
.team-info { padding: 1.5rem; }
.team-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}
.team-role {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.team-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}
.area-tag {
    font-size: 0.72rem;
    padding: 0.25rem 0.7rem;
    background: var(--gold-pale);
    color: var(--gray-600);
    border-radius: 2px;
}
.team-contact {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}
.team-contact a {
    font-size: 0.8rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.team-contact a:hover { color: var(--navy); }

/* ─── Contact ────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}
.contact-info h2 { color: var(--navy); margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }
.contact-items { margin-top: 2.5rem; }
.contact-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--gray-200);
}
.contact-item:first-child { border-top: 1px solid var(--gray-200); }
.contact-item-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.contact-item-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.3rem;
}
.contact-item-value {
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 400;
}
.contact-item-value a:hover { color: var(--gold); }

/* ─── Form ───────────────────────────────────── */
.contact-form {
    background: var(--off-white);
    padding: 3rem;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
}
input, textarea, select {
    padding: 0.85rem 1rem;
    border: 1px solid var(--gray-200);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    border-radius: 2px;
    transition: border-color var(--transition);
    outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
textarea { resize: vertical; min-height: 140px; }
.form-success {
    padding: 1rem;
    background: rgba(184,151,90,0.1);
    border: 1px solid var(--gold);
    color: var(--navy);
    font-size: 0.9rem;
    margin-top: 1rem;
    display: none;
}

/* ─── Page Hero ──────────────────────────────── */
.page-hero {
    padding: calc(var(--header-h) + 4rem) 0 4rem;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    right: -100px; top: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,151,90,0.06) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 560px; margin-top: 1rem; font-size: 1rem; }
.breadcrumb {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ─── Service Detail Page ────────────────────── */
.services-list { display: flex; flex-direction: column; gap: 0; }
.service-detail {
    padding: 4rem 0;
    border-bottom: 1px solid var(--gray-200);
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 3rem;
    align-items: start;
}
.service-detail-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.5;
    line-height: 1;
    padding-top: 0.3rem;
}
.service-detail h3 { color: var(--navy); margin-bottom: 1rem; }
.service-detail p { margin-bottom: 0.75rem; white-space: pre-line; }

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.blog-card {
    border: 1px solid var(--gray-200);
    background: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover {
    box-shadow: 0 18px 48px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}
.blog-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--navy-light);
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}
.blog-card:hover .blog-card-image img { transform: scale(1.03); }
.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
}
.blog-meta,
.blog-post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.9rem;
    color: var(--gray-400);
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.blog-card h2 {
    font-size: 1.45rem;
    color: var(--navy);
}
.blog-card h2 a:hover { color: var(--gold); }
.blog-read-more {
    margin-top: auto;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.blog-empty {
    max-width: 680px;
    border-left: 3px solid var(--gold);
    padding-left: 2rem;
}
.blog-empty h2 { color: var(--navy); margin-bottom: 1rem; }
.blog-post-hero h1 { max-width: 900px; }
.blog-post-meta {
    margin-top: 1.5rem;
    color: rgba(255,255,255,0.55);
}
.blog-post-layout {
    max-width: 900px;
}
.blog-post-cover {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    margin-bottom: 3rem;
}
.blog-post-content {
    color: var(--text);
    font-size: 1.03rem;
    line-height: 1.95;
    overflow-wrap: anywhere;
}
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
    color: var(--navy);
    margin: 2rem 0 0.8rem;
}
.blog-post-content h2 { font-size: 2rem; }
.blog-post-content h3 { font-size: 1.55rem; }
.blog-post-content h4 { font-size: 1.25rem; }
.blog-post-content p { margin-bottom: 1.2rem; }
.blog-post-content ul,
.blog-post-content ol {
    margin: 0 0 1.4rem 1.4rem;
    color: var(--text-muted);
}
.blog-post-content li { margin-bottom: 0.45rem; }
.blog-post-content a {
    color: var(--gold);
    border-bottom: 1px solid rgba(184,151,90,0.35);
}
.blog-post-content blockquote {
    margin: 1.6rem 0;
    padding: 1rem 1.2rem;
    border-left: 3px solid var(--gold);
    background: var(--off-white);
    color: var(--gray-600);
    font-family: var(--font-display);
    font-size: 1.25rem;
}
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2.5rem;
}
.blog-tags span {
    background: var(--gold-pale);
    color: var(--gray-600);
    border-radius: 2px;
    padding: 0.3rem 0.7rem;
    font-size: 0.76rem;
}
.blog-disclaimer {
    margin-top: 2rem;
    padding: 1rem 1.2rem;
    border-left: 3px solid var(--gold);
    background: var(--off-white);
    color: var(--gray-600);
    font-size: 0.88rem;
}

/* ─── Footer ─────────────────────────────────── */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
}
.footer-top {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
    display: grid;
    grid-template-columns: 2fr 1fr 2fr 1.5fr;
    gap: 3rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
}
.footer-tagline {
    font-size: 0.87rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
}
.footer-social {
    display: inline-flex;
    width: 38px; height: 38px;
    border: 1px solid rgba(184,151,90,0.4);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    transition: all var(--transition);
}
.footer-social:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.site-footer h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.footer-nav ul, .footer-services ul, .footer-contact ul {
    display: flex; flex-direction: column; gap: 0.6rem;
}
.footer-nav a, .footer-services a {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}
.footer-nav a:hover, .footer-services a:hover { color: var(--gold); }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.87rem;
    color: rgba(255,255,255,0.55);
}
.footer-contact i { color: var(--gold); margin-top: 0.2rem; min-width: 14px; font-size: 0.8rem; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}
.footer-admin-link {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.2);
    transition: color var(--transition);
}
.footer-admin-link:hover { color: var(--gold); }

/* ─── Admin ──────────────────────────────────── */
.admin-body {
    background: #f0f0f0;
    font-family: var(--font-body);
    min-height: 100vh;
}
.admin-header {
    background: var(--navy);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.admin-header .logo-grd { font-size: 1.2rem; }
.admin-header .logo-partners { font-size: 0.7rem; }
.admin-nav {
    background: var(--navy-mid);
    padding: 0 2rem;
    display: flex;
    gap: 0;
    overflow-x: auto;
}
.admin-nav a {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.9rem 1.2rem;
    border-bottom: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
}
.admin-nav a:hover, .admin-nav a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}
.admin-main { max-width: 1100px; margin: 0 auto; padding: 2.5rem 2rem; }
.admin-card {
    background: var(--white);
    border-radius: 4px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.admin-card h2 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
}
.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.admin-form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.admin-form-group.full { grid-column: 1 / -1; }
.admin-form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray-600);
}
.admin-form-group input,
.admin-form-group textarea {
    border: 1px solid var(--gray-200);
    background: var(--off-white);
}
.admin-save {
    background: var(--gold);
    color: var(--navy);
    padding: 0.7rem 2rem;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all var(--transition);
}
.admin-save:hover { background: var(--gold-light); }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.87rem; }
.admin-table th {
    text-align: left;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-600);
    padding: 0.6rem 0.8rem;
    border-bottom: 2px solid var(--gray-200);
}
.admin-table td {
    padding: 0.8rem;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-800);
}
.admin-table tr:hover td { background: var(--off-white); }
.admin-btn-sm {
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 2px;
    transition: all var(--transition);
    font-weight: 500;
}
.admin-btn-edit { background: var(--gold-pale); color: var(--navy); }
.admin-btn-del { background: #fde8e8; color: #c0392b; }
.admin-btn-add { background: var(--navy); color: var(--white); padding: 0.6rem 1.2rem; font-size: 0.78rem; border-radius: 2px; font-weight: 600; }
.admin-alert { padding: 0.8rem 1rem; border-radius: 2px; font-size: 0.87rem; margin-bottom: 1rem; }
.admin-alert.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.admin-alert.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.blog-status {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 2px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.blog-status.published { background: #d4edda; color: #155724; }
.blog-status.draft { background: var(--gray-100); color: var(--gray-600); }
.markdown-help {
    background: var(--off-white);
    border-left: 3px solid var(--gold);
    padding: 1rem;
    margin-bottom: 0.85rem;
}
.markdown-help strong {
    display: block;
    color: var(--navy);
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
}
.markdown-help-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    margin-bottom: 0.75rem;
}
.markdown-help code {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 2px;
    padding: 0.35rem 0.5rem;
    color: var(--navy);
    font-size: 0.78rem;
    white-space: normal;
}
.markdown-help p {
    font-size: 0.82rem;
    margin: 0;
}
.markdown-preview-wrap {
    margin-top: 1rem;
    border: 1px solid var(--gray-200);
    background: var(--white);
}
.markdown-preview-title {
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-600);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.markdown-preview {
    min-height: 120px;
    padding: 1rem;
    font-size: 0.95rem;
    line-height: 1.75;
}
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
    background: var(--white);
    width: 90%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 4px;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform var(--transition);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}
.modal-header h3 { font-size: 1.1rem; color: var(--navy); font-family: var(--font-body); font-weight: 600; }
.modal-close { color: var(--gray-400); font-size: 1.3rem; }
.modal-close:hover { color: var(--navy); }

/* ─── Login ──────────────────────────────────── */
.login-page {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-box {
    background: var(--white);
    width: 100%;
    max-width: 400px;
    padding: 3rem;
    border-top: 4px solid var(--gold);
}
.login-box .logo-wrap {
    text-align: center;
    margin-bottom: 2rem;
}
.login-box h2 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 2rem;
}

/* ─── Animations ─────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    :root { --header-h: 64px; }
    .nav-links {
        display: none;
        position: fixed;
        top: var(--header-h); left: 0; right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 2rem;
        gap: 0.5rem;
        border-top: 1px solid rgba(184,151,90,0.2);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .nav-link { font-size: 0.9rem; padding: 0.8rem 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(13,27,46,0.1); }
    .services-intro { grid-template-columns: 1fr; gap: 1rem; }
    .services-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .hero-actions { flex-direction: column; }
    .form-grid { grid-template-columns: 1fr; }
    .admin-grid { grid-template-columns: 1fr; }
    .markdown-help-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 2rem 1.5rem; }
    .service-detail { grid-template-columns: 1fr; gap: 1rem; }
    .service-detail-num { font-size: 1.5rem; }
}

/* ─── GRD Minimal Identity Refresh ──────────────
   Content stays intact; this layer updates color, typography, spacing and component feel. */
:root {
    --navy: #151515;
    --navy-mid: #202020;
    --navy-light: #2b2b2b;
    --gold: #ffffff;
    --gold-light: #f3f3f3;
    --gold-pale: #eeeeee;
    --white: #ffffff;
    --off-white: #f7f7f7;
    --gray-100: #eeeeee;
    --gray-200: #dedede;
    --gray-400: #9b9b9b;
    --gray-600: #646464;
    --gray-800: #242424;
    --text: #171717;
    --text-muted: #666666;
    --font-display: 'Inter', Arial, sans-serif;
    --font-body: 'Inter', Arial, sans-serif;
    --header-h: 88px;
    --transition: 0.22s ease;
}

body {
    background: #ffffff;
    color: var(--text);
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 650;
    letter-spacing: 0;
}

h1 { font-size: clamp(2.7rem, 6vw, 5.6rem); line-height: 1; }
h2 { font-size: clamp(2rem, 4vw, 4rem); line-height: 1.05; }
h3 { font-size: clamp(1.12rem, 2vw, 1.55rem); }

p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.85;
}

.container {
    max-width: 1180px;
}

.section {
    padding: 7rem 0;
}

.section--gray {
    background: #f6f6f6;
}

.section--dark,
.site-footer,
.hero,
.page-hero,
.stats-bar {
    background: #151515;
}

.section-label {
    color: #777777;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
}

.section-title,
.contact-info h2,
.service-detail h3,
.blog-card h2,
.blog-empty h2,
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
    color: #151515;
}

.site-header {
    background: rgba(21,21,21,0.94);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: none;
    backdrop-filter: blur(18px);
}

.site-header.scrolled {
    background: rgba(21,21,21,0.98);
    box-shadow: none;
}

.nav-logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    line-height: 1;
}

.logo-grd {
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.18em;
}

.logo-partners {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255,255,255,0.82);
    letter-spacing: 0.56em;
    text-transform: none;
    margin-left: 0;
    padding-bottom: 0;
}

.nav-links {
    gap: 0.9rem;
}

.nav-link {
    color: rgba(255,255,255,0.68);
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    padding: 0.45rem 0;
    border-radius: 0;
}

.nav-link::after {
    left: 0;
    right: 0;
    background: #ffffff;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.btn {
    border-radius: 0;
    padding: 0.9rem 1.4rem;
    letter-spacing: 0.12em;
    box-shadow: none;
}

.btn-primary,
.admin-save {
    background: #ffffff;
    color: #151515;
    border-color: #ffffff;
}

.btn-primary:hover,
.admin-save:hover {
    background: #e8e8e8;
    border-color: #e8e8e8;
    box-shadow: none;
    transform: none;
}

.contact-form .btn-primary,
.admin-save {
    background: #151515;
    color: #ffffff;
    border-color: #151515;
}

.contact-form .btn-primary:hover,
.admin-save:hover {
    background: #2a2a2a;
    color: #ffffff;
    border-color: #2a2a2a;
}

.btn-outline {
    color: #ffffff;
    border-color: rgba(255,255,255,0.34);
}

.btn-outline:hover {
    color: #ffffff;
    border-color: #ffffff;
}

.btn-dark,
.admin-btn-add {
    background: #151515;
    color: #ffffff;
    border-color: #151515;
}

.btn-dark:hover {
    background: #2a2a2a;
    transform: none;
}

.hero {
    min-height: 92vh;
}

.hero::before,
.hero-grid,
.page-hero::before,
.about-accent,
.team-photo-overlay {
    display: none;
}

.hero-content {
    max-width: 980px;
    padding: 7rem 0 4rem;
}

.hero-eyebrow {
    color: rgba(255,255,255,0.58);
    font-size: 0.75rem;
    letter-spacing: 0.42em;
    margin-bottom: 2.4rem;
}

.hero-eyebrow::before,
.hero-scroll::after {
    background: rgba(255,255,255,0.45);
}

.hero h1 {
    color: #ffffff;
    font-weight: 700;
    max-width: 980px;
}

.hero h1 em {
    color: #ffffff;
}

.hero-subtitle,
.page-hero p,
.team-intro p {
    color: rgba(255,255,255,0.62);
}

.hero-scroll {
    color: rgba(255,255,255,0.36);
}

.page-hero {
    padding: calc(var(--header-h) + 5rem) 0 5rem;
}

.page-hero h1,
.team-intro h2 {
    color: #ffffff;
}

.breadcrumb {
    color: rgba(255,255,255,0.34);
}

.breadcrumb a {
    color: rgba(255,255,255,0.76);
}

.stats-bar {
    padding: 3.5rem 0;
}

.stat-item {
    border-right-color: rgba(255,255,255,0.12);
}

.stat-number {
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 750;
}

.stat-label {
    color: rgba(255,255,255,0.48);
}

.services-grid {
    grid-template-columns: 1fr;
    gap: 0;
    background: transparent;
    border-top: 1px solid #dcdcdc;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1.35fr auto;
    gap: 2rem;
    align-items: center;
    padding: 1.6rem 0;
    border-bottom: 1px solid #dcdcdc;
    background: transparent;
    box-shadow: none;
}

.service-card::before {
    display: none;
}

.service-card:hover {
    background: transparent;
}

.service-icon {
    display: none;
}

.service-title {
    color: #151515;
    font-family: var(--font-body);
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 0;
}

.service-short {
    color: #666666;
    font-size: 0.9rem;
}

.service-card:hover .service-title,
.service-card:hover .service-short {
    color: #151515;
}

.service-arrow,
.blog-read-more,
.team-contact a,
.footer-social,
.footer-nav a:hover,
.footer-services a:hover,
.footer-contact a:hover,
.footer-admin-link:hover {
    color: #151515;
}

.section--dark .service-arrow,
.section--dark .team-contact a,
.site-footer .footer-nav a:hover,
.site-footer .footer-services a:hover,
.site-footer .footer-contact a:hover,
.site-footer .footer-admin-link:hover {
    color: #ffffff;
}

.service-detail {
    grid-template-columns: 80px 1fr;
    border-bottom-color: #dedede;
}

.service-detail-num {
    color: #8b8b8b;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.14em;
}

.team-grid {
    gap: 1px;
    background: rgba(255,255,255,0.14);
}

.team-card {
    background: #151515;
    border: 0;
    color: #ffffff;
    box-shadow: none;
}

.team-card:hover {
    transform: none;
    box-shadow: none;
}

.team-photo {
    background: #202020;
}

.team-photo-placeholder {
    color: rgba(255,255,255,0.9);
    font-family: var(--font-body);
    font-weight: 800;
    letter-spacing: 0.16em;
}

.team-name {
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 700;
}

.team-role {
    color: rgba(255,255,255,0.5);
}

.area-tag {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.68);
}

.team-contact {
    border-top-color: rgba(255,255,255,0.1);
}

.contact-form {
    background: #f6f6f6;
}

input, textarea, select {
    border-radius: 0;
    border-color: #d8d8d8;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #151515;
}

.contact-item-icon {
    background: #151515;
    color: #ffffff;
}

.contact-item-value a:hover,
.blog-card h2 a:hover,
.blog-post-content a {
    color: #151515;
}

.blog-grid {
    gap: 1px;
    background: #dcdcdc;
}

.blog-card {
    border: 0;
    box-shadow: none;
}

.blog-card:hover {
    box-shadow: none;
    transform: none;
}

.blog-card-content {
    padding: 2rem;
}

.blog-card h2,
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
    font-family: var(--font-body);
    font-weight: 700;
}

.blog-empty,
.blog-post-content blockquote,
.blog-disclaimer,
.markdown-help {
    border-left-color: #151515;
    background: #f6f6f6;
}

.blog-tags span,
.admin-btn-edit {
    background: #eeeeee;
    color: #505050;
}

.site-footer h4,
.footer-contact i {
    color: #ffffff;
}

.footer-social {
    border-color: rgba(255,255,255,0.28);
    color: #ffffff;
}

.footer-social:hover {
    background: #ffffff;
    color: #151515;
    border-color: #ffffff;
}

.admin-header,
.admin-nav,
.login-page {
    background: #151515;
}

.admin-nav {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.admin-nav a:hover,
.admin-nav a.active {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.login-box {
    border-top-color: #151515;
}

@media (max-width: 1024px) {
    .service-card {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }
}

@media (max-width: 768px) {
    :root { --header-h: 74px; }

    .logo-grd {
        font-size: 1.5rem;
    }

    .logo-partners {
        font-size: 0.68rem;
        letter-spacing: 0.42em;
    }

    .nav-links {
        background: #151515;
        border-top-color: rgba(255,255,255,0.08);
    }

    .hero-content {
        padding: 5rem 0 3rem;
    }

    .section {
        padding: 4.5rem 0;
    }

    .stat-item {
        border-right: 0;
        border-bottom-color: rgba(255,255,255,0.12);
    }
}
