/* ═══════════════════════════════════════
   RAHEEL AHMED — EDITORIAL WHITE
   Fonts loaded via <link> in HTML
═══════════════════════════════════════ */
:root {
  --white:      #ffffff;
  --off-white:  #fafaf8;
  --paper:      #f5f4f0;
  --paper-mid:  #ede9e1;
  --ink:        #0a0a0a;
  --ink-mid:    #1a1a1a;
  --ink-soft:   #2e2e2e;
  --charcoal:   #4a4a4a;
  --ash:        #8a8a8a;
  --silver:     #b8b8b8;
  --rule:       #d8d4cc;
  --rule-light: #ece9e2;
  --accent-red: #c0392b;
  --font-display: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --font-serif:   'Instrument Serif', 'Georgia', serif;
  --font-body:    'Instrument Sans', 'Helvetica Neue', Arial, sans-serif;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:  0.2s cubic-bezier(0.4,0,0.2,1);
  --t-med:   0.4s cubic-bezier(0.16,1,0.3,1);
  --t-slow:  0.8s cubic-bezier(0.16,1,0.3,1);
  --max-w:  1200px;
  --gutter: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { background: var(--white); color: var(--ink); font-family: var(--font-body); font-weight: 300; line-height: 1.65; overflow-x: hidden; }
::selection { background: var(--ink); color: var(--white); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--silver); }
::-webkit-scrollbar-thumb:hover { background: var(--charcoal); }

/* ── LOADING SCREEN */
.loading-screen { position: fixed; inset: 0; background: var(--white); z-index: 99999; display: flex; align-items: center; justify-content: center; transition: opacity 0.5s ease; }
.loading-screen.hidden { opacity: 0; pointer-events: none; }
.loading-inner { text-align: center; }
.loading-name { font-family: var(--font-display); font-size: clamp(2rem,5vw,4rem); font-weight: 700; letter-spacing: -0.02em; color: var(--ink); clip-path: inset(0 100% 0 0); animation: loadReveal 1s cubic-bezier(0.16,1,0.3,1) 0.1s forwards; }
.loading-rule { width: 0; height: 1px; background: var(--ink); margin: 16px auto 0; animation: loadRule 0.8s cubic-bezier(0.16,1,0.3,1) 0.7s forwards; }
.loading-sub { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ash); opacity: 0; animation: fadeUp 0.5s ease 1s forwards; margin-top: 12px; }
@keyframes loadReveal { to { clip-path: inset(0 0% 0 0); } }
@keyframes loadRule { to { width: 120px; } }

/* ── NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(24px,5vw,80px); background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color 0.3s, box-shadow 0.3s; }
.nav.scrolled { border-bottom-color: var(--rule); box-shadow: 0 1px 0 var(--rule); }
.nav-logo { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); text-decoration: none; }
.nav-logo em { font-style: italic; font-weight: 400; color: var(--charcoal); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); position: relative; padding-bottom: 2px; transition: color var(--t-fast); text-decoration: none; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -1px; width: 0; height: 1px; background: var(--ink); transition: width var(--t-med); }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { padding: 8px 22px !important; background: var(--ink) !important; color: var(--white) !important; font-size: 0.7rem !important; letter-spacing: 0.12em !important; font-weight: 500 !important; transition: background var(--t-fast) !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--ink-soft) !important; color: var(--white) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: var(--t-fast); }

/* ── HERO */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 440px; grid-template-rows: 1fr auto; padding-top: 64px; overflow: hidden; position: relative; }
.hero-editorial { padding: clamp(48px,5vw,88px) clamp(40px,5vw,72px); display: flex; flex-direction: column; justify-content: center; background: var(--white); }
.hero-issue { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; opacity: 0; animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 1.2s forwards; }
.hero-issue-rule { width: 48px; height: 1px; background: var(--ink); flex-shrink: 0; }
.hero-issue-text { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ash); }
.hero-issue-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent-red); flex-shrink: 0; }
.hero-headline { font-family: var(--font-display); font-size: clamp(2.8rem,4.8vw,5.6rem); font-weight: 900; line-height: 0.97; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 28px; overflow: hidden; }
.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .line-inner { display: block; transform: translateY(105%); animation: slideUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero-headline .line:nth-child(1) .line-inner { animation-delay: 1.3s; }
.hero-headline .line:nth-child(2) .line-inner { animation-delay: 1.45s; }
.hero-headline .line:nth-child(3) .line-inner { animation-delay: 1.6s; }
.hero-headline .line:nth-child(4) .line-inner { animation-delay: 1.75s; }
.hero-headline em { font-style: italic; font-weight: 400; }
.hero-deck { font-size: 1rem; font-weight: 300; color: var(--charcoal); line-height: 1.8; max-width: 480px; margin-bottom: 44px; border-left: 2px solid var(--rule); padding-left: 20px; opacity: 0; animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 2s forwards; }
.hero-byline { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; opacity: 0; animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 2.1s forwards; }
.hero-byline-rule { width: 32px; height: 1px; background: var(--rule); }
.hero-byline-text { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ash); }
.hero-byline-name { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; color: var(--charcoal); text-transform: uppercase; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 2.2s forwards; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--rule); opacity: 0; animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 2.3s forwards; }
.hero-tag { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 12px; border: 1px solid var(--rule); color: var(--ash); transition: border-color var(--t-fast), color var(--t-fast); }
.hero-tag:hover { border-color: var(--ink); color: var(--ink); }
.hero-photo-panel { position: relative; background: var(--paper); overflow: hidden; grid-row: 1; grid-column: 2; }
.hero-photo-panel img { width: 100%; height: 100%; object-fit: cover; object-position: top 10%; filter: grayscale(15%) contrast(1.05); transform: scale(1.08); animation: photoReveal 1.2s cubic-bezier(0.16,1,0.3,1) 1.1s forwards; display: block; min-height: 560px; }
.hero-photo-panel::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom,transparent 60%,rgba(245,244,240,0.3) 100%); z-index: 1; pointer-events: none; }
.hero-photo-caption { position: absolute; bottom: 32px; left: -24px; writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ash); z-index: 2; opacity: 0; animation: fadeIn 0.6s ease 2s forwards; }
.hero-stats-strip { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--rule); background: var(--white); }
.hero-stat { padding: 22px 28px; border-right: 1px solid var(--rule); opacity: 0; animation: fadeUp 0.5s ease forwards; }
.hero-stat:nth-child(1) { animation-delay: 2.3s; }
.hero-stat:nth-child(2) { animation-delay: 2.4s; }
.hero-stat:nth-child(3) { animation-delay: 2.5s; }
.hero-stat:nth-child(4) { animation-delay: 2.6s; border-right: none; }
.hero-stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.hero-stat-label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ash); }

/* ── MARQUEE */
.marquee-strip { background: var(--ink); padding: 14px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 48px; animation: marquee 28s linear infinite; white-space: nowrap; width: max-content; }
.marquee-track span { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 20px; }
.marquee-track span::after { content: '◆'; font-size: 0.3rem; color: rgba(255,255,255,0.25); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS */
.section-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(24px,5vw,80px); }
.section-header { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; padding: 80px 0 56px; border-bottom: 1px solid var(--rule); }
.section-issue { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ash); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.section-issue::before { content: ''; display: block; width: 28px; height: 1px; background: var(--ink); flex-shrink: 0; }
.section-title { font-family: var(--font-display); font-size: clamp(2.2rem,3.8vw,3.8rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); }
.section-title em { font-style: italic; font-weight: 400; color: var(--charcoal); }
.section-sub { font-size: 0.95rem; font-weight: 300; color: var(--charcoal); line-height: 1.8; max-width: 420px; }

/* ── BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 13px 32px; background: var(--ink); color: var(--white); font-family: var(--font-body); font-size: 0.73rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast); text-decoration: none; cursor: pointer; border: none; }
.btn-primary:hover { background: var(--ink-soft); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); color: var(--white); }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; padding: 13px 32px; border: 1px solid var(--rule); color: var(--charcoal); font-family: var(--font-body); font-size: 0.73rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; transition: border-color var(--t-fast), color var(--t-fast), transform var(--t-fast); text-decoration: none; cursor: pointer; background: transparent; }
.btn-secondary:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }
.btn-text { display: inline-flex; align-items: center; gap: 8px; font-size: 0.73rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; transition: gap var(--t-fast); text-decoration: none; }
.btn-text::after { content: '→'; transition: transform var(--t-fast); }
.btn-text:hover { gap: 12px; }
.btn-text:hover::after { transform: translateX(4px); }
.btn-primary-inv { display: inline-flex; align-items: center; gap: 10px; padding: 14px 36px; background: var(--white); color: var(--ink); font-family: var(--font-body); font-size: 0.73rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; transition: background var(--t-fast), transform var(--t-fast); text-decoration: none; }
.btn-primary-inv:hover { background: var(--paper); transform: translateY(-2px); }
.btn-secondary-inv { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); font-family: var(--font-body); font-size: 0.73rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; transition: border-color var(--t-fast), color var(--t-fast); text-decoration: none; }
.btn-secondary-inv:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

/* ── PILLARS */
.pillars-editorial { display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid var(--rule); }
.pillar-col { padding: 48px 40px; border-right: 1px solid var(--rule); position: relative; overflow: hidden; transition: background var(--t-fast); }
.pillar-col:last-child { border-right: none; }
.pillar-col:hover { background: var(--off-white); }
.pillar-col::after { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 0; background: var(--ink); transition: height var(--t-slow); }
.pillar-col:hover::after { height: 100%; }
.pillar-index { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--silver); margin-bottom: 36px; }
.pillar-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; line-height: 1.2; color: var(--ink); margin-bottom: 20px; letter-spacing: -0.01em; }
.pillar-body { font-size: 0.9rem; font-weight: 300; color: var(--charcoal); line-height: 1.8; }
.pillar-num-bg { position: absolute; bottom: -16px; right: 20px; font-family: var(--font-display); font-size: 8rem; font-weight: 900; color: var(--rule-light); line-height: 1; user-select: none; pointer-events: none; transition: color var(--t-med); }
.pillar-col:hover .pillar-num-bg { color: var(--rule); }

/* ── ABOUT STRIP */
.about-editorial { display: grid; grid-template-columns: 320px 1fr; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.about-photo-col { position: relative; overflow: hidden; background: var(--paper); }
.about-photo-col img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; object-position: top 8%; filter: grayscale(20%) contrast(1.05); transition: filter var(--t-slow), transform var(--t-slow); display: block; }
.about-photo-col:hover img { filter: grayscale(0%) contrast(1.02); transform: scale(1.03); }
.about-text-col { padding: 72px; display: flex; flex-direction: column; justify-content: center; }
.pull-quote { font-family: var(--font-display); font-size: clamp(1.5rem,2.4vw,2.2rem); font-weight: 400; font-style: italic; line-height: 1.45; color: var(--ink); margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--rule); }
.about-body p { font-size: 0.95rem; font-weight: 300; color: var(--charcoal); line-height: 1.85; margin-bottom: 16px; }
.about-body p:last-of-type { margin-bottom: 32px; }

/* ── BLOG */
.blog-editorial { display: grid; grid-template-columns: 1fr 340px; border-bottom: 1px solid var(--rule); }
.blog-featured-col { padding: 64px 60px 64px 0; border-right: 1px solid var(--rule); cursor: pointer; position: relative; }
.blog-featured-col::before { content: 'FEATURED'; position: absolute; top: 64px; right: -52px; font-size: 0.55rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--silver); writing-mode: vertical-rl; transform: rotate(180deg); }
.blog-side-col { padding: 0 0 0 40px; display: flex; flex-direction: column; }
.blog-side-item { padding: 36px 0; border-bottom: 1px solid var(--rule-light); cursor: pointer; transition: padding-left var(--t-med); }
.blog-side-item:last-child { border-bottom: none; }
.blog-side-item:hover { padding-left: 8px; }
.post-cat { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ash); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.post-cat::before { content: '—'; color: var(--rule); }
.post-title-lg { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 16px; transition: color var(--t-fast); }
.blog-featured-col:hover .post-title-lg { color: var(--charcoal); }
.post-title-sm { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; line-height: 1.3; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em; transition: color var(--t-fast); }
.blog-side-item:hover .post-title-sm { color: var(--charcoal); }
.post-excerpt { font-size: 0.88rem; font-weight: 300; color: var(--charcoal); line-height: 1.75; margin-bottom: 20px; }
.post-meta-line { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ash); display: flex; gap: 12px; align-items: center; }
.post-meta-line::before { content: ''; width: 20px; height: 1px; background: var(--rule); flex-shrink: 0; }
.post-meta-sm { font-size: 0.62rem; color: var(--silver); letter-spacing: 0.08em; }

