/* ═══════════════════════════════════════════════════════════
   PAGE — index.html (salon)
   ═══════════════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100svh; min-height: 600px;
  display: flex; align-items: flex-end;
  overflow: hidden; background: var(--surface2);
}
.hbg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: 0;
}
.hbg:nth-child(1) { animation: fade1 18s ease-in-out infinite; }
.hbg:nth-child(2) { animation: fade2 18s ease-in-out infinite; }
.hbg:nth-child(3) { animation: fade3 18s ease-in-out infinite; }
@keyframes fade1 { 0%,30%{opacity:.6} 36%,95%{opacity:0} 100%{opacity:.6} }
@keyframes fade2 { 0%,6%{opacity:0} 30%,63%{opacity:.6} 69%,100%{opacity:0} }
@keyframes fade3 { 0%,63%{opacity:0} 69%,95%{opacity:.6} 100%{opacity:0} }
.hvid {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1; opacity: .5;
}
.hgrad {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    to top,
    rgba(10,10,10,.78) 0%,
    rgba(10,10,10,.48) 45%,
    rgba(10,10,10,.28) 100%
  );
}
.hvline {
  position: absolute; top: 0; right: clamp(70px,14vw,150px);
  z-index: 3; width: 1px; height: 100%;
  background: linear-gradient(to bottom,
    transparent 5%, rgba(200,169,110,.2) 30%,
    rgba(200,169,110,.2) 70%, transparent 95%);
}
.hbody {
  position: relative; z-index: 4;
  padding: clamp(2rem,6vw,5rem);
  padding-bottom: clamp(4rem,10vh,8rem);
  max-width: 780px;
}
.htag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .68rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.75rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.htag::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.hh1 {
  font-family: var(--serif);
  font-size: clamp(4.5rem,12vw,10rem);
  font-weight: 700; line-height: .92; letter-spacing: -.02em;
  color: #fff; margin-bottom: 1.5rem;
  text-shadow: 0 2px 28px rgba(0,0,0,.55);
}
.hh1 em { font-style: italic; color: var(--gold); }
.hcopy {
  font-size: clamp(.9rem,1.4vw,1.05rem); color: rgba(255,255,255,.88);
  letter-spacing: .1em; margin-bottom: 2.5rem;
  line-height: 2.1; text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.hacts { display: flex; gap: .85rem; flex-wrap: wrap; }
.hscroll {
  position: absolute; bottom: 2rem; right: 2.5rem; z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.45); font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
}
.hscroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollpulse 2.4s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%,100% { opacity:.35; transform:scaleY(.75) }
  50%     { opacity:1;   transform:scaleY(1) }
}

/* ── About ───────────────────────────────────────────────────── */
#about { background: var(--bg); }
.agrid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem,5vw,5rem); align-items: start;
}
@media (max-width: 768px) { .agrid { grid-template-columns: 1fr; } }
.avid {
  position: relative; aspect-ratio: 16/9;
  overflow: hidden; background: var(--surface);
}
.avid iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.atxt h3 {
  font-family: var(--serif);
  font-size: clamp(1.25rem,2.5vw,1.85rem);
  font-weight: 400; line-height: 1.35; margin-bottom: 1.4rem; color: var(--text);
}
.atxt p { color: var(--muted); line-height: 2; margin-bottom: 1rem; font-size: .95rem; }

/* ── Stats bar ───────────────────────────────────────────────── */
#stats {
  background: var(--surface); padding: 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.sgrid { display: grid; grid-template-columns: repeat(3,1fr); }
.sitem {
  padding: 2.75rem 2rem; text-align: center;
  border-right: 1px solid var(--border);
}
.sitem:last-child { border-right: none; }
.sval {
  font-family: var(--serif);
  font-size: clamp(2.5rem,5vw,4rem);
  font-weight: 400; color: var(--accent); line-height: 1; margin-bottom: .35rem;
}
.sval sup { font-size: .42em; vertical-align: super; margin-left: 2px; }
.slb  { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 560px) {
  .sgrid { grid-template-columns: 1fr; }
  .sitem { border-right: none; border-bottom: 1px solid var(--border); padding: 1.75rem; }
  .sitem:last-child { border-bottom: none; }
}

/* ── Gallery ─────────────────────────────────────────────────── */
#gallery { background: var(--bg); }
.gwrap { margin-top: 2rem; overflow: hidden; background: var(--surface); }
.gwrap iframe { width: 100%; border: none; display: block; }
@media (min-width: 769px) { .gwrap { aspect-ratio: 16/7; min-height: 320px; } }
@media (max-width: 768px) { .gwrap { height: 480px; } }

/* ── Menu / price ────────────────────────────────────────────── */
#menu { background: var(--surface); }
.mtabs {
  display: flex; margin: 2rem 0 0;
  border-bottom: 1px solid rgba(138,106,56,.25);
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.mtabs::-webkit-scrollbar { display: none; }
.mtab {
  font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
  padding: .7rem 1.3rem; color: rgba(26,24,20,.4);
  position: relative; white-space: nowrap; transition: color .2s; flex-shrink: 0;
  min-height: 44px; display: flex; align-items: center;
}
.mtab::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 1px; background: var(--accent); transform: scaleX(0);
  transition: transform .28s var(--ease);
}
.mtab.on { color: var(--text); }
.mtab.on::after { transform: scaleX(1); }
.mpanel { display: none; }
.mpanel.on { display: block; }

