:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #101010;
  --panel-strong: #161616;
  --gold: #cba135;
  --gold-light: #fbf5b7;
  --gold-dark: #b38728;
  --red: #ff3344;
  --green: #00e676;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.5;
  overflow-x: hidden;
}

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

button,
input,
select {
  font: inherit;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), #daa520);
  box-shadow: 0 0 12px rgba(203, 161, 53, 0.75);
  border-radius: 0 2px 2px 0;
  transition: opacity 180ms ease;
}

.snow-layer {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  top: -24px;
  left: var(--snow-x);
  width: var(--snow-size);
  height: var(--snow-size);
  border-radius: 50%;
  background: rgba(255, 255, 255, var(--snow-opacity));
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.62);
  filter: blur(var(--snow-blur));
  animation:
    snow-fall var(--snow-duration) linear infinite,
    snow-drift var(--snow-drift-duration) ease-in-out infinite alternate;
  animation-delay: var(--snow-delay);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(24px, 9vw, 150px);
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.94);
  border-color: var(--line);
}

.brand,
.nav-links,
.mobile-menu,
.center-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: transparent;
  background:
    radial-gradient(circle, var(--gold) 0 28%, transparent 30%),
    radial-gradient(circle, rgba(203, 161, 53, 0.22) 0 54%, transparent 56%);
  border: 2px solid rgba(203, 161, 53, 0.85);
  border-radius: 50%;
  font-size: 0;
  box-shadow: 0 0 18px rgba(203, 161, 53, 0.35);
}

.climax-star {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 95;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0) rotate(-45deg);
  transition: opacity 280ms ease, transform 520ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.climax-star.active {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.climax-star::before,
.climax-star::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(251, 245, 183, 0.54);
  animation: ring-explode 1.5s ease-out infinite;
}

.climax-star::after {
  animation-delay: 260ms;
}

.climax-star span {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), #daa520);
  clip-path: polygon(50% 0, 62% 35%, 100% 35%, 69% 57%, 82% 100%, 50% 73%, 18% 100%, 31% 57%, 0 35%, 38% 35%);
  filter: drop-shadow(0 0 12px rgba(251, 245, 183, 0.8));
}

.nav-links {
  gap: 34px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
}

.nav-links a:hover,
.mobile-menu a:hover {
  color: var(--gold-light);
}

