:root {
  --ink: #594433;
  --ink-dark: #342d28;
  --muted: #8a7f77;
  --paper: #fff;
  --soft: #f5f3f0;
  --accent: #98c138;
  --warm: #cd853f;
  --line: rgba(89, 68, 51, .18);
  --shadow: 0 18px 50px rgba(49, 39, 31, .12);
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Lora", Georgia, serif;
  font-size: 16.5px;
  line-height: 1.82;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

/* Typography: soft editorial serif for the experience, restrained sans for UI. */
.site-nav, .eyebrow, .section-kicker, .booking-button, .treatment-number, .contact-list dt, .small-title {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}


.sr-only, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  margin: 0;
  padding: .7rem 1rem;
  z-index: 200;
  background: white;
}
.wrap { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.narrow { max-width: 760px; text-align: center; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  border-color: var(--line);
  box-shadow: 0 5px 25px rgba(55, 44, 35, .06);
}
.header-inner {
  width: min(calc(100% - 48px), var(--max));
  height: 92px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { width: 210px; transition: width .3s ease; }
.brand img { width: 100%; filter: drop-shadow(0 1px 5px rgba(255,255,255,.65)); }
.site-header.is-scrolled .brand { width: 174px; }
.site-nav { display: flex; gap: clamp(1.2rem, 3vw, 2.4rem); align-items: center; }
.site-nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 10px rgba(0,0,0,.4);
  position: relative;
}
.site-header.is-scrolled .site-nav a { color: var(--muted); text-shadow: none; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.45rem;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  height: min(780px, 92vh);
  min-height: 620px;
  overflow: hidden;
  background: #3b332d;
  color: white;
}
.hero-slides, .hero-slide, .hero-slide img, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide { margin: 0; opacity: 0; transform: scale(1.045); transition: opacity 1.25s ease, transform 6.5s ease; }
.hero-slide.is-active { opacity: 1; transform: scale(1); z-index: 1; }
.hero-slide img { object-fit: cover; object-position: center; }
.hero-shade {
  z-index: 2;
  background: radial-gradient(circle at 50% 47%, rgba(20,18,15,.04) 0%, rgba(20,18,15,.16) 42%, rgba(20,18,15,.38) 100%), linear-gradient(0deg, rgba(20,18,15,.18), transparent 56%);
}
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 3rem;
  padding-left: clamp(1rem, 5vw, 4rem);
  padding-right: clamp(1rem, 5vw, 4rem);
}
.eyebrow, .section-kicker {
  margin: 0 0 .8rem;
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: .68rem;
  font-weight: 600;
}
.hero h1 {
  margin: 0;
  max-width: 780px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.5rem, 9vw, 8.1rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .9;
  text-shadow: 0 3px 26px rgba(0,0,0,.18);
}
.hero-lead {
  max-width: 560px;
  margin: 1.05rem auto 2.15rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 2.25vw, 1.55rem);
  line-height: 1.42;
  font-style: italic;
  font-weight: 400;
  letter-spacing: .01em;
  text-shadow: 0 2px 16px rgba(0,0,0,.14);
}
.booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: .92rem 1.9rem;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(3px);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 600;
  box-shadow: 0 8px 28px rgba(20,18,15,.12), inset 0 1px 0 rgba(255,255,255,.11);
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.booking-button:hover {
  transform: translateY(-2px);
  background: rgba(255,252,246,.94);
  color: var(--ink-dark);
  border-color: rgba(255,252,246,.98);
  box-shadow: 0 12px 34px rgba(20,18,15,.18);
}
.booking-button:focus-visible { outline: 2px solid rgba(255,255,255,.9); outline-offset: 4px; }
.slider-control {
  position: absolute;
  z-index: 5;
  top: 50%;
  translate: 0 -50%;
  width: 48px;
  height: 72px;
  border: 0;
  background: rgba(255,255,255,.08);
  color: white;
  font-family: Georgia, serif;
  font-size: 2.4rem;
  cursor: pointer;
  transition: background .2s ease;
}
.slider-control:hover { background: rgba(255,255,255,.18); }
.slider-prev { left: 0; }
.slider-next { right: 0; }
.slider-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.slider-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
}
.slider-dots button.is-active { background: var(--accent); transform: scale(1.35); }
.scroll-cue { position: absolute; z-index: 4; bottom: 25px; right: max(24px, calc((100vw - var(--max))/2)); width: 26px; height: 46px; border: 1px solid rgba(255,255,255,.5); border-radius: 20px; }
.scroll-cue span { position: absolute; top: 9px; left: 50%; width: 3px; height: 8px; border-radius: 4px; background: white; transform: translateX(-50%); animation: wheel 1.8s infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%,0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,13px); } }