.price-wrap { position: relative; margin-top: 1.5rem; }
.price-wrap::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0;
  width: 40px; pointer-events: none;
  background: linear-gradient(to right, transparent, var(--surface));
}
.price-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.price-scroll::-webkit-scrollbar { display: none; }
.price-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.price-table th, .price-table td {
  text-align: left; padding: 1rem 1.1rem; font-weight: 400;
  font-size: .97rem; border-bottom: 1px solid rgba(26,24,20,.1); line-height: 1.6;
}
.price-table thead th {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); padding-bottom: .65rem; font-weight: 500;
}
.price-table tbody tr:hover th,
.price-table tbody tr:hover td { background: rgba(26,24,20,.03); }
.price-table .pt-name { color: var(--text); }
.price-table .pt-name small { color: var(--muted); font-size: .8em; display: block; margin-top: .15rem; }
.price-table td { color: var(--text); text-align: right; font-variant-numeric: tabular-nums; }
.price-table .pt-group th {
  color: var(--accent); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  padding-top: 1.5rem; padding-bottom: .6rem;
  border-bottom: 1px solid rgba(138,106,56,.28); font-weight: 500;
}
.mnote {
  margin-top: 1.5rem; font-size: .875rem; color: var(--muted);
  padding-left: .9rem; border-left: 2px solid rgba(138,106,56,.3);
}

/* ── Visit beauty gateway ────────────────────────────────────── */
#visit-gate { background: var(--surface2); }
.vgate {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem,6vw,6rem); align-items: center;
}
@media (max-width: 768px) { .vgate { grid-template-columns: 1fr; } }
.vgate-txt .sh { margin-bottom: 1rem; }
.vgate-txt p   { color: var(--muted); font-size: .97rem; line-height: 2.1; margin-bottom: 2.25rem; }
.vgate-img     {
  position: relative; aspect-ratio: 4/3;
  overflow: hidden; background: var(--surface);
}
.vgate-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Hours ───────────────────────────────────────────────────── */
#hours { background: var(--bg); }
.hrgrid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
}
.hrcard { background: var(--bg); padding: 2rem 1.75rem; }
.hrcard h3 {
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .85rem;
}
.hrcard p        { font-size: .95rem; line-height: 2; color: var(--muted); }
.hrcard strong   { color: var(--text); font-weight: 600; }
@media (max-width: 600px) {
  .hrgrid { grid-template-columns: 1fr; }
  .hrcard { padding: 1.5rem 1.25rem; }
}
/* Calendar */
.calgrid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; margin-top: 1px; background: var(--border);
}
@media (max-width: 560px) { .calgrid { grid-template-columns: 1fr; } }
.cal { background: var(--bg); padding: 1.5rem; }
.caltitle {
  font-family: var(--serif); font-size: .88rem; letter-spacing: .1em;
  text-align: center; margin-bottom: .9rem; color: var(--text);
}
.calhead { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; margin-bottom: 2px; }
.calhead span { text-align: center; font-size: .62rem; letter-spacing: .07em; color: var(--muted); padding: 2px 0; }
.caldays { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.cday {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: .72rem; color: rgba(26,24,20,.5); border-radius: 2px;
}
.cday.closed { background: rgba(138,106,56,.12); color: var(--accent); }
.cday.empty  { visibility: hidden; }
.cday.today  { outline: 1.5px solid rgba(138,106,56,.5); color: var(--text); }
.calleg {
  display: flex; gap: .7rem; align-items: center;
  margin-top: .65rem; font-size: .68rem; color: var(--muted);
}
.caldot { width: 9px; height: 9px; background: rgba(138,106,56,.12); border-radius: 2px; display: inline-block; }

/* ── CTA section ─────────────────────────────────────────────── */
#cta {
  background: var(--accent);
  padding: clamp(4rem,8vw,7rem) 0;
  text-align: center; position: relative; overflow: hidden;
}
#cta::before {
  content: 'i hair'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--serif); font-size: clamp(7rem,20vw,16rem);
  font-weight: 700; font-style: italic; color: rgba(0,0,0,.06);
  letter-spacing: -.02em; white-space: nowrap; pointer-events: none; line-height: 1;
}
#cta h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem,3.5vw,3rem);
  font-weight: 400; color: #fff; margin-bottom: .5rem; line-height: 1.2;
}
#cta p     { font-size: .9rem; color: rgba(255,255,255,.75); letter-spacing: .1em; margin-bottom: 2.25rem; }
.ctabtns   { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* ── Contact ─────────────────────────────────────────────────── */
#contact { background: var(--surface); }
.ctgrid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
}
.ctcard { background: var(--surface); padding: 2rem 1.75rem; }
.ctcard h3 {
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .85rem;
}
.ctcard p { font-size: .95rem; line-height: 2; color: var(--muted); }
@media (max-width: 768px) {
  .ctgrid { grid-template-columns: 1fr; }
  .ctcard { padding: 1.5rem 1.25rem; }
}
.cmap { margin-top: 1px; }
.cmap iframe { width: 100%; height: 320px; border: none; display: block; }
