/* =============================================
   IRIS YOGA – Kontakt prototype v1
   Routing · Klar · Enkel · Handlingsorienteret

   Indholdsfortegnelse:
   1.  Variabler
   2.  Nulstilling
   3.  Typografi
   4.  Container
   5.  Knapper
   6.  Header
   7.  Hero (kompakt, centeret)
   8.  Kontakt direkte (kontaktkort)
   9.  Routing-kort
   10. Er du i tvivl?
   11. Sociale medier
   12. Yoga i Nordjylland
   13. Final CTA
   14. Footer
   15. Responsiv
   ============================================= */


/* --- 1. VARIABLER --- */
:root {
  --indigo:   #5E4ED0;
  --violet:   #8F43AF;
  --lavender: #CEACE1;
  --sky:      #53B3EC;
  --gold:     #D3CC6F;
  --cream:    #DBD0C0;
  --dark:     #111019;
  --light:    #FBFAFF;
  --white:    #FFFFFF;

  --sand:          #F5EDD8;
  --sunlight:      #FFF8E8;
  --lavender-pale: #F0EAF8;
  --lavender-mid:  #E0CEEF;
  --lavender-soft: #F7F2FD;

  --serif: Georgia, 'Times New Roman', serif;
  --sans:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --sp-sm:      1rem;
  --sp-md:      1.75rem;
  --sp-lg:      2.5rem;
  --sp-xl:      4rem;
  --sp-section: clamp(3.5rem, 8vw, 6rem);

  --max-w:  1080px;
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   40px;
  --r-full: 9999px;
}


/* --- 2. NULSTILLING --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.75;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

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


/* --- 3. TYPOGRAFI --- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: normal;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5.5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); line-height: 1.3; }

p { max-width: 60ch; }

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: var(--sp-sm);
}


/* --- 4. CONTAINER --- */
.container {
  width: min(92%, var(--max-w));
  margin-inline: auto;
}

section { padding-block: var(--sp-section); }


/* --- 5. KNAPPER --- */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: var(--r-full);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  letter-spacing: 0.02em;
  transition: all 0.22s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--indigo);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(94, 78, 208, 0.28);
}
.btn-primary:hover {
  background-color: var(--violet);
  box-shadow: 0 8px 28px rgba(143, 67, 175, 0.35);
  transform: translateY(-2px);
}

.btn-outline {
  background: none;
  border-color: rgba(94, 78, 208, 0.5);
  color: var(--indigo);
  padding: 0.85rem 1.9rem;
}
.btn-outline:hover {
  background-color: var(--lavender-pale);
  border-color: var(--indigo);
  transform: translateY(-1px);
}

.btn-light {
  background-color: var(--white);
  color: var(--indigo);
  border-color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}
