/* #region Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}
/* #endregion */

/* #region Container */
.container {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

@media (min-width: 56.25em) {
  .container { padding: 0 3rem; }
}
/* #endregion */

/* #region Citations */
.cite-source {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(0, 0, 0, 0.4);
  line-height: 1.55;
}
/* #endregion */

/* #region A11y */
.visually-hidden {
  position: absolute !important;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* #endregion */

/* #region Lucide Icons */
[data-lucide] {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Topbar icons */
.topbar-icon[data-lucide] {
  width: 0.75rem;
  height: 0.75rem;
  stroke-width: 2;
  opacity: 0.5;
}

/* Nav chevron */
.nav-chevron[data-lucide],
svg.nav-chevron {
  width: 0.75rem;
  height: 0.75rem;
  stroke-width: 2;
}

/* Dropdown arrow in fullscreen menu sub-links — not needed */

/* Button arrows */
.btn-primary [data-lucide],
.btn-outline [data-lucide] {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
}

/* Read more link arrow */
.news-read-more [data-lucide] {
  width: 0.875rem;
  height: 0.875rem;
  stroke-width: 2.5;
  transition: transform 0.2s ease;
}

.news-read-more:hover [data-lucide] {
  transform: translateX(0.25rem);
}

/* Pillar icons */
.pillar-icon [data-lucide] {
  width: 1.75rem;
  height: 1.75rem;
  stroke: var(--teal-light);
  stroke-width: 1.5;
}

/* News card background icons */
.news-img-icon [data-lucide] {
  width: 3.5rem;
  height: 3.5rem;
  stroke-width: 1;
  opacity: 0.25;
}
/* #endregion */

/* #region Topbar */
.site-topbar {
  display: none;
}

@media (min-width: 56.25em) {
  .site-topbar {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 101;
    height: 2.25rem;
    background: #1a2626;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .site-topbar.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
  }

  .site-topbar > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.topbar-symbols {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-sym-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

a.topbar-sym-item:hover { opacity: 0.7; }

.topbar-exchange {
  color: rgba(255, 255, 255, 0.4);
}

.topbar-sym-sep {
  color: rgba(255, 255, 255, 0.25);
}

.topbar-sym {
  color: var(--teal-light);
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.03125rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.topbar-contact-link:hover { color: rgba(255, 255, 255, 0.8); }
/* #endregion */

/* #region Nav */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: transparent;
  backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease, top 0.35s ease;
}

#site-nav.is-scrolled {
  background: #1a2626;
  backdrop-filter: none;
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

@media (min-width: 56.25em) {
  #site-nav { top: 2.25rem; }
  #site-nav.is-scrolled { top: 0; }
}

#site-nav > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  cursor: pointer;
}

.nav-logo-img {
  height: 4.5rem;
  width: auto;
  display: block;
  flex-shrink: 0;
  transition: height 0.35s ease;
}

#site-nav.is-scrolled .nav-logo-img {
  height: 3.5rem;
}

.nav-ticker {
  font-size: 0.6875rem;
  letter-spacing: 0.09375rem;
  color: var(--teal-light);
  font-weight: 500;
  text-transform: uppercase;
  border: 1px solid var(--teal-dark);
  padding: 0.3125rem 0.625rem;
  border-radius: 0.125rem;
}

@media (min-width: 56.25em) {
  .nav-ticker { display: none; }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-subscribe-btn {
  display: none;
  font-size: 0.6875rem;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  background: var(--teal);
  border: none;
  padding: 0.4375rem 0.875rem;
  border-radius: 0.25rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.nav-subscribe-btn:hover {
  background: var(--teal-light);
  color: #fff;
}

@media (min-width: 56.25em) {
  .nav-subscribe-btn { display: inline-block; }
}

.nav-links {
  display: none;
  gap: 1.75rem;
  list-style: none;
}

@media (min-width: 56.25em) {
  .nav-links {
    display: flex;
    margin-left: auto;
    margin-right: 0;
  }

  .nav-right {
    margin-left: 0.25rem;
  }
}

.nav-links .nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.8125rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  cursor: pointer;
  user-select: none;
}

.nav-links .nav-link:hover,
.nav-links .nav-link.active { color: var(--teal-light); }

.nav-chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
  pointer-events: none;
}

.nav-has-dropdown:hover .nav-chevron,
.nav-has-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-has-dropdown {
  position: relative;
  cursor: pointer;
  /* Keep closed dropdown panel out of scrollWidth (probe false-positive) */
  overflow: hidden;
}

.nav-has-dropdown:hover,
.nav-has-dropdown:focus-within {
  overflow: visible;
}

/* Transparent bridge fills the gap so hover isn't lost when moving to dropdown */
.nav-has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -1rem;
  right: -1rem;
  height: 0.875rem;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.875rem);
  left: 0;
  z-index: 50;
  background: #1a2626;
  border: 0.0625rem solid rgba(255, 255, 255, 0.08);
  border-top: 0.125rem solid var(--teal);
  min-width: 12rem;
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  cursor: default;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown,
.nav-has-dropdown.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: all;
}

.nav-dropdown-link {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.625rem 1.25rem;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}

.nav-dropdown-link:hover {
  color: var(--teal-light);
  background: rgba(26, 138, 122, 0.08);
}

/* Hamburger — span-based with morph to X */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  width: 2.75rem;
  height: 2.75rem;
  background: transparent;
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  padding: 0;
}

