/* ============================================================
   THE SALON by HOGUGU — Customer landing page
   ============================================================ */
:root {
  --cream: #f6efe7;
  --orange: #ef7c2e;
  --orange-soft: #f39a52;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --white: #ffffff;
  --green-line: #06c755;

  --font: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --pad-x: clamp(20px, 5vw, 96px);
  --header-h: 100px;
  --header-h-compact: 76px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ============================================================
   HEADER
   ============================================================ */
.c-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  transition: box-shadow .3s ease;
}

.c-header.is-scrolled {
  box-shadow: 0 2px 14px rgba(0, 0, 0, .08);
}

.c-header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 26px var(--pad-x);
  transition: padding .3s ease;
}

.c-header.is-scrolled .c-header__inner {
  padding-top: 14px;
  padding-bottom: 14px;
}

.c-header__logo {
  flex: none;
  display: flex;
}

.c-header__logo img {
  width: 180px;
  height: auto;
}

.c-header__desc {
  flex: none;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
  white-space: nowrap;
  border-left: 1px solid var(--ink);
  padding-left: 20px;
  max-width: 280px;
  transition: opacity .25s ease, max-width .25s ease, margin .25s ease;
  overflow: hidden;
}

.c-header.is-scrolled .c-header__desc {
  opacity: 0;
  max-width: 0;
  padding-left: 0;
  border-left: none;
}

.c-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 40px);
  margin-left: auto;
}

.c-header__nav a {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity .2s ease;
}

.c-header__nav a:hover {
  opacity: .6;
}

.c-hamburger {
  display: none;
  flex: none;
  width: 32px;
  height: 22px;
  position: relative;
  margin-left: auto;
}

.c-hamburger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ink);
}

.c-hamburger span:nth-child(1) {
  top: 1px;
}

.c-hamburger span:nth-child(2) {
  bottom: 1px;
}

.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;
}

