/* ============================================================
   THE SALON by HOGUGU — Salon landing page
   ============================================================ */

:root {
  --bg-page: #eeeeee;
  --bg-white: #ffffff;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --yellow: #ffed4f;
  --green: #99ff7c;
  --dark: #333333;
  --line: rgba(0, 0, 0, 0.12);

  --font: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;

  --pad-x: clamp(20px, 5vw, 96px);
  --header-h: 84px;
  --header-h-expanded: 216px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

svg {
  display: block;
}

.container-full {
  max-width: 1600px;
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.round-arrow {
  flex: none;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.round-arrow img {
  width: 100%;
  height: 100%;
}

.round-arrow--sm {
  width: 28px;
  height: 28px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg-page);
  transition: background .3s ease, box-shadow .3s ease;
}

/* ---- Trạng thái mặc định (đầu trang, 2 hàng) ---- */
.site-header__top {
  max-width: 1600px;
  margin: 0 auto;
  padding: 28px var(--pad-x) 0;
}

.site-header__top-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 16px;
  margin-bottom: 18px;
}

.breadcrumb {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  justify-self: start;
}

.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-header__logo {
  justify-self: center;
  display: flex;
}

.header-logo-img {
  width: 330px;
  height: auto;
}

.site-header__cta {
  justify-self: end;
  padding: 14px 22px;
  font-size: 12.5px;
  line-height: 1.5;
  text-align: left;
  transition: background-color .3s ease, color .3s ease;
}

.btn.site-header__cta {
  border: 5px solid var(--ink);
}

.site-header__cta:hover {
  background: var(--ink);
  color: #fff;
}

.site-header__cta .round-arrow {
  position: relative;
}

.site-header__cta .round-arrow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity .3s ease;
}

.site-header__cta .round-arrow__hover {
  opacity: 0;
}

.site-header__cta:hover .round-arrow__default {
  opacity: 0;
}

.site-header__cta:hover .round-arrow__hover {
  opacity: 1;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  padding-bottom: 18px;
}

.site-header__nav a {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--ink);
  transition: opacity .2s ease;
}

.site-header__nav a:hover {
  opacity: .6;
}

/* ---- Submenu (dropdown) cho プラン・ご利用方法 ---- */
.site-header__nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.site-header__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  background: #fff;
  border-radius: 0 8px 8px 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
  padding: 6px 0;
  min-width: 190px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 150;
}

.site-header__nav-item:hover .site-header__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-header__submenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--ink);
}

.site-header__submenu a:hover {
  opacity: 1;
  background: #f5f5f5;
}

.site-header__submenu-arrow {
  font-size: 13px;
}

.site-header__nav--compact .site-header__submenu a {
  color: var(--ink);
}

/* ---- Trạng thái thu gọn khi cuộn (1 hàng, nền tối) ---- */
.site-header__compact {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: var(--header-h);
}

.header-logo-img--compact {
  width: 120px;
}

.site-header__nav--compact {
  justify-content: flex-end;
  flex: 1;
}

.site-header__nav--compact a {
  color: #fff;
}

.site-header.is-scrolled {
  background: var(--dark);
  box-shadow: 0 2px 14px rgba(0, 0, 0, .15);
}

.site-header.is-scrolled .site-header__top {
  display: none;
}

.site-header.is-scrolled .site-header__compact {
  display: flex;
}

.hamburger {
  display: none;
  flex: none;
  width: 34px;
  height: 24px;
  border: none;
  background: transparent;
  padding: 0;
  position: absolute;
  top: 24px;
  right: var(--pad-x);
}

.hamburger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ink);
  transition: background .3s ease;
}

.hamburger span:nth-child(1) {
  top: 2px;
}

.hamburger span:nth-child(2) {
  bottom: 2px;
}

.site-header.is-scrolled .hamburger {
  top: 50%;
  margin-top: -12px;
}

