/*
Theme Name: Lithara
Theme URI: https://lithara.com
Author: Lithara Studio
Author URI: https://lithara.com
Description: A luxurious, rich business & agency WordPress theme inspired by stone, mineral, and the timeless. Featuring elegant typography, gold accents, and refined dark aesthetics.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lithara
Tags: business, agency, luxury, dark, portfolio, one-page, custom-colors, custom-logo, featured-images, full-width-template, theme-options
*/

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

:root {
  --black:       #0F0E0C;
  --deep:        #1A1814;
  --surface:     #242018;
  --border:      #2E2A24;
  --muted:       #3A3630;
  --stone:       #5A5248;
  --sand:        #8A8070;
  --cream:       #C8B89A;
  --gold:        #C8A882;
  --gold-light:  #E0C89A;
  --text:        #E8E0D2;
  --text-soft:   #A89880;
  --white:       #F5F0E8;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;

  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:   1200px;
  --section-pad: 100px 0;
}

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

body {
  background: var(--deep);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(48px, 8vw, 88px); }
h2 { font-size: clamp(36px, 5vw, 60px); }
h3 { font-size: clamp(24px, 3vw, 36px); }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 16px; }

p { margin-bottom: 1.5rem; color: var(--text-soft); font-size: 16px; line-height: 1.8; }
p:last-child { margin-bottom: 0; }

.display-text {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 300;
  line-height: 0.9;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}

.section-title { margin-bottom: 1.5rem; }
.section-lead {
  font-size: 18px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--sand);
  max-width: 600px;
  line-height: 1.7;
}

/* ─── Layout ────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: var(--section-pad); }
.section-inner { padding: 80px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 0.5px solid var(--stone);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--sand);
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost:hover { color: var(--gold); }

/* ─── Header / Navigation ───────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all var(--transition);
}

#site-header.scrolled {
  background: rgba(15, 14, 12, 0.95);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  border-bottom: 0.5px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.site-logo span { color: var(--gold); font-style: italic; }

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

.site-nav a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  text-decoration: none;
  transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a.current { color: var(--text); }

.nav-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 10px 22px;
  text-decoration: none;
  transition: background var(--transition);
}

.nav-cta:hover { background: var(--gold-light); color: var(--black); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 0.5px;
  background: var(--text);
  transition: all var(--transition);
}

/* ─── Hero Section ──────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(36,32,24,0.8) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(26,24,20,0.6) 0%, transparent 60%);
  z-index: 0;
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, var(--border) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, var(--border) 80px);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.hero-headline { margin-bottom: 2rem; }

.hero-headline h1 {
  font-size: clamp(56px, 9vw, 100px);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

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

.hero-desc {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--sand);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 3rem;
}

.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 60px;
  border-top: 0.5px solid var(--border);
  margin-top: 60px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin-top: 6px;
}

.hero-image-block {
  position: relative;
}

.hero-image-frame {
  background: var(--surface);
  border: 0.5px solid var(--border);
  padding: 3px;
  position: relative;
}

.hero-image-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.hero-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 16px 20px;
}

.hero-image-badge strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  display: block;
  line-height: 1;
}

.hero-image-badge span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ─── Services Section ──────────────────────────────────────── */
#services {
  background: var(--black);
  border-top: 0.5px solid var(--border);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
  padding-bottom: 60px;
  border-bottom: 0.5px solid var(--border);
}

.service-card {
  padding: 40px;
  background: var(--surface);
  border: 0.5px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover { background: var(--deep); }
.service-card:hover::before { opacity: 0.3; }

.service-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 24px;
  display: block;
  transition: color var(--transition);
}

.service-card:hover .service-number { color: var(--muted); }

.service-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--text);
}

.service-card p { color: var(--stone); font-size: 14px; margin-bottom: 24px; }

.service-link {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link::after { content: '→'; transition: transform var(--transition); }
.service-link:hover::after { transform: translateX(4px); }
.service-link:hover { color: var(--gold-light); }

/* ─── About / Story Section ─────────────────────────────────── */
#about {
  background: var(--deep);
  border-top: 0.5px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-image-stack {
  position: relative;
  height: 560px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 80%;
  object-fit: cover;
  border: 0.5px solid var(--border);
}

.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border: 0.5px solid var(--border);
  outline: 20px solid var(--deep);
}

.about-text .section-lead { margin-bottom: 2rem; }

.about-qualities {
  list-style: none;
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-qualities li {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--sand);
  padding-left: 20px;
  border-left: 1px solid var(--gold);
  opacity: 0.7;
  transition: opacity var(--transition);
}

.about-qualities li:hover { opacity: 1; }

/* ─── Work / Portfolio ──────────────────────────────────────── */
#work {
  background: var(--black);
  border-top: 0.5px solid var(--border);
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}

