/* =========================================================
   SEOUL K-Beauty and Spa — shared stylesheet
   Palette + type sampled directly from the printed brochure.
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Colour — sampled from the brochure artwork */
  --hanji:        #f4e4ca; /* parchment page ground */
  --hanji-light:  #fbf3e4; /* card / surface */
  --hanji-deep:   #e9d4b5; /* recessed band */
  --espresso:     #4a2c13; /* body ink */
  --brand:        #5b381c; /* logo brown */
  --clay:         #7b4c28; /* rules, meta, prices */
  --ink-soft:     #866344; /* captions */
  --blossom:      #e3b5ac; /* cherry-blossom accent */
  --blossom-deep: #b9736a; /* accent on light, hover */
  --night:        #241407; /* photographic plates */

  /* Type */
  --display: "Bodoni Moda", "Didot", Georgia, serif;
  --sans:    "Jost", "Helvetica Neue", Arial, sans-serif;
  --korean:  "Noto Sans KR", var(--sans);

  /* Rhythm */
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --measure: 68ch;
  --shell: 1240px;
  --rule: 1px solid rgba(91, 56, 28, 0.22);
  --radius: 18px;
  --ease: cubic-bezier(.2, .7, .3, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ---------- 3. Base ---------- */
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.72;
  color: var(--espresso);
  background-color: var(--hanji);
  background-image: url("../img/texture-paper.jpg");
  background-size: 560px 560px;
  background-repeat: repeat;
  background-blend-mode: multiply;
  background-position: center top;
  overflow-x: hidden;
}

::selection { background: var(--blossom); color: var(--brand); }

h1, h2, h3, h4 { font-weight: 400; line-height: 1.08; color: var(--brand); }

.display {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.015em;
}

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--clay);
}

.lede { font-size: clamp(1.08rem, 1rem + .5vw, 1.3rem); line-height: 1.62; }
.muted { color: var(--ink-soft); }
p + p { margin-top: 1em; }
strong { font-weight: 500; color: var(--brand); }

.shell { width: min(100% - (2 * var(--gutter)), var(--shell)); margin-inline: auto; }
.narrow { max-width: var(--measure); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--brand); color: var(--hanji-light);
  padding: .75rem 1.25rem; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--blossom-deep);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- 4. Wordmark (rebuilt from the brochure logotype) ---------- */
.wordmark {
  display: inline-flex; align-items: center; gap: .1em;
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--brand);
  text-decoration: none;
  line-height: 1;
}
.wordmark-seal {
  display: inline-grid; place-items: center;
  width: 1.42em; height: 1.42em;
  margin-inline: .06em .28em;
  border-radius: 50%;
  background: var(--brand);
  color: var(--hanji);
  font-family: var(--korean);
  font-size: .46em;
  font-weight: 500;
  letter-spacing: 0;
  transform: translateY(-.04em);
}
.wordmark-sub {
  display: block;
  font-size: .3em;
  letter-spacing: .34em;
  color: var(--clay);
  margin-top: .55em;
}
.wordmark--stacked { flex-direction: column; align-items: flex-start; }

/* ---------- 5. Header ---------- */
.masthead {
  position: sticky; top: 0; z-index: 60;
  background: rgba(244, 228, 202, .86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: var(--rule);
  transition: box-shadow .4s var(--ease), background .4s var(--ease);
}
.masthead.is-stuck { box-shadow: 0 12px 34px -28px rgba(74, 44, 19, .8); }
.masthead-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 74px; padding-block: .85rem;
}
.masthead .wordmark { font-size: 1.16rem; }
.masthead .wordmark-sub { display: none; }

.nav-links { display: flex; align-items: center; gap: clamp(1.1rem, 2.4vw, 2.4rem); }
.nav-link {
  position: relative;
  font-size: .78rem; font-weight: 400;
  letter-spacing: .17em; text-transform: uppercase;
  text-decoration: none; color: var(--clay);
  padding-block: .35rem;
  transition: color .3s var(--ease);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--brand);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav-link:hover, .nav-link:focus-visible { color: var(--brand); }
.nav-link:hover::after, .nav-link:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-link[aria-current="page"] { color: var(--brand); }
.nav-link[aria-current="page"]::after { transform: scaleX(1); background: var(--blossom-deep); }

.nav-tools { display: flex; align-items: center; gap: .75rem; }

