:root {
  --cream: #f4ecdc;
  --sand: #d8c5a3;
  --sand-deep: #b79d71;
  --olive: #687158;
  --olive-dark: #3e4738;
  --gold: #d89c4a;
  --peach: #df9878;
  --charcoal: #211f1a;
  --ink-soft: #5f594d;
  --paper: #fff9ee;
  --line: rgba(33, 31, 26, 0.16);
  --shadow: 0 24px 70px rgba(43, 34, 23, 0.16);
  --serif: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Avenir Next", "Helvetica Neue", Arial, "Noto Sans Thai", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
#inquiry {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(244, 236, 220, 0.96), rgba(255, 249, 238, 0.98) 38%, rgba(224, 202, 165, 0.32)),
    var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(33, 31, 26, 0.18) 0 0.6px, transparent 0.7px 3px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 4px);
  mix-blend-mode: multiply;
}

body.is-locked {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

::selection {
  background: rgba(216, 156, 74, 0.35);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--charcoal);
  color: var(--paper);
  padding: 0.65rem 0.9rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 76px;
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
  color: var(--paper);
  transition: background 260ms ease, color 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(244, 236, 220, 0.92);
  color: var(--charcoal);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 0;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand span:first-child {
  font-size: 0.9rem;
}

.brand span:last-child {
  font-size: 0.72rem;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.75rem);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 0.5rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.15rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.language-toggle,
.sound-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid currentColor;
  background: rgba(255, 249, 238, 0.1);
  color: inherit;
}

.language-toggle button {
  min-width: 44px;
  min-height: 36px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 0.76rem;
  font-weight: 800;
}

.language-toggle button.is-active {
  background: var(--paper);
  color: var(--charcoal);
}

.site-header.is-scrolled .language-toggle button.is-active,
.site-header.is-open .language-toggle button.is-active {
  background: var(--charcoal);
  color: var(--cream);
}

.sound-toggle {
  gap: 0.45rem;
  padding: 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sound-toggle__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.42;
}

.sound-toggle[aria-pressed="true"] .sound-toggle__dot {
  background: var(--gold);
  opacity: 1;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.nav-toggle__line,
.nav-toggle__line::before,
.nav-toggle__line::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.nav-toggle__line::before,
.nav-toggle__line::after {
  content: "";
}

.nav-toggle__line::before {
  transform: translateY(-6px);
}

.nav-toggle__line::after {
  transform: translateY(5px);
}

.site-header.is-open .nav-toggle__line {
  background: transparent;
}

.site-header.is-open .nav-toggle__line::before {
  transform: translateY(1px) rotate(45deg);
  background: currentColor;
}

.site-header.is-open .nav-toggle__line::after {
  transform: translateY(0) rotate(-45deg);
  background: currentColor;
}

.language-gate {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
  background:
    linear-gradient(140deg, rgba(33, 31, 26, 0.72), rgba(62, 71, 56, 0.66)),
    url("hero-portrait.jpg.PNG") center / cover,
    var(--charcoal);
  color: var(--paper);
  transition: opacity 360ms ease, visibility 360ms ease;
}

.language-gate.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.language-gate__panel {
  width: min(100%, 520px);
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid rgba(255, 249, 238, 0.28);
  background: rgba(255, 249, 238, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.language-gate__panel p:not(.eyebrow) {
  margin: 0.25rem 0 1.4rem;
  color: rgba(255, 249, 238, 0.78);
}

.language-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.section {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 4vw, 4rem);
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: stretch;
  gap: clamp(1rem, 4vw, 4rem);
  padding-top: 0;
  padding-bottom: 0;
  background: var(--charcoal);
  color: var(--paper);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(33, 31, 26, 0.88), transparent);
  pointer-events: none;
}

.hero__media {
  min-height: 100svh;
  margin-left: calc(clamp(1rem, 4vw, 4rem) * -1);
  border: 0;
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 54% 48%;
}

.hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 650px;
  padding: 7rem 0 5rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--olive-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.language-gate .eyebrow {
  color: var(--sand);
}

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

h1,
h2 {
  font-family: var(--serif);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 6.4rem);
}