.round-arrow {
  flex: none;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.round-arrow img {
  width: 100%;
  height: 100%;
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.c-mobile-menu {
  position: fixed;
  inset: 0;
  background: #5c4632;
  color: #fff;
  z-index: 200;
  padding: 26px var(--pad-x) 56px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s ease;
}

.c-mobile-menu.is-open {
  transform: translateX(0);
}

.c-mobile-menu__close {
  align-self: flex-end;
  width: 36px;
  height: 36px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-mobile-menu__close svg {
  width: 24px;
  height: 24px;
}

.c-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 56px;
}

.c-mobile-menu__nav a {
  font-weight: 700;
  font-size: 18px;
}

.c-mobile-menu__line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 270px;
  margin: 36px auto 0;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 20px;
  border-radius: 999px;
  transition: background .25s ease;
}

.c-mobile-menu__line:hover {
  background: var(--orange-soft);
}

.c-mobile-menu__line-icon {
  width: 28px;
  height: 28px;
  flex: none;
}

.c-mobile-menu__line-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

body.c-menu-open {
  overflow: hidden;
}

/* ============================================================
   HERO
   ============================================================ */
.c-hero {
  position: relative;
  padding-bottom: 110px;
}

.c-hero__visual {
  position: relative;
}

.c-hero__photo-wrap {
  position: relative;
  z-index: 1;
  width: 73%;
  max-width: 1050px;
}

.c-hero__photo {
  width: 100%;
  height: auto;
  display: block;
}

.c-hero__photo-mobile {
  display: none;
}

.c-hero__watermark {
  position: absolute;
  left: 5%;
  bottom: 0;
  width: 90%;
  max-width: 100%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.c-hero__text {
  position: absolute;
  top: 15px;
  /* hero1.png có phần trong suốt khoét ở góc trên-phải (dạng notch bo tròn),
     chữ nằm lọt trong notch đó thay vì đứng hẳn ngoài toàn bộ ảnh. Mép an toàn
     của notch (đo trực tiếp từ pixel alpha của ảnh) rơi vào ~71% chiều rộng ảnh
     đang hiển thị — left bám theo đúng tỉ lệ chiều rộng ảnh thực tế (min(73%,1050px)). */
  left: calc(min(73%, 1050px) * 0.735);
  right: var(--pad-x);
  z-index: 2;
  max-width: 420px;
}

.c-hero__text h1 {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.8;
}

.c-booking-tab {
  position: fixed;
  right: 0;
  top: 160px;
  z-index: 50;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 18px;
  border-radius: 16px 0 0 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
  transition: background .25s ease;
}

.c-booking-tab:hover {
  background: var(--orange-soft);
}

.c-booking-tab__icon {
  width: 26px;
  height: 16px;
}

.c-booking-tab__icon img {
  width: 100%;
  height: 100%;
}

.c-booking-panel {
  position: fixed;
  right: 0;
  top: 260px;
  z-index: 51;
  background: var(--orange);
  border-radius: 16px 0 0 16px;
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s ease, opacity .3s ease;
}

.c-booking-panel.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.c-booking-panel__line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  border: 2px solid #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 999px;
  white-space: nowrap;
}

.c-booking-panel__line-icon {
  width: 20px;
  height: 19px;
  flex: none;
}

.c-booking-panel__line-icon img {
  width: 100%;
  height: 100%;
}

.c-booking-panel__qr {
  width: 96px;
  height: 96px;
  border-radius: 8px;
}

.c-topics {
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translateY(-50%);
  z-index: 2;
  width: 500px;
  max-width: calc(27% + 260px);
}

.c-topics__title {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 0;
  display: inline-block;
  padding: 4px 12px;
  background: #fff;
  border-radius: 20px 20px 0 0;
}

.c-topics__card {
  background: #fff;
  border-radius: 0 20px 20px 20px;
  padding: 8px 28px 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.c-topics__list {
  display: flex;
  flex-direction: column;
}

.c-topics__item {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
  padding: 16px 0;
  border-bottom: 1px solid #e5ddd2;
}

.c-topics__list .c-topics__item:last-child {
  border-bottom: none;
}

.c-topics__more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
}

.c-topics__more-icon {
  width: 32px;
  height: 32px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-topics__more-icon img {
  width: 100%;
  height: 100%;
}

/* ============================================================
   ABOUT
   ============================================================ */
.c-about {
  padding: 110px 0 100px;
}

.c-about__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 90px;
}

.c-section-tag {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.c-section-title {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  margin-bottom: 28px;
}

.c-about__lead {
  font-size: 14px;
  line-height: 2;
  color: var(--ink-soft);
}

.c-about__feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.c-about__deco {
  flex: none;
  width: 31%;
  max-width: 420px;
  height: auto;
}

.c-about__deco-mobile {
  display: none;
}

.c-about__feature-body {
  flex: none;
  width: 38%;
  max-width: 480px;
  text-align: center;
}

.c-about__num {
  display: block;
  font-family: "Roboto Condensed", var(--font);
  font-size: 56px;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 8px;
}

.c-about__feature-body h3 {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.6;
  margin-bottom: 20px;
}

.c-about__feature-body p {
  font-size: 14px;
  line-height: 2;
  color: var(--ink-soft);
}

/* ============================================================
   FEATURE 2 — 全5部屋の完全個室（ảnh so le 2 bên + nội dung sticky)
   ============================================================ */
.c-feature2 {
  padding: 60px 0 100px;
}

.c-feature2__images {
  position: relative;
  height: 1920px;
}

.c-feature2__img {
  position: absolute;
  display: block;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

/* left/width theo % của .container để tự co giãn theo màn hình,
   height tự tính qua aspect-ratio (đúng tỉ lệ ảnh gốc) thay vì px cố định
   — tránh vỡ layout khi container hẹp lại dưới 1400px */
.c-feature2__img--l1 {
  left: -1.4%;
  top: 78px;
  width: 23.9%;
  aspect-ratio: 335/430;
}

.c-feature2__img--l2 {
  left: -4.5%;
  top: 655px;
  width: 20.5%;
  aspect-ratio: 320/410;
}

.c-feature2__img--l3 {
  left: 3.5%;
  top: 1210px;
  width: 16%;
  aspect-ratio: 250/320;
}

.c-feature2__img--l4 {
  left: 6.5%;
  top: 1680px;
  width: 16%;
  aspect-ratio: 250/166;
}

.c-feature2__img--r1 {
  right: 11%;
  top: 285px;
  width: 16%;
  aspect-ratio: 250/320;
}

.c-feature2__img--r2 {
  right: 4%;
  top: 815px;
  width: 21%;
  aspect-ratio: 350/460;
}

.c-feature2__img--r3 {
  right: 0;
  top: 1425px;
  width: 23%;
  aspect-ratio: 375/355;
}

.c-feature2__content {
  position: sticky;
  top: 140px;
  max-width: min(420px, 40%);
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.c-feature2__content h3 {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.6;
  margin-bottom: 24px;
}

.c-feature2__content p {
  font-size: 14px;
  line-height: 2;
  color: var(--ink-soft);
}

/* ============================================================
   CONCERNS (3) + MENU CARD
   ============================================================ */
.c-concerns {
  padding: 100px 0 0;
  text-align: center;
}

.c-concerns__intro {
  max-width: 900px;
  margin: 0 auto;
}

.c-concerns__num {
  display: block;
  font-family: "Roboto Condensed", var(--font);
  font-size: 64px;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 12px;
}

.c-concerns__lead {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-soft);
  margin-top: 20px;
  margin-bottom: 44px;
}

.c-concerns__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding-bottom: 110px;
}

.c-concerns__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2d9ae;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 14px;
  white-space: nowrap;
}

.c-menu-card {
  background: #fff;
  border-radius: 50px 50px 50px 50px;
  padding: 80px 0 100px;
  position: relative;
}

.c-menu-card__inner {
  position: relative;
}

.c-menu-card__leaf {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.c-menu-card__leaf--right {
  top: -46px;
  right: -54px;
  width: 230px;
  height: auto;
}

.c-menu-card__leaf--left {
  bottom: -30px;
  left: -20px;
  width: 190px;
  height: auto;
}

.c-menu-card__head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 90px;
}

.c-menu-card__head-left {
  flex: none;
}

.c-menu-card__desc {
  flex: 1;
  max-width: 560px;
  font-size: 14px;
  line-height: 2;
  color: var(--ink-soft);
  padding-top: 10px;
}

.c-menu-items {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.c-menu-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.c-menu-item__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
}

.c-menu-item__title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 28px;
}

