/* ============================================================
   HARIYANA PAPER CENTRE — globals.css
   Design tokens, resets, and shared utility styles
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600&display=swap');

/* ── CSS Custom Properties ──────────────────────────────── */
:root {
  /* Colors */
  --color-bg: #F7F4EF;
  --color-surface: #FFFFFF;
  --color-navy: #1A1B2E;
  --color-amber: #E8A838;
  --color-amber-dark: #C8891A;
  --color-text: #1A1B2E;
  --color-muted: #6B7280;
  --color-border: #E5DDD0;
  --color-whatsapp: #25D366;
  --color-success: #16A34A;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Type Scale */
  --text-h1: 56px;
  --text-h2: 40px;
  --text-h3: 28px;
  --text-h4: 18px;
  --text-body-lg: 18px;
  --text-body: 16px;
  --text-label: 11px;
  --text-small: 13px;

  /* Spacing (4px base unit) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;

  /* Border Radius */
  --radius-card: 8px;
  --radius-btn: 6px;
  --radius-badge: 100px;

  /* Shadows */
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 8px 32px rgba(26, 27, 46, 0.12);
  --shadow-modal: 0 24px 64px rgba(26, 27, 46, 0.2);

  /* Layout */
  --container-max: 1200px;
  --container-pad: 24px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 600ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ── Reset ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

/* == SITE LOGO ================================================== */
.site-logo {
  height: 44px;
  display: inline-block;
}
.site-logo--large {
  height: 68px;
}
.footer-logo {
  height: 40px;
  display: block;
  margin-bottom: 12px;
}


a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: var(--font-body);
  font-size: var(--text-body);
}

/* ── Container ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ── Typography Utilities ───────────────────────────────── */
.font-heading {
  font-family: var(--font-heading);
}

.font-body {
  font-family: var(--font-body);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

h4,
h5,
h6 {
  font-family: var(--font-body);
  font-weight: 600;
}

h1 {
  font-size: clamp(36px, 5vw, var(--text-h1));
  font-weight: 700;
}

h2 {
  font-size: clamp(28px, 4vw, var(--text-h2));
  font-weight: 700;
}

h3 {
  font-size: clamp(22px, 3vw, var(--text-h3));
  font-weight: 600;
}

h4 {
  font-size: var(--text-h4);
}

.label {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-amber);
}

.text-muted {
  color: var(--color-muted);
}

.text-navy {
  color: var(--color-navy);
}

.text-amber {
  color: var(--color-amber);
}

.text-white {
  color: #fff;
}

.text-center {
  text-align: center;
}

/* ── Button Styles ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-amber);
  color: var(--color-navy);
  border-color: var(--color-amber);
}

.btn-primary:hover {
  background: var(--color-amber-dark);
  border-color: var(--color-amber-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 12px rgba(232, 168, 56, 0.3);
}

.btn-navy {
  background: var(--color-navy);
  color: #fff;
  border-color: var(--color-navy);
}

.btn-navy:hover {
  background: #2a2c44;
  border-color: #2a2c44;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 12px rgba(26, 27, 46, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.btn-ghost:hover {
  background: var(--color-navy);
  color: #fff;
}

.btn-ghost-amber {
  background: transparent;
  color: var(--color-amber);
  border-color: var(--color-amber);
}

.btn-ghost-amber:hover {
  background: var(--color-amber);
  color: var(--color-navy);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  border-color: var(--color-whatsapp);
}

.btn-whatsapp:hover {
  background: #1da854;
  border-color: #1da854;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

/* ── Badge / Pill ───────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-badge);
  font-size: var(--text-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-amber {
  background: var(--color-amber);
  color: var(--color-navy);
}

.badge-navy {
  background: var(--color-navy);
  color: #fff;
}

.badge-outline {
  background: transparent;
  border: 1.5px solid var(--color-border);
  color: var(--color-muted);
}

/* ── Card Utility ───────────────────────────────────────── */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-amber);
}

/* ── Section Utilities ──────────────────────────────────── */
.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

.section-bg {
  background: var(--color-bg);
}

.section-white {
  background: var(--color-surface);
}

.section-navy {
  background: var(--color-navy);
}

.section-amber {
  background: var(--color-amber);
}

.section-header {
  margin-bottom: var(--space-lg);
}

.section-header.centered {
  text-align: center;
}

.section-header .label {
  display: block;
  margin-bottom: var(--space-xs);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  color: var(--color-muted);
  font-size: var(--text-body-lg);
  max-width: 600px;
}

.section-header.centered p {
  margin-inline: auto;
}

