/* ============================================================
   MAACG V3 — Option A  |  style.css
   Marshall & Associates Consulting Group
   Fonts: Libre Baskerville + Outfit
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Outfit:wght@200;300;400;500&display=swap');

/* ─────────────────────────────────────
   CSS VARIABLES
───────────────────────────────────── */
:root {
  --ink:     #0B0E13;
  --ink2:    #141820;
  --ink3:    #1D2330;
  --ink4:    #252D3E;
  --copper:  #B87333;
  --copper2: #D4904A;
  --copper3: #E8B878;
  --stone:   #8A8F9A;
  --fog:     #C8CAD0;
  --white:   #F4F2EE;
  --transition: 0.3s ease;
}

/* ─────────────────────────────────────
   RESET & BASE
───────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--fog);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none; /* custom cursor active */
}

/* Restore cursor on touch devices */
@media (hover: none) {
  body { cursor: auto; }
  .cur, .cur-ring { display: none; }
}

img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ─────────────────────────────────────
   CUSTOM CURSOR
───────────────────────────────────── */
.cur {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--copper);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s, opacity 0.2s, width 0.2s, height 0.2s, background 0.2s;
}

.cur-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184, 115, 51, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              width 0.3s, height 0.3s, border-color 0.3s;
}

/* Cursor hover state (applied via JS) */
.cur.hovering {
  width: 6px;
  height: 6px;
  background: var(--copper2);
}

.cur-ring.hovering {
  width: 52px;
  height: 52px;
  border-color: rgba(184, 115, 51, 0.7);
}

/* ─────────────────────────────────────
   NAVIGATION
───────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 14, 19, 0.95), transparent);
  pointer-events: none;
  transition: background var(--transition);
}

nav.scrolled::before {
  background: rgba(11, 14, 19, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Logo */
.nav-logo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1;
}

.nav-emblem {
  width: 38px;
  height: 38px;
  border: 1px solid var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Libre Baskerville', serif;
  font-size: 13px;
  color: var(--copper);
  letter-spacing: 0.05em;
  transition: background var(--transition);
}

.nav-emblem:hover {
  background: rgba(184, 115, 51, 0.1);
}

.nav-wordmark {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fog);
  line-height: 1.4;
}

.nav-wordmark span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--stone);
  margin-top: 1px;
}

/* Nav links */
.nav-links {
  position: relative;
  display: flex;
  gap: 36px;
  z-index: 1;
}

.nav-links a {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--copper);
  transition: width var(--transition);
}

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

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

/* Nav CTA button */
.nav-btn {
  position: relative;
  z-index: 1;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--copper);
  border: none;
  padding: 11px 26px;
  display: inline-block;
  transition: background var(--transition), transform 0.2s;
}

.nav-btn:hover {
  background: var(--copper2);
  transform: translateY(-1px);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  position: relative;
  z-index: 1;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--fog);
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 14, 19, 0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  color: var(--fog);
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--copper); }

/* ─────────────────────────────────────
   HERO
───────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 65% 40%, rgba(184, 115, 51, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 90% at 10% 80%, rgba(184, 115, 51, 0.04) 0%, transparent 55%);
}

/* Animated background grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridPan 20s linear infinite;
}

@keyframes gridPan {
  from { background-position: 0 0; }
  to   { background-position: 80px 80px; }
}

/* Vertical rule accent */
.hero-rule {
  position: absolute;
  top: 0; bottom: 0;
  left: 64px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--copper) 25%,
    var(--copper) 75%,
    transparent
  );
  opacity: 0.25;
}

/* Hero content */
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 64px 0 120px;
  max-width: 860px;
}

.hero-tag {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--copper);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  opacity: 0;
  animation: riseUp 0.7s 0.2s forwards;
}

.hero-tag::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--copper);
}

h1.hero-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(54px, 7.5vw, 108px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 40px;
  opacity: 0;
  animation: riseUp 0.8s 0.4s forwards;
}

h1.hero-title em {
  font-style: italic;
  color: var(--copper);
}

