:root {
  --ink: #183330;
  --ink-2: #294a46;
  --cream: #f4f0e7;
  --paper: #fffdf9;
  --sand: #d4b27d;
  --sand-light: #efdcb8;
  --line: rgba(24, 51, 48, .14);
  --shadow: 0 24px 70px rgba(10, 38, 34, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open { overflow: hidden; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 3px solid #f0bd68; outline-offset: 3px; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 4px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  width: min(1180px, calc(100% - 48px));
  height: 100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 42px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.27);
}
.brand { margin-right: auto; }
.brand img { width: 158px; max-height: 64px; object-fit: contain; border: 1px solid rgba(255,255,255,.3); border-radius: 2px; }
.site-header nav { display: flex; gap: 32px; }
.site-header nav a, .header-call { text-decoration: none; font-size: 14px; font-weight: 680; letter-spacing: .02em; }
.site-header nav a { position: relative; }
.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--sand-light);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.site-header nav a:hover::after, .site-header nav a:focus-visible::after { transform: scaleX(1); }
.header-call { padding: 12px 18px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; }

.hero {
  min-height: 780px;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-photo, .hero-shade { position: absolute; inset: 0; z-index: -2; }
.hero-photo {
  background: url("assets/bad-komplett.jpeg") center 56% / cover no-repeat;
  transform: scale(1.035);
}
.hero-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(11,39,36,.96) 0%, rgba(13,43,39,.84) 44%, rgba(13,43,39,.28) 76%, rgba(13,43,39,.1) 100%), linear-gradient(0deg, rgba(8,31,28,.42), transparent 42%);
}
.hero-content {
  width: min(1180px, calc(100% - 48px));
  margin: 112px auto 48px;
  padding-top: 42px;
}
.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--sand-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow span { width: 28px; height: 1px; background: currentColor; }
h1, h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.035em; line-height: .98; }
h1 { max-width: 920px; font-size: clamp(52px, 7vw, 92px); text-wrap: balance; }
h1 em { color: var(--sand-light); font-weight: 400; }
.hero-copy { max-width: 650px; margin: 28px 0 0; color: rgba(255,255,255,.86); font-size: clamp(17px, 2vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button {
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  text-decoration: none;
  font-weight: 760;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--sand-light); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); backdrop-filter: blur(7px); }
