:root {
  --ink: #173332;
  --ink-soft: #3f5553;
  --teal: #336666;
  --teal-dark: #214d4b;
  --sage: #cbdcc7;
  --sage-light: #edf4ec;
  --paper: #ffffff;
  --canvas: #f8faf7;
  --warm: #f4eee5;
  --accent: #b85f42;
  --accent-dark: #91472f;
  --line: #d7e2dc;
  --shadow: 0 18px 45px rgba(23, 51, 50, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--teal-dark);
}

a:hover {
  color: var(--accent-dark);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.15;
}

h2 {
  margin-bottom: 24px;
  font-size: 42px;
}

h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(51, 102, 102, 0.16);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 18px rgba(23, 51, 50, 0.06);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 62px;
  height: 38px;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
}

.brand-place {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 12px;
}

.site-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 25px;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-contact {
  padding: 0 16px;
  border: 1px solid var(--teal);
  border-radius: 4px;
}

.nav-contact::after {
  display: none;
}

.nav-contact:hover {
  color: var(--paper);
  background: var(--teal);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.home-hero,
.page-hero {
  position: relative;
  display: grid;
  overflow: hidden;
  isolation: isolate;
  background-position: center;
  background-size: cover;
}

.home-hero::before,
.page-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(13, 45, 43, 0.66);
  content: "";
}

.home-hero {
  min-height: min(680px, calc(100svh - 82px));
  align-items: center;
  background-image: url("../attachments/Image/Nale_1.JPG");
  background-position: center 42%;
}

.hero-content {
  max-width: 760px;
  padding-block: 86px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
}

.home-hero .eyebrow,
.page-hero .eyebrow {
  color: #e8b39f;
}

.home-hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--paper);
  font-size: 64px;
}

.home-hero p {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 21px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 11px 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--accent);
  color: var(--paper);
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease;
}

