/* ==========================================================================
   MANIK CHAND COMPANY — Global Stylesheet
   Graphite + Brushed Steel · Meerut
   ========================================================================== */

:root {
  /* Palette — cool, precise, metallic */
  --ink:         #0A0A0B;   /* graphite black, dominant */
  --ink-soft:    #111214;
  --ink-up:      #18191C;   /* one step up from ink */
  --gunmetal:    #1C1D1F;
  --steel:       #8C9196;   /* mid-tone brushed steel */
  --steel-soft:  #6B7075;
  --platinum:    #C8CCD0;   /* highlight steel */
  --silver:      #E6E8EB;   /* near white */
  --champagne:   #E8E2D4;   /* warm accent — used sparingly */
  --champagne-d: #C9BFA6;
  --line:        rgba(232, 234, 235, 0.10);
  --line-bright: rgba(232, 234, 235, 0.22);
  --line-dark:   rgba(10, 10, 11, 0.12);
  --muted:       rgba(232, 234, 235, 0.55);
  --muted-dark:  rgba(10, 10, 11, 0.55);

  /* Steel gradient — used for the logo word, accents */
  --steel-grad:  linear-gradient(180deg,
                  #F2F4F6 0%,
                  #C8CCD0 30%,
                  #6B7075 55%,
                  #9CA1A6 75%,
                  #E6E8EB 100%);

  /* Type */
  --display: 'Fraunces', 'Instrument Serif', Georgia, serif;
  --body:    'Manrope', 'Geist', -apple-system, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Rhythm */
  --max:  1480px;
  --pad:  clamp(1.25rem, 4vw, 3rem);
  --gap:  clamp(2rem, 6vw, 6rem);

  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-in-out: cubic-bezier(0.7, 0, 0.2, 1);
}

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

html {
  scroll-behavior: auto;        /* JS smooth scroll handles this */
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--silver);
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

@media (max-width: 768px) {
  body { cursor: auto; }
}

img, svg, video { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
  cursor: none;
}

button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: none;
}

@media (max-width: 768px) {
  a, button { cursor: pointer; }
}

::selection {
  background: var(--platinum);
  color: var(--ink);
}

/* ============ Typography helpers ============ */

.display {
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 0.95;
}

.eyebrow {
  font-family: var(--body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-weight: 500;
  color: var(--platinum);
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
}

.eyebrow .num {
  color: var(--steel-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--platinum);
  display: inline-block;
}

/* Steel gradient text */
.steel-text {
  background: var(--steel-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

h1.hero {
  font-family: var(--display);
  font-size: clamp(2.25rem, 6.5vw, 6.25rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.035em;
  max-width: 16ch;
}

h1.hero em {
  font-style: italic;
  font-weight: 300;
  color: var(--steel);
}

h2.section-title {
  font-family: var(--display);
  font-size: clamp(2.25rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h2.section-title em {
  font-style: italic;
  color: var(--steel);
}

h3 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

p.lead {
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.6;
  max-width: 56ch;
  color: rgba(232, 234, 235, 0.72);
  font-weight: 300;
}

p {
  color: rgba(232, 234, 235, 0.68);
  font-weight: 300;
}

.bone-section { background: var(--silver); color: var(--ink); }
.bone-section .eyebrow { color: var(--ink); }
.bone-section .eyebrow::before { background: var(--ink); }
.bone-section .eyebrow .num { color: var(--muted-dark); }
.bone-section p { color: rgba(10, 10, 11, 0.7); }
.bone-section p.lead { color: rgba(10, 10, 11, 0.78); }
.bone-section h2.section-title em { color: var(--steel-soft); }
.bone-section h3 { color: var(--ink); }

/* ============ Custom Cursor ============ */

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px;
  height: 6px;
  background: var(--platinum);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: opacity 0.3s;
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(232, 234, 235, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.35s var(--ease-out),
              height 0.35s var(--ease-out),
              border-color 0.3s,
              opacity 0.3s,
              background 0.3s;
}

.cursor-ring.hover {
  width: 64px;
  height: 64px;
  background: rgba(232, 234, 235, 0.08);
  border-color: rgba(232, 234, 235, 0.8);
}

.cursor-ring.text {
  width: 2px;
  height: 24px;
  border-radius: 0;
  border: none;
  background: var(--platinum);
}

@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============ Loading Screen ============ */

.loader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2.5rem;
}

.loader-mono {
  width: 96px;
  height: 96px;
  position: relative;
  display: grid;
  place-items: center;
  animation: loaderPulse 2.4s var(--ease-in-out) infinite;
}

.loader-mono::before {
  content: '';
  position: absolute;
  inset: -12px;
  background: radial-gradient(circle at 50% 50%, rgba(200,204,208,0.22), rgba(200,204,208,0.04) 60%, transparent 80%);
  z-index: 0;
}

.loader-mono img,
.loader-mono svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.5) contrast(1.18) drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.92; }
  50% { transform: scale(1.04); opacity: 1; }
}

.loader-mono .stroke {
  stroke: var(--steel);
  stroke-width: 6;
  fill: none;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: draw 1.6s var(--ease-in-out) forwards;
}

@keyframes draw {
  to { stroke-dashoffset: 0; }
}

.loader-bar {
  width: min(280px, 50vw);
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--steel-grad);
  transform: scaleX(0);
  transform-origin: left;
  animation: barFill 2.2s var(--ease-in-out) 0.2s forwards;
}

.loader-meta {
  display: flex;
  justify-content: center;
  width: min(280px, 50vw);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--platinum);
}

