:root {
  --bg: #f9f5f1;
  --bg-alt: #ffffff;
  --accent: #c38b6b;
  --accent-dark: #a16c4a;
  --text: #1f1b17;
  --text-muted: #6f6258;
  --border-subtle: rgba(0, 0, 0, 0.06);
  --shadow-soft: 0 18px 45px rgba(15, 10, 5, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
}

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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #f2e6dd 0, #f9f5f1 40%, #fdfdfd 100%);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: transparent;
  border-bottom: none;
}

.header-bar {
  position: relative;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  column-gap: 40px; /* ca. 1 cm på de fleste skærme */
}

.header-social {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.header-left,
.header-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.header-left {
  justify-content: flex-start;
  gap: 18px;
  padding-left: 56px; /* plads til ikoner så Hjem/Priser ikke skifter */
}

.header-right {
  justify-content: flex-end;
}

.header-center {
  flex: 0 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo-image {
  max-height: 70px;
  width: auto;
}

.header-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.05rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #000000;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-size: 0.9rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 2px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.main-nav a.is-active::after {
  width: 100%;
}

.header-subtitle {
  font-size: 0.55rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #000000;
  opacity: 0.9;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.18s ease-out;
}

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

/* burger menu styles no longer used after header redesign */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease-out, color 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out, transform 0.08s ease-out;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.btn-outline {
  border-color: rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.5);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: #fff;
}

.btn-link {
  background: transparent;
  border-color: transparent;
  color: var(--text-muted);
  padding-left: 4px;
  padding-right: 4px;
}

.btn-link:hover {
  color: var(--accent-dark);
}

.header-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.icon-instagram {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.icon-instagram::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1.6px solid rgba(255, 255, 255, 0.9);
  box-sizing: border-box;
}

.icon-facebook {
  background: rgba(161, 108, 74, 0.12);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 600;
}

.icon-facebook::before {
  content: "f";
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero {
  padding: 64px 0 56px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.hero-inner.hero-inner-centered {
  grid-template-columns: minmax(0, 1fr);
}

.hero-content h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero-text {
  margin: 0 0 22px;
  color: var(--text-muted);
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-collage {
  width: 100%;
  max-width: 1100px;
  border-radius: 40px;
  box-shadow: var(--shadow-soft);
  overflow: visible;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 auto;
}

.hero-collage-cell {
  height: 480px;
  background: #f2ebe5;
  border-radius: 12px;
  overflow: hidden;
}

.hero-collage-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-collage-cell:first-child img {
  object-position: center 65%;
}

.header-menu-toggle {
  display: none;
  position: relative;
  width: 28px;
  height: 22px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.header-menu-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #000;
  border-radius: 999px;
  transition: transform 0.18s ease-out, top 0.18s ease-out, opacity 0.18s ease-out;
}

.header-menu-toggle span:nth-child(1) {
  top: 4px;
}

.header-menu-toggle span:nth-child(2) {
  top: 16px;
}

body.menu-open .header-menu-toggle span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

body.menu-open .header-menu-toggle span:nth-child(2) {
  top: 10px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease-out;
  z-index: 15;
}

.mobile-menu-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 72%;
  max-width: 320px;
  background: #f4ece4;
  padding: 80px 32px 32px;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.22s ease-out;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.05rem;
}

.mobile-menu-nav a {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mobile-menu-social {
  margin-top: 32px;
  display: flex;
  gap: 12px;
}

body.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .mobile-menu-inner {
  transform: translateX(0);
}

.hero-header {
  position: relative;
  margin-top: -72px;
  padding: 192px 0 140px;
  background: linear-gradient(to bottom, #f5e9dc, #f9f1e7);
  color: #1f1b17;
}

.hero-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
}

.hero-header-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.hero-header-kicker {
  margin: 0 0 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-header-title {
  margin: 0;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.6vw, 2.2rem);
}

.section {
  padding: 56px 0;
}

.section-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 8px;
}

.section h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.4vw, 2rem);
  margin: 0 0 12px;
}

.section-intro {
  margin: 0 0 24px;
  color: var(--text-muted);
  max-width: 34rem;
}

.about {
  background: var(--bg-alt);
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 48px;
  align-items: center;
}

.about-photo img {
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.about-content p {
  margin: 0 0 12px;
  color: var(--text-muted);
}

.about-cta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
}

.about-insta-link {
  padding-left: 0;
  padding-right: 0;
}

.about-content h2 {
  font-size: clamp(1.6rem, 2.1vw, 1.9rem);
}

.about-content {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Produkter */
.products {
  background: var(--bg-alt);
}

.products-inner {
  max-width: 1040px;
}

.products-main-heading {
  margin: 0 0 40px;
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: var(--text);
}

.product-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 48px 0;
}

.product-block:first-of-type {
  padding-top: 0;
}

.product-block + .product-block {
  border-top: 1px solid var(--border-subtle);
}

.product-block--text-left .product-block-content {
  order: 1;
}

.product-block--text-left .product-block-image {
  order: 2;
}

.product-block--image-left {
  background: var(--bg);
}

.product-block--image-left .product-block-image {
  order: 1;
}

.product-block--image-left .product-block-content {
  order: 2;
}

.product-block-content {
  padding: 0 8px 0 0;
}

.product-brand {
  margin: 0 0 12px;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
}

