:root {
  color-scheme: dark;
  --bg: #000000;
  --bg-soft: #050505;
  --surface: rgba(10, 10, 11, 0.84);
  --surface-strong: rgba(16, 16, 18, 0.94);
  --surface-elevated: rgba(7, 7, 8, 0.96);
  --line: rgba(195, 150, 118, 0.17);
  --line-strong: rgba(195, 150, 118, 0.34);
  --text: #f7f1e6;
  --muted: rgba(247, 241, 230, 0.74);
  --muted-soft: rgba(247, 241, 230, 0.5);
  --accent: #c89872;
  --accent-soft: rgba(200, 152, 114, 0.16);
  --success: #9ad3a2;
  --success-soft: rgba(154, 211, 162, 0.14);
  --danger: #f0a3a3;
  --danger-soft: rgba(240, 163, 163, 0.14);
  --shadow: 0 28px 72px rgba(0, 0, 0, 0.46);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --content-max: 1560px;
  --font-display: "Didot", "Bodoni 72", "Times New Roman", serif;
  --font-ui: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
}

body {
  position: relative;
  line-height: 1.55;
  overflow-x: hidden;
}

body[data-text-font="arial"] {
  --font-ui: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --font-display: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

body[data-text-font="helvetica"] {
  --font-ui: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 10%, rgba(200, 152, 114, 0.08), transparent 18%),
    radial-gradient(circle at 82% 8%, rgba(200, 152, 114, 0.05), transparent 14%);
  opacity: 0.95;
}

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

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

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

button {
  cursor: pointer;
}

.site-chrome {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 11%, rgba(200, 152, 114, 0.08), transparent 18%),
    radial-gradient(circle at 84% 10%, rgba(200, 152, 114, 0.06), transparent 16%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 140;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 0;
}

body.is-intro-active {
  overflow: hidden;
}

.site-header__inner,
.site-footer__inner,
.hero__inner,
.hero-stats,
.section,
.page-hero,
.filter-bar {
  width: min(calc(100% - clamp(24px, 4vw, 56px)), var(--content-max));
  margin-inline: auto;
}

.site-header__inner {
  width: min(calc(100% - clamp(72px, 10vw, 180px)), 1360px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.1rem 0 0.8rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-lockup__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  padding: 0.15rem;
  border: 1px solid rgba(195, 150, 118, 0.24);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(195, 150, 118, 0.12));
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  overflow: hidden;
}

.brand-lockup__mark--image {
  width: 5.4rem;
  height: 5.4rem;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: 0 0 30px rgba(214, 176, 125, 0.08);
}

.brand-lockup__mark--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  filter: none;
}

.brand-lockup__copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.brand-lockup__copy strong {
  font-size: 1.12rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f0e1bf;
  text-shadow: 0 0 14px rgba(233, 202, 151, 0.1);
}

.brand-lockup__copy span {
  color: var(--muted-soft);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(11, 11, 12, 0.92);
  border-color: rgba(240, 199, 126, 0.24);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(240, 199, 126, 0.22);
  border-radius: 999px;
  background: rgba(10, 10, 11, 0.88);
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  flex-direction: column;
}

.nav-toggle span {
  width: 1rem;
  height: 1px;
  background: var(--text);
}

.hero {
  position: relative;
  padding: 7.5rem 0 2.5rem;
  overflow: clip;
}

.hero--home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(240, 199, 126, 0.07), transparent 28%);
  pointer-events: none;
}

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background: #020202;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.intro-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-screen__background,
.intro-screen__veil {
  position: absolute;
  inset: 0;
}

.intro-screen__background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
  filter: saturate(0.72) contrast(1.03);
}

.intro-screen__veil {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.92)),
    radial-gradient(circle at center, transparent 12%, rgba(5, 5, 5, 0.62) 76%);
}

.intro-screen__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - clamp(24px, 4vw, 56px)), 1460px);
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.intro-screen__eyebrow {
  margin-bottom: 0;
}

.intro-screen__brand {
  position: relative;
  isolation: isolate;
  width: min(100%, 1440px);
  aspect-ratio: 2.35 / 1;
  max-height: 72vh;
  border-radius: 2.5rem;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(195, 150, 118, 0.34);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.6), 0 0 46px rgba(200, 152, 114, 0.08);
}

.intro-screen__brand::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), transparent 11%, transparent 89%, rgba(0, 0, 0, 0.14)),
    radial-gradient(circle at center, transparent 68%, rgba(0, 0, 0, 0.14) 100%);
}

