/* Brand source: original 38 SERVICES logo. Dominant amber quantized to #f8a000. */
:root {
  --brand-amber: #f8a000;
  --brand-amber-light: #ffbc37;
  --brand-silver: #c7c9c8;
  --brand-charcoal: #111210;
  --surface: #191a18;
  --paper: #e9ebe7;
  --text: #f2f2ec;
  --muted: #a5a7a0;
  --line: #ffffff24;
  --font-body: "IBM Plex Sans Thai", sans-serif;
  --font-display: "Barlow Condensed", Impact, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --gutter: clamp(24px, 5.2vw, 100px);
  --space-section: clamp(72px, 8vw, 140px);
  --radius: 2px;
  --motion: 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--brand-charcoal);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--brand-amber);
  outline-offset: 6px;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.025em;
}
h3 {
  font-weight: 500;
}
button {
  color: inherit;
}
::selection {
  background: var(--brand-amber);
  color: var(--brand-charcoal);
}
[hidden] {
  display: none !important;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 12px;
  transform: translateY(-180%);
  padding: 12px;
  background: var(--brand-amber);
  color: #111;
  z-index: 100;
}
.skip-link:focus {
  transform: none;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.muted {
  color: var(--muted);
}
.button {
  white-space: nowrap;
  min-height: 56px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
  background: var(--brand-amber);
  color: var(--brand-charcoal);
  padding: 15px 24px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 1px solid var(--brand-amber);
  border-radius: var(--radius);
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: var(--brand-amber-light);
  transform: translateY(-2px);
}
.button > span {
  font-family: Arial, sans-serif;
  font-size: 25px;
  font-weight: 400;
}
.button-small {
  min-height: 44px;
  padding: 9px 18px;
  font-size: 0.875rem;
  gap: 22px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border-bottom: 1px solid currentColor;
  padding: 8px 0;
  font-size: 0.9375rem;
}
.text-link span {
  font-family: Arial, sans-serif;
  font-size: 23px;
}
.site-header {
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line);
  gap: 30px;
}
.brand {
  width: 169px;
  flex: none;
}
.brand img {
  width: 100%;
  height: 77px;
  object-fit: contain;
}
.desktop-nav {
  display: flex;
  gap: 38px;
  margin-left: auto;
  margin-right: 5vw;
  font-size: 0.875rem;
}
.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--brand-amber);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  width: 44px;
  height: 44px;
  padding: 9px;
}
.menu-toggle span {
  height: 1px;
  background: var(--text);
  display: block;
  margin: 7px 0;
}
.ride-story {
  height: 260svh;
  position: relative;
}
.ride-stage {
  height: 100svh;
  min-height: 720px;
  position: sticky;
  top: 0;
  overflow: hidden;
  background: #171915;
}
.film-layer,
.film-shade {
  position: absolute;
  inset: 0;
}
.film-layer img,
.film-layer video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.film-layer {
  transform: scale(1.025);
}
.film-layer video {
  opacity: 0;
  transition: opacity 0.7s;
}
.film-layer video.is-ready {
  opacity: 1;
}
.film-shade {
  background:
    linear-gradient(
      90deg,
      rgba(9, 12, 9, 0.9) 0%,
      rgba(9, 12, 9, 0.5) 40%,
      rgba(9, 12, 9, 0.02) 78%
    ),
    linear-gradient(
      0deg,
      rgba(10, 13, 9, 0.78),
      transparent 30%,
      transparent 72%,
      rgba(10, 13, 9, 0.55)
    );
}
.hero-topline {
  position: absolute;
  top: 126px;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  color: #c3c6bb;
}
.hero-copy {
  position: absolute;
  top: 50%;
  left: var(--gutter);
  transform: translateY(-42%);
  max-width: 770px;
}
.chapter-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 21px;
  color: var(--brand-amber);
}
.accent-line {
  width: 31px;
  height: 2px;
  background: var(--brand-amber);
}
h1 {
  font-size: clamp(88px, 9.4vw, 170px);
}
h1 span {
  color: var(--brand-amber);
}
.hero-thai {
  font-size: clamp(23px, 2.05vw, 35px);
  font-weight: 500;
  line-height: 1.5;
  margin-top: 25px;
}
.hero-description {
  color: #bec1b7;
  line-height: 1.8;
  margin-top: 11px;
  font-size: 1rem;
}
.hero-cta {
  margin-top: 27px;
}
.chapter-rail {
  position: absolute;
  right: var(--gutter);
  top: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}