.c-menu-item__prices {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
}

.c-menu-item__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 130px;
  padding: 16px 10px;
  border-radius: 20px;
}

.c-menu-item__prices--orange .c-menu-item__price {
  background: #f2d9ae;
}

.c-menu-item__prices--green .c-menu-item__price {
  background: #c9e3d1;
}

.c-menu-item__price-min {
  font-size: 13px;
  font-weight: 700;
}

.c-menu-item__price-val {
  font-size: 20px;
  font-weight: 900;
}

.c-menu-item__price-val small {
  font-size: 13px;
  font-weight: 700;
  margin-left: 2px;
}

.c-menu-item__extra {
  max-width: 330px;
  margin: 0 auto;
}

.c-menu-item__extra p {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-soft);
  padding: 6px 0;
}

/* New Menu Item Card Layout */
.c-menu-item__header {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
}

.c-menu-item__title {
  font-size: 24px;
  font-weight: 900;
  margin-top: 20px;
  margin-bottom: 6px;
  letter-spacing: 0.1em;
}

.c-menu-item__subtitle {
  font-size: 11px;
  color: #c49a6c;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  margin: 0;
}

.c-menu-item:nth-child(2) .c-menu-item__subtitle {
  color: #739871;
}

.c-menu-item__subtitle::before,
.c-menu-item__subtitle::after {
  content: "";
  height: 1px;
  width: 40px;
  background-color: currentColor;
}

.c-menu-item__prices--cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
  max-width: 692px;
  margin-left: auto;
  margin-right: auto;
  flex: 1;
}

