@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

:root {
  --ink: #1a1814;
  --cream: #f7f4ee;
  --warm-white: #fdfbf7;
  --accent: #c8392b;
  --accent-light: #e8d5d2;
  --gold: #b8860b;
  --mid: #7a7368;
  --border: #ddd8ce;
  --nav-height: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--ink);
}
.serif-italic { font-family: 'Cormorant Garamond', serif; font-style: italic; }

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

/* ─── NAVBAR ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--accent); color: #fff !important;
  padding: 8px 20px; font-size: 0.78rem !important;
  letter-spacing: 1.2px !important;
  transition: background 0.2s, transform 0.1s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--ink) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); transition: all 0.3s;
}

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--warm-white);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--ink); transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 32px;
  font-size: 2rem; cursor: pointer; color: var(--mid);
}

/* ─── PAGE WRAPPER ─── */
.page { padding-top: var(--nav-height); }
.section { padding: 80px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 32px; }

/* ─── HERO ─── */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex; align-items: center;
  background: var(--cream);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 45%; height: 100%;
  background: var(--ink);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-text { max-width: 560px; }
.hero-kicker {
  font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-kicker::before {
  content: ''; display: block; width: 40px; height: 1px; background: var(--accent);
}
.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 900; line-height: 1.05;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic; color: var(--accent);
  display: block;
}
.hero-desc {
  font-size: 1.05rem; color: var(--mid); max-width: 460px;
  margin-bottom: 40px; line-height: 1.8;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #fff;
  padding: 16px 36px; font-size: 0.82rem;
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
  transition: background 0.25s, transform 0.15s;
}
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); }
.btn-primary .arrow { transition: transform 0.25s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--ink); color: var(--ink);
  padding: 14px 32px; font-size: 0.82rem;
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
  transition: all 0.25s;
}
.btn-secondary:hover { background: var(--ink); color: #fff; }

.hero-visual {
  display: flex; justify-content: flex-end;
  position: relative;
}
.hero-visual-card {
  width: 100%; max-width: 380px;
  background: var(--warm-white);
  padding: 40px;
  position: relative;
}
.hero-visual-card::before {
  content: '"'; position: absolute; top: -20px; left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 8rem; color: var(--accent); opacity: 0.15;
  line-height: 1;
}
.hero-stat {
  display: flex; flex-direction: column; margin-bottom: 32px;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 900; line-height: 1;
  color: var(--ink);
}
.hero-stat-label {
  font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--mid); margin-top: 4px;
}

/* ─── DIVIDER ─── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; margin-bottom: 16px; }
.section-header p { color: var(--mid); max-width: 540px; margin: 0 auto; }
.ornament {
  display: inline-flex; align-items: center; gap: 16px;
  margin-bottom: 16px; color: var(--accent);
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 500;
}
.ornament::before, .ornament::after {
  content: ''; display: block; width: 32px; height: 1px; background: var(--accent);
}

/* ─── ARTICLE CARDS ─── */
.articles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.article-card {
  cursor: pointer;
  transition: transform 0.3s;
}
.article-card:hover { transform: translateY(-4px); }
.article-card-img {
  width: 100%; aspect-ratio: 16/10; overflow: hidden;
  background: var(--cream); margin-bottom: 20px;
  position: relative;
}
.article-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.article-card:hover .article-card-img img { transform: scale(1.04); }
.article-card-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--cream) 0%, var(--accent-light) 100%);
  display: flex; align-items: center; justify-content: center;
}
.article-card-img-placeholder svg { width: 48px; height: 48px; opacity: 0.3; }

.article-card-meta {
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 10px;
}
.article-card h3 {
  font-size: 1.2rem; font-weight: 700; margin-bottom: 10px;
  line-height: 1.3;
}
.article-card p { font-size: 0.9rem; color: var(--mid); line-height: 1.7; }
.article-card-footer {
  margin-top: 16px;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.article-card-author {
  font-size: 0.8rem; color: var(--mid); font-weight: 500;
}
.read-more {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent);
  display: flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.read-more:hover { gap: 10px; }

/* ─── FEATURED (big card) ─── */
.article-featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--cream); margin-bottom: 60px;
  cursor: pointer; transition: transform 0.3s;
}
.article-featured:hover { transform: translateY(-3px); }
.article-featured-img {
  aspect-ratio: unset; min-height: 400px; overflow: hidden;
}
.article-featured-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s;
}
.article-featured:hover .article-featured-img img { transform: scale(1.03); }
.article-featured-body { padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; }
.article-featured-tag {
  display: inline-block;
  background: var(--accent); color: #fff;
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; margin-bottom: 20px; font-weight: 500;
}
.article-featured-body h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; margin-bottom: 16px;
}
.article-featured-body p { color: var(--mid); margin-bottom: 24px; }

