:root {
  --ink: #102039;
  --ink-soft: #4f6075;
  --sea: #0b8b7d;
  --sea-deep: #066056;
  --sun: #ff875e;
  --gold: #dba55a;
  --sand: #f7f1e7;
  --line: rgba(16, 32, 57, 0.08);
  --shadow: 0 24px 60px rgba(16, 32, 57, 0.12);
  --shadow-soft: 0 16px 40px rgba(16, 32, 57, 0.08);
  --max: 1200px;
  --font-body: "Noto Sans JP", sans-serif;
  --font-display: "Zen Maru Gothic", sans-serif;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 118px;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% 0%, rgba(11, 139, 125, 0.18), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(255, 135, 94, 0.14), transparent 28%),
    linear-gradient(180deg, #eef9f4 0%, #fffaf3 56%, #f5fbff 100%);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.24;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.54), transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  right: -120px;
  top: -80px;
  width: 520px;
  height: 520px;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 135, 94, 0.14), transparent 72%);
  filter: blur(12px);
}

body.lang-ja {
  --font-body: "Noto Sans JP", sans-serif;
  --font-display: "Zen Maru Gothic", sans-serif;
}

body.lang-th {
  --font-body: "Noto Sans Thai", sans-serif;
  --font-display: "Noto Sans Thai", sans-serif;
}

body.lang-en {
  --font-body: "Manrope", sans-serif;
  --font-display: "Fraunces", serif;
}

body.hub-page {
  padding-bottom: 40px;
}

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

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

.sample-ribbon {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 16px;
  background: linear-gradient(90deg, #12223d, #0b8b7d);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-shell {
  padding-top: 40px;
}

.topbar {
  position: sticky;
  top: 38px;
  z-index: 999;
  transition: all 0.35s ease;
}

body.scrolled .topbar {
  top: 10px;
}

body.scrolled .nav-shell {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(16, 32, 57, 0.12);
}

.nav-shell {
  max-width: calc(var(--max) + 48px);
  margin: 18px auto 0;
  padding: 0 24px;
}

.nav {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

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

.nav-panel {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(16, 32, 57, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(16, 32, 57, 0.1);
  cursor: pointer;
}

.nav-toggle-icon {
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  transition: color 0.25s ease, transform 0.25s ease;
}

.brand-mark {
  flex: none;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--sea), #36c2b2 76%);
  color: #fff;
  font-weight: 900;
  font-family: var(--font-display);
  box-shadow: 0 16px 32px rgba(11, 139, 125, 0.25);
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.brand-copy span {
  display: block;
  font-size: 12px;
  color: var(--ink-soft);
}

.nav-links {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 13px;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--sea), transparent);
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-tools {
  display: flex;
  flex-wrap: nowrap;
  flex: none;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.lang-switcher {
  display: inline-flex;
  flex: none;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(16, 32, 57, 0.06);
  border-radius: 999px;
  background: rgba(16, 32, 57, 0.06);
}

.lang-switcher a {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
}

.lang-switcher a.active {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 18px rgba(16, 32, 57, 0.14);
}

.nav-cta {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(16, 32, 57, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(16, 32, 57, 0.24);
}

.hero {
  padding: 70px 24px 44px;
}

.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 28px;
  align-items: center;
}

.eyebrow,
.section-label,
.stage-tag,
.schedule-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(11, 139, 125, 0.08);
  color: var(--sea-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(11, 139, 125, 0.12);
  box-shadow: var(--shadow-soft);
}

.hero-copy h1 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-copy h1 .accent {
  position: relative;
  display: inline-block;
  color: var(--sea-deep);
}

.hero-copy h1 .accent::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.06em;
  height: 0.28em;
  z-index: -1;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(11, 139, 125, 0.12), rgba(255, 135, 94, 0.16));
}

.hero-copy .lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.9;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 22px;
  border: 1px solid transparent;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--sea-deep), var(--sea));
  color: #fff;
  box-shadow: 0 18px 32px rgba(11, 139, 125, 0.22);
}

.btn-secondary {
  border-color: rgba(16, 32, 57, 0.08);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

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

.proof-chip {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.proof-chip strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.proof-chip span {
  display: block;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.7;
}

.hero-stage {
  position: relative;
  min-height: 640px;
  isolation: isolate;
}

.hero-photo-wall {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-photo,
.experience-media {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 32px;
  background: #dce9e4;
  box-shadow: 0 28px 58px rgba(16, 32, 57, 0.18);
}

.hero-photo::after,
.experience-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(16, 32, 57, 0.12));
}

.hero-photo img,
.experience-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-photo-main {
  top: 108px;
  left: 18px;
  width: 350px;
  height: 430px;
  transform: rotate(-6deg);
}

.hero-photo-secondary {
  top: 18px;
  right: 52px;
  width: 238px;
  height: 188px;
  transform: rotate(4deg);
}

.hero-photo-tertiary {
  right: 10px;
  bottom: 42px;
  width: 224px;
  height: 164px;
  transform: rotate(5deg);
}

.stage-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  animation: drift 12s ease-in-out infinite;
}

