:root {
  --bg: #0b0b0b;
  --panel: #171717;
  --panel-2: #1f1f1f;
  --gold: #c9a45c;
  --gold-strong: #d4af37;
  --text: #f6f2ea;
  --muted: #afa79b;
  --line: rgba(201, 164, 92, 0.22);
  --soft-line: rgba(246, 242, 234, 0.09);
  --glass: rgba(246, 242, 234, 0.04);
  --glass-strong: rgba(246, 242, 234, 0.065);
  --espresso: #130d0a;
  --espresso-deep: #0f0a08;
  --cream: #f6f2ea;
  --cream-soft: #f6f2ea;
  --ink: #17120d;
  --ink-muted: #5f5548;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0b0b0b;
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: 0;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(201, 164, 92, 0.88);
  outline-offset: 5px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: 50%;
  min-height: 82px;
  padding: 16px clamp(18px, 3.4vw, 48px);
  background: rgba(246, 242, 234, 0.76);
  border-bottom: 1px solid rgba(246, 242, 234, 0);
  box-shadow: none;
  backdrop-filter: blur(10px) saturate(1.02);
  transition: min-height 420ms var(--ease-premium), padding 420ms var(--ease-premium), background 420ms var(--ease-premium), border-color 420ms var(--ease-premium), box-shadow 420ms var(--ease-premium), backdrop-filter 420ms var(--ease-premium);
}

