:root {
  --black: #050504;
  --black2: #0d0b08;
  --paper: #f7f1e6;
  --paper2: #fffaf0;
  --gold: #c99a3b;
  --gold2: #f2d28b;
  --bronze: #8a6128;
  --muted: #b7aa96;
  --ink: #17130d;
  --line: rgba(201,154,59,.22);
  --white: #fff;
  --shadow: 0 30px 90px rgba(0,0,0,.22);
  --r: 30px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,var(--gold),var(--gold2));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 9997;
}

.wrap {
  width: min(1180px,92vw);
  margin: auto;
}


.scene {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

.dark-scene {
  background: var(--black);
  color: var(--paper);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 800;
  color: var(--gold2);
  margin-bottom: 18px;
}

.eyebrow:before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

h1, h2, h3 {
  font-family: "Playfair Display",Georgia,serif;
  line-height: .94;
  letter-spacing: -.045em;
}

h1 {
  font-size: clamp(54px,9vw,80px);
  max-width: 1050px;
}

h2 {
  font-size: clamp(34px,4.5vw,64px);
}

h3 {
  font-size: clamp(24px,2.4vw,34px);
}

p {
  color: #756b5c;
}

.dark-scene p {
  color: #c9beaa;
}

.lead {
  font-size: clamp(18px,2vw,22px);
  max-width: 720px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 23px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.15);
  transition: .25s ease;
  position: relative;
  overflow: hidden;
}

.btn.gold {
  background: linear-gradient(135deg,var(--gold),var(--gold2),var(--gold));
  color: #191006;
  border: 0;
  box-shadow: 0 18px 60px rgba(201,154,59,.22);
}

.btn.gold:after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(110deg,transparent 35%,rgba(255,255,255,.7),transparent 55%);
  transform: translateX(-120%);
  transition: .7s;
}

.btn.gold:hover:after {
  transform: translateX(120%);
}

.btn.glass {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  color: var(--paper);
}

.nav {
  position: fixed;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: min(1180px,92vw);
  height: 66px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  backdrop-filter: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 22px;
  z-index: 9996;
  color: var(--paper);
  box-shadow: none;
  transition: background .35s ease,border-color .35s ease,box-shadow .35s ease,backdrop-filter .35s ease;
}

.nav.scrolled {
  border-color: rgba(242,210,139,.17);
  background: rgba(5,5,4,.58);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 70px rgba(0,0,0,.24);
}

.brand {
  font-weight: 900;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand span span, .brand>span:last-child span, .brand.big span:last-child {
  color: var(--gold2);
}

.nav-links {
  display: flex;
  gap: 4px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #d9cfbe;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

.nav-cta {
  background: var(--paper);
  color: #181008;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--paper);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links a.mobile-only {
  display: none;
}

.lang-switch-mobile {
  display: none;
}

.lang-switch {
  position: relative;
  margin-left: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

.lang-switch summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  user-select: none;
  padding: 10px 12px;
  border-radius: 999px;
  color: #d9cfbe;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
}

.lang-switch summary::-webkit-details-marker {
  display: none;
}

.lang-switch summary::after {
  content: "▾";
  font-size: 9px;
  opacity: .7;
  transition: transform .2s ease;
}

.lang-switch[open] summary::after {
  transform: rotate(180deg);
}

.lang-switch summary:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

.lang-switch-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: flex;
  flex-direction: column;
  padding: 6px;
  background: rgba(5,5,4,.94);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(242,210,139,.17);
  border-radius: 16px;
  box-shadow: 0 20px 70px rgba(0,0,0,.35);
  z-index: 20;
}

.lang-switch-menu a {
  padding: 9px 12px;
  border-radius: 10px;
  color: #d9cfbe;
  text-transform: uppercase;
  font-weight: 800;
}

.lang-switch-menu a.active {
  color: var(--gold2);
}

.lang-switch-menu a:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

.hero-content {
  width: min(1180px,92vw);
  margin: auto;
}

.hero-lead {
  font-size: clamp(18px,2vw,22px);
  max-width: 680px;
  margin-top: 26px;
}

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

.hero-trust-badge {
  display: block;
  width: 8rem;
  height: 8rem;
  margin-top: 30px;
  opacity: .92;
}
.hero-trust-badge.is-alt{
  width: 15rem;
  height: 12.188rem;
  opacity: 1
}

.hero-reviews {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 18px;
  padding: 12px 18px;
  box-shadow: 0 20px 55px rgba(0,0,0,.4);
  transition: transform .25s ease, box-shadow .25s ease;
}

.hero-reviews:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 65px rgba(0,0,0,.46);
}

