:root {
  --ink: #090a0a;
  --carbon: #111313;
  --graphite: #1a1c1d;
  --smoke: #777b7b;
  --line-dark: rgba(255, 255, 255, 0.18);
  --line-light: rgba(9, 10, 10, 0.18);
  --paper: #f3f1eb;
  --white: #fffefa;
  --gold: #d8b27a;
  --gold-soft: #ead2aa;
  --blue: #78a7ff;
  --display: "Barlow Condensed", "Noto Sans Thai", "Arial Narrow", sans-serif;
  --thai-display: "Noto Sans Thai", "IBM Plex Sans Thai", Tahoma, sans-serif;
  --body: "IBM Plex Sans Thai", "Noto Sans Thai", Tahoma, sans-serif;
  --mono: "IBM Plex Mono", "IBM Plex Sans Thai", ui-monospace, monospace;
  --gutter: clamp(20px, 4vw, 68px);
  --max: 1440px;
  --header-height: 78px;
  --use-strip-height: 51px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

::selection {
  color: var(--ink);
  background: var(--gold);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 44px;
  padding: 0 var(--gutter);
  color: var(--white);
  background: linear-gradient(
    to bottom,
    rgba(9, 10, 10, 0.92),
    rgba(9, 10, 10, 0)
  );
  transition:
    height 300ms var(--ease),
    background 300ms ease,
    border-color 300ms ease;
}

.site-header.scrolled {
  height: 66px;
  background: rgba(9, 10, 10, 0.94);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  line-height: 1;
}

.brand-mark,
.footer-brand strong {
  color: var(--gold);
  font-family: var(--display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-name,
.footer-brand span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 42px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: rgba(255, 254, 250, 0.78);
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="true"] {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 200ms ease,
    background 200ms ease,
    border-color 200ms ease,
    transform 200ms var(--ease);
}

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

.button-small {
  min-height: 38px;
  padding: 8px 16px;
  color: var(--ink);
  background: var(--gold);
}

.button-primary {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.button-primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.button-outline {
  color: inherit;
  background: transparent;
  border-color: currentColor;
}

.button-outline:hover {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(216, 178, 122, 0.12);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 9px rgba(216, 178, 122, 0);
  }
}

.hero {
  position: relative;
  height: min(900px, calc(100svh - var(--use-strip-height)));
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(380px, 0.88fr) minmax(520px, 1.32fr);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-height) + 70px) clamp(38px, 4vw, 74px) 230px
    var(--gutter);
}

.hero-copy .eyebrow {
  color: var(--gold-soft);
}

.hero h1 {
  margin: 0;
  line-height: 0.91;
}