.site-header.is-scrolled,
.menu-open .site-header {
  min-height: 66px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(246, 242, 234, 0.9);
  border-bottom-color: rgba(23, 18, 13, 0.08);
  box-shadow: 0 18px 54px rgba(23, 18, 13, 0.08);
  backdrop-filter: blur(24px) saturate(1.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  color: var(--gold);
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  font-weight: 700;
  overflow: hidden;
  background: #0c0c0c;
  border-radius: 8px;
  transition: width 420ms var(--ease-premium), height 420ms var(--ease-premium), border-color 260ms var(--ease-premium), opacity 260ms var(--ease-premium);
}

.site-header.is-scrolled .brand-mark {
  width: 44px;
  height: 44px;
}

.gallery-page {
  background: #090909;
}

.gallery-page .site-header {
  position: fixed;
  left: 0;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) auto;
  background: rgba(8, 8, 8, 0.82);
  border-bottom-color: rgba(246, 242, 234, 0.08);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.gallery-page .site-header.is-scrolled,
.gallery-page.menu-open .site-header {
  background: rgba(8, 8, 8, 0.9);
  border-bottom-color: rgba(246, 242, 234, 0.09);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.gallery-page .site-nav {
  color: rgba(246, 242, 234, 0.68);
}

.gallery-page .site-nav a:hover,
.gallery-page .header-cta {
  color: rgba(246, 242, 234, 0.92);
}

.gallery-page .site-nav a.is-active,
.gallery-page .site-nav a[aria-current] {
  color: #f6f2ea;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  grid-column: 1;
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.1vw, 32px);
  color: rgba(23, 18, 13, 0.62);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  transition: color 220ms var(--ease-premium);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  height: 1px;
  background: rgba(201, 164, 92, 0.88);
  opacity: 0;
  transform: scaleX(0.28);
  transition: opacity 220ms var(--ease-premium), transform 220ms var(--ease-premium);
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.site-nav a[aria-current]::after {
  opacity: 0.72;
  transform: scaleX(1);
}

.site-nav a.is-active,
.site-nav a[aria-current] {
  color: var(--ink);
}

.gallery-page .site-nav a.is-active,
.gallery-page .site-nav a[aria-current] {
  color: #f6f2ea;
}

.mobile-menu-cta {
  display: none;
}

.mobile-menu-actions {
  display: none;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid rgba(23, 18, 13, 0.28);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 420ms var(--ease-premium), background 420ms var(--ease-premium), border-color 420ms var(--ease-premium), box-shadow 420ms var(--ease-premium), color 420ms var(--ease-premium);
}

.header-cta {
  grid-column: 2;
  justify-self: end;
  min-height: 36px;
  padding: 0 0 2px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(201, 164, 92, 0.62);
  border-radius: 0;
  color: rgba(23, 18, 13, 0.9);
  box-shadow: none;
  gap: 10px;
}

.header-cta::after {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  transform-origin: left center;
  transition: transform 420ms var(--ease-premium), opacity 420ms var(--ease-premium);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(23, 18, 13, 0.12);
}

.header-cta:hover {
  background: rgba(23, 18, 13, 0.04);
  border-color: rgba(201, 164, 92, 0.9);
}

.header-cta:hover::after {
  opacity: 0.72;
  transform: scaleX(1.35);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  z-index: 24;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 1px;
  margin: 7px auto;
  background: rgba(246, 242, 234, 0.88);
  transform-origin: center;
  transition: transform 360ms var(--ease-premium), opacity 260ms var(--ease-premium), width 360ms var(--ease-premium);
}

.menu-toggle span:nth-child(2) {
  width: 18px;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  padding: 0;
  background: var(--cream);
  overflow: hidden;
}

.hero-media {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 92vh;
  background-color: #0b0b0b;
  background-image: url("assets/hero-barber-lounge.png");
  background-size: cover;
  background-position: 78% center;
  border: 0;
  border-radius: 0;
  box-shadow: 26px 0 70px rgba(44, 31, 20, 0.16);
  filter: saturate(0.88) contrast(1.06) brightness(0.9);
  overflow: hidden;
  opacity: 0;
  transform: scale(1.015);
  animation: heroReveal 1800ms var(--ease-premium) 120ms both, heroDrift 22s var(--ease-premium) both;
  mask-image: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 46%, rgba(246, 242, 234, 0.04), transparent 32%),
    radial-gradient(circle at 50% 50%, transparent 36%, rgba(10, 6, 4, 0.5) 100%),
    linear-gradient(90deg, rgba(31, 17, 9, 0.24), rgba(127, 78, 34, 0.13) 48%, rgba(8, 5, 4, 0.26));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-booking-link {
  position: absolute;
  right: clamp(28px, 4.8vw, 76px);
  bottom: clamp(26px, 4vw, 54px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid rgba(201, 164, 92, 0.74);
  border-radius: 0;
  background: transparent;
  color: rgba(23, 18, 13, 0.88);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: none;
  transition: transform 320ms var(--ease-premium), border-color 320ms var(--ease-premium), color 320ms var(--ease-premium);
}

.hero-booking-link::after {
  content: "";
  width: 17px;
  height: 1px;
  margin-left: 10px;
  background: currentColor;
  transform-origin: left center;
  transition: transform 320ms var(--ease-premium), opacity 320ms var(--ease-premium);
}

.hero-booking-link:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 18, 13, 0.38);
  color: #17120d;
}

.hero-booking-link:hover::after {
  opacity: 0.76;
  transform: scaleX(1.35);
}

.hero-shade {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-self: stretch;
  min-height: 92vh;
  max-width: none;
  padding: 140px clamp(34px, 5.2vw, 86px) 82px clamp(34px, 5.2vw, 86px);
  background: var(--cream);
  color: var(--ink);
  opacity: 0;
  transform: translateY(18px);
  animation: heroTextIn 1100ms var(--ease-premium) 420ms both;
}

.hero-content > :not(.hero-booking-link) {
  position: relative;
  z-index: 1;
}

.hero-content .eyebrow {
  animation: heroEyebrowIn 760ms var(--ease-premium) 420ms both;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: -38px;
  left: -28px;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(201, 164, 92, 0.18);
  border-radius: 50%;
  opacity: 0.72;
  pointer-events: none;
}

.hero-content::after {
  content: "";
  position: absolute;
  top: -16px;
  left: -6px;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(23, 18, 13, 0.08);
  border-radius: 50%;
  opacity: 0.9;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  line-height: 0.92;
}

h1 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(70px, 6.8vw, 112px);
}

.hero-title-lockup {
  position: relative;
  display: block;
  width: fit-content;
  max-width: min(100%, 700px);
  isolation: isolate;
}

.hero-split-title {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  color: var(--ink);
  font-size: clamp(78px, 7.6vw, 126px);
  line-height: 0.78;
  text-transform: uppercase;
}

.hero-title-row {
  display: block;
  will-change: opacity, transform, filter;
}

.hero-title-tvilling {
  animation: titleFromLeft 1850ms var(--ease-premium) 640ms both;
}

