/* ============================================================
   MARGARET GEORGE — PREMIUM WHITE EDITORIAL THEME v2
   Enhanced: richer hero, branded logo, polished images,
   animated gradient orbs, bolder 3D presence
   ============================================================ */

:root {
    /* Color Palette — Warm White */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F7F4;
    --bg-tertiary: #F0EDE8;
    --bg-dark: #1A1A1A;
    --text-primary: #1A1A1A;
    --text-secondary: #555555;
    --text-tertiary: #888888;
    --text-light: #F8F7F4;
    --accent: #8B734A;
    --accent-light: #B89B6A;
    --accent-hover: #6E5A38;
    --accent-pale: #D4C4A0;
    --accent-subtle: rgba(139, 115, 74, 0.08);
    --border-color: rgba(0, 0, 0, 0.07);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.12);

    /* Typography */
    --font-display: 'Cormorant Garamond', 'Playfair Display', serif;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1200px;
    --container-padding: 0 5%;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 1, 0.5, 1);
    --transition: all 0.4s var(--ease);
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none; /* Hide default cursor for custom one */
}

/* Make links and buttons also hide default cursor */
a, button, .magnetic-btn {
    cursor: none;
}

/* ==================== CUSTOM CURSOR ==================== */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease, border-color 0.4s ease, background-color 0.4s ease, opacity 0.4s ease;
}

/* Cursor states */
.cursor.active {
    width: 0px;
    height: 0px;
    background-color: transparent;
}

.cursor-follower.active {
    width: 60px;
    height: 60px;
    background-color: rgba(139, 115, 74, 0.1);
    border-color: transparent;
    backdrop-filter: blur(2px);
}

.cursor-follower.read-mode {
    width: 80px;
    height: 80px;
    background-color: var(--accent);
    border-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.cursor-follower.read-mode::after {
    content: 'READ';
}

/* Hide on mobile devices */
@media (hover: none) and (pointer: coarse) {
    .cursor, .cursor-follower {
        display: none;
    }
    body, a, button, .magnetic-btn {
        cursor: auto;
    }
}

::selection {
    background-color: var(--accent);
    color: white;
}

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

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

/* ==================== SCROLL PROGRESS ==================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    z-index: 1001;
    width: 0%;
    transition: width 0.05s linear;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.2;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

/* Section label with line decoration */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--accent);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 44px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.section-label.light {
    color: var(--accent-light);
}

.section-label.light::before {
    background: var(--accent-light);
}

.section-label.center {
    display: block;
    text-align: center;
    padding-left: 0;
}

.section-label.center::before {
    display: none;
}

.accent-line {
    width: 50px;
    height: 2px;
    background: var(--accent);
    margin-bottom: 2rem;
}

.accent-line.center {
    margin: 0 auto 3.5rem auto;
}

.section-header {
    text-align: center;
    margin-bottom: 1rem;
}

/* Split text GSAP utility classes */
.word-container {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}
.word {
    display: inline-block;
    transform: translateY(100%);
}

/* ==================== CONTAINER & SECTIONS ==================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

/* ==================== BUTTONS ==================== */
.btn-primary,
.btn-outline,
.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 115, 74, 0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 115, 74, 0.4);
}

.btn-primary.large {
    padding: 18px 50px;
    font-size: 1.05rem;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(0, 0, 0, 0.12);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-nav {
    background: var(--accent);
    color: white;
    padding: 10px 26px;
    font-size: 0.85rem;
}

.btn-nav:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* ============================================================
   BRANDED LOGO — FRAMED MONOGRAM
   ============================================================ */
.logo {
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 102;
}

.logo-frame {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid var(--accent);
    padding: 7px 18px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

/* Fill-from-bottom hover animation */
.logo-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: translateY(101%);
    transition: transform 0.45s var(--ease);
    z-index: 0;
}

.logo:hover .logo-frame::before {
    transform: translateY(0);
}

.logo-letter {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
    transition: color 0.4s var(--ease);
    line-height: 1;
}

.logo:hover .logo-letter {
    color: white;
}

/* Diamond separator between M and G */
.logo-diamond {
    width: 5px;
    height: 5px;
    background: var(--accent);
    transform: rotate(45deg);
    position: relative;
    z-index: 1;
    transition: background 0.4s var(--ease);
    flex-shrink: 0;
}

.logo:hover .logo-diamond {
    background: white;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 5%;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}

.nav-links a:not(.btn-nav):hover {
    color: var(--accent);
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav Overlay Backdrop */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(4px);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ============================================================
   HERO SECTION — RICH, LAYERED, ALIVE
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Warm radial gradient instead of flat white */
    background:
        radial-gradient(ellipse at 25% 50%, rgba(139, 115, 74, 0.04) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 30%, rgba(184, 155, 106, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(240, 237, 232, 0.6) 0%, transparent 60%),
        var(--bg-primary);
}

/* Three.js canvas — increased visibility */
#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

/* Animated gradient orbs — floating warm-toned blurs */
.hero-orbs {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 115, 74, 0.12) 0%, transparent 70%);
    top: 5%;
    left: 55%;
    animation: float-orb-1 18s infinite ease-in-out;
}