.chapter-rail button {
  font-family: var(--font-mono);
  font-size: 13px;
  background: none;
  border: 0;
  color: #a1a59b;
  width: 44px;
  height: 40px;
}
.chapter-rail button[aria-pressed="true"] {
  color: var(--brand-amber);
}
.chapter-rail > span {
  height: 30px;
  width: 1px;
  background: #ffffff40;
}
.hero-bottom {
  position: absolute;
  bottom: 30px;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.scroll-cue {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.scroll-icon {
  font-family: Arial, sans-serif;
  width: 35px;
  height: 46px;
  border: 1px solid #ffffff50;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 20px;
}
.film-credit {
  color: #858b7e;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}
.motion-toggle {
  font-size: 0.8125rem;
  background: transparent;
  border: 0;
  padding: 10px 0;
  color: #b9bdb1;
}
.motion-toggle span {
  padding-left: 10px;
  color: var(--brand-amber);
}
.story-progress {
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff14;
}
.story-progress span {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(var(--story-progress, 0));
  transform-origin: left;
  background: var(--brand-amber);
}
.brand-strip {
  padding: 26px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  background: var(--brand-amber);
  color: var(--brand-charcoal);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 38px);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
}
.brand-star {
  font-family: Arial, sans-serif;
  font-size: 28px;
}
.section-padding {
  padding: var(--space-section) var(--gutter);
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 55px;
}
.section-index {
  color: var(--brand-amber);
}
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 8vw;
}
.services-intro h2,
.work-title h2 {
  font-size: clamp(64px, 6.2vw, 110px);
}
.services-intro h2 span {
  color: var(--brand-silver);
}
.services-intro h3 {
  font-size: 32px;
  line-height: 1.5;
  margin-top: 30px;
}
.services-intro p {
  color: var(--muted);
  margin: 16px 0 24px;
}
.service-list details {
  border-top: 1px solid var(--line);
}
.service-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.service-list summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 35px 1fr 22px;
  align-items: center;
  gap: 18px;
  padding: 27px 0;
  font-size: 1.3125rem;
  font-weight: 500;
}
.service-list summary::-webkit-details-marker {
  display: none;
}
.service-number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
}
.service-list summary small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-top: 5px;
}
.detail-symbol {
  height: 20px;
  position: relative;
}
.detail-symbol:before,
.detail-symbol:after {
  content: "";
  position: absolute;
  background: var(--brand-amber);
  height: 1px;
  width: 16px;
  left: 0;
  top: 10px;
}
.detail-symbol:after {
  transform: rotate(90deg);
  transition: transform 0.2s;
}
details[open] .detail-symbol:after {
  transform: rotate(0);
}
.service-list details p {
  padding: 0 40px 27px 53px;
  color: var(--muted);
  font-size: 0.9375rem;
  max-width: 600px;
}
.model-care {
  background: var(--paper);
  color: var(--brand-charcoal);
}
.model-care .section-index {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--brand-charcoal);
}
.model-care .section-index::before {
  content: "";
  width: 24px;
  height: 3px;
  background: var(--brand-amber);
}
.model-care .muted,
.model-care-description,
.model-care-steps p {
  color: #53584f;
}
.model-care-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 8vw;
  align-items: start;
}
.model-care-display {
  font-family: var(--font-display);
  font-size: clamp(64px, 6.2vw, 110px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.025em;
}
.model-care-display span {
  color: #62685e;
}
.model-care h2 {
  margin-top: 30px;
  font-family: var(--font-body);
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.035em;
}
.model-care-description {
  max-width: 430px;
  margin-top: 18px;
  line-height: 1.85;
}
.model-care-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.model-care-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid #11121030;
}
.model-care-number {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1.1;
  color: #62685e;
}
.model-care-steps h3 {
  font-size: 1.3125rem;
  font-weight: 600;
}
.model-care-steps p {
  max-width: 430px;
  margin-top: 7px;
  font-size: 0.9375rem;
  line-height: 1.8;
}
.model-care-cta {
  width: 100%;
  margin-top: 12px;
  min-height: 64px;
  white-space: normal;
}
.model-care-cta:focus-visible {
  outline-color: var(--brand-charcoal);
}
.work {
  background: #20221e;
}
.work .section-heading {
  margin-bottom: 35px;
}
.work-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}
.work-title h2 span {
  color: var(--brand-amber);
}
.work-title > p {
  font-size: 1.125rem;
  color: var(--brand-silver);
  padding-bottom: 5px;
}
.work-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 34px;
  align-items: start;
}
.work-card:nth-child(2) {
  padding-top: 86px;
}
.work-image {
  overflow: hidden;
  background: #30332b;
  aspect-ratio: 1.38;
}
.work-card:nth-child(2) .work-image {
  aspect-ratio: 1.06;
}
.work-image img {
  width: 100%;
  height: 100%;
  transition: transform var(--motion);
  filter: saturate(0.7);
}
.work-card:hover img {
  transform: scale(1.035);
  filter: saturate(1);
}
.work-caption {
  padding: 21px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.work-caption small {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
  color: var(--muted);
}
.work-caption h3 {
  font-size: 1.1875rem;
  margin-top: 7px;
}
.work-caption > span {
  font-family: Arial;
  font-size: 30px;
  color: var(--brand-amber);
}
.trust-row {
  border-top: 1px solid var(--line);
  padding-top: 35px;
  margin-top: 66px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-row > a {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.875rem;
}
.review-stars {
  color: var(--brand-amber);
  letter-spacing: 0.14em;
}
.trust-row strong {
  font-family: var(--font-display);
  font-size: 33px;
  font-weight: 500;
}
.checked-date {
  font-size: 0.75rem;
  color: var(--muted);
}
.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
  color: var(--brand-charcoal);
}
.visit-photo {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.visit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  filter: saturate(0.6);
}
.photo-label {
  position: absolute;
  bottom: 26px;
  left: 30px;
  background: var(--brand-charcoal);
  color: var(--paper);
  padding: 9px 14px;
}
.visit-content {
  padding: 85px clamp(30px, 5vw, 90px);
}
.visit .section-index {
  color: #88601b;
}
.visit h2 {
  font-size: clamp(68px, 6.2vw, 110px);
  margin: 35px 0 25px;
}
.visit h2 span {
  color: #6f7369;
}
.visit h3 {
  font-size: 29px;
  line-height: 1.5;
}
.visit p:not(.section-index) {
  margin-top: 18px;
  color: #60655b;
}
.visit address {
  font-style: normal;
  font-size: 0.9375rem;
  margin-top: 24px;
}
.visit .appointment-note {
  font-size: 0.8125rem;
}
.visit-actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 28px;
}
.phone-link {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  border-bottom: 1px solid #8b8f83;
  padding: 9px 0;
}
.closing {
  padding-top: 90px;
  padding-bottom: 100px;
}
.closing > .eyebrow {
  color: var(--brand-amber);
}
.closing > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 27px;
}
.closing h2 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(39px, 4.8vw, 80px);
  line-height: 1.35;
  letter-spacing: -0.045em;
}
.closing h2 span {
  color: var(--brand-amber);
}
.closing > p:last-child {
  margin-top: 25px;
  color: var(--muted);
}
.closing-link {
  width: 118px;
  height: 118px;
  border: 1px solid var(--brand-amber);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  color: var(--brand-amber);
  font-size: 65px;
  font-family: Arial;
  transition:
    background 0.2s,
    color 0.2s;
}
.closing-link:hover {
  background: var(--brand-amber);
  color: var(--brand-charcoal);
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 55px var(--gutter) 25px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 55px 30px;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: var(--brand-amber);
  font-style: italic;
  width: max-content;
}
.footer-wordmark > span {
  color: var(--brand-silver);
}
.footer-wordmark small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-top: 10px;
  font-weight: 500;
}
.footer-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 0.8125rem;
  font-family: var(--font-mono);
}
.footer-base {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.75rem;
  color: var(--muted);
}
@media (min-width: 1600px) {
  .hero-copy {
    transform: translateY(-39%);
  }
  .hero-description {
    font-size: 1.125rem;
  }
}
@media (max-height: 800px) and (min-width: 801px) {
  .ride-stage {
    min-height: 640px;
  }
  .hero-copy {
    top: 51%;
    transform: translateY(-40%);
  }
  h1 {
    font-size: 100px;
  }
  .hero-thai {
    margin-top: 17px;
    font-size: 27px;
  }
  .hero-description {
    margin-top: 6px;
  }
  .hero-cta {
    margin-top: 20px;
  }
  .hero-topline {
    top: 118px;
  }
}
@media (max-width: 1100px) {
  .desktop-nav {
    gap: 22px;
    margin-right: 15px;
  }
  .services-layout {
    gap: 5vw;
  }
  .model-care-layout {
    gap: 5vw;
  }
  .service-list summary {
    font-size: 1.125rem;
    gap: 12px;
  }
  .services-intro h3 {
    font-size: 28px;
  }
  .film-credit {
    display: none;
  }
  .hero-copy {
    max-width: 75%;
  }
  .work-grid {
    gap: 23px;
  }
  .visit-content {
    padding: 65px 32px;
  }
  .footer-links {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
@media (max-width: 800px) {
  html {
    scroll-padding-top: 25px;
  }
  .site-header {
    height: 88px;
    gap: 20px;
  }
  .brand {
    width: 137px;
  }
  .brand img {
    height: 68px;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .mobile-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 87px;
    background: var(--brand-charcoal);
    padding: 28px var(--gutter);
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 23px;
    box-shadow: 0 20px 30px #0007;
  }
  .button-small {
    font-size: 0.8125rem;
    gap: 15px;
    padding: 8px 12px;
  }
  .hero-topline {
    top: 111px;
  }
  .hero-topline > span:last-child {
    display: none;
  }
  .ride-stage {
    min-height: 640px;
  }
  .hero-copy {
    top: 48%;
    max-width: calc(100% - 85px);
    transform: translateY(-34%);
  }
  h1 {
    font-size: clamp(76px, 14.5vw, 112px);
  }
  .hero-thai {
    font-size: 24px;
    margin-top: 24px;
  }
  .hero-description {
    font-size: 0.9375rem;
    max-width: 370px;
  }
  .hero-cta {
    margin-top: 25px;
  }
  .film-layer img,
  .film-layer video {
    object-position: 64% center;
  }
  .film-shade {
    background:
      linear-gradient(90deg, #090c09d9, #090c0940),
      linear-gradient(0deg, #0a0d09e6, transparent 70%, #0a0d0970);
  }
  .chapter-rail {
    right: 12px;
    top: 41%;
  }
  .hero-bottom {
    bottom: 22px;
  }
  .scroll-cue {
    font-size: 0.6875rem;
    gap: 9px;
  }
  .motion-toggle {
    font-size: 0.75rem;
  }
  .scroll-icon {
    width: 28px;
    height: 38px;
  }
  .brand-strip {
    justify-content: flex-start;
    gap: 23px;
    font-size: 25px;
    padding: 20px 24px;
  }
  .brand-star {
    font-size: 22px;
  }
  .section-heading {
    margin-bottom: 35px;
    align-items: flex-start;
  }
  .section-heading > .muted {
    display: none;
  }
  .services-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .model-care-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .model-care-display {
    font-size: clamp(62px, 10vw, 88px);
  }
  .model-care h2 {
    margin-top: 24px;
    font-size: clamp(25px, 4.5vw, 32px);
  }
  .model-care-description {
    max-width: 540px;
  }
  .model-care-steps li {
    grid-template-columns: 34px 1fr;
    gap: 18px;
  }
  .model-care-number {
    font-size: 32px;
  }
  .model-care-steps h3 {
    font-size: 1.1875rem;
  }
  .services-intro h2,
  .work-title h2 {
    font-size: 76px;
  }
  .services-intro h3 {
    font-size: 27px;
    margin-top: 25px;
  }
  .service-list summary {
    font-size: 1.1875rem;
    padding: 24px 0;
  }
  .work-title {
    display: block;
    margin-bottom: 32px;
  }
  .work-title > p {
    margin-top: 25px;
  }
  .work-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .work-card:nth-child(2) {
    padding-top: 16px;
  }
  .work-card:nth-child(2) .work-image {
    aspect-ratio: 1.38;
  }
  .trust-row {
    margin-top: 40px;
    gap: 18px;
  }
  .trust-row > .eyebrow {
    width: 100%;
  }
  .trust-row > a {
    gap: 13px;
    flex-wrap: wrap;
  }
  .visit {
    grid-template-columns: 1fr;
  }
  .visit-photo {
    min-height: 0;
    height: 420px;
  }
  .visit-content {
    padding: 60px var(--gutter);
  }
  .visit h2 {
    font-size: 84px;
  }
  .closing {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .closing > div {
    gap: 16px;
  }
  .closing-link {
    width: 75px;
    height: 75px;
    font-size: 44px;
  }
  .closing h2 {
    font-size: clamp(32px, 5.4vw, 50px);
    letter-spacing: -0.045em;
  }
  .closing > p:last-child {
    font-size: 0.9375rem;
  }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-links {
    justify-content: flex-start;
    gap: 19px;
  }
  .footer-base {
    flex-wrap: wrap;
    font-size: 0.75rem;
  }
  .footer-base span {
    width: 100%;
  }
}
@media (max-width: 420px) {
  .site-header {
    gap: 10px;
  }
  .header-actions {
    gap: 4px;
  }
  .brand {
    width: 123px;
  }
  .button-small {
    gap: 10px;
  }
  .button-small span {
    font-size: 20px;
  }
  .hero-copy {
    max-width: calc(100% - 62px);
  }
  .hero-thai {
    font-size: 21px;
  }
  .hero-description {
    font-size: 0.875rem;
  }
  .hero-cta {
    font-size: 0.875rem;
    padding: 13px 18px;
    min-height: 51px;
    gap: 24px;
  }
  .services-intro h2,
  .work-title h2 {
    font-size: 65px;
  }
  .service-list summary {
    font-size: 1.0625rem;
  }
  .service-list details p {
    padding-left: 47px;
    padding-right: 10px;
  }
  .closing-link {
    width: 60px;
    height: 60px;
    font-size: 35px;
  }
  .hero-bottom {
    gap: 8px;
  }
  .motion-toggle {
    font-size: 0.75rem;
  }
}
@media (max-width: 360px) {
  .header-actions .booking {
    display: none;
  }
}
html.reduced-motion {
  scroll-behavior: auto;
}
html.reduced-motion .ride-story {
  height: auto;
}
html.reduced-motion .ride-stage {
  position: relative;
}
html.reduced-motion .film-layer video {
  display: none;
}
html.reduced-motion .chapter-rail {
  display: none;
}
html.reduced-motion * {
  transition: none !important;
}
@media (prefers-reduced-motion: reduce) {
  html:not(.motion-enabled) {
    scroll-behavior: auto;
  }
  html:not(.motion-enabled) .ride-story {
    height: auto;
  }
  html:not(.motion-enabled) .ride-stage {
    position: relative;
  }
  html:not(.motion-enabled) .film-layer video,
  html:not(.motion-enabled) .chapter-rail {
    display: none;
  }
  html:not(.motion-enabled) * {
    transition: none !important;
  }
}

/* Navigation stays available through the complete scroll story. */
html { scroll-padding-top: 112px; }
.site-header { top: 0; width: 100%; transition: background .2s, box-shadow .2s; }
.site-header.is-scrolled, .site-header:has(.mobile-menu:not([hidden])) { background: rgba(17,18,16,.97); box-shadow: 0 1px 0 rgba(255,255,255,.13); }
.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; }
.footer-links { flex-wrap: wrap; }
@media (max-width: 760px) { html { scroll-padding-top: 96px; } }
