:root {
  --ink: #293535;
  --ink-soft: #4b5655;
  --paper: #faf8f3;
  --paper-deep: #f0eee7;
  --white: #fffefa;
  --sage: #4f716d;
  --sage-dark: #31514d;
  --sage-pale: #dbe4df;
  --sand: #d9cbb7;
  --line: rgba(41, 53, 53, .17);
  --shadow: 0 20px 55px rgba(32, 45, 43, .11);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1440px;
  --radius: 36px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
::selection { background: var(--sage-pale); color: var(--ink); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
  border-radius: 6px;
}
.skip-link:focus { transform: translateY(0); }

.section-shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}
.section-shell.narrow { max-width: 1120px; }
.section-pad { padding-block: clamp(48px, 5vw, 82px); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.025em;
  margin: 0;
}
h1 { font-size: clamp(3.2rem, 6.3vw, 7rem); }
h2 { font-size: clamp(2.55rem, 4.4vw, 5rem); }
h3 { font-size: clamp(1.55rem, 2vw, 2.25rem); }
p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  margin-bottom: 16px;
  color: var(--sage-dark);
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.lead {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.35vw, 1.35rem);
  line-height: 1.65;
}
.prose { color: var(--ink-soft); font-size: 1.06rem; }
.prose p + p { margin-top: 1.1rem; }
.small-note {
  padding-left: 18px;
  border-left: 2px solid var(--sage);
  font-size: .94rem;
}
.notice {
  padding: 20px 22px;
  border: 1px solid var(--line);
  background: var(--paper-deep);
  border-radius: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(250, 248, 243, .88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, border-color .25s ease, min-height .25s ease;
}
.site-header.scrolled {
  min-height: 76px;
  border-color: var(--line);
  box-shadow: 0 8px 25px rgba(41, 53, 53, .06);
}
.site-header.compact { position: relative; border-bottom: 1px solid var(--line); }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand img { width: 40px; height: 52px; }
.brand span { display: grid; line-height: 1.05; }
.brand strong { font-size: .94rem; }
.brand small { margin-top: 3px; color: var(--sage-dark); font-size: .75rem; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 38px);
}
.primary-nav a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-size: .94rem;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--sage);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.primary-nav a:hover::after,
.primary-nav a.active::after { transform: scaleX(1); }
.menu-button { display: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(50px, 7vw, 118px);
  min-height: calc(100vh - 94px);
  padding-block: clamp(42px, 5vw, 78px);
}
.hero-copy h1 { max-width: 780px; margin-bottom: 28px; }
.hero-copy .lead { max-width: 650px; }
.button-row {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 28px;
  border: 1px solid var(--sage);
  background: var(--sage);
  color: white;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(49, 81, 77, .18);
}
.button.light {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}
.button.full-width { width: 100%; border-radius: 8px; }
.text-link {
  color: var(--sage-dark);
  font-weight: 700;
  text-underline-offset: 5px;
}