.orb-2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(184, 155, 106, 0.10) 0%, transparent 70%);
    top: 55%;
    left: 10%;
    animation: float-orb-2 22s infinite ease-in-out;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 196, 160, 0.09) 0%, transparent 70%);
    top: 20%;
    left: 30%;
    animation: float-orb-3 15s infinite ease-in-out;
}

.orb-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(139, 115, 74, 0.07) 0%, transparent 70%);
    bottom: 10%;
    right: 15%;
    animation: float-orb-1 20s infinite ease-in-out reverse;
}

@keyframes float-orb-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -30px) scale(1.12); }
    50% { transform: translate(-25px, 40px) scale(0.92); }
    75% { transform: translate(20px, 20px) scale(1.05); }
}

@keyframes float-orb-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-35px, -25px) scale(1.08); }
    66% { transform: translate(30px, 15px) scale(0.95); }
}

@keyframes float-orb-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    20% { transform: translate(25px, 35px) scale(1.1); }
    50% { transform: translate(-15px, -20px) scale(0.9); }
    80% { transform: translate(-30px, 25px) scale(1.05); }
}

/* Giant ghosted watermark monogram */
.hero-watermark {
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(15rem, 22vw, 28rem);
    font-weight: 300;
    color: rgba(139, 115, 74, 0.025);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    z-index: 3;
    pointer-events: none;
    letter-spacing: 4vw;
    white-space: nowrap;
    user-select: none;
}

/* Hero layout */
.hero-inner {
    position: relative;
    z-index: 10;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    padding-top: 80px;
}

/* Hero text */
.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-name {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    /* Subtle shimmer gradient on text */
    background: linear-gradient(
        105deg,
        var(--text-primary) 0%,
        var(--text-primary) 40%,
        var(--accent) 50%,
        var(--text-primary) 60%,
        var(--text-primary) 100%
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-shimmer 6s ease-in-out infinite;
}

@keyframes text-shimmer {
    0%, 100% { background-position: 100% center; }
    50% { background-position: 0% center; }
}

.hero-description {
    font-size: 1.12rem;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.85;
    margin-bottom: 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-tertiary);
    font-weight: 600;
}

.meta-value {
    font-size: 0.88rem;
    color: var(--text-primary);
    font-weight: 500;
}

.meta-divider {
    width: 1px;
    height: 36px;
    background: var(--border-color);
}

/* ============================================================
   HERO IMAGE — 3D tilt frame with golden glow
   ============================================================ */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform 0.15s ease-out;
    transform-style: preserve-3d;
}

/* Golden glow behind the image */
.hero-image-frame::after {
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(139, 115, 74, 0.12) 0%, transparent 65%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(25px);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero-image-frame img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s var(--ease);
    /* Polish the image — brighter, crisper */
    filter: brightness(1.06) contrast(1.08) saturate(1.05);
}

.hero-image-frame:hover img {
    transform: scale(1.03);
}

/* Decorative offset border */
.hero-image-accent {
    position: absolute;
    top: 22px;
    right: -18px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.3;
    transition: var(--transition);
}

.hero-image-wrapper:hover .hero-image-accent {
    top: 16px;
    right: -12px;
    opacity: 0.55;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    background: var(--bg-secondary);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-grid.reverse .journey-text {
    order: 1;
}

.section-grid.reverse .journey-image {
    order: 2;
}

/* ============================================================
   3D TILT IMAGE WRAPPER — About & Journey
   ============================================================ */
.image-3d-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform-style: preserve-3d;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    will-change: transform;
}

.image-3d-wrapper:hover {
    box-shadow: var(--shadow-xl);
}

.image-3d-wrapper img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
    /* Cleaner image treatment */
    filter: brightness(1.04) contrast(1.06) saturate(0.9);
}

.image-3d-wrapper:hover img {
    transform: scale(1.04);
    filter: brightness(1.06) contrast(1.08) saturate(1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26, 26, 26, 0.1) 100%);
    pointer-events: none;
}

/* ==================== EXPERTISE SECTION ==================== */
.expertise-section {
    background: var(--bg-primary);
}

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

.expertise-card {
    background: var(--bg-primary);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    cursor: default;
    will-change: transform;
}

/* Animated left border accent */
.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--accent), var(--accent-light));
    transition: height 0.5s var(--ease);
}

.expertise-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.expertise-card:hover::before {
    height: 100%;
}

/* Watermark number */
.card-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(139, 115, 74, 0.07);
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s var(--ease);
}

.expertise-card:hover .card-number {
    color: rgba(139, 115, 74, 0.14);
}

.card-icon {
    color: var(--accent);
    margin-bottom: 1.5rem;
    transition: transform 0.4s var(--ease);
}

