* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}


body.menu-open {
  overflow: hidden;
}
/* =========================
   FOOTER COLUMNS
========================= */

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 220px;
}

.footer-col a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  
}

.phone-mobile-only {
  display: none;
}

@media (max-width: 700px) {
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-col.footer-info-grid {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: flex-start;
  }

  .footer-col {
    min-width: unset;
  }

  .parking-col {
    margin-left: 0;
    align-items: flex-start;
    text-align: left;
  }

  .footer-info-grid .footer-block {
    width: 100%;
    align-items: flex-start;
  }

  .phone-desktop {
    display: none;
  }

  .phone-mobile-only {
    display: inline;
  }
}

  /* image - IMPORTANT FIX */
  .gallery-item img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: rise 0.8s ease forwards;
  }
  

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #fff6e9;
  outline-offset: 3px;
}

button {
  font: inherit;
}

/* =========================
   GLOBALS
========================= */

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 7rem 0;
}

/* =========================
  INDEX.HTML
========================= */

.index-page .hero-content,
.index-page .follow-content,
.index-page .about-salon-content,
.index-page .team-intro,
.index-page .team-grid,
.index-page .contact-note,
.index-page .cta-content,
.index-page .footer-wrap {
  margin-inline: auto;
}

.index-page .hero-content,
.index-page .follow-content,
.index-page .cta-content,
.index-page .contact-note {
  text-align: center;
}

.index-page .team-grid {
  width: min(1000px, 92%);
}

.index-page .social-icon {
  width: 32px;
  height: 32px;
}

/* =========================
   TYPOGRAPHY
========================= */

h1,
h2,
h3, .herohealine {
    margin-top: 0;
    line-height: 1.1;
}

h1,
h2, .herohealine {
    font-family: "Prata", serif;
}

h1, .herohealine {
  font-size:
    clamp(3rem, 8vw, 5.5rem);
}



h2 {
  font-size:
    clamp(2rem, 5vw, 4rem);

  margin-bottom: 1rem;
}

h3 {
  font-size: 1rem;
}

p {
  color: var(--muted);
}

.small-heading {
  margin-bottom: 1rem;

  color: black;

  font-size: .75rem;
  font-weight: 700;

  
  letter-spacing: .2em;
}

.section-intro {
  margin-bottom: 4rem;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.35rem;
  border: none white;
  border-radius: 6px;
  background-color: rgb(224, 201, 160);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: white;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  transition: .18s cubic-bezier(.4,0,.2,1);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent);
  color: white;
}

.btn-small {
  padding: .72rem 1.18rem;
  background-color: rgb(224, 201, 160);
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color:white;
  text-decoration: none !important;
}

.btn-ghost {
  background: black;

  color: white;

  border-color:
    rgba(255,255,255,.35);
}

/* =========================
   TOUCH-FRIENDLY & ACCESSIBILITY
========================= */

/* Ensure buttons and links have minimum 44px touch target size */
.btn,
a.hero-cta,
a:not([class]),
button {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Loading states for buttons */
.btn.loading {
  pointer-events: none;
  opacity: 0.75;
  position: relative;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================
   OM SALONEN
========================= */

.about-salon-section {
  background: #f5f1eb;
  border-bottom: 1px solid var(--line);
  padding: 9rem 0;
  text-align: center;
  position: relative;
  background:
    linear-gradient(
      rgba(245,241,235,0.88),
      rgba(245,241,235,0.88)
    ),
    url("/gfx/lokale3.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-salon-content {
  max-width: 700px;
  margin-inline: auto;
  max-width: 560px;
  line-height: 2;
  
}

.about-salon-content h3 {
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 2rem;
}



.about-salon-content p {
  color: #22201e;
  font-size: 1.08rem;
  font-style: normal;
  margin-top: 0.5rem;
}
/* =========================
   FØLG OS
========================= */

.follow-section {
  background: #ebe7e0;
  border-top: 1px solid var(--line);
  border-bottom: 2.5px solid #e0dbd2;
  padding: 2rem 0 7rem;
  text-align: center;
  
}

.follow-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;

  width: 100%;
}

.follow-links {
  display: flex;
  gap: 1rem;
}

.follow-content h3,
.follow-content p {
  margin: 0;
  display: flex;
  align-items: center;
}

.follow-link img {
  width: 36px;
  height: 36px;
  filter: grayscale(0.2) brightness(0.8);
  transition: filter 0.2s, transform 0.2s;
}

.follow-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  border-radius: 50%;
  padding: 4px;
}

.follow-link img:hover {
  filter: none;
  transform: scale(1.1);
}
.hero-actions .btn {
  margin-inline: auto;
  
}




/* =========================
   VARIABLES
========================= */

:root {
  --bg: #f5f1eb;
  --card: #fffdf9;

  --ink: #191816;
  --muted: #625b52;

  --accent: #ad7742;
  --accent-dark: #8d5f33;

  --footer-bg: #111111;
  --footer-fg: #ffffff;
  --footer-muted: rgb(255 255 255 / 72%);
  --footer-divider: rgb(255 255 255 / 18%);
  --footer-link: #fffdf6;
  --footer-link-underline: rgb(255 255 255 / 85%);
  --footer-active-border: rgb(255 255 255 / 38%);
  --footer-active-bg: rgb(255 255 255 / 10%);
  --parking-badge-bg: #2f66ff;
  --parking-badge-fg: #ffffff;

  --line: rgba(0, 0, 0, 0.08);

  --radius: 24px;

  --shadow:
    0 10px 30px rgba(0,0,0,.08);

  --container:
    min(1100px, 92%);

  --space-1: 0.5rem;
  --space-2: 0.9rem;
  --space-3: 1.4rem;
  --space-4: 2.2rem;
  --space-5: 3.2rem;
  --space-6: 4.8rem;
}

/* =========================
   RESET
========================= */



/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

  transition:
    padding 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);

  background: rgba(170, 165, 158, 0.78);

  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}