.nav-toggle {
  display: none; width: 44px; height: 44px;
  background: none; border: var(--rule); border-radius: 50%;
  cursor: pointer; position: relative;
}
.nav-toggle span {
  position: absolute; left: 50%; width: 17px; height: 1.4px;
  background: var(--brand); transform: translateX(-50%);
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateX(-50%) translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateX(-50%) translateY(-5px) rotate(-45deg); }

/* ---------- 6. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .9rem 1.7rem;
  border: 1px solid var(--brand); border-radius: 999px;
  background: var(--brand); color: var(--hanji);
  font-size: .76rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.btn:hover, .btn:focus-visible { background: var(--blossom-deep); border-color: var(--blossom-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--brand); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--brand); color: var(--hanji); border-color: var(--brand); }
.btn-light { background: transparent; color: var(--hanji-light); border-color: rgba(251, 243, 228, .55); }
.btn-light:hover, .btn-light:focus-visible { background: var(--hanji-light); color: var(--brand); border-color: var(--hanji-light); }
.btn-sm { padding: .68rem 1.2rem; font-size: .68rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ---------- 7. Section furniture ---------- */
.section { padding-block: clamp(4rem, 9vw, 8rem); }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section-band { background: rgba(233, 212, 181, .55); border-block: var(--rule); }

.section-head { display: grid; gap: 1.1rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { font-size: clamp(2.1rem, 1.4rem + 3vw, 4rem); }
.section-head p { max-width: 56ch; }

/* the brochure's circled folio, reused as a step marker */
.folio {
  display: inline-grid; place-items: center;
  width: 2.35rem; height: 2.35rem; flex: 0 0 auto;
  border: 1px solid var(--clay); border-radius: 50%;
  font-size: .8rem; letter-spacing: .04em; color: var(--clay);
}

.rule-blossom {
  width: 100%; height: 1px; border: 0;
  background: linear-gradient(90deg, transparent, rgba(91,56,28,.3) 18%, rgba(91,56,28,.3) 82%, transparent);
}

/* ---------- 8. Photographic plate (mirrors the brochure's full-bleed pages) ---------- */
.plate {
  position: relative;
  min-height: clamp(360px, 56vh, 620px);
  display: grid; align-content: end;
  overflow: hidden;
  background: var(--night);
}
.plate img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.plate::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(36,20,7,.5) 0%, rgba(36,20,7,.08) 30%, rgba(36,20,7,.62) 68%, rgba(36,20,7,.88) 100%);
}
.plate-body { position: relative; z-index: 2; padding-block: clamp(2.5rem, 6vw, 5rem); }
.plate-body .eyebrow { color: #f2d2c9; }
.plate-title {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: clamp(2.6rem, 1.4rem + 6vw, 6rem);
  color: var(--hanji-light);
  margin-top: .35rem;
  text-shadow: 0 2px 30px rgba(36,20,7,.45);
}
.plate-title::after {
  content: ""; display: block; width: min(280px, 60%); height: 1px;
  background: rgba(251,243,228,.65); margin-top: .45rem;
}
.plate-body p { color: rgba(251,243,228,.94); max-width: 46ch; margin-top: 1.1rem; }

/* ---------- 9. Home hero ---------- */
.hero { position: relative; overflow: hidden; border-bottom: var(--rule); }
.hero-grid {
  display: grid; gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  padding-block: clamp(3rem, 7vw, 6.5rem);
}
.hero-title {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: clamp(2.7rem, 1.2rem + 6.2vw, 5.4rem);
  line-height: .98; letter-spacing: -.02em;
  color: var(--brand); margin-top: 1.1rem;
}
.hero-title em { font-style: normal; font-family: var(--sans); font-weight: 200; letter-spacing: -.01em; display: block; }
.hero p { margin-top: 1.6rem; max-width: 46ch; }
.hero .btn-row { margin-top: 2.2rem; }

.hero-figure { position: relative; }
.hero-figure img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 260px 260px var(--radius) var(--radius);
  box-shadow: 0 40px 70px -50px rgba(74,44,19,.9);
}
.hero-seal {
  position: absolute; left: -2.6rem; bottom: -1.2rem;
  width: 128px; height: 128px; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  background: var(--hanji-light); border: 1px solid rgba(91,56,28,.3);
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--clay);
  line-height: 1.7;
}
.hero-seal b { display: block; font-family: var(--display); font-style: italic; font-size: 1.6rem; letter-spacing: 0; color: var(--brand); text-transform: none; }