.image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-frame figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(250, 248, 243, .88);
  border: 1px solid rgba(41, 53, 53, .12);
  border-radius: 999px;
  font-size: .76rem;
  backdrop-filter: blur(10px);
}
.hero-image {
  min-height: clamp(560px, 68vh, 850px);
  border-radius: 70px 70px 14px 14px;
  box-shadow: var(--shadow);
}
.welcome { padding-block: clamp(52px, 6vw, 92px); }
.section-heading { max-width: 900px; margin-bottom: 30px; }
.section-heading h2 { max-width: 850px; }
.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}
.section-heading.centered p:last-child {
  max-width: 800px;
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.two-column-text {
  columns: 2;
  column-gap: 70px;
}
.two-column-text blockquote {
  break-inside: avoid;
  margin: 36px 0 0;
  padding: 30px 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  line-height: 1.22;
}

.services { background: var(--paper-deep); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.service-card {
  min-height: 292px;
  padding: 38px;
  background: var(--white);
  border: 1px solid rgba(41, 53, 53, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.card-number {
  display: block;
  margin-bottom: 50px;
  color: var(--sage);
  font-family: var(--serif);
}
.service-card h3 { margin-bottom: 20px; font-size: 1.75rem; }
.service-card p { color: var(--ink-soft); }
.supporting-copy {
  max-width: 820px;
  margin: 34px auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: clamp(54px, 8vw, 130px);
}
.split-section.reverse {
  grid-template-columns: minmax(480px, 1.05fr) minmax(0, .95fr);
}
.split-copy h2 { margin-bottom: 34px; }
.arch-image {
  height: min(830px, 74vw);
  max-height: 830px;
  border-radius: 260px 260px 10px 10px;
}
.about { background: var(--white); }
.portrait-image {
  min-height: 760px;
  border-radius: 18px 180px 18px 18px;
}

.pricing {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(60px, 9vw, 150px);
}
.pricing-title { position: sticky; top: 130px; align-self: start; }
.pricing-content { display: grid; gap: 26px; }
.price-card {
  padding: clamp(32px, 4vw, 58px);
  border: 1px solid var(--line);
  background: var(--white);
}
.price-card.featured { background: var(--sage); color: white; border-color: var(--sage); }
.price-card .label {
  margin-bottom: 24px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .82;
}
.price-card h3 { margin-bottom: 26px; }
.price {
  display: flex;
  align-items: baseline;
  gap: 13px;
  margin-bottom: 20px;
}
.price strong {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
}
.price span { opacity: .78; }

.clinic { background: var(--paper-deep); }
.clinic-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}
.clinic-copy h2 { margin-bottom: 28px; }
.clinic-copy > p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.05rem; }
.details-list { margin-top: 40px; }
.details-list div {
  padding-block: 18px;
  border-top: 1px solid var(--line);
}
.details-list dt {
  margin-bottom: 4px;
  color: var(--sage-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.details-list dd { margin: 0; }

.map-placeholder {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background:
    linear-gradient(132deg, transparent 0 47%, rgba(255,255,255,.5) 48% 49%, transparent 50%),
    linear-gradient(27deg, transparent 0 42%, rgba(255,255,255,.43) 43% 44%, transparent 45%),
    linear-gradient(90deg, #ccd4cd, #abb9ad);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.map-placeholder::before,
.map-placeholder::after,
.map-roads::before,
.map-roads::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 14px;
  background: rgba(255,255,255,.5);
  border: 2px solid rgba(79,113,109,.13);
  border-radius: 99px;
}
.map-placeholder::before { top: 24%; left: -10%; transform: rotate(16deg); }
.map-placeholder::after { top: 66%; left: -5%; transform: rotate(-10deg); }
.map-roads::before { top: 45%; left: -10%; transform: rotate(77deg); }
.map-roads::after { top: 48%; left: 15%; transform: rotate(-42deg); }
.map-pin {
  position: absolute;
  top: 48%;
  left: 62%;
  width: 34px; height: 34px;
  background: var(--sage-dark);
  border: 7px solid white;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 10px 20px rgba(41,53,53,.25);
}
.map-card {
  position: absolute;
  top: 34px;
  left: 34px;
  display: grid;
  gap: 4px;
  width: min(330px, calc(100% - 68px));
  padding: 24px;
  background: rgba(255,254,250,.94);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(41,53,53,.17);
}
.map-card strong { font-family: var(--serif); font-size: 1.45rem; }
.map-card a { margin-top: 8px; color: var(--sage-dark); font-weight: 700; }

.contact {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}
.contact-copy h2 { margin-bottom: 32px; }
.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}
.contact-details a {
  display: grid;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}
.contact-details span {
  color: var(--sage-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.contact-details strong { margin-top: 4px; font-size: 1.1rem; }

.contact-form {
  padding: clamp(28px, 4vw, 58px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.form-heading { margin-bottom: 34px; }
.form-heading h2 { font-size: clamp(2.5rem, 4vw, 4.3rem); }
.contact-form label { display: grid; gap: 8px; margin-bottom: 20px; }
.contact-form label > span {
  color: var(--ink-soft);
  font-size: .9rem;
  font-weight: 650;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(79,113,109,.12);
}
.contact-form textarea { resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.privacy-note { color: var(--ink-soft); font-size: .82rem; }
.form-status { min-height: 26px; margin: 14px 0 0; color: var(--sage-dark); font-size: .9rem; }

.closing-banner {
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 50px 24px;
  color: white;
  text-align: center;
  background:
    linear-gradient(rgba(35, 49, 47, .48), rgba(35, 49, 47, .55)),
    url("/assets/landscape-placeholder.svg") center / cover no-repeat;
}
.closing-overlay { max-width: 950px; }
.closing-overlay p { margin-bottom: 18px; text-transform: uppercase; letter-spacing: .13em; font-size: .78rem; font-weight: 800; }
.closing-overlay h2 { margin-bottom: 36px; font-size: clamp(2.8rem, 5.4vw, 6rem); }

.site-footer {
  padding: 74px 0 26px;
  background: var(--paper);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 55px;
}
.footer-grid h2 {
  margin-bottom: 18px;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-grid div:not(.footer-brand) > a,
.footer-grid div:not(.footer-brand) > p {
  display: block;
  margin: 0 0 7px;
  color: var(--ink-soft);
  text-decoration: none;
}
.footer-grid a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .82rem;
}
.footer-bottom p { margin: 0; }
.site-footer.simple { padding-top: 26px; }

/* Subpages */
.subpage { min-height: 70vh; }
.page-hero { padding-block: clamp(52px, 6vw, 92px) 46px; }
.page-hero h1 { max-width: 900px; margin-bottom: 26px; }
.page-hero > p:last-child { max-width: 700px; color: var(--ink-soft); font-size: 1.12rem; }
.faq-list { max-width: 1080px; padding-bottom: 70px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  list-style: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 2.1rem);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--sage); font-family: var(--sans); font-weight: 300; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details > div { max-width: 780px; padding: 0 0 30px; color: var(--ink-soft); }
.subpage-cta {
  margin-bottom: 70px;
  padding: clamp(38px, 6vw, 76px);
  background: var(--paper-deep);
  text-align: center;
}
.subpage-cta h2 { max-width: 800px; margin: 0 auto 32px; }
.legal-page { max-width: 900px; padding-block: 64px 82px; }
.legal-page h1 { margin-bottom: 38px; }
.legal-page h2 { margin: 52px 0 14px; font-size: 2rem; }
.legal-page p, .legal-page li { color: var(--ink-soft); }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1100px) {
  .primary-nav { gap: 20px; }
  .primary-nav a { font-size: .86rem; }
  .hero { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .split-section,
  .split-section.reverse { grid-template-columns: 1fr 1fr; gap: 55px; }
  .clinic-grid { grid-template-columns: 1fr 1.2fr; }
}

@media (max-width: 900px) {
  .section-shell { width: min(calc(100% - 34px), var(--max)); }
  .site-header { min-height: 78px; padding-inline: 18px; }
  .menu-button {
    display: grid;
    place-content: center;
    gap: 5px;
    width: 46px; height: 46px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-button span:not(.sr-only) {
    width: 25px;
    height: 1px;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
  }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }
  .primary-nav:not(.always-visible) {
    position: fixed;
    inset: 78px 0 0;
    z-index: 999;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 35px 24px;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform .28s ease;
  }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav:not(.always-visible) a { padding: 14px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.65rem; }
  .primary-nav:not(.always-visible) a::after { display: none; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 70px;
  }
  .hero-copy { max-width: 760px; }
  .hero-image { min-height: 680px; }
  .two-column-text { columns: 1; }
  .split-section,
  .split-section.reverse,
  .pricing,
  .clinic-grid,
  .contact { grid-template-columns: 1fr; }
  .split-section.reverse .portrait-image { order: 2; }
  .split-section.reverse .split-copy { order: 1; }
  .arch-image { height: 760px; }
  .portrait-image { min-height: 680px; }
  .pricing-title { position: static; }
  .pricing-content { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .section-pad { padding-block: 52px; }
  h1 { font-size: clamp(2.9rem, 14vw, 4.4rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 3.6rem); }
  .hero { gap: 38px; padding-block: 50px 70px; }
  .hero-copy h1 { margin-bottom: 22px; }
  .button-row { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-image { min-height: 500px; border-radius: 40px 40px 10px 10px; }
  .service-grid { grid-template-columns: 1fr; gap: 15px; margin-top: 45px; }
  .service-card { min-height: 245px; padding: 30px; }
  .card-number { margin-bottom: 35px; }
  .split-section { gap: 45px; }
  .arch-image { height: 520px; border-radius: 170px 170px 8px 8px; }
  .portrait-image { min-height: 520px; border-radius: 12px 100px 12px 12px; }
  .pricing-content { grid-template-columns: 1fr; }
  .map-placeholder { min-height: 430px; border-radius: 16px; }
  .map-card { top: 20px; left: 20px; width: calc(100% - 40px); }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 26px 20px; }
  .closing-banner { min-height: 540px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .primary-nav.always-visible { display: block; }
}


/* Indlejret Google Maps-kort */
.clinic-map-block {
  position: relative;
}

.map-service-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 13px;
  color: #3567d6;
  background: #dce8ff;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 750;
  line-height: 1.2;
}

.clinic-map-shell {
  position: relative;
  width: 100%;
  height: clamp(580px, 38vw, 720px);
  min-height: 580px;
  overflow: hidden;
  background: var(--paper-deep);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.clinic-map-iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.clinic-map-card {
  position: absolute;
  top: 42px;
  left: 42px;
  z-index: 3;
  display: grid;
  max-width: min(420px, calc(100% - 84px));
  padding: 25px 58px 23px 25px;
  color: var(--ink);
  background: rgba(255, 254, 250, .97);
  border: 1px solid rgba(41, 53, 53, .1);
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(27, 37, 36, .22);
  backdrop-filter: blur(9px);
  transition: opacity .2s ease, transform .2s ease;
}

.clinic-map-card.is-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateY(-10px);
}

.clinic-map-card strong {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
}

.clinic-map-card p {
  margin: 0 0 10px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.clinic-map-card .clinic-map-address {
  font-weight: 650;
}

.clinic-map-card a {
  margin-top: 3px;
  color: var(--sage-dark);
  font-weight: 750;
  text-underline-offset: 4px;
}

.map-close {
  position: absolute;
  top: 13px;
  right: 15px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.map-close:hover,
.map-close:focus-visible {
  color: var(--ink);
  background: var(--paper-deep);
  outline: none;
}

@media (max-width: 900px) {
  .clinic-map-shell {
    height: 560px;
    min-height: 560px;
  }

  .clinic-map-iframe {
    height: 100%;
    min-height: 100%;
  }

  .clinic-map-card {
    top: 22px;
    left: 22px;
    max-width: calc(100% - 44px);
  }
}

@media (max-width: 620px) {
  .clinic-map-shell {
    height: 470px;
    min-height: 470px;
  }

  .clinic-map-iframe {
    height: 100%;
    min-height: 100%;
  }

  .clinic-map-shell {
    border-radius: 16px;
  }

  .clinic-map-card {
    top: 14px;
    left: 14px;
    max-width: calc(100% - 28px);
    padding: 20px 48px 18px 18px;
    border-radius: 13px;
  }

  .clinic-map-card p:first-of-type {
    display: none;
  }
}


/* Mere kompakt lodret rytme */
.section-pad {
  padding-top: clamp(48px, 5vw, 82px);
  padding-bottom: clamp(48px, 5vw, 82px);
}

.welcome {
  padding-top: clamp(52px, 6vw, 92px);
  padding-bottom: clamp(52px, 6vw, 92px);
}

.hero {
  padding-top: clamp(42px, 5vw, 78px);
  padding-bottom: clamp(42px, 5vw, 78px);
}

@media (max-width: 620px) {
  .section-pad {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .welcome {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero {
    padding-top: 38px;
    padding-bottom: 52px;
  }
}
