/*
Theme Name: GGA Digital
Theme URI: https://ggalmightydigital.com/
Author: Sabrina Matthews
Description: Hard-coded one-page portfolio theme for GGA Digital.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: gga-digital
*/

/* ========================================
   Root Variables
======================================== */
:root {
  --bg: #040506;
  --bg-soft: #0a0c10;
  --panel: rgba(255,255,255,0.03);
  --panel-border: rgba(255,255,255,0.08);
  --text: #f5f7fb;
  --muted: #a0a8b8;
  --cyan: #19d7ff;
  --green: #47ff1a;
  --purple: #a83cff;
  --blue: #2e86ff;
  --max: 1240px;
  --radius: 28px;
  --shadow: 0 20px 60px rgba(0,0,0,0.45);
}

/* ========================================
   Base / Global
======================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(168,60,255,0.18), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(25,215,255,0.16), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(71,255,26,0.08), transparent 32%),
    linear-gradient(180deg, #040506 0%, #040506 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.22;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.site-shell {
  width: min(calc(100% - 32px), 1480px);
  margin: 14px auto;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: clip;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}

/* ========================================
   Reusable Layout + UI Primitives
======================================== */
.site-header__inner,
.hero,
.stats,
.section,
.cta-panel,
.site-footer__inner {
  position: relative;
}

.section {
  padding: 120px 0 0;
}

.section-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.section-kicker {
  --accent: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #a7afc0;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 14px;
  font-weight: 700;
}

.section-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
}

