/* ============================================================
   SALON WEBSITE TEMPLATE: STYLES
   Look: quiet luxury. Blush paper, plum ink, copper accents.
   Arched photos, dotted price leaders, thin ruled lines.
   Change your brand in one place: the two copper values below.
   Fonts: Marcellus (headings) + Mulish (body), loaded in each
   page's <head>.
   ============================================================ */

:root {
  /* EDIT these two to re-brand the whole site */
  --copper: oklch(58% 0.11 40);
  --copper-deep: oklch(50% 0.1 40);

  /* Paper and ink. Warm and tinted, never pure white or black. */
  --paper: oklch(96.5% 0.014 40);
  --paper-deep: oklch(93.5% 0.02 40);
  --ink: oklch(28% 0.045 20);
  --ink-soft: oklch(46% 0.035 25);
  --plum: oklch(24% 0.04 20);
  --line: oklch(88% 0.022 40);
  --line-strong: oklch(72% 0.035 35);
  --paper-on-plum: oklch(93% 0.015 40);
  --muted-on-plum: oklch(76% 0.03 30);
  --line-on-plum: oklch(38% 0.04 20);

  --max: 1080px;
  /* The arch: used on every photo. The quiet signature of the kit. */
  --arch: 999px 999px 0 0;
}

/* Fallback for older browsers that don't know oklch */
@supports not (color: oklch(50% 0 0)) {
  :root {
    --copper: #b1694a;
    --copper-deep: #96533a;
    --paper: #f8ede6;
    --paper-deep: #efdfd3;
    --ink: #3d2528;
    --ink-soft: #7c5e5a;
    --plum: #341e20;
    --line: #ead8cd;
    --line-strong: #c09f90;
    --paper-on-plum: #f2e6de;
    --muted-on-plum: #c7a99f;
    --line-on-plum: #563a3b;
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Mulish", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo, .price, .menu-price, .quote-mark {
  font-family: "Marcellus", "Georgia", serif;
  font-weight: 400;
}

img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.icon { width: 1.05em; height: 1.05em; flex: none; vertical-align: -0.16em; }

/* ============================================================
   INTRO ANIMATION: rise, sharpen, settle, element by element.
   fill-mode "both" holds the start state, so no static opacity 0.
   ============================================================ */
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
.hero .kicker   { animation: rise 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.05s both; }
.hero h1        { animation: rise 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.16s both; }
.hero .lead     { animation: rise 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.30s both; }
.hero .actions  { animation: rise 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.44s both; }
.hero .arch     { animation: rise 1s   cubic-bezier(0.19, 1, 0.22, 1) 0.34s both; }
.note-line span { animation: rise 0.7s ease-out both; }
.note-line span:nth-child(1) { animation-delay: 0.6s; }
.note-line span:nth-child(2) { animation-delay: 0.7s; }
.note-line span:nth-child(3) { animation-delay: 0.8s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- Hairline top bar ---------- */
.topline {
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-soft);
  padding: 8px 0;
}
.topline .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topline span, .topline a { display: inline-flex; align-items: center; gap: 7px; }
.topline a { color: var(--ink); text-decoration: none; font-weight: 700; }
.topline a .icon, .topline span .icon { color: var(--copper); }
.topline a:hover { color: var(--copper-deep); }

/* ---------- Header / nav ---------- */
header.site {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
header.site .container { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; gap: 16px; }
.logo {
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}
.logo em { font-style: normal; color: var(--copper-deep); }
nav.main { display: flex; gap: 30px; align-items: center; }
nav.main > a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 14.5px; letter-spacing: 0.06em; text-transform: uppercase; position: relative; }
nav.main > a:not(.btn) { font-size: 13px; }
nav.main > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px;
  background: var(--copper); transition: right 0.3s ease;
}
nav.main > a:not(.btn):hover::after { right: 0; }

/* ============================================================
   BUTTONS: quiet copper pill with a 1px border beam that
   orbits while hovered.
   ============================================================ */
