/* ================================================================
   SIPORA — sipora.africa
   ================================================================ */

/* -------- Tokens -------- */
:root {
  --green: #2b3e23;
  --green-deep: #1f2d19;
  --green-light: #88b06a;
  --green-soft: #c5d7b1;
  --orange: #f77b28;
  --orange-deep: #d4711a;
  --cream: #f5f1e8;
  --cream-warm: #efeadc;
  --paper: #faf8f2;
  --ink: #1a2415;
  --ink-soft: #4a5443;
  --muted: #7a8470;
  --line: rgba(43, 62, 35, 0.12);

  --font-display: "Clash Display", "Poppins", system-ui, -apple-system, sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, sans-serif;

  --radius: 2px;
  --ease: cubic-bezier(0.65, 0.05, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1400px;
  --pad: clamp(1.5rem, 5vw, 4.5rem);
}

/* -------- 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: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: opacity 0.2s var(--ease), color 0.2s var(--ease); }
a:hover { opacity: 0.7; }
em { font-style: italic; }
ul { list-style: none; }

/* -------- Typography -------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

/* -------- Reusable: section eyebrow -------- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 2.2rem;
}
.section-eyebrow__num {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--green);
}
.section-eyebrow--light .section-eyebrow__num { color: var(--cream); }
.section-eyebrow--light { color: var(--green-light); }

/* =================================================================
   NAVIGATION
   ================================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem var(--pad);
  background: rgba(43, 62, 35, 0); /* transparent over hero (dark) */
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), padding 0.35s var(--ease);
}
.nav.is-scrolled {
  background: rgba(250, 248, 242, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  padding: 0.85rem var(--pad);
  border-bottom: 1px solid var(--line);
}
.nav__logo { position: relative; height: 32px; display: block; }
.nav__logo-img { height: 32px; width: auto; transition: opacity 0.3s var(--ease); }
.nav__logo-img--dark {
  position: absolute; top: 0; left: 0; opacity: 0;
}
.nav.is-scrolled .nav__logo-img--light { opacity: 0; }
.nav.is-scrolled .nav__logo-img--dark { opacity: 1; }

.nav__links {
  display: flex;
  gap: 2.4rem;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--cream);
  transition: color 0.35s var(--ease);
}
.nav.is-scrolled .nav__links { color: var(--green); }

.nav__cta {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.7rem 1.2rem;
  border: 1px solid var(--cream);
  color: var(--cream);
  border-radius: 100px;
  transition: all 0.3s var(--ease);
}
.nav.is-scrolled .nav__cta {
  border-color: var(--green);
  color: var(--green);
}
.nav__cta:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  opacity: 1;
}

.nav__menu {
  display: none;
  width: 28px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
}
.nav__menu span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s var(--ease);
}
.nav.is-scrolled .nav__menu span { background: var(--green); }

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__menu { display: flex; }
  .nav.is-open .nav__menu span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
  .nav.is-open .nav__menu span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__menu span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    padding: 1rem var(--pad) 1.5rem;
    color: var(--green);
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open .nav__links li { padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
  .nav.is-open .nav__links li:last-child { border-bottom: 0; }
}

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--green);
  color: var(--cream);
  overflow: hidden;
  padding: 8rem var(--pad) 4rem;
  display: flex;
  align-items: center;
}
.hero::before {
  /* Subtle grain texture */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 80%, rgba(247, 123, 40, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 20%, rgba(136, 176, 106, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.hero__text {
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeIn 0.8s var(--ease-out) 0.2s forwards;
}
.dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(247, 123, 40, 0.6);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(247, 123, 40, 0.6); }
  50% { box-shadow: 0 0 0 10px rgba(247, 123, 40, 0); }
}

.hero__headline {
  font-size: clamp(3.5rem, 8.5vw, 7.5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 2.2rem;
}
.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: rise 0.95s var(--ease-out) forwards;
}
.hero__line:nth-child(1) { animation-delay: 0.30s; }
.hero__line:nth-child(2) { animation-delay: 0.40s; }
.hero__line:nth-child(3) { animation-delay: 0.50s; }
.hero__line:nth-child(4) { animation-delay: 0.60s; }
.hero__line--accent {
  color: var(--green-light);
  font-style: italic;
  font-weight: 400;
  padding-left: clamp(1.5rem, 6vw, 4rem);
}
.hero__line--accent:last-of-type {
  color: var(--orange);
}

.hero__sub {
  max-width: 420px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--green-soft);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeIn 0.8s var(--ease-out) 0.85s forwards;
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-soft);
  opacity: 0;
  animation: fadeIn 0.8s var(--ease-out) 1.1s forwards;
}
.hero__scroll-line {
  display: inline-block;
  width: 60px;
  height: 1px;
  background: var(--green-light);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--orange);
  animation: scrollSweep 2.4s var(--ease) infinite;
}
@keyframes scrollSweep {
  0% { left: -100%; }
  60% { left: 100%; }
  100% { left: 100%; }
}

