/* DAR Law Office - Design System */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;1,14..32,400&display=swap');

:root {
  --gold: #c4a35a;
  --gold-light: #d4b96a;
  --gold-dark: #a88a3f;
  --cream: #faf9f6;
  --cream-dark: #f0ede6;
  --charcoal: #2d2d2d;
  --charcoal-light: #555;
  --border: #e0dcd5;
  --border-light: #ede9e2;
  --white: #ffffff;
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-height: 72px;
  --max-width: 1200px;
  --section-pad: 100px;
  --transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html { font-size: 18px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

a { color: var(--gold-dark); text-decoration: none; transition: color 0.6s ease; }
a:hover { color: #0055cc; }

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

/* Navbar */
.nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-height); background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 1px 3px rgba(0,0,0,0.04); z-index: 1000; display: flex; align-items: center; transition: transform 0.35s ease; }
.nav-hidden { transform: translateY(-100%); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 40px; height: 100%; }
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-brand-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name { color: var(--charcoal); font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; letter-spacing: 0.01em; line-height: 1.2; }
.nav-brand-sub { color: var(--gold-dark); font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; }

.nav-links { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-links a { color: var(--charcoal); font-family: var(--font-heading); font-size: 0.8rem; font-weight: 500; padding: 8px 16px; letter-spacing: 0.02em; transition: color 0.6s ease; white-space: nowrap; }
.nav-links a:hover { color: var(--gold-dark); text-decoration: none; }
.nav-links a.active { color: var(--gold-dark); }

.nav-mobile-btn { display: none; background: none; border: none; padding: 8px; cursor: pointer; }
.nav-mobile-btn span { display: block; width: 22px; height: 1.5px; background: var(--charcoal); margin: 5px 0; transition: var(--transition); }

/* Page header */
.page-header { margin-top: var(--nav-height); background: var(--cream-dark); padding: 60px 40px; text-align: center; }
.page-header.light { background: var(--cream); }
.page-header h1 { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 600; color: var(--charcoal); line-height: 1.2; margin-bottom: 12px; }
.page-header.light h1 { color: var(--charcoal); }
.page-header p { font-size: 1rem; color: var(--charcoal-light); max-width: 600px; margin: 0 auto; font-weight: 400; }
.page-header.light p { color: var(--charcoal-light); }
.page-header .breadcrumb { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-dark); margin-bottom: 16px; font-weight: 500; }

/* Hero (homepage) - NY Editorial style */
.hero { margin-top: var(--nav-height); height: calc(100vh - var(--nav-height)); min-height: 550px; max-height: 900px; background: var(--cream); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }

/* Radial mask: clear circle center, fades edges */
.hero-mask { position: absolute; inset: 0; background: radial-gradient(circle at 50% 48%, var(--cream) 0%, var(--cream) 32%, rgba(250,249,246,0.85) 45%, transparent 55%); z-index: 2; pointer-events: none; }

/* Watermark text stretching diagonally */
.hero-watermark { position: absolute; inset: 0; z-index: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; user-select: none; pointer-events: none; }
.hero-watermark .wm-text { font-family: var(--font-heading); font-size: 12vw; font-weight: 900; color: rgba(45,45,45,0.06); line-height: 0.9; letter-spacing: -0.02em; text-align: justify; word-break: break-word; max-width: 90%; mix-blend-mode: overlay; }
.hero-slides { position: relative; z-index: 3; width: 100%; }
.hero-slide { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; z-index: 0; transition: opacity 1s ease; padding: 0 60px; pointer-events: none; }
.hero-slide.active { opacity: 1; z-index: 1; pointer-events: auto; }

.hero-bg-layer { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-bg-item { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; background-size: cover; background-position: center; }
.hero-bg-item.active { opacity: 1; }
.hero-slide-inner { max-width: 860px; width: 100%; text-align: center; }
.hero-slide .tag { display: inline-flex; align-items: center; gap: 14px; font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold-dark); font-weight: 600; margin-bottom: 20px; }
.hero-slide .tag::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold-dark); }
.hero-slide .tag::after { content: ''; display: block; width: 28px; height: 1px; background: var(--gold-dark); }