.site-header.scrolled {
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;

  background: rgba(170, 165, 158, 0.78);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);

}

.site-header:not(.scrolled) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

.nav-links a {
  color: white;
  font-weight: 700;
  transition: color 0.3s ease;
  justify-content: flex-start;
}

.nav-links a[aria-current="page"] {
  color: #fff6e9;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.28em;
  
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  gap: 2rem;
}

.logo {
  font-family: "Prata", serif;
  letter-spacing: .12em;
  position: static;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  width: 195px;
  height: auto;
  object-fit: contain;
  filter: none;
  transition: filter 2.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.scrolled .logo img {
  filter: brightness(0) saturate(100%);
}



/* =========================
   NAVIGATION
========================= */

.nav-links {
  display: flex;
  flex-direction: column;
  text-align: start;
  align-items: flex-start;
  gap: 0.45rem;


  position: absolute;

  top: calc(100% + 12px);
  right: 0;

  min-width: 240px;

  padding: 1rem 1rem 1.2rem;

  background: rgba(141, 136, 129, 0.56);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.2);

  border-radius: 16px;

  line-height: 1.6;
  

  box-shadow: 0 8px 24px rgba(0,0,0,0.1);

  z-index: 1200;

  opacity: 0;
  visibility: hidden;
  transform: scale(0.95) translateY(-8px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}

.nav-links.open {
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

/* --- Burger menu wrap for right alignment --- */
.burger-menu-wrap {
  position: relative;
  z-index: 2000;
  margin-left: auto;
}

.burger {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;

  border: 1px solid rgba(2, 2, 2, 0.55);
  border-radius: 50%;
  background: transparent;

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.burger span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: #000;

  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease,
    background-color 0.25s ease;
}

.burger:hover, .burger.open {
  box-shadow: none;

  transform: none;

  background: rgba(255,255,255,0.16);

  border-color: rgba(255,255,255,0.8);
}


.burger:hover span, .burger.open span {
  background: #fff;
}

.site-header.scrolled .burger {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  flex: 0 0 48px;
  padding: 0;
  gap: 6px;
  border-width: 1px;
  background: rgba(255,255,255,0.2);
  border-color: rgba(47,41,37,0.35);
}

.site-header.scrolled .burger span {
  background: #2f2925;
}

.site-header:not(.scrolled) .burger {
  border-color: rgba(250, 230, 200, 0.72);
  background: rgba(250, 230, 200, 0.08);
}

.site-header.scrolled .burger {
  border-color: #2f2925;
  border-width: 1px;
  background: rgba(250, 230, 200, 0.08);
  
}

.site-header .burger:hover {
  background: rgba(250,230,200,0.24);
  border-color: rgb(250, 230, 200);
 
}

.site-header:not(.scrolled) .burger:hover span {
  background: #fff;
  
}

.site-header.scrolled .burger:hover {
  background: rgba(47,41,37,0.92);
  border-color: #2f2925;
  
}

.site-header.scrolled .burger:hover span {
  background: #fff;
  
}



.site-header:not(.scrolled) .burger span {
  background: rgb(250, 230, 200);
}



.burger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
/* =========================
   HERO
========================= */

.hero {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: clamp(500px, 85vh, 900px);
  min-height: 350px;
  max-height: 100vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to right,
      rgba(56, 56, 56, 0.72),
      rgba(84, 84, 84, 0.2)
    );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 680px;

  
}

.hero-text {
  max-width: 650px;
  z-index: 2;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.hero-eyebrow {
  margin-bottom: 2.35rem;
  color: rgb(250, 230, 200);
  font-size: 0.65rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.78;
}

.hero-text h1, .hero-text .herohealine {
    color: rgb(250, 230, 200);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: clamp(6.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-text h1, .hero-text .herohealine {
    font-size: clamp(3rem, 5vw, 4.2rem);
    line-height: 1.1;
}

.hero-text p {
  color: white;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;

  flex-wrap: wrap;
  margin-top: 3rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none white;
  border-radius: 6px;
  background-color: rgb(224, 201, 160);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: white;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1.1rem;
  transition: .18s cubic-bezier(.4,0,.2,1);
  padding: 1rem 2.55rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}


.hero-cta:hover {
  transform: translateY(-2px);
  background: var(--accent);
  color: white;
}






/* =========================
   OM EJER / SALON
========================= */
/* =========================
   MØD OS
========================= */

.team-section {
  padding: 8rem 0;
  background: #f5f1eb;
  text-align: center;
}

.team-intro {
  max-width: 580px;

  margin: 0 auto 5rem;

  text-align: center;
}

.team-intro h2 {
  width: 100%;
  text-align: center;
  margin-inline: auto;
  margin-bottom: 1rem;

  font-size: clamp(2rem, 4vw, 3rem);

  line-height: 1.1;
}

.team-intro p {
  line-height: 1.8;

  color: #5f574e;
}

.team-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: .5rem;

  width: min(1000px, 92%);

  margin: 0 auto;
  justify-items: center;
  align-items: center;
}

.team-member {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.team-member img {
  width: 100%;
  max-width: 380px;
  height: 380px;

  object-fit: cover;

  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.team-member h3 {
  font-size: 1.2rem;

  margin-bottom: 0.3rem;
}

.team-member p {
  font-size: 0.95rem;

  color: #8b8177;
}

.produkt-sektion {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.produkt-tekst {
  flex: 1;
}

.produkt-billede {
  flex: 0 0 600px;
}

.produkt-billede img {
  width: 100%;
  height: auto;
  display: block;
  justify-self: center;
}

.produkt-billede h2 {
justify-self: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}


/* =========================
   MOBILE
========================= */



  @media (max-width: 700px) {

  .team-section {
    padding: 6rem 1.5rem;
    text-align: center;
  }

  .team-intro {
    margin-bottom: 3rem;
  }

  .team-intro h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    justify-items: center;
    align-items: center;
  }

  .team-member {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 100%;
  }

  .team-member img {
    height: 420px;
    width: 100%;
    max-width: 100%;
  }

  .team-member h3 {
    font-size: 1.4rem;
  }

  .team-member .desc {
    max-width: 32ch;
    margin: 0 auto;
  }

  .follow-section {
  background: #ebe7e0;
  border-top: 1px solid var(--line);
  border-bottom: 2.5px solid #e0dbd2;
  padding: 1.5rem;
  text-align: center;
  justify-content: center;
  
}

  .contact-note {
    padding: 2.5rem 1rem;
    padding-bottom: 4rem;
  }

  .cancellation-strip {
    max-width: 100%;
    margin: 1.25rem 0 1.8rem;
    padding: 0.95rem 1rem;
    font-size: 0.9rem;
  }

  .cancellation-label {
    font-size: 0.75rem;
  }

  .cancellation-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}


.contact-note {
  padding: 4rem 1rem;
  text-align: center;
  background: #f5f1eb;
  padding-bottom: 7rem;
  
}

.cancellation-strip {
  display: grid;
  gap: 0.45rem;
  max-width: 700px;
  margin: 3.25rem auto 0;
  padding: 1.35rem 1.4rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0;
  background: #f8f4ee;
  box-shadow: none;
  text-align: center;
}

.cancellation-label {
  margin: 0;
  color: #111111;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  margin-bottom: 1.2rem;
  
  
}

.cancellation-text {
  margin: 0;
  color: #5f574e;
  font-size: 0.98rem;
  line-height: 1.7;
  
}

.contact-note p {
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #5f574e;
}

.contact-note .small-heading {
  padding-bottom: 0.35rem;
}

.contact-note .contact-phone-opening {
  color: #111111;
  margin: 0 0 0.25rem;
}

.contact-note .contact-phone-line {
  margin: 0 0 0.9rem;
}

.contact-note .contact-phone-intro {
  color: #5f574e;
  margin: 0;
}

.contact-note .phone-desktop,
.contact-note .phone-mobile-only {
  white-space: nowrap;
  font-weight: 400;
}

/* =========================
   INNER PAGES
========================= */

.inner-page-main {
  padding-top: 5.5rem;
  background: #ffffff;
}

.inner-hero {
  padding: 5rem 0 4rem;
  min-height: 220px; /* justér efter smag */
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.inner-hero-content {
  max-width: 760px;
  text-align: center;
}

.inner-hero-content h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.4rem);
  margin-bottom: 1rem;
}

.inner-hero-content p {
   max-width: 58ch;
  margin: 0 auto;
}

.inner-hero-content p:last-child {
  max-width: 58ch;
  margin: 0 auto;
  padding-top: 0.45rem;
  line-height: 1.65;
  min-height: 3.3em;
}

.inner-section {
  padding: var(--space-6) 0 6rem;
  background: #ffffff;
}

.inner-grid {
  display: grid;
  gap: var(--space-4);
  margin-top: 0;
}

.inner-section .inner-grid + .inner-grid {
  margin-top: var(--space-5);
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.info-card h2 {
  margin-bottom: var(--space-3);
  color: #111111;
  font-size: 1.45rem;
}

.info-card p + p {
  margin-top: var(--space-2);
}

.info-card p {
  color: #111111;
}

/* =========================
   PRIVATLIVSPOLITIK.HTML
========================= */

.privatliv-minimal .inner-hero {
  min-height: auto;
  padding: 4.25rem 0 2.5rem;
}

.privatliv-minimal .inner-hero-content {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.privatliv-minimal .inner-hero-content h1 {
  width: 100%;
}

.privatliv-minimal .inner-hero-content p {
  width: 100%;
  margin: 0;
  text-align: center;
}

.privatliv-minimal .inner-hero-content p + p {
  margin-top: 0.95rem;
}

.privacy-update-box {
  display: inline-flex;
  margin-top: 2rem;
  padding: 0.3rem 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: #f8f4ee;
  color: #111111;
  font-size: 0.95rem;
  line-height: 1.45;
}

.privatliv-minimal .inner-section {
  padding-top: 1rem;
}

.privacy-layout {
  max-width: 780px;
  margin-inline: auto;
}

.privacy-toc {
  margin-bottom: 2rem;
  padding: 1rem 0.9rem 1rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  background: #f8f4ee;
}

.privacy-toc-label {
  margin-bottom: 0.75rem;
  color: #111111;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-toc nav {
  display: grid;
  gap: 0.38rem;
  justify-items: start;
}

.privacy-toc a {
  display: block;
  width: 100%;
  min-height: 0;
  min-width: 0;
  padding: 0;
  color: #111111;
  font-weight: 700;
  line-height: 2;
  text-decoration: underline;
  text-decoration-color: rgba(17, 17, 17, 0.28);
  text-underline-offset: 0.16em;
}

.privacy-content {
  display: grid;
  gap: 2.25rem;
  padding-top: 2.25rem;
}

.privacy-section {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.055);
  scroll-margin-top: 6.4rem;
}

.privacy-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.privacy-section h2 {
  margin-bottom: 0.8rem;
  color: #111111;
  font-size: 1.5rem;
}

.privacy-section h3 {
  margin: 0 0 0.55rem;
  color: #111111;
  font-size: 1.05rem;
}

.privacy-section p,
.privacy-section li {
  color: #111111;
  line-height: 1.72;
}

.privacy-section p + p,
.privacy-section ul + p,
.privacy-section .privacy-subsection + .privacy-subsection {
  margin-top: 0.85rem;
}

.privacy-section ul {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
}

.privacy-subsection {
  display:grid;
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  background: transparent;
}

#leverandorer ul li{list-style: none;display:grid;
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  background: transparent;}

.privacy-section#opbevaring {
  padding-top: calc(1.25rem + 1.5rem);
}



.privacy-note {
  color: #5f574e;
  font-size: 0.95rem;
}

#rettigheder ul {
  gap: 0.7rem;
}

/* =========================
   PRISER.HTML
========================= */
.priser-minimal {
    padding-top:5rem;
}
.priser-minimal .inner-grid.two-col {
    gap: clamp(2.2rem, 4vw, 3.25rem);
}

.priser-minimal .prices-top-layout {
  align-items: start;
  grid-template-areas:
    "clip color"
    "quick color";
}

.priser-minimal .clip-info-card {
  grid-area: clip;
}

.priser-minimal .color-treat-card {
  grid-area: color;
}

.priser-minimal .quick-info-card {
  grid-area: quick;
}

.priser-minimal .inner-grid.two-col .info-card {
  padding: clamp(1rem, 1.5vw, 1.35rem);
  border: none;
  border-radius: 10px;
  background: transparent;
}

.priser-minimal .info-card-wide {
  margin-top: var(--space-5);
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.priser-minimal .quick-info-card {
  margin-top: clamp(0.85rem, 1.2vw, 1.05rem);
  padding: clamp(0.7rem, 1vw, 0.9rem) 0 0;
}

.priser-minimal .quick-info-card h2 {
  margin-bottom: 0.7rem;
  font-size: 1.22rem;
  color: #111111;
}

.priser-minimal .quick-info-card .note-list {
  display: grid;
  gap: 0.15rem;
}

.priser-minimal .quick-info-card .note-list p + p {
  margin-top: 0;
}

.priser-minimal .quick-info-card .note-list p {
  line-height: 1.52;
  font-size: 1rem;
}

.priser-minimal .quick-info-card .note-list p {
  padding-left: 0;
}

.priser-minimal .quick-info-card .note-list p::before {
  content: none;
}

.priser-minimal .info-products-block {
  margin-top: clamp(1.25rem, 2vw, 1.7rem);
  padding-top: 0;
  padding-inline: 0;
  border-top: none;
  border-radius: 0;
  background: transparent;
}

.priser-minimal .note-list {
  gap: 0.55rem;
}

.priser-minimal .note-list p {
  position: relative;
  padding-left: 0.9rem;
  line-height: 1.42;
  font-size: 0.98rem;
}

.priser-minimal .info-card-wide h2 {
  margin-bottom: 0.7rem;
}

.priser-minimal .info-card-wide .produkt-sektion {
  gap: 0;
}

.priser-minimal .note-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
}

.priser-minimal .notice-card {
  margin-top: var(--space-5);
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.priser-minimal .info-products-block .notice-card {
  border: none;
  background: transparent;
}

.priser-minimal .notice-card-standalone {
  max-width: min(600px, calc((100% - clamp(2.2rem, 4vw, 3.25rem)) / 2));
  margin-inline: 0;
  margin-top: clamp(0.3rem, 0.8vw, 0.55rem);
  margin-bottom: clamp(1.4rem, 2.6vw, 2rem);
  padding: clamp(0.95rem, 1.4vw, 1.15rem);
  border: none;
  border-radius: 8px;
  background: transparent;
}

.priser-minimal .brand-logos-section {
  max-width: 100%;
  margin-inline: 0;
}

.priser-minimal .info-products-block .brand-logos-section {
  margin-top: clamp(2.8rem, 4.8vw, 3.8rem);
  padding-top: clamp(1rem, 1.8vw, 1.4rem);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.priser-minimal .info-products-block .brand-logos-section h2 {
  padding-top: 0;
}

.priser-minimal .notice-card h2 {
  margin-bottom: 0.7rem;
  color: #111111;
  letter-spacing: normal;
}

.priser-minimal .notice-card p {
  font-size: 1rem;
  line-height: 1.58;
  font-weight: 400;
  color: #111111;
}

.price-list {
  list-style: none;
  display: grid;
  gap: 2px;
}
    .price-list li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
        padding-bottom: var(--space-3);
        gap: var(--space-4);
        padding-top:0;
    }
        .price-list li, .price-list li p {
            display: flex;
            flex-direction: column;
            width: 100%;
            justify-content: space-between;
            align-items: baseline;
            /*border-bottom: 1px solid rgba(0, 0, 0, 0.12);*/
            margin-bottom:0;
            padding-top:3px;
        }
        @media (min-width:700px) {
          .price-list li, .price-list li p {
            flex-direction: row;
        }

        }
            .price-list li span, .price-list li p span {
                /*line-height: 1.55;*/
            }

.price-list strong {
  color: #111111;
  white-space: nowrap;
}

.info-card-wide {
  margin-top: var(--space-4);
}

.note-list {
  display: grid;
  gap: var(--space-2);
}

.note-list p {
  color: #111111;
}

.notice-card {
  margin-top: var(--space-4);
}

.notice-card h2 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.notice-card p {
  color: #111111;
  font-weight: 700;
  line-height: 1.7;
}

.brand-logos-section {
  margin-top: 8rem;
  text-align: center;
  padding: 2.5rem 0 1rem;
}

.brand-logos-section h2 {
  padding-top: var(--space-6);
  padding-bottom: var(--space-1);
  margin-bottom: var(--space-4);
  font-size: 1.4rem;
  color: #111111;
}

.brand-intro-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.8rem;
}

.brand-copy {
  max-width: 50ch;
}

.priser-minimal .brand-copy {
  max-width: none;
  padding-left: clamp(1rem, 1.5vw, 1.35rem);
}

.brand-logos-text {
  margin: 0;
  color: #22201e;
  font-size: 1rem;
  line-height: 1.58;
  text-align: left;
  
}

.brand-logos-text-secondary {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.045);
}

.brand-products-image {
  margin: 0;
}

.brand-products-image img {
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.brand-products-image figcaption {
  margin-top: 0.9rem;
  font-size: 0.88rem;
  color: #625b52;
  text-align: left;
}

.brand-logos-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
  align-items: center;
  justify-items: stretch;
}

.brand-logos-grid img {
  width: 100%;
  height: 92px;
  padding: 0.65rem 0.8rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  object-position: center;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.inner-hero-content h1,
.inner-hero-content p,
.inner-hero-content .small-heading {
  color: #111111;
}

.inner-hero {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.inner-grid.two-col {
  column-gap: 3.5rem;
  align-items: start;
}

.team-section-inner {
  background: #ffffff;
}

.team-section-inner .team-intro p,
.team-section-inner .team-member p,
.team-section-inner .role,
.team-section-inner h2,
.team-section-inner h3 {
  color: #111111;
}

.team-section-inner {
  padding-top: 4rem;
}
/* =========================
   CTA
========================= */

.cta-section {
  background: lab(61.02% 0.37 0.12);

  color: white;

  text-align: center;
}

.cta-content {
  max-width: 900px;
}

.cta-content .small-heading {
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.cta-content h2 {
  margin-bottom: 2rem;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  padding: 2.25rem 0 1.5rem;
  background: var(--footer-bg);
  color: var(--footer-fg);
}

.site-footer .container {
  width: min(980px, 86%);
}

.footer-wrap {
  display: flex;

  justify-content: space-between;
  align-items: flex-start;

  gap: 1rem;
}

.footer-wrap p {
  margin: 0;
  color: var(--footer-fg);
}

.site-footer a {
  min-height: 0;
  min-width: 0;
  display: inline;
}

.site-footer .footer-col a {
  color: var(--footer-fg);
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.footer-col.footer-info-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: start;
  gap: 4.2rem;
  flex-direction: row;
}

.footer-info-grid .footer-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  line-height: 1.35;
}

.footer-info-grid .footer-block::before {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--footer-fg);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.footer-info-grid .footer-address::before {
  content: "Salon Heidi";
}

.footer-info-grid .footer-contact::before {
  content: "Kontakt";
}

.footer-info-grid .footer-legal-info::before {
  content: "Information";
}

.footer-info-grid .footer-address {
  max-width: 290px;
}

.footer-info-grid .footer-contact,
.footer-info-grid .footer-legal-info {
  align-self: flex-start;
}

.footer-info-grid .footer-address p,
.footer-info-grid .footer-contact p,
.footer-info-grid .footer-legal-info p {
  margin: 0;
}

.footer-meta-label {
  color: var(--footer-muted);
  font-weight: 500;
}

.footer-info-grid .footer-legal-info a {
  color: var(--footer-link);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--footer-link-underline);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1.5px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease, background-color 0.2s ease;
}

.footer-info-grid .footer-legal-info a:hover {
  color: var(--footer-fg);
  text-decoration-color: var(--footer-fg);
}

.footer-info-grid .footer-legal-info a[aria-current="page"] {
  display: inline-block;
  padding: 0.08rem 0.42rem;
  border: 1px solid var(--footer-active-border);
  border-radius: 999px;
  background: var(--footer-active-bg);
  color: var(--footer-fg);
  text-decoration: none;
}

.footer-info-grid .footer-legal-info a:focus-visible {
  outline: 2px solid var(--footer-link);
  outline-offset: 2px;
}

.parking-col {
  width: 100%;
  margin-left: 0;
  margin-top: 1.25rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--footer-divider);
  align-items: center;
  text-align: left;
}

.parking-col p {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-style: normal;
  color: var(--footer-fg);
  font-size: 1.125rem;
  line-height: 1.35;
  margin-top: 35px;
}

.parking-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 20%;
  background: var(--parking-badge-bg);
  color: var(--parking-badge-fg);
  font-size: 0;
  line-height: 0;
}