.intro-screen__brand-video,
.intro-screen__brand-fallback {
  width: 100%;
  height: 100%;
}

.intro-screen__brand-video {
  object-fit: cover;
  object-position: 19% 50%;
  transform: scale(1.01);
  background: #000;
  filter: sepia(0.08) saturate(0.62) contrast(1.04) brightness(0.93);
}

.intro-screen__brand-fallback {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: clamp(4rem, 16vw, 7rem);
  letter-spacing: 0.18em;
  text-indent: 0.18em;
}

.intro-screen__brand-fallback--image {
  background:
    radial-gradient(circle at center, rgba(200, 152, 114, 0.18), transparent 44%),
    #040404;
}

.intro-screen__brand-image {
  width: min(74%, 520px);
  height: auto;
  object-fit: contain;
}

.intro-screen__caption {
  margin: 0;
  max-width: 38ch;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.intro-screen__skip {
  min-width: 8.5rem;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: min(62vh, 680px);
}

.hero__inner--single {
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  text-align: center;
}

.hero-copy {
  width: 100%;
  max-width: 680px;
}

.hero-copy--centered {
  max-width: 1320px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.auth-card h1,
.admin-topbar h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.01em;
}

.hero-copy h1 {
  font-size: clamp(2.15rem, 3.9vw, 3.45rem);
  max-width: 1320px;
  margin-inline: auto;
  overflow-wrap: anywhere;
}

.hero--home .hero-copy h1 {
  white-space: nowrap;
}

.hero-copy__lead,
.page-hero p,
.section-heading p,
.story-flow p,
.service-card p,
.video-meta p,
.highlight-card p,
.pricing-card p,
.addon-card p,
.contact-card p,
.gear-card p,
.site-footer p,
.empty-state p {
  color: var(--muted);
}

.hero-copy__lead {
  max-width: 920px;
  margin: 1.5rem 0 0;
  margin-inline: auto;
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
}

.hero-copy__lead p,
.page-hero__copy p,
.section-copy p,
.story-flow__paragraph {
  margin: 0;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.9rem 1.45rem;
  margin-top: 1.65rem;
}

.hero-credit,
.hero-inline-link {
  color: rgba(247, 241, 230, 0.84);
  transition: color 0.18s ease, opacity 0.18s ease, border-color 0.18s ease;
}

.hero-credit {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-inline-link {
  padding-bottom: 0.12rem;
  border-bottom: 1px solid rgba(240, 199, 126, 0.26);
}

.hero-credit:hover,
.hero-inline-link:hover,
.hero-credit:focus-visible,
.hero-inline-link:focus-visible {
  color: var(--accent);
}

.hero-inline-link:hover,
.hero-inline-link:focus-visible {
  border-color: rgba(240, 199, 126, 0.58);
}

.hero-actions,
.admin-actions,
.admin-sidebar__footer,
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions {
  justify-content: center;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.button--light {
  padding-inline: 1.85rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.06) 30%, rgba(255, 255, 255, 0) 52%),
    radial-gradient(circle at 50% 46%, #eadb92 0%, #dbc471 20%, #c1a055 44%, #9e7738 72%, #7b5528 100%);
  color: #17110a;
  text-shadow: 0 1px 0 rgba(255, 248, 219, 0.2);
  border: 1px solid rgba(18, 15, 12, 0.96);
  box-shadow:
    inset 0 0 0 1px rgba(248, 227, 130, 0.94),
    inset 0 0 0 2.5px rgba(16, 13, 10, 0.96),
    inset 0 1px 0 rgba(255, 250, 232, 0.48),
    inset 0 18px 26px rgba(255, 255, 255, 0.08),
    inset 0 -18px 30px rgba(103, 74, 33, 0.24),
    0 16px 34px rgba(0, 0, 0, 0.32);
}

.button--light:hover,
.button--light:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0) 52%),
    radial-gradient(circle at 50% 46%, #f1e4a0 0%, #e2cf83 20%, #ccac60 44%, #a78141 72%, #835d2d 100%);
  border-color: rgba(18, 15, 11, 0.96);
  box-shadow:
    inset 0 0 0 1px rgba(253, 234, 142, 0.98),
    inset 0 0 0 2.5px rgba(18, 15, 11, 0.96),
    inset 0 1px 0 rgba(255, 251, 238, 0.56),
    inset 0 18px 26px rgba(255, 255, 255, 0.1),
    inset 0 -18px 30px rgba(111, 80, 37, 0.22),
    0 18px 38px rgba(0, 0, 0, 0.36);
}