h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
}

h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__line {
  max-width: 520px;
  margin: 1.4rem 0 0.85rem;
  color: rgba(255, 249, 238, 0.82);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.45;
}

.hero__collab-line {
  max-width: 500px;
  margin: 0 0 2rem;
  color: rgba(255, 249, 238, 0.76);
  font-size: clamp(0.95rem, 1.55vw, 1.12rem);
  font-weight: 700;
  line-height: 1.5;
}

.hero__actions,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

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

.button--dark {
  background: var(--charcoal);
  color: var(--paper);
  border-color: var(--charcoal);
}

.button--light {
  background: var(--paper);
  color: var(--charcoal);
  border-color: var(--paper);
}

.button--ghost {
  color: var(--paper);
  border-color: rgba(255, 249, 238, 0.44);
}

.button--outline {
  border-color: var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}

.hero .button--dark {
  background: var(--paper);
  color: var(--charcoal);
  border-color: var(--paper);
}

.hero .button--light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 249, 238, 0.62);
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.4rem;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 249, 238, 0.52);
  transform: translateX(-50%);
}

.hero__scroll span {
  display: block;
  width: 3px;
  height: 8px;
  margin: 9px auto 0;
  background: var(--paper);
  animation: scrollCue 1.8s ease-in-out infinite;
}

.section-heading {
  display: grid;
  gap: 0.6rem;
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  max-width: 1160px;
}

.music-section,
.video-section {
  background: var(--paper);
}

.release-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.5rem);
  max-width: 1160px;
  margin: 0 auto;
}

.release-card {
  min-width: 0;
  background: rgba(244, 236, 220, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(43, 34, 23, 0.08);
}

.release-card__art {
  aspect-ratio: 1 / 1;
  min-height: 260px;
}

.release-card__art--image {
  overflow: hidden;
  background: var(--charcoal);
}

.release-card__art--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-card__art--next {
  display: grid;
  place-content: center;
  gap: 0.35rem;
  padding: 1.5rem;
  text-align: center;
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(33, 31, 26, 0.12), rgba(255, 249, 238, 0.04)),
    linear-gradient(135deg, #2f2b24 0%, #7b5544 48%, #df9878 100%);
}

.release-card__art--next span,
.release-card__art--next strong {
  display: block;
  text-transform: uppercase;
}

.release-card__art--next span {
  color: rgba(255, 249, 238, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
}

.release-card__art--next strong {
  max-width: 8ch;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 700;
  line-height: 0.95;
}

.release-card__body {
  display: grid;
  gap: 0.7rem;
  padding: clamp(1rem, 2vw, 1.4rem);
}

.release-card__body p {
  margin: 0;
  color: var(--ink-soft);
}

.release-card__meta,
.release-card__soon {
  color: var(--olive-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.release-listen {
  width: 100%;
  margin-top: 0.35rem;
}

.release-listen summary,
.release-listen--disabled > span {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 44px;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  background: rgba(255, 249, 238, 0.36);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  list-style: none;
  transition: background 220ms ease, color 220ms ease;
}

.release-listen summary {
  cursor: pointer;
}

.release-listen summary::-webkit-details-marker {
  display: none;
}

.release-listen summary::after {
  content: "+";
  font-size: 1rem;
  line-height: 1;
}

.release-listen[open] summary {
  background: var(--charcoal);
  color: var(--paper);
}

.release-listen[open] summary::after {
  content: "-";
}

.release-listen summary:hover,
.release-listen summary:focus-visible {
  background: var(--charcoal);
  color: var(--paper);
}

.platform-links {
  display: grid;
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-top: 0;
}

.platform-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 249, 238, 0.68);
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 800;
  transition: background 220ms ease, padding 220ms ease;
}

.platform-links a::after {
  content: "OPEN";
  color: var(--olive-dark);
  font-size: 0.62rem;
  font-weight: 900;
}

.platform-links a:hover,
.platform-links a:focus-visible {
  background: var(--paper);
  padding-left: 1rem;
}

.release-listen--disabled {
  display: grid;
  gap: 0.45rem;
  opacity: 0.62;
}

.release-listen--disabled > span {
  border-color: var(--line);
  cursor: not-allowed;
}

.release-listen--disabled small {
  color: var(--olive-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.release-signup {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.release-signup p {
  margin: 0;
}

.release-signup__title {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1;
}

.form-field--hidden {
  position: absolute;
  left: -9999px;
}

.form-field--light label {
  color: var(--olive-dark);
}

.form-field--light input {
  border-color: var(--line);
  background: rgba(255, 249, 238, 0.7);
  color: var(--charcoal);
}

.form-field--light input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 156, 74, 0.16);
}

.consent-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.55rem;
  align-items: start;
  color: rgba(255, 249, 238, 0.72);
  font-size: 0.78rem;
  line-height: 1.45;
}

.consent-field--light {
  color: var(--ink-soft);
}

.consent-field input {
  width: 16px;
  height: 16px;
  margin-top: 0.15rem;
  accent-color: var(--gold);
}

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

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

.form-status--light[data-state="success"] {
  color: var(--olive-dark);
}

.line-contact {
  display: grid;
  gap: 0.2rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 249, 238, 0.16);
}

.line-contact p {
  margin: 0;
  color: rgba(255, 249, 238, 0.56);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.line-contact a {
  color: var(--sand);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 220ms ease;
}

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

.floating-line {
  position: fixed;
  right: 24px;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 55;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.38rem 0.78rem 0.38rem 0.38rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: #06c755;
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(6, 199, 85, 0.28), 0 8px 22px rgba(33, 31, 26, 0.16);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  animation: lineFloatIn 620ms ease 900ms both;
  transition: bottom 220ms ease, transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}

.floating-line:hover,
.floating-line:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(6, 199, 85, 0.34), 0 10px 26px rgba(33, 31, 26, 0.2);
}

.floating-line__icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #ffffff;
  color: #06c755;
  font-size: 0.52rem;
  line-height: 1;
}