.parking-icon::before {
  content: "P";
  display: block;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  
}

.parking-text {
  font-size: 18px;
}

.parking-col em {
  font-style: normal;
}

.parking-highlight {
  font-weight: 700;
}

.footer-gap {
  display: inline-block;
  width: clamp(.2rem, 2vw, 1.75rem);
  height: 0;
}



/* =========================
   ANIMATIONS
========================= */

@keyframes rise {

  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

.hero-text,
.trust-card,
.service-item,
.stylist-card,
.gallery-image {
  animation: rise .6s ease both;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .stylists-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

}

@media (max-width: 700px) {
  .site-header {
    background: rgba(170, 165, 158, 0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,0.18);
  }

  .site-header.scrolled {
    background: rgba(170, 165, 158, 0.34);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  }

  .section {
    padding: 5rem 0;
  }

  .inner-page-main {
    padding-top: 4.75rem;
  }

  .inner-hero {
    padding: var(--space-5) 0 var(--space-3);
  }

  .inner-hero-content h1 {
    font-size: clamp(2rem, 7vw, 2.5rem);
  }

  .inner-section {
    padding: var(--space-5) 0 4.25rem;
  }

  .privacy-section {
    scroll-margin-top: 5.6rem;
  }

  .inner-grid {
    gap: var(--space-3);
    margin-top: var(--space-4);
  }

  .inner-grid.two-col {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .info-card h2 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }

  .price-list {
    gap: var(--space-2);
  }

  .price-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding-bottom: 0.7rem;
  }



  .price-list strong {
    white-space: normal;
  }

  .info-card-wide {
    margin-top: 1rem;
  }

  .notice-card {
    margin-top: 1.5rem;
  }

  .brand-logos-section {
    margin-top: var(--space-4);
    padding: 1.5rem 0 0.65rem;
  }

  .priser-minimal .info-products-block {
    margin-top: 1rem;
    padding-top: 0;
    padding-inline: 0;
    border-radius: 0;
  }

  .priser-minimal .prices-top-layout {
    grid-template-areas:
      "clip"
      "color"
      "quick";
  }

  .priser-minimal .quick-info-card {
    margin-top: 0.7rem;
    padding-top: 0;
  }

  .priser-minimal .notice-card-standalone {
    max-width: 100%;
    margin-top: 0.35rem;
    margin-bottom: 1.5rem;
    padding: 0.9rem;
  }

  .priser-minimal .info-products-block .brand-logos-section {
    margin-top: 2.8rem;
    padding-top: 0.9rem;
  }



  .brand-logos-section h2 {
    padding-top: var(--space-3);
    margin-bottom: 1.1rem;
  }

  .brand-intro-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.6rem;
  }

  .brand-logos-text {
    max-width: 100%;
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
    text-align: left;
  }

  .brand-copy {
    max-width: 100%;
  }

  .priser-minimal .brand-copy {
    padding-inline: 0.9rem;
  }

  .priser-minimal .brand-products-image {
    padding-inline: 0.9rem;
  }

  .brand-logos-text-secondary {
    margin-top: 1.15rem;
    padding-top: 1rem;
  }

  .brand-products-image img {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
  }

  .brand-products-image figcaption {
    text-align: center;
  }

  .burger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    text-align: start;
  align-items: flex-start;

    top: calc(100% + 12px);
    right: 0;
    

    flex-direction: column;

    padding: 1.35rem;

    background: rgba(126, 117, 108, 0.92);

    border-radius: 16px;

    min-width: 240px;

    opacity: 0;
    visibility: hidden;
    transform: scale(0.95) translateY(-8px);
      transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    pointer-events: none;
  }

  .nav-links.open {
      transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    pointer-events: auto;
  }

  .about-salon-section {
    padding: 8rem 1.5rem;
    background-attachment: scroll;
  }

  .trust-grid,
  .stylists-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-image.large {
    grid-column: auto;

    height: 500px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-text p {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .service-item {
    flex-direction: column;

    gap: .5rem;

    text-align: center;
  }

  .site-footer .container {
    width: var(--container);
  }

  .footer-wrap {
    flex-direction: column;

    align-items: flex-start;
    text-align: left;
    gap: 0.7rem;
  }

  .footer-col {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }

  .footer-col.footer-info-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.15rem;
  }

  .footer-info-grid .footer-block {
    align-items: flex-start;
  }

  .footer-info-grid .footer-block::before {
    margin-bottom: 0.35rem;
  }

  .parking-col {
    margin-left: 0;
    align-items: flex-start;
    text-align: left;
  }

  .footer-col p {
    text-align: left;
  }

  .brand-logos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

}