.work-item {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.work-item:first-child {
  grid-row: span 2;
}

.work-item img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.work-item:hover img { transform: scale(1.04); }

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,14,12,0.9) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.work-item:hover .work-overlay { opacity: 1; }

.work-info h4 {
  font-size: 22px;
  color: var(--text);
  margin-bottom: 6px;
}

.work-info span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Testimonials ──────────────────────────────────────────── */
#testimonials {
  background: var(--deep);
  border-top: 0.5px solid var(--border);
}

.testimonials-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 2.5rem;
}

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

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 0.5px solid var(--border);
}

.author-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text);
}

.author-role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 3rem;
}

.testimonial-dots span {
  width: 20px;
  height: 1px;
  background: var(--muted);
  cursor: pointer;
  transition: background var(--transition);
}

.testimonial-dots span.active { background: var(--gold); }

/* ─── Clients / Logos ───────────────────────────────────────── */
#clients {
  background: var(--black);
  border-top: 0.5px solid var(--border);
  padding: 60px 0;
}

.clients-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 40px;
}

.clients-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.client-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.05em;
  transition: color var(--transition);
  text-decoration: none;
}

.client-logo:hover { color: var(--sand); }

/* ─── Team ──────────────────────────────────────────────────── */
#team {
  background: var(--deep);
  border-top: 0.5px solid var(--border);
}

.team-card {
  position: relative;
  overflow: hidden;
}

.team-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(40%);
  transition: all var(--transition);
}

.team-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.team-info {
  padding: 20px 0;
  border-top: 0.5px solid var(--border);
}

.team-info h4 {
  font-size: 22px;
  color: var(--text);
  margin-bottom: 4px;
}

.team-role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Contact / CTA ─────────────────────────────────────────── */
#contact {
  background: var(--surface);
  border-top: 0.5px solid var(--border);
}

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

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

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--deep);
  border: 0.5px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  padding: 14px 16px;
  width: 100%;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.contact-details { padding-top: 20px; }

.contact-item {
  padding: 24px 0;
  border-bottom: 0.5px solid var(--border);
}

.contact-item:first-child { border-top: 0.5px solid var(--border); }

.contact-item-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}

.contact-item-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--text);
}

.contact-item-value a { color: var(--text); text-decoration: none; }
.contact-item-value a:hover { color: var(--gold); }

/* ─── Footer ────────────────────────────────────────────────── */
#colophon {
  background: var(--black);
  border-top: 0.5px solid var(--border);
  padding: 60px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  margin-bottom: 40px;
  border-bottom: 0.5px solid var(--border);
}

.footer-brand .site-logo { font-size: 32px; }

.footer-brand p {
  font-size: 14px;
  color: var(--stone);
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 20px;
  font-weight: 400;
}

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

.footer-col ul li a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
  font-family: var(--font-body);
}

.footer-col ul li a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

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

.footer-social a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-social a:hover { color: var(--gold); }

/* ─── Blog / Posts ──────────────────────────────────────────── */
.post-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  overflow: hidden;
  transition: border-color var(--transition);
}

.post-card:hover { border-color: var(--muted); }

.post-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.post-card:hover .post-card-image img { transform: scale(1.05); }

.post-card-body { padding: 28px; }

.post-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.post-card h3 { font-size: 22px; margin-bottom: 12px; }
.post-card h3 a { color: var(--text); text-decoration: none; }
.post-card h3 a:hover { color: var(--gold); }
.post-card p { font-size: 14px; color: var(--stone); }

/* ─── Single Post ───────────────────────────────────────────── */
.single-post-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}

.single-post-hero .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.post-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
  max-width: 820px;
}

.post-content {
  max-width: 760px;
  margin: 60px auto;
}

.post-content h2, .post-content h3 { margin: 2rem 0 1rem; }
.post-content p { color: var(--text-soft); margin-bottom: 1.5rem; }
.post-content blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin: 2.5rem 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--sand);
}

/* ─── Page Banner ───────────────────────────────────────────── */
.page-banner {
  background: var(--black);
  padding: 160px 0 80px;
  border-bottom: 0.5px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-banner h1 { font-size: clamp(40px, 6vw, 72px); }

/* ─── Utility ───────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-sand { color: var(--sand); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ─── Divider Line ──────────────────────────────────────────── */
.gold-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}

/* ─── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-block { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-stack { height: 360px; margin-bottom: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .services-header { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 70px 0; }
  .container { padding: 0 24px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-item:first-child { grid-row: auto; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .clients-row { gap: 30px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .menu-toggle { display: flex; }
  .site-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }
  .site-nav.open { display: flex; }
  .site-nav a { font-size: 16px; }
  .nav-cta { display: none; }
}
