:root {
  --paper: #f0e6bd;
  --surface: #fff9ea;
  --ink: #3d342e;
  --ink-soft: #6e604f;
  --red: #8a3f35;
  --red-light: #ff8e7a;
  --green: #355e3b;
  --green-light: #a6ed8e;
  --line: #d8cc9d;
  --footer: #2b2724;
  --serif: "Noto Serif TC", "Source Han Serif TC", "Songti TC", "PMingLiU", serif;
  --sans: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --page-gutter: clamp(20px, 3vw, 52px);
  --brand-content-max: 1568px;
  --icon-stroke: 1.5px;
  --brand-sprig: url("./assets/icons/botanical-sprig.svg");
  --radius-lg: 22px;
  --shadow: 0 18px 55px rgb(72 49 25 / 0.1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

section[id], footer[id] { scroll-margin-top: 0; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 20%, rgb(255 255 255 / 0.35) 0 1px, transparent 1.5px) 0 0 / 8px 8px,
    var(--paper);
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { display: block; max-width: 100%; }

/* One optical stroke weight at every rendered size. Brand/social marks are
   intentionally excluded: their original silhouettes remain unchanged. */
.site-icon { display: inline-block; width: 28px; height: 28px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: var(--icon-stroke); stroke-linecap: round; stroke-linejoin: round; vertical-align: middle; }
:is(.site-icon, .mf-icon, .talent-page svg, .hero-info svg, .nav-toggle svg) > :is(path, circle, rect, ellipse, line, polyline, polygon) { vector-effect: non-scaling-stroke; stroke-width: var(--icon-stroke); stroke-linecap: round; stroke-linejoin: round; }
.brand-ornament,
.section-tag::before, .section-tag::after,
.food-label::before, .food-label::after,
.mf-label::before, .mf-label::after,
.massage-copy h2::before, .massage-copy h2::after,
.talent-heading h1::before, .talent-heading h1::after {
  content: ""; display: inline-block; width: 24px; height: 32px; flex: 0 0 24px;
  background: currentColor;
  -webkit-mask: var(--brand-sprig) center / contain no-repeat;
  mask: var(--brand-sprig) center / contain no-repeat;
  pointer-events: none; vertical-align: middle;
}
.section-tag::after, .food-label::after, .mf-label::after,
.massage-copy h2::after { transform: scaleX(-1); }
.line-icon > .site-icon, .bridge-item > span > .site-icon { width: 32px; height: 32px; }
.vertical-note .site-icon, .mf-vertical-note .site-icon { width: 22px; height: 22px; }

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: var(--surface);
  border: 2px solid var(--red);
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 23px;
  left: var(--page-gutter);
  right: var(--page-gutter);
  min-height: 94px;
  display: grid;
  grid-template-columns: minmax(330px, 1fr) auto auto;
  align-items: center;
  gap: clamp(18px, 2vw, 36px);
  padding: 14px 22px 14px 34px;
  border: 1px solid #dfc28c;
  border-radius: 22px;
  background: rgb(255 249 234 / 0.97);
  box-shadow: 0 8px 28px rgb(67 41 21 / 0.13);
}

/* 主品牌首頁與子品牌頁一致：導覽列在閱讀各滿版區塊時持續可用。 */
.home-page > .site-header {
  position: fixed;
  z-index: 80;
}

.brand-lockup {
  width: min(100%, 470px);
  min-width: 0;
  aspect-ratio: 470 / 68;
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr);
  align-items: center;
  gap: clamp(4px, .5vw, 8px);
}
.brand-lockup img { width: 100%; height: 100%; min-width: 0; min-height: 0; object-fit: contain; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 38px);
  font-size: clamp(16px, 1.12vw, 20px);
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.primary-nav > a,
.nav-parent {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: none;
  cursor: pointer;
}

.primary-nav > a::after,
.nav-parent::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after,
.nav-parent:hover::after,
.nav-parent:focus-visible::after { transform: scaleX(1); }

