:root {
  --bg-1: #140a1c;
  --bg-2: #24112e;
  --bg-3: #34183f;
  --bg-4: #4b2854;

  --cream: #f6dbc0;
  --light: #fff8ef;
  --white: #ffffff;

  --surface: rgba(32, 16, 42, 0.74);
  --surface-soft: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.12);

  --line: rgba(255, 248, 239, 0.12);
  --line-strong: rgba(255, 248, 239, 0.24);

  --text: #fff8ef;
  --muted: #d8cbd6;
  --soft: #bfaebe;
  --accent: #f6dbc0;

  --shadow: 0 28px 80px rgba(10, 4, 16, 0.42);
  --shadow-soft: 0 18px 55px rgba(10, 4, 16, 0.26);

  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;

  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 14%, rgba(246, 219, 192, 0.16), transparent 22%),
    radial-gradient(circle at 78% 18%, rgba(147, 80, 115, 0.23), transparent 26%),
    radial-gradient(circle at 62% 90%, rgba(80, 45, 85, 0.28), transparent 30%),
    linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 42%, var(--bg-4) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), transparent 96%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(10, 4, 16, 0.24) 100%),
    radial-gradient(circle at center, transparent 0%, rgba(10, 4, 16, 0.25) 100%);
  pointer-events: none;
}

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

img,
video {
  display: block;
  max-width: 100%;
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.ambient-orb {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(95px);
  opacity: 0.15;
  pointer-events: none;
}

.orb-left {
  left: -140px;
  top: 170px;
  background: rgba(147, 80, 115, 0.9);
}

.orb-right {
  right: -120px;
  top: 80px;
  background: rgba(246, 219, 192, 0.72);
}

.topbar,
.section,
.footer,
.ticker {
  width: min(calc(100% - 36px), var(--max-width));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(31, 15, 40, 0.78);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  min-width: 190px;
  max-width: 220px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
}

.brand-logo img {
  width: 185px;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.9rem;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--cream), var(--light));
  color: #3b2046;
  box-shadow: 0 16px 34px rgba(246, 219, 192, 0.24);
}

.button-secondary,
.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.button-secondary:hover,
.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: 86px 0;
}

.eyebrow,
.mini-label {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.74rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.65rem, 5vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.7vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  letter-spacing: -0.015em;
}

.lede {
  max-width: 54ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: 28px;
  min-height: calc(100vh - 150px);
  align-items: center;
  padding-top: 70px;
}

.hero-copy,
.stage-window,
.story-card,
.highlight-card,
.status-card,
.service-card,
.project-card,
.award-card,
.cert-card,
.contact-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  padding: 38px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(246, 219, 192, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(45, 24, 55, 0.78), rgba(29, 16, 38, 0.86));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-signals span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: #fff6ef;
  font-size: 0.86rem;
}

.hero-signals span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 15px rgba(246, 219, 192, 0.72);
}

.stage-window {
  overflow: hidden;
  padding: 26px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at top right, rgba(246, 219, 192, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(42, 19, 53, 0.94), rgba(86, 46, 91, 0.72));
}

.stage-logo {
  width: 100%;
  max-width: 440px;
  height: 150px;
  margin-inline: auto;
  padding: 18px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 233, 0.92));
  object-fit: contain;
}

.stage-copy {
  padding: 18px 0 0;
}

.stage-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.stage-copy h2 {
  margin: 6px 0 12px;
  font-size: clamp(1.7rem, 3.8vw, 2.3rem);
}

.stage-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.stage-footer article {
  padding: 15px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
}

.stage-footer span {
  display: block;
  margin-bottom: 7px;
  color: var(--soft);
  font-size: 0.78rem;
}

.stage-footer strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.96rem;
}

.ticker {
  overflow: hidden;
  margin-top: -8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(45, 24, 55, 0.58);
  box-shadow: var(--shadow-soft);
}

.ticker-track {
  display: flex;
  gap: 34px;
  width: max-content;
  padding: 15px 28px;
  animation: ticker-scroll 24s linear infinite;
  color: #fff7ef;
  font-weight: 800;
  font-size: 0.9rem;
}

.ticker-track span {
  position: relative;
}

.ticker-track span::after {
  content: "•";
  position: absolute;
  right: -18px;
  color: var(--cream);
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.service-grid,
.projects-grid,
.awards-grid,
.cert-grid,
.story-layout {
  display: grid;
  gap: 18px;
}

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

.cert-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.story-layout {
  grid-template-columns: 1.05fr 0.95fr;
}

.story-side {
  display: grid;
  gap: 18px;
}

.service-card,
.project-card,
.award-card,
.cert-card,
.story-card,
.highlight-card,
.status-card,
.contact-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.project-link-card {
  cursor: pointer;
}

.service-card,
.project-card,
.award-card,
.cert-card {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.service-card:hover,
.project-card:hover,
.award-card:hover,
.cert-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background: rgba(80, 45, 85, 0.68);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(246, 219, 192, 0.14);
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
}

.project-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff4ec;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card p,
.project-card p,
.award-card p,
.cert-card p,
.story-card p,
.highlight-card p,
.status-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.68;
  font-size: 0.95rem;
}