.trust-row { display: flex; gap: 0; margin-top: 48px; }
.trust-row div { min-width: 165px; padding: 0 32px; border-left: 1px solid rgba(255,255,255,.24); }
.trust-row div:first-child { padding-left: 0; border-left: 0; }
.trust-row strong { display: block; color: #fff; font-family: Georgia, serif; font-size: 25px; font-weight: 400; }
.trust-row span { display: block; margin-top: 3px; color: rgba(255,255,255,.66); font-size: 12px; }
.scroll-hint { position: absolute; right: max(24px, calc((100% - 1180px)/2)); bottom: 34px; color: rgba(255,255,255,.75); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.scroll-hint span { margin-left: 8px; color: var(--sand-light); }

.section { padding: 112px max(24px, calc((100% - 1180px)/2)); }
.references { background: var(--cream); }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; margin-bottom: 50px; }
.kicker { margin-bottom: 14px; color: #9a6e34; }
h2 { font-size: clamp(42px, 5.2vw, 68px); }
.section-heading > p { max-width: 470px; margin: 0 0 5px; color: #57706c; font-size: 17px; line-height: 1.75; }
.gallery { display: grid; grid-template-columns: 1.35fr .82fr .82fr; grid-template-rows: repeat(2, 295px); gap: 16px; }
.gallery figure { position: relative; margin: 0; overflow: hidden; border-radius: 4px; background: #d9d5ca; box-shadow: 0 12px 34px rgba(25,51,47,.09); }
.gallery-main { grid-row: 1 / 3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery figure:hover img { transform: scale(1.025); }
.gallery figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 44px 24px 20px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 22px;
  background: linear-gradient(transparent, rgba(7,29,26,.78));
}
.gallery figcaption span { display: block; margin-top: 4px; font-family: Inter, sans-serif; font-size: 12px; color: rgba(255,255,255,.75); }
.process-band { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 64px; border-top: 1px solid var(--line); }
.process-band > div { position: relative; padding: 31px 34px 0; border-left: 1px solid var(--line); }
.process-band > div:first-child { padding-left: 0; border-left: 0; }
.process-band span { display: block; margin-bottom: 22px; color: #a17135; font-family: Georgia, serif; font-size: 15px; }
.process-band strong { display: block; font-family: Georgia, serif; font-size: 24px; font-weight: 400; }
.process-band p { margin: 8px 0 0; color: #566b67; font-size: 14px; line-height: 1.6; }

.areas-panel { margin-top: 76px; padding: clamp(28px, 5vw, 56px); display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; border-radius: 5px; background: var(--paper); box-shadow: 0 18px 55px rgba(24,51,48,.08); scroll-margin-top: 20px; }
.areas-copy h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(31px, 3.3vw, 45px); font-weight: 400; letter-spacing: -.025em; line-height: 1.05; }
.areas-copy p { margin: 20px 0 0; color: #566b67; line-height: 1.7; }
.area-links { border-top: 1px solid var(--line); }
.area-links a { padding: 17px 3px; display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; border-bottom: 1px solid var(--line); text-decoration: none; }
.area-links a::after { content: "→"; grid-column: 2; grid-row: 1 / 3; color: #9a6e34; font-size: 20px; transition: transform .2s ease; }
.area-links a:hover::after { transform: translateX(4px); }
.area-links strong { font-family: Georgia, serif; font-size: 18px; font-weight: 400; }
.area-links span { color: #6a7d79; font-size: 12px; }

.region-page { background: var(--paper); }
.region-header { position: relative; color: #fff; background: var(--ink); }
.region-header .site-header { position: relative; }
.region-header .site-header nav a { color: rgba(255,255,255,.82); }
.region-hero { min-height: 570px; padding: 105px max(24px, calc((100% - 1180px)/2)) 76px; display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; color: #fff; background: var(--ink); }
.region-hero-copy h1 { font-size: clamp(48px, 6.4vw, 82px); }
.region-hero-copy > p { max-width: 690px; margin: 27px 0 0; color: rgba(255,255,255,.75); font-size: 18px; line-height: 1.7; }
.region-hero-copy .button { margin-top: 31px; }
.region-hero-media { height: 420px; border-radius: 4px; overflow: hidden; box-shadow: 0 26px 70px rgba(0,0,0,.24); }
.region-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.region-content { padding: 98px max(24px, calc((100% - 1180px)/2)); background: var(--cream); }
.region-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: start; }
.region-grid h2 { font-size: clamp(39px, 4.5vw, 58px); }
.region-grid > div > p { color: #566b67; font-size: 16px; line-height: 1.75; }
.region-services { display: grid; gap: 14px; }
.region-service { padding: 25px 27px; border-radius: 4px; background: var(--paper); box-shadow: 0 12px 32px rgba(24,51,48,.07); }
.region-service strong { display: block; font-family: Georgia, serif; font-size: 23px; font-weight: 400; }
.region-service p { margin: 7px 0 0; color: #647672; font-size: 14px; line-height: 1.65; }
.region-proof { margin-top: 70px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.region-proof figure { margin: 0; height: 390px; position: relative; overflow: hidden; border-radius: 4px; }
.region-proof img { width: 100%; height: 100%; object-fit: cover; }
.region-proof figcaption { position: absolute; inset: auto 0 0; padding: 55px 22px 19px; color: #fff; background: linear-gradient(transparent, rgba(7,29,26,.82)); }
.region-cta { padding: 76px max(24px, calc((100% - 1180px)/2)); display: flex; justify-content: space-between; gap: 54px; align-items: center; color: #fff; background: var(--ink-2); }
.region-cta h2 { max-width: 730px; font-size: clamp(37px, 4.5vw, 59px); }
.region-cta-actions { min-width: 270px; display: grid; gap: 12px; }
.region-cta-actions .button { width: 100%; }

.contact { display: grid; grid-template-columns: .92fr 1.08fr; gap: 92px; color: #fff; background: var(--ink); }
.kicker-light { color: var(--sand-light); }
.contact-intro > p { max-width: 490px; margin: 26px 0 0; color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.72; }
.contact-direct { margin-top: 38px; border-top: 1px solid rgba(255,255,255,.18); }
.contact-direct a { padding: 16px 0; display: flex; justify-content: space-between; gap: 24px; border-bottom: 1px solid rgba(255,255,255,.18); text-decoration: none; }
.contact-direct span { color: rgba(255,255,255,.62); font-size: 13px; }
.contact-direct strong { color: var(--sand-light); font-weight: 650; }
.contact-intro .service-area { font-size: 12px; color: rgba(255,255,255,.48); }
.request-form { padding: 42px; color: var(--ink); background: var(--paper); border-radius: 5px; box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.request-form > label, .field-row > label { display: grid; gap: 7px; margin-bottom: 15px; color: #3c5552; font-size: 12px; font-weight: 760; letter-spacing: .025em; }
input, select, textarea { width: 100%; border: 1px solid #cfd8d5; border-radius: 3px; color: var(--ink); background: #fff; outline: none; }
input, select { height: 48px; padding: 0 13px; }
textarea { padding: 12px 13px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(24,51,48,.09); }
.invalid { border-color: #a13b31; box-shadow: 0 0 0 3px rgba(161,59,49,.09); }
.checkbox { display: flex; align-items: flex-start; gap: 10px; margin: 19px 0; color: #687b78; font-size: 12px; line-height: 1.5; }
.checkbox input { width: 17px; height: 17px; margin: 2px 0 0; flex: 0 0 auto; }
.checkbox label { cursor: pointer; }
.text-button, .legal-links a { padding: 0; border: 0; color: inherit; background: transparent; text-decoration: underline; cursor: pointer; }
.button-submit { width: 100%; color: #fff; background: var(--ink); }
.form-note, .form-status { margin: 11px 0 0; color: #566b67; font-size: 11px; text-align: center; }
.form-status { min-height: 1.4em; color: #9a3d34; font-weight: 700; }

footer { padding: 28px max(24px, calc((100% - 1180px)/2)); display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #526763; background: #f0eee8; font-size: 12px; }
footer > div:first-child { display: flex; align-items: center; gap: 22px; }
footer img { width: 112px; max-height: 52px; object-fit: contain; }
.legal-links { display: flex; gap: 20px; }
.legal-links a { text-decoration: none; }
.legal-links a:hover { color: var(--ink); }
.mobile-actions { display: none; }

.legal-dialog { width: min(720px, calc(100% - 32px)); max-height: min(82vh, 760px); padding: 0; border: 0; border-radius: 6px; color: var(--ink); background: var(--paper); box-shadow: 0 30px 100px rgba(0,0,0,.34); }
.legal-dialog::backdrop { background: rgba(8,29,27,.74); backdrop-filter: blur(4px); }
.dialog-head { position: sticky; top: 0; z-index: 2; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); background: var(--paper); }
.dialog-head h2 { font-size: 35px; }
.dialog-close { width: 40px; height: 40px; border: 0; border-radius: 50%; color: var(--ink); background: var(--cream); font-size: 27px; line-height: 1; cursor: pointer; }
.dialog-body { padding: 12px 26px 34px; color: #536a67; }
.dialog-body h3 { margin: 24px 0 5px; color: var(--ink); font-family: Georgia, serif; font-size: 19px; font-weight: 400; }
.dialog-body p { margin: 10px 0; }
.legal-note { padding: 13px; border-left: 3px solid var(--sand); background: var(--cream); font-size: 12px; }

.legal-page { min-height: 100vh; background: var(--cream); }
.legal-page-header { padding: 24px max(20px, calc((100% - 900px)/2)); display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #fff; background: var(--ink); }
.legal-page-header img { width: 145px; height: auto; border-radius: 2px; }
.legal-page-header a:last-child { color: var(--sand-light); font-size: 14px; font-weight: 700; text-decoration: none; }
.legal-main { width: min(900px, calc(100% - 40px)); margin: 0 auto; padding: 72px 0 96px; }
.legal-main h1 { color: var(--ink); font-size: clamp(44px, 7vw, 72px); }
.legal-main .legal-updated { margin: 12px 0 40px; color: #526763; font-size: 13px; }
.legal-card { padding: clamp(24px, 5vw, 52px); border-radius: 6px; background: var(--paper); box-shadow: 0 18px 55px rgba(24,51,48,.09); }
.legal-card h2 { margin: 34px 0 10px; font-size: 28px; line-height: 1.15; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card h3 { margin: 24px 0 8px; font-family: Georgia, serif; font-size: 20px; font-weight: 400; }
.legal-card p, .legal-card li { color: #526a66; line-height: 1.7; }
.legal-card a { overflow-wrap: anywhere; }
.legal-footer { padding: 26px 20px; color: #526763; text-align: center; background: #e9e5dc; font-size: 12px; }

@media (max-width: 1020px) and (min-width: 821px) {
  .section { padding-block: 88px; padding-inline: 32px; }
  .gallery { gap: 12px; }
  .contact { gap: 48px; }
  .request-form { padding: 30px; }
}

@media (max-width: 820px) {
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .site-header { position: absolute; width: calc(100% - 32px); height: 78px; }
  .brand img { width: 125px; }
  .site-header nav, .header-call { display: none; }
  .hero { min-height: 720px; align-items: flex-end; }
  .hero-photo { background-position: 63% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(9,34,31,.98) 3%, rgba(9,34,31,.88) 52%, rgba(9,34,31,.33) 100%); }
  .hero-content { width: calc(100% - 32px); margin: 94px auto 58px; padding-top: 140px; }
  .eyebrow { margin-bottom: 15px; }
  h1 { font-size: clamp(38px, 11.8vw, 60px); line-height: 1.01; hyphens: auto; }
  .hero-copy { margin-top: 20px; font-size: 16px; line-height: 1.58; }
  .hero-actions { margin-top: 25px; }
  .button { width: 100%; }
  .button-ghost { display: none; }
  .trust-row { margin-top: 30px; display: grid; grid-template-columns: repeat(3, 1fr); }
  .trust-row div { min-width: 0; padding: 0 10px; }
  .trust-row strong { font-size: 20px; }
  .trust-row span { font-size: 10px; line-height: 1.3; }
  .scroll-hint { display: none; }
  .section { padding: 76px 20px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 30px; }
  h2 { font-size: clamp(39px, 11.5vw, 55px); }
  .section-heading > p { font-size: 15px; }
  .gallery { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 20px 8px; margin-inline: -20px; scrollbar-width: none; }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery figure { min-width: 82vw; height: 440px; scroll-snap-align: center; }
  .gallery figcaption { font-size: 20px; }
  .process-band { grid-template-columns: 1fr; margin-top: 46px; }
  .process-band > div, .process-band > div:first-child { padding: 22px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .process-band span { margin-bottom: 7px; }
  .process-band p { margin-right: 20px; }
  .areas-panel { margin-top: 44px; padding: 27px 20px; grid-template-columns: 1fr; gap: 28px; }
  .area-links a { grid-template-columns: 1fr 22px; gap: 4px 10px; }
  .area-links span { line-height: 1.5; }
  .region-header .site-header { height: 78px; }
  .region-header .site-header nav { display: none; }
  .region-hero { min-height: 0; padding: 53px 20px 62px; grid-template-columns: 1fr; gap: 34px; }
  .region-hero-copy h1 { font-size: clamp(42px, 12vw, 60px); }
  .region-hero-copy > p { font-size: 16px; }
  .region-hero-media { height: 330px; }
  .region-content { padding: 70px 20px; }
  .region-grid { grid-template-columns: 1fr; gap: 30px; }
  .region-proof { margin-top: 44px; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .region-proof figure { min-width: 84vw; height: 390px; scroll-snap-align: center; }
  .region-cta { padding: 62px 20px; display: grid; gap: 30px; }
  .region-cta-actions { min-width: 0; }
  .contact { grid-template-columns: 1fr; gap: 42px; }
  .contact-direct a { flex-direction: column; gap: 2px; }
  .request-form { padding: 25px 18px; margin-inline: -3px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  footer { display: block; padding: 28px 20px 36px; }
  footer > div:first-child { align-items: flex-start; flex-direction: column; gap: 12px; }
  .legal-links { margin-top: 20px; }
  .mobile-actions { position: fixed; z-index: 45; inset: auto 0 0; min-height: calc(64px + env(safe-area-inset-bottom)); padding-bottom: env(safe-area-inset-bottom); display: grid; grid-template-columns: 1fr 1.18fr 1fr; color: #fff; background: #102f2c; box-shadow: 0 -8px 24px rgba(9,34,31,.22); }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; gap: 6px; color: rgba(255,255,255,.82); font-size: 12px; font-weight: 750; text-decoration: none; }
  .mobile-actions .mobile-primary { margin: 8px 0; color: var(--ink); background: var(--sand-light); border-radius: 3px; font-size: 13px; }
  .legal-page { padding-bottom: 0; }
}

@media (max-width: 410px) {
  .hero { min-height: 700px; }
  .hero-content { margin-bottom: 46px; }
  .trust-row div { padding-inline: 7px; }
  .trust-row strong { font-size: 18px; }
  .gallery figure { min-width: 86vw; height: 390px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