.nav-hamburger:hover { border-color: var(--teal-light); color: var(--teal-light); }

.hbg-line {
  display: block;
  width: 1.125rem;
  height: 0.125rem;
  background: currentColor;
  border-radius: 0.0625rem;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.25s ease;
  transform-origin: center;
}

.nav-hamburger.is-open .hbg-line:nth-child(1) { transform: translateY(0.4375rem) rotate(45deg); }
.nav-hamburger.is-open .hbg-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open .hbg-line:nth-child(3) { transform: translateY(-0.4375rem) rotate(-45deg); }

@media (min-width: 56.25em) {
  .nav-hamburger { display: none; }
}
/* #endregion */

/* #region Fullscreen Menu */
.fs-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}

.fs-menu.is-open {
  visibility: visible;
  pointer-events: all;
}

.fs-menu-bg {
  position: absolute;
  inset: 0;
  background: #0d0d0d;
  clip-path: circle(0% at calc(100% - 2.625rem) 2.25rem);
  transition: clip-path 0.65s cubic-bezier(0.77, 0, 0.18, 1);
}

.fs-menu.is-open .fs-menu-bg {
  clip-path: circle(160% at calc(100% - 2.625rem) 2.25rem);
}

.fs-menu-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  max-width: 37.5rem;
  margin: 0 auto;
}

@media (min-width: 37.5em) {
  .fs-menu-content { padding: 2.5rem 3rem; }
}

/* Header row */
.fs-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(-1rem);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: 0s;
}

.fs-menu.is-open .fs-menu-header {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.fs-menu-logo img {
  height: 2rem;
  width: auto;
  display: block;
  opacity: 0.85;
  filter: brightness(1.15);
}

/* Nav items */
.fs-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.fs-menu-item {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fs-menu-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.fs-menu-link {
  display: inline-block;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.0625rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  line-height: 1;
  padding: 0.75rem 0;
  transition: color 0.2s ease, padding-left 0.25s ease;
  transform: translateY(100%);
  opacity: 0;
  transition: color 0.2s, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s ease;
  cursor: pointer;
  user-select: none;
}

.fs-menu.is-open .fs-menu-link {
  transform: translateY(0);
  opacity: 1;
  transition-delay: calc(var(--i, 0) * 0.07s + 0.3s);
}

.fs-menu-link:hover,
.fs-menu-link.active {
  color: var(--teal-light);
  padding-left: 0.75rem;
}

/* Sub-links */
.fs-menu-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.5rem;
  padding-bottom: 0.625rem;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.fs-menu.is-open .fs-menu-sub {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--i, 0) * 0.07s + 0.45s);
}

.fs-menu-sub-link {
  font-size: 0.75rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.2s;
  cursor: pointer;
  user-select: none;
}

.fs-menu-sub-link:hover { color: var(--teal-light); }

/* Footer row */
.fs-menu-footer {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: 0s;
}