@media (max-width: 520px) {

  .hero-image-wrapper {
    height: 80vh;
  }

  .trust-card {
    flex-direction: column;

    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .price-list li span,
  .price-list strong,
  .note-list p,
  .contact-notes-card p,
  .brand-logos-text {
    font-size: 1rem;
  }

  .brand-logos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-logos-grid img {
    height: 84px;
    padding: 0.6rem;
  }

  .brand-products-image img {
    border-radius: 16px;
  }

}
@media (max-width: 900px) {
  .nav-links {
    gap: .5rem;
  }

  .nav-links a {
    font-size: .85rem;
  }
}

@media (max-width: 700px) {
  .nav-links a {
    font-size: .8rem;
  }
}

@media (max-width: 700px) {
  .hero-text h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 700px) {

  .logo {
    display: none;
  }

  .mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-wrap {
    justify-content: space-between;
    padding: 0 1rem;
  }

}

/* =========================
   KONTAKT.HTML
========================= */

.kontakt-minimal .map-section {
  padding-top: 2.4rem;
}

.kontakt-minimal .map-card {
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(1.25rem, 2vw, 1.8rem);
 
  border-radius: 12px;
  
}

.kontakt-minimal .map-card h2 {
  margin-bottom: 0.8rem;
  font-size: 1.45rem;
}

.kontakt-minimal .map-card p {
  margin: 0 0 1rem;
  color: #5f574e;
}

.kontakt-minimal .find-us-layout, .find-us-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(290px, 460px);
    align-items: start;
    gap: clamp(1.2rem, 2.6vw, 2.2rem);
}