.site-header.is-scrolled .hamburger span {
  background: #fff;
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 200;
  padding: 28px var(--pad-x) 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s ease;
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__close {
  align-self: flex-end;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu__close svg {
  width: 24px;
  height: 24px;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 24px;
}

.mobile-menu__nav a {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.mobile-menu__cta {
  width: 330px;
  margin: 36px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
}

.round-arrow--dark {}

.round-arrow--dark img {}

body.menu-open {
  overflow: hidden;
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
main {
  padding-top: var(--header-h-expanded);
}

section {
  padding: 72px var(--pad-x);
  position: relative;
}

.section-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.section-tag--right {
  text-align: right;
}

.section-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 28px;
}

.section-title span {
  font-weight: 500;
  font-size: .55em;
}

.ribbon-title {
  display: inline-block;
  background: var(--yellow);
  padding: 18px 34px;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 28px;
  border-radius: 4px;
}

.ribbon-title--sm {
  font-size: clamp(18px, 2vw, 24px);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: 999px;
}

.btn--pill {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn--dark {
  background: var(--ink);
  color: #fff;
}

.btn--dark .round-arrow {}

.btn--dark .round-arrow img {}

.btn--pill .round-arrow {}

.btn--pill .round-arrow img {}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  margin-top: 28px;
}

.link-more .round-arrow {}

.link-more .round-arrow img {}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
}

.hero__title {
  font-size: clamp(22px, 3.4vw, 36px);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 48px;
  max-width: 760px;
}

/* ---- avatar row + yellow wave ---- */
.hero__avatars-wrap {
  position: relative;
  padding-top: 70px;
  margin-bottom: 56px;
}

.hero__wave {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 34px;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  height: auto;
  z-index: 0;
}

.hero__avatars {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.hero__avatar {
  flex: none;
  display: block;
  width: 150px;
  height: 150px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
  position: relative;
}

.hero__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__avatar:nth-child(1) {
  transform: translateY(-6px);
}

.hero__avatar:nth-child(2) {
  transform: translateY(-46px);
}

.hero__avatar:nth-child(3) {
  transform: translateY(-2px);
}

.hero__avatar:nth-child(4) {
  transform: translateY(-40px);
}

.hero__avatar:nth-child(5) {
  transform: translateY(6px);
}

.hero__avatar--lead {
  width: 200px;
  height: 200px;
  transform: translateY(-70px);
}

.hero__avatar:nth-child(7) {
  transform: translateY(10px);
}

.speech-bubble {
  position: absolute;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 14px solid var(--ink);
}

.hero__bubble {
  left: 50%;
  bottom: 100%;
  transform: translateX(-42%);
  margin-bottom: 18px;
  min-width: 250px;
  height: 130px;
  font-size: 13px;
  padding: 18px 20px;
  border-radius: 150px;
}

/* ---- news box ---- */
.hero__news {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 4px;
  margin-bottom: 14px;
  max-width: 870px;
  margin-left: auto;
}

.hero__news-body {
  flex: 1;
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero__news-title {
  font-size: 14.5px;
  font-weight: 700;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.hero__news-desc {
  font-size: 13px;
  color: var(--ink-soft);
}

.hero__news-label {
  flex: none;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: .1em;
}

.hero__news-more {
  display: flex;
  justify-content: flex-end;
  max-width: 870px;
  margin-top: 0;
  margin-left: auto;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--bg-page);
}

.section-title--boxed {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 32px;
  position: relative;
  z-index: 5;
}

.section-title--boxed .section-title__box {
  display: table;
  background: #fff;
  border: 6px solid var(--ink);
  padding: 16px 28px;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.2;
}

.section-title--boxed .section-title__box small {
  font-weight: 700;
  font-size: .32em;
  margin-left: 10px;
}

.section-title--boxed .section-title__box--sub {
  margin-top: -6px;
  position: relative;
}

.section-title--boxed .section-title__box--sub:before {
  content: '';
  display: inline-block;
  width: 100%;
  background: #fff;
  height: 10px;
  top: -8px;
  left: 0;
  position: absolute;
}

.section-title--boxed .section-title__box--sub.title-ver:before {
  width: 10px;
  height: 100%;
  top: 0;
  right: -8px;
}

.section-title--boxed .section-title__box--sub.title-ver2:before {
  display: none;
}

.section-title__box.title-ver3 {
  position: relative;
}

.section-title__box.title-ver3:before {
  content: '';
  display: inline-block;
  width: 10px;
  background: #fff;
  height: 100%;
  top: 0;
  left: -8px;
  position: absolute;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

.about__text p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.about__points {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0;
  font-weight: 700;
  font-size: 15px;
}

.about__points li {
  display: inline-flex;
  align-items: center;
  background: var(--yellow);
  padding: 10px 18px;
}

.about__check {
  color: var(--yellow);
  -webkit-text-stroke: 1.5px var(--ink);
  margin-right: 8px;
}

.about__video {
  position: relative;
  padding: 34px 24px 24px 0;
}

.about__video-dot {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
  z-index: 2;
}

.about__video-dot--1 {
  width: 18px;
  height: 18px;
  top: 12px;
  left: 58%;
}

.about__video-dot--2 {
  width: 11px;
  height: 11px;
  top: 52px;
  left: 70%;
}

.about__video-tag {
  top: -56px;
  right: 0;
  min-width: 210px;
  font-size: 13px;
  padding: 16px 22px;
  border-radius: 120px;
  z-index: 3;
}

.about__video-frame {
  position: relative;
}

.about__video-frame::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 16px;
  right: -16px;
  bottom: 16px;
  background: var(--yellow);
  border-radius: 6px;
  z-index: 0;
}

.about__video-box {
  position: relative;
  z-index: 1;
  aspect-ratio: 16/10;
  background: #bbb;
  border: 10px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  border-radius: 4px;
  overflow: hidden;
}

.about__video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.about__cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 26px;
}

.about__cards::before {
  content: "";
  position: absolute;
  top: 0;
  left: -14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
}

.about__card {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.about__card-tag {
  align-self: center;
  text-align: center;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  padding: 14px 36px;
  white-space: nowrap;
}

.about__card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 32px 28px 36px;
}

.about__card-body a {
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

.about__card-icon {
  width: 90px;
  height: 90px;
  margin: 8px 0 4px;
}

.about__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about__card h3 {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
}

.about__card p {
  font-size: 13px;
  color: var(--ink-soft);
  text-align: left;
  line-height: 1.85;
}

.about__card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 18px 26px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color .25s ease, color .25s ease;
}

.about__card-link:hover {
  background: var(--ink);
  color: #fff;
}

.about__card-link .arrow-down {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--ink);
  transition: color .25s ease;
}

.about__card-link .arrow-down svg {
  width: 100%;
  height: 100%;
  display: block;
}

.about__card-link:hover .arrow-down {
  color: #fff;
}

/* ============================================================
   PLAN SECTIONS (Hourly / Monthly)
   ============================================================ */
.plan-section {
  text-align: center;
  background: var(--bg-page);
}

.plan-section__desc {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

/* ---- Hourly: top heading (wave + vertical title) ---- */
.plan-hourly__top {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  min-height: 190px;
  margin-bottom: 36px;
}

.plan-hourly__wave {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  transform: translateY(-50%);
  height: auto;
  z-index: 0;
}

.plan-hourly__tag {
  position: relative;
  z-index: 1;
}

.plan-hourly__top .section-title--vertical {
  position: relative;
  z-index: 1;
}

.plan-section .plan-section__desc {
  text-align: left;
}

/* ---- Monthly: top heading (wave + vertical title) ---- */
.plan-monthly__top {
  position: relative;
  text-align: left;
  margin-bottom: 56px;
}

.plan-monthly__wave {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  transform: translateY(-50%);
  height: auto;
  z-index: 0;
}

.plan-monthly__heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 18px;
}

.plan-monthly__heading .plan-section__desc {
  margin: 0;
}

.section-title--vertical {
  display: inline-flex;
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 0;
}

.section-title--vertical .section-title__box {
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: .25em;
  padding: 22px 16px;
  font-size: 46px;
}

.section-title--vertical .section-title__box--sub {
  margin-top: 0;
  margin-right: -6px;
}

.price-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 24px;
  width: 780px;
  max-width: 100%;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 32px 40px;
  margin-bottom: 56px;
  font-weight: 900;
}

.price-box__label {
  font-size: 15px;
  font-weight: 700;
}

.price-box__amount {
  font-size: 42px;
}

.price-box__amount small {
  font-size: 15px;
  font-weight: 700;
}

.price-box__unit {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ---- step carousel ---- */
.step-carousel {
  text-align: left;
}

.step-carousel__viewport {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
}

.step-carousel__track {
  display: flex;
  align-items: stretch;
  gap: 40px;
  transition: transform .45s cubic-bezier(.3, .8, .3, 1);
}

.step-card {
  position: relative;
  flex: 0 0 310px;
  background: #fff;
  padding: 38px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.step-card.step-card--sm {
  flex-basis: 240px;
}

.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 28px;
  height: 78px;
  transform: translateY(-50%);
  background: url("../assets/img/icon-ar-step.svg") no-repeat center / contain;
}

.step-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 0 22px;
  border-radius: 50px;
  white-space: nowrap;
}

.step-card__badge b {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.step-card h4 {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.5;
  min-height: 44px;
  margin-top: 8px;
}

.step-card h4 small {
  font-weight: 600;
  font-size: 12px;
  display: block;
  margin-top: 2px;
}

.step-card p {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  text-align: left;
}

.step-card__img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.plan-section .step-card__img {
  min-height: 160px;
}

.step-card__img img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.step-card__img--shadow img {
  box-shadow: 0 10px 24px rgba(0, 0, 0, .14);
}

.step-card__img--qr {
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

img.step-card__qr {
  width: 64%;
  height: auto;
}

.step-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 10px 8px 16px;
  border-radius: 999px;
}

img.step-card__cta-icon {
  width: 20px;
  height: 20px;
}

.step-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 420px;
  margin: 32px auto 0;
}

.carousel-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background .2s ease, color .2s ease;
}