.hero-title-klippet {
  margin-top: clamp(-8px, -0.42vw, -4px);
  margin-left: clamp(130px, 14.4vw, 224px);
  animation: titleFromRight 1850ms var(--ease-premium) 760ms both;
}

h2 {
  font-size: clamp(42px, 5vw, 72px);
}

h3 {
  font-size: 29px;
  line-height: 1.04;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(16px, 1.32vw, 20px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.58;
  text-transform: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream-soft);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(23, 18, 13, 0.22);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(23, 18, 13, 0.04);
  border-color: rgba(23, 18, 13, 0.42);
}

.btn-with-icon {
  gap: 10px;
}

.btn-with-icon img {
  width: 23px;
  height: 23px;
  padding: 5px;
  background: var(--cream-soft);
  border-radius: 50%;
  object-fit: contain;
}

.section {
  scroll-margin-top: 96px;
  padding: clamp(82px, 10vw, 138px) clamp(20px, 7vw, 104px);
  background: #0f0f0f;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 44px;
}

.section-heading.compact {
  max-width: 680px;
  margin-bottom: 28px;
}

.treatments {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(58px, 7vw, 98px);
  background: #050505;
  color: var(--text);
}

.treatments .section-heading {
  max-width: 1180px;
  margin: 0 auto 30px;
}

.review-card {
  background: var(--glass);
  border: 1px solid rgba(246, 242, 234, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px) saturate(1.05);
}

.treatments .eyebrow,
.about .eyebrow,
.contact dt {
  color: #9a7438;
}

.about h2 {
  color: var(--ink);
}

.about-copy p,
.contact dd {
  color: var(--ink-muted);
}

.price-heading {
  padding-bottom: 0;
  border-bottom: 0;
}

.price-heading h2 {
  color: #f6f2ea;
  font-size: clamp(56px, 9vw, 116px);
  line-height: 0.82;
}

.price-list {
  display: grid;
  gap: clamp(28px, 3.4vw, 44px);
  max-width: 1180px;
  margin: 0 auto;
}

.price-mobile-nav {
  display: none;
}

.price-category {
  display: grid;
  gap: 18px;
  scroll-margin-top: 96px;
}

.price-category h3 {
  color: #f6f2ea;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(17px, 1.7vw, 25px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.18;
  text-transform: uppercase;
}

.price-subgroup {
  display: grid;
  gap: 8px;
}

.price-subgroup h4 {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.price-items {
  display: grid;
  gap: 0;
}

.price-item {
  border-bottom: 1px solid rgba(246, 242, 234, 0.16);
}

.price-item:first-child {
  border-top: 1px solid rgba(246, 242, 234, 0.16);
}

.price-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 26px;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  min-height: 58px;
  padding: 12px 0;
  color: #f6f2ea;
  cursor: pointer;
  list-style: none;
  transition: color 260ms var(--ease-premium), padding-left 260ms var(--ease-premium), background 260ms var(--ease-premium);
}

.price-item summary::-webkit-details-marker {
  display: none;
}

.service-name,
.service-price {
  color: #f6f2ea;
  font-size: clamp(16px, 1.55vw, 22px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.18;
}

.service-price {
  justify-self: end;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.price-line {
  display: none;
}

.service-toggle {
  position: relative;
  width: 20px;
  height: 20px;
  align-self: center;
}

.service-toggle::before,
.service-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #f6f2ea;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 280ms var(--ease-premium), opacity 280ms var(--ease-premium);
}

.service-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.price-item[open] .service-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.price-item summary:hover {
  background: rgba(246, 242, 234, 0.035);
}

.price-item[open] summary {
  color: #f6f2ea;
}

.service-details {
  display: grid;
  gap: 5px;
  max-width: 820px;
  padding: 0 48px 17px 0;
  animation: detailsIn 320ms var(--ease-premium) both;
}

.service-details span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-details p {
  margin: 0;
  color: rgba(246, 242, 234, 0.68);
  font-size: 13px;
  line-height: 1.58;
}

.about {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  padding-top: clamp(42px, 5vw, 68px);
  padding-bottom: clamp(42px, 5vw, 68px);
  background:
    linear-gradient(180deg, rgba(246, 242, 234, 0.45), transparent 38%),
    var(--cream-soft);
  color: var(--ink);
}

.about-portrait {
  position: relative;
  min-height: clamp(420px, 38vw, 500px);
  overflow: hidden;
  border: 1px solid rgba(201, 164, 92, 0.24);
  border-radius: 8px;
  background: #151515;
  box-shadow: var(--shadow);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 38vw, 500px);
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.08) brightness(0.82);
}

