:root {
  --bg: #f3f1f2;
  --bg-2: #ebe7eb;
  --surface: rgba(255, 255, 255, 0.58);
  --surface-strong: rgba(255, 255, 255, 0.82);
  --text: #2f2b31;
  --muted: #6f6873;
  --line: rgba(90, 70, 100, 0.12);
  --brand-purple: #9d2df2;
  --brand-cyan: #20c8df;
  --brand-lilac: #cda6f2;
  --brand-silver: #b7b1b7;
  --brand-deep: #412b52;
  --shadow: 0 20px 60px rgba(81, 57, 101, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
  --transition: 240ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: radial-gradient(
      circle at top left,
      rgba(157, 45, 242, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at top right,
      rgba(32, 200, 223, 0.16),
      transparent 26%
    ),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  line-height: 1.6;
}

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

iframe {
  width: 100%;
  max-width: 100%;
  border: 0;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--brand-purple);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 999;
  background: #fff;
  color: #111;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

/* Base nav link */
.site-nav a {
  position: relative;
  transition: color 0.2s ease;
}

/* Underline animation */
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 0%;
  height: 2px;

  background: linear-gradient(90deg, var(--brand-purple), var(--brand-cyan));
  transition: width 0.25s ease;
}

/* Hover effect */
.site-nav a:hover {
  color: var(--brand-purple);
}

.site-nav a:hover::after {
  width: 100%;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.page-shell {
  overflow: clip;
}

.section {
  padding: 5.5rem 0;
}

.caption {
  width: 100%;
  max-width: 500px;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--muted);
  text-align: left;
}

.eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-deep);
  font-size: 1.3rem;
  font-weight: 500;
}

.section-kicker {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.02;
  margin: 0 0 1rem;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
}
.hero-text {
  max-width: 46ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin: 0 0 1rem;
}

.glass {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.74),
    rgba(255, 255, 255, 0.5)
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-cyan));
  color: white;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition),
    opacity var(--transition);
  box-shadow: 0 14px 30px rgba(127, 71, 184, 0.18);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.5);
  color: var(--brand-deep);
  border-color: rgba(65, 43, 82, 0.12);
  box-shadow: none;
}

.btn-sm {
  min-height: 42px;
  padding: 0.7rem 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(243, 241, 242, 0.7);
  border-bottom: 1px solid rgba(90, 70, 100, 0.08);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  position: relative;
  font-weight: 500;
  color: var(--brand-deep);
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-purple), var(--brand-cyan));
  transition: width 0.25s ease;
}

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

.site-nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--brand-deep);
  transition: var(--transition);
}

.site-header {
  height: 70px;
  padding: 0px;
}

.site-header .menu-toggle {
  display: none;
}

.site-header .site-nav {
  display: flex;
}

.hero {
  position: relative;
  min-height: calc(100svh - 82px);
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://i.imgur.com/XJYSIws.jpeg") center/cover no-repeat;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.34) 0%,
      rgba(255, 255, 255, 0.16) 45%,
      rgba(255, 255, 255, 0.06) 100%
    ),
    radial-gradient(
      circle at 20% 20%,
      rgba(157, 45, 242, 0.14),
      transparent 26%
    ),
    radial-gradient(
      circle at 78% 18%,
      rgba(32, 200, 223, 0.12),
      transparent 24%
    );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: calc(100svh - 82px);
}

.hero-copy {
  max-width: 720px;
  padding-block: 1rem;
}

.hero-text {
  max-width: 52ch;
  color: var(--text);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-card {
  position: relative;
  z-index: 2;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  width: fit-content;
  max-width: 170px;
  margin: 0 0 1rem;
  padding: 0.35rem 0.55rem;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 155%;
  height: 155%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(255, 255, 255, 0.42) 42%,
    rgba(255, 255, 255, 0.1) 72%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: blur(22px);
  pointer-events: none;
}

.hero-logo {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.section-grid.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.section-copy {
  max-width: 62ch;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: center;
}

.image-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.about-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.service-link {
  display: block;
  color: inherit;
}

.service-card {
  height: 100%;
  border-radius: var(--radius-md);
  padding: 1.4rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-link:hover .service-card,
.service-link:focus-visible .service-card {
  transform: translateY(-4px);
}

.service-card.featured {
  background: linear-gradient(
    180deg,
    rgba(157, 45, 242, 0.12),
    rgba(32, 200, 223, 0.08),
    rgba(255, 255, 255, 0.62)
  );
}

.service-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.price {
  color: var(--brand-deep);
  font-weight: 700;
  white-space: nowrap;
}

.helse-price {
  color: var(--brand-deep);
  font-weight: 700;
  white-space: nowrap;
  float: right;
}

.duration {
  display: grid;
  gap: 0.4rem;
  margin: 0.5rem 0 1rem;
}

.duration-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.helse-price {
  font-weight: 600;
  color: var(--brand-deep);
}

.vip-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.vip-list li {
  padding-left: 1.2rem;
  position: relative;
}

.vip-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand-purple);
}

.map-card {
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.map-placeholder {
  min-height: 440px;
  border-radius: calc(var(--radius-lg) - 8px);
  overflow: hidden;
  border: 1px solid rgba(65, 43, 82, 0.12);
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.72),
      rgba(255, 255, 255, 0.35)
    ),
    radial-gradient(
      circle at top left,
      rgba(157, 45, 242, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(32, 200, 223, 0.12),
      transparent 30%
    );
}

.location-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 1.75rem;
}

