:root {
  color-scheme: dark;
  --bg: #070303;
  --bg-soft: #120606;
  --panel: rgba(255, 255, 255, 0.09);
  --panel-strong: rgba(255, 255, 255, 0.14);
  --paper: #fff7f2;
  --white: #ffffff;
  --ink: #101010;
  --muted: rgba(255, 255, 255, 0.72);
  --muted-dark: rgba(20, 20, 20, 0.66);
  --line: rgba(255, 255, 255, 0.18);
  --red: #f00000;
  --red-deep: #8f0007;
  --red-soft: #ff3030;
  --shadow: 0 34px 100px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(1100px 680px at 86% -8%, rgba(255, 0, 0, 0.58), transparent 58%),
    radial-gradient(980px 680px at -8% 22%, rgba(120, 0, 14, 0.56), transparent 55%),
    linear-gradient(145deg, #070303 0%, #120505 42%, #050303 100%);
  color: var(--white);
  font-family: "Anuphan", "Inter", "Noto Sans Thai", "Segoe UI", Tahoma, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, transparent 0 47%, rgba(255, 255, 255, 0.035) 47% 48%, transparent 48%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 120px);
  opacity: 0.5;
  pointer-events: none;
}

body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.showpiece,
.work-card,
.work-media,
.lightbox {
  -webkit-touch-callout: none;
  user-select: none;
}

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

button,
input {
  font: inherit;
}

.glass-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(14, 10, 10, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(24px) saturate(1.18);
}

.site-header {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 30;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(12, 8, 8, 0.62);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
  backdrop-filter: blur(22px);
}

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

.brand-mark {
  display: grid;
  width: 116px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
}

.brand-mark img {
  width: 92px;
  height: 28px;
  object-fit: contain;
}

.brand-text {
  color: var(--white);
  font-family: "Inter", "Anuphan", sans-serif;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.05;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.top-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.84);
}

.top-nav a:hover,
.top-nav a:last-child {
  background: var(--white);
  color: var(--ink);
}

.floating-nav {
  position: fixed;
  right: 22px;
  bottom: 18px;
  z-index: 28;
  display: flex;
  gap: 8px;
  width: auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 5, 5, 0.76);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(20px);
}

.floating-nav a {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 850;
}

.floating-nav a:not(:first-child):not(.hot) {
  display: none;
}

.floating-nav a:hover,
.floating-nav a.hot {
  background: var(--red);
  color: var(--white);
}

.floating-nav span {
  color: rgba(255, 255, 255, 0.64);
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 900;
}

.floating-nav a.hot span {
  color: rgba(255, 255, 255, 0.82);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
  gap: 42px;
  align-items: center;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 132px 48px 74px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 760px;
  height: 760px;
  right: -240px;
  top: -230px;
  background: linear-gradient(145deg, rgba(255, 34, 34, 0.55), rgba(0, 0, 0, 0));
}

.hero::after {
  width: 850px;
  height: 850px;
  left: -420px;
  bottom: -360px;
  background: linear-gradient(315deg, rgba(226, 0, 0, 0.54), rgba(0, 0, 0, 0));
}

.hero-copy {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: clamp(28px, 4vw, 58px);
  border-radius: 34px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background:
    radial-gradient(520px 360px at 72% 84%, rgba(255, 0, 0, 0.65), transparent 66%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 48%);
}

.hero-kicker {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(44px, 7vw, 86px);
  color: rgba(255, 255, 255, 0.72);
  font-family: "Inter", "Anuphan", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: #ff6b6b;
  font-family: "Inter", "Anuphan", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 5.4vw, 84px);
  font-weight: 800;
  line-height: 1.02;
}

h1 span {
  display: block;
  color: var(--white);
}

.scale-title {
  display: grid;
  gap: 8px;
  max-width: 880px;
}

.scale-title .title-small {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(30px, 3.1vw, 50px);
  line-height: 1.05;
}

.scale-title .title-main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px;
  font-size: clamp(48px, 6.2vw, 96px);
  line-height: 0.95;
}

.scale-title .title-main em {
  color: #ff2020;
  font-family: "Inter", "Anuphan", sans-serif;
  font-size: clamp(92px, 11vw, 174px);
  font-style: normal;
  font-weight: 900;
  line-height: 0.72;
  text-shadow: 0 18px 68px rgba(240, 0, 0, 0.42);
}