.hero-reviews-icon {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
}

.hero-reviews-text strong {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 25px;
  color: #1a1a1a;
  font-weight: 800;
}

.hero-reviews-text .stars {
  color: #f5b400;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 1px;
}

.hero-reviews-text small {
  display: block;
  color: #5f6368;
  font-size: 12px;
  margin-top: 2px;
}

.salon-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.salon-visual {
  height: 640px;
  border-radius: 42px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

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

.floating-seal small {
  color: #fff;
}

.ticker .filled {
  color: var(--gold2);
  -webkit-text-stroke: 0;
  text-shadow: 0 0 24px rgba(242,210,139,.18);
  font-weight: 900;
}

.pinned-story {
  height: 4200px;
  padding: 0;
}

.pin-sticky {
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.pin-intro {
  position: absolute;
  left: max(4vw,calc((100vw - 1180px)/2));
  top: 112px;
  /*max-width: 690px;*/
  max-width: 960px;
  z-index: 2;
}

.pin-intro h2 {
  margin-bottom: 18px;
}

.pin-intro p {
  max-width: 570px;
}

.pin-track {
  display: flex;
  gap: 26px;
  will-change: transform;
  padding-left: max(4vw,calc((100vw - 1180px)/2));
  padding-top: 260px;
}

.chapter {
  flex: 0 0 min(76vw,540px);
  height: 62vh;
  min-height: 460px;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  background: #17110a;
  border: 1px solid rgba(242,210,139,.22);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 28px 110px rgba(0,0,0,.35);
}

.chapter img ,
.chapter .chapter__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
  transition: .6s;
}

.chapter:hover img {
  transform: scale(1.05);
  opacity: .55;
}

.chapter:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(0,0,0,.85),transparent 58%);
}

.chapter span, .chapter h3, .chapter p, .chapter a {
  position: relative;
  z-index: 1;
}

.chapter span {
  color: var(--gold2);
  font-size: 13px;
  letter-spacing: .16em;
  font-weight: 900;
}

.chapter h3 {
  margin: 12px 0 10px;
}

.chapter p {
  max-width: 420px;
  margin-bottom: 16px;
}

.final-card {
  background: radial-gradient(circle at 60% 20%,rgba(242,210,139,.25),transparent 38%),#0d0a06;
}

.before-after {
  background: linear-gradient(180deg,var(--paper),#ebe1d1);
}

.ba-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 54px;
  align-items: center;
}

.ba-card {
  height: 610px;
  border-radius: 42px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background: #111;
}

.ba-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 44px;
}

.section-head.center {
  text-align: center;
  display: block;
  max-width: 820px;
  margin: 0 auto 44px;
}

.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.craft-card {
  min-height: 560px;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  background: #111;
  color: #fff;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.craft-card.wide {
  grid-column: 1/-1;
  min-height: 440px;
}

.craft-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .54;
  transition: .6s;
}

.craft-card:hover img {
  transform: scale(1.05);
}

.craft-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(0,0,0,.84),transparent 55%);
}

.craft-card div {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.craft-card span {
  color: var(--gold2);
  font-weight: 900;
  letter-spacing: .14em;
  display: block;
  margin-bottom: 8px;
}

.craft-card h3 {
  margin-bottom: 10px;
}

.craft-card p {
  color: #ded5c7;
}

.private-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(0,0,0,.88),rgba(0,0,0,.58)),url("../images/kullake-09.jpg") center/cover;
  z-index: -2;
  transform: scale(1.08);
}

.private-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 60px;
  align-items: center;
}

.private-number {
  border: 1px solid rgba(242,210,139,.3);
  border-radius: 42px;
  background: rgba(0,0,0,.38);
  backdrop-filter: blur(14px);
  padding: 42px;
  text-align: center;
  box-shadow: var(--shadow);
}

.private-number span {
  font-family: "Playfair Display";
  font-size: clamp(54px,8vw,110px);
  line-height: .9;
  color: var(--gold2);
  display: block;
  margin-bottom: 12px;
}

.private-number small {
  display: block;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #e8dcc8;
  font-weight: 900;
}

.private-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.booking {
  background: var(--paper);
}