.hero-blossom {
  position: absolute; right: -6%; top: -12%;
  width: min(42vw, 480px); opacity: .85;
  transform: rotate(6deg);
  pointer-events: none; user-select: none;
}

/* ---------- 10. Ticker ---------- */
.ticker { overflow: hidden; border-block: var(--rule); background: rgba(233,212,181,.5); }
.ticker-track {
  display: flex; gap: 3.5rem; width: max-content;
  padding-block: .9rem;
  animation: drift 42s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker span {
  font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--clay);
  display: inline-flex; align-items: center; gap: 3.5rem; white-space: nowrap;
}
.ticker span::after { content: "✦"; color: var(--blossom-deep); font-size: .7rem; letter-spacing: 0; }
@keyframes drift { to { transform: translateX(-50%); } }

/* ---------- 11. Chapter cards ---------- */
.chapters { display: grid; gap: clamp(1.25rem, 2.4vw, 2rem); grid-template-columns: repeat(3, 1fr); }
.chapter {
  position: relative; display: flex; flex-direction: column;
  background: var(--hanji-light); border: var(--rule); border-radius: var(--radius);
  overflow: hidden; text-decoration: none;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.chapter:hover, .chapter:focus-visible { transform: translateY(-6px); box-shadow: 0 30px 50px -40px rgba(74,44,19,.85); }
.chapter img { aspect-ratio: 4 / 3.4; object-fit: cover; width: 100%; transition: transform .8s var(--ease); }
.chapter:hover img { transform: scale(1.04); }
.chapter-body { padding: 1.5rem 1.6rem 1.8rem; display: grid; gap: .7rem; }
.chapter-body h3 { font-family: var(--display); font-style: italic; font-size: 1.75rem; }
.chapter-body p { font-size: .95rem; color: var(--ink-soft); }
.chapter-more { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--blossom-deep); }

/* ---------- 12. Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split-reverse .split-media { order: 2; }
.split-media img { width: 100%; border-radius: var(--radius); object-fit: cover; aspect-ratio: 4/5; }
.split-body h2 { font-family: var(--display); font-style: italic; font-size: clamp(2rem, 1.3rem + 2.6vw, 3.4rem); }
.split-body > * + * { margin-top: 1.15rem; }

/* ---------- 13. Price menu (the brochure's leader-dot rows) ---------- */
.menu-group { margin-top: clamp(2.5rem, 5vw, 4rem); scroll-margin-top: 100px; }
.menu-group-head { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; margin-bottom: .35rem; }
.menu-group h3 {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.6rem);
}
.menu-note { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }

.menu-card {
  background: rgba(251,243,228,.72); border: var(--rule); border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2.1rem);
  margin-top: 1.1rem;
}
.menu-cols { display: grid; gap: 0 clamp(2rem, 5vw, 4rem); grid-template-columns: repeat(2, 1fr); }
.menu-cols-1 { grid-template-columns: 1fr; }

.price-row {
  display: flex; align-items: baseline; gap: .75rem;
  padding-block: .62rem;
  border-bottom: 1px dotted rgba(123,76,40,.28);
}
.price-row:last-child { border-bottom: 0; }
.price-name { flex: 0 1 auto; }
.price-lead { flex: 1 1 auto; height: 1px; background: rgba(123,76,40,.3); transform: translateY(-.28em); min-width: 1.5rem; }
.price-fig { flex: 0 0 auto; color: var(--clay); font-variant-numeric: tabular-nums; }
.price-fig small { font-size: .66em; letter-spacing: .06em; color: var(--ink-soft); margin-left: .2em; }
.price-desc { font-size: .88rem; color: var(--ink-soft); flex-basis: 100%; margin-top: -.2rem; }