.carousel-arrow:hover {
  background: var(--ink);
  color: #fff;
}

.carousel-arrow svg {
  width: 16px;
  height: 16px;
}

.step-carousel__arrows {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step-carousel__arrows .carousel-arrow {
  width: 56px;
  height: 56px;
  border: none;
  background: var(--ink);
  color: #fff;
}

.step-carousel__arrows .carousel-arrow:hover {
  background: var(--ink-soft);
}

.step-carousel__arrows .carousel-arrow svg {
  width: 22px;
  height: 22px;
}

.step-carousel__dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.step-carousel__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  padding: 0;
}

.step-carousel__dots button.is-active {
  background: var(--ink);
  width: 22px;
  border-radius: 6px;
  transition: width .25s ease;
}

/* ============================================================
   MONTHLY PRICE GRID + MINI STEPS
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid var(--ink);
  margin-bottom: 56px;
}

.price-card {
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-right: 2px solid var(--ink);
}

.price-card:last-child {
  border-right: none;
}

.price-card__icon {
  width: 52px;
  height: 52px;
}

.price-card__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.price-card h4 {
  font-size: 22px;
  font-weight: 900;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 2px;
}

.price-card h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: var(--ink);
}

.price-card__time {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.price-card__note {
  font-size: 10px;
  color: var(--ink-soft);
  margin-left: 2px;
}

.price-card__amount {
  font-size: 28px;
  font-weight: 900;
  margin-top: 8px;
  white-space: nowrap;
}

.price-card__amount small {
  font-size: 13px;
  font-weight: 700;
  margin-left: 2px;
}

.mini-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.plan-monthly__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 120px;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  padding: 0 44px;
  transition: background .25s ease, color .25s ease;
}

.plan-monthly__cta:hover {
  background: var(--ink);
  color: #fff;
}

.plan-monthly__cta-icon {
  width: 70px;
  height: 70px;
  flex: none;
}

/* ============================================================
   FACILITIES
   ============================================================ */