.button--ghost {
  background: rgba(10, 10, 11, 0.88);
  color: var(--text);
  border-color: rgba(240, 199, 126, 0.3);
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  justify-content: center;
  gap: 1.15rem;
  margin-top: 2rem;
  max-width: 1320px;
  margin-inline: auto;
}

.stat-card,
.service-card,
.highlight-card,
.pricing-card,
.gear-card,
.empty-state,
.contact-card,
.repeater-card,
.admin-section,
.auth-card,
.addon-card {
  background:
    linear-gradient(155deg, rgba(240, 199, 126, 0.08), transparent 55%),
    var(--surface-elevated);
  border: 1px solid rgba(240, 199, 126, 0.24);
  box-shadow: var(--shadow);
}

.stat-card {
  display: grid;
  gap: 0.5rem;
  min-height: 184px;
  padding: 1.45rem 1.45rem 1.3rem;
  border-radius: var(--radius-md);
  min-width: 0;
  align-content: center;
  justify-items: center;
  text-align: center;
  border-color: rgba(240, 199, 126, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 0 0 1px rgba(240, 199, 126, 0.08),
    0 22px 54px rgba(0, 0, 0, 0.42);
}

.stat-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.35rem);
  font-weight: 400;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section,
.page-hero {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}

.page-hero {
  padding-top: 5.3rem;
  padding-bottom: 1.4rem;
  max-width: 980px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.55rem);
}

.page-hero p {
  margin-top: 1rem;
  max-width: 58ch;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 1.35rem;
  margin-inline: auto;
}

.section-heading--narrow {
  max-width: 780px;
  text-align: center;
}

.section-copy,
.page-hero__copy,
.hero-copy__lead {
  display: grid;
  gap: 1rem;
}

.page-hero__copy,
.section-copy {
  margin-top: 1rem;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.45rem);
}

.hero--home .section-heading h2 {
  white-space: nowrap;
}

.section--split .section-heading {
  margin-bottom: 1.6rem;
}

.page-hero + .filter-bar {
  margin-top: 0.15rem;
}

.page-hero + .section,
.page-hero + .section--contact,
.page-hero + .filter-bar + .section {
  padding-top: 1rem;
}

.section-link-row {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.hero-awards {
  margin-top: 2rem;
  display: grid;
  gap: 0.9rem;
}

.award-strip,
.award-project__logos {
  display: grid;
  gap: 1rem;
}

.award-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1180px;
  margin-inline: auto;
}

.award-logo {
  display: grid;
  place-items: center;
  min-height: 170px;
  padding: 1rem;
  border-radius: 1.7rem;
  background:
    radial-gradient(circle at top, rgba(240, 199, 126, 0.08), transparent 36%),
    rgba(4, 4, 5, 0.96);
  border: 1px solid rgba(240, 199, 126, 0.2);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.award-logo img {
  width: 100%;
  max-width: 210px;
  height: 100%;
  max-height: 132px;
  object-fit: contain;
}

.award-logo:hover,
.award-logo:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(240, 199, 126, 0.42);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.52);
}

.award-logo--strip {
  min-height: 0;
  padding: 0.2rem 0.45rem;
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.award-projects {
  display: grid;
  gap: 1.4rem;
  max-width: 1180px;
  margin-inline: auto;
}

.award-project {
  display: grid;
  gap: 1.4rem;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(155deg, rgba(240, 199, 126, 0.08), transparent 55%),
    var(--surface-elevated);
  border: 1px solid rgba(240, 199, 126, 0.22);
  box-shadow: var(--shadow);
}

.award-project__copy,
.award-project__text {
  display: grid;
  gap: 0.8rem;
}

.award-project__copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.3vw, 2.8rem);
  line-height: 0.98;
}

.award-project__paragraph {
  margin: 0;
}

.award-project__video .video-card {
  max-width: none;
}

