/* ==========================================================================
   På Håret – Premium Hair Salon Website
   Style: Modern Scandinavian · Minimal · Luxury
   ========================================================================== */

/* --- Design tokens ------------------------------------------------------- */
:root {
  /* Palette - inspired by the salon's black + white + warm wood aesthetic */
  --ink:        #0a0a0a;
  --ink-soft:   #1a1a1a;
  --paper:      #f6f1e7;     /* warm cream */
  --paper-2:    #faf6ec;     /* lighter cream */
  --paper-3:    #efe7d6;     /* sand */
  --wood:       #8a6a48;     /* warm wood */
  --wood-dark:  #5a4329;
  --line:       #e2d8c4;
  --line-soft:  #ece5d2;
  --muted:      #6a6358;
  --muted-2:    #948b7e;
  --gold:       #b08a4d;     /* subtle premium accent */
  --gold-2:     #d4b275;
  --accent:     #c9a675;     /* hair-warm gold */

  /* Type */
  --serif:  "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans:   "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --max:    1240px;
  --pad:    clamp(1.25rem, 4vw, 2.5rem);
  --radius: 18px;
  --radius-sm: 10px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 240ms;
  --t-base: 480ms;
  --t-slow: 900ms;
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
input, button, select, textarea { font: inherit; }
iframe { border: 0; }
em { font-style: italic; }

::selection { background: var(--ink); color: var(--paper); }

/* --- Container ----------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
}

/* --- Typography utilities ------------------------------------------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink);
  position: relative;
}
.eyebrow-dot::after {
  content: "";
  position: absolute; inset: -4px;
  border: 1px solid currentColor; border-radius: 50%;
  opacity: 0.4;
}
.eyebrow-light { color: var(--paper); }
.eyebrow-light .eyebrow-dot { background: var(--paper); }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-lg { padding: 1.1rem 1.9rem; font-size: 0.95rem; }

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
}
.btn-primary::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--paper);
  transform: translateY(100%);
  transition: transform 420ms var(--ease);
  z-index: 0;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover { color: var(--ink); }
.btn-primary:hover::before { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform 420ms var(--ease);
  z-index: 0;
}
.btn-ghost > * { position: relative; z-index: 1; }
.btn-ghost:hover { color: var(--paper); }
.btn-ghost:hover::before { transform: translateY(0); }
.btn-ghost-light { color: var(--paper); border-color: var(--paper); }
.btn-ghost-light::before { background: var(--paper); }
.btn-ghost-light:hover { color: var(--ink); }

/* --- Reveal animation ---------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* --- Loader -------------------------------------------------------------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 700ms var(--ease), visibility 700ms;
}
.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.4rem;
  color: var(--paper);
}
.loader-mark {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-style: italic;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 0.1s forwards;
}
.loader-line {
  width: 80px; height: 1px;
  background: var(--paper);
  position: relative; overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}
.loader-line::after {
  content: "";
  position: absolute; top: 0; left: -40%;
  width: 40%; height: 100%;
  background: var(--gold-2);
  animation: line 1.2s var(--ease) infinite;
}
@keyframes line {
  to { left: 100%; }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(8px); }
}

/* --- Header / Nav -------------------------------------------------------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(246, 241, 231, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--t-base) var(--ease), border-color var(--t-base) var(--ease), padding var(--t-base) var(--ease);
}
.header.is-scrolled {
  background: rgba(246, 241, 231, 0.94);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.1rem; padding-bottom: 1.1rem;
  gap: 1.5rem;
}
.header.is-scrolled .header-inner { padding-top: 0.7rem; padding-bottom: 0.7rem; }

.brand {
  display: inline-flex; align-items: center; gap: 0.7rem;
  color: var(--ink);
  flex-shrink: 0;
}
.brand-mark {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  transition: transform var(--t-base) var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-15deg); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav-list { display: flex; gap: 1.85rem; }
.nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.4rem 0;
  transition: color var(--t-fast) var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 420ms var(--ease);
}
.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta { padding: 0.7rem 1.2rem; font-size: 0.85rem; }

.burger {
  display: none;
  width: 48px; height: 48px;
  position: relative;
  z-index: 120;
  background: transparent;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  transition: all 320ms var(--ease);
}
.burger:hover { background: var(--ink); }
.burger:hover span { background: var(--paper); }
.burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: all 320ms var(--ease);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 23px; }
.burger span:nth-child(3) { top: 30px; }
.burger.is-open {
  background: var(--ink);
  border-color: var(--ink);
}
.burger.is-open span { background: var(--paper); }
.burger.is-open span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 9rem 0 4rem;
  overflow: hidden;
  background: var(--paper);
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(10,10,10,0.04) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.6;
  mix-blend-mode: multiply;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.hero-shape-1 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--gold-2) 0%, transparent 70%);
  top: -120px; right: -100px;
}
.hero-shape-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--paper-3) 0%, transparent 70%);
  bottom: -80px; left: -80px;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  min-height: 70vh;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
  color: var(--ink);
}
.hero-title em {
  font-weight: 300;
  color: var(--ink);
  font-style: italic;
  position: relative;
  display: inline-block;
}
.hero-title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6%;
  height: 1px;
  background: var(--ink);
  opacity: 0.25;
}

.hero-lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 2.4rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.hero-meta {
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.meta-item {
  display: flex; align-items: center; gap: 0.7rem;
  flex-direction: row;
}
.meta-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.1;
}
.meta-item span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.meta-stars { display: flex; gap: 1px; color: var(--gold); }
.meta-divider { width: 1px; height: 30px; background: var(--line); }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 500px;
}
.hero-photo {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(10,10,10,0.35);
  transform: rotate(-2deg);
  transition: transform 800ms var(--ease);
}
.hero-photo:hover { transform: rotate(0deg) scale(1.02); }
.hero-illu { width: 100%; height: auto; display: block; }

.hero-card {
  position: absolute;
  bottom: -30px;
  left: -50px;
  background: var(--ink);
  color: var(--paper);
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius);
  width: 280px;
  box-shadow: 0 20px 50px -20px rgba(10,10,10,0.4);
  transform: rotate(3deg);
  transition: transform 600ms var(--ease);
  z-index: 2;
}
.hero-card:hover { transform: rotate(0deg) translateY(-4px); }
.hero-card-head {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 1.1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(246,241,231,0.15);
}
.hero-card-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(246,241,231,0.3); }
.hero-card-dot:nth-child(1) { background: var(--gold-2); }
.hero-card-label {
  margin-left: auto;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.t-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246,241,231,0.6);
  margin-bottom: 4px;
}
.t-value {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 1.1rem;
}
.t-small { display: block; font-size: 0.85rem; color: rgba(246,241,231,0.8); }
.hero-card-row { display: flex; justify-content: space-between; gap: 1rem; }
.hero-card-cta {
  display: block;
  margin-top: 1.2rem;
  padding: 0.7rem 1rem;
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background var(--t-fast) var(--ease);
}
.hero-card-cta:hover { background: var(--gold-2); }

/* Marquee */
.hero-marquee {
  position: relative; z-index: 1;
  margin-top: 4rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper-2);
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink);
}
.marquee-track span { flex-shrink: 0; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* --- Trust strip --------------------------------------------------------- */
.trust {
  background: var(--ink);
  color: var(--paper);
  padding: 1.6rem 0;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(246,241,231,0.6);
}
.trust-list {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  align-items: center;
}
.trust-list li {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  position: relative;
  padding-right: 2.5rem;
}
.trust-list li::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-2);
}
.trust-list li:last-child::after { display: none; }