.floating-line__icon::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 4px;
  width: 7px;
  height: 7px;
  background: #ffffff;
  transform: rotate(35deg);
}

.floating-line__label {
  white-space: nowrap;
}

body.is-inquiry-visible:not(.is-footer-visible) .floating-line {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

body.is-footer-visible .floating-line {
  bottom: calc(var(--footer-lift, 5.5rem) + env(safe-area-inset-bottom));
}

.section-cta {
  justify-content: center;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.world-section {
  background: linear-gradient(180deg, var(--cream), #eadbc1);
}

.world-section__intro {
  max-width: 900px;
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.world-section__intro p:not(.eyebrow) {
  max-width: 620px;
  margin: 1.2rem auto 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.collage {
  display: grid;
  grid-template-columns: 1.1fr 0.78fr 0.9fr;
  grid-auto-rows: minmax(180px, auto);
  gap: clamp(0.75rem, 1.8vw, 1.25rem);
  max-width: 1180px;
  margin: 0 auto;
}

.collage__item {
  min-height: 260px;
}

.collage__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.collage__item--thailand img {
  object-position: 62% 44%;
}

.collage__item--guitar img {
  object-position: 52% 36%;
}

.collage__item--studio img {
  object-position: 58% 64%;
}

.collage__item--travel img {
  object-position: 50% 58%;
}

.collage__item--large {
  grid-row: span 2;
  min-height: 560px;
}

.collage__item--tall {
  grid-row: span 2;
}

.collage__note {
  display: grid;
  align-content: center;
  gap: 0.85rem;
  min-height: 240px;
  padding: clamp(1.1rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: rgba(255, 249, 238, 0.55);
}

.collage__note span {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 2.4rem);
  line-height: 1.05;
}

.video-card {
  position: relative;
  display: grid;
  min-width: 0;
  color: var(--charcoal);
  background: rgba(244, 236, 220, 0.76);
  border: 1px solid var(--line);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.video-card:hover,
.video-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(33, 31, 26, 0.36);
}

.external-affordance {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  padding: 0.38rem 0.5rem;
  border: 1px solid rgba(255, 249, 238, 0.48);
  background: rgba(33, 31, 26, 0.44);
  color: var(--paper);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease;
}

.video-card:hover .external-affordance,
.video-card:focus-visible .external-affordance {
  background: var(--paper);
  color: var(--charcoal);
}

.video-card__thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--charcoal);
}

.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 220ms ease;
}

.video-card:hover .video-card__thumb img,
.video-card:focus-visible .video-card__thumb img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.04);
}

