@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Jost:wght@300;400;500;600&family=Pinyon+Script&display=swap');

/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  /* Palette */
  --cream:       #f9f5ef;
  --warm-white:  #fdfaf5;
  --off-white:   #f4efe8;
  --blush:       #e8c9b8;
  --blush-light: #f2dfd3;
  --rose:        #d4a090;
  --deep-rose:   #b8735f;
  --terracotta:  #a05c45;
  --sage:        #9daf98;
  --sage-light:  #c4d0c0;
  --deep-sage:   #6b8f6e;
  --forest:      #4a7050;
  --dusty-blue:  #a3b5c0;
  --mauve:       #c2a9b5;
  --ink:         #2c2420;
  --ink-light:   #4a3f38;
  --ink-mid:     #6b5d55;
  --ink-soft:    #8c7d75;
  --gold:        #c9a96e;
  --gold-light:  #e8d5b0;
  --gold-pale:   #f4ead8;

  /* Typography */
  --font-serif:  'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
  --font-sans:   'Jost', 'Gill Sans', Optima, 'Segoe UI', sans-serif;
  --font-script: 'Pinyon Script', 'Brush Script MT', cursive;

  /* Spacing */
  --max-w: 1060px;
  --section-pad: 5.5rem 2rem;

  /* Transitions */
  --ease: 0.28s ease;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
html { overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ═══════════════════════════════════════════
   WATERCOLOUR CANVAS (fixed bg)
═══════════════════════════════════════════ */
.wc-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.wc-canvas svg { width: 100%; height: 100%; }
.page { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(253,250,245,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,201,184,0.4);
  transition: background var(--ease), box-shadow var(--ease);
}
.site-nav.scrolled {
  background: rgba(253,250,245,0.96);
  box-shadow: 0 2px 20px rgba(44,36,32,0.07);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-logo-tag {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
@media (max-width: 600px) {
  .nav-logo-text { display: flex; }
  .nav-logo-name { font-size: 0.72rem; white-space: nowrap; }
  .nav-logo-tag { display: none; }
  .nav-logo-img { height: 46px; }
  .nav-inner { height: 72px; padding: 0 1rem; gap: 0.5rem; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links li { position: relative; }
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
  padding: 0.5rem 0.75rem;
  display: block;
  transition: color var(--ease);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--deep-rose); }
.nav-links > li > a.active {
  color: var(--deep-rose);
  position: relative;
}
.nav-links > li > a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--deep-rose);
  border-radius: 1px;
}
/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: ' ↓';
  font-size: 0.6rem;
  opacity: 0.5;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: var(--warm-white);
  border: 1px solid var(--blush);
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity var(--ease), transform var(--ease);
  z-index: 200;
  box-shadow: 0 8px 30px rgba(44,36,32,0.1);
}
/* Invisible bridge fills the gap between nav item and dropdown menu */
.nav-dropdown > a::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
/* Keep open while mouse is over the menu itself */
.dropdown-menu:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.65rem 1.2rem;
  font-size: 0.72rem;
  border-bottom: 1px solid rgba(232,201,184,0.3);
  color: var(--ink-mid);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--off-white); color: var(--deep-rose); }