.award-project__logos {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.award-logo--strip img {
  max-width: 240px;
  max-height: 154px;
}

.award-logo--strip:hover,
.award-logo--strip:focus-visible {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.featured-grid,
.portfolio-grid {
  display: grid;
  gap: 1.4rem;
  max-width: 1120px;
  margin-inline: auto;
}

.video-card {
  display: grid;
  gap: 0.9rem;
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
}

.video-card--small {
  max-width: 640px;
}

.video-card--medium {
  max-width: 860px;
}

.video-card--large {
  max-width: 1180px;
}

.video-card--full {
  max-width: none;
}

.video-frame {
  position: relative;
  border-radius: clamp(1.6rem, 2.2vw, 2.1rem);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(240, 199, 126, 0.2);
}

.video-poster {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #000;
  color: inherit;
  overflow: hidden;
}

.video-poster__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.video-poster__veil {
  position: absolute;
  inset: 0;
  opacity: 0.72;
  transition: opacity 0.28s ease;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.42)),
    radial-gradient(circle at center, rgba(240, 199, 126, 0.08), transparent 34%);
}

.video-poster__play {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  width: fit-content;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 199, 126, 0.34);
  background: rgba(8, 8, 10, 0.6);
  backdrop-filter: blur(12px);
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-poster__play-icon {
  position: relative;
  display: inline-flex;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(247, 236, 201, 0.98), rgba(240, 199, 126, 0.96));
  box-shadow: 0 0 28px rgba(240, 199, 126, 0.3);
}

.video-poster__play-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-38%, -50%);
  border-top: 0.38rem solid transparent;
  border-bottom: 0.38rem solid transparent;
  border-left: 0.62rem solid #111;
}

.video-poster:hover .video-poster__image,
.video-poster:focus-visible .video-poster__image {
  transform: scale(1.04);
  filter: saturate(1.04);
}

.video-poster:hover .video-poster__veil,
.video-poster:focus-visible .video-poster__veil {
  opacity: 0;
}

.ratio-16-9 .video-frame {
  aspect-ratio: 16 / 9;
}

.ratio-21-9 .video-frame {
  aspect-ratio: 21 / 9;
}

.ratio-9-16 .video-frame {
  aspect-ratio: 9 / 16;
}

.ratio-4-5 .video-frame {
  aspect-ratio: 4 / 5;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  display: grid;
  place-items: center;
  gap: 0.6rem;
  width: 100%;
  height: 100%;
  min-height: 260px;
  padding: 1.5rem;
  text-align: center;
  color: var(--muted);
  background:
    radial-gradient(circle at top, rgba(216, 194, 154, 0.18), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 70%);
}

.video-placeholder__label,
.video-chip,
.pricing-card__badge,
.contact-card__label {
  display: inline-flex;
  width: fit-content;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(240, 199, 126, 0.28);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-card__badge,
.addon-card strong,
.contact-card__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.48rem 1rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.06) 30%, rgba(255, 255, 255, 0) 52%),
    radial-gradient(circle at 50% 46%, #eadb92 0%, #dbc471 20%, #c1a055 44%, #9e7738 72%, #7b5528 100%);
  color: #17110a;
  text-shadow: 0 1px 0 rgba(255, 248, 219, 0.2);
  border: 1px solid rgba(18, 15, 12, 0.96);
  box-shadow:
    inset 0 0 0 1px rgba(248, 227, 130, 0.94),
    inset 0 0 0 2.5px rgba(16, 13, 10, 0.96),
    inset 0 1px 0 rgba(255, 250, 232, 0.42),
    inset 0 14px 22px rgba(255, 255, 255, 0.06),
    inset 0 -14px 24px rgba(103, 74, 33, 0.2),
    0 12px 26px rgba(0, 0, 0, 0.24);
}

.video-meta {
  display: grid;
  gap: 0.5rem;
}

.video-meta h3,
.service-card h3,
.highlight-card h3,
.pricing-card h3,
.addon-card h3,
.gear-card h3 {
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
}

.service-grid,
.highlight-grid,
.pricing-grid,
.gear-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  max-width: 980px;
  margin-inline: auto;
}

.service-card,
.highlight-card,
.pricing-card,
.gear-card,
.empty-state,
.contact-card {
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.empty-state {
  max-width: 980px;
  margin-inline: auto;
}

.empty-state h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.story-flow {
  max-width: 980px;
  display: grid;
  gap: 1rem;
  margin-bottom: 1.8rem;
  margin-inline: auto;
}

.story-flow p {
  margin: 0;
  font-size: 1.02rem;
  max-width: 760px;
}

.story-flow .video-card {
  margin-left: 0;
}

.pricing-card {
  display: grid;
  gap: 0.95rem;
}

.pricing-card__price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  color: #ead8af;
  text-shadow: 0 0 18px rgba(234, 216, 175, 0.08);
}