.facilities {
  background: var(--bg-page);
  text-align: center;
  overflow: hidden;
}

.facilities__head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  margin-bottom: 64px;
}

.facilities__tag {
  margin-bottom: 10px;
}

.facilities__dot {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
}

.facilities__dot--1 {
  width: 30px;
  height: 30px;
  top: 18px;
  right: 30%;
}

.facilities__dot--2 {
  width: 18px;
  height: 18px;
  top: 78px;
  right: 24%;
}

.facilities__dot--3 {
  width: 14px;
  height: 14px;
  top: 170px;
  right: 35%;
}

.facility-carousel {
  position: relative;
  padding-top: 8px;
}

.facility-carousel__wave {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  transform: translateY(-50%);
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.facility-carousel__nav {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.facility-carousel__nav .carousel-arrow {
  width: 52px;
  height: 52px;
  border: none;
  background: var(--ink);
  color: #fff;
}

.facility-carousel__nav .carousel-arrow:hover {
  background: var(--ink-soft);
}

.facility-carousel__nav .carousel-arrow svg {
  width: 18px;
  height: 18px;
}

.facility-carousel__track {
  position: relative;
  z-index: 1;
  height: 420px;
  max-width: 1100px;
  margin: 0 auto;
  list-style: none;
}

.facility-carousel__track li {
  position: absolute;
  top: 0;
  left: 50%;
  width: 38%;
  margin-left: -19%;
  height: 100%;
  cursor: pointer;
  transition: transform .5s cubic-bezier(.3, .8, .3, 1);
}

.facility-carousel__track li.is-center {
  z-index: 2;
}

.facility-carousel__track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 10px solid #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
  display: block;
}

.facility-carousel__track span {
  position: absolute;
  left: 24px;
  bottom: 20px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
}

.facility-carousel__dots {
  justify-content: center;
  margin-top: 32px;
}

.facility-spec {
  position: relative;
  text-align: left;
  margin-top: 80px;
  border: 2px solid var(--ink);
  background: var(--bg-page);
}

.facility-spec__bubble {
  bottom: 100%;
  right: 48px;
  margin-bottom: 20px;
  min-width: 220px;
  height: 110px;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: 110px;
}

.facility-spec__row {
  display: flex;
  border-bottom: 2px solid var(--ink);
}

.facility-spec__row:last-child {
  border-bottom: none;
}

.facility-spec__label {
  flex: 0 0 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 2px solid var(--ink);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: .15em;
}

.facility-spec__label span {
  writing-mode: vertical-rl;
}

.facility-spec__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px 16px;
  padding: 36px 28px;
}