.hero-sub {
  font-size: 16px;
  line-height: 1.85;
  color: var(--stone);
  max-width: 500px;
  margin-bottom: 60px;
  opacity: 0;
  animation: riseUp 0.7s 0.6s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  opacity: 0;
  animation: riseUp 0.7s 0.8s forwards;
}

/* Buttons */
.btn-solid {
  background: var(--copper);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 40px;
  display: inline-block;
  transition: background var(--transition), transform 0.2s;
}

.btn-solid:hover {
  background: var(--copper2);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--stone);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color var(--transition);
}

.btn-ghost:hover { color: var(--copper); }

.btn-ghost::after {
  content: '→';
  transition: transform var(--transition);
}

.btn-ghost:hover::after {
  transform: translateX(5px);
}

/* Hero floating stats (desktop) */
.hero-floats {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: fadeIn 0.8s 1.2s forwards;
}

.hero-float {
  padding: 28px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: right;
}

.hero-float:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hf-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 44px;
  color: var(--copper);
  line-height: 1;
}

.hf-lbl {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 5px;
}

/* ─────────────────────────────────────
   TICKER
───────────────────────────────────── */
.ticker {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--ink2);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 22s linear infinite;
  width: max-content;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 0 48px;
  display: inline-flex;
  align-items: center;
  gap: 48px;
}

.ticker-item::after {
  content: '◆';
  color: var(--copper);
  font-size: 6px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────
   SECTION BASE
───────────────────────────────────── */
section { padding: 120px 64px; }

.label {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--copper);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.label::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--copper);
}

.heading {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
}

.heading em {
  font-style: italic;
  color: var(--copper);
}

/* ─────────────────────────────────────
   SERVICES
───────────────────────────────────── */
.services { background: var(--ink); }

.svc-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.svc-lead {
  font-size: 15px;
  line-height: 1.9;
  color: var(--stone);
  max-width: 400px;
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
}

.svc-card {
  background: var(--ink2);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
  cursor: default;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s;
}

.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover { background: var(--ink3); }

.svc-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.35s;
}

.svc-card:hover .svc-num {
  color: rgba(184, 115, 51, 0.08);
}

.svc-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}

.svc-desc {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--stone);
}

/* ─────────────────────────────────────
   IMPACT BAND
───────────────────────────────────── */
.impact {
  background: var(--copper);
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: center;
}

.impact-heading {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
}

.impact-heading em { font-style: italic; }

.impact-body {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(11, 14, 19, 0.7);
}

/* ─────────────────────────────────────
   ABOUT
───────────────────────────────────── */
.about {
  background: var(--ink2);
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.about-vis { position: relative; }

.about-frame {
  background: var(--ink3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  aspect-ratio: 3/4;
  max-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Photo fills frame when present */
.about-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Monogram fallback */
.about-monogram {
  font-family: 'Libre Baskerville', serif;
  font-size: 140px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: -0.05em;
  position: relative;
  z-index: 0;
}

/* Name plaque overlay */
.about-plaque {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--copper);
  padding: 22px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.ap-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 19px;
  color: var(--ink);
  font-weight: 400;
}

.ap-creds {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(11, 14, 19, 0.65);
}

/* Corner badge */
.about-corner {
  position: absolute;
  top: -18px;
  right: -18px;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 22px;
  text-align: center;
}

.ac-n {
  font-family: 'Libre Baskerville', serif;
  font-size: 26px;
  color: var(--copper);
  line-height: 1;
}

.ac-l {
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
}

/* About text */
.about-name {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 28px;
}

.about-name em {
  font-style: italic;
  color: var(--copper);
}

.about-p {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--stone);
  margin-bottom: 22px;
}

.mission-pull {
  border-left: 2px solid var(--copper);
  padding: 22px 28px;
  background: rgba(184, 115, 51, 0.06);
  margin: 32px 0;
}

.mission-pull p {
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--fog);
  line-height: 1.65;
}

.creds {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
}

.cred {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--stone);
}

.cred::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--copper);
  flex-shrink: 0;
}