.button:hover {
  color: var(--paper);
  background: var(--accent-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(20, 52, 50, 0.62);
}

.button-secondary:hover {
  border-color: var(--paper);
  background: var(--teal-dark);
}

.button-outline {
  border-color: var(--teal);
  background: transparent;
  color: var(--teal-dark);
}

.button-outline:hover {
  color: var(--paper);
  background: var(--teal);
}

.trust-strip {
  background: var(--sage);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  min-height: 112px;
  padding: 24px 34px;
  border-right: 1px solid rgba(23, 51, 50, 0.16);
}

.trust-item:first-child {
  border-left: 1px solid rgba(23, 51, 50, 0.16);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.trust-item span {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.section {
  padding-block: 88px;
}

.section-white {
  background: var(--paper);
}

.section-sage {
  background: var(--sage-light);
}

.section-warm {
  background: var(--warm);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p {
  color: var(--ink-soft);
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 72px;
}

.split-reverse {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.photo {
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.portrait-photo {
  height: auto;
}

.content-copy p,
.location-copy p {
  color: var(--ink-soft);
}

.content-copy h3 {
  margin-top: 32px;
}

.insurance-list {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px;
  list-style: none;
}

.insurance-list li {
  position: relative;
  padding-left: 22px;
  font-weight: 650;
}

.insurance-list li::before {
  position: absolute;
  top: 0.73em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.location-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.location-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.location-card-body {
  padding: 28px;
}

.location-card h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.location-meta {
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.location-meta li {
  padding-block: 5px;
  border-bottom: 1px solid var(--line);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-weight: 750;
}

.cta-band {
  padding-block: 64px;
  background: var(--teal-dark);
  color: var(--paper);
}

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

.cta-band h2 {
  margin-bottom: 10px;
  color: var(--paper);
  font-size: 36px;
}

.cta-band p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  min-height: 430px;
  align-items: end;
  background-image: url("../attachments/Image/Nale_2.JPG");
}

.page-hero .hero-content {
  max-width: 780px;
  padding-block: 74px;
}

.page-hero h1 {
  margin-bottom: 18px;
  color: var(--paper);
  font-size: 54px;
}

.page-hero p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
}

.pricing-hero {
  background-image: url("../attachments/Image/Agteparret.jpg");
  background-position: center 38%;
}

.hillerod-hero {
  background-image: url("../attachments/Image/Hus_hillerod.JPG");
}

.helsingor-hero {
  background-image: url("../attachments/Image/Skranken_helsingor.JPG");
}

.reviews-hero {
  background-image: url("../attachments/Image/Nale_2.JPG");
}

.condition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.condition-item {
  padding-top: 20px;
  border-top: 3px solid var(--sage);
}

.condition-item p {
  color: var(--ink-soft);
}

.notice {
  margin-top: 42px;
  padding: 24px 28px;
  border-left: 4px solid var(--accent);
  background: var(--warm);
  color: var(--ink-soft);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.photo-grid figure {
  margin: 0;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.photo-grid figcaption {
  padding-top: 10px;
  color: var(--ink-soft);
  font-size: 14px;
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(23, 51, 50, 0.07);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.price-table th,
.price-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.price-table th {
  background: var(--sage-light);
  font-size: 14px;
  text-transform: uppercase;
}

.price-table th:last-child,
.price-table td:last-child {
  width: 190px;
  text-align: right;
  white-space: nowrap;
}

.price-table td:last-child {
  color: var(--teal-dark);
  font-size: 19px;
  font-weight: 750;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-group td {
  padding-top: 28px;
  background: #fbfcfa;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 70px;
}

.contact-list,
.hours-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li,
.hours-list li {
  padding-block: 8px;
  border-bottom: 1px solid var(--line);
}

.contact-list strong,
.hours-list strong {
  display: block;
  color: var(--ink-soft);
  font-size: 13px;
  text-transform: uppercase;
}

.location-gallery {
  display: grid;
  gap: 22px;
}

.location-gallery img {
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.map-image {
  max-height: 640px;
  object-fit: contain;
  background: var(--paper);
}

.travel-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.travel-note {
  padding-top: 18px;
  border-top: 3px solid var(--accent);
}

.travel-note p {
  color: var(--ink-soft);
}

.testimonials {
  display: grid;
  gap: 26px;
}

.testimonial {
  margin: 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: 6px;
  background: var(--paper);
}

.testimonial p {
  color: var(--ink-soft);
}

.testimonial footer {
  margin-top: 22px;
  color: var(--ink);
  font-weight: 750;
}

.site-footer {
  padding-block: 54px 28px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  gap: 48px;
}

.site-footer h2,
.site-footer h3 {
  color: var(--paper);
}

.site-footer h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

.site-footer h3 {
  margin-bottom: 14px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 7px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  .site-nav ul {
    gap: 15px;
  }

  .site-nav a {
    font-size: 14px;
  }

  .split,
  .split-reverse,
  .location-layout {
    gap: 44px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    padding: 20px 24px 40px;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .site-nav ul {
    display: grid;
    gap: 0;
  }

  .site-nav li {
    border-bottom: 1px solid var(--line);
  }

  .site-nav a {
    min-height: 58px;
    font-size: 18px;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-contact {
    margin-top: 16px;
    justify-content: center;
  }

  .home-hero {
    min-height: 68svh;
  }

  .home-hero h1 {
    font-size: 50px;
  }

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

  .trust-item,
  .trust-item:first-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 51, 50, 0.16);
    border-left: 0;
  }

  .split,
  .split-reverse,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .split-reverse .split-media {
    order: 2;
  }

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

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

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .brand img {
    width: 52px;
    height: 32px;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-place {
    font-size: 11px;
  }

  .home-hero {
    min-height: 72svh;
    background-position: 62% center;
  }

  .hero-content {
    padding-block: 62px;
  }

  .home-hero h1 {
    font-size: 42px;
  }

  .home-hero p {
    font-size: 18px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .trust-item {
    padding: 20px 16px;
  }

  .section {
    padding-block: 62px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 23px;
  }

  .insurance-list,
  .location-grid,
  .condition-grid,
  .photo-grid,
  .travel-notes,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 360px;
  }

  .page-hero .hero-content {
    padding-block: 54px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .cta-inner {
    display: grid;
  }

  .cta-band h2 {
    font-size: 31px;
  }

  .price-table th,
  .price-table td {
    padding: 15px 14px;
  }

  .price-table th:last-child,
  .price-table td:last-child {
    width: 132px;
    white-space: normal;
  }

  .price-table td:last-child {
    font-size: 17px;
    line-height: 1.35;
  }

  .testimonial {
    padding: 24px 20px;
  }

  .location-card img {
    height: 220px;
  }

  .footer-about {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