/* ---------- 14. Tier cards (Korean Relaxing Therapy) ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }
.tier {
  background: var(--hanji-light); border: var(--rule); border-radius: var(--radius);
  padding: 1.9rem 1.7rem; display: flex; flex-direction: column; gap: 1rem;
}
.tier-top { display: flex; align-items: center; gap: .9rem; }
.tier h3 { font-family: var(--display); font-style: italic; font-size: 1.7rem; }
.tier-price { font-size: 1.6rem; color: var(--clay); font-variant-numeric: tabular-nums; }
.tier-price span { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); margin-left: .45rem; }
.tier ul { display: grid; gap: .5rem; font-size: .94rem; }
.tier li { display: flex; gap: .6rem; align-items: baseline; color: var(--espresso); }
.tier li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--blossom-deep); flex: 0 0 auto; transform: translateY(-2px); }
.tier-featured { background: var(--brand); border-color: var(--brand); color: var(--hanji-light); }
.tier-featured h3, .tier-featured .tier-price { color: var(--hanji-light); }
.tier-featured .folio { border-color: rgba(251,243,228,.5); color: var(--hanji-light); }
.tier-featured li { color: rgba(251,243,228,.9); }
.tier-featured .tier-price span { color: var(--blossom); }

/* ---------- 15. Value / step lists ---------- */
.steps { display: grid; gap: clamp(1.5rem, 3vw, 2.2rem); grid-template-columns: repeat(4, 1fr); }
.step { display: grid; gap: .85rem; }
.step h3 { font-size: 1.12rem; font-family: var(--sans); font-weight: 400; letter-spacing: .01em; }
.step p { font-size: .93rem; color: var(--ink-soft); }

.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem, 3vw, 2.5rem); }
.fact { border-top: 1px solid rgba(91,56,28,.28); padding-top: 1.1rem; }
.fact b { display: block; font-family: var(--display); font-style: italic; font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.9rem); color: var(--brand); line-height: 1; }
.fact span { display: block; margin-top: .5rem; font-size: .82rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- 16. Signature block ---------- */
.signature {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--night); color: var(--hanji-light);
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
}
.signature img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
.signature-body { padding: clamp(2rem, 5vw, 3.6rem); display: flex; flex-direction: column; justify-content: center; gap: 1.1rem; }
.signature-body h2 { font-family: var(--display); font-style: italic; font-size: clamp(2rem, 1.4rem + 2.4vw, 3.2rem); color: var(--hanji-light); }
.signature-body .eyebrow { color: var(--blossom); }
.signature-body p { color: rgba(251,243,228,.85); }
.signature-price { font-family: var(--display); font-style: italic; font-size: 2.6rem; color: var(--blossom); }

/* ---------- 17. Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; }
.gallery img { aspect-ratio: 1; object-fit: cover; width: 100%; filter: saturate(.94); transition: filter .5s var(--ease), transform .6s var(--ease); }
.gallery img:hover { filter: saturate(1.06); transform: scale(1.02); }

/* ---------- 18. Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }

.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--clay); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem;
  background: rgba(251,243,228,.8);
  border: 1px solid rgba(91,56,28,.28); border-radius: 10px;
  font-size: 1rem; font-weight: 300; color: var(--espresso);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field textarea { min-height: 148px; resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--clay) 50%), linear-gradient(135deg, var(--clay) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 2.75rem; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blossom-deep); background: var(--hanji-light); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field-error { font-size: .82rem; color: #9d3b30; min-height: 1.1em; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #9d3b30; }
.form-note { font-size: .85rem; color: var(--ink-soft); }
.form-status { font-size: .92rem; color: var(--brand); min-height: 1.4em; }

.info-card { background: rgba(251,243,228,.75); border: var(--rule); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.2rem); }
.info-card + .info-card { margin-top: 1.25rem; }
.info-card h3 { font-family: var(--display); font-style: italic; font-size: 1.55rem; margin-bottom: 1rem; }
.info-list { display: grid; gap: 1rem; }
.info-list li { display: grid; grid-template-columns: 26px 1fr; gap: .9rem; align-items: start; }
.info-list svg { width: 18px; height: 18px; margin-top: .32rem; stroke: var(--clay); fill: none; stroke-width: 1.4; }
.info-list a { text-decoration: none; border-bottom: 1px solid rgba(123,76,40,.4); }
.info-list a:hover { color: var(--blossom-deep); border-color: var(--blossom-deep); }

.hours { display: grid; gap: .55rem; }
.hours div { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px dotted rgba(123,76,40,.28); padding-bottom: .5rem; font-size: .95rem; }
.hours div:last-child { border-bottom: 0; }
.hours span:last-child { color: var(--clay); font-variant-numeric: tabular-nums; }

.map-frame { border: var(--rule); border-radius: var(--radius); overflow: hidden; background: var(--hanji-deep); }
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; filter: sepia(.24) saturate(.92); }

/* ---------- 19. Footer ---------- */
.footer { background: var(--brand); color: rgba(251,243,228,.78); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; position: relative; }
.footer .wordmark { color: var(--hanji-light); font-size: 1.3rem; }
.footer .wordmark-seal { background: var(--hanji-light); color: var(--brand); }
.footer .wordmark-sub { color: var(--blossom); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(1.75rem, 4vw, 3rem); }
.footer h4 { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--blossom); margin-bottom: 1.1rem; }
.footer ul { display: grid; gap: .6rem; }
.footer a { text-decoration: none; font-size: .95rem; transition: color .3s var(--ease); }
.footer a:hover, .footer a:focus-visible { color: var(--hanji-light); }
.footer p { font-size: .95rem; }
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.6rem;
  border-top: 1px solid rgba(251,243,228,.2);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .8rem; letter-spacing: .08em; color: rgba(251,243,228,.6);
}

