/*
 * NUO SPA — Warm Editorial / 首頁風格 V4
 * 原生 CSS，無框架、無外部字型檔。修改 :root 可快速調整整站配色。
 * 字型使用訪客裝置字型；未安裝 Noto 時會退回台灣常見中文字型。
 */
:root {
  --paper: #f5f1e9;
  --paper-light: #fcfaf6;
  --sand: #e9e0d3;
  --ink: #433a32;
  --ink-deep: #352e28;
  --muted: #746c62;
  --gold: #937653;
  --gold-light: #c9b18b;
  --border: #d9d0c2;
  --serif: "Noto Serif TC", "Noto Serif CJK TC", "Source Han Serif TC", "Songti TC", "PMingLiU", Georgia, serif;
  --sans: "Noto Sans TC", "Noto Sans CJK TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --english: "Baskerville", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --header-height: 98px;
  --ease: cubic-bezier(.2, .65, .3, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 126px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 15px; line-height: 1.9; -webkit-font-smoothing: antialiased; }
::selection { background: #d7c5a8; color: var(--ink-deep); }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button, select { -webkit-tap-highlight-color: transparent; }
button:disabled { cursor: default; }
button, textarea, select { color: inherit; }
button { border-radius: 0; }
img { max-width: 100%; display: block; }
figure, p, h1, h2, h3 { margin: 0; }
h1, h2, h3 { font-weight: 400; }
h1, h2, h3 { font-family: var(--serif); }
h2 { font-size: clamp(28px, 2.55vw, 38px); line-height: 1.7; letter-spacing: .05em; }
h3 { line-height: 1.6; }
a, button { touch-action: manipulation; }
button:focus-visible, a:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 6px; }
[hidden] { display: none !important; }
.icon { width: 22px; height: 22px; flex: 0 0 auto; vertical-align: middle; }
.container { width: min(calc(100% - 120px), 1280px); margin-inline: auto; }
.section { padding-block: 104px; }
.eyebrow { color: var(--gold); font-size: 11px; font-weight: 500; letter-spacing: .19em; line-height: 1.65; }
.button { min-height: 56px; padding: 15px 26px; display: inline-flex; justify-content: center; align-items: center; gap: 24px; font-size: 14px; letter-spacing: .07em; border: 1px solid transparent; transition: background .22s, color .22s, transform .22s; }
.button .icon { width: 20px; height: 20px; }
.button-dark { background: var(--ink); color: var(--paper-light); }
.button-dark:hover { background: #625142; transform: translateY(-2px); }
.button-cream { background: var(--paper); color: var(--ink); }
.button-cream:hover { background: var(--gold-light); transform: translateY(-2px); }
.text-link { display: inline-flex; align-items: center; gap: 18px; min-height: 48px; font-size: 14px; letter-spacing: .08em; border-bottom: 1px solid var(--border); transition: border-color .2s, color .2s; }
.text-link .icon { width: 20px; }
.text-link:hover { border-color: var(--gold); color: var(--gold); }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 999; padding: 12px 22px; background: var(--ink); color: white; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.topbar { background: var(--ink); color: #e9e0d3; font-size: 10px; letter-spacing: .09em; min-height: 34px; }
.topbar-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; }
.topbar-location { display: inline-flex; gap: 12px; align-items: center; }
.topbar-location .icon { width: 12px; height: 12px; color: var(--gold-light); }
.topbar-separator { color: #ab987c; margin-inline: 7px; }
.topbar-hours { letter-spacing: .1em; }
.topbar-hours > span { margin-inline: 8px; color: var(--gold-light); }
.site-header { position: sticky; top: 0; z-index: 40; height: var(--header-height); background: rgba(245, 241, 233, .97); border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s; }
.site-header.is-scrolled { border-bottom-color: var(--border); box-shadow: 0 8px 24px rgba(50, 40, 28, .035); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; gap: 19px; align-items: center; flex-shrink: 0; }
.brand-han { font-family: var(--serif); font-size: 43px; line-height: 1.2; font-weight: 400; }
.brand-divider { height: 39px; width: 1px; background: #bbab93; }
.brand-wordmark { font-family: var(--english); font-size: 24px; letter-spacing: .16em; line-height: 1.2; }
.brand-wordmark small { display: block; font-family: var(--sans); font-size: 7px; letter-spacing: .16em; margin-top: 8px; }
.main-nav { display: flex; gap: 29px; align-items: center; margin-left: auto; }
.main-nav > a { font-size: 13px; letter-spacing: .09em; position: relative; padding-block: 16px; white-space: nowrap; }
.main-nav > a::after { position: absolute; content: ""; left: 0; right: 0; bottom: 9px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.main-nav > a:hover::after { transform: scaleX(1); }
.main-nav > a:hover { color: var(--gold); }
.main-nav .nav-mobile-booking { display: none; }
.header-booking { display: inline-flex; min-height: 44px; align-items: center; gap: 17px; padding: 8px 18px; border: 1px solid #b9a183; font-size: 12px; letter-spacing: .07em; white-space: nowrap; transition: background .2s; }
.header-booking .icon { width: 17px; height: 17px; }
.header-booking:hover { background: var(--sand); }
.menu-toggle { display: none; background: transparent; border: 0; padding: 10px; }
.menu-close-icon { display: none; }

/* Hero: a warm, editorial left column and a single arched image. */
.hero { display: grid; grid-template-columns: 50% 50%; min-height: 680px; position: relative; overflow: hidden; }
.hero-copy { position: relative; padding: 104px 25px 102px max(60px, calc((100vw - 1280px) / 2)); z-index: 1; }
.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero-eyebrow > span { width: 34px; height: 1px; background: var(--gold); }
.hero h1 { position: relative; font-size: clamp(36px, 3.45vw, 52px); line-height: 1.75; letter-spacing: .015em; white-space: nowrap; }
.hero h1 em { color: #8b704f; font-style: normal; }
.hero-english { color: #9a8367; font-family: var(--english); font-size: 30px; font-style: italic; margin-top: 16px; line-height: 1.6; letter-spacing: .01em; }
.hero-description { margin-top: 27px; color: var(--muted); line-height: 2.05; font-size: 14px; letter-spacing: .07em; }
.hero-actions { margin-top: 37px; display: flex; align-items: center; gap: 26px; }
.hero-notes { display: flex; align-items: center; gap: 18px; margin-top: 34px; color: var(--muted); font-size: 11px; letter-spacing: .1em; }
.hero-notes i { width: 3px; height: 3px; background: #bcab93; border-radius: 50%; }
.hero-watermark { position: absolute; bottom: -59px; left: max(50px, calc((100vw - 1310px) / 2)); color: #eee8dd; font-family: var(--english); font-style: italic; font-size: 205px; letter-spacing: -.06em; line-height: 1; z-index: -1; pointer-events: none; }
.hero-visual { position: relative; padding: 28px max(60px, calc((100vw - 1280px) / 2)) 45px 22px; min-height: 680px; }
.hero-photo { width: 100%; height: 625px; position: relative; border-radius: 300px 300px 2px 2px; overflow: hidden; background: var(--sand); }
.hero-photo picture { display: block; height: 100%; }
.hero-photo img { height: 100%; width: 100%; object-fit: cover; object-position: 81% 50%; }
.hero-photo::after { content: ""; position: absolute; bottom: 0; height: 30%; left: 0; right: 0; pointer-events: none; background: linear-gradient(transparent, rgba(32, 25, 20, .65)); }
.hero-photo figcaption { position: absolute; z-index: 1; bottom: 23px; left: 78px; right: 22px; color: #fff8ec; display: flex; flex-direction: column; gap: 4px; }
.hero-photo figcaption > span:first-child { font-size: 9px; letter-spacing: .17em; }
.hero-photo figcaption > span:last-child { font-size: 9px; letter-spacing: .05em; color: #e7d5be; }
.hero-outline { position: absolute; left: 5px; right: max(75px, calc((100vw - 1250px) / 2)); top: 9px; height: 624px; border: 1px solid #c5b28f; border-radius: 320px 320px 2px 2px; opacity: .75; pointer-events: none; }
.hero-seal { width: 114px; height: 114px; border-radius: 50%; position: absolute; left: -30px; bottom: 86px; background: var(--paper); color: #8b755a; box-shadow: 0 2px 22px #3c332019; z-index: 2; }
.hero-seal > svg:first-child { width: 100%; height: 100%; fill: currentColor; }
.hero-seal text { font-family: var(--sans); font-size: 9px; letter-spacing: 2px; }
.hero-seal > .icon { position: absolute; top: 37px; left: 38px; width: 36px; height: 36px; stroke-width: 1; }
.hero-side-note { position: absolute; right: 20px; top: 220px; writing-mode: vertical-rl; color: #8d806e; font-size: 9px; letter-spacing: .28em; }

/* Selection strip / brand signature */
.brand-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #f0ebe2; }
.brand-strip-inner { min-height: 112px; display: grid; grid-template-columns: 1.2fr 1fr 1.2fr 1fr; align-items: center; }
.strip-intro { font-family: var(--serif); color: #756855; font-size: 17px; letter-spacing: .1em; }
.brand-strip-inner > a { display: flex; align-items: center; justify-content: center; gap: 16px; border-left: 1px solid var(--border); padding: 8px 14px; min-height: 49px; }
.brand-strip-inner > a > span:last-child { color: #7c7469; font-size: 10px; letter-spacing: .035em; }
.strip-brand { font-family: var(--english); font-size: 26px; letter-spacing: .14em; line-height: 1.1; }
.aa-strip { font-size: 12px; line-height: 1.3; letter-spacing: .05em; text-align: center; }
.strip-space { display: flex; align-items: center; gap: 9px; font-family: var(--english); font-size: 12px; letter-spacing: .05em; }
.strip-space .icon { width: 24px; height: 24px; color: var(--gold); }
.brand-strip-inner > a:hover { color: var(--gold); }

.about { padding-top: 95px; padding-bottom: 50px; }
.about-inner { text-align: center; position: relative; }
.about-emblem { margin-bottom: 16px; color: #ad9573; }
.about-emblem .icon { width: 38px; height: 38px; stroke-width: .8; }
.about .eyebrow { margin-bottom: 20px; }
.about h2 { font-size: 32px; margin-bottom: 24px; }
.about h2 > span { margin-left: 10px; }
.about p:not(.eyebrow) { color: var(--muted); font-size: 14px; line-height: 2.2; letter-spacing: .06em; }
.about p.about-closing { margin-top: 11px; color: #8b775a; }
.fine-line { display: inline-block; height: 43px; width: 1px; background: #bba98a; margin-top: 29px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
.section-heading .eyebrow { margin-bottom: 14px; }
.section-heading-note { font-size: 13px; line-height: 2.1; color: var(--muted); text-align: right; letter-spacing: .06em; padding-bottom: 4px; }
.centered { display: block; text-align: center; }
.section-heading.centered > p:last-child { margin-top: 14px; font-size: 14px; color: var(--muted); letter-spacing: .045em; }
.services { padding-top: 35px; padding-bottom: 74px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { padding: 30px 31px 24px; background: #ede6da; border: 1px solid transparent; transition: transform .3s var(--ease), border-color .3s, background .3s; }
.service-card:nth-child(2) { background: #ebe7df; }
.service-card:nth-child(3) { background: #e6e8df; }
.service-card:hover { transform: translateY(-5px); border-color: #beaa8a; background: #e7dece; }
.service-card-top { min-height: 104px; display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 25px; }
.service-number { font-family: var(--english); font-size: 27px; font-style: italic; color: #99856b; }
.service-art { height: 106px; width: 106px; color: #9b835e; opacity: .9; }
.service-card:nth-child(3) .service-art { color: #7d886d; }
.service-en { font-size: 9px; letter-spacing: .14em; color: #776752; margin-bottom: 6px; }
.service-card h3 { font-size: 26px; letter-spacing: .08em; }
.service-description { margin-top: 16px; color: #70675b; font-size: 13px; line-height: 2.1; min-height: 56px; letter-spacing: .04em; }
.service-link { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid #cfc2af; margin-top: 26px; padding-top: 17px; font-size: 11px; letter-spacing: .06em; }
.round-arrow { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border: 1px solid #b9a68a; border-radius: 50%; transition: background .2s; }
.round-arrow .icon { width: 17px; height: 17px; }
.service-link:hover .round-arrow { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.facial-note { margin-top: 28px; display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 12px; gap: 20px; letter-spacing: .03em; }
.facial-note > span, .facial-note > a { display: inline-flex; align-items: center; gap: 10px; }
.facial-note b { font-weight: 500; color: var(--ink); }
.facial-note .icon { width: 17px; height: 17px; color: var(--gold); }
.facial-note a:hover { color: var(--gold); }

.pricing { background: var(--paper-light); padding-top: 86px; padding-bottom: 74px; border-block: 1px solid #ebe4d8; }
.pricing .section-heading { margin-bottom: 60px; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1110px; margin-inline: auto; gap: 21px; }
.plan { position: relative; border: 1px solid #d9d0c2; padding: 39px 32px 26px; background: #f8f5ef; }
.plan-en { font-size: 9px; letter-spacing: .15em; color: #89765c; }
.plan-time { display: flex; align-items: center; gap: 15px; margin-top: 21px; line-height: 1; }
.plan-time > span:first-child { font-family: var(--english); font-size: 77px; letter-spacing: -.02em; }
.plan-time > span:last-child { color: var(--muted); font-size: 8px; letter-spacing: .15em; }
.plan-time small { display: block; font-size: 11px; margin-top: 7px; letter-spacing: .09em; }
.plan h3 { font-size: 22px; margin-top: 24px; letter-spacing: .04em; }
.plan-description { font-size: 11px; color: var(--muted); margin-top: 10px; letter-spacing: .01em; line-height: 1.9; }
.plan-price { display: flex; align-items: baseline; gap: 9px; font-family: var(--english); font-size: 39px; margin-top: 28px; line-height: 1.5; }
.plan-price > span { font-family: var(--sans); font-size: 11px; letter-spacing: .05em; }
.plan-link { margin-top: 22px; padding-top: 19px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-size: 12px; min-height: 46px; letter-spacing: .04em; }
.plan-link .icon { width: 18px; height: 18px; }
.plan-link:hover { color: var(--gold); }
.plan-featured { background: var(--ink); color: #f5ebdc; border-color: var(--ink); box-shadow: 0 14px 24px #31251b12; }
.plan-featured .plan-en { color: #ccb899; }
.plan-featured .plan-time > span:last-child, .plan-featured .plan-description { color: #d1c3af; }
.plan-featured .plan-link { border-color: #756552; }
.plan-featured .plan-link:hover { color: #d9be94; }
.plan-badge { position: absolute; height: 31px; top: -16px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; color: var(--ink); background: #d6bf9a; padding: 2px 17px; font-size: 10px; letter-spacing: .08em; }
.plan-badge .icon { width: 12px; height: 12px; }
.price-note { margin-top: 29px; text-align: center; font-size: 11px; line-height: 2; color: var(--muted); letter-spacing: .03em; }

.fragrance { padding-top: 116px; padding-bottom: 118px; }
.fragrance-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 110px; align-items: center; }
.fragrance-visual { position: relative; padding-bottom: 72px; }
.fragrance-photo { width: calc(100% - 29px); height: 645px; border-radius: 245px 245px 0 0; overflow: hidden; position: relative; background: #d5c5ad; }
.fragrance-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 53% 52%; }
.fragrance-photo figcaption { position: absolute; bottom: 16px; left: 22px; color: #f4e5d0; font-size: 9px; background: #2c211a8a; padding: 1px 7px; letter-spacing: .035em; }
.fragrance-quote { position: absolute; bottom: 0; right: -22px; width: 335px; background: #e9e1d4; padding: 30px 33px 29px; box-shadow: 0 8px 34px #43362808; }
.fragrance-quote > span { display: block; }
.fragrance-quote .eyebrow { font-size: 8px; letter-spacing: .14em; }
.fragrance-quote > span:nth-child(2) { font-family: var(--english); font-style: italic; font-size: 27px; line-height: 1.4; margin-top: 14px; }
.fragrance-quote > span:last-child { font-size: 10px; color: var(--muted); margin-top: 13px; letter-spacing: .08em; }
.fragrance-copy { padding-bottom: 6px; }
.fragrance-copy > .eyebrow { margin-bottom: 17px; }
.fragrance-copy h2 { font-size: 33px; }
.fragrance-intro { color: var(--muted); font-size: 13px; margin-top: 19px; line-height: 2; letter-spacing: .05em; }
.fragrance-brand { margin-top: 28px; border-top: 1px solid var(--border); padding-top: 19px; }
.fragrance-brand-label { display: flex; align-items: center; gap: 16px; color: var(--gold); font-size: 9px; letter-spacing: .08em; }
.fragrance-brand-label > span:first-child { font-family: var(--english); font-size: 15px; font-style: italic; }
.linari-wordmark { font-family: var(--english); font-size: 35px; line-height: 1.3; margin-top: 12px; letter-spacing: .15em; }
.aa-wordmark { font-family: var(--english); font-size: 22px; line-height: 1.05; letter-spacing: .09em; margin-top: 14px; }
.brand-origin { font-size: 10px; margin-top: 7px; color: #8a775c; letter-spacing: .08em; }
.fragrance-brand > p:last-child { color: var(--muted); font-size: 12px; margin-top: 9px; line-height: 1.9; letter-spacing: .04em; }
.selection-note { font-size: 10px; line-height: 1.8; margin-top: 21px; color: var(--muted); }

.space { background: #ece6dc; padding-top: 82px; padding-bottom: 56px; }
.space h2 { font-size: 32px; }
.space-label { font-size: 9px; color: #7d6c56; letter-spacing: .12em; margin-bottom: 8px; text-align: right; }
.space-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 28px; }
.gallery-button { padding: 0; border: 0; background: #bdab91; display: block; width: 100%; height: 418px; position: relative; overflow: hidden; cursor: zoom-in; }
.gallery-button img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.space-main .gallery-button img { object-position: 50% 52%; }
.space-side .gallery-button img { object-position: 51% 57%; }
.gallery-button:hover img { transform: scale(1.03); }
.gallery-zoom { position: absolute; right: 15px; bottom: 15px; border-radius: 50%; border: 1px solid #f0e4d280; width: 38px; height: 38px; background: #392d2380; color: #f9f1e5; display: flex; justify-content: center; align-items: center; }
.gallery-zoom .icon { width: 18px; height: 18px; }
.space-grid figcaption { display: flex; justify-content: space-between; align-items: center; color: #756753; font-size: 11px; margin-top: 14px; letter-spacing: .08em; }
.space-grid figcaption > span:last-child { font-size: 9px; color: #7d7365; }
.space-caption { color: var(--muted); font-size: 11px; letter-spacing: .025em; margin-top: 28px; }

.visit { background: var(--paper-light); padding-top: 94px; padding-bottom: 92px; }
.visit-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.visit-copy h2 { font-size: 35px; margin-top: 16px; }
.visit-details { margin-top: 30px; display: grid; gap: 11px; color: var(--muted); }
.visit-details p { display: flex; align-items: center; gap: 13px; font-size: 13px; letter-spacing: .06em; }
.visit-details .icon { width: 18px; height: 18px; color: var(--gold); }
.visit-details small { display: block; font-size: 11px; margin-top: 6px; }
.arrival-path { display: flex; align-items: center; gap: 21px; margin-top: 31px; border-block: 1px solid var(--border); padding: 23px 0; }
.arrival-stop { display: flex; align-items: center; gap: 13px; }
.floor { font-family: var(--english); font-size: 45px; line-height: 1.2; color: #a18a68; white-space: nowrap; }
.floor > span { font-size: 21px; margin-left: 1px; }
.arrival-stop h3 { font-family: var(--sans); font-size: 12px; letter-spacing: .04em; }
.arrival-stop p { font-size: 10px; color: var(--muted); margin-top: 4px; white-space: nowrap; }
.arrival-connector { color: #af9979; }
.arrival-connector .icon { width: 23px; }
.visit-note, .visit-phone { font-size: 11px; margin-top: 19px; color: var(--muted); }
.booking-card { background: #f0e9de; border: 1px solid #e6dccd; padding: 35px 35px 28px; scroll-margin-top: 116px; }
.booking-card h3 { font-size: 27px; letter-spacing: .05em; margin-top: 10px; }
.booking-intro { margin-top: 7px; font-size: 12px; color: var(--muted); }
.booking-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 25px; }
.field label, .booking-template-wrap > label { display: block; font-size: 10px; letter-spacing: .05em; color: #786a55; margin-bottom: 8px; }
.select-wrap { position: relative; }
.select-wrap select { min-height: 47px; width: 100%; appearance: none; border: 1px solid #ccbea8; background: #faf6ee; padding: 9px 31px 9px 11px; font-size: 11px; border-radius: 0; }
.select-wrap .icon { position: absolute; right: 9px; top: 16px; width: 14px; height: 14px; pointer-events: none; color: #948064; }
.booking-template-wrap { margin-top: 20px; }
.booking-template-wrap textarea { border: 1px solid #d6c9b7; background: #f7f2e9; resize: vertical; display: block; width: 100%; padding: 11px 13px; font-size: 11px; line-height: 1.9; min-height: 107px; border-radius: 0; color: #6a5e4e; }
.booking-actions { margin-top: 18px; }
.copy-button { border: 0; background: transparent; min-height: 40px; padding: 3px 0; display: inline-flex; align-items: center; gap: 7px; font-size: 11px; color: #7e674a; }
.copy-button .icon { width: 16px; height: 16px; }
.copy-button:hover { color: var(--ink-deep); }
.booking-actions > .button { margin-top: 6px; width: 100%; justify-content: space-between; font-size: 13px; }
.booking-status { font-size: 10px; line-height: 1.85; min-height: 38px; margin-top: 11px; color: #776b5a; }
.booking-noscript { font-size: 11px; margin-top: 14px; color: var(--ink); }

.faq { padding-top: 82px; padding-bottom: 94px; }
.faq-layout { display: grid; grid-template-columns: .9fr 1.3fr; gap: 100px; }
.faq h2 { font-size: 32px; margin-top: 15px; }
.faq-intro { font-size: 12px; color: var(--muted); margin-top: 14px; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { display: flex; align-items: center; gap: 17px; padding: 21px 0; min-height: 78px; list-style: none; cursor: pointer; font-size: 13px; letter-spacing: .015em; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-number { flex: 0 0 auto; color: #ad9777; font-family: var(--english); font-size: 18px; font-style: italic; }
.faq-plus { position: relative; flex: 0 0 auto; width: 17px; height: 17px; margin-left: auto; }
.faq-plus::before, .faq-plus::after { position: absolute; content: ""; background: #a28a68; width: 13px; height: 1px; left: 2px; top: 8px; }
.faq-plus::after { transform: rotate(90deg); transition: transform .2s; }
.faq-item[open] .faq-plus::after { transform: rotate(0); }
.faq-item[open] summary { color: var(--gold); }
.faq-answer { padding: 0 31px 24px 35px; font-size: 12px; color: var(--muted); line-height: 2.15; }

.closing { padding: 77px 0 71px; position: relative; background: var(--ink); color: #f1e7d8; overflow: hidden; }
.closing-inner { display: flex; justify-content: space-between; align-items: center; gap: 64px; position: relative; }
.closing .eyebrow { color: #c7af8a; font-size: 10px; }
.closing h2 { font-size: 44px; margin-top: 20px; line-height: 1.65; letter-spacing: .08em; }
.closing-english { font-family: var(--english); font-size: 22px; font-style: italic; color: #bfaa8b; margin-top: 13px; }
.closing-action { padding-right: 80px; min-width: 340px; }
.closing-action p { font-size: 13px; line-height: 2.1; color: #d3c3ae; letter-spacing: .05em; }
.closing-action .button { margin-top: 24px; gap: 37px; }
.closing-arches { position: absolute; width: 730px; height: 670px; right: -35px; top: -155px; transform: rotate(-22deg); }
.closing-arches > span { position: absolute; border: 1px solid #736047; border-radius: 340px 340px 0 0; width: 100%; height: 100%; opacity: .35; }
.closing-arches > span:nth-child(2) { inset: 22px; width: calc(100% - 44px); height: calc(100% - 44px); }
.closing-arches > span:nth-child(3) { inset: 44px; width: calc(100% - 88px); height: calc(100% - 88px); }
.site-footer { background: var(--ink-deep); color: #e3d5c1; padding: 49px 0 24px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 35px; padding-bottom: 38px; }
.footer-brand .brand-han { font-size: 36px; }
.footer-brand .brand-wordmark { font-size: 23px; }
.footer-brand .brand-divider { background: #87745b; height: 32px; }
.footer-links { display: flex; gap: 24px; align-items: center; font-size: 11px; letter-spacing: .04em; }
.footer-links a:hover, .privacy-trigger:hover { color: #fff5e6; }
.back-top { display: inline-flex; align-items: center; gap: 13px; font-size: 8px; letter-spacing: .1em; color: #ccb697; }
.back-top .icon { transform: rotate(-90deg); width: 19px; }
.footer-bottom { border-top: 1px solid #61523f; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 9px; color: #bfae98; letter-spacing: .06em; }
.privacy-trigger { border: 0; background: transparent; padding: 8px 0; color: #bfae98; font-size: 10px; min-height: 36px; }
.concept-disclaimer { margin-top: 9px; font-size: 9px; color: #b4a086; line-height: 1.9; letter-spacing: .02em; }
.mobile-bar { display: none; }

/* Dialogs are progressive enhancement; all core content remains available without JS. */
dialog { border: 0; padding: 0; color: var(--ink); }
dialog::backdrop { background: #261f18c7; backdrop-filter: blur(5px); }
.image-dialog { max-width: min(1100px, 93vw); max-height: 91dvh; background: #342a22; color: #e7dac6; overflow: auto; }
.image-dialog figure img { width: auto; height: auto; max-height: 79dvh; max-width: 90vw; margin-inline: auto; }
.image-dialog figcaption { padding: 15px 20px; text-align: center; font-size: 12px; letter-spacing: .06em; }
.dialog-close { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid #c5b39980; position: absolute; top: 12px; right: 12px; background: #382c21c2; color: #fff2db; z-index: 2; border-radius: 50%; }
.dialog-close .icon { width: 20px; height: 20px; }
.privacy-dialog { background: var(--paper); max-width: min(610px, calc(100vw - 32px)); padding: 42px; max-height: 88dvh; overflow-y: auto; }
.privacy-dialog > h2 { font-size: 27px; margin-top: 16px; }
.privacy-dialog > p:not(.eyebrow) { margin-top: 17px; font-size: 13px; color: var(--muted); line-height: 2; }
.privacy-dialog > .button { margin-top: 27px; }
.privacy-dialog .dialog-close { background: var(--paper); color: var(--ink); }

/* Mid-size desktops and tablets. */
@media (min-width: 1600px) {
  .hero { min-height: 735px; }
  .hero-copy { padding-top: 115px; }
  .hero-visual { min-height: 735px; }
  .hero-photo { height: 670px; }
  .hero-outline { height: 670px; }
}
@media (max-width: 1250px) {
  .container { width: calc(100% - 80px); }
  .header-inner { gap: 22px; }
  .brand { gap: 14px; }
  .brand-wordmark { font-size: 22px; }
  .main-nav { gap: 20px; }
  .main-nav > a { font-size: 12px; }
  .hero-copy { padding-left: 40px; padding-top: 93px; }
  .hero-visual { padding-right: 40px; }
  .hero h1 { font-size: 3.58vw; }
  .hero-english { font-size: 28px; }
  .hero-description { font-size: 13px; }
  .hero-outline { right: 54px; }
  .hero-side-note { right: 12px; }
  .hero-actions { gap: 19px; }
  .hero-actions .button { padding-inline: 21px; gap: 18px; font-size: 12px; }
  .hero-actions .text-link { font-size: 12px; gap: 12px; }
  .hero-photo, .hero-outline { height: 600px; }
  .hero, .hero-visual { min-height: 655px; }
  .hero-seal { bottom: 80px; width: 104px; height: 104px; }
  .hero-seal > .icon { top: 35px; left: 35px; width: 32px; height: 32px; }
  .brand-strip-inner { grid-template-columns: 1.05fr .9fr 1.2fr 1fr; }
  .strip-intro { font-size: 14px; }
  .brand-strip-inner > a { gap: 10px; flex-direction: column; }
  .strip-brand { font-size: 24px; }
  .aa-strip { font-size: 11px; }
  .services-grid { gap: 18px; }
  .service-card { padding-inline: 26px; }
  .fragrance-layout { gap: 74px; }
  .fragrance-copy h2 { font-size: 29px; }
  .fragrance-photo { height: 615px; }
  .fragrance-quote { width: 305px; padding-inline: 28px; right: -7px; }
  .visit-layout { gap: 60px; }
  .arrival-path { gap: 13px; }
  .arrival-stop { gap: 10px; }
  .floor { font-size: 38px; }
  .arrival-stop h3 { font-size: 11px; }
  .arrival-stop p { font-size: 9px; }
  .booking-card { padding-inline: 28px; }
  .faq-layout { gap: 65px; }
  .footer-links { gap: 17px; }
}
@media (max-width: 1000px) {
  :root { --header-height: 84px; }
  html { scroll-padding-top: 102px; }
  .container { width: calc(100% - 60px); }
  .topbar-hours { display: none; }
  .topbar-inner { justify-content: center; }
  .header-inner { gap: 20px; }
  .brand-han { font-size: 36px; }
  .brand-wordmark { font-size: 22px; }
  .brand-wordmark small { font-size: 6px; }
  .brand-divider { height: 32px; }
  .header-booking { margin-left: auto; }
  .menu-toggle { display: inline-flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
  .menu-toggle[aria-expanded="true"] .menu-open-icon { display: none; }
  .menu-toggle[aria-expanded="true"] .menu-close-icon { display: block; }
  .main-nav { position: absolute; top: calc(var(--header-height) - 1px); left: 0; right: 0; background: var(--paper-light); border-bottom: 1px solid var(--border); box-shadow: 0 20px 30px #30251a0a; padding: 15px 30px 25px; display: none; flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav.is-open { display: flex; }
  .main-nav > a { border-bottom: 1px solid #e9e0d3; padding: 12px 2px; font-size: 14px; }
  .main-nav .nav-mobile-booking { display: flex; align-items: center; justify-content: space-between; margin-top: 7px; color: var(--gold); border-bottom: 0; }
  .main-nav > a::after { display: none; }
  .hero-copy { padding-left: 30px; padding-top: 78px; padding-bottom: 65px; }
  .hero-visual { padding-left: 20px; padding-right: 30px; padding-bottom: 35px; }
  .hero-eyebrow { font-size: 9px; letter-spacing: .13em; gap: 10px; }
  .hero-eyebrow > span { width: 21px; }
  .hero h1 { font-size: 3.7vw; line-height: 1.8; }
  .hero-english { font-size: 24px; margin-top: 18px; }
  .hero-description { font-size: 12px; letter-spacing: .015em; margin-top: 19px; }
  .hero-actions { gap: 15px; margin-top: 28px; flex-wrap: wrap; }
  .hero-actions .button { padding-inline: 17px; font-size: 11px; min-height: 50px; }
  .hero-actions .text-link { font-size: 11px; gap: 10px; }
  .hero-notes { font-size: 9px; gap: 14px; margin-top: 24px; }
  .hero, .hero-visual { min-height: 562px; }
  .hero-photo, .hero-outline { height: 520px; }
  .hero-outline { right: 40px; top: 17px; left: 7px; }
  .hero-seal { width: 84px; height: 84px; bottom: 64px; left: -13px; }
  .hero-seal > .icon { top: 28px; left: 29px; width: 26px; height: 26px; }
  .hero-photo figcaption { left: 65px; bottom: 18px; }
  .hero-photo figcaption > span:first-child { font-size: 7px; }
  .hero-photo figcaption > span:last-child { font-size: 8px; }
  .hero-side-note { right: 9px; font-size: 8px; }
  .hero-watermark { left: 25px; font-size: 170px; bottom: -35px; }
  .brand-strip-inner { grid-template-columns: 1fr 1fr 1fr; }
  .strip-intro { display: none; }
  .brand-strip-inner > a { min-height: 56px; }
  .brand-strip-inner > a:first-of-type { border-left: 0; }
  .brand-strip-inner { min-height: 100px; }
  .section { padding-block: 74px; }
  .about { padding-bottom: 37px; }
  .about h2 { font-size: 29px; }
  .services { padding-top: 20px; padding-bottom: 52px; }
  .section-heading { gap: 25px; margin-bottom: 30px; }
  .services-grid { gap: 14px; }
  .service-card { padding: 24px 20px 20px; }
  .service-card-top { min-height: 89px; margin-bottom: 21px; }
  .service-art { width: 85px; height: 85px; }
  .service-number { font-size: 23px; }
  .service-card h3 { font-size: 23px; }
  .service-en { font-size: 7px; letter-spacing: .11em; }
  .service-description { font-size: 11px; min-height: 70px; }
  .service-link { font-size: 9px; gap: 4px; }
  .round-arrow { width: 28px; height: 28px; }
  .facial-note { font-size: 10px; }
  .plans-grid { gap: 14px; }
  .plan { padding: 34px 22px 24px; }
  .plan-en { font-size: 7px; }
  .plan-time { gap: 10px; }
  .plan-time > span:first-child { font-size: 65px; }
  .plan h3 { font-size: 18px; }
  .plan-description { font-size: 10px; min-height: 38px; }
  .plan-price { font-size: 35px; }
  .plan-link { font-size: 10px; }
  .fragrance-layout { gap: 45px; }
  .fragrance-copy h2 { font-size: 25px; }
  .fragrance-photo { height: 590px; width: calc(100% - 12px); }
  .fragrance-quote { width: 270px; padding: 24px; }
  .fragrance-quote > span:nth-child(2) { font-size: 25px; }
  .fragrance-brand { margin-top: 24px; }
  .space h2 { font-size: 27px; }
  .space-label { font-size: 8px; max-width: 150px; }
  .gallery-button { height: 340px; }
  .space-grid { gap: 20px; }
  .visit-layout { gap: 32px; }
  .visit-copy h2 { font-size: 28px; }
  .visit-details p { font-size: 11px; }
  .arrival-path { flex-direction: column; align-items: flex-start; gap: 8px; padding-block: 20px; }
  .arrival-connector { margin-left: 11px; }
  .arrival-connector .icon { transform: rotate(90deg); width: 17px; height: 17px; }
  .arrival-stop { gap: 20px; }
  .arrival-stop h3 { font-size: 12px; }
  .arrival-stop p { font-size: 10px; }
  .booking-card { padding: 30px 24px 23px; }
  .booking-card h3 { font-size: 22px; }
  .booking-fields { grid-template-columns: 1fr; gap: 13px; }
  .field label { margin-bottom: 6px; }
  .booking-template-wrap { margin-top: 17px; }
  .booking-intro { font-size: 11px; }
  .faq-layout { grid-template-columns: .8fr 1.2fr; gap: 44px; }
  .faq h2 { font-size: 27px; }
  .faq-item summary { font-size: 11px; gap: 12px; }
  .faq-intro { font-size: 11px; }
  .closing h2 { font-size: 38px; }
  .closing-action { padding-right: 30px; min-width: 280px; }
  .closing-inner { gap: 35px; }
  .closing-english { font-size: 19px; }
  .footer-top { flex-wrap: wrap; gap: 28px; }
  .footer-links { margin-left: auto; }
  .back-top { display: none; }
  .footer-brand .brand-wordmark { font-size: 20px; }
  .footer-links { font-size: 10px; }
}

/* Phones. */
@media (max-width: 700px) {
  :root { --header-height: 74px; }
  body { padding-bottom: calc(65px + env(safe-area-inset-bottom)); }
  html { scroll-padding-top: 94px; }
  .container { width: calc(100% - 44px); }
  .topbar { min-height: 29px; }
  .topbar-inner { min-height: 29px; }
  .topbar-location { font-size: 8px; gap: 8px; letter-spacing: .05em; }
  .topbar-location .icon { width: 10px; height: 10px; }
  .topbar-separator { margin-inline: 2px; }
  .header-inner { gap: 12px; }
  .brand { gap: 12px; }
  .brand-han { font-size: 34px; }
  .brand-divider { height: 29px; }
  .brand-wordmark { font-size: 20px; letter-spacing: .13em; }
  .brand-wordmark small { font-size: 5.4px; letter-spacing: .13em; margin-top: 6px; }
  .header-booking { font-size: 10px; border: 0; gap: 7px; padding: 8px 0; }
  .header-booking .icon { width: 15px; height: 15px; }
  .menu-toggle { padding: 8px; margin-right: -9px; }
  .menu-toggle .icon { width: 23px; height: 23px; }
  .main-nav { padding-inline: 22px; }
  .hero { display: flex; flex-direction: column; min-height: auto; }
  .hero-copy { padding: 37px 22px 33px; text-align: center; }
  .hero-eyebrow { justify-content: center; font-size: 8px; letter-spacing: .17em; margin-bottom: 20px; }
  .hero-eyebrow > span { display: none; }
  .hero h1 { font-size: clamp(28px, 7.55vw, 44px); line-height: 1.8; letter-spacing: .015em; }
  .hero-english { font-size: 24px; margin-top: 9px; }
  .hero-description { font-size: 11px; letter-spacing: .055em; margin-top: 17px; line-height: 2.05; }
  .hero-actions { justify-content: center; flex-wrap: nowrap; margin-top: 24px; gap: 21px; }
  .hero-actions .button { min-height: 49px; padding: 12px 17px; font-size: 11px; gap: 14px; }
  .hero-actions .text-link { min-height: 42px; font-size: 11px; gap: 10px; }
  .hero-notes { justify-content: center; font-size: 9px; gap: 17px; margin-top: 23px; }
  .hero-watermark { display: none; }
  .hero-visual { min-height: auto; padding: 11px 35px 30px; width: min(100%, 470px); align-self: center; }
  .hero-photo { height: 395px; border-radius: 200px 200px 0 0; }
  .hero-photo img { object-position: 53% 53%; }
  .hero-outline { top: 0; left: 23px; right: 47px; height: 392px; border-radius: 210px 210px 0 0; }
  .hero-seal { left: 10px; bottom: 57px; width: 79px; height: 79px; }
  .hero-seal > .icon { top: 26px; left: 27px; width: 25px; height: 25px; }
  .hero-photo figcaption { left: 65px; right: 10px; bottom: 16px; gap: 1px; }
  .hero-photo figcaption > span:first-child { font-size: 7px; letter-spacing: .1em; }
  .hero-photo figcaption > span:last-child { font-size: 8px; }
  .hero-side-note { right: 12px; top: 132px; font-size: 7px; letter-spacing: .21em; }
  .brand-strip-inner { width: calc(100% - 22px); min-height: 96px; }
  .brand-strip-inner > a { gap: 6px; min-height: 57px; padding: 2px 7px; }
  .brand-strip-inner > a > span:last-child { font-size: 8px; letter-spacing: 0; }
  .strip-brand { font-size: 19px; letter-spacing: .08em; }
  .aa-strip { font-size: 9px; letter-spacing: .025em; }
  .strip-space { font-size: 8px; gap: 4px; line-height: 1.2; }
  .strip-space .icon { width: 18px; height: 18px; }
  .section { padding-block: 59px; }
  .eyebrow { font-size: 8px; letter-spacing: .16em; }
  h2 { font-size: 27px; line-height: 1.7; letter-spacing: .035em; }
  .about { padding-top: 54px; padding-bottom: 29px; }
  .about-emblem { margin-bottom: 12px; }
  .about-emblem .icon { width: 30px; height: 30px; }
  .about .eyebrow { margin-bottom: 17px; }
  .about h2 { font-size: 27px; line-height: 1.8; margin-bottom: 19px; }
  .about h2 > span { display: block; margin-left: 0; }
  .about p:not(.eyebrow) { font-size: 11px; letter-spacing: .035em; line-height: 2.2; }
  .about p.about-closing { margin-top: 12px; }
  .fine-line { height: 31px; margin-top: 21px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 15px; margin-bottom: 25px; }
  .section-heading .eyebrow { margin-bottom: 10px; }
  .section-heading-note { display: none; }
  .services { padding-top: 24px; padding-bottom: 43px; }
  .services-grid { grid-template-columns: 1fr; gap: 15px; }
  .service-card { position: relative; padding: 25px 24px 19px; }
  .service-card-top { min-height: 32px; margin-bottom: 16px; }
  .service-number { font-size: 23px; }
  .service-art { position: absolute; right: 25px; top: 22px; width: 78px; height: 78px; }
  .service-en { font-size: 8px; letter-spacing: .13em; }
  .service-card h3 { font-size: 26px; margin-top: 4px; }
  .service-description { font-size: 12px; line-height: 2; min-height: 0; margin-top: 13px; max-width: 95%; }
  .service-link { font-size: 10px; margin-top: 22px; padding-top: 14px; }
  .round-arrow { width: 32px; height: 32px; }
  .facial-note { flex-direction: column; align-items: flex-start; gap: 9px; margin-top: 23px; font-size: 10px; }
  .facial-note > a { gap: 8px; }
  .facial-note > span .icon { width: 14px; height: 14px; }
  .centered { display: block; }
  .section-heading.centered > p:last-child { font-size: 11px; margin-top: 12px; line-height: 2; max-width: 270px; margin-inline: auto; }
  .pricing { padding-top: 52px; padding-bottom: 41px; }
  .pricing .section-heading { margin-bottom: 34px; }
  .plans-grid { grid-template-columns: 1fr; gap: 24px; max-width: 420px; }
  .plan { padding: 29px 25px 20px; display: grid; grid-template-columns: 1fr 1fr; column-gap: 14px; }
  .plan-en { font-size: 8px; grid-column: 1 / -1; }
  .plan-time { grid-column: 1; grid-row: 2 / 4; margin-top: 15px; gap: 11px; align-self: start; }
  .plan-time > span:first-child { font-size: 64px; }
  .plan-time > span:last-child { font-size: 6px; }
  .plan-time small { font-size: 9px; }
  .plan h3 { grid-column: 2; grid-row: 2; margin-top: 21px; font-size: 17px; letter-spacing: .015em; }
  .plan-description { grid-column: 2; grid-row: 3; margin-top: 6px; font-size: 10px; line-height: 1.9; min-height: 0; }
  .plan-price { grid-column: 1 / -1; margin-top: 23px; font-size: 33px; }
  .plan-price > span { font-size: 10px; }
  .plan-link { grid-column: 1 / -1; font-size: 11px; margin-top: 12px; padding-top: 14px; }
  .plan-badge { font-size: 9px; height: 28px; top: -14px; }
  .price-note { text-align: left; font-size: 9px; margin-top: 23px; line-height: 2; }
  .fragrance { padding-top: 54px; padding-bottom: 54px; }
  .fragrance-layout { grid-template-columns: 1fr; gap: 42px; }
  .fragrance-visual { padding: 0 12px 73px 0; max-width: 450px; width: 100%; margin-inline: auto; }
  .fragrance-photo { height: 426px; width: calc(100% - 30px); border-radius: 175px 175px 0 0; }
  .fragrance-photo img { object-position: 50% 50%; }
  .fragrance-photo figcaption { bottom: 15px; left: 13px; font-size: 7px; }
  .fragrance-quote { right: 0; width: 247px; padding: 21px 23px; }
  .fragrance-quote .eyebrow { font-size: 7px; }
  .fragrance-quote > span:nth-child(2) { font-size: 24px; margin-top: 11px; }
  .fragrance-quote > span:last-child { font-size: 9px; margin-top: 10px; }
  .fragrance-copy > .eyebrow { margin-bottom: 13px; }
  .fragrance-copy h2 { font-size: 28px; }
  .fragrance-intro { font-size: 12px; margin-top: 16px; }
  .fragrance-brand { margin-top: 25px; padding-top: 17px; }
  .fragrance-brand-label { font-size: 8px; }
  .linari-wordmark { font-size: 34px; }
  .aa-wordmark { font-size: 24px; }
  .fragrance-brand > p:last-child { font-size: 12px; }
  .selection-note { font-size: 9px; }
  .space { padding-top: 49px; padding-bottom: 35px; }
  .space h2 { font-size: 25px; max-width: 290px; }
  .space-label { font-size: 8px; text-align: left; max-width: none; margin-top: -3px; margin-bottom: 0; }
  .space-grid { grid-template-columns: 1fr; gap: 25px; }
  .gallery-button { height: 275px; }
  .space-side .gallery-button { height: 318px; }
  .space-side .gallery-button img { object-position: 50% 53%; }
  .space-grid figcaption { font-size: 10px; margin-top: 11px; }
  .space-grid figcaption > span:last-child { font-size: 8px; }
  .space-caption { font-size: 10px; line-height: 2; margin-top: 24px; }
  .visit { padding-top: 53px; padding-bottom: 48px; }
  .visit-layout { grid-template-columns: 1fr; gap: 33px; }
  .visit-copy h2 { font-size: 28px; }
  .visit-details { margin-top: 22px; }
  .visit-details p { font-size: 12px; }
  .arrival-path { flex-direction: row; align-items: center; justify-content: space-between; gap: 9px; margin-top: 25px; padding-block: 21px; }
  .arrival-stop { gap: 10px; }
  .arrival-stop h3 { font-size: 10px; }
  .arrival-stop p { font-size: 8px; margin-top: 4px; }
  .floor { font-size: 35px; }
  .floor > span { font-size: 17px; }
  .arrival-connector { margin: 0; }
  .arrival-connector .icon { transform: none; width: 15px; height: 15px; }
  .visit-note { font-size: 10px; margin-top: 15px; }
  .booking-card { padding: 27px 22px 20px; scroll-margin-top: 94px; }
  .booking-card h3 { font-size: 25px; }
  .booking-intro { font-size: 11px; }
  .booking-fields { margin-top: 23px; gap: 14px; }
  .field label, .booking-template-wrap > label { font-size: 10px; }
  .select-wrap select { font-size: 13px; min-height: 48px; }
  .booking-template-wrap textarea { font-size: 11px; min-height: 114px; }
  .booking-actions > .button { font-size: 12px; min-height: 52px; }
  .copy-button { font-size: 11px; }
  .booking-status { font-size: 9px; min-height: 34px; }
  .faq { padding-top: 47px; padding-bottom: 54px; }
  .faq-layout { grid-template-columns: 1fr; gap: 28px; }
  .faq h2 { font-size: 27px; margin-top: 12px; }
  .faq-intro { font-size: 11px; margin-top: 12px; }
  .faq-item summary { font-size: 12px; gap: 12px; padding-block: 20px; min-height: 74px; }
  .faq-number { font-size: 16px; }
  .faq-plus { width: 15px; }
  .faq-answer { padding-left: 30px; padding-right: 14px; font-size: 11px; }
  .closing { padding-block: 51px; }
  .closing-inner { flex-direction: column; align-items: flex-start; gap: 29px; }
  .closing h2 { font-size: 34px; line-height: 1.7; margin-top: 15px; }
  .closing .eyebrow { font-size: 8px; }
  .closing-english { font-size: 18px; }
  .closing-action { padding-right: 0; min-width: 0; }
  .closing-action p { font-size: 12px; }
  .closing-action .button { font-size: 12px; margin-top: 21px; }
  .closing-arches { width: 460px; height: 600px; right: -203px; top: -40px; opacity: .65; }
  .site-footer { padding-top: 36px; padding-bottom: 24px; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 28px; padding-bottom: 27px; }
  .footer-brand .brand-han { font-size: 35px; }
  .footer-brand .brand-wordmark { font-size: 23px; }
  .footer-links { width: 100%; justify-content: space-between; flex-wrap: wrap; margin-left: 0; gap: 10px; font-size: 10px; }
  .footer-links > a { min-height: 35px; display: inline-flex; align-items: center; }
  .footer-bottom { display: grid; grid-template-columns: 1fr auto; align-items: start; row-gap: 3px; font-size: 9px; padding-top: 19px; }
  .footer-bottom > span:nth-child(2) { grid-column: 1; grid-row: 2; font-size: 8px; }
  .privacy-trigger { grid-column: 2; grid-row: 1 / 3; font-size: 9px; padding: 0; min-height: 35px; }
  .concept-disclaimer { font-size: 8px; margin-top: 15px; color: #bfa98b; }
  .mobile-bar { position: fixed; z-index: 50; bottom: 0; left: 0; right: 0; min-height: calc(65px + env(safe-area-inset-bottom)); padding: 0 12px env(safe-area-inset-bottom); background: #faf6eef7; border-top: 1px solid #d5c8b3; box-shadow: 0 -4px 18px #3226190b; display: grid; grid-template-columns: 1fr 1fr 1.55fr; align-items: center; gap: 3px; }
  .mobile-bar > a { display: flex; flex-direction: column; gap: 3px; align-items: center; justify-content: center; min-height: 57px; font-size: 10px; letter-spacing: .035em; }
  .mobile-bar .icon { width: 18px; height: 18px; }
  .mobile-bar > .mobile-booking { flex-direction: row; gap: 9px; min-height: 44px; margin-left: 5px; background: var(--ink); color: var(--paper); font-size: 11px; padding-inline: 10px; }
  .mobile-booking > .icon:last-child { width: 14px; height: 14px; }
  .privacy-dialog { padding: 37px 24px 28px; }
  .privacy-dialog > h2 { font-size: 23px; }
  .privacy-dialog > p:not(.eyebrow) { font-size: 12px; }
  .image-dialog figcaption { font-size: 10px; }
}
@media (max-width: 370px) {
  .container { width: calc(100% - 36px); }
  .brand-wordmark { font-size: 18px; }
  .brand-han { font-size: 31px; }
  .brand { gap: 9px; }
  .header-inner { gap: 8px; }
  .header-booking { font-size: 9px; gap: 5px; }
  .hero-copy { padding-inline: 18px; }
  .hero-actions { gap: 15px; }
  .hero-actions .button { font-size: 10px; gap: 10px; padding-inline: 14px; }
  .hero-actions .text-link { font-size: 10px; }
  .hero-description { font-size: 10px; }
  .hero-photo, .hero-outline { height: 354px; }
  .hero-seal { bottom: 55px; }
  .plan { padding-inline: 20px; column-gap: 10px; }
  .plan h3 { font-size: 16px; }
  .plan-time > span:first-child { font-size: 57px; }
  .plan-time { gap: 8px; }
  .arrival-path { gap: 6px; }
  .arrival-stop { gap: 7px; }
  .floor { font-size: 30px; }
  .arrival-stop h3 { font-size: 9px; }
  .arrival-stop p { font-size: 7px; }
  .booking-card { padding-inline: 19px; }
  .booking-card h3 { font-size: 23px; }
  .faq-item summary { font-size: 11px; }
  .facial-note > a { gap: 6px; font-size: 9px; }
  .topbar-location { font-size: 7px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
@media print {
  .site-header { position: static; }
  .topbar, .header-booking, .menu-toggle, .floating-line, .mobile-bar, .closing, .copy-button, .gallery-zoom, .privacy-trigger { display: none !important; }
  body { padding-bottom: 0; }
  .section { padding-block: 35px; }
  .service-card, .plan, .fragrance-layout, .visit-layout { break-inside: avoid; }
  .site-footer { background: #fff; color: #333; }
}

/* V2: approved lobby concept; focus the reception and S-curve on desktop. */
@media (max-width: 600px) {
  .hero-photo img { object-position: 50% 50%; }
  .space-main .gallery-button { height: auto; aspect-ratio: 1672 / 941; }
}

/* V3 · Fixed reservation concierge. Six channels, no external widget or font. */
.contact-dock { display: none; }
.contact-icon { width: 28px; height: 28px; display: block; flex: 0 0 auto; }
.contact-symbol { --contact-logo-ink: #06c755; background: #06c755; color: #fff; display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; flex: 0 0 auto; }
.contact-whatsapp .contact-symbol { --contact-logo-ink: #15994e; background: #15994e; }
.contact-wechat .contact-symbol { --contact-logo-ink: #10a85a; background: #10a85a; }
.contact-kakaotalk .contact-symbol { --contact-logo-ink: #fee500; background: #fee500; color: #352820; }
.contact-phone .contact-symbol { --contact-logo-ink: #78624a; background: #78624a; }
.contact-messenger .contact-symbol { --contact-logo-ink: #7358da; background: #7358da; }
.contact-phone .contact-icon { width: 25px; height: 25px; }
.contact-launcher { position: fixed; right: max(20px, env(safe-area-inset-right)); bottom: max(24px, env(safe-area-inset-bottom)); z-index: 55; display: inline-flex; gap: 12px; align-items: center; justify-content: center; min-height: 56px; padding: 12px 20px; background: var(--ink); color: var(--paper-light); border: 1px solid var(--gold-light); border-radius: 30px; box-shadow: 0 6px 26px #35261826; font-size: 13px; letter-spacing: .06em; transition: background .2s, transform .2s; }
.contact-launcher:hover { background: #625142; transform: translateY(-2px); }
.contact-launcher > .icon:last-child { width: 15px; height: 15px; }
.contact-dialog { width: min(520px, calc(100vw - 32px)); max-height: calc(100vh - 40px); max-height: calc(100dvh - 40px); border: 1px solid #dfd3c2; border-radius: 22px; padding: 30px 30px 22px; background: var(--paper-light); overflow-y: auto; overscroll-behavior: contain; box-shadow: 0 24px 90px #21160933; scrollbar-width: thin; scrollbar-color: var(--gold-light) var(--paper-light); }
.contact-dialog::backdrop { background: #322a236b; backdrop-filter: blur(4px); }
.contact-close { position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); color: var(--ink); background: var(--paper-light); display: flex; align-items: center; justify-content: center; }
.contact-close:hover { background: var(--sand); }
.contact-dialog-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 17px; line-height: 1.3; color: #82684c; }
.contact-dialog-brand > span:first-child { font-family: var(--serif); font-size: 29px; border-right: 1px solid var(--border); padding-right: 12px; }
.contact-dialog-brand > span:last-child { font-family: var(--english); font-size: 16px; letter-spacing: .19em; }
.contact-dialog > .eyebrow { font-size: 9px; }
.contact-dialog h2 { font-size: 32px; letter-spacing: .12em; margin-top: 5px; line-height: 1.7; }
.contact-intro { color: var(--muted); font-size: 13px; margin-top: 8px; line-height: 1.9; }
.contact-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.contact-choice { appearance: none; display: flex; align-items: center; gap: 12px; min-height: 80px; width: 100%; padding: 14px 12px; text-align: left; background: #fffefa; border: 1px solid var(--border); border-radius: 12px; color: var(--ink); transition: border-color .2s, background .2s, box-shadow .2s; }
.contact-choice:hover, .contact-choice.is-selected { background: #f1eadd; border-color: #a58b68; box-shadow: 0 2px 7px #47342108; }
.contact-copy { display: flex; flex-direction: column; min-width: 0; gap: 4px; }
.contact-label { font-size: 12px; font-weight: 500; line-height: 1.4; white-space: nowrap; letter-spacing: .005em; }
.contact-hint { font-size: 10px; line-height: 1.5; color: var(--muted); overflow-wrap: anywhere; }
.contact-choice.is-pending .contact-hint { color: #8c7a63; }
.contact-detail { background: #f0e8dc; border: 1px solid #ded0ba; border-radius: 12px; padding: 19px 18px; margin-top: 16px; }
.contact-detail h3 { font-family: var(--sans); font-weight: 500; font-size: 14px; line-height: 1.8; }
.contact-detail h3:focus { outline: none; }
.contact-detail > p { font-size: 12px; color: var(--muted); line-height: 1.9; margin-top: 7px; }
.contact-fallback { background: var(--ink); color: var(--paper-light); display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; border-radius: 8px; padding: 10px 15px; margin-top: 15px; font-size: 12px; }
.contact-fallback .contact-icon { --contact-logo-ink: #433a32; width: 25px; height: 25px; }
.contact-fallback .icon { width: 17px; height: 17px; }
.contact-footer-note { display: flex; align-items: flex-start; justify-content: center; gap: 9px; margin-top: 22px; border-top: 1px solid var(--border); padding-top: 17px; font-size: 11px; color: var(--muted); line-height: 1.8; }
.contact-footer-note .icon { width: 16px; height: 16px; margin-top: 2px; }
.contact-preview-note { color: #8c7a63; text-align: center; font-size: 10px; margin-top: 12px; }
.wechat-qr { max-width: 240px; margin: 18px auto 0; text-align: center; }
.wechat-qr img { background: #fff; object-fit: contain; width: 100%; height: auto; border: 10px solid #fff; }
.wechat-qr figcaption { margin-top: 10px; font-size: 11px; color: var(--muted); }
.contact-qr-save { display: flex; width: fit-content; margin: 7px auto; font-size: 12px; }
.wechat-id-label { display: block; margin-top: 17px; font-size: 11px; color: var(--muted); }
.wechat-id-row { display: flex; gap: 8px; margin-top: 6px; }
.wechat-id-row input { min-width: 0; width: 100%; border: 1px solid var(--border); background: var(--paper-light); padding: 10px; font-size: 14px; border-radius: 5px; }
.wechat-id-row button { flex-shrink: 0; border: 1px solid var(--border); border-radius: 5px; background: var(--paper-light); padding: 10px; font-size: 11px; min-height: 46px; }
.wechat-id-row .icon { width: 15px; height: 15px; margin-right: 6px; }
.contact-copy-status { min-height: 22px; }

/* Large screens: a narrow, permanently fixed vertical dock. */
@media (min-width: 1200px) and (min-height: 760px) {
  .contact-dock { position: fixed; z-index: 55; display: block; top: 50%; right: 12px; transform: translateY(-50%); width: 88px; overflow: hidden; background: #fffcf6f5; border: 1px solid #cbb89b; border-radius: 19px; box-shadow: 0 8px 32px #392c1924; }
  .contact-dock-heading { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 15px 5px 12px; background: var(--ink); color: #fbf5e9; min-height: 65px; line-height: 1.4; }
  .contact-dock-heading > span { font-size: 12px; letter-spacing: .07em; }
  .contact-dock-heading > small { font-size: 8px; color: #d7c2a2; letter-spacing: .15em; }
  .contact-dock-heading:hover { background: #625142; }
  .contact-dock-list { padding: 5px 6px 6px; display: grid; gap: 0; }
  .contact-dock-item { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; min-height: 66px; padding: 8px 0 7px; width: 100%; border: 0; background: transparent; color: var(--ink); border-radius: 9px; transition: background .2s; }
  .contact-dock-item:hover { background: #eee5d7; }
  .contact-dock-item .contact-symbol { width: 33px; height: 33px; }
  .contact-dock-item .contact-icon { width: 26px; height: 26px; }
  .contact-dock-item .contact-label { font-size: 10px; font-weight: 400; line-height: 1.5; }
  .contact-dock-item.contact-phone .contact-icon { width: 22px; height: 22px; }
  .contact-pending-dot { position: absolute; width: 5px; height: 5px; border: 1px solid #b09b7e; border-radius: 50%; right: 10px; top: 12px; background: #fffcf6; }
  .contact-dock-collapse { display: none; }
  .contact-enhanced .contact-dock-collapse { display: flex; width: 100%; min-height: 35px; padding: 6px; align-items: center; justify-content: center; gap: 5px; font-size: 9px; color: var(--muted); border: 0; border-top: 1px solid var(--border); background: #f3eddf; }
  .contact-dock-collapse .icon { width: 12px; height: 12px; transform: rotate(-90deg); }
  .contact-dock-collapse:hover { background: #e9dfcf; }
  .contact-launcher { display: none; }
  .contact-is-collapsed .contact-dock { display: none; }
  .contact-is-collapsed .contact-launcher { display: flex; }
  .contact-dock a:focus-visible, .contact-dock button:focus-visible { outline-offset: -3px; outline-color: #b98c48; outline-width: 2px; }
}
@media (min-width: 1200px) and (max-width: 1350px) and (min-height: 760px) {
  .contact-dock { right: 6px; width: 80px; }
  .contact-dock-list { padding-inline: 3px; }
  .contact-dock-item .contact-label { font-size: 9px; }
  .contact-dock-heading > span { font-size: 11px; }
}
/* Phones: one fixed footer button; the same six channels open in a bottom sheet. */
@media (max-width: 700px) {
  .contact-launcher { display: none; }
  .mobile-bar > .mobile-booking { border-radius: 7px; font-size: 12px; }
  .contact-dialog { width: 100%; max-width: 540px; max-height: calc(100vh - 18px); max-height: calc(100dvh - 18px); margin: auto auto 0; inset: auto 0 0; border-radius: 24px 24px 0 0; padding: 27px 23px calc(23px + env(safe-area-inset-bottom)); border-bottom: 0; }
  .contact-dialog::before { content: ''; display: block; width: 34px; height: 3px; border-radius: 2px; position: absolute; top: 10px; left: calc(50% - 17px); background: #c7b79e; }
  .contact-close { top: 25px; right: 20px; width: 38px; height: 38px; }
  .contact-dialog-brand { margin-bottom: 16px; }
  .contact-dialog-brand > span:first-child { font-size: 26px; }
  .contact-dialog-brand > span:last-child { font-size: 14px; }
  .contact-dialog h2 { font-size: 29px; line-height: 1.6; margin-top: 5px; }
  .contact-intro { font-size: 12px; margin-top: 8px; }
  .contact-options { gap: 9px; margin-top: 20px; }
  .contact-choice { gap: 9px; padding: 12px 10px; min-height: 77px; border-radius: 11px; }
  .contact-symbol { width: 34px; height: 34px; }
  .contact-icon { width: 27px; height: 27px; }
  .contact-label { font-size: 11px; }
  .contact-hint { font-size: 9px; }
  .contact-preview-note { font-size: 9px; margin-top: 10px; }
  .contact-footer-note { margin-top: 19px; padding-top: 15px; font-size: 10px; }
}
@media (max-width: 370px) {
  .contact-dialog { padding-inline: 17px; }
  .contact-choice { gap: 7px; padding-inline: 8px; }
  .contact-choice .contact-symbol { width: 29px; height: 29px; }
  .contact-choice .contact-icon { width: 24px; height: 24px; }
  .contact-label { font-size: 10px; }
  .contact-hint { font-size: 8px; }
}
@media print {
  .contact-dock, .contact-launcher, .contact-dialog { display: none !important; }
}
/* Keep the fixed dock outside the content gutter, including card links. */
@media (min-width: 1200px) and (min-height: 760px) {
  .contact-dock { width: 76px; right: 4px; }
  .contact-dock-list { padding-inline: 3px; }
  .contact-dock-heading > span { font-size: 11px; }
  .contact-dock-item .contact-label { font-size: 9px; }
  .contact-pending-dot { right: 6px; }
  .container { width: min(calc(100% - 180px), 1280px); }
  .hero-copy { padding-left: max(90px, calc((100vw - 1280px) / 2)); }
  .hero-visual { padding-right: max(90px, calc((100vw - 1280px) / 2)); }
  .hero-outline { right: max(105px, calc((100vw - 1250px) / 2)); }
  .hero-side-note { display: none; }
}

/* V4 — Confirmed visit information. All contact data comes from config.php. */
.visit-details { gap: 18px; }
.visit-details p { align-items: flex-start; letter-spacing: .025em; }
.visit-details .icon { margin-top: 5px; }
.visit-details .detail-label { display: block; font-size: 10px; letter-spacing: .12em; color: #82705b; margin-bottom: 3px; }
.visit-details strong { display: block; font-size: 14px; line-height: 1.85; font-weight: 500; color: var(--ink); overflow-wrap: anywhere; }
.visit-details small { font-size: 12px; margin-top: 3px; }
.visit-phone-number { display: inline-flex; align-items: center; min-height: 40px; font-size: 23px; line-height: 1.4; letter-spacing: .055em; font-family: var(--english); color: var(--ink); border-bottom: 1px solid var(--border); font-variant-numeric: tabular-nums; }
.visit-phone-number:hover { color: var(--gold); border-color: var(--gold); }
.visit-transit { display: flex; align-items: flex-start; gap: 13px; margin-top: 21px; padding: 17px 18px; background: #f0e9dd; border-left: 2px solid #a98c63; }
.visit-transit > .icon { width: 22px; height: 22px; margin-top: 2px; color: var(--gold); }
.visit-transit h3 { font-family: var(--sans); font-size: 14px; font-weight: 500; letter-spacing: .025em; }
.visit-transit p { color: var(--muted); font-size: 12px; margin-top: 5px; }
.visit-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 23px; margin-top: 23px; }
.visit-actions .button { font-size: 12px; min-height: 49px; padding: 12px 17px; gap: 12px; }
.visit-call { min-height: 49px; font-size: 12px; gap: 8px; }
.footer-business { font-style: normal; display: grid; grid-template-columns: 1.75fr 1fr 1fr; gap: 22px 30px; padding: 23px 0 29px; border-top: 1px solid #61523f; }
.footer-detail-label { display: block; color: #bca789; font-size: 9px; letter-spacing: .11em; margin-bottom: 10px; }
.footer-business a { display: inline-flex; align-items: center; min-height: 38px; font-size: 13px; gap: 6px; }
.footer-business a:hover { color: #fff5e6; }
.footer-business .icon { width: 15px; height: 15px; }
.footer-business small { display: block; font-size: 10px; color: #c0b19e; margin-top: 3px; }
.footer-business .footer-phone, .footer-hours { font-family: var(--english); font-size: 22px; line-height: 1.6; letter-spacing: .035em; font-variant-numeric: tabular-nums; }
.contact-location-note { display: flex; align-items: flex-start; gap: 8px; font-size: 11px; color: var(--muted); line-height: 1.8; margin-top: 22px; }
.contact-location-note > .icon { width: 16px; height: 16px; margin-top: 2px; color: var(--gold); }
.contact-location-note small { display: block; font-size: 10px; margin-top: 4px; }
.contact-location-note + .contact-footer-note { margin-top: 14px; padding-top: 12px; }
.contact-fallback-phone { background: transparent; color: var(--ink); border: 1px solid #baa589; margin-top: 8px; }
@media (max-width: 1000px) {
  .visit-layout { align-items: start; gap: 35px; }
  .footer-business { grid-template-columns: 1.4fr 1fr; }
  .footer-location { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .visit-details strong { font-size: 14px; }
  .visit-details small { font-size: 12px; }
  .visit-details .detail-label { font-size: 11px; }
  .visit-transit { padding: 16px 14px; }
  .visit-transit h3 { font-size: 14px; }
  .visit-transit p { font-size: 12px; }
  .visit-actions { gap: 16px; }
  .footer-business { gap: 22px 15px; padding-block: 25px; }
  .footer-business a { font-size: 12px; }
  .footer-business .footer-phone, .footer-hours { font-size: 21px; white-space: nowrap; }
  .footer-detail-label { font-size: 8px; }
  .footer-business small { font-size: 10px; line-height: 2; }
}
