:root {
  --ink: #152026;
  --muted: #5d6871;
  --line: #d9e2e6;
  --paper: #fbfcfb;
  --soft: #eef5f2;
  --green: #147463;
  --blue: #285b8f;
  --red: #b7363e;
  --yellow: #d8a92b;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(20, 32, 38, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 251, .92);
  border-bottom: 1px solid rgba(217, 226, 230, .75);
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.hero-actions,
.footer-grid,
.route-strip {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 7px;
  background: var(--green);
  color: var(--white);
  font-size: 13px;
}

.nav {
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.nav a,
.header-cta,
.btn,
.route-card a,
.link-panel a,
.footer a {
  text-decoration: none;
}

.header-cta,
.btn {
  border-radius: 7px;
  font-weight: 800;
}

.header-cta {
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 18, 22, .82) 0%, rgba(10, 18, 22, .58) 43%, rgba(10, 18, 22, .14) 76%),
    linear-gradient(0deg, rgba(10, 18, 22, .55) 0%, rgba(10, 18, 22, 0) 45%);
}

.hero-content {
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: #d8a92b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: .98;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
}

h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.15;
}

.lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 12px 18px;
}

.btn.primary {
  background: var(--yellow);
  color: #111;
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, .5);
  color: var(--white);
}

.route-strip {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 26px;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
}

.route-strip span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 7px;
  background: rgba(255, 255, 255, .14);
  color: var(--white);
  font-weight: 800;
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.band,
.container,
.map-band,
.content-band {
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 96px);
}

.intro {
  background: var(--ink);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(220px, .85fr) 1.4fr;
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.intro p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 20px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.route-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.route-card,
.service-grid article,
.link-panel,
.answer-box,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.route-card {
  min-height: 330px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.route-icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
}

.uk .route-icon {
  background: var(--blue);
}

.nl .route-icon {
  background: var(--red);
}

.eu .route-icon {
  background: var(--green);
}

.route-card p {
  min-height: 116px;
  margin: 0 0 18px;
  color: var(--muted);
}

.route-card a {
  font-weight: 900;
  color: var(--green);
}

.map-band,
.content-band,
.visual-feature {
  background: var(--soft);
}

.map-grid,
.article-layout,
.image-copy-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.map-copy p:last-child,
.guide p,
.image-copy-grid p,
.region-grid p {
  color: var(--muted);
  font-size: 18px;
}

.route-map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(40, 91, 143, .12), rgba(20, 116, 99, .12)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .8) 0 18px, rgba(255, 255, 255, .45) 18px 36px);
}

.route-map svg {
  position: absolute;
  inset: 38px 28px;
  width: calc(100% - 56px);
  height: calc(100% - 76px);
  fill: none;
}

.route-map path {
  stroke: var(--green);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 14 14;
}

.route-map circle {
  fill: var(--red);
  stroke: var(--white);
  stroke-width: 5;
}

.pin {
  position: absolute;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 7px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.poland { left: 8%; bottom: 26%; }
.germany { left: 34%; bottom: 32%; }
.holland { right: 36%; top: 30%; }
.belgium { right: 25%; top: 36%; }
.england { right: 7%; top: 13%; }

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid article {
  padding: 24px;
}

.service-symbol {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-weight: 900;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
}

.visual-feature,
.comfort-band,
.region-section {
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 96px);
}

.comfort-band {
  background: var(--ink);
  color: var(--white);
}

.comfort-band .section-kicker {
  color: var(--yellow);
}

.comfort-band p,
.comfort-band .check-list {
  color: rgba(255, 255, 255, .78);
}

.photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.reverse {
  grid-template-columns: 1.05fr .95fr;
}