.fs-menu.is-open .fs-menu-footer {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

.fs-menu-ticker {
  font-size: 0.6875rem;
  letter-spacing: 0.09375rem;
  color: var(--teal-light);
  font-weight: 500;
  text-transform: uppercase;
  border: 1px solid var(--teal-dark);
  padding: 0.3125rem 0.625rem;
  border-radius: 0.125rem;
}

.fs-menu-socials {
  display: flex;
  gap: 1rem;
}

.fs-menu-social-link {
  font-size: 0.6875rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.fs-menu-social-link:hover { color: rgba(255, 255, 255, 0.7); }

@media (min-width: 56.25em) {
  .fs-menu { display: none; }
}


/* #region FS Menu Close / Accordion (ported from kirkstone) */
.fs-menu-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 0.5rem;
  opacity: 0;
  transform: rotate(-90deg);
  transition: opacity 0.3s ease 0.4s, transform 0.3s ease 0.4s, color 0.2s;
}

.fs-menu.is-open .fs-menu-close {
  opacity: 1;
  transform: rotate(0deg);
}

.fs-menu-close:hover {
  color: var(--gold);
}

.fs-menu-close [data-lucide] {
  width: 1.75rem;
  height: 1.75rem;
  stroke-width: 2;
}

.fs-menu-arrow {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
  color: rgba(255, 255, 255, 0.4);
}

.fs-menu-item.sub-open .fs-menu-arrow {
  transform: rotate(180deg);
}

.fs-menu-item.sub-open .fs-menu-sub {
  max-height: 20rem;
  padding: 0.5rem 0 0.75rem 0.5rem;
}

body.fs-open #site-nav {
  visibility: hidden;
}
/* #endregion */
/* #endregion */

/* #region Subpage Page Top */
.page-banner,
.proj-hero {
  background-color: #1a2626;
  position: relative;
  overflow: hidden;
  padding: 9rem 0 4rem;
}

.page-banner::before,
.proj-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/gallery/subpage_hero.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.page-banner > .container,
.proj-hero > .container {
  position: relative;
  z-index: 1;
}

.page-banner::after,
.proj-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.0625rem;
  background: linear-gradient(90deg, var(--teal-dark), transparent);
  z-index: 1;
}

.page-banner-title,
.proj-hero h1 {
  margin-top: 0;
  margin-bottom: 0;
}
/* #endregion */

/* #region Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 3.75rem;
  background: var(--charcoal);
  overflow: hidden;
}

@media (min-width: 56.25em) {
  .hero { padding: 0 0 5rem; }
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

@media (min-width: 56.25em) {
  .hero-video {
    inset: auto;
    top: 50%;
    left: 0;
    width: 150%;
    height: auto;
    transform: translateY(-50%);
    object-fit: unset;
  }
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(6, 14, 12, 0.72) 0%,
      rgba(6, 14, 12, 0.25) 40%,
      rgba(6, 14, 12, 0.72) 100%),
    linear-gradient(135deg, rgba(26, 138, 122, 0.18) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 72rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.6875rem;
  letter-spacing: 0.1875rem;
  text-transform: uppercase;
  color: var(--teal-light);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--teal-light);
}

.hero-h1 {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.25rem, 6.5vw, 4.25rem);
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 0;
  overflow-wrap: normal;
  max-width: 100%;
}

.hero-h1 span {
  color: var(--teal-light);
  font-style: normal;
  display: block;
}

.hero-h1::after {
  content: '';
  display: block;
  width: 3.5rem;
  height: 0.25rem;
  background: var(--orange);
  margin-top: 1.5rem;
}

.hero-sub {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  line-height: 1.6;
  max-width: 30rem;
  margin-top: 1.25rem;
  margin-bottom: 2.5rem;
  overflow-wrap: anywhere;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 2.5rem;
}

.hero-scroll {
  position: absolute;
  bottom: 1.75rem;
  right: 1.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.5625rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.8); }
}
/* #endregion */

/* #region Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal);
  color: #fff;
  padding: 0.875rem 1.75rem;
  font-size: 0.8125rem;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--teal-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.875rem 1.75rem;
  font-size: 0.8125rem;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover { border-color: var(--teal-light); color: var(--teal-light); }
/* #endregion */

/* #region Stats Bar */
.stats-bar {
  background: var(--charcoal-mid);
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-bar > .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 43.75em) {
  .stats-bar > .container { grid-template-columns: repeat(4, 1fr); }
}

.stat-item { text-align: center; }

.stat-num {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 2.25rem;
  color: var(--teal-light);
  line-height: 1;
  letter-spacing: 0.0625rem;
}

.stat-label {
  font-size: 0.625rem;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.375rem;
  font-weight: 500;
}
/* #endregion */

