/* ===================================================================
   Frisör — designtokens
   =================================================================== */

:root {
  --white: #FFFFFF;
  --stone-100: #F4F4F5;
  --stone-200: #E7E7EA;
  --black: #0B0B0F;
  --midnight: #14213D;
  --midnight-light: #263A66;
  --midnight-pale: #EDF0F7;
  --text: #16171D;
  --text-muted: #5B5D6B;
  --text-soft: #8C8E9C;

  --shadow-sm: 0 2px 12px -4px rgba(11, 11, 15, 0.14);
  --shadow-md: 0 18px 36px -18px rgba(11, 11, 15, 0.26);
  --shadow-lg: 0 28px 60px -22px rgba(11, 11, 15, 0.32);

  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --container: 1140px;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

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

html, body { overflow-x: hidden; }

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--black);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
}

p { margin: 0; color: var(--text-muted); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
section { padding: 108px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--midnight);
  margin-bottom: 18px;
}
.eyebrow-line { width: 26px; height: 1px; background: var(--midnight); display: inline-block; }
.eyebrow.on-dark { color: var(--stone-200); }
.eyebrow.on-dark .eyebrow-line { background: var(--stone-200); }

.section-head { max-width: 600px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 600; margin-bottom: 16px; }
.section-lead { font-size: 16.5px; }

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: var(--midnight); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost { background: transparent; color: var(--black); border: 1px solid var(--black); }
.btn-ghost:hover { background: var(--black); color: var(--white); }

.btn-on-dark { background: var(--white); color: var(--black); }
.btn-on-dark:hover { background: var(--stone-200); transform: translateY(-2px); }
.btn-ghost-on-dark { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
.btn-ghost-on-dark:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ===== Header ===== */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stone-200);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 28px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-text { font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: 0.02em; color: var(--black); }

.main-nav ul { display: flex; align-items: center; gap: 36px; }
.main-nav a { font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text); transition: color 0.2s ease; }
.main-nav a:hover { color: var(--midnight); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 1.5px; background: var(--black); }

/* ===== Hero ===== */

.hero {
  padding: 110px 0 100px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(38, 58, 102, 0.55), transparent 60%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1fr 0.85fr; gap: 48px; align-items: center; }
.hero-content h1 { color: var(--white); font-size: clamp(40px, 5vw, 62px); font-weight: 500; margin-bottom: 24px; }
.hero-content h1 em { font-style: italic; color: var(--stone-200); }
.hero-lead { color: rgba(244, 244, 245, 0.72); font-size: 17px; max-width: 440px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-visual svg { width: 100%; max-width: 340px; }

/* ===== Om oss / intro ===== */

.about { background: var(--white); }
.about-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.about-visual svg { width: 100%; }
.about-content p { margin-bottom: 16px; font-size: 16px; }
.about-content p:last-child { margin-bottom: 0; }
.about-stats { display: flex; gap: 44px; margin-top: 30px; }
.about-stat-num { display: block; font-family: var(--font-display); font-size: 32px; color: var(--black); font-weight: 600; }
.about-stat-label { font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-soft); }

/* ===== Tjänster ===== */

.services { background: var(--stone-100); }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 56px; }
.menu-category { background: var(--white); border-radius: var(--radius-md); padding: 34px 32px; box-shadow: var(--shadow-sm); }
.menu-category-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.menu-category-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--midnight-pale); color: var(--midnight); }
.menu-category-head h3 { font-size: 20px; font-weight: 600; }
.menu-items { display: flex; flex-direction: column; gap: 14px; }
.menu-item { display: flex; align-items: baseline; gap: 10px; }
.menu-item-name { font-size: 15px; font-weight: 500; color: var(--black); }
.menu-item-dots { flex: 1; border-bottom: 1px dotted var(--stone-200); transform: translateY(-4px); }
.menu-item-price { font-size: 14px; font-weight: 600; color: var(--midnight); white-space: nowrap; }

/* ===== Galleri (silhuetter) ===== */

.gallery { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.style-card { background: var(--stone-100); border-radius: var(--radius-lg); padding: 30px 18px 24px; text-align: center; transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease; }
.style-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); background: var(--midnight-pale); }
.style-card svg { margin: 0 auto 16px; }
.style-card h3 { font-size: 16.5px; font-weight: 600; margin-bottom: 4px; }
.style-card p { font-size: 12.5px; letter-spacing: 0.03em; text-transform: uppercase; color: var(--text-soft); }

/* ===== Boka / öppettider ===== */

.hours { background: var(--midnight); color: var(--stone-100); }
.hours-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.hours h2 { color: var(--white); }
.hours .section-lead, .hours p { color: rgba(244, 244, 245, 0.72); }
.hours-list { display: flex; flex-direction: column; gap: 0; margin-top: 30px; }
.hours-row { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid rgba(244, 244, 245, 0.14); font-size: 15px; }
.hours-day { font-weight: 500; color: var(--white); }
.hours-time { color: rgba(244, 244, 245, 0.72); }

.contact-card { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(244, 244, 245, 0.16); border-radius: var(--radius-lg); padding: 38px; }
.contact-card h3 { color: var(--white); font-size: 20px; font-weight: 600; margin-bottom: 20px; }
.contact-line { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 14.5px; color: rgba(244, 244, 245, 0.85); }
.contact-line:last-child { margin-bottom: 0; }
.contact-line svg { flex: none; margin-top: 2px; color: var(--stone-200); }

/* ===== Footer ===== */

.site-footer { background: var(--black); color: rgba(244, 244, 245, 0.55); padding: 36px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-inner .logo-text { color: var(--white); }
.footer-copy { font-size: 13px; }

/* ===== Reveal ===== */

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */

@media (max-width: 920px) {
  .hero-inner, .about-inner, .hours-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 260px; margin: 0 auto; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .main-nav { display: none; width: 100%; }
  .main-nav.is-open {
    display: block; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--stone-200); box-shadow: var(--shadow-md);
  }
  .main-nav.is-open ul { flex-direction: column; align-items: flex-start; gap: 4px; padding: 12px 28px 20px; }
  .main-nav.is-open a { display: block; padding: 10px 0; }
  .header-inner { position: relative; }
  .nav-toggle { display: flex; }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  section { padding: 76px 0; }
  .hero { padding-top: 56px; }
  .about-stats { gap: 26px; }
}