.btn-light:hover {
  background-color: var(--lavender-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.btn-routing {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.85rem 1.5rem;
  margin-top: auto;
}


/* --- 6. HEADER --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(243, 236, 252, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(206, 172, 225, 0.4);
  box-shadow: 0 2px 24px rgba(143, 67, 175, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.logo-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

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

.logo-fallback {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--dark);
  letter-spacing: 0.04em;
  font-weight: normal;
}

.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.nav a {
  color: rgba(17, 16, 25, 0.82);
  text-decoration: none;
  font-size: 0.975rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.nav a:hover { color: var(--indigo); }

.nav-current {
  color: var(--indigo) !important;
  font-weight: 700;
}

.nav-tilmelding {
  background-color: var(--indigo) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.3rem;
  border-radius: var(--r-full);
  font-size: 0.9rem !important;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(94, 78, 208, 0.28);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.nav-tilmelding:hover {
  background-color: var(--violet) !important;
  box-shadow: 0 4px 18px rgba(143, 67, 175, 0.35);
  transform: translateY(-1px);
}


/* --- 7. HERO (KOMPAKT, CENTERET) --- */
/* Frisk sky-blå gradient – åben og indbydende som en kontaktside */
.hero {
  position: relative;
  background: linear-gradient(
    148deg,
    #f5f8ff  0%,
    #e8eefb  28%,
    #dde8f8  52%,
    #d5e8f5  78%,
    #eaf4fb  100%
  );
  min-height: 56vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: var(--sp-xl) calc(var(--sp-xl) + 4rem);
  text-align: center;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(55px);
}

.hero-blob-1 {
  top: -20%;
  right: -8%;
  width: 45vw;
  height: 45vw;
  max-width: 520px;
  max-height: 520px;
  background: radial-gradient(circle, rgba(83, 179, 236, 0.28) 0%, transparent 65%);
}

.hero-blob-2 {
  bottom: -15%;
  left: -6%;
  width: 35vw;
  height: 35vw;
  max-width: 400px;
  max-height: 400px;
  background: radial-gradient(circle, rgba(206, 172, 225, 0.38) 0%, transparent 65%);
}

.hero-symbol {
  position: absolute;
  top: 50%;
  right: -4%;
  transform: translateY(-50%);
  width: 38vw;
  max-width: 420px;
  z-index: 0;
  pointer-events: none;
}

.hero-symbol-img {
  width: 100%;
  height: auto;
  opacity: 0.07;
  filter: saturate(0.4);
}

/* Centeret enkeltkolonne-layout */
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 1.25rem;
  max-width: none;
}

.hero-inner h1 {
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.hero-sub {
  color: rgba(17, 16, 25, 0.62);
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.9;
  max-width: 52ch;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 72px;
  pointer-events: none;
  overflow: hidden;
}

.hero-wave::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -5%;
  width: 110%;
  height: 72px;
  background: var(--light);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}


/* --- 8. KONTAKT DIREKTE (KONTAKTKORT) --- */
.direct-section {
  background-color: var(--light);
  padding-block: var(--sp-section);
}

.direct-intro {
  margin-bottom: var(--sp-xl);
}

.direct-intro h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.direct-desc {
  color: rgba(17, 16, 25, 0.62);
  font-size: 0.97rem;
  line-height: 1.85;
  max-width: 52ch;
}

/* Klikkbare kontaktkort – e-mail og telefon */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 680px;
  margin-bottom: var(--sp-lg);
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 1.75rem 2rem;
  text-decoration: none;
  border: 1px solid rgba(206, 172, 225, 0.25);
  box-shadow: 0 4px 24px rgba(17, 16, 25, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 38px rgba(94, 78, 208, 0.12);
  border-color: rgba(94, 78, 208, 0.3);
}

.contact-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}

.contact-icon-email {
  background: linear-gradient(135deg, var(--indigo), var(--violet));
}

.contact-icon-phone {
  background: linear-gradient(135deg, var(--sky), rgba(83, 179, 236, 0.65));
}

.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex-grow: 1;
}

.contact-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
}

.contact-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.01em;
}

.contact-arrow {
  color: rgba(94, 78, 208, 0.4);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}
.contact-card:hover .contact-arrow {
  color: var(--indigo);
  transform: translateX(3px);
}

.direct-note {
  font-size: 0.85rem;
  color: rgba(17, 16, 25, 0.45);
  font-style: italic;
  line-height: 1.75;
  max-width: 56ch;
}


/* --- 9. ROUTING-KORT --- */
.routing-section {
  background: linear-gradient(
    155deg,
    var(--lavender-soft)          0%,
    rgba(206, 172, 225, 0.1)      45%,
    var(--light)                  100%
  );
  padding-block: var(--sp-section);
}

.routing-intro {
  margin-bottom: var(--sp-xl);
}

.routing-intro h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.routing-desc {
  color: rgba(17, 16, 25, 0.58);
  font-size: 0.97rem;
  line-height: 1.8;
  max-width: 52ch;
}

.routing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.routing-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(17, 16, 25, 0.07);
  border: 1px solid rgba(206, 172, 225, 0.22);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.routing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(94, 78, 208, 0.13);
}