.stage-orb.one {
  top: 20px;
  right: 20px;
  width: 220px;
  height: 220px;
  background: rgba(11, 139, 125, 0.16);
}

.stage-orb.two {
  left: 20px;
  bottom: 80px;
  width: 180px;
  height: 180px;
  background: rgba(255, 135, 94, 0.16);
  animation-delay: -4s;
}

.stage-orb.three {
  right: 140px;
  bottom: 0;
  width: 120px;
  height: 120px;
  background: rgba(219, 165, 90, 0.18);
  animation-delay: -8s;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -18px, 0);
  }
}

.stage-panel,
.panel,
.pillar-card,
.treatment-card,
.quote-card,
.custom-card.light,
.lang-card {
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.stage-panel {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.stage-panel.main {
  width: min(100%, 430px);
  margin-left: auto;
  margin-top: 108px;
}

.stage-panel h2 {
  margin: 18px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  line-height: 1.08;
}

.stage-panel p,
.panel p,
.custom-card p,
.lang-card span {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.85;
}

.stage-list,
.promise-list,
.check-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.stage-item,
.promise-item,
.timeline-item,
.schedule-item,
.concierge-box {
  border: 1px solid rgba(16, 32, 57, 0.06);
  border-radius: 22px;
  background: rgba(246, 250, 251, 0.92);
}

.stage-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 14px 16px;
}

.stage-index {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ink), #2d4266);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.stage-item strong,
.promise-item strong,
.concierge-box strong,
.proof-chip strong,
.trust-pill strong {
  display: block;
}

.stage-item strong {
  margin-bottom: 2px;
  font-size: 14px;
}

.stage-item span,
.promise-item span,
.concierge-box p,
.quote-meta,
.lang-card em {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.7;
}

.floating-card {
  position: absolute;
  z-index: 3;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.floating-card small,
.lang-card small {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sea-deep);
}

.floating-card strong {
  display: block;
  font-size: 20px;
}

.floating-card p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.6;
}

.card-top {
  top: 28px;
  left: 8px;
  width: min(270px, 80%);
}

.card-bottom {
  bottom: 32px;
  left: 48px;
  width: min(300px, 82%);
}

.card-side {
  top: 232px;
  right: -72px;
  width: min(220px, 66%);
}

body:not(.hub-page) .card-side,
body:not(.hub-page) .card-bottom {
  display: none;
}

.trust-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.experience-rail {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 24px 0;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.92fr) minmax(0, 0.76fr);
  gap: 20px;
  align-items: stretch;
}

.experience-media {
  position: relative;
  min-height: 410px;
}

.experience-media-wide {
  min-height: 410px;
}

.experience-media-tall {
  min-height: 410px;
}

.experience-copy {
  padding: 30px 28px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(246, 250, 251, 0.96));
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-copy h3 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.experience-copy p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
}

.experience-points {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.experience-point {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(11, 139, 125, 0.08);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.75;
}

.photo-story {
  padding-top: 44px;
}

.scene-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
  grid-auto-rows: 220px;
  gap: 20px;
}

.scene-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 30px;
  background: #dce9e4;
  box-shadow: var(--shadow-soft);
}

.scene-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(16, 32, 57, 0.03) 34%, rgba(16, 32, 57, 0.68) 100%);
}

.scene-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.scene-card-feature {
  grid-row: span 2;
}

.scene-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 4px;
}

.scene-caption strong {
  color: #fff;
  font-size: 18px;
}

.scene-caption span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.6;
}

.trust-pill {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.trust-icon,
.treatment-icon,
.pillar-count {
  display: grid;
  place-items: center;
}

.trust-icon {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(11, 139, 125, 0.13), rgba(255, 135, 94, 0.16));
  font-size: 18px;
}

.trust-pill strong {
  font-size: 14px;
}

.trust-pill span {
  display: block;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.6;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 24px;
}

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

.section-heading.center {
  margin: 0 auto;
  text-align: center;
}

.section-heading h2 {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.9;
}

.pillar-grid,
.treatment-grid,
.quote-grid,
.lang-card-grid {
  margin-top: 34px;
  display: grid;
  gap: 20px;
}