.section { padding: clamp(5rem, 9vw, 8.5rem) 0; }
.intro { background: white; }
.section-kicker { color: var(--muted); }
.section h2, .section-heading h2 {
  margin: 0 0 1.25rem;
  color: var(--ink-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.025em;
}
.ornament { width: 58px; height: 1px; margin: 2rem auto 2.2rem; background: var(--warm); }
.lead { font-size: clamp(1.08rem, 2vw, 1.26rem); line-height: 1.85; color: var(--ink-dark); }
.signature { margin-top: 2.2rem; font-family: "Cormorant Garamond", Georgia, serif; font-style: italic; font-size: 1.65rem; font-weight: 500; color: var(--warm); }

.treatments {
  position: relative;
  background: var(--soft) url("images/background.jpg") center/cover fixed;
}
.treatments::before { content: ""; position: absolute; inset: 0; background: rgba(250,249,247,.90); }
.treatments > .wrap { position: relative; }
.section-heading { max-width: 690px; margin: 0 auto 3.5rem; text-align: center; }
.section-heading > p:last-child { max-width: 600px; margin-inline: auto; }
.treatment-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.treatment-card {
  min-height: 250px;
  padding: 2.2rem 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.55);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.treatment-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.92); box-shadow: var(--shadow); z-index: 2; }
.treatment-number { color: var(--warm); font-size: .68rem; letter-spacing: .2em; font-weight: 800; }
.treatment-card h3 { margin: 2.8rem 0 .75rem; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.7rem; font-weight: 600; color: var(--ink-dark); }
.treatment-card p { margin: 0; font-size: .92rem; line-height: 1.75; color: #6f645c; }

.quote-band {
  min-height: 360px;
  display: grid;
  place-items: center;
  background: linear-gradient(rgba(46,35,28,.45), rgba(46,35,28,.45)), url("images/slider/karisma_nuuk_ansigtsmassage.jpg") center 45%/cover;
  background-attachment: fixed;
  color: white;
  text-align: center;
}
.quote-band p { max-width: 900px; margin: 0 auto; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(2.35rem, 5vw, 4.6rem); font-weight: 500; line-height: 1.13; font-style: italic; text-shadow: 0 3px 18px rgba(0,0,0,.32); }

.gallery-section {
  background: linear-gradient(180deg, #fff 0%, #fbfaf8 100%);
  overflow: hidden;
}
.gallery-editorial {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 245px 145px 225px;
  gap: clamp(12px, 1.45vw, 20px);
  max-width: 1120px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  border: 0;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: #eee9e4;
  box-shadow: 0 12px 34px rgba(54,43,35,.055);
}
.gallery-a { grid-column: 1 / span 5; grid-row: 1 / span 2; }
.gallery-b { grid-column: 6 / span 3; grid-row: 1 / span 2; }
.gallery-c { grid-column: 9 / span 4; grid-row: 1; }
.gallery-d { grid-column: 9 / span 4; grid-row: 2; }
.gallery-e { grid-column: 1 / span 3; grid-row: 3; }
.gallery-f { grid-column: 4 / span 5; grid-row: 3; }
.gallery-g { grid-column: 9 / span 4; grid-row: 3; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .7s ease;
}
.gallery-a img { object-position: 50% 50%; }
.gallery-b img { object-position: 50% 28%; }
.gallery-c img { object-position: 50% 43%; }
.gallery-d img { object-position: 50% 52%; }
.gallery-e img { object-position: 50% 55%; }
.gallery-f img { object-position: 50% 38%; }
.gallery-g img { object-position: 50% 42%; }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, transparent 55%, rgba(40,31,25,.12));
  opacity: 0;
  transition: opacity .4s ease;
}
.gallery-item::before {
  content: "+";
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  color: white;
  background: rgba(54,43,35,.12);
  backdrop-filter: blur(4px);
  font: 400 1.25rem/1 "Cormorant Garamond", Georgia, serif;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .35s ease, transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.025); filter: saturate(.93); }