/* ─────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────── */
.testimonials { background: var(--ink); }

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin-top: 72px;
}

.testi {
  background: var(--ink2);
  padding: 52px 48px;
  position: relative;
  transition: background var(--transition);
}

.testi:hover { background: var(--ink3); }

.tq {
  font-family: 'Libre Baskerville', serif;
  font-size: 80px;
  color: var(--copper);
  opacity: 0.2;
  line-height: 0.7;
  margin-bottom: 20px;
  display: block;
}

.testi-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.75;
  color: var(--fog);
  margin-bottom: 36px;
}

.testi-rule {
  width: 36px;
  height: 1px;
  background: var(--copper);
  margin-bottom: 20px;
}

.testi-name {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}

.testi-role {
  font-size: 11px;
  color: var(--stone);
  margin-top: 4px;
}

/* ─────────────────────────────────────
   CONTACT
───────────────────────────────────── */
.contact {
  background: var(--ink3);
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
}

.contact-heading {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 36px;
}

.contact-heading em {
  font-style: italic;
  color: var(--copper);
}

.contact-p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--stone);
  margin-bottom: 48px;
}

.c-detail {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.c-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}

.c-icon svg { stroke: var(--copper); }

.c-detail:hover .c-icon {
  border-color: var(--copper);
  background: rgba(184, 115, 51, 0.08);
}

.c-lbl {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 4px;
}

.c-val {
  font-size: 13.5px;
  color: var(--stone);
}

.c-val a {
  color: var(--stone);
  transition: color var(--transition);
}

.c-val a:hover { color: var(--copper2); }

/* Contact form */
.form-box {
  background: var(--ink2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px;
}

.form-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.f-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 12px;
}

.f-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
}

.f-input {
  background: var(--ink3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 14px 18px;
  color: var(--fog);
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  width: 100%;
}

.f-input:focus {
  border-color: var(--copper);
  background: var(--ink4);
}

.f-input::placeholder {
  color: rgba(138, 143, 154, 0.5);
}

textarea.f-input {
  resize: none;
  height: 120px;
}

.f-btn {
  width: 100%;
  background: var(--copper);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 17px;
  border: none;
  cursor: none;
  margin-top: 8px;
  transition: background var(--transition), transform 0.2s;
}

.f-btn:hover {
  background: var(--copper2);
  transform: translateY(-1px);
}

.f-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 5rem 2rem;
}

.form-success.show { display: block; }

.form-success-glyph {
  font-family: 'Libre Baskerville', serif;
  font-size: 3rem;
  color: var(--copper);
  margin-bottom: 1.25rem;
  line-height: 1;
}

.form-success h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.form-success p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.75;
}

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.f-brand {
  font-family: 'Libre Baskerville', serif;
  font-size: 14px;
  color: var(--copper);
  letter-spacing: 0.08em;
}

.f-tag {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--stone);
}

.f-copy {
  font-size: 11px;
  color: rgba(138, 143, 154, 0.5);
}

/* ─────────────────────────────────────
   BACK TO TOP
───────────────────────────────────── */
#back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 42px;
  height: 42px;
  background: var(--copper);
  color: var(--ink);
  border: none;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 50;
}

#back-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-top:hover {
  background: var(--copper2);
  transform: translateY(-3px);
}

/* ─────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s, transform 0.75s;
}

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

/* ─────────────────────────────────────
   KEYFRAMES
───────────────────────────────────── */
@keyframes riseUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .nav-links, .nav-btn { display: none; }
  .hamburger { display: flex; }

  .hero-inner { padding: 120px 24px 80px; }
  .hero-floats { display: none; }
  .hero-rule { left: 24px; }

  section { padding: 80px 24px; }

  .svc-header,
  .svc-grid { grid-template-columns: 1fr; }
  .svc-grid { gap: 1px; }

  .impact {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 24px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-corner { display: none; }

  .testi-grid { grid-template-columns: 1fr; }

  .contact {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-row { grid-template-columns: 1fr; }

  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
  .form-box { padding: 32px 24px; }
}