.kontakt-minimal .find-us-text {
  max-width: 58ch;
  display: grid;
  gap: 0.75rem;
}

.kontakt-minimal .map-intro {
  margin: 0;
  color: #5f574e;
}

.kontakt-minimal .map-address-card {
  margin-top: 0.15rem;
  padding: 0.8rem 0 0.45rem;
  border-top: 1px solid rgba(17, 17, 17, 0.16);
  background: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.75rem;
  
}

.kontakt-minimal .map-address-title {
  margin: 0;
  color: #111111;
  
}

.kontakt-minimal .map-address-lines {
  margin: 0;
  color: #4a433c;
}

.kontakt-minimal .map-card p.map-address-title,
.kontakt-minimal .map-card p.map-address-lines {
  margin: 0;
}

.kontakt-minimal .map-action-group {
  margin-top: 0;
  display: grid;
  gap: 0.35rem;
  justify-items: start;
}

.kontakt-minimal .find-us-image-wrap {
  margin: 0;
}

.kontakt-minimal .find-us-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.kontakt-minimal .find-us-image {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  transition: transform 0.28s ease;
}

.kontakt-minimal .find-us-image-link:hover .find-us-image {
  transform: scale(1.01);
}

.kontakt-minimal .map-note {
  margin-top: 0.85rem;
  color: #5f574e;
  font-size: 0.95rem;
}