.c-menu-price-card {
  border: 2px solid var(--theme-border, #f1e5d1);
  border-radius: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 24px;
  flex: 1;
  max-width: 220px;
  overflow: hidden;
}

.c-menu-item__prices--orange {
  --theme-color: #c49a6c;
  --theme-light: #fdfaf6;
  --theme-border: #f1e5d1;
}

.c-menu-item__prices--green {
  --theme-color: #739871;
  --theme-light: #f6faf5;
  --theme-border: #d5ead1;
}

.c-menu-price-card__head {
  background: var(--theme-color);
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.c-menu-price-card__price {
  font-size: 32px;
  font-weight: 900;
  color: #333;
  font-family: var(--font);
}

.c-menu-price-card__price small {
  font-size: 16px;
  margin-left: 2px;
}

.c-menu-price-card__divider {
  position: relative;
  width: 100%;
  height: 1px;
  background: var(--theme-border);
  margin: 34px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-menu-price-card__circle {
  width: 54px;
  height: 54px;
  background: #fff;
  border: 1px dashed var(--theme-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--ink);
}

.c-menu-price-card__time {
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.c-menu-price-card__unit {
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  margin-top: 4px;
}

.c-menu-price-card__desc {
  list-style: none;
  padding: 0 10px;
  margin: 0;
  width: 100%;
}

.c-menu-price-card__desc li {
  position: relative;
  padding-left: 20px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 12px;
  text-align: left;
}

.c-menu-price-card__desc li:last-child {
  margin-bottom: 0;
}

.c-menu-price-card__desc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 14px;
  background-color: var(--theme-color);
  border-radius: 50%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>');
  background-size: 65%;
  background-position: center;
  background-repeat: no-repeat;
}

.c-menu-item__extra-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
  background: var(--theme-light, #fdfaf6);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: auto;
  border: 1px solid var(--theme-border, #f1e5d1);
}

.c-menu-item__extra-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-menu-item__extra-icon {
  width: 22px;
  height: 22px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-menu-item__extra-icon svg {
  width: 100%;
  height: 100%;
}

.c-menu-item__extra-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.c-menu-item__extra-price {
  font-size: 15px;
  font-weight: 900;
  color: var(--ink);
  margin-left: 6px;
}

/* ============================================================
   REASONS + BOOKING CTA
   ============================================================ */
.c-reasons {
  padding: 100px 0 100px;
}

.c-reasons__grid {
  position: relative;
  min-height: 520px;
  margin-bottom: 70px;
}

.c-reasons__photo {
  position: absolute;
  left: 0;
  top: 0;
  width: 430px;
  height: 520px;
  object-fit: cover;
  border-radius: 0 24px 24px 0;
}

.c-reasons__content-wrap {
  margin-left: calc(430px + 70px);
  margin-right: max(var(--pad-x), calc((100vw - 1400px) / 2 + var(--pad-x)));
  display: flex;
  justify-content: flex-end;
}

.c-reasons__content {
  max-width: 760px;
  width: 100%;
}

.c-reasons__title {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 36px;
}

.c-reasons__list {
  display: flex;
  gap: 16px;
}

.c-reasons__item {
  flex: 1;
  border: 1.5px solid var(--orange);
  border-radius: 20px;
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
  padding: 22px 18px;
  background: #f6efe7;
}

.c-reasons__note {
  text-align: right;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-soft);
  margin-top: 30px;
}

.c-booking-cta {
  background: #4a3526;
  border-radius: 32px;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
}

.c-booking-cta__title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 14px;
}

.c-booking-cta__desc {
  font-size: 14px;
  color: #fff;
  margin-bottom: 28px;
}

.c-booking-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 999px;
  transition: background .25s ease;
}

.c-booking-cta__btn:hover {
  background: var(--orange-soft);
}

.c-booking-cta__btn-icon {
  width: 34px;
  height: 34px;
  flex: none;
}

.c-booking-cta__btn-icon img {
  width: 100%;
  height: 100%;
}

/* ============================================================
   FLOW (STEP CAROUSEL)
   ============================================================ */
.c-flow {
  position: relative;
  background: #fff;
  padding: 0 0 100px;
}

/* Nằm ngoài .container, sát mép trái thật của section (không theo pad-x của
   container) — dùng thẳng ảnh custom-title-deco.png làm nền thay vì border-radius. */
.c-flow__head {
  position: relative;
  width: min(480px, 82vw);
  aspect-ratio: 454/152;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px 0 var(--pad-x);
  background-image: url('../assets/img/custom-title-deco.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-bottom: 50px;
}

.c-flow__head .c-section-title {
  margin-bottom: 0;
}

.c-step-carousel {
  text-align: left;
}

.c-step-carousel__viewport {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  cursor: grab;
}

.c-step-carousel__viewport.is-dragging {
  cursor: grabbing;
}

.c-step-carousel__viewport.is-dragging .c-step-card {
  user-select: none;
}

.c-step-carousel__track {
  display: flex;
  align-items: stretch;
  gap: 40px;
  transition: transform .45s cubic-bezier(.3, .8, .3, 1);
}

.c-step-card {
  position: relative;
  flex: 0 0 310px;
  background: #fff;
  border: 1.5px solid #ecd9bc;
  border-radius: 32px;
  padding: 38px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.c-step-card.c-step-card--sm {
  flex-basis: 240px;
}

.c-step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 19px;
  height: 37px;
  transform: translateY(-50%);
  background: url("../assets/img/icon-ar-step2.svg") no-repeat center / contain;
}

.c-step-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  background: #a8836a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 0 22px;
  border-radius: 50px;
  white-space: nowrap;
}

.c-step-card__badge b {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.c-step-card h4 {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
  min-height: 44px;
  margin-top: 8px;
  color: var(--ink);
}

.c-step-card h4 small {
  font-weight: 600;
  font-size: 12px;
  display: block;
  margin-top: 2px;
}

.c-step-card p {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.c-step-card__img {
  width: 100%;
}

.c-step-card__img img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .1);
  border-radius: 12px;
}

.c-step-card__img--qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.c-step-card__img--qr img.c-step-card__qr {
  width: 64%;
  height: auto;
  box-shadow: none;
  border-radius: 0;
}

.c-step-card__qr-caption {
  font-size: 12.5px;
  color: var(--ink-soft);
}

.c-step-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  padding: 12px 10px 12px 22px;
  border-radius: 999px;
  transition: background .2s ease;
}

.c-step-card__cta:hover {
  background: var(--orange-soft);
}

.c-step-card__cta .c-step-card__cta-icon {
  width: 26px;
  height: 26px;
}

.c-step-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 420px;
  margin: 32px auto 0;
}