.scale-title .title-bottom {
  color: var(--white);
  font-family: "Inter", "Anuphan", sans-serif;
  font-size: clamp(46px, 5.2vw, 82px);
  font-weight: 900;
  line-height: 1;
}

h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 4.6vw, 72px);
  font-weight: 800;
  line-height: 1.04;
}

.lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(22px, 2.1vw, 34px);
  font-weight: 800;
  line-height: 1.35;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 13px;
  font-weight: 850;
  line-height: 1.1;
}

.button.primary {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, #ff1616, #bd0008);
  color: var(--white);
  box-shadow: 0 18px 50px rgba(240, 0, 0, 0.35);
}

.button.primary:hover {
  filter: brightness(1.08);
}

.button.subtle {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button.light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.hero-stage {
  position: relative;
  min-height: 690px;
}

.showpiece {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.showpiece img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showpiece-main {
  right: 38px;
  top: 0;
  z-index: 3;
  width: min(42vw, 470px);
  height: auto;
  transform: rotate(2deg);
}

.showpiece-decor-one {
  left: 36px;
  bottom: 54px;
  z-index: 2;
  width: min(32vw, 330px);
  height: auto;
  opacity: 0.95;
  transform: rotate(-7deg);
}

.showpiece-decor-two {
  right: -8px;
  bottom: 34px;
  z-index: 5;
  width: min(29vw, 300px);
  height: auto;
  opacity: 0.98;
  transform: rotate(7deg);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.62);
}

.showpiece-main img,
.showpiece-decor-one img,
.showpiece-decor-two img {
  height: auto;
  object-fit: contain;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(2, 2, 2, 0.76);
  box-shadow: 0 24px 100px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.value-strip div {
  position: relative;
  min-height: 190px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.value-strip div:last-child {
  border-right: 0;
}

.value-strip span {
  display: block;
  color: #ff1d1d;
  font-family: "Inter", "Anuphan", sans-serif;
  font-size: clamp(36px, 4.3vw, 72px);
  font-weight: 900;
  line-height: 0.88;
}

.value-strip strong {
  display: block;
  margin-top: 30px;
  color: var(--white);
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 800;
  line-height: 1.28;
}

.strategy-band {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto 16px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(620px 320px at 92% 16%, rgba(255, 255, 255, 0.16), transparent 58%),
    linear-gradient(135deg, #ff1616 0%, #b40007 56%, #700006 100%);
  box-shadow: 0 28px 110px rgba(150, 0, 0, 0.38);
}

.strategy-band > span {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Inter", "Anuphan", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.strategy-band h2 {
  max-width: 920px;
  font-size: clamp(34px, 3.8vw, 62px);
  line-height: 1.05;
  text-wrap: balance;
}

.strategy-band h2 span {
  display: block;
}

.strategy-band p {
  max-width: 780px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
}

.work-intro {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 14px;
}

.work-intro.tab-only {
  padding-top: 0;
}

.work-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 44px;
  align-items: end;
}

.work-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.category-rail {
  position: sticky;
  top: 104px;
  z-index: 18;
  display: flex;
  gap: 8px;
  margin-top: 0;
  padding: 10px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(8, 5, 5, 0.7);
  backdrop-filter: blur(18px);
}

.category-rail a {
  flex: 0 0 auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 850;
}

.category-rail a:hover {
  background: var(--white);
  color: var(--ink);
}

.grouped-gallery {
  display: grid;
  gap: 42px;
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 86px;
}

.category-section {
  scroll-margin-top: 180px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.category-panel {
  position: sticky;
  top: 176px;
  min-height: 430px;
  padding: 26px;
  border-radius: 24px;
  overflow: hidden;
}

.category-panel::before {
  content: "";
  position: absolute;
  inset: auto -30% -34% -30%;
  height: 58%;
  background: linear-gradient(180deg, rgba(255, 0, 0, 0.52), transparent);
  transform: rotate(-7deg);
}

.category-panel > * {
  position: relative;
}

.category-number {
  color: rgba(255, 255, 255, 0.45);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.category-panel h3 {
  margin: 74px 0 0;
  color: var(--white);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.08;
}

.category-panel p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.65;
}

.category-count {
  position: absolute;
  right: 22px;
  bottom: 20px;
  color: rgba(255, 255, 255, 0.52);
  font-family: "Inter", sans-serif;
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

.category-grid {
  column-count: 3;
  column-gap: 14px;
}

.work-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.25);
  break-inside: avoid;
}

.work-card.featured {
  grid-column: auto;
  grid-row: auto;
}

.work-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  text-align: left;
}

.work-media {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.work-card.square .work-media {
  aspect-ratio: auto;
}

.work-card.featured .work-media {
  aspect-ratio: auto;
}

.work-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 260ms ease, filter 260ms ease;
}

.work-card:hover .work-media img {
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.03);
}

.work-meta {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 15px;
}

.work-meta strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
}

