:root {
  --ink: #081016;
  --night: #101a23;
  --night-soft: #172532;
  --panel: rgba(19, 31, 42, 0.88);
  --panel-solid: #172532;
  --gold: #d9b34a;
  --gold-strong: #f0c95d;
  --rose: #9b2637;
  --cream: #fff7e7;
  --paper: #fbf5ea;
  --text: #f7efe0;
  --muted: #b9c1c8;
  --line: rgba(217, 179, 74, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --max: 1180px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  background:
    radial-gradient(circle at 20% 8%, rgba(217, 179, 74, 0.16), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(155, 38, 55, 0.16), transparent 30%),
    linear-gradient(135deg, #091015 0%, #101a23 45%, #070b0f 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: rgba(217, 179, 74, 0.38);
  color: var(--cream);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 179, 74, 0.22);
  background: rgba(8, 16, 22, 0.86);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 36px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(217, 179, 74, 0.46);
  border-radius: 50%;
  object-fit: cover;
  background: #000;
  box-shadow: 0 0 0 6px rgba(217, 179, 74, 0.08);
}

.brand-copy {
  display: grid;
  gap: 0;
  min-width: 0;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  line-height: 1.05;
  color: var(--cream);
  white-space: nowrap;
}

.brand-copy span {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.nav-links a {
  position: relative;
  padding: 10px 11px;
  border-radius: 999px;
  color: rgba(255, 247, 231, 0.82);
  font-size: 0.92rem;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
  background: rgba(217, 179, 74, 0.12);
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #091015;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  box-shadow: 0 14px 34px rgba(217, 179, 74, 0.24);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(217, 179, 74, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.welcome-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(8, 16, 22, 0.96), rgba(20, 31, 40, 0.94)),
    url("../images/background.jpg") center / cover;
  animation: splashExit 800ms ease 2500ms forwards;
}

.welcome-box {
  width: min(720px, 100%);
  text-align: center;
}

.welcome-line {
  height: 1px;
  width: 100%;
  margin: 18px 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform-origin: left;
  animation: lineSweep 1400ms ease both;
}

.welcome-box p {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: slideInLeft 900ms ease both;
}

.welcome-box h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 6rem);
  line-height: 0.98;
  color: var(--cream);
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  animation: slideInRight 1000ms ease both;
}

.welcome-box h1 span,
.gold-text {
  color: var(--gold-strong);
}

.welcome-done .welcome-screen {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(217, 179, 74, 0.18);
}

.hero-home {
  background:
    linear-gradient(90deg, rgba(8, 16, 22, 0.93), rgba(8, 16, 22, 0.72) 48%, rgba(8, 16, 22, 0.88)),
    url("../images/background.jpg") center / cover;
}

.hero::before {
  content: "";
  position: absolute;
  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: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -22% -10%;
  height: 42%;
  background: linear-gradient(0deg, var(--night), transparent);
}

.hero-inner,
.section-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.68fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(56px, 8vw, 100px) 0;
}

.eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  border: 1px solid rgba(217, 179, 74, 0.38);
  border-radius: 999px;
  color: var(--gold-strong);
  background: rgba(217, 179, 74, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.eyebrow {
  margin-bottom: 22px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.page-title,
.section-title h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.02;
  color: var(--cream);
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 8vw, 7.3rem);
  text-wrap: balance;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(247, 239, 224, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.card-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transition: transform 520ms ease;
}

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

.btn:hover::before {
  transform: translateX(120%);
}

.btn-primary {
  color: #081016;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  box-shadow: 0 18px 42px rgba(217, 179, 74, 0.26);
}

.btn-secondary {
  color: var(--cream);
  border: 1px solid rgba(255, 247, 231, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost {
  color: var(--gold-strong);
  border: 1px solid rgba(217, 179, 74, 0.34);
  background: rgba(217, 179, 74, 0.08);
}

.btn svg,
.nav-action svg,
.float-btn svg,
.info-icon svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.hero-card {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(217, 179, 74, 0.26);
  border-radius: var(--radius);
  background: rgba(8, 16, 22, 0.68);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(217, 179, 74, 0.22), transparent 34%, rgba(155, 38, 55, 0.16));
}

.hero-logo-wrap {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}

.hero-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-mini {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.hero-mini strong {
  display: block;
  color: var(--cream);
  line-height: 1.2;
}

.hero-mini span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.sun-wheel {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--night) 0 28%, transparent 29%),
    repeating-conic-gradient(from 0deg, var(--gold) 0 9deg, transparent 9deg 22deg);
  box-shadow: 0 0 0 1px rgba(217, 179, 74, 0.22), 0 0 42px rgba(217, 179, 74, 0.24);
  animation: chakraSpin 10s linear infinite;
}

.sun-wheel::before,
.sun-wheel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.sun-wheel::before {
  inset: 13px;
  border: 2px solid var(--gold);
}

.sun-wheel::after {
  inset: 22px;
  background: var(--gold);
}

.section {
  padding: clamp(62px, 9vw, 108px) 0;
  background: linear-gradient(180deg, rgba(16, 26, 35, 0.78), rgba(8, 16, 22, 0.58));
}

.section.light-band {
  color: var(--night);
  background:
    radial-gradient(circle at 20% 0%, rgba(217, 179, 74, 0.14), transparent 28%),
    linear-gradient(180deg, #fff9ef, #f6efe4);
}

.section.deep-band {
  background:
    linear-gradient(180deg, rgba(8, 16, 22, 0.88), rgba(13, 22, 31, 0.98)),
    url("../images/logo.jpg") center / 520px auto fixed;
}

.section-title {
  display: grid;
  gap: 14px;
  margin-bottom: clamp(28px, 5vw, 48px);
  text-align: center;
}

.section-title .kicker,
.kicker {
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-title h2 {
  font-size: clamp(2.2rem, 5.5vw, 4.8rem);
}

.section-title p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
}

.light-band .section-title h2,
.light-band .section-title p,
.light-band .page-title {
  color: var(--night);
}

.light-band .section-title p {
  color: #53606c;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 42px auto;
  color: var(--gold);
}

.divider::before,
.divider::after {
  content: "";
  width: min(210px, 27vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 179, 74, 0.42));
}

.divider::after {
  background: linear-gradient(90deg, rgba(217, 179, 74, 0.42), transparent);
}

.divider .sun-wheel {
  width: 42px;
  height: 42px;
  box-shadow: 0 0 0 1px rgba(217, 179, 74, 0.22);
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.service-card,
.info-card,
.proof-card,
.video-card,
.booking-panel,
.story-panel {
  border: 1px solid rgba(217, 179, 74, 0.22);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.service-card,
.info-card {
  position: relative;
  min-height: 100%;
  padding: 26px;
  overflow: hidden;
}

.service-card::before,
.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(217, 179, 74, 0.16), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover::before,
.info-card:hover::before {
  opacity: 1;
}

.service-card:hover,
.info-card:hover,
.proof-card:hover {
  border-color: rgba(217, 179, 74, 0.46);
}

.service-icon,
.info-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #081016;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  box-shadow: 0 12px 28px rgba(217, 179, 74, 0.22);
}

.service-card h3,
.info-card h3,
.proof-card h3,
.video-card h3,
.booking-panel h2,
.story-panel h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  color: var(--cream);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.12;
}

.light-band .service-card,
.light-band .info-card,
.light-band .proof-card {
  color: var(--night);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(8, 16, 22, 0.1);
}

.light-band .service-card h3,
.light-band .info-card h3,
.light-band .proof-card h3 {
  color: var(--night);
}

.service-card p,
.info-card p,
.proof-card p,
.video-card p,
.story-panel p {
  margin: 0;
  color: var(--muted);
}

.light-band .service-card p,
.light-band .info-card p,
.light-band .proof-card p {
  color: #53606c;
}

.proof-card,
.video-card {
  overflow: hidden;
}

.proof-card img,
.achievement-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.proof-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0a0e13;
}

.proof-card:hover img,
.achievement-card:hover img {
  transform: scale(1.04);
}