.gallery-item:hover::after,
.gallery-item:focus-visible::after { opacity: 1; }
.gallery-item:hover::before,
.gallery-item:focus-visible::before { opacity: 1; transform: none; }
.gallery-item:focus-visible { outline: 1px solid var(--warm); outline-offset: 4px; }

.greenlandic { background: #f2eee9; }
.greenlandic .narrow { max-width: 800px; }
.greenlandic p:not(.section-kicker) { font-size: 1.02rem; line-height: 1.9; }

.contact { background: #fff; }
.contact-layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(3.5rem, 7vw, 6rem); align-items: start; }
.contact-copy > p:not(.section-kicker) { margin-top: -.5rem; }
.contact-list { margin: 2.25rem 0 0; }
.contact-list > div { display: grid; grid-template-columns: 120px 1fr; gap: 1rem; padding: 1rem 0; border-top: 1px solid var(--line); }
.contact-list dt { text-transform: uppercase; font-size: .68rem; letter-spacing: .15em; font-weight: 800; color: var(--muted); }
.contact-list dd { margin: 0; color: var(--ink-dark); }
.contact-list a { text-decoration-thickness: 1px; text-underline-offset: 4px; }
.opening-card { margin-top: 2.1rem; padding: 2.3rem; background: var(--soft); border-top: 1px solid var(--warm); }
.small-title { margin: 0 0 1.4rem; text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 800; color: var(--muted); }
.opening-card table { width: 100%; border-collapse: collapse; font-size: .9rem; font-family: "Lora", Georgia, serif; }
.opening-card th, .opening-card td { padding: .7rem 0; border-bottom: 1px solid var(--line); text-align: left; font-weight: 400; }
.opening-card td { text-align: right; color: var(--ink-dark); }

.site-footer { padding: 3.5rem 0; background: #302922; color: rgba(255,255,255,.68); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.footer-logo { width: 150px; filter: brightness(0) invert(1); opacity: .8; }
.site-footer p { margin: 0; font-size: .75rem; letter-spacing: .03em; }

.lightbox { width: min(92vw, 1100px); max-width: none; padding: 0; border: 0; background: transparent; overflow: visible; }
.lightbox::backdrop { background: rgba(21,17,14,.92); }
.lightbox img { width: 100%; max-height: 84vh; object-fit: contain; box-shadow: 0 20px 80px rgba(0,0,0,.45); }
.lightbox-close { position: absolute; right: -8px; top: -48px; width: 40px; height: 40px; border: 0; background: transparent; color: white; font-size: 2rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 800px) {
  .wrap { width: min(calc(100% - 32px), var(--max)); }
  .header-inner { width: calc(100% - 32px); height: 76px; }
  .brand, .site-header.is-scrolled .brand { width: 145px; }
  .menu-toggle { display: grid; gap: 5px; padding: 9px 4px; border: 0; background: transparent; cursor: pointer; z-index: 2; }
  .menu-toggle span:not(.sr-only) { width: 28px; height: 1px; background: white; transition: transform .25s ease, opacity .25s ease, background .25s ease; }
  .site-header.is-scrolled .menu-toggle span:not(.sr-only), .site-header.menu-open .menu-toggle span:not(.sr-only) { background: var(--ink-dark); }
  .site-header.menu-open { background: white; }
  .site-nav { position: fixed; inset: 76px 0 auto 0; display: grid; gap: 0; padding: 1rem 24px 2rem; background: white; border-top: 1px solid var(--line); box-shadow: 0 22px 30px rgba(40,30,23,.08); transform: translateY(-130%); transition: transform .3s ease; z-index: -1; }
  .site-header.menu-open .site-nav { transform: none; }
  .site-nav a, .site-header.is-scrolled .site-nav a { padding: .9rem 0; color: var(--ink-dark); text-shadow: none; border-bottom: 1px solid var(--line); }
  .site-nav a::after { display: none; }
  .site-header.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .site-header.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .site-header.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { min-height: 650px; height: 88svh; }
  .hero-shade { background: radial-gradient(circle at 50% 46%, rgba(20,18,15,.05) 0%, rgba(20,18,15,.2) 45%, rgba(20,18,15,.44) 100%), linear-gradient(0deg, rgba(20,18,15,.26), transparent 62%); }
  .hero-content { padding-top: 1.5rem; }
  .hero h1 { font-size: clamp(4rem, 19vw, 6.2rem); }
  .hero-lead { max-width: 84%; margin-top: .9rem; }
  .slider-control { display: none; }
  .scroll-cue { display: none; }
  .section { padding: 5rem 0; }
  .treatment-grid { grid-template-columns: 1fr 1fr; }
  .treatment-card { min-height: 225px; padding: 1.7rem 1.4rem; }
  .treatment-card h3 { margin-top: 2rem; }
  .quote-band { min-height: 300px; background-attachment: scroll; }
  .gallery-editorial {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 300px 220px 240px 220px;
  }
  .gallery-a { grid-column: 1; grid-row: 1; }
  .gallery-b { grid-column: 2; grid-row: 1; }
  .gallery-c { grid-column: 1; grid-row: 2; }
  .gallery-d { grid-column: 2; grid-row: 2; }
  .gallery-e { grid-column: 1; grid-row: 3; }
  .gallery-f { grid-column: 2; grid-row: 3 / span 2; }
  .gallery-g { grid-column: 1; grid-row: 4; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.75rem; }
  .opening-card { margin-top: 0; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .hero { min-height: 620px; }
  .hero-slide img { object-position: 58% center; }
  .eyebrow { letter-spacing: .22em; }
  .hero-lead { max-width: 100%; }
  .treatment-grid { grid-template-columns: 1fr; border-left: 0; }
  .treatment-card { min-height: auto; border-left: 1px solid var(--line); }
  .gallery-editorial {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 255px 185px 230px 185px;
    gap: 10px;
  }
  .gallery-a { grid-column: 1 / -1; grid-row: 1; }
  .gallery-b { grid-column: 1; grid-row: 2 / span 2; }
  .gallery-c { grid-column: 2; grid-row: 2; }
  .gallery-d { grid-column: 2; grid-row: 3; }
  .gallery-e { grid-column: 1; grid-row: 4; }
  .gallery-f { grid-column: 2; grid-row: 4; }
  .gallery-g { display: none; }
  .gallery-item::before { opacity: .82; transform: none; width: 30px; height: 30px; right: 10px; bottom: 10px; }
  .contact-list > div { grid-template-columns: 90px 1fr; }
}

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

/* Bilingual about section */
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  margin: 0 auto 2.15rem;
  padding: .48rem .95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #aa9d94;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: .67rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.language-option {
  appearance: none;
  border: 0;
  padding: .25rem .15rem;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  transition: color .2s ease;
}
.language-option:hover,
.language-option:focus-visible { color: var(--ink-dark); }
.language-option.is-active { color: var(--warm); }
.language-option:focus-visible { outline: 1px solid currentColor; outline-offset: 4px; border-radius: 2px; }
.about-language-panel[hidden] { display: none; }
.about-language-panel { animation: about-language-in .38s ease both; }
@keyframes about-language-in {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: none; }
}