.work-meta span {
  color: rgba(255, 255, 255, 0.52);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.sale-break {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  min-height: 210px;
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(120deg, rgba(255, 0, 0, 0.95), rgba(90, 0, 7, 0.86)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 90px rgba(120, 0, 0, 0.32);
}

.sale-break strong {
  display: block;
  max-width: 780px;
  color: var(--white);
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 800;
  line-height: 1.1;
}

.sale-break p {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.6;
}

.sale-break span {
  color: rgba(255, 255, 255, 0.52);
  font-family: "Inter", sans-serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 0.82;
}

.system-section {
  padding: 92px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    #080404;
}

.system-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 62px);
  border-radius: 32px;
}

.system-shell h2 {
  max-width: 980px;
}

.system-shell > p {
  max-width: 820px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.8;
}

.system-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.system-cards article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.system-cards span {
  color: #ff7373;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.system-cards strong {
  display: block;
  margin-top: 42px;
  color: var(--white);
  font-family: "Inter", "Anuphan", sans-serif;
  font-size: 25px;
  font-weight: 900;
}

.system-cards p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.6;
}

.final-cta {
  padding: 88px 24px 128px;
}

.final-card {
  position: relative;
  overflow: hidden;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(32px, 6vw, 72px);
  border-radius: 34px;
  text-align: center;
}

.final-card > :not(.final-overlay) {
  position: relative;
  z-index: 2;
}

.final-overlay {
  position: absolute;
  z-index: 1;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(34px, 7vw, 92px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.final-overlay-one {
  top: 20px;
  left: 22px;
  transform: rotate(-7deg);
}

.final-overlay-two {
  right: 22px;
  bottom: 18px;
  transform: rotate(5deg);
}

.final-card h2 {
  max-width: 840px;
  margin: 0 auto;
}

.final-card p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px auto 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.75;
}

.final-head {
  margin-bottom: 36px;
}

.final-head .final-lead {
  margin: 18px auto 0;
  font-size: 17px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  margin-bottom: 32px;
  text-align: left;
}

.contact-form-card,
.contact-direct-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(15, 8, 8, 0.5);
  backdrop-filter: blur(14px);
}

.contact-direct-card {
  border-color: rgba(255, 70, 70, 0.42);
  background: linear-gradient(155deg, rgba(255, 30, 30, 0.16), rgba(15, 5, 5, 0.6));
  box-shadow: 0 24px 72px rgba(255, 0, 0, 0.18);
}

.contact-card-head {
  margin-bottom: 22px;
}

.contact-card-tag {
  display: inline-block;
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-card-tag.highlight {
  border-color: rgba(255, 100, 100, 0.6);
  background: rgba(255, 50, 50, 0.18);
  color: #ffd5d5;
}

.contact-card-head h3 {
  margin: 14px 0 8px;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
}

.contact-card-head p {
  margin: 0;
  max-width: none;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
}

.enroll-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.enroll-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.enroll-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.enroll-field label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.enroll-field .req {
  color: var(--red-soft);
  margin-left: 2px;
}

.enroll-field input,
.enroll-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--white);
  font: inherit;
  font-size: 14px;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.enroll-field textarea {
  resize: vertical;
  min-height: 78px;
  font-family: inherit;
}

.enroll-field input::placeholder,
.enroll-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.enroll-field input:focus,
.enroll-field textarea:focus {
  outline: none;
  border-color: rgba(255, 60, 60, 0.7);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.18);
}

.enroll-field input:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 90, 90, 0.55);
}

.enroll-submit {
  margin-top: 6px;
  min-height: 52px;
  padding: 12px 20px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: var(--white);
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 50px rgba(255, 0, 0, 0.32);
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.enroll-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(255, 0, 0, 0.42);
}