.facility-spec__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.facility-spec__item img {
  height: 64px;
  width: auto;
  max-width: 100%;
}

.facility-spec__item p {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.5;
}

/* ============================================================
   ACCESS
   ============================================================ */
.access {
  background: var(--bg-page);
  text-align: left;
}

.access__card {
  position: relative;
  display: flex;
  background: #fff;
}

.access__dot {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
}

.access__dot--1 {
  width: 26px;
  height: 26px;
  top: -96px;
  left: 20px;
}

.access__dot--2 {
  width: 18px;
  height: 18px;
  top: -32px;
  left: 56px;
}

.access__label {
  flex: 0 0 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: .12em;
}

.access__label span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.access__body {
  flex: 1;
  padding: 0 56px 44px 0;
  min-width: 0;
}

.access__map {
  margin-top: -64px;
  margin-left: auto;
  width: 750px;
  max-width: 100%;
  height: 300px;
  border-bottom: 14px solid var(--yellow);
  overflow: hidden;
}

.access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.access__info {
  padding-top: 28px;
}

.access__name {
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 14px;
}

.access__address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.8;
}

.access__pin {
  width: 14px;
  height: auto;
  flex: none;
  margin-top: 5px;
}

.access__address a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--bg-page);
  text-align: left;
}

.faq__layout {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  margin-bottom: 32px;
}

.faq__head {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: -72px;
}

.faq__list {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 24px;
}

.faq__item {
  background: #fff;
  border: 1px solid var(--ink);
}

.faq__summary {
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  color: inherit;
  text-align: left;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
}

.faq__icon {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
}

.faq__icon--q {
  background: var(--ink);
}