.expertise-card:hover .card-icon {
    transform: translateY(-2px);
}

.card-icon svg {
    width: 32px;
    height: 32px;
}

.expertise-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.expertise-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ==================== TRUSTED NETWORK ==================== */
.trusted-section {
    background: var(--bg-secondary);
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.trusted-card {
    background: var(--bg-primary);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.trusted-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.trusted-quote {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 3rem;
    position: relative;
}

/* Subtle quote marks */
.trusted-quote::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: -15px;
    font-family: var(--font-display);
    font-size: 5rem;
    color: rgba(139, 115, 74, 0.1);
    z-index: 0;
    line-height: 1;
}

.trusted-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    z-index: 1;
    position: relative;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.author-info h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== JOURNEY SECTION ==================== */
.journey-section {
    background: var(--bg-primary);
}

.journey-text p strong {
    color: var(--accent);
    font-weight: 600;
}

/* ==================== EDUCATION / CREDENTIALS ==================== */
.education-section {
    background: var(--bg-primary);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.credential-card {
    background: var(--bg-secondary);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.credential-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.cred-icon {
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.cred-degree {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cred-school {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cred-extra {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    line-height: 1.6;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-dark);
    padding: 100px 0 0 0;
    color: var(--text-light);
}

.footer-cta {
    text-align: center;
    padding-bottom: 80px;
}

.footer-cta h2 {
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto 1.5rem auto;
}

.footer-cta p {
    color: rgba(248, 247, 244, 0.55);
    max-width: 500px;
    margin: 0 auto 2.5rem auto;
}

.footer-cta .btn-primary {
    background: var(--accent-light);
    box-shadow: 0 4px 20px rgba(139, 115, 74, 0.35);
}

.footer-cta .btn-primary:hover {
    background: var(--accent);
    box-shadow: 0 10px 35px rgba(139, 115, 74, 0.45);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Footer logo — matching framed monogram (inverted colors) */
.footer-logo-frame {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(184, 155, 106, 0.4);
    padding: 5px 14px;
}

.footer-logo-letter {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-light);
    letter-spacing: 2px;
    line-height: 1;
}

.footer-logo-diamond {
    width: 4px;
    height: 4px;
    background: var(--accent-light);
    transform: rotate(45deg);
    flex-shrink: 0;
    opacity: 0.6;
}

.footer-info > span:last-child {
    font-size: 0.85rem;
    color: rgba(248, 247, 244, 0.4);
}

.copyright {
    font-size: 0.8rem;
    color: rgba(248, 247, 244, 0.35);
    margin-bottom: 0;
}

/* ==================== RESPONSIVE ==================== */

/* Tablets & Small Desktops */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding-top: 120px;
    }

    .hero-description {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-meta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image-wrapper {
        max-width: 380px;
        margin: 0 auto;
    }

    .hero-image-accent {
        display: none;
    }

    .hero-image-frame img {
        height: 420px;
    }

    .hero-watermark {
        font-size: 18vw;
    }
}

@media (max-width: 900px) {
    :root {
        --section-padding: 80px 0;
    }

    .section-grid,
    .section-grid.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-grid.reverse .journey-text {
        order: 2;
    }

    .section-grid.reverse .journey-image {
        order: 1;
    }

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

    .credentials-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .trusted-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .image-3d-wrapper img {
        height: 360px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        height: 100dvh;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s var(--ease);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a:not(.btn-nav)::after {
        display: none;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 102;
    }

    .hero {
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-inner {
        padding-top: 100px;
        gap: 2rem;
    }

    .hero-name {
        font-size: clamp(2.8rem, 10vw, 3.8rem);
    }

    .hero-subtitle {
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        margin-top: 1.5rem;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .hero-meta {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .meta-divider {
        width: 40px;
        height: 1px;
    }

    .meta-item {
        align-items: center;
    }

    .hero-image-wrapper {
        max-width: 320px;
    }

    .hero-image-frame img {
        height: 360px;
    }

    .orb-1 { width: 300px; height: 300px; }
    .orb-2 { width: 250px; height: 250px; }
    .orb-3 { width: 200px; height: 200px; }
    .orb-4 { width: 180px; height: 180px; }

    .section-label {
        padding-left: 0;
    }

    .section-label::before {
        display: none;
    }

    .about-text,
    .journey-text {
        text-align: center;
    }

    .accent-line {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-cta .btn-primary.large {
        padding: 16px 36px;
        font-size: 1rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero-inner {
        padding-top: 90px;
    }

    .hero-name {
        font-size: clamp(2.4rem, 9vw, 3rem);
    }

    .hero-image-frame img {
        height: 300px;
    }

    .image-3d-wrapper img {
        height: 260px;
    }

    .expertise-card {
        padding: 2rem 1.5rem;
    }

    .credential-card {
        padding: 2rem 1.5rem;
    }

    .footer-info {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-cta h2 {
        font-size: 1.5rem;
    }

    .footer-cta p {
        font-size: 0.95rem;
    }
}