.enroll-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.enroll-status {
  margin: 4px 0 0;
  min-height: 20px;
  font-size: 13px;
  line-height: 1.5;
}

.enroll-status.success {
  color: #6affae;
}

.enroll-status.error {
  color: #ff8a8a;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.32);
  color: var(--white);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.channel-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.46);
}

.channel-icon {
  display: grid;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
}

.channel-line .channel-icon {
  background: #06c755;
}

.channel-fb .channel-icon {
  background: linear-gradient(135deg, #00b2ff 0%, #006aff 30%, #a033ff 65%, #ff5f8e 100%);
}

.channel-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.channel-text strong {
  font-size: 15px;
  font-weight: 800;
}

.channel-text span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
}

.channel-arrow {
  font-size: 22px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.5);
  transition: color 160ms ease, transform 160ms ease;
}

.channel-card:hover .channel-arrow {
  color: var(--white);
  transform: translateX(2px);
}

.final-foot {
  margin-top: 10px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1120px, 92vw);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-caption {
  margin-top: 14px;
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.86fr);
    gap: 24px;
    padding-top: 122px;
    padding-bottom: 48px;
  }

  .hero-copy {
    padding: clamp(26px, 3vw, 42px);
  }

  .hero-stage {
    min-height: 540px;
  }

  .showpiece-main {
    right: 0;
    top: 18px;
    width: min(100%, 390px);
  }

  .showpiece-decor-one {
    left: -24px;
    bottom: 48px;
    width: min(72%, 280px);
  }

  .showpiece-decor-two {
    right: -12px;
    bottom: 36px;
    width: min(60%, 240px);
  }

  .category-section {
    grid-template-columns: 1fr;
  }

  .category-panel {
    position: relative;
    top: auto;
    min-height: 270px;
  }

  .category-panel h3 {
    margin-top: 56px;
  }
}