.hero__image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green-light); /* match photo bg while image loads */
  opacity: 0;
  animation: fadeIn 1.2s var(--ease-out) 0.5s forwards;
  height: min(82vh, 720px);
}
.hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  filter: saturate(1.05);
}
.hero__image-tag {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: rgba(43, 62, 35, 0.85);
  color: var(--green-light);
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  backdrop-filter: blur(8px);
}

@keyframes fadeIn { to { opacity: 1; } }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .hero { padding-top: 7rem; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__image { height: 56vh; max-height: 580px; }
}

/* =================================================================
   MANIFESTO
   ================================================================= */
.manifesto {
  background: var(--paper);
  padding: clamp(6rem, 12vw, 10rem) var(--pad);
  position: relative;
}
.manifesto__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.manifesto__statement {
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  line-height: 1.15;
  font-weight: 400;
  color: var(--green);
  max-width: 1100px;
  margin-bottom: clamp(4rem, 8vw, 7rem);
  letter-spacing: -0.02em;
}
.manifesto__statement em {
  color: var(--orange);
  font-style: italic;
  font-weight: 400;
}

.manifesto__pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--line);
}
.pillar { position: relative; }
.pillar__rule {
  width: 32px;
  height: 2px;
  background: var(--orange);
  margin-bottom: 1.5rem;
}
.pillar__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 0.8rem;
}
.pillar__body {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .manifesto__pillars { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 560px) {
  .manifesto__pillars { grid-template-columns: 1fr; }
}

/* =================================================================
   PRODUCT VISION
   ================================================================= */
.vision {
  background: var(--green);
  color: var(--cream);
  padding: clamp(6rem, 12vw, 10rem) var(--pad);
  position: relative;
  overflow: hidden;
}
.vision::after {
  /* Subtle glow accent */
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(136, 176, 106, 0.18), transparent 70%);
  pointer-events: none;
}
.vision__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  z-index: 1;
}
.vision__header { margin-bottom: 5rem; max-width: 900px; }
.vision__title {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  line-height: 1;
  font-weight: 500;
  margin-bottom: 1.8rem;
  letter-spacing: -0.025em;
}
.vision__title-accent {
  color: var(--green-light);
  font-style: italic;
  font-weight: 400;
}
.vision__lede {
  font-size: 1.1rem;
  color: var(--green-soft);
  max-width: 520px;
  line-height: 1.55;
}

.vision__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(136, 176, 106, 0.18);
  border-left: 1px solid rgba(136, 176, 106, 0.18);
}
.cat {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(136, 176, 106, 0.18);
  border-bottom: 1px solid rgba(136, 176, 106, 0.18);
  transition: background 0.35s var(--ease);
  cursor: default;
}
.cat:hover { background: rgba(136, 176, 106, 0.07); }
.cat__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 1.5rem;
}
.cat__name {
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: var(--cream);
  line-height: 1.1;
}
.cat__desc {
  font-size: 0.92rem;
  color: var(--green-soft);
  line-height: 1.55;
  max-width: 280px;
}

.vision__feature {
  position: relative;
  margin-top: 5rem;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  max-height: 480px;
}
.vision__feature img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.92);
}
.vision__feature-caption {
  position: absolute;
  bottom: 2.5rem; left: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  max-width: 600px;
}
.vision__feature-caption .line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .vision__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .vision__grid { grid-template-columns: 1fr; }
  .cat { padding: 2rem 1.5rem; }
  .vision__feature-caption { bottom: 1.5rem; left: 1.5rem; right: 1.5rem; }
}

/* =================================================================
   WORLD (lifestyle showcase)
   ================================================================= */
.world {
  background: var(--cream);
  padding: clamp(6rem, 12vw, 10rem) var(--pad);
}
.world__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.world__header { margin-bottom: 4rem; max-width: 900px; }
.world__title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 500;
  color: var(--green);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.world__title-accent {
  color: var(--orange);
  font-style: italic;
  font-weight: 400;
}

.world__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 1.2rem;
}
.world__cell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green);
}
.world__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.world__cell:hover img { transform: scale(1.04); }
.world__cell--tall { grid-row: span 2; }
.world__cell--wide { grid-column: span 2; }