/* floating WhatsApp */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  z-index: 70; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--brand); color: var(--hanji);
  box-shadow: 0 14px 30px -14px rgba(36,20,7,.9);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.wa-float:hover, .wa-float:focus-visible { transform: scale(1.07); background: var(--blossom-deep); }
.wa-float svg { width: 26px; height: 26px; fill: currentColor; }

/* ---------- 20. Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- 21. Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { max-width: 480px; }
  .chapters { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid, .signature { grid-template-columns: 1fr; }
  .split-reverse .split-media { order: 0; }
  .split-media img { aspect-ratio: 16/11; }
  .signature img { min-height: 260px; aspect-ratio: 16/9; }
  .gallery { grid-template-columns: repeat(3, 1fr); }

  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--hanji-light);
    border-bottom: var(--rule);
    padding: .5rem var(--gutter) 1.5rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
    max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav-links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-link { padding-block: 1rem; border-bottom: 1px dotted rgba(123,76,40,.3); font-size: .9rem; }
  .nav-link::after { display: none; }
  .nav-tools .btn { display: none; }
  .nav-links .btn { display: inline-flex; margin-top: 1.25rem; justify-content: center; }
}

@media (max-width: 640px) {
  .hero-blossom { display: none; }
  .menu-cols { grid-template-columns: 1fr; }
  .steps, .facts { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-seal { left: auto; right: 1rem; bottom: -1.5rem; width: 104px; height: 104px; }
  .hero-figure img { border-radius: 160px 160px var(--radius) var(--radius); }
  .price-row { flex-wrap: wrap; }
  .price-lead { min-width: .75rem; }
}

/* ---------- 22. Print ---------- */
@media print {
  .masthead, .wa-float, .footer, .plate::after { display: none; }
  body { background: #fff; color: #000; }
}

/* ---------- 23. Services category chips ---------- */
.chips-bar {
  position: sticky; top: 74px; z-index: 40;
  background: rgba(244, 228, 202, .93);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: var(--rule);
  padding-block: .8rem;
}
.chips { display: flex; gap: .5rem; overflow-x: auto; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chips a {
  flex: 0 0 auto;
  padding: .5rem 1.05rem;
  border: 1px solid rgba(91,56,28,.28); border-radius: 999px;
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  text-decoration: none; color: var(--clay); white-space: nowrap;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.chips a:hover, .chips a:focus-visible { background: var(--hanji-light); color: var(--brand); }
.chips a[aria-current="true"] { background: var(--brand); border-color: var(--brand); color: var(--hanji); }

.sub-head { display: flex; align-items: baseline; gap: .9rem; flex-wrap: wrap; margin: 1.6rem 0 .2rem; }
.sub-head h4 { font-family: var(--display); font-style: italic; font-size: 1.28rem; color: var(--brand); }
.sub-head span { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.menu-addon {
  margin-top: .9rem; padding-top: .8rem; border-top: 1px dotted rgba(123,76,40,.3);
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); text-align: right;
}
.oil-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.oil-list li {
  padding: .42rem .95rem; border: 1px solid rgba(91,56,28,.26); border-radius: 999px;
  font-size: .8rem; color: var(--clay); background: rgba(251,243,228,.6);
}
@media (max-width: 1024px) { .chips-bar { top: 74px; } }