.project-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #fff1e8;
  line-height: 1.68;
  font-size: 0.93rem;
}

.project-media {
  position: relative;
  width: 100%;
  aspect-ratio: 14 / 10;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 248, 239, 0.18);
  background:
    radial-gradient(circle at top left, rgba(246, 219, 192, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.08);
}

.project-media-light {
  background: #fffaf3;
}

.project-image {
  width: 100%;
  height: 100%;
}

.project-image-cover {
  object-fit: cover;
  object-position: center;
}

.image-placeholder {
  display: none;
  place-items: center;
  width: 100%;
  min-height: 180px;
  border: 1px dashed rgba(255, 248, 239, 0.26);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top left, rgba(246, 219, 192, 0.12), transparent 40%),
    rgba(255, 255, 255, 0.045);
  color: rgba(255, 248, 239, 0.72);
  font-weight: 800;
  text-align: center;
}

.project-view-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: center;
}

.project-view-copy,
.project-view-media,
.project-video-card,
.project-feature-card,
.project-gallery-card,
.project-info-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  padding: 28px;
}

.project-video-card {
  display: grid;
  gap: 22px;
  padding: 38px;
}

.project-video-card .hero-actions {
  margin-top: 0;
}

.project-view-media {
  min-height: 340px;
}

.project-cover {
  width: 100%;
  min-height: 280px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.project-info-grid,
.project-feature-grid,
.project-gallery-grid {
  display: grid;
  gap: 20px;
}

.project-info-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-feature-grid,
.project-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-info-card span,
.project-feature-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.project-info-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
}

.project-feature-card h3,
.project-gallery-card h3 {
  margin-bottom: 10px;
}

.project-video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.25);
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(17, 7, 22, 0.46);
}

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

.project-video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 220px;
}

.gallery-placeholder-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
}

.award-card {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  align-items: center;
  gap: 22px;
  min-height: 360px;
}

.award-media {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 300px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 248, 239, 0.2);
  overflow: hidden;
}

.award-media img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  padding: 10px;
  background: #fffaf3;
}

.event-photo img {
  object-fit: cover;
  padding: 0;
}

.award-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cert-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
}

.cert-media {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 248, 239, 0.18);
  background:
    radial-gradient(circle at top left, rgba(246, 219, 192, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.06);
}

.cert-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.cert-media-document {
  aspect-ratio: 4 / 5;
  background: rgba(255, 255, 255, 0.92);
}

.cert-media-document img {
  padding: 8px;
}

.card-button {
  width: 100%;
  margin-top: auto;
}

.feature-list {
  margin: 0;
  padding-left: 18px;
  color: #fff3eb;
  line-height: 1.78;
  font-size: 0.96rem;
}

.status-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.22rem;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    radial-gradient(circle at right center, rgba(246, 219, 192, 0.15), transparent 32%),
    linear-gradient(140deg, rgba(43, 21, 52, 0.9), rgba(95, 55, 92, 0.72));
}

.contact-card h2 {
  max-width: 12ch;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 42px;
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

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

@media (max-width: 1180px) {
  .brand-logo img {
    width: 170px;
  }

  .nav {
    gap: 13px;
  }
}

@media (max-width: 1100px) {
  .hero,
  .story-layout,
  .service-grid,
  .projects-grid,
  .project-view-hero,
  .project-info-grid,
  .project-feature-grid,
  .project-gallery-grid,
  .awards-grid,
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy,
  .stage-window {
    min-height: auto;
  }

  .contact-card {
    display: grid;
  }

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

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

  .award-media,
  .award-media img {
    height: auto;
    min-height: 320px;
  }

  .project-media {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 880px) {
  .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .brand-logo {
    min-width: auto;
  }

  .brand-logo img {
    width: 175px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    order: 3;
    gap: 12px;
  }

  .nav-cta {
    margin-left: auto;
  }

  .hero-copy,
  .stage-window,
  .project-view-copy,
  .project-view-media,
  .project-video-card,
  .project-feature-card,
  .project-gallery-card,
  .project-info-card,
  .service-card,
  .project-card,
  .award-card,
  .cert-card,
  .story-card,
  .highlight-card,
  .status-card,
  .contact-card {
    padding: 23px;
  }

  .section {
    padding: 74px 0;
  }

  .hero {
    padding-top: 50px;
  }

  h1 {
    max-width: 13ch;
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .topbar,
  .section,
  .footer,
  .ticker {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .button,
  .contact-actions .button {
    width: 100%;
  }

  .brand-logo img {
    width: 155px;
  }

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

  .nav a {
    padding: 7px 0;
    font-size: 0.86rem;
  }

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

  .stage-logo {
    height: 130px;
    padding: 14px;
  }

  .award-media {
    min-height: 250px;
  }

  .award-media img {
    height: 250px;
  }

  .event-photo img {
    object-fit: cover;
  }

  .project-media {
    aspect-ratio: 4 / 3;
  }

  .image-placeholder {
    min-height: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker-track,
  .reveal {
    animation: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