.play-cue {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, transparent 45%, rgba(33, 31, 26, 0.42));
  color: var(--paper);
  pointer-events: none;
}

.play-cue__icon {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 249, 238, 0.7);
  border-radius: 999px;
  background: rgba(33, 31, 26, 0.32);
  backdrop-filter: blur(8px);
  transition: transform 220ms ease, background 220ms ease;
}

.play-cue__icon::before {
  content: "";
  position: absolute;
  margin: 15px 0 0 18px;
  border-left: 13px solid var(--paper);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.play-cue__label {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  opacity: 0;
  transform: translateY(6px);
  font-size: 0.68rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: opacity 220ms ease, transform 220ms ease;
}

.video-card:hover .play-cue__icon,
.video-card:focus-visible .play-cue__icon {
  transform: scale(1.08);
  background: rgba(33, 31, 26, 0.56);
}

.video-card:hover .play-cue__label,
.video-card:focus-visible .play-cue__label {
  opacity: 1;
  transform: translateY(0);
}

.video-card__body {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  color: var(--ink-soft);
}

.video-card__title {
  color: var(--charcoal);
  font-weight: 900;
  text-transform: uppercase;
}

.create-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  background: var(--charcoal);
  color: var(--paper);
}

.create-section .eyebrow {
  color: var(--sand);
}

.create-section__copy {
  max-width: 780px;
}

.create-section__copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 249, 238, 0.75);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.collab-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2rem;
  border: 1px solid rgba(255, 249, 238, 0.2);
  background: rgba(255, 249, 238, 0.18);
}

.collab-list span {
  min-height: 82px;
  display: grid;
  place-items: center start;
  padding: 1rem;
  background: var(--charcoal);
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
}

.inquiry-form {
  display: grid;
  gap: 1rem;
  width: 100%;
  padding: clamp(1rem, 3vw, 1.6rem);
  border: 1px solid rgba(255, 249, 238, 0.2);
  background: rgba(255, 249, 238, 0.08);
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-helper {
  margin: 0;
  color: rgba(255, 249, 238, 0.72);
  font-size: 0.95rem;
}

.form-field label {
  color: rgba(255, 249, 238, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 249, 238, 0.3);
  background: rgba(255, 249, 238, 0.08);
  color: var(--paper);
  padding: 0.85rem;
  outline: none;
}

#release-email {
  border-color: rgba(63, 59, 48, 0.46);
  background: rgba(255, 249, 238, 0.7);
  color: var(--charcoal);
}

#release-email::placeholder {
  color: rgba(63, 59, 48, 0.68);
  opacity: 1;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 156, 74, 0.16);
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--sand);
}

.socials-section {
  min-height: 64svh;
  background: linear-gradient(180deg, #eadbc1, var(--cream));
}

.socials-section__inner {
  max-width: 1160px;
  margin: 0 auto;
}

.socials-section__inner h2 {
  margin-bottom: clamp(1.5rem, 4vw, 2.6rem);
}

.social-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.5rem);
}

.social-card {
  position: relative;
  display: grid;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(33, 31, 26, 0.18);
  background: var(--charcoal);
  color: var(--paper);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.social-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 800ms ease, filter 220ms ease;
}

.social-card:nth-child(1) img {
  object-position: 50% 42%;
}

.social-card:nth-child(2) img {
  object-position: 52% 36%;
}