.hero-divider { display: block; width: 1px; height: 16px; background: var(--gold-dark); margin: 0 auto 20px; }
.hero-slide h2 { font-family: var(--font-heading); font-weight: 500; color: var(--charcoal); line-height: 1.15; margin: 0 auto 28px; max-width: min(70vw, 580px); word-break: break-word; font-size: clamp(2.2rem, 5vw, 3.6rem); }
.hero-slide h2 a { color: var(--charcoal); text-decoration: none; transition: color 0.6s ease; }
.hero-slide h2 a:hover { color: var(--gold-dark); }
.hero-cta-arrow { display: inline-block; font-size: 1.4rem; color: var(--gold-dark); opacity: 0.6; transition: all var(--transition); cursor: pointer; margin-bottom: 48px; }
.hero-cta-arrow:hover { opacity: 1; transform: translateY(4px); }

/* Pill slider indicator */
.hero-dash-indicator { position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
.hero-dash-indicator button { width: 24px; height: 4px; border: none; border-radius: 2px; background: rgba(45,45,45,0.15); cursor: pointer; padding: 0; transition: all var(--transition); }
.hero-dash-indicator button:hover { background: rgba(45,45,45,0.35); }
.hero-dash-indicator button.active { background: var(--gold-dark); width: 32px; }

/* Scroll hint stays */
.hero-scroll-hint { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(45,45,45,0.2); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; animation: pulseDash 2s ease-in-out infinite; cursor: default; user-select: none; }
@keyframes pulseDash { 0%, 100% { opacity: 0.15; } 50% { opacity: 0.4; } }

/* News slider (lesser news - half screen, manual, centered with flank peeks) */
.news-slider { min-height: 0; display: flex; align-items: center; justify-content: center; gap: 0; overflow: hidden; padding: 0; position: relative; }
.news-slider-track { position: relative; display: flex; align-items: center; justify-content: center; transition: transform 0.5s ease; min-height: 220px; }
.news-slide-card { position: absolute; flex: none; width: clamp(320px, 45vw, 500px); padding: 32px 26px; text-decoration: none; transition: all 0.5s ease; background: var(--white); border-top: 3px solid var(--gold); opacity: 0.35; transform: scale(0.85); cursor: pointer; pointer-events: none; }
.news-slide-card.active { opacity: 1; transform: scale(1); z-index: 2; pointer-events: auto; }
.news-slide-card:hover { box-shadow: none; }
.news-slide-card.active:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.news-slide-card.active:hover .news-slide-card-heading { color: #0055cc; }
.news-slide-card .news-slide-date { display: block; font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-dark); font-weight: 600; margin-bottom: 10px; }
.news-slide-card-heading { font-family: var(--font-heading); font-size: 1.5rem; color: var(--charcoal); line-height: 1.3; font-weight: 600; transition: color 0.6s ease; }
.news-slide-card p { font-size: 0.85rem; color: var(--charcoal-light); line-height: 1.5; margin-top: 8px; }
.news-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; background: var(--white); border: 1.5px solid var(--border); color: var(--charcoal); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; z-index: 3; border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: all var(--transition); }
.news-arrow:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.news-arrow:disabled { opacity: 0.2; cursor: default; pointer-events: none; }
.news-prev { left: -8px; }
.news-next { right: -8px; }

/* Spacious section padding for less-dense feel */
.section-spacious { padding-top: 100px; padding-bottom: 100px; }

/* Section */
.section { padding: var(--section-pad) 40px; }
.section-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold-dark); font-weight: 600; margin-bottom: 8px; }
.section h2 { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 600; color: var(--charcoal); margin-bottom: 12px; line-height: 1.25; }
.section p.lead { font-size: 1.05rem; color: var(--charcoal-light); max-width: 600px; line-height: 1.7; }

.container { max-width: var(--max-width); margin: 0 auto; width: 100%; }

/* Cards Grid */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; }

.card { background: var(--white); border: 1px solid var(--border-light); padding: 36px 28px; transition: all var(--transition); cursor: pointer; position: relative; }
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); border-color: var(--border); }
.card h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.card p { font-size: 0.85rem; color: var(--charcoal-light); line-height: 1.65; }

.card .card-icon { font-size: 1.8rem; margin-bottom: 16px; display: block; }

/* Notable work cards (homepage) */
.notable-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.notable-card { background: var(--white); border: 1px solid var(--border-light); padding: 32px 24px; transition: all var(--transition); }
.notable-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.notable-card .tag { display: inline-block; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-dark); font-weight: 600; margin-bottom: 12px; }
.notable-card h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; line-height: 1.3; }
.notable-card p { font-size: 0.8rem; color: var(--charcoal-light); }