.booking-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.concierge, .lux-form {
  border-radius: 38px;
  background: #fffaf0;
  border: 1px solid rgba(201,154,59,.23);
  padding: 34px;
  box-shadow: var(--shadow);
}

.concierge h2 {
  margin-bottom: 14px;
}

.contact-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.contact-pills a {
  padding: 12px 14px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 800;
}

.lux-form textarea {
  min-height: 140px;
  resize: vertical;
}

.footer {
  padding: 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 30px;
}

.brand.big {
  font-size: 34px;
  margin-bottom: 12px;
}

.footer a, .footer span {
  display: block;
  color: #cfc2ad;
  margin-top: 8px;
}

.footer strong {
  color: #fff;
}

.reveal-image {
  clip-path: inset(0 0 0 0);
}

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

.hero-content, .hero-glow {
  z-index: 2;
}

.trust-section {
  min-height: 860px;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.trust-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 35%,rgba(242,210,139,.18),transparent 34%),linear-gradient(90deg,#050504,#100c07);
  z-index: -2;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.trust-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}

.trust-list span {
  padding: 15px;
  border: 1px solid rgba(242,210,139,.2);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  color: #eee;
}

.trust-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
  color: #fff;
}

.trust-list small {
  display: block;
  color: #c9beaa;
  font-size: 14px;
  line-height: 1.45;
}

.trust-visual {
  min-height: 590px;
  border-radius: 44px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 120px rgba(0,0,0,.45);
  border: 1px solid rgba(242,210,139,.22);
  background: #0b0805;
}

.trust-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transform: scale(1.04);
}

.footer-logo {
  height: 58px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}
.footer-img{border-radius: 38px;}

.footer .brand.big {
  display: inline-flex;
  align-items: center;
}

.footer-badge {
  width: 64px;
  height: 64px;
  margin-top: 20px;
}

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

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 0 70px;
  isolation: isolate;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  background: #050504;
}

.hero-video {
  position: absolute;
  inset: -8vh 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  z-index: 0;
  transform: none !important;
  will-change: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(0,0,0,.78),rgba(0,0,0,.52),rgba(0,0,0,.82)),linear-gradient(to bottom,rgba(0,0,0,.38),rgba(0,0,0,.18) 38%,rgba(0,0,0,.55));
  z-index: 1;
  pointer-events: none;
}