.about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 42%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.88), transparent 38%);
}

.portrait-caption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 4px;
}

.portrait-caption span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.portrait-caption strong {
  color: var(--text);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 400;
  line-height: 0.9;
}

.image-tile,
.gallery-item {
  position: relative;
  overflow: hidden;
  background: #181818;
  border: 1px solid rgba(246, 242, 234, 0.08);
  border-radius: 8px;
}

.image-tile::after,
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
}

.image-tile.tall {
  background-image: url("assets/hero-barber-lounge.png");
  background-size: cover;
  background-position: center;
}

.image-tile.small {
  align-self: end;
  height: 68%;
}

.about-copy {
  max-width: 680px;
  padding-top: 0;
}

.about-copy h2 {
  max-width: 620px;
}

.about-copy .eyebrow {
  margin-bottom: 10px;
}

.about-copy p {
  max-width: 620px;
  margin: 10px 0 0;
  font-size: 13.5px;
  line-height: 1.58;
}

.gallery {
  padding-top: clamp(58px, 7vw, 96px);
  padding-bottom: clamp(62px, 7.2vw, 104px);
  background:
    linear-gradient(180deg, rgba(246, 242, 234, 0.035), transparent 34%),
    #090909;
}

.gallery-shell {
  display: grid;
  gap: clamp(24px, 3vw, 38px);
  max-width: 1180px;
  margin: 0 auto;
}

.gallery-heading {
  max-width: 680px;
  margin: 0;
}

.gallery-heading h2 {
  color: var(--text);
  font-size: clamp(38px, 4.6vw, 66px);
}

.gallery-heading h1 {
  color: var(--text);
  font-size: clamp(76px, 11vw, 150px);
}

.gallery-page-section {
  min-height: calc(100vh - 54px);
  padding-top: clamp(126px, 12vw, 168px);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.5fr) minmax(0, 0.5fr);
  gap: clamp(12px, 1.35vw, 18px);
  align-items: stretch;
}

.gallery-tile {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(246, 242, 234, 0.1);
  border-radius: clamp(16px, 1.5vw, 20px);
  background: #171717;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  cursor: pointer;
}

.gallery-tile-large {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 100%;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.42)),
    rgba(201, 164, 92, 0);
  opacity: 0;
  transition: opacity 420ms var(--ease-premium), background 420ms var(--ease-premium);
  pointer-events: none;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.06) brightness(0.92);
  transform: scale(1);
  transition: transform 700ms var(--ease-premium), filter 700ms var(--ease-premium);
}

.gallery-tile:hover::after {
  opacity: 1;
}

.gallery-tile:hover img {
  filter: saturate(0.96) contrast(1.08) brightness(0.82);
  transform: scale(1.045);
}

.gallery-tile:active {
  transform: scale(0.988);
}

.gallery-swipe-hint {
  display: none;
}

.can-reveal .gallery-page .gallery-tile.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
}

.can-reveal .gallery-page .gallery-tile.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.can-reveal .gallery-page .gallery-tile.reveal:nth-child(2) {
  transition-delay: 90ms;
}

.can-reveal .gallery-page .gallery-tile.reveal:nth-child(3) {
  transition-delay: 150ms;
}

.can-reveal .gallery-page .gallery-tile.reveal:nth-child(4) {
  transition-delay: 210ms;
}

.can-reveal .gallery-page .gallery-tile.reveal:nth-child(5) {
  transition-delay: 270ms;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(14px);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox img {
  max-width: min(1100px, 86vw);
  max-height: 84vh;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.56);
}

.lightbox-close,
.lightbox-control {
  position: fixed;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 242, 234, 0.2);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.64);
  color: #f6f2ea;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 320ms var(--ease-premium), background 320ms var(--ease-premium), border-color 320ms var(--ease-premium);
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
}

.lightbox-close::before,
.lightbox-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.lightbox-close::before {
  transform: rotate(45deg);
}