/* Stats row */
.stats-row { display: flex; justify-content: center; gap: 60px; margin-top: 40px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700; color: var(--charcoal); }
.stat-label { font-size: 0.75rem; color: var(--charcoal-light); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* Practice Area Detail */
.practice-layout { display: grid; grid-template-columns: 260px 1fr; gap: 60px; margin-top: 40px; }

.sidebar { position: sticky; top: calc(var(--nav-height) + 40px); align-self: start; }
.sidebar h4 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--charcoal-light); margin-bottom: 16px; }
.sidebar ul { list-style: none; }
.sidebar li { margin-bottom: 2px; }
.sidebar a { display: block; padding: 10px 14px; font-size: 0.8rem; color: var(--charcoal); border-left: 2px solid transparent; transition: all var(--transition); }
.sidebar a:hover, .sidebar a.active { color: var(--charcoal); border-left-color: var(--gold); background: rgba(196,163,90,0.06); text-decoration: none; font-weight: 500; }

.main-content h2 { font-family: var(--font-heading); font-size: 1.7rem; color: var(--charcoal); margin-bottom: 20px; }
.main-content p { margin-bottom: 16px; line-height: 1.75; }
.main-content h3 { font-family: var(--font-heading); font-size: 1.25rem; color: var(--charcoal); margin: 36px 0 12px; }

/* Team grid */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 24px; margin-top: 40px; }
.team-card { background: var(--white); border: 1px solid var(--border-light); text-align: center; padding: 36px 20px; transition: all var(--transition); }
.team-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.team-card .avatar { width: 90px; height: 90px; border-radius: 50%; background: var(--cream-dark); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.8rem; color: var(--charcoal-light); font-weight: 600; }
.team-card h3 { font-family: var(--font-heading); font-size: 1.15rem; color: var(--charcoal); margin-bottom: 2px; }
.team-card .role { font-size: 0.75rem; color: var(--gold-dark); font-weight: 500; margin-bottom: 8px; }
.team-card .brief { font-size: 0.78rem; color: var(--charcoal-light); }

/* Insights */
.insights-list { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
.insight-item { display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--border-light); align-items: start; }
.insight-date { text-align: center; }
.insight-date .day { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--charcoal); display: block; line-height: 1; }
.insight-date .month { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-dark); display: block; }
.insight-content h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; cursor: pointer; }
.insight-content h3:hover { color: var(--gold-dark); }
.insight-content .meta { font-size: 0.7rem; color: var(--charcoal-light); margin-bottom: 6px; }
.insight-content p { font-size: 0.85rem; color: var(--charcoal-light); line-height: 1.65; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 40px; }
.contact-info h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--charcoal); margin-bottom: 24px; }
.contact-detail { margin-bottom: 28px; }
.contact-detail .label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-dark); font-weight: 600; margin-bottom: 4px; }
.contact-detail .value { font-size: 0.95rem; color: var(--charcoal); }
.contact-detail .value a { color: var(--charcoal); }
.contact-detail .value a:hover { color: var(--gold-dark); }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 500; color: var(--charcoal); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 2px solid #ccc; background: var(--white); font-family: var(--font-body); font-size: 0.9rem; color: var(--charcoal); transition: border 0.2s; outline: none; border-radius: 6px; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { min-height: 120px; resize: vertical; }

/* Buttons */
.btn { display: inline-block; padding: 16px 40px; font-size: 0.85rem; font-weight: 500; font-family: var(--font-body); cursor: pointer; transition: all var(--transition); letter-spacing: 0.03em; text-decoration: none; }
.btn-primary { background: var(--gold); color: var(--white); border: none; }
.btn-primary:hover { background: var(--gold-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--charcoal); border: 1.5px solid var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-white { background: transparent; color: var(--charcoal); border: 1.5px solid var(--border); }
.btn-white:hover { background: var(--charcoal); color: var(--white); }
.btn-gold-outline { background: transparent; color: var(--gold-dark); border: 1px solid var(--gold-dark); }
.btn-gold-outline:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* News card on homepage */
.news-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.news-card { background: var(--white); border: 1px solid var(--border-light); padding: 0; overflow: hidden; transition: all var(--transition); cursor: pointer; }
.news-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.news-card-body { padding: 24px; }
.news-card .date-tag { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-dark); font-weight: 600; }
.news-card h4 { font-family: var(--font-heading); font-size: 1.05rem; color: var(--charcoal); margin: 8px 0; line-height: 1.3; }
.news-card p { font-size: 0.8rem; color: var(--charcoal-light); }