.loader.out {
  animation: loaderOut 1.1s var(--ease-in-out) forwards;
}

@keyframes barFill {
  to { transform: scaleX(1); }
}

@keyframes loaderOut {
  to { transform: translateY(-100%); }
}

/* ============ Navigation ============ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease, padding 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 11, 0.75);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom-color: var(--line);
  padding: 0.85rem var(--pad);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-mono {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  position: relative;
}

/* Subtle radial backlight so dark logo reads on dark nav */
.nav-mono::before {
  content: '';
  position: absolute;
  inset: -6px;
  background: radial-gradient(circle at 50% 50%, rgba(200,204,208,0.22), rgba(200,204,208,0.06) 55%, transparent 75%);
  z-index: 0;
  pointer-events: none;
  transition: background 0.4s;
}
.nav-brand:hover .nav-mono::before {
  background: radial-gradient(circle at 50% 50%, rgba(232,234,235,0.35), rgba(232,234,235,0.1) 55%, transparent 75%);
}

.nav-mono img,
.nav-mono svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  /* Lift the onyx letters slightly so the bevel reads on dark */
  filter: brightness(1.45) contrast(1.15) drop-shadow(0 1px 2px rgba(0,0,0,0.5));
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.nav-wordmark {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  background: linear-gradient(180deg, #F4F6F8 0%, #C8CCD0 60%, #8A8F94 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: relative;
}

.nav-wordmark .since {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--steel-soft);
  margin-top: 8px;
  -webkit-text-fill-color: var(--steel-soft);
  background: none;
}

@media (max-width: 800px) {
  .nav-wordmark { font-size: 0.92rem; letter-spacing: 0.18em; }
  .nav-wordmark .since { display: none; }
  .nav-mono { width: 30px; height: 30px; }
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  font-weight: 400;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s;
  color: rgba(232, 234, 235, 0.78);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--platinum);
  transition: width 0.5s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--silver);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  border: 1px solid var(--line-bright);
  padding: 0.7rem 1.25rem;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--silver);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--silver);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-in-out);
  z-index: -1;
}

.nav-cta:hover::before { transform: translateY(0); }
.nav-cta:hover { color: var(--ink); border-color: var(--silver); }

.nav-cta .dot {
  width: 6px;
  height: 6px;
  background: var(--platinum);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.nav-menu-btn {
  display: none;
  width: 28px;
  height: 18px;
  position: relative;
}

.nav-menu-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--silver);
  transition: all 0.4s var(--ease-out);
}

.nav-menu-btn span:nth-child(1) { top: 0; }
.nav-menu-btn span:nth-child(2) { top: 50%; width: 70%; }
.nav-menu-btn span:nth-child(3) { bottom: 0; }

.nav-menu-btn.open span:nth-child(1) { top: 50%; transform: rotate(45deg); }
.nav-menu-btn.open span:nth-child(2) { opacity: 0; }
.nav-menu-btn.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); width: 100%; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-menu-btn { display: block; }
}

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--ink-soft);
  border-left: 1px solid var(--line);
  padding: 6rem var(--pad) 3rem;
  transform: translateX(100%);
  transition: transform 0.7s var(--ease-in-out);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 99;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  font-family: var(--display);
  font-size: 2rem;
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
  font-weight: 300;
  transition: color 0.3s, padding-left 0.4s;
}

.mobile-menu a:hover {
  color: var(--platinum);
  padding-left: 0.5rem;
}

.mobile-menu .mobile-foot {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ============ Buttons ============ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.85rem;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--line-bright);
  background: transparent;
  color: var(--silver);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--silver);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-in-out);
  z-index: -1;
}

.btn:hover::before { transform: translateY(0); }
.btn:hover {
  color: var(--ink);
  border-color: var(--silver);
}

.btn .arrow {
  width: 16px;
  height: 10px;
  position: relative;
  transition: transform 0.4s var(--ease-out);
}

.btn:hover .arrow { transform: translateX(6px); }

.btn--filled {
  background: var(--silver);
  color: var(--ink);
  border-color: var(--silver);
}

.btn--filled::before { background: var(--ink); }
.btn--filled:hover { color: var(--silver); border-color: var(--silver); }

.btn--light {
  border-color: rgba(10,10,11,0.2);
  color: var(--ink);
}

.btn--light::before { background: var(--ink); }
.btn--light:hover { color: var(--silver); border-color: var(--ink); }

/* ============ Section ============ */

section {
  padding: clamp(5rem, 12vw, 10rem) var(--pad);
  position: relative;
}

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