/* ─── NEWS ISSUES ─── */
.issue-block { margin-bottom: 64px; }
.issue-header {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 32px; padding-bottom: 20px;
  border-bottom: 2px solid var(--ink);
}
.issue-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900; color: var(--cream);
  background: var(--ink); padding: 8px 20px;
  line-height: 1;
}
.issue-info h3 { font-size: 1.5rem; font-weight: 700; }
.issue-info span { font-size: 0.8rem; color: var(--mid); letter-spacing: 1px; }

/* ─── WRITERS ─── */
.writers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
}
.writer-card { text-align: center; }
.writer-avatar {
  width: 140px; height: 140px; border-radius: 50%;
  margin: 0 auto 24px;
  background: var(--cream);
  overflow: hidden; border: 3px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700; color: var(--mid);
}
.writer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.writer-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.writer-card .writer-role {
  font-size: 0.75rem; color: var(--accent);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
}
.writer-card p { font-size: 0.88rem; color: var(--mid); }

/* ─── SINGLE ARTICLE ─── */
.article-single { padding: 60px 0 100px; }
.article-single-header { margin-bottom: 48px; text-align: center; }
.article-single-tag {
  display: inline-block; background: var(--accent); color: #fff;
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; margin-bottom: 20px;
}
.article-single-header h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; margin-bottom: 20px;
}
.article-single-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; color: var(--mid); font-size: 0.85rem;
}
.article-single-meta .dot { width: 4px; height: 4px; background: var(--mid); border-radius: 50%; }
.article-single-hero {
  width: 100%; max-height: 520px; overflow: hidden;
  margin-bottom: 52px;
}
.article-single-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-body {
  font-size: 1.05rem; line-height: 1.9; color: var(--ink);
  font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
}
.article-body p { margin-bottom: 1.5em; }
.article-body h2 { font-size: 1.6rem; margin: 2em 0 0.8em; }
.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 28px; margin: 2em 0;
  font-style: italic; color: var(--mid);
  background: var(--cream);
}

/* ─── CMS ─── */
.cms-page { background: var(--ink); min-height: 100vh; color: var(--cream); padding-top: 0; }
.cms-sidebar {
  width: 240px; background: rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.08);
  min-height: 100vh; padding: 24px 0;
  position: fixed; top: 0; left: 0; bottom: 0;
}
.cms-sidebar-logo {
  padding: 0 24px 24px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 900;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.cms-sidebar-logo span { color: var(--accent); }
.cms-nav { list-style: none; }
.cms-nav li a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 24px;
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
  transition: all 0.2s; letter-spacing: 0.3px;
}
.cms-nav li a:hover, .cms-nav li a.active {
  color: #fff; background: rgba(255,255,255,0.06);
}
.cms-nav li a.active { border-left: 2px solid var(--accent); }
.cms-nav .icon { font-size: 1.1rem; }

.cms-main {
  margin-left: 240px;
  padding: 40px 48px;
  min-height: 100vh;
}
.cms-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 40px;
}
.cms-topbar h1 {
  font-size: 1.6rem; font-weight: 700; color: var(--cream);
}
.cms-section { display: none; }
.cms-section.active { display: block; }

.cms-table {
  width: 100%; border-collapse: collapse;
}
.cms-table th {
  text-align: left; padding: 12px 16px;
  font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.35); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cms-table td {
  padding: 16px 16px; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem; color: rgba(255,255,255,0.75);
  vertical-align: middle;
}
.cms-table tr:hover td { background: rgba(255,255,255,0.03); }

.badge {
  display: inline-block; padding: 3px 10px;
  font-size: 0.68rem; letter-spacing: 1px; text-transform: uppercase;
  border-radius: 2px; font-weight: 500;
}
.badge-news { background: rgba(200,57,43,0.2); color: var(--accent); }
.badge-creative { background: rgba(184,134,11,0.2); color: var(--gold); }
.badge-pub { background: rgba(100,200,100,0.15); color: #6bba6b; }
.badge-draft { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); }