.pillar-grid,
.quote-grid,
.lang-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pillar-card,
.treatment-card,
.quote-card,
.lang-card {
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.pillar-count {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ink), #2d4266);
  color: #fff;
  font-weight: 900;
}

.pillar-card h3,
.treatment-card h3,
.quote-card h3,
.case-header h3,
.panel h3,
.custom-card h3 {
  margin: 0;
  line-height: 1.4;
}

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

.pillar-card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.85;
}

.signature-grid,
.support-grid,
.custom-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 24px;
  align-items: start;
}

.panel {
  padding: 30px;
}

.case-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.case-header h3,
.panel h3,
.custom-card h3 {
  font-size: 24px;
}

.case-header p,
.panel p + p {
  margin-top: 8px;
}

.case-badge {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 139, 125, 0.1);
  color: var(--sea-deep);
  font-size: 12px;
  font-weight: 800;
}

.timeline,
.schedule-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(248, 252, 252, 0.98), rgba(255, 255, 255, 0.86));
}

.timeline-day {
  width: 74px;
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 8px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--sea-deep), var(--sea));
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.timeline-item h4,
.schedule-item h4 {
  margin: 0;
  font-size: 16px;
}

.timeline-item p,
.schedule-item p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.promise-item {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
}

.promise-item strong,
.schedule-item h4,
.concierge-box strong {
  font-size: 15px;
}

.promise-item span,
.concierge-box p {
  font-size: 13px;
  line-height: 1.75;
}

.treatment-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.treatment-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.treatment-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--sea), rgba(255, 135, 94, 0.55));
}

.treatment-icon {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(11, 139, 125, 0.13), rgba(255, 135, 94, 0.16));
  font-size: 24px;
}

.treatment-card h3 {
  margin-top: 16px;
  font-size: 20px;
}

.treatment-card p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.8;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.price-main {
  color: var(--sea-deep);
  font-size: 26px;
  font-weight: 900;
}

.price-sub {
  color: var(--ink-soft);
  font-size: 12px;
  text-decoration: line-through;
}

.save-pill {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(219, 165, 90, 0.18);
  color: #8b5a19;
  font-size: 12px;
  font-weight: 800;
}

.comparison-panel {
  margin-top: 28px;
}

.table-wrap {
  overflow: auto;
  margin-top: 20px;
}

.comparison-table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  text-align: left;
  font-size: 14px;
}

.comparison-table thead th {
  background: var(--ink);
  color: #fff;
}

.comparison-table thead th:first-child {
  border-top-left-radius: 18px;
}

.comparison-table thead th:last-child {
  border-top-right-radius: 18px;
}

.comparison-table tbody tr:nth-child(odd) td {
  background: rgba(255, 255, 255, 0.9);
}

.comparison-table tbody tr:nth-child(even) td {
  background: rgba(246, 250, 251, 0.9);
}

.comparison-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 18px;
}

.comparison-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 18px;
}

.comparison-table td.win {
  color: var(--sea-deep);
  font-weight: 900;
}

.caption {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.7;
}

.schedule-card {
  display: grid;
  gap: 16px;
}

.schedule-list {
  margin-top: 6px;
}

.schedule-item {
  position: relative;
  padding: 18px 18px 18px 62px;
}

.schedule-item::before {
  content: attr(data-day);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.concierge-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.concierge-box {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 250, 251, 0.92));
}

.quote-card .stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.24em;
}

.quote-card p {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.9;
}

.quote-meta {
  margin-top: 18px;
}

.faq-list {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 22px 56px 22px 24px;
  font-size: 16px;
  font-weight: 800;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 18px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(11, 139, 125, 0.1);
  color: var(--sea-deep);
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.85;
}

.custom-card {
  border-radius: 30px;
  padding: 30px;
}

.custom-card:not(.light) {
  background: linear-gradient(180deg, rgba(16, 32, 57, 0.96), rgba(11, 139, 125, 0.94));
  color: #fff;
  box-shadow: 0 30px 60px rgba(16, 32, 57, 0.16);
}

.custom-card:not(.light) p {
  color: rgba(255, 255, 255, 0.78);
}

.custom-card.light {
  box-shadow: var(--shadow);
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.8;
}

.check-item::before {
  content: "✓";
  flex: none;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 900;
}

.custom-card.light .check-item::before {
  background: rgba(11, 139, 125, 0.12);
  color: var(--sea-deep);
}

.custom-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 20px;
  font-size: 13px;
  line-height: 1.75;
}