/* #region Section Commons */
section {
  padding: 5rem 0;
  position: relative;
  z-index: 1; /* opaque sections stay above footer fill extended behind CTA */
}

@media (min-width: 56.25em) {
  section { padding: 6.25rem 0; }
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.625rem;
  letter-spacing: 0.1875rem;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--teal);
}

.section-h2 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.section-h2 em {
  font-style: italic;
  color: var(--teal);
}

.section-intro {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 36.25rem;
}
/* #endregion */

/* #region About */
.about { background: var(--warm-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 56.25em) {
  .about-grid {
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
  }
}

.about-figure {
  display: block;
  overflow: hidden;
  border: 0.0625rem solid rgba(0, 0, 0, 0.08);
  cursor: zoom-in;
}

.about-figure img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.about-meta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.about-meta-label {
  font-size: 0.6875rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.about-meta-value {
  font-weight: 700;
  color: var(--teal);
  font-size: 0.9375rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem;
}

@media (min-width: 56.25em) {
  .about-pillars {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pillar {
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(26, 138, 122, 0.15);
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--teal);
}

.pillar:hover {
  transform: translateY(-0.1875rem);
  border-color: rgba(26, 138, 122, 0.4);
}

.pillar-icon {
  margin-bottom: 0.875rem;
  display: flex;
}

.pillar-title {
  font-size: 0.75rem;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
  overflow-wrap: anywhere;
}

.pillar-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}
/* #endregion */

/* #region Why Uranium */
.why-uranium {
  background: var(--charcoal);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.why-uranium .section-h2    { color: #fff; }
.why-uranium .section-intro  { color: rgba(255, 255, 255, 0.55); }
.why-uranium .section-eyebrow { color: var(--teal-light); }
.why-uranium .section-eyebrow::before { background: var(--teal-light); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin-top: 3.5rem;
}

@media (min-width: 43.75em) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 68.75em) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

.why-card {
  background: #222222;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.why-card:hover { background: rgba(26, 138, 122, 0.75); }
.why-card:hover::after { transform: scaleX(1); }

.why-card-tag {
  display: inline-block;
  font-size: 0.5625rem;
  letter-spacing: 0.15625rem;
  text-transform: uppercase;
  color: var(--teal-light);
  font-weight: 700;
  border: 1px solid rgba(26, 138, 122, 0.4);
  padding: 0.25rem 0.625rem;
  margin-bottom: 1.25rem;
}

.why-card-num {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.06);
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  line-height: 1;
  pointer-events: none;
}

.why-card h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.875rem;
  line-height: 1.15;
  color: #fff;
}

.why-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
}

/* #region WHY URANIUM — BG CYCLE */
.why-uranium .container { position: relative; z-index: 1; }

.why-bg-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.why-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.why-bg-img.is-active { opacity: 0.1; }

.why-bg-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 250px 250px;
  opacity: 0.12;
  pointer-events: none;
}

.why-card.is-active { background: rgba(26, 138, 122, 0.75); }
.why-card.is-active::after { transform: scaleX(1); }
/* #endregion */
/* #endregion */

/* #region Market Strip */
.market-strip {
  background: var(--teal-dark);
  padding: 3rem 0;
  text-align: center;
}

.market-strip > .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 43.75em) {
  .market-strip > .container { grid-template-columns: repeat(3, 1fr); }
}

.mstat-num {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 3.25rem;
  color: #fff;
  line-height: 1;
}

.mstat-label {
  font-size: 0.6875rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

.mstat-sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.25rem;
  font-weight: 300;
}

.mstat-sources {
  grid-column: 1 / -1;
  font-size: 0.625rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0.5rem;
}
/* #endregion */

/* #region Projects */
.projects { background: #fff; }
/* #endregion */

/* #region News */
.news { background: var(--off-white); }

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 43.75em) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 62.5em) {
  .news-grid { grid-template-columns: repeat(3, 1fr); }
}

.news-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-top: 0.1875rem solid var(--teal);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.news-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.1);
}

.news-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-date {
  font-size: 0.6875rem;
  letter-spacing: 0.0625rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.625rem;
}

.news-card-body h4 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.1875rem;
  line-height: 1.3;
  margin-bottom: 0.625rem;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.03125rem;
}

.news-card-body p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.news-card-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: auto;
  padding-top: 1rem;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.2s;
  min-height: 2.75rem;
  padding: 0.5rem 0;
}