/* --- Sections ------------------------------------------------------------ */
.section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
}
.section-head {
  max-width: 720px;
  margin-bottom: 4rem;
}
.section-head-center {
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.section-title-light { color: var(--paper); }
.section-title-light em { color: var(--gold-2); }
.section-lede {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
}
.section-head-center .section-lede { margin-left: auto; margin-right: auto; }

/* --- Services ------------------------------------------------------------ */
.services { background: var(--paper); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.service-card {
  --rx: 0deg;
  --ry: 0deg;
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  transition: all 420ms var(--ease), transform 220ms var(--ease);
  position: relative;
  overflow: hidden;
  transform: perspective(600px) rotateX(var(--rx)) rotateY(var(--ry));
  will-change: transform;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 600ms var(--ease);
}
.service-card:hover {
  background: var(--ink);
  color: var(--paper);
  transform: perspective(600px) translateY(-6px) rotateX(var(--rx)) rotateY(var(--ry));
  border-color: var(--ink);
  box-shadow: 0 20px 40px -20px rgba(10,10,10,0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-icon {
  background: var(--paper);
  color: var(--ink);
}
.service-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--paper);
  color: var(--ink);
  border-radius: 50%;
  margin-bottom: 1.4rem;
  transition: all 420ms var(--ease);
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}
.service-card:hover p { color: rgba(246,241,231,0.7); }
.service-from {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding-top: 1rem;
  border-top: 1px solid currentColor;
  opacity: 0.7;
}

/* --- Prices -------------------------------------------------------------- */
.prices { background: var(--paper-2); }
.prices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.price-card {
  --rx: 0deg;
  --ry: 0deg;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: all 420ms var(--ease), transform 220ms var(--ease);
  transform: perspective(600px) rotateX(var(--rx)) rotateY(var(--ry));
  will-change: transform;
}
.price-card:hover {
  border-color: var(--ink);
  transform: perspective(600px) translateY(-4px) rotateX(var(--rx)) rotateY(var(--ry));
  box-shadow: 0 16px 40px -20px rgba(10,10,10,0.18);
}
.price-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.price-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0;
  font-size: 0.92rem;
  border-bottom: 1px dashed var(--line-soft);
}
.price-list li:last-child { border-bottom: 0; }
.price-list li > span:last-child {
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--ink);
}
.price-list li > span:first-child {
  color: var(--muted);
  font-size: 0.88rem;
}
.price-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted-2);
  font-style: italic;
}
.prices-cta {
  margin-top: 3rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
}
.prices-cta p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
}