.region-section {
  background: var(--paper);
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.region-grid article {
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.check-list {
  margin: 24px 0 0;
  padding-left: 20px;
}

.check-list li {
  margin-top: 10px;
}

.article-layout {
  align-items: start;
}

.guide {
  max-width: 760px;
}

.answer-box {
  margin-top: 26px;
  padding: 22px;
  border-left: 6px solid var(--yellow);
}

.answer-box p {
  margin-bottom: 0;
}

.link-panel {
  position: sticky;
  top: 90px;
  padding: 22px;
}

.link-panel h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.link-panel a {
  display: block;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.link-panel span {
  display: block;
  color: var(--muted);
}

.faq {
  max-width: 920px;
}

details {
  margin-top: 12px;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.footer {
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  justify-content: space-between;
  gap: 24px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .72);
}

.footer a {
  color: var(--yellow);
  font-weight: 900;
}

@media (max-width: 920px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    margin-top: 80px;
  }

  .intro-grid,
  .map-grid,
  .article-layout,
  .image-copy-grid,
  .route-grid,
  .service-grid,
  .region-grid,
  .reverse {
    grid-template-columns: 1fr;
  }

  .route-card {
    min-height: auto;
  }

  .route-card p {
    min-height: 0;
  }

  .link-panel {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand {
    font-size: 15px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 740px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(10, 18, 22, .86), rgba(10, 18, 22, .38));
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 72px auto 0;
  }

  h1 {
    font-size: 40px;
  }

  .route-strip {
    left: 14px;
    right: 14px;
    bottom: 18px;
  }

  .route-strip span {
    font-size: 13px;
  }

  .route-map {
    min-height: 300px;
  }
}


.menu-toggle{display:none;width:44px;height:44px;align-items:center;justify-content:center;flex-direction:column;gap:5px;border:1px solid var(--line);border-radius:8px;background:var(--white);color:var(--ink);cursor:pointer}
.menu-toggle span{display:block;width:22px;height:2px;border-radius:2px;background:currentColor;transition:transform .2s ease,opacity .2s ease}
body.menu-open .menu-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)}
body.menu-open .menu-toggle span:nth-child(2){opacity:0}
body.menu-open .menu-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
@media(max-width:760px){
  .site-header{display:grid;grid-template-columns:1fr auto;align-items:center;gap:12px;padding:12px 14px}
  .menu-toggle{display:flex}
  .nav{grid-column:1 / -1;display:none;width:100%;order:initial;gap:0;overflow:visible;padding:8px;border:1px solid var(--line);border-radius:8px;background:var(--white);box-shadow:var(--shadow)}
  body.menu-open .nav{display:grid;grid-template-columns:1fr}
  .nav a{display:block;padding:12px 10px;border-radius:7px;color:var(--ink);font-weight:800}
  .nav a:hover,.nav a:focus-visible{background:var(--soft);outline:none}
  .brand{min-width:0}
  .brand span:last-child{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
}


/* Responsive refinement */
img,svg{max-width:100%;height:auto}
.site-header{min-height:66px}
.brand span:last-child{line-height:1.15}
.route-grid,.service-grid,.region-grid,.intro-grid,.map-grid,.article-layout,.image-copy-grid{min-width:0}
.route-card,.service-grid article,.region-grid article,.link-panel,.photo-card{min-width:0}
@media(max-width:1100px){
  .service-grid,.region-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .article-layout,.image-copy-grid,.intro-grid,.map-grid{grid-template-columns:1fr}
  .link-panel{position:static}
}
@media(max-width:760px){
  body{font-size:16px}
  .container{width:min(100% - 28px,1180px)}
  .hero{min-height:640px;align-items:end;padding:96px 0 42px}
  .hero-content{width:calc(100% - 28px);margin:0 auto;padding-right:0}
  h1{font-size:clamp(34px,10vw,46px);line-height:1.02}
  h2{font-size:clamp(25px,7vw,34px)}
  h3{font-size:21px}
  .lead,.intro p:last-child,.guide p,.image-copy-grid p,.region-grid p{font-size:17px}
  .band,.container,.map-band,.content-band,.visual-feature,.comfort-band,.region-section{padding-top:44px;padding-bottom:44px}
  .route-grid,.service-grid,.region-grid{grid-template-columns:1fr}
  .route-card{min-height:auto;padding:22px;transform:none!important}
  .route-icon{width:52px;height:52px;margin-bottom:18px}
  .photo-card img{aspect-ratio:4/3}
  .footer-grid{display:grid;grid-template-columns:1fr;align-items:start}
}
@media(max-width:420px){
  .brand-mark{width:34px;height:34px;font-size:12px}
  .brand{font-size:14px}
  .menu-toggle{width:40px;height:40px}
  .hero{min-height:590px}
  h1{font-size:32px}
  .btn{width:100%;justify-content:center}
  .hero-actions{width:100%}
  .nav a{font-size:15px}
}