.cms-actions { display: flex; gap: 8px; }
.btn-xs {
  padding: 5px 12px; font-size: 0.72rem;
  letter-spacing: 0.5px; cursor: pointer; border: none;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.btn-edit { background: rgba(255,255,255,0.08); color: #fff; }
.btn-edit:hover { background: rgba(255,255,255,0.15); }
.btn-delete { background: rgba(200,57,43,0.15); color: var(--accent); }
.btn-delete:hover { background: rgba(200,57,43,0.3); }
.btn-pub { background: rgba(100,200,100,0.12); color: #6bba6b; }
.btn-pub:hover { background: rgba(100,200,100,0.25); }

/* ─── MODAL / FORM ─── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  align-items: flex-start; justify-content: center;
  overflow-y: auto; padding: 40px 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #1e1c19; border: 1px solid rgba(255,255,255,0.08);
  width: 100%; max-width: 680px;
  padding: 40px; position: relative;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn { from { opacity:0; transform: translateY(-20px); } to { opacity:1; transform: none; } }
.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.4); font-size: 1.4rem;
  transition: color 0.2s;
}
.modal-close:hover { color: #fff; }
.modal h2 { color: var(--cream); font-size: 1.4rem; margin-bottom: 28px; }

.form-row { margin-bottom: 20px; }
.form-row label {
  display: block; font-size: 0.75rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 8px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--cream); padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  outline: none; transition: border-color 0.2s;
  resize: vertical;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--accent);
}
.form-row textarea { min-height: 200px; }
.form-row select option { background: #1e1c19; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-actions { display: flex; gap: 12px; margin-top: 28px; justify-content: flex-end; }

/* ─── STAT CARDS ─── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 24px;
}
.stat-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 900; color: #fff;
  margin-bottom: 6px;
}
.stat-card-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; }

/* ─── FOOTER ─── */
footer {
  background: var(--ink); color: var(--cream); padding: 72px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 64px; margin-bottom: 64px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900;
  margin-bottom: 16px;
}
.footer-logo span { color: var(--accent); }
.footer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.8; }
.footer-col h4 {
  font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 20px; color: var(--cream);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem; color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px; display: flex;
  align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: rgba(255,255,255,0.25);
}

/* ─── MISC ─── */
.breadcrumb {
  font-size: 0.78rem; color: var(--mid); margin-bottom: 8px;
  display: flex; gap: 8px; align-items: center;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }

.back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--mid); margin-bottom: 48px;
  transition: color 0.2s, gap 0.2s;
}
.back-btn:hover { color: var(--accent); gap: 12px; }

.page-hero {
  background: var(--cream); padding: 80px 0 60px;
  text-align: center; border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; margin-bottom: 16px; }
.page-hero p { color: var(--mid); max-width: 500px; margin: 0 auto; }

/* ─── CMS LOGIN ─── */
.cms-login {
  min-height: 100vh; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.login-box {
  width: 100%; max-width: 420px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 52px 48px;
}
.login-box h1 {
  font-size: 1.8rem; color: var(--cream);
  margin-bottom: 8px;
}
.login-box p { color: rgba(255,255,255,0.4); font-size: 0.88rem; margin-bottom: 36px; }
.login-error { color: var(--accent); font-size: 0.85rem; margin-top: 12px; }

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 9999;
  background: var(--ink); color: var(--cream);
  padding: 16px 24px; font-size: 0.88rem;
  border-left: 3px solid var(--accent);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transform: translateY(20px); opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}
.toast.show { transform: none; opacity: 1; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .writers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero::before { display: none; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero { min-height: 80vh; }

  .articles-grid { grid-template-columns: 1fr; }
  .article-featured { grid-template-columns: 1fr; }
  .article-featured-img { min-height: 240px; }
  .article-featured-body { padding: 32px 28px; }

  .writers-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .cms-sidebar { display: none; }
  .cms-main { margin-left: 0; padding: 24px 20px; }
  .cms-sidebar.mobile-open { display: block; position: fixed; z-index: 9000; width: 80vw; }

  .form-grid-2 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }

  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }
.delay-4 { animation-delay: 0.46s; }

/* scrolled reveal */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