.nav-cta {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--deep-rose) !important;
  border: 1px solid var(--blush);
  padding: 0.5rem 1.1rem !important;
  transition: border-color var(--ease), background var(--ease), color var(--ease) !important;
}
.nav-cta:hover {
  border-color: var(--deep-rose) !important;
  background: var(--deep-rose) !important;
  color: var(--warm-white) !important;
}
/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--ease), opacity var(--ease);
}
@media (max-width: 820px) {
  .nav-toggle { display: flex; }

  /* Full-screen overlay panel — slides over page content, under nav bar */
  .nav-links {
    position: fixed;
    top: 88px; left: 0; right: 0; bottom: 0;
    height: calc(100vh - 88px);
    background: var(--warm-white);
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 3rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.32s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 250;
    box-shadow: 0 4px 30px rgba(44,36,32,0.12);
  }
  .nav-links.open { transform: translateX(0); }

  /* Top-level links */
  .nav-links > li { border-bottom: 1px solid var(--blush-light); }
  .nav-links > li:first-child { border-top: 1px solid var(--blush-light); }
  .nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    padding: 0.85rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ink);
    letter-spacing: 0.04em;
  }
  .nav-links a:hover { color: var(--deep-rose); background: var(--off-white); }

  /* Dropdown toggle arrow */
  .nav-dropdown > a::after {
    display: inline-block;
    content: '›';
    font-size: 1.1rem;
    color: var(--ink-soft);
    transition: transform 0.25s;
    margin-left: auto;
    line-height: 1;
  }
  /* Remove the desktop bridge pseudo-element on mobile */
  .nav-dropdown > a::before { display: none; }
  .nav-dropdown.open > a::after { transform: rotate(90deg); color: var(--deep-rose); }

  /* Dropdown menu — hidden by default, toggled by JS */
  .dropdown-menu {
    position: static;
    border: none;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: var(--off-white);
    border-top: 1px solid var(--blush-light);
    /* collapsed */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-dropdown.open .dropdown-menu {
    max-height: 400px;
  }
  .dropdown-menu a {
    font-size: 0.88rem;
    padding: 0.8rem 1.8rem 0.8rem 2.8rem;
    border-bottom: 1px solid rgba(232,201,184,0.3);
    color: var(--ink-mid);
    letter-spacing: 0.06em;
    display: block;
  }
  .dropdown-menu a:last-child { border-bottom: none; }

  /* CTA button in menu */
  .nav-cta {
    margin: 1rem 1.5rem 0;
    text-align: center;
    display: block !important;
    border: 1px solid var(--deep-rose) !important;
    padding: 0.7rem 1.2rem !important;
    color: var(--deep-rose) !important;
    font-size: 0.65rem !important;
  }

  /* Hamburger → X animation */
  .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

@media (max-width: 600px) {
  .nav-links {
    top: 72px;
    height: calc(100vh - 72px);
  }
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.95rem 2.4rem;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-dark   { background: var(--ink); color: var(--warm-white); }
.btn-dark:hover { background: var(--deep-rose); }
.btn-rose   { background: var(--deep-rose); color: var(--warm-white); }
.btn-rose:hover { background: var(--terracotta); }
.btn-outline { background: transparent; color: var(--ink-mid); border: 1px solid var(--blush); }
.btn-outline:hover { border-color: var(--deep-sage); color: var(--deep-sage); }
.btn-sage   { background: var(--deep-sage); color: var(--warm-white); }
.btn-sage:hover { background: var(--forest); }

/* ═══════════════════════════════════════════
   TYPOGRAPHY UTILITIES
═══════════════════════════════════════════ */
.eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--deep-sage);
  margin-bottom: 1rem;
}
.eyebrow-rose { color: var(--deep-rose); }
.eyebrow-gold { color: var(--gold); }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 300; line-height: 1.12; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); color: var(--ink); }
h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); color: var(--ink); margin-bottom: 1.3rem; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); color: var(--ink); margin-bottom: 0.8rem; }
h4 { font-size: 1.1rem; font-weight: 400; color: var(--ink); }
h2 em, h1 em { font-style: italic; color: var(--deep-rose); }

p {
  font-size: 0.96rem;
  line-height: 1.9;
  color: var(--ink-light);
  margin-bottom: 1rem;
}
p:last-child { margin-bottom: 0; }

.large-text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-light);
}

/* ═══════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════ */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section    { padding: var(--section-pad); }
.section-sm { padding: 3.5rem 2rem; }
.center     { text-align: center; }

.cta-row {
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
}
.cta-row.centered { justify-content: center; }