.hero-kicker {
  display: block;
  margin-bottom: 15px;
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(54px, 7vw, 112px);
  font-weight: 800;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.hero-thai {
  display: block;
  max-width: 650px;
  font-family: var(--thai-display);
  font-size: clamp(34px, 3.6vw, 62px);
  font-stretch: 75%;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

.hero-lede {
  max-width: 550px;
  margin: 28px 0 0;
  color: rgba(255, 254, 250, 0.68);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 16px;
  transition: transform 200ms var(--ease);
}

.text-link:hover span {
  transform: translate(4px, 4px);
}

.hero-visual {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero-visual img {
  object-fit: cover;
  object-position: 57% center;
  filter: saturate(0.72) contrast(1.08) brightness(0.76);
  transform: scale(1.02);
  animation: hero-in 1.4s var(--ease) both;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
}

.image-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      var(--ink) 0%,
      rgba(9, 10, 10, 0.72) 12%,
      transparent 48%
    ),
    linear-gradient(0deg, rgba(9, 10, 10, 0.66) 0%, transparent 35%);
}

.progress-stamp {
  position: absolute;
  right: var(--gutter);
  bottom: 34px;
  padding: 7px 10px;
  color: var(--paper);
  background: rgba(9, 10, 10, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.measurement-signature {
  position: absolute;
  z-index: 4;
  bottom: 44px;
  left: var(--gutter);
  width: min(48vw, 690px);
  height: 145px;
  color: var(--gold);
}

.measure-horizontal {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.measure-horizontal i {
  position: relative;
  height: 1px;
  display: block;
  background: var(--gold);
  transform: scaleX(0);
  grid-row: 1;
  grid-column: 1;
  transform-origin: right;
  animation: draw-line 1.1s 500ms var(--ease) forwards;
}

.measure-horizontal i::before,
.measure-horizontal i::after {
  position: absolute;
  top: -4px;
  width: 1px;
  height: 9px;
  content: "";
  background: var(--gold);
}

.measure-horizontal i::before {
  left: 0;
}

.measure-horizontal i::after {
  right: 0;
}

.measure-horizontal span {
  grid-row: 1;
  grid-column: 2;
}

.measure-vertical {
  position: absolute;
  top: 0;
  right: auto;
  left: 0;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: start;
  gap: 6px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.measure-vertical i {
  position: relative;
  width: 1px;
  height: 100%;
  display: block;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  animation: draw-vertical 800ms 1.3s var(--ease) forwards;
}

.measure-vertical i::after {
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 9px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.measure-total {
  position: absolute;
  right: 0;
  bottom: 0;
  left: auto;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.measure-total strong {
  font-family: var(--display);
  font-size: 92px;
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.72;
}

.measure-total span {
  color: var(--white);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  line-height: 1.55;
  text-transform: uppercase;
}

@keyframes draw-line {
  to {
    transform: scaleX(1);
  }
}

@keyframes draw-vertical {
  to {
    transform: scaleY(1);
  }
}

.use-strip {
  height: var(--use-strip-height);
  overflow: hidden;
  color: var(--ink);
  background: var(--gold);
  border-block: 1px solid var(--ink);
}

.use-strip-track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: ticker 36s linear infinite;
}

.use-strip-track i {
  width: 4px;
  height: 4px;
  display: block;
  background: var(--ink);
  transform: rotate(45deg);
}

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

.section {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(90px, 10vw, 160px) var(--gutter);
}

.section-heading {
  max-width: 750px;
}

.section-heading h2,
.gallery-intro h2,
.booking-copy h2,
.faq-heading h2 {
  margin: 0;
  font-family: var(--thai-display);
  font-size: clamp(42px, 6vw, 92px);
  font-stretch: 75%;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.06;
}

.section-heading > p:last-child,
.gallery-intro > p:last-child,
.booking-copy > p,
.faq-list p {
  max-width: 620px;
  margin: 28px 0 0;
  color: #545858;
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 300;
}

.studio-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 8vw, 140px);
  align-items: center;
}

.studio-section .section-heading {
  align-self: start;
}

.studio-blueprint {
  align-self: stretch;
}

.blueprint-canvas {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background-color: #e5e3dc;
  background-image:
    linear-gradient(rgba(9, 10, 10, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 10, 10, 0.055) 1px, transparent 1px);
  background-size: 24px 24px;
  border: 1px solid var(--line-light);
}

.cyc-plan {
  position: absolute;
  inset: 15% 12% 18%;
}

.cyc-main,
.cyc-return {
  position: absolute;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: inset 0 0 0 10px rgba(216, 178, 122, 0.17);
}

.cyc-main {
  top: 0;
  right: 0;
  left: 0;
  height: 29%;
  border-bottom: 0;
}

.cyc-return {
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  width: 29%;
  border-right: 0;
}

.cyc-main::after,
.cyc-return::after {
  position: absolute;
  content: "";
  background: var(--gold);
}

.cyc-main::after {
  top: 50%;
  right: 6%;
  left: 12%;
  height: 2px;
}

.cyc-return::after {
  top: 6%;
  bottom: 12%;
  left: 50%;
  width: 2px;
}

.camera-mark {
  position: absolute;
  right: 23%;
  bottom: 8%;
  left: auto;
  display: grid;
  place-items: center;
  width: 58px;
  height: 38px;
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.camera-mark::before {
  position: absolute;
  top: -30px;
  width: 1px;
  height: 30px;
  content: "";
  background: var(--ink);
}

.blueprint-label {
  position: absolute;
  z-index: 2;
  padding: 5px 7px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.label-main {
  top: 8%;
  left: 16%;
}

.label-return {
  top: 45%;
  right: auto;
  left: 5%;
  transform: rotate(-90deg);
}

.label-room {
  bottom: 5%;
  left: 12%;
}

.label-cyc {
  top: 48%;
  right: 32%;
  left: auto;
}

.blueprint-note {
  margin: 10px 0 0;
  color: var(--smoke);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.spec-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 10px 0 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.spec-grid div {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-right: 1px solid var(--line-light);
}

.spec-grid div:nth-child(3n) {
  border-right: 0;
}

.spec-grid div:nth-child(-n + 3) {
  border-bottom: 1px solid var(--line-light);
}

.spec-grid dt {
  font-family: var(--display);
  font-size: clamp(58px, 7vw, 105px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.spec-grid dd {
  margin: 0;
  color: var(--smoke);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.studio-detail-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 54px;
  border: 1px solid var(--ink);
}

.studio-detail-panel {
  padding: clamp(28px, 4vw, 56px);
  background: var(--white);
}

.studio-detail-panel + .studio-detail-panel {
  border-left: 1px solid var(--ink);
}

.studio-detail-panel-dark {
  color: var(--paper);
  background: var(--graphite);
}

.detail-label {
  margin: 0 0 16px;
  color: #6e4a16;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.studio-detail-panel-dark .detail-label {
  color: var(--gold);
}

.studio-detail-panel h3 {
  margin: 0 0 30px;
  font-family: var(--thai-display);
  font-size: clamp(34px, 3.5vw, 54px);
  font-stretch: 75%;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

.facility-list,
.use-case-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.facility-list {
  grid-template-columns: repeat(2, 1fr);
  gap: 0 24px;
}

.facility-list li {
  min-height: 76px;
  display: grid;
  align-content: center;
  padding: 13px 0;
  border-top: 1px solid var(--line-light);
}

.facility-list strong {
  font-size: 15px;
  font-weight: 600;
}

.facility-list span {
  color: #666a6a;
  font-size: 13px;
}

.use-case-list {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.use-case-list li {
  padding: 13px 14px;
  color: var(--paper);
  border: 1px solid var(--line-dark);
  font-size: 14px;
}

.studio-policy-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  margin: 24px 0 0;
  padding: 14px 16px;
  color: rgba(243, 241, 235, 0.76);
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
  line-height: 1.65;
}

.studio-policy-note strong {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dimension-clarifier {
  grid-column: 1 / -1;
  max-width: 940px;
  margin: 20px 0 0;
  color: #5f6363;
  font-size: 13px;
}

.rate-section,
.equipment-section {
  max-width: none;
  color: var(--paper);
  background: var(--ink);
}

.rate-section::before,
.equipment-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.055) 0.8px,
    transparent 0.8px
  );
  background-size: 7px 7px;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 30%,
    black 70%,
    transparent
  );
}

.rate-section > *,
.equipment-section > * {
  position: relative;
  max-width: calc(var(--max) - var(--gutter) * 2);
  margin-right: auto;
  margin-left: auto;
}

.section-heading-light > p:last-child {
  color: rgba(243, 241, 235, 0.58);
}

.section-heading-light .eyebrow,
.equipment-section .eyebrow {
  color: var(--gold);
}

.rate-board {
  margin-top: 70px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.rate-head,
.rate-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) minmax(150px, 0.7fr) minmax(
      190px,
      0.8fr
    );
}

.rate-head > *,
.rate-row > * {
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.rate-head span {
  padding: 15px 22px;
  color: rgba(243, 241, 235, 0.58);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rate-head .launch-head {
  color: var(--ink);
  background: var(--gold);
}

.rate-row > div {
  display: flex;
  align-items: baseline;
  gap: 15px;
  padding: 18px 22px;
}

.rate-row > div strong {
  min-width: 48px;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.rate-row > div span {
  color: rgba(243, 241, 235, 0.56);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.standard-price,
.launch-price {
  display: flex;
  align-items: center;
  padding: 18px 22px;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.standard-price {
  color: rgba(243, 241, 235, 0.48);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.launch-price {
  gap: 10px;
  color: var(--ink);
  background: var(--gold-soft);
}

.launch-price small {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.rate-row.featured > div strong,
.rate-row.featured .launch-price {
  color: var(--gold);
}

.rate-row.featured .launch-price {
  color: var(--ink);
  background: var(--gold);
}

.overtime-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.overtime-row strong {
  color: var(--gold);
}

.rate-notes {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
  margin-top: 22px;
}

.rate-notes p {
  max-width: 680px;
  margin: 0;
  color: rgba(243, 241, 235, 0.48);
  font-size: 12px;
}

.rate-note-copy {
  display: grid;
  gap: 8px;
}

.rate-note-copy .launch-availability {
  color: rgba(234, 210, 170, 0.74);
}

.rate-note-copy .price-data-warning {
  color: #ffd7a3;
  font-weight: 600;
}

.text-link-light {
  flex: none;
  color: var(--gold);
}

[data-production-title],
[data-equipment-title] {
  white-space: pre-line;
}

.rate-board.launch-disabled .rate-head,
.rate-board.launch-disabled .rate-row {
  grid-template-columns: minmax(260px, 1.6fr) minmax(190px, 1fr);
}

.rate-board.launch-disabled .rate-head > :nth-child(2),
.rate-board.launch-disabled .rate-row > :nth-child(2) {
  display: none;
}

.package-section .section-heading {
  max-width: 900px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 70px;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.package-card {
  position: relative;
  min-height: 660px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3.3vw, 48px);
  background: var(--paper);
}

.package-card-dark {
  color: var(--paper);
  background: var(--graphite);
}

.package-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 7px 11px;
  color: var(--ink);
  background: var(--gold);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  color: var(--gold);
  border: 1px solid currentColor;
  font-size: 20px;
}

.package-label {
  margin: 0 0 4px;
  color: var(--smoke);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-card-dark .package-label {
  color: var(--gold);
}

.package-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.package-card > p:not(.package-label) {
  min-height: 82px;
  margin: 22px 0;
  color: #4f5353;
  font-size: 16px;
  line-height: 1.65;
}

.package-card-dark > p:not(.package-label) {
  color: rgba(243, 241, 235, 0.78);
}

.package-card ul {
  min-height: 205px;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.45;
}

.package-card li::before {
  margin-right: 9px;
  color: var(--gold);
  content: "+";
}

.package-card > p.package-fit {
  min-height: 0;
  margin: 22px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
  font-size: 14px;
  line-height: 1.55;
}

.package-card-dark .package-fit {
  border-color: var(--line-dark);
}

.package-fit span {
  display: block;
  color: #6e4a16;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.package-card-dark .package-fit span {
  color: var(--gold);
}

.package-price {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 0 18px;
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid currentColor;
}

.package-price span,
.package-price small {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.package-price strong {
  grid-row: 1 / 3;
  grid-column: 2;
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(44px, 4vw, 62px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.8;
}

.package-card:not(.package-card-dark) .package-price strong {
  color: #6e4a16;
}

.package-card .button {
  width: 100%;
  margin-top: 30px;
}

.package-card-dark .button-primary:hover {
  color: var(--ink);
}

.addon-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.addon-band div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.addon-band span {
  color: var(--smoke);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.addon-band strong {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.equipment-packages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 70px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.swipe-hint {
  display: none;
}

.equipment-tier {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 28px;
  color: var(--paper);
  background: var(--carbon);
  border: 0;
  text-align: left;
  transition:
    color 200ms ease,
    background 200ms ease;
}

.equipment-tier.selected {
  color: var(--ink);
  background: var(--gold);
}

.equipment-tier-name {
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.equipment-tier ul {
  display: grid;
  gap: 6px;
  margin: 24px 0 auto;
  padding: 0;
  color: rgba(243, 241, 235, 0.8);
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.5;
  list-style: none;
}

.equipment-tier li::before {
  margin-right: 7px;
  color: var(--gold);
  content: "+";
}

.equipment-tier.selected ul,
.equipment-tier.selected li::before {
  color: var(--ink);
}

.equipment-fit {
  width: 100%;
  margin: 22px 0 18px;
  padding-top: 16px;
  color: rgba(243, 241, 235, 0.76);
  border-top: 1px solid var(--line-dark);
  font-size: 13px;
  line-height: 1.5;
}

.equipment-fit span {
  display: block;
  margin-bottom: 3px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.equipment-tier.selected .equipment-fit,
.equipment-tier.selected .equipment-fit span {
  color: var(--ink);
  border-color: rgba(9, 10, 10, 0.24);
}

.equipment-tier-price {
  display: grid;
}

.equipment-tier-price strong {
  font-family: var(--display);
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.88;
}

.equipment-tier-price small {
  margin-top: 8px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.equipment-tier.selected .equipment-tier-price small {
  color: var(--ink);
}

.equipment-tier-action {
  width: 100%;
  margin-top: 20px;
  padding: 11px 14px;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--gold);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.equipment-tier-action:hover,
.equipment-tier-action[aria-pressed="true"] {
  color: var(--paper);
  background: transparent;
  border-color: currentColor;
}

.equipment-tier.selected .equipment-tier-action {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.equipment-details {
  margin-top: 28px;
  border-top: 1px solid var(--line-dark);
}

.equipment-details details {
  border-bottom: 1px solid var(--line-dark);
}

.equipment-details summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

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

.equipment-details summary::before {
  width: 20px;
  color: var(--gold);
  content: "+";
}

.equipment-details details[open] summary::before {
  content: "−";
}

.equipment-details summary span {
  margin-left: auto;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.equipment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 50px;
  padding: 0 0 30px 40px;
}

.equipment-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  color: rgba(243, 241, 235, 0.84);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0;
}

.equipment-list strong {
  color: var(--paper);
  font-weight: 600;
  white-space: nowrap;
}

.equipment-list strong::after {
  margin-left: 4px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  content: "THB / DAY";
}

.inventory-note {
  margin-top: 18px !important;
  color: rgba(243, 241, 235, 0.58);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.inventory-note p {
  margin: 0;
}

.inventory-note ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 28px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.inventory-note li::before {
  margin-right: 7px;
  color: var(--gold);
  content: "·";
}

.rental-terms {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(42px, 7vw, 110px);
  padding: clamp(80px, 9vw, 140px) var(--gutter);
  color: var(--ink);
  background: var(--gold-soft);
}

.terms-heading {
  max-width: 520px;
}

.terms-heading .eyebrow {
  color: #6e4a16;
}

.terms-heading h2 {
  margin: 0;
  font-family: var(--thai-display);
  font-size: clamp(42px, 5.5vw, 76px);
  font-stretch: 75%;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

.terms-heading > p:last-child {
  margin: 24px 0 0;
  font-size: 15px;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.terms-grid div {
  min-height: 150px;
  padding: 22px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.terms-grid dt {
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.terms-grid dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.gallery-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(40px, 6vw, 100px);
  padding: clamp(90px, 10vw, 160px) var(--gutter);
  color: var(--paper);
  background: #202426;
}

.gallery-intro {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  align-self: start;
}

.gallery-intro .eyebrow {
  color: var(--gold);
}

.gallery-intro h2 {
  font-size: clamp(40px, 5vw, 78px);
}

.gallery-intro > p:last-child {
  color: rgba(243, 241, 235, 0.55);
  font-size: 15px;
}

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

.gallery-item {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  padding: 0;
  color: var(--paper);
  background: var(--ink);
  border: 0;
  cursor: zoom-in;
}

.gallery-item-wide {
  grid-column: 1 / -1;
  min-height: 520px;
}

.gallery-item picture,
.gallery-item img {
  width: 100%;
  height: 100%;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.04);
  transition:
    transform 700ms var(--ease),
    filter 400ms ease;
}

.gallery-item:hover img {
  filter: saturate(0.9) contrast(1.04);
  transform: scale(1.035);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(9, 10, 10, 0.72), transparent 36%);
  pointer-events: none;
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 15px;
  left: 18px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-align: left;
  text-transform: uppercase;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(540px, 1.25fr);
  gap: clamp(50px, 8vw, 140px);
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: calc(var(--header-height) + 35px);
}

.booking-copy h2 {
  font-size: clamp(44px, 5.7vw, 84px);
}

.booking-copy > p {
  font-size: 16px;
}

.location-card {
  display: grid;
  gap: 8px;
  margin-top: 45px;
  padding: 24px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.location-card span,
.location-card a {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.location-card strong {
  margin: 5px 0 12px;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.location-card p {
  margin: -2px 0 10px;
  color: #5c6060;
  font-size: 13px;
}

.location-card a {
  color: #5c6060;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-channels {
  display: grid;
  margin-top: 22px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.contact-channels a {
  display: grid;
  gap: 3px;
  padding: 15px 16px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transition:
    color 180ms ease,
    background 180ms ease;
}

.contact-channels span {
  color: #6e4a16;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-channels strong {
  overflow-wrap: anywhere;
  font-size: 14px;
  font-weight: 600;
}

.contact-channels a:hover {
  color: var(--paper);
  background: var(--ink);
}

.contact-channels a:hover span {
  color: var(--gold);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 18px;
  padding: clamp(24px, 4vw, 55px);
  background: var(--white);
  border: 1px solid var(--ink);
  box-shadow: 14px 14px 0 var(--gold);
}

.field-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.booking-cart-import {
  display: grid;
  gap: 9px;
  padding: 16px 18px;
  color: var(--paper);
  background: var(--ink);
  border-left: 4px solid var(--gold);
}

.booking-cart-import > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 18px;
}

.booking-cart-import span,
.booking-cart-import a {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.booking-cart-import strong {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 600;
}

.booking-cart-import p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.booking-cart-import a {
  justify-self: start;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.field {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  color: #5e6262;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #aaadad;
  border-radius: 0;
  outline: 0;
  transition: border-color 180ms ease;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--ink);
}

.field textarea {
  resize: vertical;
}

.add-on-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  margin: 10px 0 0;
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid var(--line-light);
}

.add-on-fields legend {
  grid-column: 1 / -1;
  margin-bottom: 5px;
}

.add-on-fields label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}

.add-on-fields input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--ink);
}

.add-on-fields label.included,
.add-on-fields.included label {
  color: #777b7b;
  cursor: not-allowed;
  opacity: 0.62;
}

.addon-status {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: #6e4a16;
  font-size: 12px;
}

.estimate {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 5px 20px;
  padding: 20px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.estimate span,
.estimate small {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.estimate strong {
  grid-row: 1 / 3;
  grid-column: 2;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.estimate small {
  color: var(--smoke);
}

.form-submit {
  min-height: 56px;
}

.form-privacy {
  margin: -7px 0 0;
  color: var(--smoke);
  font-size: 10px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(50px, 8vw, 130px);
  padding: clamp(90px, 10vw, 150px) var(--gutter);
  color: var(--paper);
  background: var(--graphite);
}

.faq-heading h2 {
  font-size: clamp(42px, 5vw, 74px);
}

.faq-heading .eyebrow {
  color: var(--gold);
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  position: relative;
  padding: 24px 45px 24px 0;
  font-size: clamp(17px, 1.7vw, 23px);
  font-weight: 400;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--gold);
  font-family: var(--mono);
  content: "+";
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 55px 26px 0;
  color: rgba(243, 241, 235, 0.55);
  font-size: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: start;
  padding: 60px var(--gutter) 28px;
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
}

.footer-brand strong {
  font-size: 52px;
}

.site-footer > p {
  margin: 0;
  color: rgba(243, 241, 235, 0.48);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.site-footer small {
  grid-column: 1 / -1;
  margin-top: 35px;
  padding-top: 18px;
  color: rgba(243, 241, 235, 0.34);
  border-top: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-actions {
  display: none;
}

dialog {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
}

.gallery-dialog {
  width: min(92vw, 1300px);
  max-width: none;
  max-height: 92vh;
  overflow: visible;
}

.gallery-dialog img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
}

.dialog-close {
  position: absolute;
  z-index: 3;
  top: -44px;
  right: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  font-size: 25px;
  cursor: pointer;
}

.booking-dialog {
  width: min(92vw, 720px);
  max-width: none;
  color: var(--paper);
}

.booking-dialog-inner {
  position: relative;
  padding: clamp(28px, 5vw, 56px);
  background: var(--graphite);
  border: 1px solid var(--gold);
}

.booking-dialog .dialog-close {
  top: 14px;
  right: 14px;
}

.booking-dialog .eyebrow {
  color: var(--gold);
}

.booking-dialog h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
}

.booking-dialog-inner > p:not(.eyebrow, .dialog-status) {
  color: rgba(243, 241, 235, 0.58);
}

.booking-dialog pre {
  max-height: 310px;
  overflow: auto;
  margin: 25px 0;
  padding: 18px;
  color: var(--ink);
  background: var(--paper);
  white-space: pre-wrap;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.7;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-dialog .button-outline:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.dialog-status {
  min-height: 20px;
  margin: 16px 0 0;
  color: var(--gold);
  font-size: 11px;
}

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

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

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

@media (max-width: 1120px) {
  .site-header {
    gap: 24px;
  }

  .site-nav {
    gap: 17px;
  }

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

  .hero-copy {
    width: 60%;
    min-width: 570px;
  }

  .hero-visual {
    width: 65%;
  }

  .studio-section,
  .booking-section {
    gap: 60px;
  }

  .package-card {
    min-height: 710px;
    padding: 30px;
  }

  .equipment-tier {
    min-height: 360px;
    padding: 22px;
  }
}

@media (min-width: 681px) and (max-height: 820px) {
  .hero-copy {
    padding-top: calc(var(--header-height) + 32px);
    padding-bottom: 185px;
  }

  .hero-kicker {
    font-size: clamp(52px, 6vw, 82px);
  }

  .hero-thai {
    font-size: clamp(32px, 3vw, 46px);
  }

  .hero-lede {
    margin-top: 20px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .measurement-signature {
    bottom: 24px;
    height: 120px;
  }

  .measure-total strong {
    font-size: 74px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    width: 42px;
    height: 42px;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 8px;
    color: var(--white);
    background: transparent;
    border: 0;
  }

  .menu-toggle span {
    width: 100%;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 240ms var(--ease);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    color: var(--paper);
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition:
      opacity 260ms ease,
      transform 260ms var(--ease),
      visibility 260ms;
  }

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

  .site-nav a {
    font-family: var(--display);
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  .hero-copy {
    width: 72%;
    min-width: 0;
  }

  .hero-visual {
    width: 72%;
  }

  .studio-section,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .studio-blueprint {
    min-height: 0;
  }

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

  .spec-grid div:nth-child(even) {
    border-right: 0;
  }

  .spec-grid div:nth-child(-n + 4) {
    border-bottom: 1px solid var(--line-light);
  }

  .spec-grid div:nth-child(3) {
    border-right: 1px solid var(--line-light);
  }

  .studio-detail-grid {
    grid-template-columns: 1fr;
  }

  .studio-detail-panel + .studio-detail-panel {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .rental-terms {
    grid-template-columns: 1fr;
  }

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

  .package-card {
    min-height: auto;
  }

  .package-card > p:not(.package-label),
  .package-card ul {
    min-height: 0;
  }

  .package-card ul {
    margin-bottom: 42px;
  }

  .addon-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .equipment-packages {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .gallery-intro,
  .booking-copy {
    position: static;
  }

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

@media (max-width: 680px) {
  :root {
    --gutter: 20px;
  }

  body {
    padding-bottom: 58px;
  }

  .hero {
    height: calc(100svh - var(--use-strip-height) - 58px);
    min-height: 0;
    display: block;
  }

  .hero-copy {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 0;
    justify-content: flex-start;
    padding: 92px var(--gutter) 250px;
  }

  .hero-kicker {
    font-size: clamp(59px, 21vw, 90px);
  }

  .hero-thai {
    font-size: clamp(34px, 10.5vw, 48px);
  }

  .hero-lede {
    max-width: 90%;
    font-size: 14px;
  }

  .hero-actions {
    align-items: center;
    flex-direction: row;
    gap: 14px;
    margin-top: 22px;
  }

  .hero-visual {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 240px;
  }

  .hero-visual img {
    object-position: 60% center;
  }

  .image-wash {
    background:
      linear-gradient(180deg, var(--ink) 0%, transparent 35%),
      linear-gradient(0deg, rgba(9, 10, 10, 0.65), transparent 45%);
  }

  .progress-stamp {
    right: 20px;
    bottom: 18px;
  }

  .measurement-signature {
    bottom: 55px;
    left: var(--gutter);
    width: calc(100vw - var(--gutter) * 2);
    height: 84px;
  }

  .measure-total strong {
    font-size: 54px;
  }

  .measure-horizontal,
  .measure-vertical,
  .measure-total span {
    font-size: 10px;
  }

  .measure-vertical {
    right: auto;
    left: 4px;
  }

  .section-heading h2,
  .gallery-intro h2,
  .booking-copy h2,
  .faq-heading h2 {
    font-size: clamp(39px, 13vw, 60px);
    letter-spacing: -0.01em;
  }

  .blueprint-canvas {
    min-height: 390px;
  }

  .label-return {
    right: auto;
    left: -2%;
  }

  .spec-grid div {
    min-height: 145px;
    padding: 18px;
  }

  .spec-grid dt {
    font-size: 58px;
  }

  .studio-detail-grid {
    margin-top: 36px;
  }

  .studio-detail-panel {
    padding: 28px 22px;
  }

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

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

  .studio-policy-note {
    grid-template-columns: 1fr;
  }

  .rate-board {
    margin-right: -8px;
    margin-left: -8px;
  }

  .rate-head,
  .rate-row {
    grid-template-columns: 1.15fr 0.86fr 1fr;
  }

  .rate-board.launch-disabled .rate-head,
  .rate-board.launch-disabled .rate-row {
    grid-template-columns: 1.15fr 1fr;
  }

  .rate-head span {
    padding: 11px 8px;
    font-size: 11px;
  }

  .rate-row > div {
    display: grid;
    gap: 0;
    padding: 14px 9px;
  }

  .rate-row > div strong {
    min-width: 0;
    font-size: 42px;
  }

  .rate-row > div span {
    font-size: 11px;
    line-height: 1.4;
  }

  .standard-price,
  .launch-price {
    padding: 12px 8px;
    font-size: clamp(22px, 7vw, 30px);
  }

  .launch-price {
    display: grid;
    gap: 0;
  }

  .overtime-row {
    padding: 17px 10px;
    font-size: 10px;
  }

  .rate-notes {
    flex-direction: column;
  }

  .package-grid {
    margin-top: 45px;
  }

  .package-card {
    padding: 30px 24px;
  }

  .package-price {
    grid-template-columns: 1fr auto;
  }

  .package-price strong {
    font-size: 48px;
  }

  .addon-band {
    grid-template-columns: 1fr;
  }

  .equipment-packages {
    display: flex;
    gap: 10px;
    margin-top: 45px;
    margin-right: calc(var(--gutter) * -1);
    margin-left: calc(var(--gutter) * -1);
    padding: 0 var(--gutter) 14px;
    overflow-x: auto;
    background: transparent;
    border: 0;
    scroll-padding-left: var(--gutter);
    scroll-snap-type: x mandatory;
  }

  .swipe-hint {
    display: block;
    margin: 28px 0 0;
    color: var(--gold);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .gallery-intro > p.swipe-hint {
    margin-top: 18px;
    color: var(--gold);
    font-family: var(--mono);
    font-size: 11px;
  }

  .equipment-tier {
    min-height: 520px;
    flex: 0 0 84vw;
    padding: 22px;
    border: 1px solid var(--line-dark);
    scroll-snap-align: start;
  }

  .equipment-tier strong {
    font-size: 46px;
  }

  .equipment-details summary {
    align-items: baseline;
    padding: 20px 0;
    font-size: 23px;
  }

  .equipment-details summary::before {
    width: 13px;
  }

  .equipment-details summary span {
    font-size: 10px;
  }

  .equipment-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 12px;
    padding-left: 0;
  }

  .equipment-list div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px;
    font-size: 13px;
  }

  .equipment-list strong::after {
    display: none;
  }

  .rental-terms {
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

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

  .terms-grid div {
    min-height: 190px;
    padding: 17px;
  }

  .gallery-grid {
    display: flex;
    gap: 10px;
    margin-right: calc(var(--gutter) * -1);
    margin-left: calc(var(--gutter) * -1);
    padding: 0 var(--gutter) 16px;
    overflow-x: auto;
    scroll-padding-left: var(--gutter);
    scroll-snap-type: x mandatory;
  }

  .gallery-item,
  .gallery-item-wide {
    min-height: 420px;
    flex: 0 0 84vw;
    scroll-snap-align: start;
  }

  .booking-form {
    grid-template-columns: 1fr;
    padding: 26px 20px;
    box-shadow: 8px 8px 0 var(--gold);
  }

  .field,
  .field-full {
    grid-column: 1;
  }

  .add-on-fields {
    grid-template-columns: 1fr;
  }

  .estimate strong {
    font-size: 38px;
  }

  .faq-section {
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .mobile-actions {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    height: 58px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--ink);
  }

  .mobile-actions > a {
    display: grid;
    place-items: center;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .mobile-book {
    color: var(--ink);
    background: var(--gold);
  }

  .mobile-line {
    color: #fff;
    background: #06c755;
    border-left: 1px solid var(--ink);
  }

  .mobile-line[hidden] {
    display: none;
  }

  .mobile-actions:has(.mobile-line[hidden]) {
    grid-template-columns: 1fr;
  }

  .booking-dialog pre {
    max-height: 260px;
  }

  .dialog-actions {
    display: grid;
  }
}

@media (max-width: 680px) and (max-height: 720px) {
  .hero-copy {
    padding-top: 78px;
    padding-bottom: 190px;
  }

  .hero-kicker {
    font-size: 58px;
  }

  .hero-thai {
    font-size: 34px;
  }

  .hero-lede {
    display: none;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-visual {
    height: 180px;
  }

  .measurement-signature {
    bottom: 105px;
    height: 68px;
  }

  .measure-total strong {
    font-size: 46px;
  }
}

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

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