/* Best of Phi Phi - world-class editorial layer, 2026-07-16 */
:root {
  --wc-ink: #0b1c13;
  --wc-forest: #173726;
  --wc-forest-soft: #214a34;
  --wc-cream: #f7f2e7;
  --wc-paper: #fffdf8;
  --wc-sand: #e9dfcc;
  --wc-gold: #caa85b;
  --wc-gold-light: #ead8a8;
  --wc-coral: #b85f43;
  --wc-text: #26372c;
  --wc-muted: #68766c;
  --wc-line: rgba(23, 55, 38, .14);
  --wc-shadow: 0 30px 80px -48px rgba(11, 28, 19, .55);
  --wc-shadow-deep: 0 36px 90px -44px rgba(5, 15, 10, .72);
  --wc-radius-sm: 12px;
  --wc-radius: 22px;
  --wc-radius-lg: 34px;
  --wc-max: 1240px;
}

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

html {
  scroll-padding-top: 104px;
}

body {
  background:
    radial-gradient(circle at 5% 16%, rgba(202, 168, 91, .08), transparent 27rem),
    var(--wc-cream);
  color: var(--wc-text);
}

body.nav-open,
body.languages-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--wc-gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 14px;
  z-index: 1000;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--wc-paper);
  color: var(--wc-ink);
  font-size: 13px;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: none;
}

/* Editorial masthead */
.site-masthead {
  position: fixed;
  z-index: 500;
  top: 16px;
  left: 50%;
  width: min(calc(100% - 32px), var(--wc-max));
  min-height: 68px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 20px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(8, 24, 15, .68);
  box-shadow: 0 14px 50px -28px rgba(0, 0, 0, .7);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: top .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-masthead.is-scrolled {
  top: 9px;
  border-color: rgba(202, 168, 91, .22);
  background: rgba(8, 24, 15, .92);
  box-shadow: 0 20px 54px -34px rgba(0, 0, 0, .9);
}

.brand-lockup {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--wc-paper);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 33px;
  height: 33px;
  flex: 0 0 33px;
  border: 1px solid rgba(234, 216, 168, .62);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border: 1px solid var(--wc-gold-light);
  transform: translate(-50%, -50%) rotate(45deg);
}

.brand-mark::after {
  width: 3px;
  height: 3px;
  border: 0;
  border-radius: 50%;
  background: var(--wc-gold-light);
}

.brand-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--ff-display, "Fraunces", serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -.015em;
  white-space: nowrap;
}

.brand-kicker {
  margin-top: 5px;
  color: rgba(247, 242, 231, .57);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
}

.site-nav a {
  position: relative;
  color: rgba(247, 242, 231, .72);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .035em;
  text-decoration: none;
  white-space: nowrap;
  transition: color .25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--wc-gold);
  transition: right .25s ease;
}

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

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  right: 0;
}