@media (max-width: 860px) {
  body {
    background:
      radial-gradient(720px 520px at 90% -4%, rgba(255, 0, 0, 0.5), transparent 58%),
      linear-gradient(145deg, #070303 0%, #140505 52%, #050303 100%);
  }

  .site-header {
    top: 12px;
    width: calc(100% - 22px);
    min-height: 58px;
    border-radius: 16px;
  }

  .brand-mark {
    width: 92px;
    height: 36px;
  }

  .brand-mark img {
    width: 76px;
  }

  .brand-text {
    font-size: 11px;
  }

  .top-nav {
    gap: 2px;
    font-size: 11px;
  }

  .top-nav a {
    min-height: 34px;
    padding: 7px 8px;
    border-radius: 10px;
  }

  .floating-nav {
    left: 50%;
    right: auto;
    bottom: 12px;
    width: auto;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.mobile-jump-visible .floating-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .floating-nav a {
    min-height: 44px;
    gap: 6px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .floating-nav span {
    min-width: 0;
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 96px 14px 28px;
  }

  .hero-copy {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .hero-kicker {
    margin-bottom: 44px;
    font-size: 11px;
  }

  .scale-title {
    gap: 4px;
  }

  .scale-title .title-main {
    gap: 8px;
    font-size: clamp(34px, 8.5vw, 46px);
  }

  .scale-title .title-main em {
    font-size: clamp(76px, 21vw, 104px);
  }

  .scale-title .title-bottom {
    font-size: clamp(34px, 9vw, 48px);
  }

  .lead {
    font-size: 20px;
  }

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

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-metrics div {
    min-height: 86px;
    padding: 12px 9px;
    border-radius: 14px;
  }

  .hero-metrics strong {
    font-size: 27px;
  }

  .hero-metrics span {
    font-size: 10px;
  }

  .hero-stage {
    min-height: 326px;
    overflow: hidden;
    border-radius: 0 0 26px 26px;
  }

  .showpiece {
    border-radius: 18px;
  }

  .showpiece-main {
    top: 0;
    right: 5%;
    width: 62%;
    transform: rotate(2deg);
  }

  .showpiece-decor-one {
    left: 3%;
    top: 112px;
    bottom: auto;
    width: 43%;
    transform: rotate(-6deg);
  }

  .showpiece-decor-two {
    right: 6%;
    top: 172px;
    bottom: auto;
    width: 41%;
    transform: rotate(7deg);
  }

  .value-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: calc(100% - 24px);
    margin-bottom: 12px;
    border-radius: 18px;
  }

  .value-strip div {
    min-height: 82px;
    padding: 12px 9px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 0;
  }

  .value-strip div:last-child {
    border-right: 0;
  }

  .value-strip span {
    font-size: clamp(22px, 7vw, 32px);
    line-height: 0.95;
  }

  .value-strip strong {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.25;
  }

  .strategy-band {
    grid-template-columns: 1fr;
    gap: 8px;
    width: calc(100% - 24px);
    margin-bottom: 0;
    padding: 16px;
    border-radius: 18px;
  }

  .strategy-band > span {
    font-size: 10px;
  }

  .strategy-band h2 {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.08;
  }

  .strategy-band p {
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.45;
    display: none;
  }

  .work-intro,
  .grouped-gallery {
    width: calc(100% - 32px);
  }

  .work-intro-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .work-intro p {
    font-size: 16px;
  }

  .category-rail {
    position: fixed;
    top: auto;
    right: 12px;
    bottom: 68px;
    left: 12px;
    z-index: 42;
    margin: 0;
    padding: 7px;
    border-radius: 16px;
    background: rgba(8, 5, 5, 0.82);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.mobile-jump-visible .category-rail {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .category-rail a {
    min-height: 34px;
    padding: 8px 11px;
    border-radius: 10px;
    font-size: 11px;
  }

  .category-grid {
    column-count: 2;
    column-gap: 10px;
  }

  .category-section {
    scroll-margin-top: 128px;
  }

  .category-panel {
    min-height: 170px;
    padding: 18px;
    border-radius: 18px;
  }

  .category-panel h3 {
    margin-top: 34px;
    font-size: 27px;
  }

  .category-panel p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.45;
  }

  .category-count {
    right: 16px;
    bottom: 14px;
    font-size: 36px;
  }

  .work-card.featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .work-card {
    margin-bottom: 10px;
    border-radius: 15px;
  }

  .work-meta {
    min-height: 52px;
    padding: 11px 12px;
  }

  .work-meta strong {
    font-size: 12px;
  }

  .work-meta span {
    font-size: 10px;
  }

  .sale-break {
    grid-template-columns: 1fr;
    min-height: 190px;
    padding: 22px;
  }

  .sale-break span {
    font-size: 44px;
  }

  .system-section {
    padding: 58px 16px;
  }

  .system-cards {
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 64px 16px 104px;
  }

  .final-card p:not(.eyebrow) {
    font-size: 16px;
  }

  .final-overlay {
    font-size: clamp(28px, 12vw, 54px);
  }

  .final-overlay-one {
    top: 18px;
    left: -10px;
  }

  .final-overlay-two {
    right: -10px;
    bottom: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 26px;
  }

  .contact-direct-card {
    order: 1;
  }

  .contact-form-card {
    order: 2;
  }

  .contact-form-card,
  .contact-direct-card {
    padding: 24px 20px;
  }

  .contact-card-head h3 {
    font-size: 21px;
  }

  .channel-card {
    padding: 14px 14px;
    gap: 12px;
  }

  .channel-icon {
    width: 44px;
    height: 44px;
  }

  .channel-text strong {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .brand {
    gap: 7px;
  }

  .brand-mark {
    width: 78px;
  }

  .brand-mark img {
    width: 64px;
  }

  .brand-text {
    max-width: 82px;
  }

  .top-nav a:nth-child(2) {
    display: none;
  }

  .hero-kicker {
    display: grid;
    gap: 5px;
  }

  .hero-stage {
    min-height: 314px;
  }

  .showpiece-main {
    top: 0;
    right: 3%;
    width: 63%;
  }

  .showpiece-decor-one {
    left: 3%;
    top: 110px;
    bottom: auto;
    width: 44%;
  }

  .showpiece-decor-two {
    right: 5%;
    top: 170px;
    bottom: auto;
    width: 42%;
  }

  h1 {
    font-size: clamp(35px, 10vw, 44px);
  }

  h2 {
    font-size: 32px;
  }

  .category-grid {
    column-count: 2;
  }

  .work-card.featured .work-media {
    aspect-ratio: auto;
  }

  .work-meta {
    min-height: 50px;
  }
}