@property --beam { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--copper);
  color: var(--paper);
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  isolation: isolate;
  transition: background 0.25s ease, transform 0.25s ease;
}
.btn:hover { background: var(--copper-deep); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--copper-deep); outline-offset: 3px; }
.btn::before {
  content: ""; position: absolute; inset: -5px; border-radius: inherit; padding: 1px;
  background: conic-gradient(from var(--beam), transparent 0deg 300deg, var(--copper) 332deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none; z-index: -1;
}
.btn:hover::before { opacity: 1; animation: beam 1.4s linear infinite; }
@keyframes beam { to { --beam: 360deg; } }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn.ghost::before { display: none; }
.btn.ghost:hover { border-color: var(--ink); background: transparent; }
.btn.on-plum { background: var(--copper); color: var(--paper-on-plum); }

/* A quiet inline text link with a copper underline */
.tlink {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--copper);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.tlink:hover { color: var(--copper-deep); }

/* ============================================================
   THE ARCH: every photo placeholder sits under an arch.
   Click a placeholder in edit mode to use your own photo; it
   fills the arch and keeps the shape automatically.
   ============================================================ */
.arch {
  border-radius: var(--arch);
  border: 1px solid var(--line-strong);
  background: var(--paper-deep);
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.arch::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--line);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}
.arch .photo-note {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
  padding: 0 20px;
}
.arch.wide { aspect-ratio: 3 / 4; }
img.arch { display: block; }

/* Photo slots: a chosen photo fills the arch, keeping its shape. */
[data-photo] { position: relative; overflow: hidden; }
[data-photo] img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border: 0; background: none;
  border-radius: inherit;
}
[data-photo].has-img { background: none; }
[data-photo].has-img .photo-note { display: none; }

/* ---------- Hero: words one side, one arched photo the other ---------- */
.hero { padding: 84px 0 72px; }
.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(260px, 5fr);
  gap: 72px;
  align-items: center;
}
.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper-deep);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.08;
  letter-spacing: 0.005em;
  text-wrap: balance;
  max-width: 16ch;
}
.hero .lead { margin: 24px 0 34px; font-size: 18px; color: var(--ink-soft); max-width: 48ch; }
.hero .actions { display: flex; gap: 12px 24px; flex-wrap: wrap; align-items: center; }
.hero .arch { max-width: 400px; justify-self: end; }

/* ---------- Note line: one ruled line of quiet proof ---------- */
.note-line {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.note-line .container {
  display: flex; justify-content: center; gap: 14px 48px; flex-wrap: wrap;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
}
.note-line span { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Section scaffolding ---------- */
section { padding: 88px 0; }
.sec-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper-deep);
  margin-bottom: 14px;
}
h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.12;
  letter-spacing: 0.005em;
  margin-bottom: 16px;
  text-wrap: balance;
}
.sec-intro { color: var(--ink-soft); max-width: 52ch; }

/* Split sections: heading and words one side, photo or list the other */
.split { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: 32px 80px; align-items: center; }
.split .arch { max-width: 360px; }
.split.flip .arch { justify-self: end; }
.split p + p { margin-top: 16px; }
.split .body-copy { color: var(--ink-soft); }

/* ============================================================
   THE PRICE MENU: name, dotted leader, price. The second
   signature of the kit. Works for any length of list.
   ============================================================ */
.menu-group { margin-top: 44px; }
.menu-group:first-of-type { margin-top: 0; }
.menu-group > h3 {
  font-size: 24px;
  letter-spacing: 0.02em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-strong);
  margin-bottom: 6px;
}
.menu-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.menu-row:last-child { border-bottom: none; }
.menu-row .name { font-weight: 600; font-size: 16.5px; }
.menu-row .dots {
  flex: 1;
  min-width: 24px;
  border-bottom: 1px dotted var(--line-strong);
  transform: translateY(-4px);
}
.menu-row .menu-price {
  font-size: 19px;
  color: var(--copper-deep);
  white-space: nowrap;
}
.menu-note {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 44ch;
  margin-top: 2px;
}
.menu-foot { margin-top: 18px; font-size: 14.5px; color: var(--ink-soft); max-width: 60ch; }

/* ---------- Plum band: the one dark moment on each page ---------- */
.plum-band { background: var(--plum); color: var(--paper-on-plum); }
.plum-band .sec-label { color: var(--copper); }
.plum-band h2, .plum-band h3 { color: var(--paper-on-plum); }
.plum-band .sec-intro, .plum-band p { color: var(--muted-on-plum); }
.plum-band .tlink { color: var(--paper-on-plum); }
.plum-band .tlink:hover { color: var(--copper); }
.plum-band .container.duo {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 40px 88px;
  align-items: center;
}

/* Opening hours: a ruled table, nothing fancy */
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: 13px 4px; border-bottom: 1px solid var(--line-on-plum); font-weight: 400; }
.hours td:last-child { text-align: right; white-space: nowrap; }
.hours .today td, .hours th { color: var(--paper-on-plum); }
.hours td { color: var(--muted-on-plum); }
.hours .closed td:last-child { letter-spacing: 0.12em; text-transform: uppercase; font-size: 13px; }
/* The same table on paper (book page) */
.on-paper .hours th, .on-paper .hours td { border-bottom-color: var(--line); }
.on-paper .hours th { color: var(--ink); }
.on-paper .hours td { color: var(--ink-soft); }