.masthead-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-toggle,
.menu-toggle {
  min-width: 42px;
  height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  color: rgba(247, 242, 231, .78);
  font: inherit;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.language-toggle span {
  margin-left: 4px;
  color: var(--wc-gold-light);
}

.masthead-concierge {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border-radius: 999px;
  background: var(--wc-gold);
  color: var(--wc-ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease;
}

.masthead-concierge:hover {
  transform: translateY(-1px);
  background: var(--wc-gold-light);
}

.menu-toggle {
  position: relative;
  display: none;
  width: 42px;
  padding: 0;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 12px;
  width: 17px;
  height: 1px;
  background: currentColor;
  transition: transform .25s ease, top .25s ease;
}

.menu-toggle::before {
  top: 16px;
}

.menu-toggle::after {
  top: 24px;
}

body.nav-open .menu-toggle::before {
  top: 20px;
  transform: rotate(45deg);
}

body.nav-open .menu-toggle::after {
  top: 20px;
  transform: rotate(-45deg);
}

/* Language selector is present for visitor UX, not indexed alternate pages. */
.langbar {
  position: fixed !important;
  z-index: 490 !important;
  top: 96px !important;
  right: max(20px, calc((100vw - var(--wc-max)) / 2)) !important;
  left: auto !important;
  width: min(420px, calc(100% - 40px)) !important;
  max-height: calc(100vh - 122px);
  overflow: auto;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  padding: 18px !important;
  border: 1px solid rgba(202, 168, 91, .24) !important;
  border-radius: 20px !important;
  background: rgba(8, 24, 15, .96) !important;
  box-shadow: var(--wc-shadow-deep);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(.98);
  transform-origin: top right;
  transition: opacity .25s ease, transform .25s ease;
  backdrop-filter: blur(20px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(130%) !important;
}

body.languages-open .langbar {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.langbar .globe {
  width: 100%;
  margin: 0 0 5px !important;
  color: var(--wc-gold-light) !important;
  font-size: 9px !important;
  letter-spacing: .24em !important;
}

.langbar .lbtn {
  min-width: 42px;
  padding: 8px 10px !important;
  border-color: rgba(234, 216, 168, .18) !important;
  color: rgba(247, 242, 231, .72) !important;
  font-size: 10px !important;
  text-align: center;
  text-decoration: none;
}

.langbar .lbtn:hover,
.langbar .lbtn.on {
  border-color: var(--wc-gold) !important;
  background: var(--wc-gold) !important;
  color: var(--wc-ink) !important;
}

/* Homepage hero */
.home-page .hero {
  min-height: 680px;
  height: 100svh;
  align-items: flex-end;
  justify-content: center;
  padding: 150px 0 clamp(86px, 12vh, 130px);
  text-align: left;
}

.home-page .hero-bg {
  inset: -5% 0;
  background-position: center 45%;
  transform: scale(1.01);
}

.home-page .hero-bg::after {
  background:
    linear-gradient(90deg, rgba(6, 19, 12, .84) 0%, rgba(6, 19, 12, .57) 42%, rgba(6, 19, 12, .09) 78%),
    linear-gradient(180deg, rgba(6, 19, 12, .42) 0%, transparent 38%, rgba(6, 19, 12, .86) 100%);
}

.home-page .hero-inner {
  width: min(calc(100% - 64px), var(--wc-max));
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

.home-page .hero-eye {
  margin-bottom: 22px;
  color: var(--wc-gold-light);
  font-size: 10px;
  letter-spacing: .42em;
}

.home-page .hero h1 {
  max-width: 940px;
  font-size: clamp(64px, 10.3vw, 138px);
  line-height: .86;
  letter-spacing: -.045em;
  text-shadow: 0 20px 55px rgba(0, 0, 0, .32);
}

.home-page .hero h1 em {
  color: var(--wc-gold-light);
}

.home-page .hero-sub {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(247, 242, 231, .87);
  font-size: clamp(16px, 1.65vw, 20px);
  line-height: 1.65;
}

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

.hero-primary,
.hero-secondary {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.hero-primary {
  background: var(--wc-gold);
  color: var(--wc-ink);
}

.hero-secondary {
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .055);
  color: var(--wc-paper);
  backdrop-filter: blur(8px);
}

.hero-primary:hover,
.hero-secondary:hover {
  transform: translateY(-2px);
}

.hero-primary:hover {
  background: var(--wc-gold-light);
}

.hero-secondary:hover {
  border-color: rgba(255, 255, 255, .62);
  background: rgba(255, 255, 255, .1);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 28px;
  color: rgba(247, 242, 231, .57);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-trust span {
  position: relative;
}

.hero-trust span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -14px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--wc-gold);
}

.home-page .hero-scroll {
  right: max(32px, calc((100vw - var(--wc-max)) / 2));
  bottom: 34px;
  left: auto;
  transform: none;
}

/* Homepage editorial rhythm */
.home-page .wrap,
.wrap {
  max-width: var(--wc-max);
}

.home-page .intro {
  position: relative;
  padding-top: clamp(92px, 11vw, 150px);
  padding-bottom: clamp(84px, 10vw, 132px);
}

.home-page .intro::before {
  content: "LOCAL / HONEST / INDEPENDENT";
  position: absolute;
  top: 46px;
  left: 50%;
  color: rgba(23, 55, 38, .18);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .28em;
  transform: translateX(-50%);
  white-space: nowrap;
}

.home-page .intro-lead {
  max-width: 1000px;
  font-size: clamp(28px, 3.7vw, 48px);
  line-height: 1.3;
}

.home-page .intro-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  padding: 10px 16px;
  border: 1px solid var(--wc-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .46);
  font-size: 12px;
}

.home-page .day {
  padding: clamp(86px, 9vw, 126px) 0;
  background:
    linear-gradient(135deg, rgba(202, 168, 91, .08), transparent 40%),
    var(--wc-paper);
}

.home-page .sec-head {
  max-width: 800px;
  margin-bottom: 62px;
}

.home-page .sec-head h2 {
  font-size: clamp(42px, 5.8vw, 72px);
  letter-spacing: -.035em;
}

.home-page .timeline {
  max-width: 1120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--wc-line);
  border-radius: var(--wc-radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .68);
  box-shadow: var(--wc-shadow);
}

.home-page .timeline::before {
  display: none;
}

.home-page .tl {
  min-height: 185px;
  display: block;
  padding: 27px 25px 25px;
  border-right: 1px solid var(--wc-line);
  border-bottom: 1px solid var(--wc-line);
  transition: background .3s ease;
}

.home-page .tl:hover {
  background: var(--wc-paper);
}

.home-page .tl:nth-child(4),
.home-page .tl:nth-child(7) {
  border-right: 0;
}

.home-page .tl:nth-child(n+5) {
  border-bottom: 0;
}

.home-page .tl:nth-child(5) {
  grid-column: 1 / 2;
}

.home-page .tl:nth-child(7) {
  grid-column: 3 / 5;
  background: var(--wc-forest);
}

.home-page .tl-time {
  margin-bottom: 28px;
  padding: 0;
  color: #97752f;
  font-size: 14px;
  text-align: left;
}

.home-page .tl-body {
  padding: 0;
}

.home-page .tl-body::before {
  display: none;
}

.home-page .tl-body h4 {
  margin-bottom: 8px;
  font-size: 21px;
}

.home-page .tl-body p {
  font-size: 13.5px;
  line-height: 1.6;
}

.home-page .tl:nth-child(7) .tl-time,
.home-page .tl:nth-child(7) .tl-body .at {
  color: var(--wc-gold-light);
}

.home-page .tl:nth-child(7) .tl-body h4 {
  color: var(--wc-paper);
}

.home-page .tl:nth-child(7) .tl-body p {
  color: rgba(247, 242, 231, .7);
}

.concierge-cta {
  margin-top: -38px !important;
  margin-bottom: 92px !important;
  position: relative;
  z-index: 2;
}

.concierge-cta > div {
  position: relative;
  overflow: hidden;
  max-width: 1030px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 54px) !important;
  border-radius: var(--wc-radius-lg) !important;
  box-shadow: var(--wc-shadow-deep);
}

.concierge-cta > div::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(234, 216, 168, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(234, 216, 168, .03), 0 0 0 68px rgba(234, 216, 168, .025);
}

.concierge-cta h3,
.concierge-cta p,
.concierge-cta a {
  position: relative;
  z-index: 1;
}

.lead-magnet-note {
  display: block;
  margin-top: 14px;
  color: rgba(247, 242, 231, .55);
  font-size: 11px;
  letter-spacing: .06em;
}

.home-page .pillar {
  padding-top: clamp(82px, 9vw, 120px);
}

.home-page .pillar-head {
  margin-bottom: 58px;
}

.home-page .pillar-title {
  font-size: clamp(44px, 6.4vw, 78px);
  letter-spacing: -.035em;
}

.home-page .scene {
  margin-bottom: 34px;
  border-radius: var(--wc-radius);
  box-shadow: var(--wc-shadow);
}

.home-page .scene-media {
  min-height: 510px;
}

.home-page .scene-body {
  padding: clamp(40px, 5vw, 68px);
}

.home-page .v-name {
  margin-bottom: 13px;
  font-size: clamp(34px, 3.7vw, 49px);
  letter-spacing: -.025em;
}

.home-page .v-desc {
  font-size: 15.5px;
}

.home-page .btn,
.btn {
  min-height: 47px;
  justify-content: center;
  border-radius: 999px;
}

.home-page .guide {
  margin-top: 78px;
  padding: clamp(92px, 10vw, 140px) 0;
  background:
    radial-gradient(circle at 80% 14%, rgba(202, 168, 91, .12), transparent 25rem),
    var(--wc-forest);
}

.home-page .guide-grid {
  gap: 16px;
}

.home-page .gcard {
  border-radius: var(--wc-radius-sm);
  padding: 34px;
}

.home-page .todo {
  padding: clamp(92px, 10vw, 140px) 0;
}

.home-page .tcard {
  border-radius: var(--wc-radius-sm);
  padding: 31px 29px;
}

.home-page .faq {
  padding: clamp(92px, 10vw, 140px) 0;
}

.home-page .qa button {
  padding-top: 29px;
  padding-bottom: 29px;
}

.home-page .map-sec {
  padding: clamp(92px, 10vw, 140px) 0;
}

/* Subpage refinements */
body:not(.home-page) .crumb {
  padding-top: 112px;
}

body:not(.home-page) .vhero {
  height: min(72vh, 760px);
  min-height: 520px;
  margin-top: 16px;
  border-radius: 0 0 var(--wc-radius-lg) var(--wc-radius-lg);
}

body:not(.home-page) .vhero::after {
  background:
    linear-gradient(90deg, rgba(7, 20, 12, .77), rgba(7, 20, 12, .18) 70%),
    linear-gradient(180deg, rgba(7, 20, 12, .1), rgba(7, 20, 12, .88));
}

body:not(.home-page) .vhero img {
  transition: transform 1.2s cubic-bezier(.2, .7, .2, 1);
}

body:not(.home-page) .vhero:hover img {
  transform: scale(1.018);
}

body:not(.home-page) .vhero-in {
  padding-bottom: clamp(46px, 7vw, 80px);
}

body:not(.home-page) .vhero-in h1 {
  max-width: 970px;
  font-size: clamp(48px, 7.2vw, 92px);
  line-height: .96;
  letter-spacing: -.04em;
}

body:not(.home-page) .vhero-in .vmeta {
  margin-top: 22px;
  font-size: 13px;
}

body:not(.home-page) .vbody {
  padding-top: clamp(74px, 9vw, 116px);
  padding-bottom: clamp(84px, 10vw, 132px);
}

body:not(.home-page) .vlead {
  max-width: 920px;
  margin-bottom: 34px;
  font-size: clamp(25px, 3.2vw, 37px);
  line-height: 1.38;
  letter-spacing: -.018em;
}

body:not(.home-page) .vtext {
  max-width: 820px;
  font-size: 16.5px;
}

body:not(.home-page) .vtext p + p {
  margin-top: 18px;
}

body:not(.home-page) .vfeat {
  margin-top: 30px;
  margin-bottom: 32px;
}

body:not(.home-page) .vsec {
  max-width: 900px;
  margin-top: clamp(62px, 8vw, 94px);
}

body:not(.home-page) .vsec h2.vh {
  margin-bottom: 25px;
  font-size: clamp(29px, 3.8vw, 44px);
  letter-spacing: -.025em;
}

body:not(.home-page) .info-card,
body:not(.home-page) .happy {
  max-width: 900px;
  border-radius: var(--wc-radius);
  box-shadow: 0 24px 70px -55px rgba(11, 28, 19, .7);
}

body:not(.home-page) .info-card {
  padding: clamp(25px, 4vw, 42px);
}

body:not(.home-page) .vmap {
  max-width: 100%;
  height: 390px;
  border-radius: var(--wc-radius-sm);
}

body:not(.home-page) .subfaq {
  max-width: 900px;
}

body:not(.home-page) .collection {
  padding: clamp(86px, 9vw, 126px) 0;
}

body:not(.home-page) .collection h2 {
  margin-bottom: 54px;
  font-size: clamp(39px, 5vw, 60px);
  letter-spacing: -.035em;
}

body:not(.home-page) .cgrid {
  gap: 14px;
}

body:not(.home-page) .ccard {
  min-height: 142px;
  padding: 26px;
  border-radius: var(--wc-radius-sm);
}

body:not(.home-page) .ccard .cn {
  font-size: 22px;
}

/* Long-form guides */
.journal-hero {
  padding-top: 172px;
}

.journal-hero h1 {
  font-size: clamp(52px, 8vw, 96px);
  letter-spacing: -.045em;
}

.jgrid {
  gap: 18px;
}

.jcard {
  border-radius: var(--wc-radius);
  box-shadow: 0 26px 70px -55px rgba(11, 28, 19, .6);
}

.jcard .jc-body {
  padding: 34px;
}

.jcard h2 {
  font-size: 28px;
}

.article {
  max-width: 820px;
  padding-top: 166px;
}

.article h1 {
  font-size: clamp(44px, 6vw, 70px);
  letter-spacing: -.04em;
}

.article .a-lead {
  font-size: clamp(22px, 3vw, 31px);
}

.article p,
.article li {
  font-size: 17px;
}

.article .callout {
  margin: 34px 0;
  padding: 25px 28px;
  border-radius: 0 var(--wc-radius-sm) var(--wc-radius-sm) 0;
  background: rgba(255, 253, 248, .8);
}

/* More refined action buttons */
.cta-row {
  gap: 9px;
}

.btn-fill,
.btn-gold {
  box-shadow: 0 14px 28px -20px rgba(11, 28, 19, .75);
}

.btn-line {
  background: rgba(255, 255, 255, .25);
}

.wafloat {
  right: 20px;
  bottom: 20px;
  width: auto;
  min-width: 132px;
  height: 50px;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  background: var(--wc-gold);
  color: var(--wc-ink);
  box-shadow: 0 18px 45px -20px rgba(11, 28, 19, .8);
  font-size: 13px;
  font-weight: 600;
}

.wafloat .wa-symbol {
  font-size: 18px;
}

.foot {
  padding-top: clamp(90px, 10vw, 132px);
  background:
    radial-gradient(circle at 50% -30%, rgba(202, 168, 91, .16), transparent 32rem),
    var(--wc-ink);
}

.foot-logo {
  font-size: clamp(36px, 5vw, 52px);
}

/* Dark venue keeps its copper atmosphere. */
body.dark {
  background:
    radial-gradient(circle at 12% 18%, rgba(194, 119, 63, .08), transparent 27rem),
    var(--espresso);
}

body.dark .site-masthead {
  border-color: rgba(194, 119, 63, .25);
  background: rgba(22, 15, 10, .82);
}

body.dark .masthead-concierge,
body.dark .wafloat {
  background: var(--copper);
}

body.dark .language-toggle span {
  color: var(--copper-lt);
}

body.dark .langbar {
  border-color: rgba(194, 119, 63, .3) !important;
  background: rgba(22, 15, 10, .97) !important;
}

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

  .site-nav {
    position: fixed;
    top: 95px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 16px;
    border: 1px solid rgba(202, 168, 91, .22);
    border-radius: var(--wc-radius);
    background: rgba(8, 24, 15, .97);
    box-shadow: var(--wc-shadow-deep);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    padding: 15px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: 14px;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

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

  .home-page .tl,
  .home-page .tl:nth-child(4),
  .home-page .tl:nth-child(7) {
    grid-column: auto;
    border-right: 1px solid var(--wc-line);
    border-bottom: 1px solid var(--wc-line);
  }

  .home-page .tl:nth-child(even) {
    border-right: 0;
  }

  .home-page .tl:nth-child(7) {
    grid-column: 1 / 3;
    border-right: 0;
    border-bottom: 0;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 90px;
  }

  .site-masthead {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 62px;
    gap: 8px;
    padding: 8px 8px 8px 14px;
  }

  .brand-mark {
    width: 29px;
    height: 29px;
    flex-basis: 29px;
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-kicker {
    font-size: 7px;
  }

  .language-toggle {
    width: 42px;
    padding: 0;
    font-size: 0;
  }

  .language-toggle::before {
    content: "文";
    font-size: 13px;
  }

  .language-toggle span {
    display: none;
  }

  .masthead-concierge {
    display: none;
  }

  .site-nav {
    top: 82px;
    left: 10px;
    right: 10px;
  }

  .langbar {
    top: 82px !important;
    right: 10px !important;
    left: 10px !important;
    width: auto !important;
  }

  .home-page .hero {
    min-height: 650px;
    padding: 128px 0 88px;
  }

  .home-page .hero-inner {
    width: calc(100% - 40px);
  }

  .home-page .hero h1 {
    font-size: clamp(58px, 20vw, 88px);
  }

  .home-page .hero-sub {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-primary,
  .hero-secondary {
    width: 100%;
  }

  .hero-trust {
    gap: 8px 18px;
    font-size: 8.5px;
  }

  .home-page .hero-scroll {
    display: none;
  }

  .home-page .intro::before {
    top: 34px;
  }

  .home-page .timeline {
    grid-template-columns: 1fr;
  }

  .home-page .tl,
  .home-page .tl:nth-child(even),
  .home-page .tl:nth-child(7) {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--wc-line);
  }

  .home-page .tl:last-child {
    border-bottom: 0;
  }

  .concierge-cta {
    margin-top: -24px !important;
    margin-bottom: 64px !important;
  }

  .home-page .scene {
    border-radius: 18px;
  }

  .home-page .scene-media {
    min-height: 330px;
  }

  .home-page .scene-body {
    padding: 34px 26px;
  }

  body:not(.home-page) .crumb {
    padding-top: 94px;
  }

  body:not(.home-page) .vhero {
    min-height: 500px;
    height: 68svh;
    border-radius: 0 0 24px 24px;
  }

  body:not(.home-page) .vhero-in h1 {
    font-size: clamp(44px, 15vw, 68px);
  }

  body:not(.home-page) .vhero-in {
    padding-bottom: 40px;
  }

  body:not(.home-page) .vbody {
    padding-left: 22px;
    padding-right: 22px;
  }

  .article {
    padding-top: 132px;
  }

  .wafloat {
    right: 12px;
    bottom: 76px;
    min-width: 120px;
    height: 48px;
    padding: 0 15px;
  }

  .sticky + .wafloat,
  .sticky ~ .wafloat {
    bottom: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .hero-bg {
    transform: none !important;
    will-change: auto !important;
  }
}