.lightbox-close::after {
  transform: rotate(-45deg);
}

.lightbox-control {
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
}

.lightbox-control span {
  display: block;
  margin-top: -3px;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.lightbox-close:hover,
.lightbox-control:hover {
  background: rgba(246, 242, 234, 0.16);
  border-color: rgba(246, 242, 234, 0.34);
  transform: scale(1.04);
}

.lightbox-control:hover {
  transform: translateY(-50%) scale(1.04);
}

.contact {
  padding-top: clamp(56px, 5.8vw, 74px);
  padding-bottom: clamp(56px, 5.8vw, 74px);
  background:
    linear-gradient(180deg, rgba(246, 242, 234, 0.035), transparent 38%),
    #080808;
  color: var(--text);
}

.contact-hours-shell {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  max-width: 1180px;
  margin: 0 auto;
}

.contact h2 {
  max-width: 980px;
  color: #f6f2ea;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 0.92;
  text-transform: uppercase;
}

.hours-poster-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.35vw, 18px);
}

.hours-poster-card {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #f6f2ea;
  text-align: center;
  box-shadow: none;
}

.hours-poster-card span {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 42px;
  padding: 8px 18px;
  border-radius: 2px;
  background: #f6f2ea;
  color: #111111;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.26);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.12;
  text-transform: uppercase;
}

.hours-poster-card strong {
  margin-top: 10px;
  color: #f6f2ea;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(13px, 1.12vw, 17px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: clamp(12px, 1.35vw, 18px);
  padding-top: clamp(8px, 1.2vw, 16px);
}

.contact-strip a {
  display: inline-grid;
  grid-template-columns: auto minmax(0, max-content);
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(246, 242, 234, 0.88);
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
  transition: color 240ms var(--ease-premium), transform 240ms var(--ease-premium);
}

.contact-strip svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-strip span {
  display: block;
  text-align: center;
}

.contact-strip a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.site-footer {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 clamp(20px, 7vw, 104px);
  border-top: 1px solid rgba(246, 242, 234, 0.08);
  background: #080808;
}