@media (max-width: 900px) {
  .world__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .world__cell--wide { grid-column: span 2; }
  .world__cell--tall { grid-row: auto; }
}
@media (max-width: 560px) {
  .world__grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .world__cell--wide { grid-column: auto; }
}

/* =================================================================
   WHERE WE'RE HEADING
   ================================================================= */
.here {
  background: var(--green-deep);
  color: var(--cream);
  padding: clamp(6rem, 12vw, 10rem) var(--pad);
}
.here__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.here__title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}
.here__title-accent {
  color: var(--orange);
  font-style: italic;
  font-weight: 400;
}
.here__title-muted {
  color: var(--green-light);
  font-weight: 400;
  font-size: 0.72em;
}
.here__body {
  font-size: 1.05rem;
  color: var(--green-soft);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 3rem;
}
.here__pins {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.here__pins li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.pin {
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.pin--soft {
  background: rgba(247, 123, 40, 0.55);
}
.pin--ghost {
  background: transparent;
  border: 1px dashed rgba(247, 123, 40, 0.55);
}

.here__map {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Typographic geography layers */
.geo {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
}
.geo__layer {
  position: absolute;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--font-display);
  white-space: nowrap;
}
.geo__num {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--orange);
  opacity: 0.7;
}
.geo__name {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}
.geo__tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-light);
  opacity: 0.65;
}

/* Three concentric layers */
.geo__layer--1 {
  top: 18%;
  left: 6%;
  color: var(--cream);
  z-index: 3;
}
.geo__layer--1 .geo__name {
  color: var(--orange);
  font-style: italic;
  font-weight: 400;
}

.geo__layer--2 {
  top: 46%;
  left: 14%;
  color: var(--green-light);
  opacity: 0.85;
  z-index: 2;
}
.geo__layer--2 .geo__name { font-size: clamp(1.75rem, 3.5vw, 2.8rem); }

.geo__layer--3 {
  top: 70%;
  left: 22%;
  color: var(--green-light);
  opacity: 0.5;
  z-index: 1;
}
.geo__layer--3 .geo__name { font-size: clamp(1.4rem, 2.8vw, 2.2rem); }

/* Compass / radar visual top-right */
.geo__compass {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  opacity: 0.9;
}
.geo__compass svg { width: 100%; height: 100%; }

.ping {
  transform-origin: 60px 60px;
  animation: ping 2.8s var(--ease) infinite;
}
.ping--2 { animation-delay: 0.5s; }
@keyframes ping {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

@media (max-width: 900px) {
  .here__inner { grid-template-columns: 1fr; }
  .here__map { max-width: 360px; min-height: 360px; }
  .geo__layer--1 { left: 4%; }
  .geo__layer--2 { left: 10%; }
  .geo__layer--3 { left: 18%; }
}

/* =================================================================
   PARTNERS
   ================================================================= */
.partners {
  background: var(--paper);
  padding: clamp(6rem, 12vw, 10rem) var(--pad);
  position: relative;
}
.partners__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.partners__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: 4rem;
}
.partners__title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 500;
  color: var(--green);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.partners__title-accent {
  color: var(--orange);
  font-style: italic;
  font-weight: 400;
}
.partners__col p + p { margin-top: 1rem; }
.partners__body {
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 480px;
}
.partners__cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.1rem 1.6rem;
  background: var(--green);
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.3s var(--ease);
  border-radius: var(--radius);
}
.partners__cta:hover {
  background: var(--orange);
  color: #fff;
  opacity: 1;
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .partners__grid { grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
}

/* =================================================================
   FOOTER
   ================================================================= */
.footer {
  background: var(--green-deep);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 6rem) var(--pad) 2rem;
  border-bottom: 4px solid var(--orange);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(136, 176, 106, 0.18);
}
.footer__brand { max-width: 280px; }
.footer__logo {
  height: 36px;
  width: auto;
  margin-bottom: 1.5rem;
}
.footer__tagline {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--green-light);
  line-height: 1.3;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}
.footer__col a {
  display: block;
  font-size: 0.92rem;
  color: var(--cream);
  padding: 0.35rem 0;
}

.footer__social {
  display: flex;
  gap: 0.85rem;
}
.social {
  width: 40px; height: 40px;
  border: 1px solid rgba(136, 176, 106, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  transition: all 0.3s var(--ease);
}
.social--soon {
  opacity: 0.35;
  cursor: not-allowed;
}
.social--soon:hover { opacity: 0.35; }
.footer__soon {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  opacity: 0.5;
  margin-top: 1rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.78rem;
  color: var(--green-light);
  opacity: 0.7;
}

@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
}

/* =================================================================
   ON-SCROLL REVEALS
   ================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Selection */
::selection {
  background: var(--orange);
  color: #fff;
}