.nav:not(.scrolled) {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.quote-card {
  margin-top: 32px;
  padding: 30px 34px 32px;
  border-radius: var(--r);
  background: var(--black);
  color: var(--paper);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.quote-card span {
  position: absolute;
  right: 22px;
  top: 0;
  font-size: 112px;
  color: rgba(242,210,139,.22);
  font-family: serif;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.quote-card p {
  color: #eee;
  font-family: "Playfair Display",Georgia,serif;
  font-size: 22px;
  line-height: 1.25;
  position: relative;
  z-index: 1;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
  padding-right: 54px;
}

.floating-seal {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: rgba(8, 7, 5, .78);
  border: 1px solid var(--gold);
  color: var(--gold2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.1;
  backdrop-filter: blur(12px);
  padding: 15px;
  gap: .5rem;
  transform: none !important;
  z-index: 3;
  will-change: transform;
}

.value-strip {
  padding: 20px 0;
  overflow: hidden;
}

.ticker {
  display: flex;
  gap: 44px;
  white-space: nowrap;
  width: max-content;
  animation: ticker 16s linear infinite;
  font-family: "Playfair Display",Georgia,serif;
  font-size: clamp(28px,5vw,70px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(242,210,139,.42);
  will-change: transform;
  animation-duration: 22s;
}

@keyframes ticker {
0%{transform:translate3d(0,0,0)}100%{transform:translate3d(-50%,0,0)}
}

.lux-form {
  display: grid;
  gap: 10px;
  align-content: start;
}

.lux-form label {
  min-width: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 900;
  color: #554632;
  display: block;
  margin: 0;
  line-height: 1.2;
}

.lux-form input, .lux-form select, .lux-form textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid rgba(201,154,59,.28);
  border-radius: 18px;
  padding: 15px;
  background: #fff;
  color: #111;
  outline: none;
}

.form-note {
  min-height: 18px;
  font-size: 13px;
  color: #8a6128;
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.booking-picker {
  margin-top: 6px;
  min-width: 0;
}

.bp-dates {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0;
  scrollbar-width: thin;
  min-width: 0;
}

.bp-date {
  flex: 0 0 auto;
  border: 1px solid rgba(201,154,59,.28);
  background: #fff;
  border-radius: 16px;
  padding: 10px 14px;
  text-align: center;
  cursor: pointer;
  font-weight: 700;
  color: #17130d;
  text-transform: none;
  letter-spacing: 0;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.bp-date span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: #8a6128;
  margin-bottom: 2px;
}

.bp-date:hover {
  border-color: var(--gold);
}

.bp-date.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #17130d;
}

.bp-date.active span {
  color: #3a2c0f;
}

.bp-times {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.bp-time {
  border: 1px solid rgba(201,154,59,.28);
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  color: #17130d;
  text-transform: none;
  letter-spacing: 0;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.bp-time:hover {
  border-color: var(--gold);
}

.bp-time.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #17130d;
}

.bp-times:empty::after {
  content: "Vali esmalt kuupäev";
  font-size: 12px;
  color: #b7aa96;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.bp-selected {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: #8a6128;
}

@media (max-width:700px) {
  .quote-card p {
    padding-right: 0;
  }

  .quote-card span {
    font-size: 86px;
    top: 0;
    right: 16px;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-video {
    inset: -5vh 0;
    height: 110%;
  }

  .hero-reviews {
    right: 16px;
    bottom: 16px;
    padding: 9px 14px;
    gap: 8px;
    border-radius: 14px;
  }

  .hero-reviews-icon {
    width: 20px;
    height: 20px;
  }

  .hero-reviews-text strong {
    font-size: 13px;
  }

  .hero-reviews-text small {
    font-size: 10px;
  }
}

.private-service {
  min-height: 830px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.private-bg-soft {
  inset: -6vh 0;
  background-position: center 52%;
  transform: scale(1.04);
  will-change: transform;
}

.private-service:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(0,0,0,.58),rgba(0,0,0,.2) 48%,rgba(0,0,0,.48));
  z-index: -1;
  pointer-events: none;
}

.btn:after, .nav-cta:after, .contact-pills a:after, .lux-form button:after {
  content: "";
  position: absolute;
  inset: -35%;
  background: linear-gradient(110deg,transparent 34%,rgba(255,255,255,.62),transparent 56%);
  transform: translateX(-125%);
  transition: transform .72s ease;
  pointer-events: none;
}

.btn:hover:after, .nav-cta:hover:after, .contact-pills a:hover:after, .lux-form button:hover:after {
  transform: translateX(125%);
}

.btn.glass:after, .contact-pills a:after {
  background: linear-gradient(110deg,transparent 34%,rgba(242,210,139,.32),transparent 56%);
}

.btn.gold:after, .lux-form button.btn.gold:after {
  background: linear-gradient(110deg,transparent 35%,rgba(255,255,255,.7),transparent 55%);
}

.btn > *, .nav-cta > *, .contact-pills a > *, .lux-form button > * {
  position: relative;
  z-index: 1;
}

.chapter:hover img, .craft-card:hover img {
  transform: none;
}

.btn, .nav-cta, .contact-pills a, .lux-form button {
  position: relative;
  overflow: hidden;
  transform: none !important;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease, border-color .28s ease, filter .28s ease;
}

.btn:hover, .nav-cta:hover, .contact-pills a:hover, .lux-form button:hover {
  transform: translate3d(0,-1px,0) scale(1.025) !important;
  filter: saturate(1.06);
}

.btn.gold:hover, .lux-form button.btn.gold:hover {
  box-shadow: 0 22px 68px rgba(201,154,59,.31), inset 0 0 0 1px rgba(255,255,255,.18);
}

.btn.glass:hover {
  border-color: rgba(242,210,139,.32);
  box-shadow: 0 18px 55px rgba(0,0,0,.18), inset 0 0 0 1px rgba(242,210,139,.08);
}

.nav-cta:hover, .contact-pills a:hover {
  box-shadow: 0 16px 46px rgba(0,0,0,.18);
}

.btn:active, .nav-cta:active, .contact-pills a:active, .lux-form button:active {
  transform: translate3d(0,0,0) scale(.99) !important;
}

.lux-form button:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.concierge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 42px 38px;
}

.concierge .eyebrow {
  margin-bottom: 16px;
}

.why-kullake {
  background: linear-gradient(180deg,#f7f1e6,#efe4d2);
  padding: 96px 0 104px;
}

.why-kullake .section-head.center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 42px;
}

.why-kullake .section-head.center .lead {
  margin-left: auto;
  margin-right: auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}

.why-card {
  min-height: 255px;
  padding: 26px 22px;
  border-radius: 28px;
  background: rgba(255,250,240,.72);
  border: 1px solid rgba(201,154,59,.22);
  box-shadow: 0 24px 70px rgba(61,42,12,.07);
  position: relative;
  overflow: hidden;
}

.why-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%,rgba(201,154,59,.18),transparent 34%);
  opacity: .8;
}

.why-card span, .why-card h3, .why-card p {
  position: relative;
}

.why-card span {
  display: inline-flex;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .16em;
  font-size: 12px;
  margin-bottom: 24px;
}

.why-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: #17130d;
}

.why-card p {
  font-size: 15px;
  color: #6e6250;
}

.trust-section .trust-list span {
  min-height: 54px;
}

.hero .split-title {
  max-width: 920px;
}

.salon-intro .quote-card {
  background: linear-gradient(145deg,#070604,#16100a);
  border: 1px solid rgba(201,154,59,.22);
}

@media (max-width:1000px) {
  .why-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:620px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-kullake {
    padding: 72px 0;
  }

  .why-card {
    min-height: auto;
  }
}

@media (max-width:900px) {
  .nav {
    width: min(560px,92vw);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 4px;
    background: rgba(5,5,4,.94);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(242,210,139,.17);
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 20px 70px rgba(0,0,0,.35);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .nav-links a.mobile-only {
    display: block;
    margin-top: 6px;
    text-align: center;
    color: #181008;
  }
  .nav-links a.mobile-only:hover{color: #fff}

  .lang-switch {
    display: none;
  }

  .lang-switch-mobile {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid rgba(242,210,139,.15);
  }

  .lang-switch-mobile a {
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #d9cfbe;
  }

  .lang-switch-mobile a.active {
    color: var(--gold2);
  }
  .nav-cta.desktop-only {
    display: none;
  }

  .scene {
    padding: 76px 0;
  }

  .hero {
    padding: 90px 0 120px;
    min-height: 92svh;
  }

  .salon-grid, .ba-grid, .private-grid, .booking-grid, .footer-grid {
    grid-template-columns: 1fr;
  }

  .salon-visual, .ba-card {
    height: 500px;
  }

  .pinned-story {
    height: auto;
    padding: 82px 0;
  }

  .pin-sticky {
    height: auto;
    position: relative;
    display: block;
    overflow: visible;
  }

  .pin-intro {
    position: absolute;
    left: max(4vw,calc((100vw - 1180px)/2));
    top: 70px;
    max-width: 760px;
    z-index: 2;
  }

  .pin-track {
    padding: 0 4vw;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    transform: none !important;
  }

  .chapter {
    height: 520px;
    min-height: auto;
    flex-basis: 84vw;
    scroll-snap-align: start;
  }

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

  .craft-card.wide {
    grid-column: auto;
  }

  .section-head {
    display: block;
  }

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

  .trust-visual {
    min-height: 520px;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .private-bg-soft {
    inset: 0;
    transform: none;
  }

  .private-service:after {
    background: rgba(0,0,0,.34);
  }

  .concierge {
    padding: 32px;
  }
    .pinned-story .pin-intro {
    position: relative;
    left: auto;
    top: auto;
    width: min(1180px, 92vw);
    margin: 0 auto;
    padding-bottom: 60px;
  }

  .pinned-story .pin-track {
    position: relative;
    padding: 0 4vw;
    margin-top: 0;
  }
}
@media (min-width: 901px) {
  .pin-sticky {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    height: 100vh;
    padding: 70px 0 36px;
    gap: 36px;
  }

  .pin-intro {
    position: relative;
    left: auto;
    top: auto;
    width: min(1180px, 92vw);
    max-width: none;
    margin: 0 auto;
    flex-shrink: 0;
  }

  .pin-intro h2 {
    max-width: 850px;
    font-size: clamp(34px, 4.5vw, 60px);
    margin-bottom: 14px;
  }

  .pin-intro > p:last-child {
    max-width: 720px;
    font-size: 17px;
    line-height: 1.5;
  }

  .pin-track {
    flex: 1;
    min-height: 0;
    padding-top: 0;
    padding-left: max(4vw, calc((100vw - 1180px) / 2));
    align-items: stretch;
  }

  .chapter {
    height: 100%;
    min-height: 0;
    max-height: 560px;
  }
}