/* Compact news grid (subdued, not the hero) */
.news-mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.news-mini { border-top: 2px solid var(--gold); padding-top: 16px; cursor: pointer; transition: all var(--transition); display: block; text-decoration: none; }
.news-mini:hover { border-color: var(--charcoal); }
.news-mini:hover h4 { color: #0055cc; }
.news-mini .news-date { display: block; font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-dark); font-weight: 600; margin-bottom: 8px; }
.news-mini h4 { font-family: var(--font-heading); font-size: 0.95rem; color: var(--charcoal); line-height: 1.3; font-weight: 600; transition: color 0.6s ease; }

/* Smaller buttons */
.btn-sm { padding: 10px 24px; font-size: 0.7rem; }

/* Footer (no direct contact - trust-first) */
.footer { background: #d5d0c5; color: var(--charcoal-light); padding: 60px 40px 36px; margin-top: var(--section-pad); border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; max-width: var(--max-width); margin: 0 auto; }
.footer-brand .footer-name { font-family: var(--font-heading); font-size: 1.2rem; color: var(--charcoal); font-weight: 600; margin-bottom: 8px; }
.footer-brand p { font-size: 0.72rem; line-height: 1.7; max-width: 280px; }
.footer h5 { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-dark); margin-bottom: 16px; font-weight: 600; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer a { font-size: 0.72rem; color: var(--charcoal-light); transition: color 0.6s ease; }
.footer a:hover { color: var(--charcoal); text-decoration: none; }
.footer-bottom { max-width: var(--max-width); margin: 0 auto; padding-top: 32px; margin-top: 40px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-size: 0.68rem; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: var(--charcoal-light); }
.footer-bottom a:hover { color: var(--charcoal); }

/* Empty state / placeholder */
.empty-state { text-align: center; padding: 60px 40px; background: var(--cream-dark); }
.empty-state h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--charcoal); margin-bottom: 8px; }
.empty-state p { font-size: 0.85rem; color: var(--charcoal-light); }

/* Bio detail page */
.bio-layout { display: grid; grid-template-columns: 280px 1fr; gap: 50px; margin-top: 40px; }
.bio-sidebar { text-align: center; }
.bio-avatar { width: 180px; height: 180px; border-radius: 50%; background: var(--cream-dark); margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 3rem; color: var(--charcoal-light); font-weight: 600; }
.bio-sidebar h3 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--charcoal); }
.bio-sidebar .bio-role { font-size: 0.8rem; color: var(--gold-dark); margin-bottom: 16px; font-weight: 500; }
.bio-meta { font-size: 0.72rem; color: var(--charcoal-light); margin-bottom: 6px; }
.bio-content h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--charcoal); margin: 28px 0 10px; }
.bio-content p { line-height: 1.75; margin-bottom: 14px; }

/* Breadcrumb navigation */
.breadcrumb { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.breadcrumb a { color: var(--charcoal-light); }
.breadcrumb span { color: var(--gold); }

/* Alt background sections */
.section-alt { background: var(--cream-dark); }

/* Filter bar */
.filter-bar { display: flex; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.filter-bar button { background: transparent; border: 1px solid var(--border); padding: 8px 18px; font-size: 0.7rem; cursor: pointer; transition: all var(--transition); color: var(--charcoal); font-family: var(--font-body); letter-spacing: 0.03em; }
.filter-bar button:hover, .filter-bar button.active { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }

/* WhatsApp link styling (only on contact page) */
.wa-link { color: var(--gold-dark); font-weight: 500; }
.wa-link:hover { color: var(--charcoal); }

/* Map placeholder */
.map-placeholder { width: 100%; height: 300px; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; color: var(--charcoal-light); font-size: 0.85rem; border: 1px solid var(--border); }

/* Responsive */
@media (max-width: 1024px) {
  .notable-grid, .news-preview { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .practice-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .bio-layout { grid-template-columns: 1fr; }
  .bio-sidebar { text-align: left; display: flex; gap: 24px; align-items: center; }
  .bio-avatar { width: 100px; height: 100px; font-size: 2rem; margin: 0; }
  .hero-controls { gap: 16px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; --section-pad: 60px; }
  html { font-size: 16px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .hero { height: auto; min-height: 400px; }
  .hero-slide { padding: 0 24px; }
  .hero-slide-inner { padding: 60px 0; }
  .hero-controls { bottom: 20px; }
  .hero-scroll-hint { bottom: 28px; }
  .section { padding: var(--section-pad) 20px; }
  .section h2 { font-size: 1.8rem; }
  .card-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .stats-row { gap: 30px; }
  .stat-number { font-size: 2rem; }
  .page-header { padding: 40px 20px; }
  .page-header h1 { font-size: 2rem; }
  .insight-item { grid-template-columns: 70px 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
/* validated */