.product-description {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.product-block-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-block-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.prices {
  background: var(--bg-alt);
}

.prices-inner {
  max-width: 1040px;
}

.prices-heading-frame {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.prices-heading-border {
  display: inline-flex;
  padding: 12px 80px;
  border: 2px solid #2c2620;
  outline: 2px solid transparent;
  box-shadow: 0 0 0 1px #e1d4c7;
}

.prices-heading {
  margin: 0;
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.booking {
  background: radial-gradient(circle at top right, #f2e3d7 0, #f9f5f1 40%, #fdfdfd 100%);
}

.booking-inner {
  max-width: 1040px;
}

.booking-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #f0ddc7;
}

.booking-text {
  padding: 32px 40px 34px;
}

.booking-text h2 {
  margin: 0 0 16px;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.6rem;
}

.booking-text p {
  margin: 0 0 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.booking-actions {
  margin: 18px 0 10px;
}

.booking-button {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.booking-note {
  font-style: italic;
}

.booking-image {
  display: flex;
  align-items: stretch;
  padding: 24px 24px 24px 0;
}

.booking-image img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  object-fit: cover;
  margin-left: auto;
}

.prices-tabs {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.prices-tab {
  border: none;
  background: transparent;
  padding: 0;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--text-muted);
  position: relative;
}

.prices-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: #000;
  opacity: 0;
}

.prices-tab.is-active {
  color: var(--text);
}

.prices-tab.is-active::after {
  opacity: 1;
}

.prices-grid {
  margin-top: 8px;
  border-radius: 32px;
  border: 1px solid #e1d4c7;
  box-shadow: 0 0 0 4px #f7efe7;
  padding: 32px 40px 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 48px;
}

.prices-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  font-size: 0.9rem;
}

.price-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 10px;
}

.price-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 0.98rem;
}

.price-dots {
  border-bottom: 1px solid #d3c0ac;
}

.price-value {
  white-space: nowrap;
}

.price-description {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.card {
  padding: 4px 4px 6px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.treatments-cta {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.contact {
  background: var(--bg);
}

.contact-inner {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  column-gap: 32px;
  align-items: flex-start;
}

.contact-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}

.contact-heading {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.contact-hours .hours-table th,
.contact-hours .hours-table td {
  font-size: 0.9rem;
  text-align: center;
}

.contact-divider {
  width: 1px;
  background: rgba(0, 0, 0, 0.15);
  align-self: stretch;
}

.contact-name {
  margin: 0 0 8px;
  font-weight: 500;
}

.contact-line {
  margin: 0 0 6px;
  font-size: 0.9rem;
}

.contact-line a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-social {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.insta-card {
  margin-top: 8px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.08s ease-out, box-shadow 0.12s ease-out;
}

.insta-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.insta-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #fdf497, #f56040, #bc2a8d, #4c68d7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
}

.insta-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.insta-handle {
  font-size: 0.9rem;
}

.insta-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  font-size: 0.9rem;
}

.hours-table th,
.hours-table td {
  padding: 4px 0;
  text-align: left;
}

.hours-table th {
  font-weight: 500;
}

.hours-table tr:nth-child(odd) td {
  color: var(--text-muted);
}

.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: #faf7f3;
  padding: 16px 0 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-inner a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-note {
  margin-top: 4px;
  font-size: 0.8rem;
  max-width: 28rem;
}

@media (max-width: 900px) {
  .prices-grid {
    padding: 24px 22px 26px;
    border-radius: 26px;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-image {
    order: -1;
  }

  .about-inner,
  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 24px;
  }

  .contact-divider {
    display: none;
  }

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

  .product-block {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 32px 0;
  }

  .product-block--text-left .product-block-content,
  .product-block--text-left .product-block-image {
    order: unset;
  }

  .product-block--image-left .product-block-content {
    order: 1;
  }

  .product-block--image-left .product-block-image {
    order: 2;
  }

  .product-block-image img {
    max-width: 100%;
  }

  .product-block-content {
    padding: 0;
  }

  /* Booking: kun tekst på mobil, skjul billede */
  .booking-card {
    grid-template-columns: minmax(0, 1fr);
    border-radius: 26px;
  }

  .booking-image {
    display: none;
  }

  .booking-text {
    padding: 24px 24px 20px;
  }
}

@media (max-width: 640px) {
  .header-bar {
    padding-inline: 16px;
    gap: 20px;
  }

  .header-left {
    padding-left: 0;
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }

  .header-social {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    margin-bottom: 4px;
  }

  .main-nav {
    background: rgba(255, 255, 255, 0.85);
    padding: 6px 14px;
    border-radius: 999px;
    column-gap: 16px;
  }

  .prices-heading-border {
    padding-inline: 40px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-collage {
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-collage-cell {
    height: 420px;
  }

  .section {
    padding: 40px 0;
  }

  .treatments-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .card {
    padding: 16px 16px 18px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-header {
    padding-top: 160px;
    padding-bottom: 120px;
  }

  .booking-text {
    padding: 20px 20px 16px;
  }
}

@media (max-width: 520px) {
  .header-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding-inline: 16px;
    gap: 12px;
  }

  .header-left {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }

  .header-right {
    justify-content: flex-end;
  }

  .main-nav {
    display: none;
  }

  .header-menu-toggle {
    display: inline-flex;
  }

  .prices-heading-border {
    padding-inline: 24px;
  }
}