.nav-cta {
  min-width: 138px;
  padding: 14px 28px;
  color: #fff !important;
  text-align: center;
  font-weight: 800;
  background: linear-gradient(135deg, #ff0f38, var(--red));
  border-radius: 999px;
  box-shadow: 0 0 28px rgba(255, 51, 68, 0.42);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.mobile-menu {
  position: fixed;
  inset: 78px 16px auto;
  z-index: 89;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(12, 12, 12, 0.98);
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: 91vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 136px clamp(24px, 9vw, 150px) 86px;
}

.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  animation: heroFade 24s infinite linear;
}

.slide-one { background-image: url("https://assets.cdn.filesafe.space/jEcgA3ZYhYomt3oDx6u3/media/6a4e71d74ddb4a8e58d7c109.png"); }
.slide-two { background-image: url("https://assets.cdn.filesafe.space/jEcgA3ZYhYomt3oDx6u3/media/6a4fd9b39c9b37b5fdd1f3b3.png"); animation-delay: 6s; }
.slide-three { background-image: url("https://assets.cdn.filesafe.space/jEcgA3ZYhYomt3oDx6u3/media/6a50082fa1b7eb60e608ec76.png"); animation-delay: 12s; }
.slide-four { background-image: url("https://assets.cdn.filesafe.space/jEcgA3ZYhYomt3oDx6u3/media/6a50082f9c9b37b5fdde4212.png"); animation-delay: 18s; }

.hero-overlay {
  background:
    radial-gradient(circle at 82% 35%, rgba(203, 161, 53, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.74) 48%, rgba(0, 0, 0, 0.38)),
    linear-gradient(0deg, #050505, rgba(5, 5, 5, 0.72) 18%, transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 18px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.72rem;
}

.gold {
  color: var(--gold-light);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.2rem, 5.8vw, 6.4rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 span,
h2 span,
.statement h2 span {
  color: transparent;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), #daa520);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 800;
}

h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.5vw, 4.1rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
}

.hero-copy,
.section-heading p,
.panel p,
.catalog-cta p,
.statement p,
.contact-copy p,
.site-footer p,
.accordion-content p,
.tab-panel p,
.service-grid p,
.catalog-grid p,
.compare-grid p {
  color: var(--muted);
}

.hero-copy {
  max-width: 650px;
  margin: 30px 0 0;
  font-size: clamp(1rem, 1.45vw, 1.26rem);
  line-height: 1.45;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  margin-top: 32px;
  padding: 15px 32px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-red {
  color: #fff;
  background: linear-gradient(135deg, #ff0f38, var(--red), #ff0f38);
  box-shadow: 0 0 34px rgba(255, 51, 68, 0.48);
}

.button-green {
  color: #041006;
  background: linear-gradient(135deg, #00da6c, var(--green), #00da6c);
  box-shadow: 0 0 34px rgba(0, 230, 118, 0.34);
}

.button-ghost {
  color: #090909;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: rgba(203, 161, 53, 0.45);
  box-shadow: 0 0 28px rgba(203, 161, 53, 0.28);
}

.button-red:hover {
  box-shadow: 0 0 44px rgba(255, 51, 68, 0.72);
}

.button-green:hover {
  box-shadow: 0 0 44px rgba(0, 230, 118, 0.55);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin-top: 34px;
}

.hero-metrics div {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.hero-metrics strong,
.trilogy-card > span {
  display: block;
  color: var(--text);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
}

.hero-metrics strong span {
  color: var(--gold-light);
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.marquee {
  overflow: hidden;
  padding: 10px 0;
  background: linear-gradient(90deg, #b38728, #fbf5b7, #daa520);
  color: #080808;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

.marquee div {
  display: flex;
  width: max-content;
  gap: 34px;
  animation: marquee 22s linear infinite;
}

.marquee span::before {
  content: "• ";
}

.section {
  position: relative;
  padding: clamp(82px, 11vw, 150px) clamp(24px, 9vw, 150px);
  background:
    radial-gradient(circle at 22% 4%, rgba(255, 51, 68, 0.08), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 48px 48px, 48px 48px, auto;
}

.darker {
  background:
    radial-gradient(circle at 82% 14%, rgba(203, 161, 53, 0.08), transparent 32%),
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    #0a0a0a;
  background-size: auto, 48px 48px, 48px 48px, auto;
}

.section-heading {
  max-width: 880px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading p {
  max-width: 720px;
  margin: 18px auto 0;
}

.two-column,
.mission-grid,
.feature-grid,
.compare-grid,
.contact-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.mission-grid {
  margin-top: 22px;
}

.panel,
.catalog-grid article,
.gallery-grid article,
.service-grid article,
.feature-grid article,
.compare-grid article,
.trilogy-card,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(7, 7, 7, 0.72);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.panel {
  position: relative;
  overflow: hidden;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.panel:hover {
  border-color: rgba(203, 161, 53, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.accordion {
  max-width: 960px;
  margin: 0 auto;
  border-top: 0;
}

.accordion-item {
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(203, 161, 53, 0.06), rgba(255, 255, 255, 0.025));
  overflow: hidden;
  backdrop-filter: blur(10px);
}

#processAccordion .accordion-item.open {
  border-color: rgba(203, 161, 53, 0.62);
  box-shadow: 0 0 34px rgba(203, 161, 53, 0.11);
}

.accordion-item button {
  width: 100%;
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border: 0;
  color: var(--text);
  background: transparent;
  text-align: left;
  cursor: pointer;
  padding: 0 28px;
  font-weight: 700;
}

.accordion-item strong {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.accordion-item.open .accordion-content {
  max-height: 260px;
}

.accordion-content p {
  margin: 0 28px 28px;
}

.center-actions {
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.center-actions .button {
  margin-top: 0;
}

.trilogy-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.trilogy-timeline::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 11%;
  right: 11%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  box-shadow: 0 0 18px rgba(203, 161, 53, 0.86);
}

.trilogy-card {
  position: relative;
  padding-top: 88px;
  text-align: center;
  overflow: visible;
}

.trilogy-card > span {
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  color: #fff;
  background: linear-gradient(135deg, #c98a00, var(--gold));
  border: 1px solid rgba(251, 245, 183, 0.55);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 28px rgba(203, 161, 53, 0.55);
}

.trilogy-card.active > span {
  background: linear-gradient(135deg, #ff0f38, var(--red));
  box-shadow: 0 0 30px rgba(255, 51, 68, 0.55);
}

.media-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000;
  cursor: zoom-in;
}

.media-frame img,
.visual-grid img,
.gallery-grid img,
.gallery-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, opacity 300ms ease;
}

.media-frame:hover img,
.visual-grid article:hover img,
.gallery-grid article:hover img,
.gallery-grid article:hover video {
  opacity: 1;
  transform: scale(1.06);
}

.statement {
  padding: clamp(94px, 13vw, 165px) clamp(24px, 9vw, 150px);
  text-align: left;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.4)),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    url("https://assets.cdn.filesafe.space/jEcgA3ZYhYomt3oDx6u3/media/6a66e576fb06386ede494a4f.png") center right / cover;
  background-size: auto, 56px 56px, 56px 56px, cover;
}

.statement > div {
  max-width: 640px;
  margin: 0;
}

.statement p {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: 1.14rem;
}

.catalog-grid,
.service-grid,
.gallery-grid,
.document-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.catalog-grid article,
.service-grid article {
  min-height: 170px;
}

.visual-grid {
  grid-auto-flow: dense;
}

.visual-grid article,
.gallery-grid article {
  position: relative;
  min-height: 260px;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  isolation: isolate;
}

.visual-grid article::after,
.gallery-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.24) 54%, transparent);
  pointer-events: none;
}

.visual-grid article div,
.gallery-grid article div {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: clamp(20px, 3vw, 32px);
}

.visual-grid .featured,
.gallery-grid .wide {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 540px;
}

.catalog-cta {
  max-width: 820px;
  margin: 34px auto 0;
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(0, 230, 118, 0.28);
  border-radius: 8px;
  background: rgba(0, 230, 118, 0.05);
}

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

.expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms ease;
}

.expandable.open {
  max-height: 900px;
  margin-top: 24px;
}

.compare-grid .bad {
  border-color: rgba(255, 51, 68, 0.34);
}

.compare-grid .good {
  border-color: rgba(0, 230, 118, 0.34);
}

.document-list span {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  font-weight: 700;
}

.contact-section {
  align-items: start;
  grid-template-columns: minmax(320px, 0.88fr) minmax(560px, 1.12fr);
  gap: clamp(34px, 5vw, 72px);
  max-width: 1240px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 22px 0 0;
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
}

.contact-info > a,
.contact-info > div {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.035);
}

.contact-info span {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-info a {
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.contact-info a:hover,
.footer-contact-link:hover,
.site-footer a:hover {
  color: var(--gold-light);
}

.contact-info > div a {
  color: rgba(255, 255, 255, 0.76);
}

.contact-copy h2 {
  max-width: 570px;
  font-size: clamp(2.9rem, 4.7vw, 5rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 620px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  align-self: center;
  max-width: 760px;
  padding: clamp(24px, 2.6vw, 34px);
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 15px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.42);
  font-size: 0.94rem;
  font-weight: 500;
}

.contact-form button,
.form-message {
  grid-column: 1 / -1;
}

.contact-form .field-wide {
  grid-column: span 2;
}

.contact-form button {
  width: 100%;
  min-height: 58px;
  margin-top: 18px;
  padding: 14px 24px;
  font-size: 0.96rem;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding: 42px clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #030303;
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

.footer-contact-link {
  display: inline-block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  overflow-wrap: anywhere;
}

.zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.zoom-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.zoom-modal img {
  max-width: min(1120px, 92vw);
  max-height: 86vh;
  border-radius: 8px;
  border: 1px solid rgba(251, 245, 183, 0.34);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.64);
  transform: scale(0.96);
  transition: transform 220ms ease;
}

.zoom-modal.open img {
  transform: scale(1);
}

.zoom-close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

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

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

@keyframes heroFade {
  0%, 100% { opacity: 0; transform: scale(1); }
  8%, 25% { opacity: 1; }
  33% { opacity: 0; transform: scale(1.06); }
}

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

@keyframes snow-fall {
  from {
    transform: translate3d(0, -10vh, 0);
  }

  to {
    transform: translate3d(0, 112vh, 0);
  }
}

@keyframes snow-drift {
  from {
    margin-left: calc(var(--snow-drift) * -1);
  }

  to {
    margin-left: var(--snow-drift);
  }
}

@keyframes ring-explode {
  to {
    opacity: 0;
    transform: scale(1.9);
  }
}

@media (prefers-reduced-motion: reduce) {
  .snow-layer {
    display: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .two-column,
  .mission-grid,
  .feature-grid,
  .compare-grid,
  .contact-section,
  .trilogy-timeline,
  .catalog-grid,
  .gallery-grid,
  .service-grid,
  .document-list,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trilogy-timeline::before {
    display: none;
  }

  .visual-grid .featured,
  .gallery-grid .wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .contact-form .field-wide {
    grid-column: auto;
  }

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

@media (max-width: 560px) {
  .brand span:last-child {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 118px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.9rem;
    line-height: 1.12;
  }

  .button {
    width: 100%;
  }
}