.news-read-more:hover { gap: 0.625rem; }

.news-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: var(--teal);
  padding: 0.625rem 0.875rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: background 0.2s;
  min-height: 2.75rem;
}

.news-pdf-btn:hover { background: var(--teal-light); }

.news-pdf-btn [data-lucide] {
  width: 0.875rem;
  height: 0.875rem;
}
/* #endregion */

/* #region CTA Banner */
.cta-banner {
  background: none;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 56.25em) {
  .cta-banner { padding: 6.25rem 0; }
}

.cta-banner::before {
  content: none;
  background: none;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.cta-subform {
  position: relative;
}

.cta-subform-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 43.75em) {
  .cta-subform-row {
    flex-direction: row;
    align-items: stretch;
  }
}

.cta-subform input[type="email"] {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 1rem 1.25rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.cta-subform input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.cta-subform input[type="email"]:focus {
  outline: none;
  border-color: var(--teal);
}

.cta-subform .btn-primary {
  flex-shrink: 0;
  white-space: nowrap;
}

/* #endregion */

/* #region Footer */
footer {
  position: relative;
  z-index: 0;
  background: none;
  color: rgba(255, 255, 255, 0.5);
  padding: 3.75rem 0 2rem;
  overflow: visible;
}

/* Solid base colour (under the image) */
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #1a2626;
  pointer-events: none;
  z-index: 0;
}

/* Image wash over the colour */
footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/gallery/footer_bg.jpg');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

/* Extend both layers up behind the CTA — one continuous band, no seam */
body:has(.cta-banner) footer {
  margin-top: -0.0625rem;
}

body:has(.cta-banner) footer::before,
body:has(.cta-banner) footer::after {
  top: -32rem;
}

footer > .container {
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
}

@media (min-width: 56.25em) {
  .footer-top {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.85fr);
    gap: 3.5rem;
    align-items: start;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo-img {
  height: 3.5rem;
  width: auto;
  display: block;
}

.footer-symbols {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-symbol-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 0.0625rem solid rgba(255, 255, 255, 0.12);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

a.footer-symbol-badge:hover {
  color: var(--teal-light);
  border-color: rgba(42, 181, 160, 0.45);
  background: rgba(42, 181, 160, 0.1);
}

.footer-writeup {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  max-width: 22rem;
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  min-height: 2.75rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--teal-light); }

.footer-contact i {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--teal-light);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-socials a:hover {
  color: var(--teal-light);
  border-color: rgba(42, 181, 160, 0.45);
  background: rgba(42, 181, 160, 0.08);
}

.footer-socials i { font-size: 1rem; }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 1.5rem;
  min-width: 0;
}

@media (min-width: 43.75em) {
  .footer-nav { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 56.25em) {
  .footer-nav { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem 1.25rem; }
}

.footer-col h5 {
  font-size: 0.75rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
}

.footer-col ul li a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--teal-light); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  background: transparent;
}

.footer-bottom .jrxdark {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.25rem 0;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom .jrxdark:hover { color: #fff; }

.footer-bottom .jrxdark > span {
  color: #fff;
  font-weight: 700;
}

.footer-bottom .jrxdark > span > span {
  color: #9ea559;
  font-weight: 700;
}
/* #endregion */

/* #region Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}
/* #endregion */

/* #region Page Transitions */
#page-content {
  transition: opacity 0.22s ease;
}

#page-content.is-transitioning {
  opacity: 0;
  pointer-events: none;
}
/* #endregion */

/* #region Preloader */
#page-preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

#page-preloader.is-visible {
  opacity: 1;
  pointer-events: all;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

/* Orbit rings */
.preloader-orbit-wrap {
  position: relative;
  width: 9rem;
  height: 9rem;
}

.preloader-orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(26, 138, 122, 0.3);
  transform: translate(-50%, -50%);
}

.preloader-orbit-ring.r1 {
  width: 9rem;
  height: 9rem;
  animation: preloader-orbit-spin 2.2s linear infinite;
}

.preloader-orbit-ring.r2 {
  width: 6rem;
  height: 6rem;
  border-color: rgba(26, 138, 122, 0.18);
  animation: preloader-orbit-spin 3.5s linear infinite reverse;
}

.preloader-orbit-ring.r3 {
  width: 3.5rem;
  height: 3.5rem;
  border-color: rgba(26, 138, 122, 0.12);
  animation: preloader-orbit-spin 1.8s linear infinite;
}

