/* ===================================
   ARGOS | Advisory & Forensics
   Editorial Design — Dark + Lime Green
   =================================== */

/* --- Design Tokens --- */
:root {
  --black: #000000;
  --bg-dark: #0a0a0a;
  --bg-services: #f2f2f0;
  --bg-card: #111111;

  --lime: #20B2AA;
  --lime-dim: #1a9490;
  --lime-glow: rgba(32, 178, 170, 0.12);

  --white: #ffffff;
  --text-light: #f5f5f5;
  --text-muted: rgba(245, 245, 245, 0.90);
  --text-dark: #1a1a1a;
  --text-dark-muted: #555555;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-dark: rgba(0, 0, 0, 0.08);

  --font-serif: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.4s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

::selection {
  background: var(--lime);
  color: var(--black);
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(32, 178, 170, 0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--lime); }

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  padding: 16px 0;
  background: rgba(10, 10, 10, 0.98);
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  z-index: 101;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lime);
}

.logo-sep {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0 2px;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

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

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-link:hover {
  color: var(--text-light);
}

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

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--text-light);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background: var(--lime);
}

.nav-toggle.active span:nth-child(2) { opacity: 0; }

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background: var(--lime);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.35) 30%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.8) 100%),
    radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  padding: 0 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.4);
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 44px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

/* Discover Solutions button — matches original white pill style */
.btn-discover {
  display: inline-block;
  background: var(--lime);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  padding: 18px 48px;
  border-radius: 999px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(32, 178, 170, 0.25);
}

.btn-discover:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(32, 178, 170, 0.3);
}

/* ===================================
   SHARED SECTION STYLES
   =================================== */
.section-intro {
  margin-bottom: clamp(32px, 5vw, 56px);
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.heading-bar {
  width: 80px;
  height: 3px;
  background: var(--lime);
  border-radius: 2px;
}

.body-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.body-text:last-child {
  margin-bottom: 0;
}

.body-text--lead {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
}

/* ===================================
   WHO WE ARE
   =================================== */
.about {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-light);
}

.about-body {
  max-width: 780px;
}

/* ===================================
   WHAT WE DO
   =================================== */
.services-section {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-light);
}

.services-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 48px;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--lime);
  border-radius: 12px;
  padding: clamp(28px, 4vw, 44px);
  transition: all 0.3s ease;
}

.service-card:hover {
  background: rgba(255,255,255,0.05);
  border-left-color: var(--lime);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.service-card .body-text {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.services-cta {
  margin-top: 8px;
}

.link-arrow {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--lime);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.01em;
}

.link-arrow:hover {
  color: var(--white);
  transform: translateX(4px);
}

/* ===================================
   WHY ARGOS
   =================================== */
.why-section {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-light);
}

.why-body {
  max-width: 780px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.why-cta {
  text-align: center;
  padding: clamp(40px, 6vw, 72px) 0;
  border-top: 1px solid var(--border-light);
}

.cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}

.cta-subtext {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 32px;
}



/* ===================================
   MULTI-PAGE COMPONENTS
   =================================== */

/* Active nav link */
.nav-link--active {
  color: var(--lime) !important;
}

/* Solid navbar for inner pages (no hero image behind) */
.navbar--solid {
  background: rgba(10, 10, 10, 0.98);
  border-bottom: 1px solid var(--border-light);
}

/* Page header for inner pages */
.page-header {
  padding: 140px 0 60px;
  background: var(--bg-dark);
  text-align: center;
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 16px;
}

.heading-bar--center {
  margin: 0 auto;
}

/* Generic dark section */
.section-dark {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-light);
}

/* Tighter spacing for consecutive dark sections (About page bio) */
.section-dark + .section-dark,
.about-hero + .section-dark {
  padding: 16px 0 24px;
  border-top: none;
}

.section-body {
  max-width: 780px;
}

.section-body--narrow {
  max-width: 700px;
}

