/* SNN Raj Corp — Elegante design tokens */
:root {
  --bg: #fcfbf8;
  --bg-soft: #f7f3eb;
  --ink: #14110f;
  --ink-soft: #3f3a34;
  --muted: #57534e;
  --gold: #c49a2a;
  --gold-deep: #a67c1a;
  --gold-bright: #d4af37;
  --line: rgba(196, 154, 42, 0.28);
  --card: #ffffff;
  --header-h: 5.75rem;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

  --fs-body: 0.95rem;
  --fs-small: 0.88rem;
  --fs-legal: 0.8rem;
  --fs-label: 0.68rem;
  --fs-eyebrow: 10px;
  --fs-h1: clamp(2.2rem, 5vw, 3.6rem);
  --fs-h2: clamp(2rem, 4vw, 3rem);
  --fs-h3: clamp(1.25rem, 2.2vw, 1.6rem);
  --fs-h4: 1.05rem;
  --fs-display: clamp(2.6rem, 6.5vw, 4.4rem);
  --lh-body: 1.7;
  --lh-heading: 1.12;
  --lh-tight: 1.2;
  --ls-body: 0.01em;
  --ls-heading: 0.01em;
  --ls-eyebrow: 0.3em;
  --ws-body: 0.02em;
  --p-gap: 0.9rem;

  --media-radius: 1rem;
  --media-border-width: 1px;
  --media-border-color: var(--line);
  --media-border: var(--media-border-width) solid var(--media-border-color);
  --media-gap: 1rem;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* Reserve scrollbar space so modal open/close doesn’t shift the page */
  scrollbar-gutter: stable;
}
html.scroll-locked {
  scroll-behavior: auto;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  word-spacing: var(--ws-body);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea {
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  word-spacing: var(--ws-body);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: var(--ls-heading);
  line-height: var(--lh-heading);
  color: var(--ink);
  margin: 0;
  word-spacing: var(--ws-body);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: var(--lh-tight); }
h4 { font-size: var(--fs-h4); line-height: var(--lh-tight); }
p {
  margin: 0 0 var(--p-gap);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  word-spacing: var(--ws-body);
}
p:last-child { margin-bottom: 0; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  word-spacing: 0.12em;
}
.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Phone: tighter chrome + no accidental horizontal scroll */
html, body {
  overflow-x: clip;
  max-width: 100%;
}
@media (max-width: 767px) {
  :root {
    --header-h: 4.35rem;
  }
}
.section {
  padding: 3.25rem 0;
  position: relative;
  background: #fff;
}
@media (min-width: 768px) {
  .section { padding: 4.25rem 0; }
}
.section--soft { background: var(--bg-soft); }
.section--white { background: #fff; }
.section--dark {
  background: #1a1510;
  color: #fff;
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section-head { text-align: center; max-width: 42rem; margin: 0 auto 2rem; }
.section-head h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  word-spacing: var(--ws-body);
}
.section-head p {
  color: var(--muted);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  word-spacing: var(--ws-body);
  margin-top: 0.75rem;
}
.lead {
  color: var(--muted);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  word-spacing: var(--ws-body);
}

/* Body / sub copy — justified on all pages */
.prose p,
.lead,
.page-intro p,
.section-head p,
.blog-article__content p,
.blog-article__content li,
.csr-intro__prose p,
.csr-feature__body p,
.partner-feature__body p,
.land-feature__body p,
.about-reveal__prose p,
.about-legacy__copy p,
.leader-feature__letter p,
.leader-profile__bio,
.project-story__prose p,
.split-row__copy p,
.hl-card p,
.award-card__body p,
.award-panel__body p,
.step-card p,
.loc-card__body p,
.pr-topic-card__desc {
  text-align: justify;
  hyphens: auto;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  word-spacing: var(--ws-body);
}

.gold-gradient-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #D4AF37 0%, #C49A2A 45%, #A67C1A 100%);
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  border: 0;
  border-radius: 6px;
  padding: 0.95rem 1.5rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 28px -10px rgba(196, 154, 42, 0.55);
}
.gold-gradient-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px -8px rgba(196, 154, 42, 0.65);
}
.gold-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gold) !important;
  border: 1px solid rgba(196, 154, 42, 0.45);
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  padding: 0.9rem 1.4rem;
  cursor: pointer;
  transition: 0.25s ease;
}
.gold-outline-btn:hover {
  background: rgba(196, 154, 42, 0.1);
}