.routing-ribbon {
  height: 5px;
  width: 100%;
  flex-shrink: 0;
}

.routing-ribbon-sky    { background: linear-gradient(90deg, var(--sky), rgba(83, 179, 236, 0.6)); }
.routing-ribbon-indigo { background: linear-gradient(90deg, var(--indigo), var(--violet)); }
.routing-ribbon-violet { background: linear-gradient(90deg, var(--lavender), var(--indigo)); }
.routing-ribbon-gold   { background: linear-gradient(90deg, var(--gold), rgba(211, 204, 111, 0.6)); }

.routing-body {
  padding: 2rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex-grow: 1;
}

.routing-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.routing-icon-sky    { background: linear-gradient(135deg, var(--sky), rgba(83, 179, 236, 0.6)); }
.routing-icon-indigo { background: linear-gradient(135deg, var(--indigo), var(--violet)); }
.routing-icon-violet { background: linear-gradient(135deg, var(--lavender), var(--indigo)); }
.routing-icon-gold   { background: linear-gradient(135deg, var(--gold), rgba(211, 204, 111, 0.6)); }

.routing-body h3 {
  font-size: 1.25rem;
  color: var(--dark);
}

.routing-body p {
  color: rgba(17, 16, 25, 0.62);
  font-size: 0.93rem;
  line-height: 1.8;
  flex-grow: 1;
  margin-bottom: 0.5rem;
}


/* --- 10. ER DU I TVIVL? --- */
.doubt-section {
  background-color: var(--white);
  padding-block: var(--sp-section);
  border-top: 1px solid rgba(206, 172, 225, 0.2);
  border-bottom: 1px solid rgba(206, 172, 225, 0.2);
}

.doubt-inner {
  /* Centeret blok */
}

.doubt-block {
  max-width: 580px;
  padding-left: 1.75rem;
  border-left: 4px solid var(--lavender);
}

.doubt-block h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: var(--sp-md);
}

.doubt-lead {
  color: rgba(17, 16, 25, 0.65);
  line-height: 1.9;
  margin-bottom: var(--sp-lg);
  font-size: 1.02rem;
  max-width: 52ch;
}


/* --- 11. SOCIALE MEDIER --- */
.social-section {
  background: linear-gradient(
    160deg,
    var(--lavender-pale)          0%,
    rgba(206, 172, 225, 0.1)      50%,
    var(--light)                  100%
  );
  padding-block: var(--sp-section);
}

.social-intro {
  margin-bottom: var(--sp-xl);
}

.social-intro h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 0.75rem;
}

.social-desc {
  color: rgba(17, 16, 25, 0.58);
  font-size: 0.97rem;
  line-height: 1.8;
  max-width: 50ch;
}

.social-cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.75rem;
  text-decoration: none;
  border: 1px solid rgba(206, 172, 225, 0.2);
  box-shadow: 0 3px 16px rgba(17, 16, 25, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-width: 160px;
}
.social-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(94, 78, 208, 0.1);
  border-color: rgba(94, 78, 208, 0.25);
}

.social-platform {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
}

.social-handle {
  font-size: 0.92rem;
  color: rgba(17, 16, 25, 0.65);
  font-weight: 500;
}


/* --- 12. YOGA I NORDJYLLAND --- */
.location-section {
  background-color: var(--white);
  padding-block: var(--sp-section);
}

.location-inner {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}

.location-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: var(--sp-md);
}

.location-lead {
  font-size: 1.02rem;
  color: rgba(17, 16, 25, 0.68);
  line-height: 1.9;
  margin-bottom: var(--sp-lg);
  max-width: 48ch;
}

.location-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: var(--sp-lg);
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.93rem;
  color: rgba(17, 16, 25, 0.65);
  line-height: 1.75;
}

.location-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--indigo));
  margin-top: 0.5em;
}

.location-item span:last-child { max-width: none; }

