:root {
  --ink: #111918;
  --muted: #5b6764;
  --paper: #f6f4ef;
  --surface: #ffffff;
  --canal: #146c68;
  --brick: #a94132;
  --gold: #d59b2d;
  --line: #ddd8ce;
  --shadow: 0 18px 50px rgba(17, 25, 24, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(90deg, rgba(7, 15, 14, 0.76), rgba(7, 15, 14, 0.38) 56%, rgba(7, 15, 14, 0.20)),
    url("https://images.unsplash.com/photo-1512470876302-972faa2aa9a4?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #ffffff;
}

.order-header {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 15, 14, 0.78), rgba(7, 15, 14, 0.42)),
    url("https://images.unsplash.com/photo-1512470876302-972faa2aa9a4?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.nav {
  width: calc(100% - 32px);
  margin: 0 auto;
  padding: 18px 0;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  transform: translateY(8px);
}

.brand img {
  display: block;
  width: 285px;
  max-height: 128px;
  object-fit: contain;
  height: auto;
}

.nav-links {
  display: flex;
  justify-self: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.94rem;
  padding: 5px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.language-switcher {
  display: flex;
  justify-self: end;
  gap: 4px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.language-button {
  min-width: 58px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  background: transparent;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.language-button:hover,
.language-button.active {
  background: rgba(255, 255, 255, 0.18);
}

.flag {
  width: 22px;
  height: 15px;
  display: inline-block;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  flex: 0 0 auto;
}

.flag-nl {
  background-image: url("assets/flag-nl.png");
}

.flag-de {
  background-image: url("assets/flag-de.png");
}

.flag-fr {
  background-image: url("assets/flag-fr.png");
}

.flag-gb {
  background-image: url("assets/flag-gb.png");
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 6px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-content {
  width: min(1120px, calc(100% - 32px));
  margin: auto auto 10vh;
}

.order-hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0 96px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  max-width: 760px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.08;
}

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

.hero-content p:not(.eyebrow) {
  max-width: 570px;
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.88);
}

.order-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 6px;
  font-weight: 800;
  border: 2px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(17, 25, 24, 0.16);
}

.button.primary {
  background: var(--brick);
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  color: var(--canal);
  border-color: var(--canal);
}

main {
  overflow: hidden;
}

.intro,
.packages,
.reviews,
.contact {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}

.intro > p {
  padding-top: calc(0.78rem * 1.6 + 10px);
  color: var(--muted);
  font-size: 1.08rem;
}

.image-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.image-section img {
  display: block;
  width: 100%;
  height: clamp(260px, 48vw, 520px);
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.packages {
  text-align: center;
}

.package-grid,
.review-grid {
  display: grid;
  gap: 24px;
  margin-top: 30px;
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: left;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-card {
  min-height: 330px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.package-card.featured {
  border-color: rgba(20, 108, 104, 0.28);
  box-shadow: inset 0 4px 0 var(--canal), var(--shadow);
}

.package-card p {
  color: var(--muted);
}

.package-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  align-self: flex-start;
}

.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.price {
  display: grid;
  gap: 2px;
  font-size: 2rem;
  line-height: 1;
  color: var(--brick);
}

.price span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 700;
}

.reviews {
  text-align: center;
  padding-top: 24px;
}

.review-card {
  min-height: 210px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(17, 25, 24, 0.06);
}

.review-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.review-card strong {
  color: var(--canal);
}

.contact {
  margin-bottom: 48px;
  padding: 58px 32px;
  background: var(--ink);
  color: #ffffff;
  border-radius: 6px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.contact p {
  max-width: 620px;
  margin: 0;
  color: #dce5e2;
}

.contact-form {
  display: grid;
  gap: 16px;
  text-align: left;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  font: inherit;
  color: var(--ink);
  background: #ffffff;
}

.contact-form textarea {
  resize: vertical;
}

.order-layout {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.order-summary,
.order-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.order-summary {
  padding: 32px;
}

.order-summary p:not(.eyebrow) {
  color: var(--muted);
}

.summary-price {
  margin-top: 28px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.summary-price span {
  color: var(--muted);
  font-weight: 700;
}

.summary-price strong {
  color: var(--brick);
}

.summary-meta {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.order-form {
  padding: 32px;
  display: grid;
  gap: 18px;
}

.order-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.order-form .checkbox-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 700;
}

.checkbox-label input {
  width: auto;
  margin-top: 5px;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  color: var(--ink);
  background: #fbfaf7;
}

.order-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--canal) 50%), linear-gradient(135deg, var(--canal) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: 3px solid rgba(20, 108, 104, 0.18);
  border-color: var(--canal);
}

.order-form small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.4;
}

.order-form textarea {
  resize: vertical;
}

.payment-methods {
  display: grid;
  gap: 12px;
}

.payment-methods h3 {
  margin: 0;
  font-size: 1.15rem;
}

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

.payment-option {
  min-height: 56px;
  padding: 12px;
  border: 2px solid var(--canal);
  border-radius: 6px;
  background: #ffffff;
  color: var(--canal);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.payment-option:hover,
.payment-option:focus {
  background: var(--canal);
  color: #ffffff;
  transform: translateY(-1px);
}

.form-status {
  margin: 0;
  min-height: 24px;
  color: var(--canal);
  font-weight: 800;
}

.site-footer {
  background: #0b1110;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-header {
  background: #0b1110;
  color: #ffffff;
}

.legal-header .brand {
  transform: none;
}

.legal-header .brand img {
  width: 220px;
}

.footer-inner {
  width: calc(100% - 32px);
  margin: 0 auto;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.footer-inner p {
  margin: 6px 0 0;
  color: #dce5e2;
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-contact p {
  margin: 0;
}

.footer-contact a,
.footer-links a {
  color: #ffffff;
  font-weight: 800;
}

.footer-links {
  display: grid;
  justify-content: start;
  gap: 8px;
}

.legal-page {
  width: min(820px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 72px 0;
}

.legal-page h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 1.5rem;
}

.legal-page p {
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-page ul {
  color: var(--muted);
  font-size: 1.04rem;
}

.legal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

@media (max-width: 760px) {
  .nav {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .brand img {
    width: min(270px, 100%);
  }

  .nav-links,
  .language-switcher {
    width: 100%;
    justify-content: space-between;
  }

  .nav-links a,
  .language-button {
    flex: 1;
    text-align: center;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    margin-bottom: 56px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .intro,
  .package-grid,
  .review-grid,
  .payment-grid,
  .order-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .intro,
  .packages,
  .reviews,
  .contact {
    padding: 56px 0;
  }

  .contact {
    padding-inline: 20px;
  }

  .package-card {
    min-height: auto;
    padding: 24px;
  }

  .package-footer,
  .summary-price {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .order-summary,
  .order-form {
    padding: 24px;
  }
}

@media (max-width: 420px) {
  .nav,
  .intro,
  .packages,
  .reviews,
  .contact,
  .image-section,
  .order-layout,
  .order-hero,
  .hero-content {
    width: min(100% - 24px, 1120px);
  }

  .nav-links {
    gap: 4px;
    font-size: 0.86rem;
  }

  .nav-links a {
    padding: 8px 6px;
  }

  .language-button {
    min-width: 0;
  }
}