.section-title {
  margin: 0;
  font-size: clamp(46px, 7vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section-summary {
  max-width: 520px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.panel-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ========================================
   Header
======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(3,4,6,0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

/* ========================================
   Brand / Text Logo
======================================== */
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
}

.brand--text {
  line-height: 1.2;
}

.brand__gga {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.08em;
  color: #f8f9ff;
  text-shadow: 0 0 10px rgba(255,255,255,0.04);
}

.brand__digital {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ff67db 0%, #a463ff 34%, #4d7fff 68%, #39dcff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 0 10px rgba(255, 103, 219, 0.08),
    0 0 18px rgba(164, 99, 255, 0.12),
    0 0 24px rgba(57, 220, 255, 0.10);
}
.brand:hover .brand__gga {
  color: #ffffff;
}

.brand:hover .brand__digital {
  background: linear-gradient(135deg, #ff7ae6 0%, #b06cff 36%, #4a86ff 68%, #4ff0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.header-cta,
.button,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.header-cta:hover,
.button:hover,
.button-outline:hover {
  transform: translateY(-1px);
}

.header-cta {
  padding: 14px 24px;
  border: 1px solid rgba(71,255,26,0.35);
  background: rgba(71,255,26,0.08);
  color: var(--green);
  font-weight: 700;
}

/* ========================================
   Hero
======================================== */
.hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  min-height: calc(100vh - 150px);
  align-items: center;
  padding: 40px 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: #d3d6dc;
  letter-spacing: .08em;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 20px rgba(71,255,26,0.8);
}

.hero h1,
.cta-title {
  margin: 22px 0 0;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero h1 {
  font-size: clamp(60px, 9vw, 80px);
  max-width: 760px;
}

.gradient-word {
  display: inline-block;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(25,215,255,0.25);
  line-height: 1.2;
}

.hero-copy {
  max-width: 700px;
  margin-top: 26px;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.button {
  padding: 18px 32px;
  background: #fff;
  color: #111;
  font-size: 20px;
  font-weight: 700;
}

.button-outline {
  padding: 18px 30px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.hero-image-shell::before {
  content: "";
  position: absolute;
  inset: 8% 10%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(39, 214, 255, 0.24) 0%,
    rgba(121, 92, 255, 0.20) 32%,
    rgba(182, 72, 255, 0.14) 54%,
    transparent 74%
  );
  filter: blur(48px);
  transform: scale(1);
  transform-origin: center;
  pointer-events: none;
  animation: heroGlowPulse 2s ease-in-out infinite;
}

.hero-image-shell::after {
  content: "";
  position: absolute;
  top: 14%;
  right: 16%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  z-index: -1;
  background: radial-gradient(
    circle,
    rgba(78, 255, 233, 0.34) 0%,
    rgba(0, 214, 255, 0.18) 42%,
    transparent 72%
  );
  filter: blur(34px);
  pointer-events: none;
  animation: heroGlowPulseAccent 2s ease-in-out infinite;
}

.hero-art::after {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 72% 28%,
    rgba(72, 255, 224, 0.22) 0%,
    rgba(0, 224, 255, 0.18) 22%,
    rgba(78, 130, 255, 0.12) 42%,
    rgba(171, 77, 255, 0.08) 58%,
    transparent 76%
  );
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  transform: scale(0.92);
  transform-origin: center;
  animation: heroGlowPulseOuter 2s ease-in-out infinite;
}

.hero-image {
  position: relative;
  z-index: 1;
  max-width: min(460px, 92%);
  filter:
    drop-shadow(0 0 18px rgba(0, 255, 255, 0.18))
    drop-shadow(0 0 34px rgba(143, 92, 255, 0.22))
    drop-shadow(0 0 60px rgba(0, 140, 255, 0.16));
}

/* ========================================
   Hero Scroll Indicator
======================================== */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.78);
  z-index: 5;
  cursor: pointer;
}

.scroll-indicator__line {
  width: 1px;
  height: 64px;
  background: linear-gradient(
    to bottom,
    rgba(88, 255, 231, 0.95),
    rgba(88, 255, 231, 0.18)
  );
}

.scroll-indicator__text {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-indicator:hover {
  color: #fff;
}

/* ========================================
   Hero Animations
======================================== */
@keyframes heroGlowPulse {
  0%, 100% {
    transform: scale(0.9);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.24);
    opacity: 1;
  }
}

@keyframes heroGlowPulseOuter {
  0%, 100% {
    transform: scale(0.88);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.18);
    opacity: 0.85;
  }
}

@keyframes heroGlowPulseAccent {
  0%, 100% {
    transform: scale(0.9);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.16);
    opacity: 1;
  }
}

/* ========================================
   Stats
======================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 48px 0 56px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1;
  margin-bottom: 10px;
}

.stat:nth-child(2) strong {
  color: var(--cyan);
}

.stat:nth-child(4) strong {
  color: var(--green);
}

.stat span {
  color: #70788d;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;
  font-weight: 700;
}

/* ========================================
   Selected Work
======================================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.projects-grid .project-card:nth-child(2) { margin-top: 48px; }
.projects-grid .project-card:nth-child(4) { margin-top: 72px; }
.projects-grid .project-card:nth-child(6) { margin-top: 48px; }
.projects-grid .project-card:nth-child(8) { margin-top: 72px; }

.project-card {
  display: block;
  overflow: hidden;
  color: #fff;
  transition: transform .25s ease, border-color .25s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(88,255,231,.32);
}

.project-card__visual {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  transition: transform .35s ease;
}
.project-card:hover .project-card__visual {
  transform: scale(1.03);
}
.project-card__visual--goat {
  background-image: url("/wp-content/uploads/2026/03/gga-goat-yoga.png");
}

.project-card__visual--vital {
  background-image: url("/wp-content/uploads/2026/03/vitalskin.png");
}

.project-card__visual--primrose {
  background-image: url("/wp-content/uploads/2026/03/primrose.png");
}

.project-card__visual--onfiya {
  background-image: url("/wp-content/uploads/2026/03/onfiya.png");
}

.project-card__visual--photo {
  background-image: url("/wp-content/uploads/2026/03/stephanie.png");
}

.project-card__visual--theatre {
  background-image: url("/wp-content/uploads/2026/03/wwit.png");
}

.project-card__visual--worldmicro {
  background-image: url("/wp-content/uploads/2026/03/worldmicro.png");
}
.project-card__visual--greatergood {
  background-image: url("/wp-content/uploads/2026/03/greater-good.png");
}
.project-card__visual--traditions {
  background-image: url("/wp-content/uploads/2026/03/traditions-health.png");
}
.project-card__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4,5,6,0.10) 0%, rgba(4,5,6,0.18) 100%);
}

.project-meta {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.meta-pill {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(10,12,18,.88);
  border: 1px solid rgba(255,255,255,.08);
  color: #eef1f6;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.project-card__body {
  padding: 30px 32px 34px;
}

.project-card__body h3 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.project-card__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.project-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

/* ========================================
   Services
======================================== */
.services-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.services-list {
  display: grid;
  gap: 22px;
  margin-top: 42px;
}

.service-card {
  display: grid;
  grid-template-columns: 56px 1fr 64px;
  gap: 18px;
  align-items: center;
  padding: 26px 30px;
}

.service-number {
  font-weight: 800;
  color: var(--cyan);
}

.service-card:nth-child(2) .service-number { color: var(--purple); }
.service-card:nth-child(3) .service-number { color: var(--green); }
.service-card:nth-child(4) .service-number { color: #ffb84d; }
.service-card:nth-child(5) .service-number { color: #ff6ec7; }
.service-card:nth-child(6) .service-number { color: #83a3ff; }

.service-card h3 {
  margin: 0 0 8px;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.05;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
  color: #f3f6fd;
}

.service-icon__svg {
  width: 24px;
  height: 24px;
  display: block;
}

.service-card {
  display: grid;
  grid-template-columns: 56px 1fr 64px;
  gap: 18px;
  align-items: center;
  padding: 26px 30px;
}

/* ========================================
   About
======================================== */
.about-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: start;
}

.about-profile {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-media {
  position: relative;
  padding: 18px;
  overflow: hidden;
  isolation: isolate;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: -18% auto auto -10%;
  width: 78%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(46,134,255,0.28), transparent 62%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--radius) - 10px);
  background: radial-gradient(
    circle at 18% 18%,
    rgba(25,215,255,0.14) 0%,
    rgba(168,60,255,0.10) 28%,
    rgba(71,255,26,0.06) 48%,
    transparent 70%
  );
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5.4;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 0 36px rgba(25,215,255,0.08),
    0 0 72px rgba(168,60,255,0.08);
}
.about-contact-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.about-contact-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.82);
  transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
}