.feature-list {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.feature-list li + li {
  margin-top: 0.45rem;
}

.addon-grid {
  display: grid;
  gap: 1rem;
  max-width: 980px;
  margin-inline: auto;
}

.addon-card {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  border-radius: var(--radius-md);
}

.addon-card strong {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section--contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  max-width: 980px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
}

.video-modal[hidden] {
  display: none;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.82);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 28px), 1320px);
}

.video-modal__close {
  position: absolute;
  top: -3rem;
  right: 0;
  border: 1px solid rgba(240, 199, 126, 0.22);
  border-radius: 999px;
  background: rgba(12, 12, 14, 0.82);
  color: var(--text);
  padding: 0.55rem 0.9rem;
}

.video-modal__frame {
  aspect-ratio: 16 / 9;
  border-radius: 1.8rem;
  overflow: hidden;
  border: 1px solid rgba(240, 199, 126, 0.28);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.55);
}

.video-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

body.is-video-modal-open {
  overflow: hidden;
}

.contact-panel {
  display: grid;
  gap: 1rem;
}

.contact-card {
  display: grid;
  gap: 0.4rem;
  border-color: rgba(240, 199, 126, 0.28);
}

.contact-card p,
.contact-card a {
  margin: 0;
}

.contact-card--stacked {
  gap: 1rem;
}

.contact-card__stack {
  display: grid;
  gap: 0.8rem;
}

.contact-card__line {
  display: grid;
  grid-template-columns: minmax(170px, 210px) 1fr;
  gap: 0.9rem;
  align-items: start;
  line-height: 1.62;
  padding-bottom: 0.72rem;
  border-bottom: 1px solid rgba(240, 199, 126, 0.12);
}

.contact-card__line strong {
  color: var(--text);
  font-weight: 600;
}

.contact-card__value {
  color: var(--muted);
  transition: color 0.18s ease, opacity 0.18s ease;
}

.contact-card a {
  font-size: 1.05rem;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--accent);
}

.contact-form,
.auth-form {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--surface-elevated);
  border: 1px solid rgba(240, 199, 126, 0.2);
  box-shadow: var(--shadow);
}

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

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

.form-grid__wide {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 4px rgba(216, 194, 154, 0.09);
}

textarea {
  resize: vertical;
}

.form-feedback {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid transparent;
}

.form-feedback--success {
  border-color: rgba(154, 211, 162, 0.22);
  background: var(--success-soft);
  color: var(--success);
}

.form-feedback--error {
  border-color: rgba(240, 163, 163, 0.22);
  background: var(--danger-soft);
  color: var(--danger);
}

.admin-help {
  margin: -0.3rem 0 0;
  color: var(--muted-soft);
  font-size: 0.92rem;
}

.upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.upload-card {
  padding: 0.95rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(240, 199, 126, 0.14);
  background: rgba(255, 255, 255, 0.02);
}

.upload-card__top {
  margin-bottom: 0.8rem;
}

.upload-preview {
  display: grid;
  place-items: center;
  min-height: 150px;
  margin-bottom: 0.9rem;
  padding: 0.85rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(240, 199, 126, 0.14);
  background: rgba(4, 4, 5, 0.92);
}

.upload-preview img {
  width: 100%;
  max-height: 138px;
  object-fit: contain;
}

.upload-status {
  margin: 0.8rem 0 0;
  font-size: 0.88rem;
  color: var(--muted-soft);
}

.upload-status[data-state="pending"] {
  color: var(--muted);
}

.upload-status[data-state="success"] {
  color: var(--success);
}

.upload-status[data-state="error"] {
  color: var(--danger);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-note {
  margin: 0;
  color: var(--muted-soft);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding-bottom: 0.5rem;
}

.filter-chip {
  padding: 0.72rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
}

.filter-chip.is-active,
.filter-chip:hover,
.filter-chip:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--line-strong);
}

.site-footer {
  padding: 2rem 0 3rem;
}

.site-footer__inner {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__inner strong {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(247, 241, 230, 0.62);
}

.site-footer__inner p {
  max-width: 40ch;
  color: rgba(247, 241, 230, 0.42);
  font-size: 0.88rem;
}

.admin-body {
  background:
    radial-gradient(circle at top left, rgba(216, 194, 154, 0.12), transparent 22%),
    #08080b;
}

.auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.auth-card {
  width: min(100%, 560px);
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.auth-back {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--muted);
}

.auth-card h1 {
  font-size: clamp(2.5rem, 7vw, 4rem);
  margin-bottom: 1rem;
}

.admin-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  align-content: start;
  gap: 1.5rem;
  padding: 1.3rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 8, 11, 0.88);
  backdrop-filter: blur(16px);
}