.faq__icon--a {
  background: #9a9a9a;
  margin-top: 2px;
}

.faq__question {
  flex: 1;
  line-height: 1.6;
}

.faq__toggle {
  flex: none;
  width: 18px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}

.faq__toggle::before {
  content: "+";
}

.faq__item.is-open .faq__toggle::before {
  content: "\2212";
}

.faq__answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.4, 0, .2, 1);
}

.faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px 26px;
  border-top: 1px solid var(--line);
}

.faq__answer p {
  font-size: 13px;
  line-height: 1.9;
  margin: 0;
}

/* ============================================================
   COLUMN
   ============================================================ */
.column {
  background: var(--bg-page);
  text-align: left;
}

.column__layout {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 56px;
}

.column__wave {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.column__head {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}

.column__content {
  position: relative;
  z-index: 1;
  flex: 0 0 730px;
  max-width: 100%;
  margin-left: auto;
  min-width: 0;
}

.column__list {
  display: flex;
  flex-direction: column;
}

.column-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--ink);
}

.column-row:first-child {
  border-top: 1px solid var(--ink);
}

.column-row img {
  flex: none;
  width: 170px;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.column-row__meta {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 700;
  margin-bottom: 10px;
}

.column-row__body h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.column__more {
  display: flex;
  width: fit-content;
  margin: 28px 0 0 auto;
  padding: 14px 24px 14px 28px;
  border-radius: 999px;
  background: transparent;
  transition: background-color .3s ease;
}

.column__more:hover {
  background: #fff;
}

/* ============================================================
   PARTNER CTA
   ============================================================ */
.partner-cta {
  background: var(--bg-page);
  text-align: center;
  padding-top: 190px;
}

.partner-cta__card {
  position: relative;
  background: #fff;
  padding: 64px 48px 56px;
}

.partner-cta__bubble-wrap {
  position: absolute;
  left: 0;
  bottom: 100%;
  margin-bottom: 26px;
}

.partner-cta__bubble {
  position: static;
  min-width: 230px;
  height: 104px;
  font-size: 14px;
  padding: 16px 20px;
  border-radius: 104px;
}

.partner-cta__dot {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
}

.partner-cta__dot--1 {
  width: 22px;
  height: 22px;
  top: -14px;
  right: 6px;
}

.partner-cta__dot--2 {
  width: 14px;
  height: 14px;
  top: -30px;
  right: 34px;
}

.partner-cta__x {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, 50%);
  width: 52px;
  height: auto;
  z-index: 2;
  display: block;
}

.partner-cta__eyebrow {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}

.partner-cta__title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  margin-bottom: 28px;
}

.partner-cta__desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.9;
  max-width: 740px;
  margin: 0 auto 48px;
}

.partner-cta__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.partner-cta__point {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: left;
}

.partner-cta__point-tag {
  align-self: center;
  text-align: center;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  padding: 12px 28px;
  white-space: nowrap;
}

.partner-cta__point-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 28px 24px 32px;
}

.partner-cta__point-icon {
  width: 80px;
  height: 80px;
  margin: 4px 0;
}

.partner-cta__point-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-cta__point h5 {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
}

.partner-cta__point p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.8;
  text-align: left;
}

.partner-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 26px 44px;
  font-weight: 700;
  font-size: 16px;
  transition: background .25s ease, color .25s ease;
}

.partner-cta__btn:hover {
  background: var(--ink);
  color: #fff;
}

.partner-cta__btn-title {
  text-align: left;
}

.partner-cta__btn-more {
  flex: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.partner-cta__note {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  text-align: center;
}

.site-footer__top {
  background: var(--bg-page);
  padding: 34px 0;
}

.site-footer__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
}

.site-footer__nav a {
  color: var(--ink);
}

.site-footer__nav a:hover {
  opacity: .6;
}

.back-to-top {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s ease;
}

.back-to-top:hover {
  background: var(--ink-soft);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

.site-footer__bottom {
  position: relative;
  background-image: url('../assets/img/footer.svg');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 120% auto;
  aspect-ratio: 1572 / 166;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--pad-x);
}