.band-phone {
  display: inline-block;
  font-family: "Marcellus", serif;
  font-size: clamp(30px, 4vw, 44px);
  color: var(--copper);
  text-decoration: none;
  line-height: 1.1;
  margin: 12px 0 6px;
}
.band-phone:hover { color: var(--paper-on-plum); }
.band-sub { font-size: 14.5px; }

/* ---------- Reviews: one featured voice, two supporting ---------- */
.reviews-grid { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); gap: 64px; align-items: start; margin-top: 40px; }
.review-feature { border-top: 1px solid var(--line-strong); padding-top: 8px; }
.quote-mark {
  font-size: 88px;
  line-height: 0.55;
  color: var(--copper);
  display: block;
  margin: 30px 0 4px;
}
.review-feature blockquote {
  font-family: "Marcellus", serif;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
  margin: 12px 0 24px;
}
.review-side .review { border-top: 1px solid var(--line); padding: 24px 0; }
.review-side .review:first-child { border-top: 1px solid var(--line-strong); }
.review-side blockquote { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 12px; }
.review cite {
  font-style: normal; font-weight: 700; font-size: 12.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
}
.review cite::before { content: ""; width: 22px; height: 1px; background: var(--copper); }

/* ---------- Contact rows: ruled, not carded ---------- */
.contact-rows { border-top: 1px solid var(--line-strong); max-width: 640px; }
.contact-rows .crow {
  display: grid; grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px; padding: 22px 4px; border-bottom: 1px solid var(--line);
}
.contact-rows h3 { font-size: 19px; display: inline-flex; align-items: center; gap: 10px; }
.contact-rows h3 .icon { color: var(--copper-deep); }
.contact-rows p { color: var(--ink-soft); font-size: 15.5px; }
.contact-rows a { color: var(--ink); font-weight: 700; text-decoration-color: var(--copper); text-underline-offset: 4px; }
.contact-rows a:hover { color: var(--copper-deep); }

/* ---------- Forms ---------- */
form.enquiry { max-width: 560px; }
form.enquiry label { display: block; font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin: 26px 0 8px; }
form.enquiry input, form.enquiry select, form.enquiry textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  font-size: 16px;
  font-family: inherit;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
form.enquiry input:focus, form.enquiry select:focus, form.enquiry textarea:focus {
  outline: none;
  border-color: var(--copper-deep);
  box-shadow: 0 0 0 1px var(--copper-deep);
}
form.enquiry textarea { min-height: 120px; resize: vertical; }
form.enquiry .hint { font-size: 14px; color: var(--ink-soft); margin-top: 6px; }
form.enquiry button { margin-top: 30px; }

/* ---------- Footer ---------- */
footer.site { background: var(--plum); color: var(--muted-on-plum); padding: 56px 0 34px; font-size: 15px; }
footer.site h4 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  color: var(--paper-on-plum);
  font-size: 18px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
footer.site a { color: var(--muted-on-plum); text-decoration: none; }
footer.site a:hover { color: var(--copper); }
footer.site .cols { display: grid; gap: 36px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-bottom: 32px; }
footer.site .legal { border-top: 1px solid var(--line-on-plum); padding-top: 20px; font-size: 13.5px; }

/* ---------- Mobile ---------- */
.nav-toggle { display: none; background: none; border: none; font-size: 26px; color: var(--ink); cursor: pointer; }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 44px; }
  .hero .arch { justify-self: start; max-width: 340px; }
  .split, .split.flip { grid-template-columns: 1fr; }
  .split .arch, .split.flip .arch { justify-self: start; order: -1; }
  .reviews-grid { grid-template-columns: 1fr; gap: 36px; }
  .plum-band .container.duo { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  nav.main {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line-strong);
    flex-direction: column; align-items: flex-start; padding: 18px 24px; gap: 16px;
  }
  nav.main.open { display: flex; }
  header.site .container { position: relative; }
  .hero { padding: 56px 0 48px; }
  section { padding: 60px 0; }
  .menu-row { flex-wrap: wrap; gap: 8px 14px; }
}

/* ---------- Sticky mobile booking button ---------- */
.book-sticky { display: none; }
@media (max-width: 760px) {
  .book-sticky {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    position: fixed; bottom: 16px; left: 16px; right: 16px;
    background: var(--copper);
    color: var(--paper);
    font-weight: 700; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 15px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 8px 24px oklch(24% 0.04 20 / 0.35);
    z-index: 60;
  }
  body { padding-bottom: 86px; }
}