/* ── Grid Utilities ─────────────────────────────────────── */
.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.gap-xs {
  gap: var(--space-xs);
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

/* ── Floating WhatsApp Button ───────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: waPulse 2.5s infinite;
  transition: transform var(--transition-base);
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.wa-float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--color-navy);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.wa-float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--color-navy);
}

.wa-float:hover .wa-float-tooltip {
  opacity: 1;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ── Scroll Animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ── Float Animation ────────────────────────────────────── */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.animate-float {
  animation: float 5s ease-in-out infinite;
}

/* ── Divider ────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--space-md) 0;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .section-sm {
    padding: 36px 0;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }
}

@media (max-width: 390px) {
  :root {
    --container-pad: 16px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  .btn {
    padding: 11px 18px;
    font-size: 13px;
  }
}

/* == HERO SECTION == */
.hero { padding: 80px 0 64px; background: var(--color-bg); }
.hero-inner { 
  display: grid; 
  grid-template-columns: 55% 45%; 
  gap: 48px; 
  align-items: center; 
}
.hero-text { display: flex; flex-direction: column; gap: 24px; }
.hero-text h1 { 
  font-family: var(--font-heading); 
  font-size: 54px; 
  line-height: 1.1; 
  color: var(--color-navy); 
  margin: 0;
}
.hero-text p { 
  font-size: 18px; 
  color: var(--color-muted); 
  max-width: 460px; 
  margin: 0;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image img { 
  width: 100%; 
  border-radius: 12px; 
  box-shadow: 0 24px 64px rgba(26,27,46,0.15);
}

/* == LABEL == */
.label { 
  font-family: var(--font-body);
  font-size: 11px; 
  font-weight: 600; 
  letter-spacing: 0.1em; 
  text-transform: uppercase; 
  color: var(--color-amber); 
}

/* == BUTTONS == */
.btn { 
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px; 
  border-radius: 6px; 
  font-family: var(--font-body);
  font-weight: 600; 
  font-size: 14px; 
  cursor: pointer; 
  text-decoration: none;
  border: none;
  transition: all 200ms ease;
}
.btn-primary { 
  background: var(--color-amber); 
  color: var(--color-navy); 
}
.btn-primary:hover { background: var(--color-amber-dark); }
.btn-ghost { 
  background: transparent; 
  color: var(--color-navy); 
  border: 1.5px solid var(--color-navy); 
}
.btn-ghost:hover { background: var(--color-navy); color: white; }
.btn-navy { 
  background: var(--color-navy); 
  color: white; 
}
.btn-outline {
  background: transparent;
  color: var(--color-amber);
  border: 1.5px solid var(--color-amber);
}

/* == TRUST BAR == */
.trust-bar { 
  background: white; 
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 32px 0; 
}
.trust-items { 
  display: flex; 
  justify-content: center; 
  gap: 64px; 
  align-items: center;
}
.trust-item { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 4px;
}
.trust-number { 
  font-family: var(--font-heading); 
  font-size: 36px; 
  font-weight: 700; 
  color: var(--color-amber); 
}
.trust-label { 
  font-size: 14px; 
  color: var(--color-muted); 
}

/* == BRANDS SECTION == */
.brands-section { 
  background: var(--color-bg); 
  padding: 80px 0; 
}
.brands-section h2 {
  font-family: var(--font-heading);
  font-size: 40px;
  color: var(--color-navy);
  margin: 8px 0 16px;
}
.brands-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px; 
  margin-top: 40px;
}
.brand-card { 
  background: white; 
  border: 1px solid var(--color-border); 
  border-radius: 8px; 
  padding: 24px;
  transition: all var(--transition-spring);
}
.brand-card:hover { 
  transform: translateY(-6px) scale(1.02); 
  box-shadow: 0 16px 48px rgba(26,27,46,0.12);
  border-color: var(--color-amber);
}
.brand-logo { 
  background: var(--color-navy); 
  color: var(--color-amber); 
  width: 64px; 
  height: 64px; 
  border-radius: 6px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-weight: 700; 
  font-size: 20px;
  margin-bottom: 16px;
}
.brand-card h3 { 
  font-family: var(--font-heading); 
  font-size: 18px; 
  color: var(--color-navy); 
  margin: 0 0 8px;
}
.brand-card p { 
  font-size: 14px; 
  color: var(--color-muted); 
  margin: 0 0 12px;
}
.brand-card a { 
  font-size: 13px; 
  font-weight: 600; 
  color: var(--color-amber); 
  text-decoration: none;
}

/* == WHY SECTION == */
.why-section { 
  background: var(--color-navy); 
  padding: 80px 0; 
}
.why-section h2 { 
  font-family: var(--font-heading); 
  font-size: 40px; 
  color: white; 
  text-align: center; 
  margin-bottom: 40px;
}
.why-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
  gap: 24px; 
}
.why-card { 
  background: rgba(255,255,255,0.06); 
  border: 1px solid rgba(255,255,255,0.1); 
  border-radius: 8px; 
  padding: 32px;
}
.why-card h4 { 
  color: white; 
  font-size: 18px; 
  font-weight: 600; 
  margin: 0 0 12px;
}
.why-card p { 
  color: rgba(255,255,255,0.7); 
  font-size: 15px; 
  margin: 0;
}