.site-footer__copy {
  position: relative;
  font-size: 12px;
  color: var(--ink);
  font-weight: 600;
}

.back-to-top--mobile {
  display: none;
  position: absolute;
  right: var(--pad-x);
  top: 50%;
  transform: translateY(-50%);
}

/* ============================================================
   MOBILE  (<= 900px)
   ============================================================ */
@media (max-width:900px) {
  :root {
    --header-h: 64px;
    --header-h-expanded: 64px;
  }

  .site-header__top-inner {
    grid-template-columns: 1fr;
  }

  .breadcrumb,
  .site-header__cta {
    display: none;
  }

  .site-header__top {
    padding: 14px 60px 0 20px;
  }

  .site-header__logo {
    justify-self: start;
  }

  .header-logo-img {
    width: 104px;
  }

  .site-header__nav {
    display: none;
  }

  .hamburger {
    display: block;
    top: 20px;
    right: 20px;
  }

  .site-header.is-scrolled .hamburger {
    top: 20px;
    margin-top: 0;
  }

  .site-header__nav--compact {
    display: none;
  }

  .header-logo-img--compact {
    width: 96px;
  }

  .site-footer__top {
    display: none;
  }

  .back-to-top--mobile {
    display: flex;
  }

  .site-footer__bottom {
    background-image: url('../assets/img/wave-footer.svg');
    background-size: 100% auto;
    aspect-ratio: 390 / 106;
    padding: 0 20px;
  }

  section {
    padding: 48px 20px;
  }

  .hero__title {
    font-size: 19px;
  }

  .section-title--boxed .section-title__box,
  .section-title--vertical .section-title__box {
    font-size: 22px;
  }

  .hero__title {
    margin-bottom: 20px;
  }

  .hero__avatars-wrap {
    margin: 0 -20px 20px;
    padding: 110px 20px 50px 20px;
    overflow: hidden;
  }

  /* Flexbox (space-between/flex-start) không đủ vì tổng chiều rộng 7 avatar
     (650px) luôn vượt quá viewport mobile (360-900px) — dùng absolute
     positioning neo vào left:50% của .hero__avatars để hero__avatar--lead
     luôn nằm giữa (lệch phải nhẹ) và các avatar khác hiện đối xứng 2 bên,
     không bao giờ để trống 1 bên khi viewport rộng hơn (thay vì translateX
     cố định trước đây, chỉ đúng ở 1 khoảng viewport hẹp). */
  .hero__avatars {
    position: relative;
    height: 150px;
  }

  .hero__avatar {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100px;
    height: 100px;
  }

  /* Chia đều avatar 2 bên lead (thay vì dồn hết 5 hình về bên trái như DOM
     order) để khi viewport rộng hơn (gần 900px) cả 2 bên đều có hình lấp
     đầy, không bị trống 1 bên. */
  .hero__avatar:nth-child(1) {
    transform: translate(calc(-50% + 397px), -3px);
  }

  .hero__avatar:nth-child(2) {
    transform: translate(calc(-50% + 283px), -23px);
  }

  .hero__avatar:nth-child(3) {
    transform: translate(calc(-50% - 337px), -1px);
  }

  .hero__avatar:nth-child(4) {
    transform: translate(calc(-50% - 223px), -20px);
  }

  .hero__avatar:nth-child(5) {
    transform: translate(calc(-50% - 109px), 3px);
  }

  .hero__avatar--lead {
    width: 150px;
    height: 150px;
    transform: translate(calc(-50% + 30px), -10px);
  }

  .hero__avatar:nth-child(7) {
    transform: translate(calc(-50% + 169px), 5px);
  }

  .hero__bubble {
    font-size: 10px;
    padding: 10px 12px;
    width: 130px;
    min-width: 0;
    height: auto;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 36px;
  }

  .about__cards {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mini-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-monthly__heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .plan-monthly__cta {
    height: auto;
    min-height: 88px;
    flex-wrap: wrap;
    padding: 16px 24px;
    font-size: 15px;
    text-align: center;
  }

  .plan-monthly__cta-icon {
    width: 48px;
    height: 48px;
  }

  .facilities__head {
    margin-bottom: 48px;
  }

  .facilities__dot--1 {
    left: auto;
    right: 60px;
  }

  .facilities__dot--2 {
    left: auto;
    right: 30px;
  }

  .facilities__dot--3 {
    display: none;
  }

  .facility-carousel__track {
    height: 280px;
  }

  .facility-carousel__track li {
    width: 78%;
    margin-left: -39%;
  }

  .step-card {
    flex-basis: 72vw;
  }

  .facility-spec__row {
    flex-direction: column;
  }

  .facility-spec__label {
    flex: none;
    border-right: none;
    border-bottom: 2px solid var(--ink);
    padding: 12px 0;
  }

  .facility-spec__label span {
    writing-mode: horizontal-tb;
  }

  .facility-spec__grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 24px 16px;
    gap: 24px 10px;
  }

  .facility-spec__item img {
    height: 48px;
    width: auto;
  }

  .facility-spec__bubble {
    right: 0;
  }

  .access__card {
    flex-direction: column;
  }

  .access__label {
    flex: none;
    padding: 16px 0;
  }

  .access__label span {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .access__body {
    padding: 0 20px 28px;
  }

  .access__map {
    margin-top: 0;
  }

  .access__dot {
    display: none;
  }

  .faq__layout {
    flex-direction: column;
  }

  .faq__head {
    order: -1;
    align-items: flex-start;
    width: 100%;
    margin-top: 0;
    margin-bottom: 24px;
  }

  .faq__head span.section-title__box {
    writing-mode: horizontal-tb;
  }

  .faq__list {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .column__layout {
    flex-direction: column;
  }

  .column__head span.section-title__box {
    writing-mode: horizontal-tb;
  }

  .column__content {
    flex-basis: auto;
    width: 100%;
    margin-left: 0;
  }

  .column-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .column-row img {
    width: 100%;
  }

  .partner-cta {
    padding-top: 220px;
  }

  .partner-cta__bubble-wrap {
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 20px;
  }

  .partner-cta__bubble {
    min-width: 0;
    width: 230px;
    height: auto;
    font-size: 13px;
    padding: 14px 18px;
  }

  .partner-cta__x {
    left: 50%;
    bottom: 100%;
    margin-bottom: 150px;
    transform: translateX(-50%);
  }

  .partner-cta__card {
    padding: 40px 20px;
  }

  .partner-cta__points {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .partner-cta__btn {
    width: 100%;
    gap: 12px;
    padding: 20px 26px;
  }

  .partner-cta__btn-title {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 15px;
    line-height: 1.5;
  }

  .ribbon-title {
    padding: 14px 24px;
  }

  .btn {
    font-size: 13.5px;
    padding: 14px 20px;
    text-align: left;
  }

  .partner-cta__btn-more {
    font-size: 11px;
  }
}

/* ============================================================
   PAGE ARTICLE & COLUMN HEAD (Legal, Terms, Cookie pages for Salon)
   ============================================================ */
.page-article {
  background-color: #fff;
  padding: 40px 0 100px;
}

.page-article__back {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin: 64px 0;
  text-decoration: none;
}

.page-article__head,
.column-list__head {
  position: relative;
  padding-left: 24px;
  margin-bottom: 40px;
}

.page-article__head::before,
.column-list__head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: var(--ink);
}

.page-article__head .section-title,
.column-list__head .c-section-title {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 900;
  margin: 0;
}

.page-article__body {
  max-width: 800px;
  margin: 0 auto;
}

.page-article__body p {
  font-size: 15px;
  line-height: 2;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.page-article__subtitle {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 30px 0 15px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.page-article__date {
  text-align: left;
  font-size: 15px;
  color: var(--ink-soft);
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .page-article {
    padding: 24px 0 60px;
  }

  .page-article__head,
  .column-list__head {
    margin-bottom: 28px;
  }

  .page-article__body p {
    font-size: 14px;
  }

  .page-article__subtitle {
    font-size: 16px;
  }

  .page-article__back {
    margin: 40px 0;
  }
}