.proof-copy,
.video-copy {
  padding: 20px;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.achievement-card {
  position: relative;
  min-height: 300px;
  border: 1px solid rgba(217, 179, 74, 0.24);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0a0e13;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.achievement-card:nth-child(1),
.achievement-card:nth-child(4) {
  grid-column: span 5;
}

.achievement-card:nth-child(2),
.achievement-card:nth-child(3) {
  grid-column: span 7;
}

.achievement-card:nth-child(5),
.achievement-card:nth-child(6) {
  grid-column: span 6;
}

.achievement-card::after {
  content: attr(data-title);
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(217, 179, 74, 0.34);
  border-radius: var(--radius);
  color: var(--cream);
  font-weight: 800;
  background: rgba(8, 16, 22, 0.72);
  backdrop-filter: blur(12px);
}

.page-hero {
  min-height: 46vh;
  background:
    linear-gradient(90deg, rgba(8, 16, 22, 0.94), rgba(8, 16, 22, 0.76)),
    url("../images/background.jpg") center / cover;
}

.page-hero .hero-inner {
  grid-template-columns: 1fr;
  max-width: 920px;
}

.page-title {
  font-size: clamp(2.7rem, 7vw, 6.4rem);
}

.page-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(247, 239, 224, 0.82);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: center;
}

.story-panel,
.booking-panel {
  padding: clamp(24px, 4vw, 42px);
}

.story-panel .logo-feature {
  width: min(360px, 100%);
  margin: 0 auto 26px;
  border: 1px solid rgba(217, 179, 74, 0.28);
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(217, 179, 74, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.contact-item small {
  display: block;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-item strong,
.contact-item span {
  color: var(--cream);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.booking-form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field input,
.field select {
  min-height: 54px;
  padding: 0 15px;
}

.field textarea {
  min-height: 130px;
  padding: 14px 15px;
  resize: vertical;
}

.field select option {
  color: #081016;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(217, 179, 74, 0.74);
  box-shadow: 0 0 0 4px rgba(217, 179, 74, 0.12);
  background: rgba(255, 255, 255, 0.11);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  text-align: center;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 7vw, 74px) 0;
  border-top: 1px solid rgba(217, 179, 74, 0.22);
  border-bottom: 1px solid rgba(217, 179, 74, 0.22);
  background:
    linear-gradient(90deg, rgba(8, 16, 22, 0.92), rgba(23, 37, 50, 0.88)),
    url("../images/background.jpg") center / cover;
}

.cta-card {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
}

.cta-card h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--cream);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
}

.cta-card p {
  margin: 10px 0 0;
  color: rgba(247, 239, 224, 0.78);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}

.social-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(217, 179, 74, 0.28);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  gap: 12px;
}

.float-btn {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38);
  transition: transform 180ms ease;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.float-btn.phone {
  background: #122132;
}

.float-btn.whatsapp {
  background: #25d366;
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.35);
}

.site-footer {
  padding: 50px 0 28px;
  color: rgba(247, 239, 224, 0.78);
  background: #070b0f;
}

.footer-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.8rem;
  line-height: 1.1;
}

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

.footer-links a {
  color: rgba(247, 239, 224, 0.78);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  width: min(var(--max), calc(100% - 36px));
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(217, 179, 74, 0.18);
  color: rgba(247, 239, 224, 0.58);
  font-size: 0.92rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-height: 88vh;
  width: auto;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.52);
}

.lightbox button {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(217, 179, 74, 0.38);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(8, 16, 22, 0.8);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 170ms;
}

.delay-3 {
  transition-delay: 250ms;
}

@keyframes chakraSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes lineSweep {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-70px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(70px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes splashExit {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 82px);
    display: grid;
    align-content: start;
    gap: 4px;
    padding: 20px 28px 28px;
    border-bottom: 1px solid rgba(217, 179, 74, 0.22);
    background: rgba(8, 16, 22, 0.98);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    overflow: auto;
    transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease;
  }

  .menu-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a,
  .nav-action {
    justify-content: flex-start;
    width: 100%;
    border-radius: var(--radius);
    padding: 14px;
    font-size: 1.05rem;
  }

  .hero-inner,
  .split,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 520px;
  }

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

  .achievement-card,
  .achievement-card:nth-child(n) {
    grid-column: span 6;
  }

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

@media (max-width: 640px) {
  .nav-wrap {
    width: min(100% - 24px, var(--max));
    min-height: 74px;
  }

  .brand {
    gap: 9px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-copy span {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .nav-links {
    top: 74px;
    max-height: calc(100vh - 74px);
  }

  .hero {
    min-height: calc(100vh - 74px);
  }

  .hero-inner,
  .section-inner {
    width: min(100% - 24px, var(--max));
  }

  .hero-inner {
    padding: 42px 0 70px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.4rem);
  }

  .hero-copy,
  .page-lead {
    font-size: 1rem;
  }

  .hero-actions,
  .card-actions,
  .cta-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .grid-3,
  .grid-4,
  .video-grid {
    grid-template-columns: 1fr;
  }

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

  .achievement-card,
  .achievement-card:nth-child(n) {
    grid-column: auto;
    min-height: 420px;
  }

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

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

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

  .float-actions {
    right: 14px;
    bottom: 14px;
  }

  .float-btn {
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