.c-step-carousel__arrows {
  display: flex;
  align-items: center;
  gap: 16px;
}

.c-carousel-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}

.c-carousel-arrow:hover {
  background: var(--ink-soft);
}

.c-carousel-arrow svg {
  width: 22px;
  height: 22px;
}

.c-step-carousel__dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.c-step-carousel__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e5ddd2;
  border: none;
  padding: 0;
}

.c-step-carousel__dots button.is-active {
  background: var(--ink);
  width: 22px;
  border-radius: 6px;
  transition: width .25s ease;
}


/* access gg map */
.access {
  background: var(--bg-page);
  text-align: left;
  padding: 130px 50px var(--pad-x);
  position: relative;
}

.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;
}


/* ============================================================
   ACCESS + FOOTER
   ============================================================ */
.c-access__card {
  background: var(--cream);
  border-radius: 48px 48px 0 0;
  padding: 80px 0;
}

.c-access__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.c-access__logo img {
  width: 220px;
  height: auto;
}

.c-access__store {
  font-size: 26px;
  font-weight: 900;
  margin: 32px 0 20px;
}

.c-access__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.7;
}

.c-access__icon {
  flex: none;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.c-access__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c-access__map-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  background: #4a3526;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 18px 16px 26px;
  border-radius: 999px;
  transition: background .2s ease;
}

.c-access__map-btn:hover {
  background: #89654A;
}