.location-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.location-image-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    0 20px 55px rgba(83, 179, 236, 0.18),
    0 8px 28px rgba(17, 16, 25, 0.08);
}

.location-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  display: block;
}


/* --- 13. FINAL CTA --- */
.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: var(--sp-section);
  text-align: center;
  min-height: 440px;
  display: flex;
  align-items: center;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    155deg,
    rgba(94, 78, 208, 0.82)   0%,
    rgba(143, 67, 175, 0.72)  38%,
    rgba(94, 78, 208, 0.68)   72%,
    rgba(17, 16, 25, 0.52)    100%
  );
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin-inline: auto;
}

.final-cta-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: var(--sp-sm);
  max-width: none;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: var(--sp-md);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 3px 10px rgba(0, 0, 0, 0.15);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.85;
  margin-inline: auto;
  margin-bottom: var(--sp-lg);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.final-cta-contact {
  margin-top: 0.75rem;
  margin-bottom: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: none;
}

.final-cta-link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.final-cta-link:hover {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.8);
}


/* --- 14. FOOTER --- */
.site-footer {
  background-color: var(--cream);
  padding-block: var(--sp-xl);
  border-top: 1px solid rgba(17, 16, 25, 0.08);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid rgba(17, 16, 25, 0.1);
  margin-bottom: var(--sp-md);
}

.footer-logo-img {
  height: 34px;
  width: auto;
  display: block;
  margin-bottom: 0.65rem;
  opacity: 0.88;
}

.footer-logo-fallback {
  display: none;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(17, 16, 25, 0.45);
  font-style: italic;
  margin-bottom: 0.75rem;
  max-width: none;
}

.footer-contact { font-style: normal; }

.footer-contact p {
  font-size: 0.82rem;
  color: rgba(17, 16, 25, 0.48);
  line-height: 1.65;
  max-width: none;
}

.footer-email {
  color: rgba(17, 16, 25, 0.52);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-email:hover { color: var(--indigo); }

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(17, 16, 25, 0.52);
  text-decoration: none;
  padding: 0.28rem 0.75rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(17, 16, 25, 0.12);
  background-color: rgba(206, 172, 225, 0.1);
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.social-link:hover {
  color: var(--indigo);
  border-color: rgba(94, 78, 208, 0.3);
  background-color: var(--lavender-pale);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-nav a {
  color: rgba(17, 16, 25, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--indigo); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(17, 16, 25, 0.35);
  max-width: none;
}

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


/* --- 15. RESPONSIV --- */

/* Tablet (≤900px) */
@media (max-width: 900px) {

  /* Routing-kort: 2 → 1 */
  .routing-cards {
    grid-template-columns: 1fr;
  }

  /* Location: 2 → 1 */
  .location-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Mobil (≤768px) */
@media (max-width: 768px) {

  /* Header */
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding-block: 0.875rem;
  }

  .logo-img { height: 42px; }
  .nav ul { gap: 0.875rem; }
  .nav a { font-size: 0.875rem; }

  /* Hero */
  .hero {
    min-height: auto;
    padding-block: var(--sp-xl) calc(var(--sp-xl) * 1.3);
  }

  /* Kontaktkort: 2 → 1 */
  .contact-cards {
    grid-template-columns: 1fr;
  }

  /* Doubt: fjern venstre kant */
  .doubt-block {
    padding-left: 0;
    border-left: none;
    border-top: 4px solid var(--lavender);
    padding-top: 1.25rem;
  }

  /* Location-image skjules på mobil */
  .location-image-wrap {
    display: none;
  }

  /* Footer */
  .footer-top { flex-direction: column; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Smal mobil (≤480px) */
@media (max-width: 480px) {

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    width: 100%;
  }

  .btn:not(.btn-routing) {
    width: 100%;
    text-align: center;
  }

  .location-actions {
    flex-direction: column;
  }

  .social-cards {
    flex-direction: column;
  }

  .social-card {
    min-width: auto;
  }
}