/* --- About --------------------------------------------------------------- */
.about { background: var(--paper); }
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}
.about-text p {
  font-size: 1.02rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  line-height: 1.75;
  max-width: 560px;
}
.about-features {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}
.about-features li {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}
.feat-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  min-width: 30px;
}
.about-features strong {
  display: block;
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.about-features span {
  font-size: 0.9rem;
  color: var(--muted);
}

.about-card {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  overflow: hidden;
  position: sticky; top: 110px;
}
.about-card::before {
  content: "";
  position: absolute; top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-2) 0%, transparent 70%);
  opacity: 0.4;
  filter: blur(40px);
}
.about-card-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.about-stat { display: flex; flex-direction: column; gap: 0.4rem; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1;
  color: var(--paper);
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(246,241,231,0.7);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* --- Why ----------------------------------------------------------------- */
.why {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  top: -200px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: 0.15;
  filter: blur(60px);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  position: relative;
}
.why-item {
  padding: 2rem 0;
  border-top: 1px solid rgba(246,241,231,0.18);
  transition: transform 420ms var(--ease);
}
.why-item:hover { transform: translateY(-4px); }
.why-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-2);
  display: block;
  margin-bottom: 1rem;
}
.why-item h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
}
.why-item p {
  font-size: 0.92rem;
  color: rgba(246,241,231,0.7);
  line-height: 1.6;
}