.c-access__map-btn-icon {
  width: 24px;
  height: 24px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-access__map-btn-icon img {
  width: 24px;
  height: 24px;
}

.c-access__hours {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 24px;
}

.c-access__hours-highlight {
  color: var(--orange);
  margin-left: 6px;
}

.c-access__table-label {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}

.c-access__table {
  border: 1px solid var(--orange);
  border-radius: 16px;
  padding: 22px 28px;
}

.c-access__table-row {
  display: grid;
  grid-template-columns: 150px repeat(7, 1fr);
  align-items: center;
}

.c-access__table-row--head {
  font-weight: 700;
  font-size: 15px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e5ddd2;
}

.c-access__table-row--head span {
  text-align: center;
}

.c-access__table-time {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.c-access__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  margin: 0 auto;
}

.c-access__footer {
  background: #e6d6c4;
  padding: 26px 0;
  font-size: 14px;
  font-weight: 700;
}

.c-access__footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.c-access__footer-copy {
  text-align: center;
  margin: 0;
}

.c-access__footer-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.c-access__footer-links a {
  transition: opacity 0.2s;
}

.c-access__footer-links a:hover {
  opacity: 0.7;
}

/* Custom list style for menu item prices */
.c-menu-item__prices--list {
  align-items: stretch;
}

.c-menu-item__price-col {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.c-menu-item__price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.c-menu-item__price-row .c-menu-item__price-min {
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

.c-menu-item__price-row .c-menu-item__price-val {
  font-size: 24px;
  font-weight: 900;
  color: #333;
}

.c-menu-item__price-row .c-menu-item__price-val small {
  font-size: 14px;
  font-weight: 700;
  margin-left: 2px;
}

.c-menu-item__desc-box {
  border-radius: 14px;
  padding: 20px;
  flex: 1;
}

.c-menu-item__prices--orange .c-menu-item__desc-box {
  background: #f2d9ae;
}

.c-menu-item__prices--green .c-menu-item__desc-box {
  background: #c9e3d1;
}

.c-menu-item__desc {
  font-size: 13px;
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.6;
}

.c-menu-item__desc li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 14px;
}

.c-menu-item__desc li:last-child {
  margin-bottom: 0;
}

.c-menu-item__desc li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width:1200px) {
  .c-hero__text h1 {
    font-size: 18px;
  }
}

/* ============================================================
   MOBILE (<= 900px)
   ============================================================ */
@media (max-width:900px) {
  .c-header__desc {
    font-size: 11px;
    max-width: 170px;
  }

  .c-header__nav {
    display: none;
  }

  .c-hamburger {
    display: block;
  }

  .c-hero {
    padding-bottom: 60px;
  }

  .c-hero__photo-wrap {
    width: calc(100% - 50px);
    max-width: calc(100% - 50px);
  }

  .c-hero__photo {
    display: none;
  }

  .c-hero__photo-mobile {
    display: block;
    width: 100%;
    height: auto;
  }

  .c-hero__text {
    position: absolute;
    top: 24px;
    left: clamp(24px, 15vw, 100px);
    right: 74px;
    max-width: none;
    padding: 0;
  }

  .c-hero__text h1 {
    font-size: 16px;
  }

  .c-booking-tab {
    top: 96px;
    padding: 14px 14px;
  }

  .c-booking-panel {
    top: 96px;
    padding: 18px 18px 22px;
  }

  .c-booking-panel__qr {
    width: 80px;
    height: 80px;
  }

  .c-topics {
    position: static;
    top: auto;
    transform: none;
    width: auto;
    max-width: 100%;
    margin: 20px var(--pad-x) 0;
  }

  .c-topics__card {
    box-shadow: none;
    border: 1px solid #e5ddd2;
  }

  .c-about {
    padding: 70px 0 60px;
  }

  .c-about__intro {
    margin-bottom: 48px;
    padding: 0 var(--pad-x);
  }

  .c-about__lead {
    text-align: center;
  }

  .c-about__feature {
    position: relative;
    display: block;
    padding: 0 74px;
  }

  .c-about__deco {
    display: none;
  }

  .c-about__feature::before,
  .c-about__feature::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 0;
  }

  .c-about__feature::before {
    left: 0;
    background-image: url('../assets/img/customer-deco-left-mobile.png');
    width: 151px;
    height: 312px;
  }

  .c-about__feature::after {
    right: 0;
    background-image: url('../assets/img/customer-deco-right-mobile.png');
    width: 104px;
    height: 308px;
  }

  .c-about__feature-body {
    position: relative;
    z-index: 1;
    width: auto;
    max-width: none;
    text-align: center;
  }

  .c-about__num {
    font-size: 44px;
  }

  .c-about__feature-body h3 {
    font-size: 19px;
  }

  .c-feature2 {
    padding: 20px 0 60px;
  }

  .c-feature2__images {
    position: relative;
    height: 700px;
    padding: 0;
  }

  .c-feature2__content {
    position: sticky;
    top: 90px;
    width: 200px;
    max-width: 200px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    z-index: 1;
  }

  .c-feature2__content h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .c-feature2__content p {
    font-size: 12px;
    line-height: 1.8;
  }

  .c-feature2__img {
    position: absolute;
    height: auto;
    box-shadow: none;
  }

  .c-feature2__img--l1 {
    left: -7%;
    top: 36px;
    width: 23%;
    aspect-ratio: 335/430;
  }

  .c-feature2__img--r1 {
    right: -7%;
    top: 88px;
    width: 21%;
    aspect-ratio: 250/320;
  }

  .c-feature2__img--l2 {
    left: -7%;
    top: 298px;
    width: 23%;
    aspect-ratio: 320/410;
  }

  .c-feature2__img--r2 {
    right: -7%;
    top: 282px;
    width: 21%;
    aspect-ratio: 350/460;
  }

  .c-feature2__img--l3 {
    left: -5%;
    top: 430px;
    width: 18%;
    aspect-ratio: 250/320;
  }

  .c-feature2__img--r3 {
    right: -5%;
    top: 518px;
    width: 21%;
    aspect-ratio: 375/355;
  }

  .c-feature2__img--l4 {
    left: -3%;
    top: 614px;
    width: 18%;
    aspect-ratio: 250/166;
  }

  .c-concerns {
    padding: 60px 0 0;
  }

  .c-concerns__num {
    font-size: 48px;
  }

  .c-concerns__lead {
    padding: 0 var(--pad-x);
  }

  .c-concerns__tags {
    padding: 0 var(--pad-x) 60px;
    gap: 10px;
  }

  .c-concerns__tag {
    font-size: 13px;
    padding: 12px 18px;
  }

  .c-concerns__tag--wrap {
    white-space: normal;
    max-width: 104px;
    line-height: 1.4;
  }

  .c-menu-card {
    border-radius: 32px 32px 0 0;
    padding: 50px 0 70px;
  }

  .c-menu-card__leaf--right {
    width: 120px;
    top: -24px;
    right: -20px;
  }

  .c-menu-card__leaf--left {
    width: 110px;
    bottom: -20px;
    top: auto;
    left: -20px;
  }

  .c-menu-card__head {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 50px;
  }

  .c-menu-card__desc {
    max-width: 100%;
    padding-top: 0;
  }

  .c-menu-items {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .c-menu-item__prices {
    gap: 8px;
  }

  .c-menu-item__price {
    width: auto;
    flex: 1;
    padding: 12px 4px;
  }

  .c-menu-item__extra {
    max-width: 280px;
  }

  .c-reasons {
    padding: 60px 0 60px;
  }

  .c-reasons__grid {
    min-height: 0;
    margin-bottom: 40px;
  }

  .c-reasons__photo {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 335/300;
    border-radius: 0;
    margin-bottom: 24px;
  }

  .c-reasons__content-wrap {
    margin-left: 0;
    margin-right: 0;
    padding: 0 var(--pad-x);
    display: block;
  }

  .c-reasons__content {
    max-width: 100%;
    width: 100%;
  }

  .c-reasons__title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .c-reasons__list {
    flex-direction: column;
    gap: 14px;
  }

  .c-reasons__item {
    padding: 18px 16px;
    font-size: 14px;
    background: #f6efe7;
  }

  .c-reasons__note {
    text-align: center;
    margin-top: 30px;
  }

  .c-booking-cta {
    padding: 40px 24px;
    border-radius: 24px;
  }

  .c-booking-cta__title {
    font-size: 20px;
  }

  .c-booking-cta__btn {
    width: 100%;
    justify-content: center;
  }

  .c-flow {
    padding: 0 0 60px;
  }

  .c-flow__head {
    width: 78vw;
    padding: 0 24px 0 var(--pad-x);
    margin-bottom: 32px;
  }

  .c-step-card {
    flex-basis: 72vw;
  }

  .c-step-card.c-step-card--sm {
    flex-basis: 60vw;
  }

  .c-step-card h4 {
    font-size: 15px;
    min-height: 0;
  }

  .c-access__card {
    border-radius: 32px 32px 0 0;
    padding: 48px 0;
  }

  .c-access__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .c-access__logo img {
    width: 170px;
  }

  .c-access__store {
    font-size: 22px;
    margin: 24px 0 16px;
  }

  .c-access__map-btn {
    margin-top: 16px;
  }

  .c-access__hours {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 20px;
  }

  .c-access__hours-highlight {
    margin-left: 0;
  }

  .c-access__table {
    padding: 16px 14px;
  }

  .c-access__table-row {
    grid-template-columns: 64px repeat(7, 1fr);
  }

  .c-access__table-row--head {
    font-size: 12px;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }

  .c-access__table-time {
    font-size: 11px;
  }

  .c-access__footer-inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
  }

  .c-access__footer-links {
    justify-content: center;
    gap: 15px;
  }

  .c-menu-item__prices--list {
    flex-direction: column;
    gap: 20px;
  }

  .c-menu-item__prices--cards {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .c-menu-price-card {
    width: 100%;
    max-width: 320px;
  }

  .c-menu-item__extra-box {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width:580px) {
  .c-about__feature-body {
    width: 200px;
    margin: 0 auto;
  }

  .c-header__logo img {
    width: 110px;
  }

  .c-header__desc {
    border-left: 0;
    max-width: 200px;
    padding-left: 0;
  }

  .c-hero__text {
    left: clamp(24px, 13vw, 100px);
  }
}

.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);
}

.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;
  }
}