.nav-toggle { display: grid; place-items: center; width: 28px; min-height: 44px; padding: 0; border: 0; color: var(--red); background: transparent; cursor: pointer; border-radius: 4px; }
.nav-toggle svg { width: 18px; fill: none; stroke: currentColor; stroke-width: var(--icon-stroke); transition: transform 180ms ease; }
.nav-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-toggle:hover { background: rgb(216 204 157 / .22); }
.nav-toggle:focus-visible, .nav-parent:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.nav-group { position: relative; display: grid; grid-template-columns: auto 28px; align-items: center; column-gap: 3px; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 190px;
  padding: 12px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: 160ms ease;
}

.nav-dropdown--green { border-top-color: var(--green); }
.nav-dropdown a { display: block; padding: 10px 12px; font-size: 16px; }
.nav-dropdown a:hover { background: rgb(216 204 157 / 0.22); }
.nav-toggle[aria-expanded="true"] + .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -13px; height: 13px; }

.header-cta {
  display: inline-grid;
  min-width: 176px;
  min-height: 54px;
  place-items: center;
  border-radius: 11px;
  color: #fff9ea;
  background: var(--red);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.14em;
  transition: background 160ms ease, transform 160ms ease;
}

.header-cta:hover { background: #743127; transform: translateY(-1px); }
.menu-toggle { display: none; }

/* 品牌頁保留完整視窗的視覺份量，但不強制把捲動鎖在區塊起點。 */
.brand-scroll-page,
body:has(> main[data-theme="green"]) {
  min-height: 100%;
}

html:has(body.brand-scroll-page),
html:has(body > main[data-theme="green"]) {
  scroll-behavior: smooth;
  scroll-padding-top: 126px;
}

.brand-scroll-page main > section,
.brand-scroll-page .page-shell > section,
body:has(> main[data-theme="green"]) .page-shell > section {
  min-height: 100svh;
}

.brand-scroll-page main > section[id],
.brand-scroll-page .page-shell > section[id],
body:has(> main[data-theme="green"]) .page-shell > section[id] {
  scroll-margin-top: 0;
}

.hero {
  position: relative;
  min-height: max(941px, 100svh);
  overflow: hidden;
  background: var(--paper);
}

.hero-photo {
  position: absolute;
  inset: 94px 0 auto;
  height: max(570px, 70svh);
  background: url("./assets/images/home-storefront.webp") center / cover no-repeat;
}

.hero-fade {
  position: absolute;
  inset: max(370px, 42svh) 0 0;
  background: linear-gradient(to bottom, transparent 0, rgb(240 230 189 / 0.42) 25%, var(--paper) 57%);
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 82px;
  width: min(760px, calc(100% - 40px));
  text-align: center;
  transform: translateX(-50%);
}

.hero h1 {
  display: block;
  margin: 0;
  line-height: 1;
}

.hero-logo {
  width: clamp(280px, 30vw, 440px);
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}

.massage-copy h2::before,
.massage-copy h2::after {
  content: "";
  align-self: center;
  color: #815426;
  font-size: 0.5em;
}

.hero-location {
  margin: 10px 0 0;
  color: var(--red);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.ornamental-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 470px;
  max-width: 86%;
  margin: 12px auto;
}

.ornamental-rule i { width: 43%; height: 1px; background: #cda96e; }
.ornamental-rule b { width: 8px; height: 8px; margin: 0 10px; border: 1px solid #cda96e; transform: rotate(45deg); }
.hero-statement { margin: 8px 0 18px; font-size: 28px; font-weight: 700; letter-spacing: 0.16em; }
.hero-actions { display: flex; justify-content: center; gap: 28px; }

.button {
  min-width: 252px;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 12px 28px;
  border: 1px solid currentColor;
  border-radius: 11px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--surface); border-color: var(--red); background: var(--red); }
.button--outline-red { color: var(--red); background: rgb(255 249 234 / 0.45); }
.button--outline-red:hover { color: var(--surface); background: var(--red); }
.brand-page-cta { width: fit-content; min-width: 250px; margin-top: 20px; border-radius: 999px; }
.button--outline-green { color: var(--green); background: transparent; border-radius: 999px; }
.button--outline-green:hover { color: var(--surface); background: var(--green); }

.hero-info {
  position: absolute;
  z-index: 3;
  right: 20%;
  bottom: 18px;
  left: 20%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  font-size: 17px;
}

.hero-info p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0 22px;
  border-right: 1px solid #c9b487;
  white-space: nowrap;
}

.hero-info p:last-child { border-right: 0; }
.hero-info svg { width: 26px; height: 26px; flex: 0 0 auto; fill: none; stroke: #806542; stroke-width: 2; }

.paper-section {
  position: relative;
  min-height: max(941px, 100svh);
  overflow: hidden;
  background:
    radial-gradient(circle at 17% 24%, rgb(255 255 255 / 0.7), transparent 42%),
    var(--surface);
}

.section-frame { position: absolute; inset: 1px; border: 1px solid #aa7243; border-radius: 20px; pointer-events: none; }

.massage-main-photo {
  position: absolute;
  top: 18px;
  right: 9.5%;
  width: 52.5%;
  height: 64%;
  object-fit: cover;
  object-position: center;
  border-radius: 13px;
}

.massage-copy {
  position: absolute;
  z-index: 2;
  top: 137px;
  left: 5.6%;
  width: 37%;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px 40px;
  font-size: 25px;
  letter-spacing: 0.18em;
}

.section-tag::before,
.section-tag::after { content: ""; }
.section-tag span { padding: 8px 34px; border: 1px solid currentColor; border-radius: 10px; }
.section-tag--red { color: var(--red-light); }
.section-tag--red span { color: var(--ink); }
.section-tag--green { color: #79ad5f; }
.section-tag--green span { color: var(--green); }

.massage-copy h2,
.food-copy h2 {
  display: flex;
  align-items: center;
  gap: 0.12em;
  margin: 0;
  color: var(--red);
  font-size: clamp(68px, 6.2vw, 100px);
  line-height: 1;
  letter-spacing: 0.08em;
}

.massage-copy h2 { font-size: clamp(76px, 6.8vw, 110px); }

.massage-copy h2 span:first-child { color: #4a321c; }
.section-lead { margin: 22px 0 18px; font-size: 26px; font-weight: 700; letter-spacing: 0.14em; }
.section-lead--red { color: var(--red); }
.section-lead--green { color: var(--green); }
.ornamental-rule--left { justify-content: flex-start; margin: 0 0 24px; }
.ornamental-rule--green i, .ornamental-rule--green b { border-color: #8ba36c; background-color: #8ba36c; }

.section-body {
  margin: 0 0 20px;
  font-size: 19px;
  line-height: 1.85;
  letter-spacing: 0.12em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.text-link--red { color: var(--red); }

.massage-trust {
  position: absolute;
  bottom: 47px;
  left: 5.5%;
  width: 49%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 0 24px;
  border-right: 1px solid #dacdb1;
  text-align: center;
}

.trust-item:last-child { border-right: 0; }
.line-icon { width: 66px; height: 66px; display: grid; place-items: center; border: 1px solid var(--red-light); border-radius: 50%; color: var(--red-light); font-size: 32px; }
.trust-item strong { font-size: 22px; font-weight: 500; letter-spacing: 0.12em; }
.trust-item strong::after { content: ""; display: block; width: 48px; height: 1px; margin: 13px auto 0; background: #b99d6f; }

.massage-detail-photo {
  position: absolute;
  right: 9.5%;
  bottom: 27px;
  width: 34.5%;
  height: 30%;
  object-fit: cover;
  border-radius: 13px;
}

.vertical-note {
  position: absolute;
  top: 147px;
  right: 2.8%;
  bottom: 120px;
  width: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 15px 0;
  border: 1px solid #c9a77c;
  border-radius: 12px;
  color: var(--red);
}

.vertical-note p { margin: 0; font-size: 20px; line-height: 1.8; letter-spacing: 0.16em; writing-mode: vertical-rl; }

.food-section { min-height: 941px; padding: 23px 20px; }
.food-photo-wrap { position: absolute; inset: 23px auto 23px 20px; width: 60%; overflow: hidden; border-radius: 13px 0 0 13px; }
.food-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.food-panel {
  position: absolute;
  z-index: 2;
  top: 23px;
  right: 20px;
  bottom: 23px;
  width: 55%;
  display: grid;
  place-items: center;
  background: linear-gradient(120deg, rgb(251 252 226 / 0.95), rgb(245 249 219 / 0.98));
  border-radius: 47% 13px 13px 45% / 50% 13px 13px 50%;
}

.food-copy { width: 66%; margin-left: 20%; text-align: center; }
.food-copy .section-tag { margin-left: 0; }
.food-copy h2 { justify-content: center; color: #79ad5f; }
.food-copy h2 span:first-child { color: #254d29; }
.food-body { margin: 22px 0 58px; color: #4b6041; font-size: 19px; line-height: 1.9; letter-spacing: 0.1em; }
.food-copy .button { min-width: 250px; }

.brand-bridge {
  position: absolute;
  z-index: 5;
  bottom: 101px;
  left: 42%;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 24px 38px 28px;
  border-radius: 999px;
  background: rgb(255 249 234 / 0.97);
}

.bridge-item { width: 105px; text-align: center; }
.bridge-item > span { width: 82px; height: 82px; display: grid; place-items: center; margin: 0 auto 12px; border-radius: 50%; font-size: 34px; }
.bridge-item strong, .bridge-item small { display: block; letter-spacing: 0.1em; }
.bridge-item strong { margin-bottom: 5px; font-size: 18px; }
.bridge-item small { font-size: 14px; }
.bridge-item--red > span { color: var(--red-light); background: #fff0e7; }
.bridge-item--green > span { color: #70a84f; background: #c7eca4; }
.bridge-line { width: 120px; height: 1px; margin-bottom: 67px; background: var(--green); }
.image-note { position: absolute; z-index: 4; right: 48px; bottom: 48px; color: var(--green); letter-spacing: 0.12em; }

.site-footer {
  /* 與學徒平台共用內容高度，頁尾不套用品牌區塊的滿版高度。 */
  min-height: 0;
  padding: 70px var(--page-gutter) 40px;
  color: #f8edcf;
  background:
    radial-gradient(circle at 60% 30%, rgb(255 255 255 / 0.025), transparent 30%),
    var(--footer);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 10px 60px;
  border-bottom: 1px solid #967a4a;
}

.footer-top > p { margin: 0; font-size: clamp(28px, 3vw, 48px); font-weight: 700; letter-spacing: 0.13em; }
.footer-top-actions { display: flex; gap: 18px; }
.footer-top-actions a { min-width: 184px; padding: 16px 22px; border: 1px solid #b7965b; border-radius: 9px; text-align: center; font-size: 18px; }
.footer-top-actions a:hover { background: rgb(240 230 189 / 0.1); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 1.15fr 0.95fr;
  padding: 60px 10px;
  border-bottom: 1px solid #967a4a;
}

.footer-grid section { min-width: 0; padding: 0 32px; border-right: 1px solid #80683f; }
.footer-grid section:first-child { padding-left: 0; }
.footer-grid section:last-child { padding-right: 0; border-right: 0; }
.footer-grid h2 { display: flex; align-items: center; gap: 8px; margin: 0 0 8px; font-size: 24px; letter-spacing: 0.1em; }
.footer-mark { width: 40px; height: 40px; display: inline-grid; place-items: center; border: 1px solid currentColor; transform: rotate(45deg); font-size: 20px; }
.footer-mark + .footer-mark { margin-left: -15px; }
.footer-mark--red { color: var(--red-light); }
.footer-mark--green { color: var(--green-light); }
.footer-mark::first-letter { transform: rotate(-45deg); }
.footer-accent { min-height: 44px; margin: 0 0 20px; color: #cdb47d; font-size: 14px; letter-spacing: 0.08em; }
.footer-accent--red { color: var(--red-light); }
.footer-accent--green { color: var(--green-light); }
.footer-grid section > a { display: block; padding: 15px 0; font-size: 18px; letter-spacing: 0.1em; }
.footer-grid section > a::after { content: "›"; float: right; }
.footer-grid section > a:hover { color: #fff; }

.footer-contact,
.social-links,
.footer-legal { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-contact { padding: 40px 10px; border-bottom: 1px solid #967a4a; font-size: 17px; }
.social-links { justify-content: center; flex-wrap: wrap; gap: clamp(12px, 2.5vw, 36px); padding: 32px 10px; border-bottom: 1px solid #967a4a; }
.social-item { display: inline-grid; place-items: center; flex: 0 0 52px; width: 52px; height: 52px; color: inherit; border-radius: 8px; }
.social-icon { display: block; width: 30px; height: 30px; background: currentColor; -webkit-mask: var(--social-icon) center / contain no-repeat; mask: var(--social-icon) center / contain no-repeat; }
.social-icon--instagram { --social-icon: url("./assets/icons/social/instagram.svg"); }
.social-icon--threads { --social-icon: url("./assets/icons/social/threads.svg"); }
.social-icon--youtube { --social-icon: url("./assets/icons/social/youtube.svg"); width: 34px; }
.social-icon--tiktok { --social-icon: url("./assets/icons/social/tiktok.svg"); }
.social-icon--facebook { --social-icon: url("./assets/icons/social/facebook.svg"); }
.social-icon--line { --social-icon: url("./assets/icons/social/line.svg"); width: 34px; }
.social-links a.social-item:hover { background: rgb(255 249 234 / .12); }
.social-links a.social-item:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
.site-footer a[href^="tel:"] { display: inline-flex; align-items: center; gap: 12px; }
.footer-grid section > a[href^="tel:"] { display: flex; }
.site-footer a[href^="tel:"]::before { content: ""; display: inline-block; flex: 0 0 26px; width: 26px; height: 26px; background: currentColor; -webkit-mask: url("./assets/icons/phone.svg") center / contain no-repeat; mask: url("./assets/icons/phone.svg") center / contain no-repeat; }
.site-footer a[href^="tel:"]::after { content: none; }
.footer-phone-copy { min-width: 0; }
.footer-phone-number { white-space: nowrap; }
.footer-top-actions a[href^="tel:"] { justify-content: center; }
.footer-legal { padding: 40px 10px 0; font-size: 14px; }
.mobile-booking { display: none; }

@media (max-width: 1320px) {
  .site-header { grid-template-columns: minmax(280px, 360px) 1fr auto; padding-left: 24px; }
  .primary-nav { gap: 18px; font-size: 16px; }
  .header-cta { min-width: 140px; }
  .hero-info { right: 10%; left: 10%; }
  .massage-copy { width: 42%; }
  .massage-main-photo { right: 7%; width: 55%; }
  .vertical-note { right: 1.2%; }
  .massage-detail-photo { right: 7%; }
  .footer-top { align-items: flex-start; }
  .footer-top-actions { flex-wrap: wrap; justify-content: flex-end; }
}

@media (max-width: 980px) {
  html:has(body.brand-scroll-page),
  html:has(body > main[data-theme="green"]) {
    scroll-padding-top: 92px;
  }

  :root { --page-gutter: 16px; }
  section[id], footer[id] { scroll-margin-top: 92px; }
  .brand-scroll-page main > section[id],
  .brand-scroll-page .page-shell > section[id],
  body:has(> main[data-theme="green"]) .page-shell > section[id] { scroll-margin-top: 0; }
  body { padding-bottom: 64px; }
  .site-header { position: fixed; top: 10px; min-height: 70px; grid-template-columns: 1fr auto auto; padding: 10px 12px 10px 16px; border-radius: 15px; }
  .brand-lockup { width: min(310px, 58vw); }
  .menu-toggle { width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; border: 0; background: transparent; }
  .menu-toggle span:not(.sr-only) { width: 24px; height: var(--icon-stroke); background: var(--ink); transition: 160ms ease; }
  .primary-nav {
    position: fixed;
    top: 90px;
    right: 16px;
    left: 16px;
    display: none;
    max-height: calc(100vh - 110px);
    padding: 20px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow);
    white-space: normal;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav > a, .nav-parent { width: 100%; min-height: 50px; justify-content: space-between; border-bottom: 1px solid #e9dfbd; }
  .nav-group { width: 100%; grid-template-columns: minmax(0, 1fr) 44px; gap: 0; }
  .nav-toggle { width: 44px; min-height: 50px; border-bottom: 1px solid #e9dfbd; }
  .nav-dropdown { position: static; display: none; min-width: 0; padding: 4px 0 10px 18px; border: 0; border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nav-dropdown { grid-column: 1 / -1; }
  .nav-dropdown::before { display: none; }
  .nav-toggle[aria-expanded="true"] + .nav-dropdown { display: block; transform: none; }
  .header-cta { min-width: 116px; min-height: 44px; font-size: 16px; }

  .hero { min-height: 860px; }
  .hero-photo { top: 0; height: 500px; background-position: 53% center; }
  .hero-fade { inset: 285px 0 0; background: linear-gradient(to bottom, transparent, var(--paper) 38%); }
  .hero-content { bottom: 150px; }
  .hero-location, .hero-statement { font-size: 21px; }
  .hero-actions { gap: 12px; }
  .button { min-width: 220px; min-height: 54px; font-size: 18px; }
  .hero-info { right: 20px; bottom: 28px; left: 20px; grid-template-columns: 1fr; gap: 7px; font-size: 15px; }
  .hero-info p { justify-content: flex-start; padding: 0; border: 0; }

  .paper-section { min-height: auto; }
  .massage-section { padding: 24px 20px 40px; }
  .massage-main-photo, .massage-copy, .massage-trust, .massage-detail-photo, .vertical-note { position: relative; inset: auto; width: auto; }
  .massage-main-photo { width: 100%; height: 420px; margin-bottom: -80px; object-position: 58% center; }
  .massage-copy { z-index: 3; width: 86%; margin: 0 auto; padding: 28px; border-radius: 14px; background: rgb(255 249 234 / 0.94); box-shadow: var(--shadow); }
  .massage-copy h2 { font-size: 70px; }
  .massage-trust { margin: 34px 0; }
  .massage-detail-photo { width: 70%; height: 260px; margin-left: auto; object-fit: cover; }
  .vertical-note { display: none; }

  .food-section { display: flex; flex-direction: column; min-height: auto; padding: 20px; }
  .food-photo-wrap, .food-panel, .brand-bridge, .image-note { position: relative; inset: auto; width: auto; }
  .food-photo-wrap { height: 560px; border-radius: 12px; }
  .food-panel { z-index: 3; min-height: 560px; margin-top: -90px; padding: 85px 20px 160px; border-radius: 46% 46% 12px 12px / 16% 16% 12px 12px; }
  .food-copy { width: min(640px, 90%); margin: 0 auto; }
  .food-copy h2 { font-size: 76px; }
  .brand-bridge { z-index: 5; align-self: center; margin-top: -145px; }
  .image-note { align-self: flex-end; margin: 22px; }

  .footer-top { display: block; }
  .site-footer { min-height: 0; }
  .footer-top-actions { justify-content: flex-start; margin-top: 25px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .footer-grid section { padding: 26px; border-bottom: 1px solid #80683f; }
  .footer-grid section:nth-child(2) { border-right: 0; }
  .footer-grid section:nth-child(3) { padding-left: 0; border-bottom: 0; }
  .footer-grid section:nth-child(4) { padding-right: 0; border-right: 0; border-bottom: 0; }
  .footer-contact { align-items: flex-start; flex-direction: column; }
  .footer-legal { flex-wrap: wrap; }
  .mobile-booking { position: fixed; z-index: 50; right: 0; bottom: 0; left: 0; display: grid; min-height: 64px; place-items: center; color: var(--surface); background: var(--red); font-size: 19px; font-weight: 700; letter-spacing: 0.12em; }
}

@media (max-width: 620px) {
  .site-header { grid-template-columns: 1fr auto; }
  .brand-lockup { width: min(250px, 67vw); }
  .header-cta { display: none; }
  /* Keep the taller logo below the fixed navigation on short phone screens. */
  .home-page main > .hero { min-height: max(680px, 100svh); }
  .hero-photo { height: 390px; background-size: auto 100%; background-position: 52% top; }
  .hero-fade { inset: 210px 0 0; background: linear-gradient(to bottom, transparent, var(--paper) 31%); }
  .hero-content { bottom: 160px; width: calc(100% - 28px); }
  .hero-location { font-size: 17px; letter-spacing: 0.12em; }
  .hero-statement { font-size: 18px; line-height: 1.6; letter-spacing: 0.1em; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .button { width: min(100%, 300px); min-width: 0; margin: auto; }
  .hero-info { bottom: 24px; font-size: 13px; }
  .hero-info svg { width: 20px; height: 20px; }

  .massage-section { padding: 14px 12px 30px; }
  .massage-main-photo { height: 300px; margin-bottom: -45px; border-radius: 10px; }
  .massage-copy { width: 94%; padding: 24px 20px; }
  .section-tag { margin: 0 0 12px; font-size: 19px; }
  .section-tag span { padding: 7px 20px; }
  .massage-copy h2, .food-copy h2 { justify-content: center; font-size: 54px; }
  .section-lead { font-size: 20px; line-height: 1.5; }
  .food-copy .section-lead { max-width: 100%; font-size: 18px; letter-spacing: 0.08em; overflow-wrap: anywhere; }
  .section-body { font-size: 16px; line-height: 1.8; }
  .massage-trust { grid-template-columns: 1fr; gap: 16px; }
  .trust-item { grid-template-columns: 58px 1fr; justify-items: start; padding: 10px 20px; border-right: 0; border-bottom: 1px solid #e1d6bb; text-align: left; }
  .trust-item strong { font-size: 18px; }
  .trust-item strong::after { margin-left: 0; }
  .line-icon { width: 52px; height: 52px; }
  .massage-detail-photo { width: 92%; height: 210px; }

  .food-section { padding: 12px; }
  .food-photo-wrap { height: 430px; }
  .food-panel { min-height: 570px; margin-top: -55px; padding: 70px 12px 170px; border-radius: 40% 40% 10px 10px / 9% 9% 10px 10px; }
  .food-copy { width: 96%; }
  .food-body { margin: 20px 0 35px; font-size: 16px; }
  .brand-bridge { margin-top: -150px; transform: scale(0.86); }
  .bridge-line { width: 50px; }

  .site-footer { padding: 40px 20px 82px; }
  .footer-top { padding: 0 0 34px; }
  .footer-top > p { font-size: 27px; line-height: 1.55; }
  .footer-top-actions { display: grid; grid-template-columns: 1fr; }
  .footer-top-actions a { min-width: 0; }
  .footer-grid { grid-template-columns: 1fr; padding-top: 20px; }
  .footer-grid section, .footer-grid section:first-child, .footer-grid section:nth-child(3), .footer-grid section:nth-child(4) { padding: 28px 0; border-right: 0; border-bottom: 1px solid #80683f; }
  .social-links { justify-content: flex-start; }
  .social-links { gap: 8px; }
  .social-item { flex-basis: 48px; width: 48px; height: 48px; }
  .footer-legal { align-items: flex-start; flex-direction: column; }
}

@media (min-width: 621px) and (max-width: 720px) {
  .site-footer { padding-bottom: 82px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