.site-footer p {
  margin: 0;
  color: rgba(246, 242, 234, 0.64);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.can-reveal .site-footer .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .site-header {
    position: fixed;
    left: 0;
    width: 100%;
    grid-template-columns: 1fr auto;
    min-height: 0;
    padding: 12px clamp(12px, 4vw, 22px);
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    pointer-events: none;
  }

  .site-header.is-scrolled,
  .menu-open .site-header {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(8, 8, 8, 0.32);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(18px) saturate(1.08);
    pointer-events: auto;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 21;
    grid-column: 1 / -1;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(14px, 3vh, 24px);
    width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 112px clamp(26px, 8vw, 72px) 132px;
    background:
      linear-gradient(180deg, rgba(246, 242, 234, 0.035), transparent 42%),
      #070707;
    border-bottom: 0;
    box-shadow: none;
    color: var(--text);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    visibility: hidden;
    backdrop-filter: blur(22px) saturate(1.08);
    overflow-y: auto;
    transition: opacity 520ms var(--ease-premium), transform 520ms var(--ease-premium), visibility 0ms linear 520ms;
  }

  .site-nav::before {
    content: "Meny";
    position: absolute;
    left: clamp(26px, 8vw, 72px);
    top: 112px;
    color: rgba(201, 164, 92, 0.82);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }

  .site-nav a {
    width: min(100%, 520px);
    padding: 7px 0 11px;
    border-bottom: 1px solid rgba(246, 242, 234, 0.12);
    color: rgba(246, 242, 234, 0.88);
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(34px, 9.4vw, 56px);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 0.94;
    text-transform: uppercase;
    transform: translateY(12px);
    opacity: 0;
    transition: color 260ms var(--ease-premium), opacity 520ms var(--ease-premium), transform 520ms var(--ease-premium);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover {
    color: var(--gold);
  }

  .site-nav a.is-active,
  .site-nav a[aria-current],
  .gallery-page .site-nav a.is-active,
  .gallery-page .site-nav a[aria-current] {
    color: rgba(246, 242, 234, 0.88);
  }

  .menu-open .site-nav {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0ms;
  }

  .menu-open .site-nav a {
    opacity: 1;
    transform: translateY(0);
  }

  .menu-open .site-nav a:nth-child(1) {
    transition-delay: 80ms;
  }

  .menu-open .site-nav a:nth-child(2) {
    transition-delay: 120ms;
  }

  .menu-open .site-nav a:nth-child(3) {
    transition-delay: 160ms;
  }

  .menu-open .site-nav a:nth-child(4) {
    transition-delay: 200ms;
  }

  .menu-open .site-nav a:nth-child(5) {
    transition-delay: 240ms;
  }

  .mobile-menu-actions {
    position: absolute;
    left: clamp(26px, 8vw, 72px);
    right: clamp(26px, 8vw, 72px);
    bottom: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(82px, 112px));
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 520ms var(--ease-premium), transform 520ms var(--ease-premium);
  }

  .menu-open .mobile-menu-actions {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 260ms;
  }

  .site-nav .mobile-action-card {
    display: grid;
    place-items: center;
    gap: 10px;
    width: 100%;
    min-height: 0;
    aspect-ratio: 1;
    padding: 14px 6px 13px;
    border: 0;
    border-radius: 12px;
    background: #ffffff;
    color: #20150f;
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    opacity: 1;
    transform: none;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    transition: transform 260ms var(--ease-premium), background 260ms var(--ease-premium), color 260ms var(--ease-premium), border-color 260ms var(--ease-premium);
  }

  .site-nav .mobile-action-card::before,
  .site-nav .mobile-action-card::after {
    display: none;
  }

  .site-nav .mobile-action-card svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .site-nav .mobile-action-card span {
    display: block;
  }

  .site-nav .mobile-action-card:hover {
    color: #20150f;
    transform: translateY(-2px);
  }

  .site-nav .mobile-action-primary {
    background: #ffffff;
    border-color: transparent;
    color: #20150f;
  }

  .site-nav .mobile-action-primary:hover {
    color: #20150f;
  }

  .site-header > .brand {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    min-height: 44vh;
    background-position: 76% center;
  }

  .hero-content {
    min-height: auto;
    padding: 52px clamp(24px, 7vw, 72px) 92px;
  }

  .hero-booking-link {
    right: clamp(24px, 7vw, 72px);
    bottom: 34px;
  }

  h1 {
    font-size: clamp(62px, 13vw, 88px);
  }

  .hero-split-title {
    font-size: clamp(68px, 13vw, 96px);
  }

  .hero-title-klippet {
    margin-left: clamp(92px, 20vw, 150px);
  }

  .contact {
    grid-template-columns: 1fr 1fr;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-portrait,
  .about-portrait img {
    min-height: 480px;
  }

  .gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-tile-large {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 72px;
    padding: 13px 16px;
  }

  .brand-copy span {
    font-size: 20px;
  }

  .brand-copy small {
    display: none;
  }

  .site-nav {
    left: -16px;
  }

  .hero {
    padding: 0;
  }

  .hero-media {
    background-size: cover;
    min-height: 38vh;
    background-position: 74% center;
  }

  .hero-content {
    padding: 40px 18px 82px;
  }

  .hero-booking-link {
    right: 18px;
    bottom: 28px;
    min-height: 28px;
    font-size: 9.5px;
  }

  .hero-content::before {
    top: -28px;
    left: -18px;
    width: 102px;
    height: 102px;
  }

  .hero-content::after {
    top: -10px;
    left: 2px;
    width: 68px;
    height: 68px;
  }

  h1 {
    font-size: clamp(46px, 14vw, 58px);
  }

  .hero-title-lockup {
    max-width: 100%;
  }

  .hero-split-title {
    font-size: clamp(56px, 17.2vw, 70px);
    line-height: 0.78;
  }

  .hero-title-klippet {
    margin-top: -2px;
    margin-left: clamp(74px, 24vw, 102px);
  }

  .hero-text {
    margin: 18px 0 0;
    max-width: 330px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.58;
  }

  h2 {
    font-size: 42px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .section {
    scroll-margin-top: 84px;
    padding: 72px 18px;
  }

  .about {
    padding: 42px 18px 52px;
  }

  .treatments {
    padding: 48px 18px 54px;
  }

  .price-heading {
    padding-bottom: 17px;
    margin-bottom: 8px;
  }

  .price-heading h2 {
    font-size: clamp(50px, 17vw, 76px);
  }

  .price-list {
    gap: 26px;
  }

  .price-mobile-nav {
    position: sticky;
    top: 72px;
    z-index: 5;
    display: flex;
    gap: 8px;
    max-width: 1180px;
    margin: 0 auto 24px;
    padding: 10px 0 12px;
    overflow-x: auto;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.82));
    scrollbar-width: none;
    backdrop-filter: blur(16px);
  }

  .price-mobile-nav::-webkit-scrollbar {
    display: none;
  }

  .price-mobile-nav a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(246, 242, 234, 0.16);
    border-radius: 999px;
    background: rgba(246, 242, 234, 0.04);
    color: rgba(246, 242, 234, 0.86);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
  }

  .price-category {
    gap: 10px;
  }

  .price-item summary {
    grid-template-columns: minmax(0, 1fr) auto 24px;
    gap: 8px;
    align-items: center;
    min-height: 58px;
  }

  .price-line {
    display: none;
  }

  .service-name,
  .service-price {
    font-size: 16px;
  }

  .service-details {
    padding-right: 30px;
  }

  .about-copy p {
    font-size: 13px;
    line-height: 1.5;
  }

  .about-portrait,
  .about-portrait img {
    min-height: 340px;
  }

  .gallery {
    padding: 48px 0 54px 18px;
  }

  .gallery-page-section {
    padding-top: 116px;
  }

  .gallery-heading h1 {
    font-size: clamp(64px, 20vw, 82px);
  }

  .gallery-shell {
    gap: 22px;
    max-width: none;
    margin: 0;
  }

  .gallery-heading {
    max-width: calc(100% - 18px);
    padding-right: 18px;
  }

  .gallery-mosaic {
    display: flex;
    gap: 14px;
    padding-right: 18px;
    padding-bottom: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .gallery-swipe-hint {
    display: flex;
    justify-content: center;
    gap: 7px;
    max-width: calc(100% - 18px);
    padding: 1px 18px 0 0;
  }

  .gallery-swipe-hint span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: rgba(246, 242, 234, 0.2);
  }

  .gallery-swipe-hint span:first-child {
    background: rgba(201, 164, 92, 0.76);
  }

  .gallery-mosaic::-webkit-scrollbar {
    display: none;
  }

  .gallery-tile,
  .gallery-tile-large {
    flex: 0 0 min(84vw, 340px);
    aspect-ratio: 4 / 5;
    min-height: 0;
    scroll-snap-align: start;
  }

  .gallery-lightbox {
    padding: 18px;
  }

  .gallery-lightbox img {
    max-width: 92vw;
    max-height: 78vh;
    border-radius: 16px;
  }

  .lightbox-control {
    width: 42px;
    height: 42px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }

  .contact {
    padding: 52px 18px;
  }

  .contact-hours-shell {
    gap: 22px;
  }

  .contact h2 {
    font-size: 38px;
  }

  .hours-poster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .hours-poster-card {
    min-height: 0;
    padding: 0;
  }

  .hours-poster-card span {
    min-height: 42px;
    padding: 8px 10px;
  }

  .contact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
    padding-top: 8px;
  }

  .contact-strip a {
    grid-template-columns: auto minmax(0, 1fr);
    justify-content: center;
    white-space: normal;
  }
}

@keyframes detailsIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.035);
  }
  to {
    transform: scale(1.075);
  }
}

@keyframes heroReveal {
  from {
    opacity: 0;
    filter: saturate(0.76) contrast(1.08) brightness(0.38);
  }
  to {
    opacity: 1;
    filter: saturate(0.88) contrast(1.08) brightness(0.78);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroEyebrowIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleFromLeft {
  from {
    opacity: 0;
    filter: blur(9px);
    transform: translateX(-54px);
  }
  72% {
    opacity: 1;
    filter: blur(0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}

@keyframes titleFromRight {
  from {
    opacity: 0;
    filter: blur(9px);
    transform: translateX(54px);
  }
  72% {
    opacity: 1;
    filter: blur(0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}

@keyframes ratingIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.can-reveal .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease-premium), transform 700ms var(--ease-premium);
}

.can-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  ::before,
  ::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .can-reveal .reveal {
    opacity: 1;
    transform: none;
  }
}