/* ── CTA FULL BLEED */
.cta-full { background: var(--ink); padding: 120px var(--gutter); text-align: center; position: relative; overflow: hidden; }
.cta-full::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 100% at 50% 100%,rgba(255,255,255,0.04) 0%,transparent 60%); }
.cta-label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 24px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.cta-label::before, .cta-label::after { content: ''; display: block; width: 32px; height: 1px; background: rgba(255,255,255,0.2); }
.cta-title { font-family: var(--font-display); font-size: clamp(2.4rem,4.5vw,5rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; color: var(--white); max-width: 760px; margin: 0 auto 20px; }
.cta-title em { font-style: italic; font-weight: 400; }
.cta-sub { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto 48px; line-height: 1.8; }

/* ── NEWSLETTER */
.newsletter-band { background: var(--paper); border-top: 1px solid var(--rule); padding: 72px var(--gutter); }
.newsletter-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.newsletter-title { font-family: var(--font-display); font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 8px; }
.newsletter-title em { font-style: italic; font-weight: 400; }
.newsletter-sub { font-size: 0.88rem; color: var(--charcoal); line-height: 1.7; }
.newsletter-form { display: flex; }
.newsletter-input { flex: 1; padding: 14px 18px; background: var(--white); border: 1px solid var(--rule); border-right: none; font-family: var(--font-body); font-size: 0.88rem; font-weight: 300; color: var(--ink); outline: none; transition: border-color var(--t-fast); }
.newsletter-input::placeholder { color: var(--silver); }
.newsletter-input:focus { border-color: var(--ink); }
.newsletter-btn { padding: 14px 28px; background: var(--ink); border: 1px solid var(--ink); color: var(--white); font-family: var(--font-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: background var(--t-fast); }
.newsletter-btn:hover { background: var(--ink-soft); }

/* ── FOOTER */
footer { background: var(--ink); padding: 72px var(--gutter) 40px; color: var(--white); }
.footer-top { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 60px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 28px; }
.footer-logo { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: -0.01em; }
.footer-logo em { font-style: italic; font-weight: 400; color: rgba(255,255,255,0.5); }
.footer-about { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 300px; margin-bottom: 28px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.35); transition: border-color var(--t-fast), color var(--t-fast); text-decoration: none; }
.footer-social:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
.footer-col-head { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.45); transition: color var(--t-fast); text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.25); }

/* ── REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* ── KEYFRAMES */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(105%); } to { transform: translateY(0); } }
@keyframes photoReveal { to { transform: scale(1); } }

/* ── RESPONSIVE */
@media (max-width: 1100px) {
  :root { --gutter: 48px; }
  .hero { grid-template-columns: 1fr; }
  .hero-editorial { max-width: 100%; padding: 60px 48px 48px; }
  .hero-photo-panel { display: none; }
  .hero-stats-strip { grid-template-columns: repeat(2,1fr); }
  .pillars-editorial { grid-template-columns: 1fr; }
  .pillar-col { border-right: none; border-bottom: 1px solid var(--rule); }
  .about-editorial { grid-template-columns: 1fr; }
  .about-photo-col { height: 380px; }
  .about-photo-col img { min-height: 380px; }
  .blog-editorial { grid-template-columns: 1fr; }
  .blog-featured-col { border-right: none; padding-right: 0; }
  .blog-featured-col::before { display: none; }
  .blog-side-col { padding: 0; border-top: 1px solid var(--rule); }
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .section-header { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 768px) {
  :root { --gutter: 24px; }
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: var(--white); padding: 28px 24px; border-bottom: 1px solid var(--rule); gap: 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); z-index: 999; }
  .nav-hamburger { display: flex; }
  .hero-editorial { padding: 60px 24px 48px; max-width: 100%; }
  .hero-stats-strip { grid-template-columns: repeat(2,1fr); }
  .hero-stat { padding: 20px 24px; }
  .pillar-col { padding: 36px 24px; }
  .about-text-col { padding: 40px 24px; }
  .blog-featured-col { padding: 40px 0; }
  .cta-full { padding: 80px 24px; }
  .newsletter-band { padding: 48px 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid var(--rule); border-bottom: none; }
  footer { padding: 56px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .pillar-num-bg { display: none; }
}