/* ===================================
   SERVICES HERO — Dramatic Statement
   =================================== */
.services-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow behind the text */
.services-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(32, 178, 170, 0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.services-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.services-hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
}

.services-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-light);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.text-accent {
  color: var(--lime);
}

.services-hero-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), rgba(32, 178, 170, 0.3));
  border-radius: 2px;
  margin: 0 auto 32px;
  box-shadow: 0 0 16px rgba(32, 178, 170, 0.25);
}

.services-hero-desc {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Practice sections (Services page) */
.practice-header {
  margin-bottom: clamp(32px, 5vw, 48px);
}

.practice-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 16px;
}

.practice-header .body-text {
  max-width: 700px;
}

.practice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
}

.practice-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: clamp(24px, 3vw, 36px);
  transition: all 0.3s ease;
}

.practice-item:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(32, 178, 170, 0.2);
  transform: translateY(-2px);
}

.practice-item-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 12px;
}

.practice-item .body-text {
  font-size: 0.88rem;
  line-height: 1.7;
}

/* Section divider */
.section-divider {
  background: var(--bg-dark);
  padding: 0;
}

.divider-line {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 0;
}

/* Under Construction */
.under-construction {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-dark);
  padding: 120px 24px 80px;
}

.uc-icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
}

.uc-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 16px;
}

.uc-text {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.uc-contact {
  margin: 32px 0;
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-hero {
  padding: 140px 0 20px;
  background: var(--bg-dark);
}

.about-hero-split {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.about-photo-wrap {
  width: clamp(200px, 22vw, 280px);
  height: clamp(250px, 28vw, 350px);
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--border-light);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}

.about-name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 8px;
}

.about-credentials {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

/* Bio content wrapper */
.bio-content {
  max-width: 780px;
}

.bio-section-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}

/* Credentials grid */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 40px);
}

.credential-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}

.credential-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.credential-list li {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}

.credential-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

/* Person divider between team members */
.person-divider {
  padding: clamp(40px, 6vw, 80px) 0 0;
  background: var(--bg-dark);
}

.person-divider-line {
  border: none;
  border-top: 1px solid rgba(32, 178, 170, 0.2);
  margin: 0;
}

/* Subsequent about-hero (no extra padding for navbar offset) */
.about-hero--subsequent {
  padding-top: clamp(40px, 6vw, 80px);
}

/* Reset section collapsing after the person divider */
.person-divider + .about-hero--subsequent + .section-dark {
  padding: 16px 0 24px;
  border-top: none;
}

/* Two-column credentials grid */
.credentials-grid--two {
  grid-template-columns: 1fr 1fr;
}



/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-light);
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.contact-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--lime);
  opacity: 0.6;
}

.contact-link:hover {
  color: var(--lime);
}

/* Contact Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 44px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-light);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px var(--lime-glow);
}

.form-field textarea {
  resize: vertical;
  min-height: 90px;
}

.form-field select option {
  background: var(--bg-card);
  color: var(--text-light);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--lime);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(170, 255, 0, 0.2);
}

.btn-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon {
  transform: translateX(4px);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  padding: 40px 0 28px;
  border-top: 1px solid var(--border-light);
  background: var(--bg-dark);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.footer-brand .logo-text { font-size: 1.1rem; }
.footer-brand .logo-sub { font-size: 0.85rem; }

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

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

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

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

/* Hero fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s var(--ease-out) forwards;
}

.fade-delay-1 { animation-delay: 0.3s; }
.fade-delay-2 { animation-delay: 0.6s; }

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 900px) {
  .services-cards,
  .practice-grid,
  .credentials-grid,
  .credentials-grid--two {
    grid-template-columns: 1fr;
  }

  .about-hero-split {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .about-hero-split .heading-bar {
    margin: 0 auto;
  }

  .contact-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-links .nav-link {
    font-size: 1.2rem;
    font-family: var(--font-serif);
  }

  .nav-toggle { display: flex; }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    white-space: normal;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}