.social-card:nth-child(3) img {
  object-position: 62% 44%;
}

.social-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(33, 31, 26, 0.06) 25%, rgba(33, 31, 26, 0.78)),
    linear-gradient(90deg, rgba(33, 31, 26, 0.3), transparent);
}

.social-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 0.75rem;
  padding: 1.1rem;
  align-self: end;
}

.social-card__text {
  display: grid;
  gap: 0.1rem;
}

.social-card__text strong {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.social-card__text span {
  color: rgba(255, 249, 238, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.social-card:hover,
.social-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(33, 31, 26, 0.34);
}

.social-card:hover img,
.social-card:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.04);
}

.social-icon {
  position: relative;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.86rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.social-card:hover .social-icon,
.social-card:focus-visible .social-icon {
  transform: translateY(-1px);
}

.social-icon--youtube::before {
  content: "";
  border-left: 7px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transform: translateX(1px);
}

.social-icon--instagram {
  border-radius: 5px;
}

.social-icon--instagram::before {
  content: "";
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.social-icon--instagram::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 2px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1.25rem clamp(1rem, 4vw, 4rem);
  background: var(--charcoal);
  color: rgba(255, 249, 238, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.media-slot {
  position: relative;
  display: grid;
  place-items: end start;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(33, 31, 26, 0.14);
  background:
    linear-gradient(145deg, rgba(33, 31, 26, 0.16), rgba(255, 249, 238, 0.08)),
    linear-gradient(135deg, #9f6b4f 0%, #d59a62 42%, #efe1c5 70%, #59614c 100%);
}

.media-slot::before {
  content: "";
  position: absolute;
  inset: 8%;
  z-index: 1;
  border: 1px solid rgba(255, 249, 238, 0.32);
  pointer-events: none;
}

.media-slot::after {
  content: attr(data-media-label);
  position: absolute;
  inset: auto 1rem 1rem;
  z-index: 2;
  max-width: calc(100% - 2rem);
  color: rgba(255, 249, 238, 0.92);
  font-size: clamp(0.75rem, 1.4vw, 0.9rem);
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.28);
}

.media-slot__label {
  visibility: hidden;
}

.media-slot--portrait {
  background:
    linear-gradient(180deg, rgba(33, 31, 26, 0.08), rgba(33, 31, 26, 0.52)),
    radial-gradient(ellipse at 52% 28%, rgba(244, 236, 220, 0.34), transparent 32%),
    linear-gradient(120deg, #2f342a 0%, #717957 38%, #e2a160 69%, #f2d1a2 100%);
}

.media-slot--art {
  background:
    linear-gradient(145deg, rgba(33, 31, 26, 0.2), rgba(255, 249, 238, 0.04)),
    linear-gradient(135deg, #433527 0%, #a46d41 44%, #e1a75b 100%);
}

.media-slot--olive {
  background:
    linear-gradient(145deg, rgba(33, 31, 26, 0.18), rgba(255, 249, 238, 0.04)),
    linear-gradient(135deg, #384033 0%, #7d855c 52%, #d9c19a 100%);
}

.media-slot--future {
  background:
    linear-gradient(145deg, rgba(33, 31, 26, 0.18), rgba(255, 249, 238, 0.06)),
    linear-gradient(135deg, #2f2b24 0%, #7b5544 48%, #df9878 100%);
}

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

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

html[lang="th"] body {
  font-family: "Noto Sans Thai", "Thonburi", "Avenir Next", system-ui, sans-serif;
}

html[lang="th"] h1,
html[lang="th"] h2,
html[lang="th"] .collage__note span,
html[lang="th"] .collab-list span {
  font-family: "Noto Sans Thai", var(--sans);
  font-weight: 700;
  line-height: 1.14;
}

@keyframes scrollCue {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }

  50% {
    transform: translateY(12px);
    opacity: 1;
  }
}

@keyframes lineFloatIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: block;
    grid-column: 3;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    justify-self: stretch;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    background: rgba(244, 236, 220, 0.96);
    color: var(--charcoal);
    box-shadow: 0 18px 40px rgba(43, 34, 23, 0.12);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    padding: 0.85rem 0;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .sound-toggle {
    min-height: 36px;
    padding: 0 0.55rem;
    font-size: 0.66rem;
  }

  .release-grid,
  .video-grid,
  .social-card-grid,
  .create-section {
    grid-template-columns: 1fr;
  }

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

  .collage__item--large {
    grid-row: span 1;
    grid-column: span 2;
    min-height: 420px;
  }

  .collage__item--tall {
    grid-row: span 1;
  }
}

@media (min-width: 768px) and (max-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 0.8fr) minmax(400px, 1fr);
    gap: clamp(1rem, 2.2vw, 2rem);
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media (max-width: 767px) {
  .hero {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 0;
    padding: 0;
  }

  .hero__media {
    position: absolute;
    inset: 0;
    min-height: 100%;
    margin: 0;
  }

  .hero__content {
    max-width: 24rem;
    margin: 0;
    padding: 5.8rem 1.25rem 5.7rem;
    text-align: left;
  }

  .hero__content::before {
    content: "";
    position: absolute;
    inset: 4.55rem 0.35rem 4.2rem 0.35rem;
    z-index: -1;
    background:
      linear-gradient(90deg, rgba(33, 31, 26, 0.7), rgba(33, 31, 26, 0.34) 58%, transparent),
      radial-gradient(ellipse at 16% 18%, rgba(33, 31, 26, 0.48), transparent 62%);
    filter: blur(10px);
    opacity: 0.86;
    pointer-events: none;
  }

  .hero .eyebrow {
    color: var(--paper);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.58);
  }

  .hero__line {
    margin: 1.15rem 0 0.65rem;
    color: rgba(255, 249, 238, 0.9);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
  }

  .hero__collab-line {
    margin: 0 0 1.65rem;
    color: rgba(255, 249, 238, 0.84);
    font-size: 0.85rem;
    font-weight: 600;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
  }

  .hero__actions {
    display: grid;
    width: 100%;
    gap: 0.95rem;
  }

  .hero__actions .button {
    min-height: 54px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    gap: 0.7rem;
    padding: 0.8rem 1rem;
  }

  .language-toggle button {
    min-width: 40px;
  }

  .language-gate__actions,
  .hero__actions {
    display: grid;
  }

  .hero__content {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .floating-line {
    right: 18px;
    bottom: calc(1rem + env(safe-area-inset-bottom));
    min-height: 52px;
    min-width: 52px;
    padding: 0.45rem;
    gap: 0;
  }

  .floating-line__icon {
    width: 40px;
    height: 40px;
  }

  .floating-line__label {
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-width 220ms ease, opacity 220ms ease, margin-left 220ms ease;
  }

  .floating-line:hover,
  .floating-line:focus-visible {
    gap: 0.55rem;
    padding-right: 0.78rem;
  }

  .floating-line:hover .floating-line__label,
  .floating-line:focus-visible .floating-line__label {
    max-width: 120px;
    opacity: 1;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(3.1rem, 14.5vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.15rem, 13vw, 3.6rem);
  }

  .world-section__intro h2,
  .video-section .section-heading h2,
  .create-section h2,
  .socials-section__inner h2 {
    font-size: clamp(2rem, 11.55vw, 3.22rem);
    line-height: 1.04;
  }

  .create-section h2 {
    max-width: 12ch;
  }

  .world-section__intro h2,
  .video-section .section-heading h2,
  .socials-section__inner h2 {
    max-width: 11ch;
  }

  .section {
    padding: 4.5rem 1rem;
  }

  .release-card__art {
    min-height: 220px;
  }

  .release-card__art--next strong {
    font-size: clamp(2.2rem, 14vw, 3.6rem);
  }

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

  .collage__item,
  .collage__item--large {
    grid-column: auto;
    min-height: 260px;
  }

  .collab-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .social-card {
    min-height: 320px;
  }
}
