/* =========================================================================
   Salon template: inner-page components
   ========================================================================= */

/* ---------- page hero (inner pages) ---------- */
.page-hero { padding: clamp(8rem, 16vw, 11rem) 0 clamp(2.5rem, 5vw, 4rem); }
.page-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 5rem); align-items: end; }
.page-hero__title { margin: 0 0 1rem; }
.page-hero__sub { font-size: 1.15rem; color: var(--ink-soft); max-width: 48ch; }
.page-hero__img { aspect-ratio: 16 / 10; border-radius: var(--radius); overflow: hidden; background: var(--surface-2); }
.page-hero__img img { width: 100%; height: 100%; object-fit: cover; }
.page-hero--plain .page-hero__grid { grid-template-columns: 1fr; }
@media (max-width: 860px) { .page-hero { padding-top: 6.5rem; } .page-hero__grid { grid-template-columns: 1fr; } }

/* ---------- services menu ---------- */
.menu-chips { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.5rem; position: sticky; top: 4.6rem; z-index: 5; padding: .6rem 0; background: linear-gradient(var(--bg) 70%, transparent); }
.menu-chips button { padding: .55rem 1.05rem; border-radius: 999px; border: 1px solid var(--line); font-size: .84rem; font-weight: 600; color: var(--ink-soft); background: var(--bg); transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }
.menu-chips button.active, .menu-chips button:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.menu-group { padding: 2.2rem 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 300px 1fr; gap: 2rem 3rem; }
.menu-group__head h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); position: sticky; top: 8rem; }
.menu-group__head p { color: var(--muted); font-size: .92rem; margin-top: .6rem; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: .25rem 1.5rem; padding: 1rem 0; border-bottom: 1px dotted var(--line); align-items: baseline; }
.menu-item:last-child { border-bottom: 0; }
.menu-item__name { font-family: var(--serif); font-size: 1.25rem; }
.menu-item__desc { grid-column: 1; color: var(--ink-soft); font-size: .92rem; }
.menu-item__meta { grid-column: 1; color: var(--muted); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.menu-item__price { grid-column: 2; grid-row: 1 / span 3; font-weight: 700; font-size: 1.05rem; white-space: nowrap; align-self: start; }
.menu-item__price small { font-weight: 500; color: var(--muted); font-size: .78rem; margin-right: .2rem; }
.menu-note { margin-top: 2rem; color: var(--muted); font-size: .9rem; max-width: 60ch; }
@media (max-width: 860px) { .menu-group { grid-template-columns: 1fr; gap: 1rem; } .menu-group__head h3 { position: static; } .menu-chips { top: 4rem; } }

/* ---------- team page ---------- */
.team--page { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 720px) { .team--page { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }

/* ---------- about ---------- */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.story__text p { font-size: 1.08rem; color: var(--ink-soft); }
.story__text p:first-of-type { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); line-height: 1.35; }
.story__img { aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: var(--surface-2); }
.story__img img { width: 100%; height: 100%; object-fit: cover; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: clamp(2.5rem, 5vw, 4rem); }
.stat { border-top: 1px solid var(--ink); padding-top: 1rem; }
.stat__value { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; }
.stat__label { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: .5rem; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.8rem; }
.value__num { font-family: var(--serif); font-style: italic; color: var(--accent); font-size: 1.1rem; }
.value h3 { margin: .8rem 0 .6rem; }
.value p { color: var(--ink-soft); margin: 0; font-size: .96rem; }
@media (max-width: 860px) { .story { grid-template-columns: 1fr; } .stats { grid-template-columns: repeat(2, 1fr); } .values { grid-template-columns: 1fr; } }

/* ---------- gallery page ---------- */
.gal--page { grid-auto-rows: 300px; }
@media (max-width: 720px) { .gal--page { grid-auto-rows: 190px; } }

/* ---------- visit page ---------- */
.visit__note { margin-top: 1.5rem; color: var(--ink-soft); font-size: .95rem; }

/* ---------- book ---------- */
.book { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.book__intro h2 { margin-bottom: 1rem; }
.book__contact { display: flex; flex-direction: column; gap: .8rem; margin-top: 1.5rem; }
.book__contact-btn { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border: 1px solid var(--line); border-radius: 16px; background: var(--bg); transition: border-color .3s var(--ease), transform .3s var(--ease); }
.book__contact-btn:hover { border-color: var(--accent); transform: translateX(4px); }
.book__contact-btn__ico { width: 42px; height: 42px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; }
.book__contact-btn small { display: block; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.book__contact-btn strong { font-weight: 600; }
.book__form { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.4rem); display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.field label { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: var(--surface); border: 1px solid transparent; border-radius: 12px; padding: .85rem 1rem; outline: none;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); background: var(--bg); }
.field textarea { resize: vertical; min-height: 110px; }
.book__form .btn { grid-column: 1 / -1; }
.book__form-note { grid-column: 1 / -1; font-size: .88rem; min-height: 1.2rem; margin: 0; }
@media (max-width: 860px) { .book { grid-template-columns: 1fr; } .book__form { grid-template-columns: 1fr; } }