.about-contact-icon:hover {
  transform: translateY(-1px);
  color: #ffffff;
  border-color: rgba(79, 221, 255, 0.28);
  background: rgba(255,255,255,0.05);
}

.about-contact-icon__svg {
  width: 20px;
  height: 20px;
  display: block;
}
.about-profile-meta {
  padding: 0 8px;
}

.about-role {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.about-name {
  margin: 0;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.about-copy {
  max-width: 720px;
}

.about-copy h2 {
  margin-top: 0;
}

.about-copy p {
  font-size: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.stack-grid h3 {
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 28px;
}

.stack-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.4;
}

@media (max-width: 1180px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-profile {
    max-width: 640px;
  }

  .about-copy {
    max-width: 100%;
  }
}

@media (max-width: 820px) {
  .about-photo {
    aspect-ratio: 4 / 5.1;
  }

  .about-copy p,
  .stack-grid ul {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .stack-grid {
    grid-template-columns: 1fr;
  }

  .about-name {
    font-size: 34px;
  }

  .about-photo {
    aspect-ratio: 4 / 5;
  }
}

/* ========================================
   Contact / CTA
======================================== */
.cta-panel {
  padding: 120px 0 0;
}

.cta-box {
  text-align: center;
  padding: 0 0 90px;
}

.cta-title {
  font-size: clamp(54px, 8vw, 80px);
}

.cta-subtitle {
  max-width: 900px;
  margin: 28px auto 0;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.65;
  color: var(--muted);
}

.contact-card {
  width: min(860px, 100%);
  margin: 46px auto 0;
  padding: 38px;
  text-align: left;
}

.contact-copy {
  color: var(--muted);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-field {
  display: grid;
  gap: 10px;
}

.contact-field label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #b1b8c8;
  text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(6,7,9,0.96);
  color: #fff;
  padding: 18px 20px;
  outline: none;
}

.contact-field textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.submit-row {
  margin-top: 22px;
}

.submit-row button {
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 22px 26px;
  background: var(--green);
  color: #071106;
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
}
.contact-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.notice {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 600;
}

.notice--success {
  background: rgba(71,255,26,0.12);
  border: 1px solid rgba(71,255,26,0.28);
  color: #c8ffb7;
}

.notice--error {
  background: rgba(255,96,96,0.12);
  border: 1px solid rgba(255,96,96,0.28);
  color: #ffd0d0;
}

/* ========================================
   Footer
======================================== */
.site-footer {
  padding: 70px 0 50px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 26px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

.footer-copy {
  max-width: 440px;
  margin-top: 18px;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 56px;
}

.footer-links h3 {
  margin: 0 0 18px;
  font-size: 20px;
}

.footer-links a,
.footer-meta a,
.footer-meta span {
  display: block;
  margin-bottom: 14px;
  color: #9098ab;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ========================================
   Accessibility
======================================== */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ========================================
   Scroll Reveal Animations
======================================== */
.reveal-card,
.reveal-service {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-card {
  transform: translateY(42px) scale(0.985);
}

.reveal-service.reveal-left {
  transform: translateX(-56px);
}

.reveal-service.reveal-right {
  transform: translateX(56px);
}

.reveal-card.is-visible,
.reveal-service.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* slight stagger support if added inline by JS */
.reveal-card,
.reveal-service {
  transition-delay: var(--reveal-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-card,
  .reveal-service {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* ========================================
   Responsive
======================================== */
@media (max-width: 1180px) {
  .hero,
  .services-layout,
  .about-grid,
  .site-footer__inner,
  .section-top {
    grid-template-columns: 1fr;
  }

  .section-top {
    display: grid;
  }

  .projects-grid,
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .section-top {
    display: block;
  }

  .section-summary {
    margin-top: 16px;
    max-width: 100%;
  }

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

  .projects-grid .project-card:nth-child(even) {
    margin-top: 0;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-shell {
    width: min(calc(100% - 10px), 1480px);
  }

  .site-header__inner {
    min-height: 70px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    gap: 34px;
    padding-top: 56px;
    min-height: auto;
  }

  .stats,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-badge {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: -92px;
  }

  .scroll-indicator {
    bottom: 0;
  }
}

@media (max-width: 560px) {
  .button,
  .button-outline,
  .header-cta {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 24px;
  }
}

 /* ========================================
   Legal / Standard Pages
======================================== */
.legal-page {
  padding: 96px 0 120px;
}

.legal-page__inner {
  max-width: 900px;
}

.legal-content {
  padding: 40px;
}

.legal-page__title {
  margin: 0 0 24px;
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.legal-page__body {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.legal-page__body h2,
.legal-page__body h3,
.legal-page__body h4 {
  margin: 40px 0 14px;
  color: var(--text);
  line-height: 1.15;
}

.legal-page__body h2 {
  font-size: 30px;
}

.legal-page__body h3 {
  font-size: 24px;
}

.legal-page__body p,
.legal-page__body ul,
.legal-page__body ol {
  margin: 0 0 18px;
}

.legal-page__body ul,
.legal-page__body ol {
  padding-left: 22px;
}

.legal-page__body a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.28);
  text-underline-offset: 3px;
}

@media (max-width: 560px) {
  .legal-content {
    padding: 24px;
  }

  .legal-page {
    padding: 72px 0 96px;
  }

  .legal-page__body {
    font-size: 16px;
  }
}