/* ============ Reveal animations ============ */

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

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

/* Mask reveal — for text lines */
.mask {
  display: block;
  overflow: hidden;
}

.mask > * {
  display: inline-block;
  transform: translateY(110%) rotate(2deg);
  transition: transform 1.1s var(--ease-in-out);
  transform-origin: left bottom;
}

.mask.in > * {
  transform: translateY(0) rotate(0);
}

/* Image reveal — sliding panel */
.reveal-img {
  position: relative;
  overflow: hidden;
}

.reveal-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--platinum);
  transform: translateX(0);
  transition: transform 1.3s var(--ease-in-out);
}

.reveal-img.in::after { transform: translateX(101%); }

.reveal-img > img,
.reveal-img > .img-content,
.reveal-img > svg {
  transform: scale(1.18);
  transition: transform 1.7s var(--ease-out);
}

.reveal-img.in > img,
.reveal-img.in > .img-content,
.reveal-img.in > svg {
  transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }
.delay-7 { transition-delay: 0.56s; }

/* ============ Whatsapp float ============ */

.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 54px;
  height: 54px;
  background: var(--silver);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5),
              0 0 0 1px rgba(232, 234, 235, 0.15);
  transition: transform 0.5s var(--ease-out);
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--platinum);
  opacity: 0;
  animation: wa-pulse 2.6s ease-out infinite;
}

.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 24px; height: 24px; }

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ============ Top ticker (live strip) ============ */

.ticker {
  background: var(--ink-up);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.55rem 0;
  overflow: hidden;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99;
  height: 32px;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 60s linear infinite;
  padding-left: 100%;
}

.ticker span .live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  margin-right: 0.6em;
  vertical-align: middle;
  animation: live-blink 1.6s ease-in-out infinite;
}

.ticker span em {
  font-style: normal;
  color: var(--platinum);
  margin-right: 0.4em;
}

@keyframes ticker { to { transform: translateX(-100%); } }

@keyframes live-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* Push nav down for ticker */
body { padding-top: 32px; }
.nav { top: 32px; }

/* ============ Marquee (large editorial scroll strip) ============ */

.marquee {
  display: flex;
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 1.5rem 0;
}

.bone-section .marquee { border-color: var(--line-dark); }

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee-anim 40s linear infinite;
  flex-shrink: 0;
  padding-right: 4rem;
}

.marquee-item {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4rem;
  letter-spacing: -0.015em;
  color: var(--silver);
}

.bone-section .marquee-item { color: var(--ink); }

.marquee-item .dot {
  width: 8px;
  height: 8px;
  background: var(--steel-grad);
  border-radius: 50%;
  display: inline-block;
}

.marquee-item em {
  font-style: italic;
  color: var(--steel);
}

@keyframes marquee-anim {
  to { transform: translateX(calc(-100% - 4rem)); }
}

/* ============ Footer ============ */

footer {
  background: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding: clamp(4rem, 8vw, 7rem) var(--pad) 2rem;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand {
  font-family: var(--display);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1;
  font-weight: 300;
}

.footer-tag {
  font-size: 13px;
  color: var(--muted);
  max-width: 32ch;
  line-height: 1.7;
}

.footer h4 {
  font-family: var(--body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--platinum);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.footer ul a { font-size: 13.5px; color: rgba(232,234,235,0.65); transition: color 0.3s, padding-left 0.4s; }
.footer ul a:hover { color: var(--silver); padding-left: 0.4rem; }

.footer-contact p {
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 0.85rem;
  color: rgba(232,234,235,0.65);
}

.footer-contact a:hover { color: var(--silver); }

.footer-bottom {
  max-width: var(--max);
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  z-index: 2;
}

.footer-big-name {
  position: absolute;
  bottom: -3vw;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(5rem, 22vw, 22rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232,234,235,0.06);
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  font-weight: 300;
  letter-spacing: -0.04em;
  z-index: 1;
}

/* ============ Mobile footer polish ============ */
@media (max-width: 560px) {
  .footer { padding: 4rem 1.25rem 6rem; }
  .footer-grid { gap: 2rem; }
  .footer-brand { font-size: 1.75rem; margin-bottom: 0.75rem; }
  .footer-tag { font-size: 13px; max-width: 100%; }
  .footer h4 { margin-bottom: 0.9rem; font-size: 9.5px; }
  .footer ul { gap: 0.55rem; }
  .footer ul a { font-size: 14px; }
  .footer-contact p { font-size: 13.5px; margin-bottom: 0.55rem; }
  .footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 9.5px;
    letter-spacing: 0.15em;
  }
  .footer-big-name { font-size: 28vw; bottom: -2vw; }
}

/* ============ Grain overlay ============ */

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Subtle vignette */
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.5) 100%);
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
  section { padding: 5rem 1.25rem; }
  .nav-wordmark { font-size: 0.95rem; }
  .nav-wordmark .since { font-size: 8px; }
  body { padding-top: 32px; }
  .ticker { font-size: 9.5px; }
}