.custom-card:not(.light) .custom-note {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

.custom-card.light .custom-note {
  background: rgba(11, 139, 125, 0.08);
  color: var(--ink-soft);
}

.lang-card {
  display: block;
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lang-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.lang-card strong {
  display: block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.2;
}

.lang-card span {
  margin-top: 10px;
  display: block;
  font-size: 14px;
  line-height: 1.8;
}

.lang-card em {
  display: inline-flex;
  margin-top: 18px;
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(11, 139, 125, 0.98), rgba(16, 32, 57, 0.96));
  color: #fff;
  box-shadow: 0 30px 60px rgba(16, 32, 57, 0.18);
}

.cta-panel::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
}

.cta-panel h2 {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.cta-panel p {
  position: relative;
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.9;
}

.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 24px 140px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.8;
}

body.hub-page .footer {
  padding-bottom: 60px;
}

.footer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.sticky-dock {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 998;
}

.sticky-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(16, 32, 57, 0.92);
  box-shadow: 0 24px 48px rgba(16, 32, 57, 0.22);
  backdrop-filter: blur(20px);
}

.sticky-copy {
  display: grid;
  gap: 4px;
}

.sticky-copy strong {
  color: #9cecdf;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sticky-copy span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.6;
}

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

.sticky-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 13px 18px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.25s ease;
}

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

.sticky-btn.primary {
  background: #fff;
  color: var(--ink);
}

.sticky-btn.secondary {
  background: linear-gradient(135deg, rgba(11, 139, 125, 0.92), rgba(255, 135, 94, 0.9));
  color: #fff;
}

.sample-toast {
  position: fixed;
  right: 16px;
  bottom: 104px;
  z-index: 999;
  width: min(360px, calc(100vw - 32px));
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(16, 32, 57, 0.94);
  color: #fff;
  box-shadow: 0 24px 48px rgba(16, 32, 57, 0.22);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.sample-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.sample-toast strong {
  display: block;
  margin-bottom: 8px;
  color: #9cecdf;
  font-size: 14px;
}

.sample-toast span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.75;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero-grid,
  .signature-grid,
  .support-grid,
  .custom-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .scene-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 240px;
  }

  .scene-card-feature {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

  .hero-stage {
    min-height: unset;
    display: grid;
    gap: 16px;
  }

  .hero-photo-wall {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .hero-photo {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: auto;
    transform: none;
  }

  .hero-photo-main {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
  }

  .hero-photo-secondary,
  .hero-photo-tertiary {
    aspect-ratio: 4 / 3;
  }

  .stage-panel.main {
    width: 100%;
    margin-top: 0;
  }

  .card-side,
  .card-top,
  .card-bottom {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 16px;
  }

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

  .experience-media {
    min-height: 320px;
  }

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

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

@media (max-width: 820px) {
  body {
    padding-bottom: 134px;
  }

  .nav {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .nav-panel {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(16, 32, 57, 0.08);
  }

  .nav.is-open .nav-panel {
    display: grid;
  }

  .nav.is-open .nav-toggle {
    background: var(--ink);
  }

  .nav.is-open .nav-toggle-icon {
    color: #fff;
    transform: rotate(90deg);
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
  }

  .nav-links a {
    width: 100%;
    padding: 10px 0;
  }

  .nav-tools {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  .hero-copy .lead {
    font-size: 16px;
  }

  .hero-proof,
  .trust-strip,
  .pillar-grid,
  .treatment-grid,
  .concierge-grid,
  .lang-card-grid,
  .scene-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    padding: 16px 24px 0;
  }

  .experience-rail {
    padding: 12px 24px 0;
  }

  .panel,
  .pillar-card,
  .treatment-card,
  .quote-card,
  .custom-card,
  .lang-card {
    padding: 24px;
  }

  .experience-copy {
    padding: 26px 24px;
  }

  .sticky-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .sticky-actions {
    width: 100%;
  }

  .sticky-btn {
    min-width: 0;
    flex: 1;
  }

  .sample-toast {
    left: 16px;
    right: 16px;
    width: auto;
    bottom: 124px;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    padding: 0 16px;
  }

  .nav {
    padding: 14px 14px 16px;
    border-radius: 22px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .lang-switcher {
    width: 100%;
    justify-content: space-between;
  }

  .lang-switcher a {
    flex: 1;
    text-align: center;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .section {
    padding: 76px 20px;
  }

  .hero {
    padding: 42px 20px 32px;
  }

  .hero-grid {
    gap: 20px;
  }

  .eyebrow,
  .section-label,
  .stage-tag,
  .schedule-chip {
    font-size: 11px;
  }

  .experience-rail {
    padding: 10px 20px 0;
  }

  .stage-panel h2,
  .section-heading h2,
  .experience-copy h3 {
    font-size: 2rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px 14px;
    font-size: 13px;
  }

  .footer {
    padding: 20px 20px 146px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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