.label {
  display: inline-block;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.gallery-grid img:nth-child(1) {
  height: 460px;
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(3) {
  height: 220px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.review-card {
  border-radius: var(--radius-md);
  padding: 1.4rem;
}

.review-text {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.review-name {
  color: var(--muted);
  font-weight: 600;
  margin: 0;
}

.gallery-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* all images stacked */
.gallery-slider .slide {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 1.2s ease; /* smooth fade */
}

/* visible image */
.gallery-slider .slide.active {
  opacity: 1;
}

.contact-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 2rem;
}

.contact-copy {
  max-width: 34rem;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  width: 100%;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(65, 43, 82, 0.15);
  background: rgba(255, 255, 255, 0.78);
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand-purple);
  box-shadow: 0 0 0 3px rgba(157, 45, 242, 0.12);
}

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

/* Base icon style (clean + on-brand) */
.fa {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  font-size: 18px;
  text-decoration: none;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(65, 43, 82, 0.12);

  color: var(--brand-deep);

  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.fa::before {
  display: block;
}

.fa {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  font-size: 18px;
  line-height: 1;

  padding: 0;
}

.fa::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* Facebook icon (subtle brand tint, not harsh blue) */
.fa-facebook {
  background: linear-gradient(
    135deg,
    rgba(157, 45, 242, 0.15),
    rgba(32, 200, 223, 0.15)
  );
  color: var(--brand-deep);
}

/* Hover (matches your buttons) */
.fa:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(81, 57, 101, 0.18);
  background: linear-gradient(
    135deg,
    rgba(157, 45, 242, 0.25),
    rgba(32, 200, 223, 0.25)
  );
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(90, 70, 100, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  align-items: start;
}

@media (max-width: 980px) {
  .hero-grid,
  .section-grid,
  .section-grid.reverse,
  .contact-card,
  .footer-grid,
  .location-details,
  .gallery-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .hero-card {
    max-width: 100%;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(3) {
    height: 280px;
  }

  .map-placeholder {
    min-height: 320px;
  }
}

@media (max-width: 820px) {
  .site-header.is-condensed .menu-toggle {
    display: inline-flex;
  }

  .menu-toggle {
    display: inline-block;
    z-index: 60;
  }

  .site-header.is-condensed .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: auto;
    min-width: 260px;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(90, 70, 100, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: var(--transition);
    gap: 1rem;
  }

  .site-header.is-condensed .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(90, 70, 100, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .brand-logo {
    height: 42px;
  }

  .section {
    padding: 4rem 0;
  }

  .services-grid,
  .location-details {
    grid-template-columns: 1fr;
  }

  .service-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}
@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
    z-index: 60;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(90, 70, 100, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: var(--transition);
    gap: 1rem;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .brand-logo {
    height: 42px;
  }

  .section {
    padding: 4rem 0;
  }

  .services-grid,
  .location-details,
  .gallery-grid,
  .section-grid,
  .section-grid.reverse,
  .contact-card,
  .footer-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .service-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .hero {
    min-height: calc(100svh - 72px);
    padding: 1rem 0 2rem;
  }

  .hero-grid {
    min-height: calc(100svh - 72px);
  }

  .eyebrow {
    font-size: 1rem;
  }

  h1 {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max-width), calc(100% - 1.25rem));
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-sm {
    width: 100%;
  }

  /* .hero-card {
  max-width: 120px;
  margin-bottom: 0.75rem;
  padding: 0.2rem 0.35rem;
}

.hero-logo {
  max-width: 105px;
}

.eyebrow {
  font-size: 1rem;
}


  .hero-card::before {
    width: 130%;
    height: 130%;
  } */

  .site-header {
    padding: 0.75rem 0;
  }
}