/* == CTA BANNER == */
.cta-banner { 
  background: var(--color-amber); 
  padding: 48px 0; 
}
.cta-inner { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  gap: 24px;
}
.cta-banner h2 { 
  font-family: var(--font-heading); 
  font-size: 32px; 
  color: var(--color-navy); 
  margin: 0;
}

/* == FOOTER == */
.footer { 
  background: white; 
  border-top: 1px solid var(--color-border); 
  padding: 48px 0 0;
}
.footer-inner { 
  display: grid; 
  grid-template-columns: 1.5fr 1fr 1fr; 
  gap: 40px; 
  padding-bottom: 40px;
}
.footer-col strong { 
  font-size: 13px; 
  font-weight: 700; 
  color: var(--color-navy); 
  display: block; 
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-col p { 
  font-size: 14px; 
  color: var(--color-muted); 
  line-height: 1.6;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { 
  font-size: 14px; 
  color: var(--color-muted); 
  text-decoration: none; 
}
.footer-col ul li a:hover { color: var(--color-amber); }
.footer-bottom { 
  border-top: 1px solid var(--color-border); 
  padding: 20px 0; 
  text-align: center; 
  font-size: 13px; 
  color: var(--color-muted);
}

/* == FLOATING WHATSAPP == */
.whatsapp-float { 
  position: fixed; 
  bottom: 24px; 
  right: 24px; 
  width: 56px; 
  height: 56px; 
  background: var(--color-whatsapp); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 28px; 
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* == STAT ROW (About page) == */
.stat-row { 
  display: flex; 
  gap: 32px; 
  margin-top: 8px;
}
.stat { 
  display: flex; 
  flex-direction: column; 
}
.stat strong { 
  font-family: var(--font-heading); 
  font-size: 28px; 
  color: var(--color-navy); 
  font-weight: 700;
}
.stat span { 
  font-size: 13px; 
  color: var(--color-muted); 
}

/* == MOBILE RESPONSIVE == */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .trust-items { gap: 32px; flex-wrap: wrap; }
}
@media (max-width: 390px) {
  .brands-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 36px; }
}

/* == TIMELINE == */
.timeline-section {
  background: white;
  padding: 80px 0;
}
.timeline-section h2 {
  font-family: var(--font-heading);
  font-size: 40px;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 64px;
}
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  width: 45%;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 24px;
}
.timeline-item:nth-child(odd) {
  align-self: flex-start;
  margin-left: 0;
}
.timeline-item:nth-child(even) {
  align-self: flex-end;
  margin-right: 0;
}
.timeline-item::after {
  content: '';
  position: absolute;
  top: 24px;
  width: 12px;
  height: 12px;
  background: var(--color-amber);
  border-radius: 50%;
}
.timeline-item:nth-child(odd)::after {
  right: -34px;
}
.timeline-item:nth-child(even)::after {
  left: -34px;
}
.timeline-item .year-badge {
  display: inline-block;
  margin-bottom: 12px;
}
.timeline-item h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-navy);
  margin: 0 0 8px;
}
.timeline-item p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
}

/* == LEADERSHIP SECTION == */
.leadership-section {
  background: white;
  padding: 64px 0;
}
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.leadership-card {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 32px;
}
.hq-card {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 32px;
}
.avatar {
  width: 80px;
  height: 80px;
  background: #e5e7eb;
  border-radius: 50%;
  margin-bottom: 16px;
}
.role {
  color: var(--color-amber);
  font-weight: 500;
  margin-bottom: 16px;
}

/* == SECTION HEADINGS GLOBAL == */
section h2 {
  font-family: var(--font-heading);
  font-size: 40px;
  color: var(--color-navy);
  margin: 8px 0 16px;
}
section h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-navy);
  margin: 8px 0;
}
section p {
  color: var(--color-muted);
  line-height: 1.7;
}

/* == MOBILE ABOUT == */
@media (max-width: 768px) {
  .timeline::before { left: 16px; }
  .timeline-item { width: 80%; align-self: flex-end !important; }
  .timeline-item::after { left: -30px !important; right: auto !important; }
  .leadership-grid { grid-template-columns: 1fr; }
}
.brand-logo-img { 
  width: 64px; 
  height: 64px; 
  border-radius: 6px; 
  object-fit: cover; 
  margin-bottom: 24px;
  display: block;
}

.modal-label {
  font-size:11px;font-weight:600;
  letter-spacing:0.08em;text-transform:uppercase;
  color:var(--color-muted);display:block;
  margin-bottom:6px;
}
.modal-input, .modal-select {
  width:100%;border:1.5px solid var(--color-border);
  border-radius:6px;padding:10px 14px;
  font-size:14px;font-family:var(--font-body);
  color:var(--color-navy);background:white;
  box-sizing:border-box;
}
.modal-input:focus, .modal-select:focus {
  border-color:var(--color-amber);outline:none;
  box-shadow:0 0 0 3px rgba(232,168,56,0.15);
}
