/* Salonak CMS pages — matches salonak.co.uk marketing shell (header, hero, footer) */
:root {
  --night: #04100f;
  --ink: #0a1c1f;
  --charcoal: #16272b;
  --muted: #5c6b6f;
  --faint: #8b989b;
  --line: #e6e1d8;
  --line-strong: #d3ccc0;
  --paper: #f7f4ee;
  --surface: #ffffff;
  --brand: #2bb8c8;
  --brand-dark: #17879a;
  --brand-soft: #e4f6f8;
  --shadow-lift: 0 40px 80px -32px rgba(10, 28, 31, 0.35), 0 8px 20px -10px rgba(10, 28, 31, 0.14);
  --shadow-btn: 0 12px 24px -10px rgba(23, 135, 154, 0.55);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --r-lg: 26px;
  --r-xl: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .wrap {
    padding: 0 32px;
  }
}

.font-display {
  font-family: Fraunces, Georgia, 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.display-lg {
  font-size: clamp(1.7rem, 5.6vw, 3.4rem);
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
}

.lede {
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

/* ── Header (matches SiteHeader dark variant) ── */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 20px;
}

@media (min-width: 768px) {
  .header-inner {
    padding: 22px 32px;
  }
}

.brand-logo img {
  display: block;
  height: 28px;
  width: auto;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 22px;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 18px;
}

@media (min-width: 1024px) {
  .header-nav,
  .header-actions {
    display: flex;
  }

  .menu-toggle {
    display: none !important;
  }
}

.header-link {
  position: relative;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}

.header-link:hover {
  color: #fff;
}

.header-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.18);
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  padding: 0;
}

.menu-bars {
  position: relative;
  display: block;
  width: 16px;
  height: 12px;
}

.menu-bars span {
  position: absolute;
  left: 0;
  width: 16px;
  height: 1.6px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}

.menu-bars span:nth-child(1) {
  top: 0;
}

.menu-bars span:nth-child(2) {
  top: 5px;
}

.menu-bars span:nth-child(3) {
  top: 10px;
}

.menu-toggle[aria-expanded='true'] .menu-bars span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded='true'] .menu-bars span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded='true'] .menu-bars span:nth-child(3) {
  top: 5px;
  transform: rotate(-45deg);
}

/* Mobile menu drawer */
.mobile-menu-root {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

.mobile-menu-root.is-open {
  pointer-events: auto;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 16, 15, 0.72);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-root.is-open .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  inset: 12px 12px auto 12px;
  max-height: calc(100dvh - 24px);
  overflow-y: auto;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 24px;
  box-shadow: var(--shadow-lift);
  transform: translateY(-12px);
  opacity: 0;
  transition: transform 0.35s var(--ease-out), opacity 0.35s ease;
}

.mobile-menu-root.is-open .mobile-menu-panel {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.mobile-menu-links {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
}

.mobile-menu-links a {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.55rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.mobile-menu-links a:hover {
  color: var(--brand-dark);
}

.mobile-menu-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-btn);
  transition: transform 0.25s var(--ease-out), filter 0.25s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: saturate(1.06);
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 650;
}

.btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 24px;
}

.btn-row > * {
  min-width: 0;
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .btn-row > * {
    width: auto;
  }

  .btn-primary,
  .btn-ghost-dark,
  .btn-ghost-light {
    padding: 14px 28px;
    font-size: 14px;
  }
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 650;
}

.btn-ghost-light:hover {
  border-color: var(--brand);
}

/* ── Hero ── */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 30%;
  opacity: 0.34;
  transform: scale(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, var(--ink) 8%, rgba(10, 28, 31, 0.86) 46%, rgba(4, 16, 15, 0.6) 100%);
}

.hero-inner {
  position: relative;
  padding: 96px 0 56px;
  max-width: 640px;
}

@media (min-width: 768px) {
  .hero-inner {
    padding: 144px 0 88px;
  }
}

.page-hero h1 {
  margin: 12px 0 0;
}

/* ── Main content ── */
main {
  padding: 40px 0 64px;
}

@media (min-width: 768px) {
  main {
    padding: 56px 0 80px;
  }
}

.prose p {
  font-size: 16px;
  line-height: 1.7;
  color: #334247;
  max-width: 640px;
  margin: 0 0 16px;
}

.grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-top: 8px;
}

@media (min-width: 540px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}

.card strong {
  display: block;
  font-size: 16px;
  color: var(--ink);
}

.card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.faq {
  margin-top: 40px;
  max-width: 680px;
}

.faq h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.55rem;
  color: var(--ink);
}

details {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
}

details p {
  margin: 10px 0 0;
  color: #334247;
  line-height: 1.6;
}

.promo {
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--brand-soft);
  border: 1px solid #bfe6ec;
  max-width: 520px;
}

.reviews {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin-top: 20px;
}

@media (min-width: 640px) {
  .reviews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.rev {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  font-size: 14.5px;
  line-height: 1.55;
}

.rev b {
  display: block;
  margin-top: 10px;
  color: var(--ink);
}

.section-title {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.55rem;
  color: var(--ink);
  margin: 0;
}

.muted-note {
  margin-top: 28px;
  max-width: 560px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ── Footer ── */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
}

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 40px 0;
}

.footer-statement h2 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.45rem, 4vw, 2.2rem);
  color: #fff;
  line-height: 1.1;
}

.footer-statement h2 em {
  font-style: italic;
  color: var(--brand);
}

.footer-statement p {
  margin: 14px 0 0;
  max-width: 360px;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 16px;
  padding: 36px 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
    padding: 56px 0;
  }

  .footer-brand-col {
    grid-column: span 1;
  }
}

.footer-brand-col {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .footer-brand-col {
    grid-column: span 1;
  }
}

.footer-brand-col p {
  margin: 16px 0 0;
  max-width: 280px;
  font-size: 14px;
  line-height: 1.55;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin: 0 0 14px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

body.menu-open {
  overflow: hidden;
}