/* ═══════════════════════════════════════════
   ORNAMENTS & DIVIDERS
═══════════════════════════════════════════ */
.ornament-divider {
  text-align: center;
  padding: 0.25rem 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.ornament-divider::before,
.ornament-divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--blush);
}
.ornament-divider span {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--rose);
  opacity: 0.55;
  line-height: 1;
}
.rule { border: none; border-top: 1px solid var(--blush-light); margin: 0; }

/* ═══════════════════════════════════════════
   CARDS
═══════════════════════════════════════════ */
.card {
  background: rgba(253,250,245,0.7);
  border: 1px solid var(--blush-light);
  padding: 2.2rem;
  transition: box-shadow var(--ease), transform var(--ease);
}
.card:hover {
  box-shadow: 0 8px 32px rgba(44,36,32,0.08);
  transform: translateY(-2px);
}
.card-tag {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--deep-rose);
  margin-bottom: 0.8rem;
  display: block;
}

/* ═══════════════════════════════════════════
   TINTED BANDS
═══════════════════════════════════════════ */
.band-blush  { background: rgba(232,201,184,0.12); }
.band-sage   { background: rgba(157,175,152,0.1); }
.band-dark   { background: var(--ink); }
.band-gold   { background: var(--gold-pale); }

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }


/* ═══════════════════════════════════════════
   LOGO TICKER
═══════════════════════════════════════════ */
.logo-ticker-wrap {
  overflow: hidden;
  width: 100%;
  padding: 1.5rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.logo-ticker {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: tickerScroll 40s linear infinite;
}
.logo-ticker:hover { animation-play-state: paused; }
.logo-tick {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 0.5rem;
}
.logo-tick img {
  max-height: 58px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%) opacity(0.85);
  transition: filter 0.2s, transform 0.2s;
}
.logo-tick:hover img { filter: grayscale(0%) opacity(1); transform: scale(1.06); }
.logo-tick img[alt="Greenpeace"]           { max-height: 30px; }
.logo-tick img[alt="Bengaluru Needs You"]  { max-height: 24px; }
.logo-tick img[alt="KickOff Solutions"]    { max-height: 34px; }
.logo-tick img[alt="Google"]               { max-height: 40px; }
.logo-tick img[alt="The Peace Collective"] { max-height: 38px; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   SHARED LOGO GRID
═══════════════════════════════════════════ */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--blush-light);
}
.logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 1.6rem;
  border-right: 1px solid var(--blush-light);
  border-bottom: 1px solid var(--blush-light);
  background: rgba(253,250,245,0.6);
  transition: background 0.2s;
  min-height: 80px;
  position: relative;
}
.logo-cell:nth-child(6n)        { border-right: none; }
.logo-cell:nth-last-child(-n+6) { border-bottom: none; }
.logo-cell:hover                { background: var(--off-white); }
.logo-cell img {
  max-height: 64px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%) opacity(0.85);
  transition: filter 0.2s;
}
.logo-cell:hover img { filter: grayscale(0%) opacity(1); }
/* Per-logo size overrides */
.logo-cell img[alt="Greenpeace"]              { max-height: 36px; max-width: 90%; }
.logo-cell img[alt="Asia-Europe Foundation"]  { max-height: 66px; }
.logo-cell img[alt="NIMHANS"]                 { max-height: 68px; }
.logo-cell img[alt="Anjuman"]                 { max-height: 58px; }
.logo-cell img[alt="Environment Support Group"]{ max-height: 64px; }
.logo-cell img[alt="Serendipity Arts Festival"]{ max-height: 64px; }
.logo-cell img[alt="FAHI"]                    { max-height: 60px; }
.logo-cell img[alt="Bengaluru Needs You"]     { max-height: 32px; max-width: 95%; }
.logo-cell img[alt="Bookosmia"]               { max-height: 60px; }
.logo-cell img[alt="Bangalore Literature Festival"] { max-height: 58px; }
.logo-cell img[alt="The Peace Collective"]    { max-height: 50px; max-width: 90%; }
.logo-cell img[alt="KickOff Solutions"]       { max-height: 46px; max-width: 88%; }
.logo-cell img[alt="SMART"]                   { max-height: 68px; }
.logo-cell img[alt="Nicobar"]                 { max-height: 64px; }
.logo-cell img[alt="AbsolutData"]             { max-height: 62px; }
.logo-cell img[alt="Google"]                  { max-height: 50px; max-width: 80%; }
.logo-cell img[alt="Publicis Sapient"]        { max-height: 54px; }
.logo-cell img[alt="Creatnet"]                { max-height: 54px; max-width: 88%; }
.logo-cell img[alt="Aarna Law"]               { max-height: 60px; }
.logo-cell img[alt="Chayn"]                   { max-height: 62px; }