@keyframes preloader-orbit-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.preloader-orbit-dot {
  position: absolute;
  top: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0.5rem var(--teal), 0 0 1rem rgba(26, 138, 122, 0.4);
}

/* Logo */
.preloader-logo {
  width: 13rem;
}

.preloader-logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Sweeping bar */
.preloader-bar {
  width: 10rem;
  height: 0.125rem;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
  border-radius: 0.0625rem;
}

.preloader-bar-fill {
  height: 100%;
  width: 45%;
  background: var(--teal);
  border-radius: 0.0625rem;
  animation: preloader-sweep 1.6s ease-in-out infinite;
}

@keyframes preloader-sweep {
  0%   { transform: translateX(-250%); }
  100% { transform: translateX(350%); }
}
/* #endregion */

/* #region SUBPOP */
.firstnameform { position: absolute; left: -9999px; visibility: hidden; }

.subpop {
  position: fixed;
  z-index: 9998;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.subpop.show {
  opacity: 1;
  pointer-events: all;
}

.subpop .under {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(12, 12, 12, 0.9);
  backdrop-filter: blur(0.5rem);
  transition: height 0.4s ease;
}

.subpop.show .under {
  height: 100%;
}

.subpop .item {
  background-color: var(--charcoal);
  overflow: hidden;
  transform: translateY(3rem);
  opacity: 0;
  pointer-events: none;
  margin: 2rem;
  max-width: 32rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.5);
  border-radius: 0.75rem;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.subpop .item.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.subpop .item .text {
  text-align: center;
  color: var(--off-white);
  pointer-events: none;
  opacity: 0;
  transform: translateY(3rem);
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.subpop .item .text::-webkit-scrollbar {
  display: none;
}

.subpop .item .text.show {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}

.subpop .item .text img {
  height: 5rem;
}

.subpop .item .text h3 {
  color: var(--off-white);
  margin-bottom: 0.5rem;
}

.subpop .item .text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.subpop .item .text form input[type="email"] {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--off-white);
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.2s ease-in-out;
}

.subpop .item .text form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.subpop .item .text form input[type="email"]:focus {
  outline: none;
  border-color: var(--teal);
}

.subpop .item .text form button {
  width: 100%;
  margin-top: 0.5rem;
  background-color: var(--teal);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.subpop .item .text form button:hover {
  background-color: var(--teal-dark);
}

.subpop .item .text a.closetext {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-top: auto;
  padding-top: 1.5rem;
  display: inline-block;
}

.subpop .item .text a.closetext:hover {
  color: var(--teal);
  text-decoration: none;
}

.subpop .item .image {
  display: none;
}

.subpop .close {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}

.subpop .close:hover {
  opacity: 1;
  color: var(--off-white);
}

@media only screen and (max-width: 800px) {
  .subpop .item .text img {
    height: 4rem;
  }
}
/* #endregion */

/* #region SUBRESPONSE */
.subresponse {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.subresponse.show {
  opacity: 1;
  pointer-events: all;
}

.subresponse .under {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 18, 0.88);
  backdrop-filter: blur(0.5rem);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.subresponse.show .under {
  opacity: 1;
}

.subresponse.suberror .under {
  background: rgba(40, 16, 16, 0.9);
}

.subresponse .item {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 26rem;
  background: #1a2626;
  border: 0.0625rem solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.45);
  color: #fff;
  text-align: center;
  padding: 2.5rem 2rem 2rem;
  opacity: 0;
  transform: translateY(1.5rem) scale(0.96);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.subresponse.show .item {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.08s;
}

.subresponse .item .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(0.75rem);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.subresponse .item .text.show {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.16s;
}

.subresponse .item .fa-solid {
  font-size: 2.75rem;
  color: var(--teal-light);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.subresponse.suberror .item .fa-solid {
  color: #e07070;
}

.subresponse .item h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.subresponse .item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 0.75rem;
}

.subresponse .item .close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 2rem;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--teal);
  color: #fff;
  border-radius: 0.25rem;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.subresponse .item .close:hover {
  background: var(--teal-light);
  transform: translateY(-0.0625rem);
}

.subresponse.suberror .item .close {
  background: #a04444;
}

.subresponse.suberror .item .close:hover {
  background: #c05555;
}
/* #endregion */