.kontakt-minimal .map-note.parking-note {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.kontakt-minimal .contact-notes {
  padding-top: 0;
}

.kontakt-minimal .contact-notes-card {
  padding: 0;
  background: transparent;
}

.kontakt-minimal .contact-card .contact-notes-card {
  margin-top: 1.1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.kontakt-minimal .contact-notes-card h2 {
  margin-bottom: 0.9rem;
}

.kontakt-minimal .contact-notes-card p {
  margin: 0 0 0.55rem;
  color: #22201e;
  line-height: 1.62;
  max-width: 46ch;
}

.kontakt-minimal .contact-notes-card p:last-child {
  margin-bottom: 0;
}

.kontakt-minimal .info-card .hero-cta {
  margin-top: 0.45rem;
}

.kontakt-minimal .info-card a[href^="tel:"] {
  color: #111111;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.kontakt-minimal .info-card a[href^="tel:"]:hover {
  color: #1f5dff;
  text-decoration-color: #1f5dff;
}

.kontakt-minimal .inner-grid.two-col {
  gap: clamp(2.2rem, 4vw, 3.25rem);
}

.kontakt-minimal .contact-card,
.kontakt-minimal .booking-card {
  padding: clamp(1rem, 1.5vw, 1.4rem);
  border-top: none;
}

.kontakt-minimal .contact-details {
  display: grid;
  gap: 1.1rem;
}

.kontakt-minimal .contact-item {
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.kontakt-minimal .contact-item strong {
  color: #111111;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.kontakt-minimal .contact-item span,
.kontakt-minimal .contact-item a {
  color: #22201e;
}

.kontakt-minimal .contact-item-inline {
  gap: 0.2rem;
}

.kontakt-minimal .booking-card p + p {
  margin-top: 0.9rem;
}

.opening-hours {
  display: grid;
  gap: 0.25rem;
  margin: 1rem 0 2.5rem;
}

.kontakt-minimal .opening-hours {
  margin: 0rem 0 1.3rem;
}

.kontakt-minimal .opening-hours-label {
  margin-bottom: 0.55rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kontakt-minimal .opening-hours-grid, .opening-hours-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 0.45rem 1.25rem;
    align-items: baseline;
}

.kontakt-minimal .opening-day {
  color: #3e3832;
  text-align: left;
}

.kontakt-minimal .opening-time {
  color: #111111;
  text-align: right;
  font-weight: 600;
}

.opening-hours-heading {
  margin-bottom: 0.35rem;
  color: #111111;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.opening-hours p {
  margin: 0;
  color: #22201e;
}

.opening-hours-inline {
  max-width: 22rem;
  margin-inline: auto;
  padding: 0;
  border: none;
  background: transparent;
  text-align: center;
}

.kontakt-minimal .booking-note {
  margin-top: 0.6rem;
  padding-top: 0.45rem;
  border-top: none;
  color: #5f574e;
}

.kontakt-minimal .booking-cta-block {
  margin-top: 0.35rem;
  display: grid;
  gap: 0.55rem;
  justify-items: start;
}

.kontakt-minimal .booking-cta-note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #5f574e;
}

.kontakt-minimal .map-open-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 0.62rem 0.95rem;
  border-radius: 6px;
  border: 1px solid rgba(17, 17, 17, 0.22);
  background: #f3ece3;
  font-weight: 700;
  color: #1a1714;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.kontakt-minimal .map-open-link:hover {
  color: #111111;
  background: #ece2d6;
  border-color: rgba(17, 17, 17, 0.35);
}

@media (max-width: 900px) {
    .kontakt-minimal .find-us-layout, .find-us-layout {
        grid-template-columns: 1fr;
    }

  .kontakt-minimal .find-us-text {
    max-width: none;
  }
}

/* =========================
   PERSONALE.HTML
========================= */

.personale-minimal .inner-page-main {
  background: #ffffff;
}

.personale-minimal .team-section-inner {
  background: #ffffff;
  padding: var(--space-6) 0 5rem;
}

.personale-minimal .team-member {
  padding: 0.75rem;
  border-top: none;
  text-align: left;
}

.personale-minimal .team-note {
  margin: 4.75rem auto 0;
  padding: 1.35rem 1.5rem;
  padding-top: 1.7rem;
  padding-bottom: 1.8rem;
  max-width: 640px;
  text-align: center;
  line-height: 1.65;
  display: grid;
  gap: 0.5rem;
  background: #f7f2ec;
  border: 1px solid #d8c8b8;
  color: #7a4b2b;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.personale-minimal .team-note p {
  margin: 0;
}

.personale-minimal .team-note h2 {
  margin-bottom: 0.15rem;
  font-size: 1rem;
  color: #111111;
}

.personale-minimal .team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.75rem;
  width: min(900px, 92%);
  margin-top: var(--space-5);
  margin-bottom: 1rem;
  align-items: start;
}

.personale-minimal .team-member img {
  border-radius: 4px;
  box-shadow: none;
  border: 1px solid #e6e6e6;
  height: 320px;
}

.personale-minimal .team-text {
  margin-inline: auto;
}

.personale-minimal .team-member h3,
.personale-minimal .team-member p,
.personale-minimal .role {
  color: #111111;
}

.personale-minimal .team-member h3 {
  margin-bottom: 0.2rem;
  text-align: center;
}

.personale-minimal .team-member p {
  max-width: none;
  margin: 0.65rem auto 0;
  line-height: 1.9;
  color: #514a43;
}

.personale-minimal .team-text > p:not(.role) {
  margin-top: 2rem;
  margin-bottom: 0.3rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  text-align: left;
  max-width: 45ch;
  margin-left: auto;
  margin-right: auto;
}

.personale-minimal .vacation-note {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid #d8c8b8;
  background: #f7f2ec;
  color: #7a4b2b;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.personale-minimal .role {
  margin-top: 0.4rem;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #887f74;
  text-align: center;
}

@media (max-width: 700px) {
  .priser-minimal .info-card-wide,
  .priser-minimal .notice-card:not(.notice-card-standalone) {
    padding: 0;
    border-top: none;
  }

  .kontakt-minimal .map-card h2 {
    padding: 0;
    font-size: 1.1rem;
  }

  .kontakt-minimal .map-card p {
    margin: 0 0 1rem;
  }

  .kontakt-minimal .map-card {
    padding: 1rem 0;
  }

  .kontakt-minimal .inner-section > .container {
  padding-inline: 0;
  }

  .kontakt-minimal .inner-hero-content h1 {
    font-size: clamp(1.85rem, 6.4vw, 2.25rem);
  }

  .kontakt-minimal .map-section {
    padding-top: 1.8rem;
  }

  .kontakt-minimal .contact-card,
  .kontakt-minimal .booking-card {
    padding: 0;
    border-top: none;
  }

  .kontakt-minimal .contact-card h2,
  .kontakt-minimal .booking-card h2 {
    font-size: 1.1rem;
  }

  .kontakt-minimal .contact-card .contact-notes-card {
    margin-top: 0.95rem;
    padding-top: 0.6rem;
  }

  .kontakt-minimal .contact-notes-card p {
    margin: 0 0 0.45rem;
    line-height: 1.56;
  }

    .kontakt-minimal .opening-hours, .opening-hours {
        margin: 0.85rem 0 1.05rem;
    }

    .kontakt-minimal .opening-hours-grid, .opening-hours-grid {
        gap: 0.4rem 0.9rem;
    }

    .kontakt-minimal .opening-day,
    .kontakt-minimal .opening-time, .opening-time, .opening-day {
        font-size: 0.97rem;
    }

  .kontakt-minimal .booking-note {
    margin-top: 0.45rem;
    padding-top: 0.35rem;
  }

  .kontakt-minimal .booking-cta-block {
    margin-top: 0.15rem;
    gap: 0.45rem;
  }

  .kontakt-minimal .booking-cta-note {
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .personale-minimal .team-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    margin-top: var(--space-4);
    margin-bottom: 0.75rem;
  }

  .personale-minimal .team-member {
    padding: 0;
    border-top: none;
  }

  .personale-minimal .team-member img {
    height: 340px;
  }

  .personale-minimal .team-text {
    max-width: 100%;
  }

  .personale-minimal .team-section-inner {
    padding: var(--space-5) 0 4.5rem;
  }
}

@media (max-width: 700px) {
  .privatliv-minimal .inner-section > .container {
    width: 88%;
  }
}
.btn-small {
  text-decoration: none !important;
}
/* ==================================================
   SIDE-GUIDE (KUN OVERBLIK - INGEN STYLING AENDRING)
   ==================================================

   FORSIDE (Index.html)
   - Hero: .hero, .hero-image-wrapper, .hero-text, .hero-cta
   - Sektioner: .follow-section, .about-salon-section,
     .team-section, .contact-note, .cta-section

   INDERSIDER (priser.html, personale.html, kontakt.html)
   - Layout-start: .inner-page-main
   - Topsektion: .inner-hero, .inner-hero-content
   - Indhold: .inner-section, .inner-grid, .two-col, .info-card
   - Priser: .price-list, .note-list, .notice-card
   - Personale-side variant: .team-section-inner

   NOTE
   - Naar du ser .inner-* og .team-section-inner, er det indersiderne.
   - Forsiden bruger de oevrige sektioner ovenfor.
*/