/* ── LOGO TICKER ── */
.logo-ticker-wrap {
  overflow: hidden;
  padding: 2rem 0;
  border-top: 1px solid var(--blush-light);
  border-bottom: 1px solid var(--blush-light);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.logo-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
}
.logo-ticker-track:hover { animation-play-state: paused; }
.logo-ticker-item {
  flex-shrink: 0;
  padding: 0.6rem 2.8rem;
  border-right: 1px solid var(--blush-light);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}
.logo-ticker-item img {
  max-height: 52px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  filter: grayscale(25%) opacity(0.8);
  transition: filter 0.25s;
}
.logo-ticker-item span {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink-mid);
}
.logo-ticker-item:hover img { filter: grayscale(0%) opacity(1); }
/* Ticker individual overrides */
.logo-ticker-item img[alt="Greenpeace"]       { max-height: 30px; }
.logo-ticker-item img[alt="Bengaluru Needs You"] { max-height: 26px; }
.logo-ticker-item img[alt="KickOff Solutions"]   { max-height: 38px; }
.logo-ticker-item img[alt="The Peace Collective"]{ max-height: 42px; }
.logo-ticker-item img[alt="Google"]              { max-height: 42px; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-cell.logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink-mid);
  letter-spacing: 0.04em;
}
@media (max-width: 760px) {
  .logos-grid { grid-template-columns: repeat(4, 1fr); }
  .logo-cell:nth-child(6n) { border-right: 1px solid var(--blush-light); }
  .logo-cell:nth-child(4n) { border-right: none; }
}
@media (max-width: 480px) {
  .logos-grid { grid-template-columns: repeat(3, 1fr); }
  .logo-cell:nth-child(4n) { border-right: 1px solid var(--blush-light); }
  .logo-cell:nth-child(3n) { border-right: none; }
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--blush);
  background: var(--off-white);
  padding: 3.5rem 2rem 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand {}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.footer-brand-tag {
  font-size: 0.72rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--blush);
  padding-bottom: 1px;
  transition: color var(--ease), border-color var(--ease);
}
.footer-social a:hover { color: var(--deep-rose); border-color: var(--deep-rose); }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  font-size: 0.83rem;
  color: var(--ink-soft);
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--deep-rose); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--blush-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.7rem;
  color: var(--ink-soft);
  opacity: 0.6;
  margin: 0;
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   GLOBAL MOBILE FIXES
═══════════════════════════════════════════ */
@media (max-width: 600px) {
  /* Prevent content overflowing viewport — targeted, not wildcard */
  .container, .section, .section-sm { 
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* Reduce all section padding */
  .section { padding: 3rem 1.2rem; }
  .section-sm { padding: 2rem 1.2rem; }
  .container { padding: 0 1.2rem; }

  /* Buttons — never wider than container, wrap if needed */
  .btn { 
    white-space: normal; 
    word-break: break-word;
    padding: 0.85rem 1.4rem;
    font-size: 0.62rem;
    box-sizing: border-box;
  }
  .cta-row { 
    flex-direction: column; 
    align-items: stretch;
    gap: 0.7rem;
  }
  .cta-row .btn { width: 100%; text-align: center; display: block; }
  .cta-row.centered { align-items: center; }
  .cta-row.centered .btn { width: auto; min-width: 0; max-width: 100%; }
}