/* --- Reviews ------------------------------------------------------------- */
.reviews { background: var(--paper); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.review-card {
  --rx: 0deg;
  --ry: 0deg;
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: all 420ms var(--ease), transform 220ms var(--ease);
  position: relative;
  transform: perspective(600px) rotateX(var(--rx)) rotateY(var(--ry));
  will-change: transform;
}
.review-card:hover {
  background: var(--ink);
  color: var(--paper);
  transform: perspective(600px) translateY(-4px) rotateX(var(--rx)) rotateY(var(--ry));
}
.review-card:hover .review-name { color: var(--paper); }
.review-card:hover .review-date { color: rgba(246,241,231,0.5); }
.review-card:hover .review-text { color: var(--paper); }
.review-stars {
  color: var(--gold);
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}
.review-stars span:first-child {
  position: relative;
  color: var(--gold);
}
.review-text {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.review-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.review-card:hover .review-foot { border-top-color: rgba(246,241,231,0.2); }
.review-name { font-weight: 500; font-size: 0.9rem; }
.review-date { font-size: 0.8rem; color: var(--muted-2); }

/* --- Gallery ------------------------------------------------------------- */
.gallery { background: var(--paper-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  transition: transform 600ms var(--ease);
}
.gallery-item:hover { transform: translateY(-6px); }
.gallery-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.gallery-img svg { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.gallery-item:hover .gallery-img svg { transform: scale(1.05); }
.gallery-item figcaption {
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.05rem;
}
.gallery-note {
  margin-top: 2.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}
.gallery-note a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color var(--t-fast) var(--ease);
}
.gallery-note a:hover { color: var(--gold); }

/* --- Hours --------------------------------------------------------------- */
.hours { background: var(--paper); }
.hours-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hours-cta {
  display: flex; gap: 0.8rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hours-table {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 2.5rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.hours-table::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold), var(--gold-2));
}
.hours-table ul { margin-bottom: 1.5rem; }
.hours-table li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(246,241,231,0.12);
  font-size: 1rem;
}
.hours-table li:last-child { border-bottom: 0; }
.hours-time {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.hours-table .closed .hours-time { opacity: 0.5; font-style: italic; }
.hours-status {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.9rem 1.2rem;
  background: rgba(246,241,231,0.08);
  border-radius: 999px;
  font-size: 0.85rem;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-2);
  position: relative;
  flex-shrink: 0;
}
.status-dot::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: var(--gold-2);
  opacity: 0.3;
  animation: pulse 2s var(--ease) infinite;
}
.status-dot.is-open { background: #6fcf97; }
.status-dot.is-open::after { background: #6fcf97; }
.status-dot.is-closed { background: #c97a6f; }
.status-dot.is-closed::after { background: #c97a6f; animation: none; }
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(2); opacity: 0; }
}

/* --- Contact ------------------------------------------------------------- */
.contact { background: var(--paper-2); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-list {
  display: grid;
  gap: 1.6rem;
  margin-top: 2rem;
}
.contact-list li {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}
.contact-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--ink);
  transition: all var(--t-fast) var(--ease);
}
.contact-list li:hover .contact-icon {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: rotate(-8deg);
}
.contact-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.contact-list strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.contact-sub {
  display: block;
  font-size: 0.85rem;
  color: var(--muted-2);
}
.contact-link { transition: color var(--t-fast) var(--ease); }
.contact-link:hover { color: var(--gold); }
.contact-socials {
  display: flex; gap: 1.2rem; flex-wrap: wrap;
  margin-top: 0.3rem;
}
.contact-socials a {
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: all var(--t-fast) var(--ease);
}
.contact-socials a:hover {
  background: var(--ink);
  color: var(--paper);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px -25px rgba(10,10,10,0.2);
  position: sticky; top: 110px;
}
.contact-map iframe { width: 100%; height: 100%; filter: grayscale(0.4) contrast(1.05); transition: filter 600ms var(--ease); }
.contact-map:hover iframe { filter: grayscale(0) contrast(1); }

/* --- CTA ----------------------------------------------------------------- */
.cta {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(5rem, 9vw, 8rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before, .cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cta::before {
  width: 400px; height: 400px;
  background: var(--gold);
  opacity: 0.15;
  top: -100px; left: -100px;
}
.cta::after {
  width: 500px; height: 500px;
  background: var(--gold-2);
  opacity: 0.1;
  bottom: -150px; right: -100px;
}
.cta-inner {
  position: relative;
  max-width: 720px; margin: 0 auto;
}
.cta-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 1rem 0 1.2rem;
}
.cta-title em {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 300;
}
.cta-inner p {
  color: rgba(246,241,231,0.7);
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
}
.cta-actions {
  display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap;
}
.cta .btn-primary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.cta .btn-primary::before { background: var(--gold-2); }
.cta .btn-primary:hover { color: var(--ink); }

/* --- Footer -------------------------------------------------------------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(246,241,231,0.08);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(246,241,231,0.08);
}
.footer-brand .brand-name {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.footer-brand p {
  color: rgba(246,241,231,0.6);
  font-size: 0.92rem;
  max-width: 320px;
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.footer-col ul li {
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: rgba(246,241,231,0.7);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-col ul li span { color: rgba(246,241,231,0.5); }
.footer-col ul li a { transition: color var(--t-fast) var(--ease); }
.footer-col ul li a:hover { color: var(--gold-2); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem;
  color: rgba(246,241,231,0.4);
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --- Back to top --------------------------------------------------------- */
.to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 420ms var(--ease);
  box-shadow: 0 10px 30px -10px rgba(10,10,10,0.4);
}
.to-top.is-visible {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.to-top:hover { background: var(--gold); transform: translateY(-4px); }

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 980px) {
  .hero { padding: 7rem 0 3rem; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .hero-visual { min-height: auto; }
  .hero-card { left: 0; }
  .hero-photo { max-width: 320px; margin: 0 auto; }

  .about-inner, .hours-inner, .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-card, .contact-map { position: static; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav-list, .nav .nav-cta { display: none; }
  .burger { display: flex; align-items: center; justify-content: center; }

  /* When mobile menu is open, hide the hero content underneath */
  body.menu-open { overflow: hidden; }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 6rem 2rem 3rem;
    transform: translateY(-100%);
    transition: transform 600ms var(--ease), visibility 0s 600ms, opacity 400ms ease;
    z-index: 90;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: transform 600ms var(--ease), visibility 0s, opacity 400ms ease;
  }

  /* When menu is open, header sits visually on top of the menu (transparent bg) */
  .header.menu-open {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
  }
  .header.menu-open .header-inner { padding-top: 1.1rem; padding-bottom: 1.1rem; }

  .nav-list {
    display: flex; flex-direction: column;
    gap: 0.2rem;
    text-align: center;
  }
  .nav-link {
    font-family: var(--serif);
    font-size: 2.1rem;
    font-style: italic;
    padding: 1rem 0;
    display: block;
    color: var(--ink);
    position: relative;
    transition: color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
  }
  .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.5rem;
    width: 0; height: 1px;
    background: var(--gold);
    transform: translateX(-50%);
    transition: width 320ms var(--ease);
  }
  .nav-link:hover::after,
  .nav-link:active::after { width: 40px; }
  .nav-link:active { transform: scale(0.97); }

  .nav .nav-cta {
    display: inline-flex;
    margin: 2.5rem auto 0;
    align-self: center;
  }

  .nav-foot {
    display: block;
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.7;
  }

  .hero-title { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  .hero-card { position: relative; bottom: auto; left: auto; width: 100%; max-width: 320px; margin: -40px auto 0; transform: rotate(0); }
  .hero-photo { max-width: 280px; }

  .hero-meta { gap: 1rem; }
  .meta-divider { display: none; }
  .meta-item { flex-basis: 30%; }

  .section { padding: 4rem 0; }
  .section-head { margin-bottom: 2.5rem; }

  .services-grid, .prices-grid, .reviews-grid, .gallery-grid, .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .about-card-inner { grid-template-columns: 1fr; gap: 1.5rem; }

  .trust-inner { flex-direction: column; gap: 1rem; }
  .trust-list { gap: 1.5rem; justify-content: center; }
  .trust-list li { font-size: 1.1rem; padding-right: 1.5rem; }

  .hours-table { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .hero-card-head { gap: 4px; }
  .hero-card { padding: 1.2rem; }
  .t-value { font-size: 1.3rem; }
  .hours-table li { font-size: 0.9rem; }
  .hours-time { font-size: 1.05rem; }
  .contact-map { aspect-ratio: 1; }
}