.brand-lockup--admin {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: var(--surface);
}

.admin-nav {
  display: grid;
  gap: 0.35rem;
}

.admin-nav a {
  padding: 0.8rem 0.9rem;
  border-radius: 1rem;
  color: var(--muted);
}

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

.admin-main {
  padding: 1.5rem;
}

.admin-topbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.admin-topbar h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

.admin-topbar__hint {
  max-width: 38ch;
  color: var(--muted);
}

.admin-form {
  display: grid;
  gap: 1.2rem;
}

.admin-section {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
}

.admin-section__heading {
  margin-bottom: 1.2rem;
}

.admin-section__heading h2 {
  margin: 0;
  font-size: 1.55rem;
}

.checkbox-field {
  grid-auto-flow: column;
  justify-content: start;
  align-items: center;
  gap: 0.7rem;
}

.checkbox-field input {
  width: 1rem;
  height: 1rem;
  padding: 0;
}

.repeater {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.4rem;
}

.repeater__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.repeater__header h3 {
  margin: 0;
  font-size: 1rem;
}

.repeater__list {
  display: grid;
  gap: 0.95rem;
}

.repeater-card {
  padding: 1rem;
  border-radius: 1.4rem;
}

.repeater-card--compact {
  padding: 0.95rem;
}

.repeater-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.repeater-remove {
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 163, 163, 0.18);
  background: rgba(240, 163, 163, 0.1);
  color: var(--danger);
}

.admin-actions {
  justify-content: flex-end;
  padding-bottom: 2rem;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1180px) {
  .hero-stats {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }
}

@media (max-width: 1080px) {
  .hero__inner,
  .section--contact,
  .service-grid,
  .highlight-grid,
  .pricing-grid,
  .gear-grid {
    grid-template-columns: 1fr;
  }

  .intro-screen__brand {
    width: min(100%, 1280px);
    aspect-ratio: 2 / 1;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

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

  .admin-sidebar {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 900px) {
  .site-header__inner,
  .site-footer__inner,
  .addon-card,
  .admin-topbar {
    flex-direction: column;
    align-items: start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 1.4rem;
    background: rgba(9, 9, 11, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-stats,
  .form-grid,
  .form-grid--two {
    grid-template-columns: 1fr;
  }

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

  .intro-screen__brand {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 62vh;
    border-radius: 2rem;
  }

  .intro-screen__brand-video {
    object-position: 21% 50%;
    transform: scale(1.02);
  }

  .stat-card {
    min-height: 0;
  }

  .video-modal__close {
    top: -2.7rem;
  }
}

@media (max-width: 640px) {
  .site-header__inner,
  .site-footer__inner,
  .hero__inner,
  .hero-stats,
  .section,
  .page-hero,
  .filter-bar {
    width: min(calc(100% - 24px), var(--content-max));
  }

  .intro-screen__inner {
    width: min(calc(100% - 24px), 1240px);
    gap: 0.85rem;
  }

  .intro-screen__brand {
    aspect-ratio: 16 / 10;
    max-height: 48vh;
    border-radius: 1.7rem;
  }

  .intro-screen__brand-video {
    object-position: 20.5% 50%;
    transform: scale(1);
  }

  .intro-screen__caption {
    font-size: 0.72rem;
  }

  .hero {
    padding-top: 6.75rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 8.8vw, 3.3rem);
  }

  .hero--home .hero-copy h1,
  .hero--home .section-heading h2,
  .contact-card__line {
    white-space: normal;
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .page-hero,
  .section {
    padding: 4rem 0;
  }

  .section-heading h2,
  .page-hero h1 {
    line-height: 1;
  }

  .hero-stats {
    max-width: none;
  }

  .video-poster__play {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
    gap: 0.7rem;
    padding: 0.72rem 0.88rem;
    font-size: 0.72rem;
  }

  .video-modal__dialog {
    width: min(calc(100% - 16px), 1220px);
  }

  .video-modal__close {
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
  }

  .admin-main,
  .admin-sidebar,
  .auth-card {
    padding: 1rem;
  }

  .award-strip,
  .award-project__logos {
    grid-template-columns: 1fr;
  }

  .award-logo {
    min-height: 140px;
  }
}
