@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Source Sans 3", system-ui, -apple-system, "Segoe UI", Helvetica, sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2E2E2E;
  margin: 0;
  min-height: 100vh;
  padding: 0 clamp(0.75rem, 2vw, 1.5rem);
  overflow-x: hidden;
  background-color: #FAF7F0;
}

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

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", "Lora", Georgia, serif;
  color: #565E2E;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.25;
}

a {
  color: #565E2E;
}

.background-website {
  background-image: linear-gradient(rgba(250, 247, 240, 0.65), rgba(250, 247, 240, 0.65)), url(../images/yellowflower.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.payoff {
  font-family: "Cormorant Garamond", "Lora", Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #D9BF9F;
  font-weight: 500;
}

header {
  background-color: #F8F5EE;
  color: #2E2E2E;
  font-weight: 400;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 1px 0 rgba(46, 46, 46, 0.12), 0 6px 18px rgba(0, 0, 0, 0.04);
  max-width: 2500px;
  margin: 0 calc(-1 * clamp(0.75rem, 2vw, 1.5rem));
  border-bottom: 1px solid rgba(46, 46, 46, 0.12);
}

.nav-container {
  display: flex;
  flex-flow: row;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 87.5rem;
  margin: 0 auto;
}

.nav-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  text-decoration: none;
  color: #2E2E2E;
}

.nav-sub-container {
  display: flex;
  gap: 1.75rem;
  font-size: 0.95rem;
  align-items: center;
}

.koning-logo-website {
  display: inline-flex;
  width: auto;
  height: auto;
  max-height: 5.5rem;
  align-items: center;
}

.nav-refs {
  text-decoration: none;
  color: #2E2E2E;
  font-family: "Inter", "Source Sans 3", system-ui, -apple-system, "Segoe UI", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  display: inline-block;
  padding: 0.5rem 0.25rem;
  position: relative;
}
.nav-refs::after {
  content: "";
  position: absolute;
  left: 0.25rem;
  right: 0.25rem;
  bottom: 0.15rem;
  height: 1px;
  background-color: #D9BF9F;
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-refs:hover {
  color: #565E2E;
}
.nav-refs:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.nav-ref-picked {
  color: #565E2E !important;
}
.nav-ref-picked::after {
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown .nav-dropdown-toggle {
  cursor: pointer;
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-dropdown .nav-dropdown-toggle .dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
  color: #D9BF9F;
}
.nav-dropdown .nav-dropdown-menu {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.18s ease, visibility 0s 0.18s, transform 0.18s ease;
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid rgba(46, 46, 46, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  min-width: 15rem;
  z-index: 100;
  overflow: hidden;
  padding: 0.4rem 0;
}
.nav-dropdown .nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -0.6rem;
  left: 0;
  right: 0;
  height: 0.6rem;
}
.nav-dropdown .nav-dropdown-menu a {
  display: block;
  padding: 0.7rem 1.25rem;
  text-decoration: none;
  color: #2E2E2E;
  font-family: "Inter", "Source Sans 3", system-ui, -apple-system, "Segoe UI", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  transition: background-color 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
  border-left: 2px solid transparent;
}
.nav-dropdown .nav-dropdown-menu a:hover {
  background-color: #F8F5EE;
  color: #565E2E;
  border-left-color: #D9BF9F;
  padding-left: 1.4rem;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.18s ease, visibility 0s 0s, transform 0.18s ease;
}
.nav-dropdown:hover .dropdown-arrow, .nav-dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  font-family: "Inter", "Source Sans 3", system-ui, -apple-system, "Segoe UI", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1.5px solid transparent;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.btn-primary {
  background-color: #697139;
  color: #FAF7F0;
}
.btn-primary:hover {
  background-color: #565E2E;
  color: #fff;
}

.btn-secondary {
  background-color: transparent;
  color: #565E2E;
  border-color: #697139;
}
.btn-secondary:hover {
  background-color: rgba(105, 113, 57, 0.08);
}

.btn-ghost {
  display: inline-block;
  padding: 0.5rem 0;
  color: #565E2E;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #D9BF9F;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.btn-ghost:hover {
  color: #697139;
  border-color: #697139;
}

.section-wrapper {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-title {
  font-family: "Cormorant Garamond", "Lora", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  margin: 0 0 1.5rem 0;
  color: #565E2E;
}

.section-eyebrow {
  display: inline-block;
  font-family: "Inter", "Source Sans 3", system-ui, -apple-system, "Segoe UI", Helvetica, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #D9BF9F;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.hero-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
  padding: 4rem 2.5rem;
  max-width: 80rem;
  margin: 2.5rem auto;
  border-radius: 18px;
  background: linear-gradient(135deg, #565E2E 0%, #3D421F 100%);
  color: #FAF7F0;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(217, 191, 159, 0.18), transparent 55%);
  pointer-events: none;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.hero-text h1 {
  font-family: "Cormorant Garamond", "Lora", Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  color: #FAF7F0;
  margin: 0;
}
.hero-text p {
  font-size: 1.05rem;
  color: rgba(250, 247, 240, 0.92);
  line-height: 1.7;
  margin: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-buttons .btn-primary {
  background-color: #D9BF9F;
  color: #3D421F;
}
.hero-buttons .btn-primary:hover {
  background-color: #E8D3B3;
  color: #565E2E;
}
.hero-buttons .btn-secondary {
  color: #FAF7F0;
  border-color: rgba(250, 247, 240, 0.6);
}
.hero-buttons .btn-secondary:hover {
  background-color: rgba(250, 247, 240, 0.1);
  border-color: #FAF7F0;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero-image img {
  width: 100%;
  max-width: 24rem;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.25) 0 12px 32px;
}

.page-hero {
  max-width: 80rem;
  margin: 2.5rem auto;
  padding: 3.5rem 2.5rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #565E2E 0%, #3D421F 100%);
  color: #FAF7F0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(217, 191, 159, 0.18), transparent 55%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 50rem;
  color: #FAF7F0;
  position: relative;
  z-index: 1;
}

.page-eyebrow {
  display: inline-block;
  font-family: "Inter", "Source Sans 3", system-ui, -apple-system, "Segoe UI", Helvetica, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E8D3B3;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.page-hero h1 {
  font-family: "Cormorant Garamond", "Lora", Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: #FAF7F0;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  font-weight: 600;
}

.page-hero p {
  color: rgba(250, 247, 240, 0.92);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}
.page-hero-actions .btn-primary {
  background-color: #D9BF9F;
  color: #3D421F;
}
.page-hero-actions .btn-primary:hover {
  background-color: #E8D3B3;
}
.page-hero-actions .btn-secondary {
  color: #FAF7F0;
  border-color: rgba(250, 247, 240, 0.6);
}
.page-hero-actions .btn-secondary:hover {
  background-color: rgba(250, 247, 240, 0.1);
  border-color: #FAF7F0;
}

.split-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
  padding: 3rem 2rem;
  max-width: 80rem;
  margin: 3rem auto;
  background-color: #F8F5EE;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(46, 46, 46, 0.12);
}
.split-section.split-reverse {
  flex-direction: row-reverse;
}
.split-section.split-plain {
  background-color: transparent;
  box-shadow: none;
  border: none;
  padding: 2rem 1rem;
}

.split-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.split-image img {
  width: 100%;
  max-width: 22rem;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.split-text {
  flex: 1.2;
}
.split-text p {
  line-height: 1.75;
  color: #2E2E2E;
  margin: 0 0 1rem 0;
}

.cards-section {
  max-width: 80rem;
  margin: 3rem auto;
  padding: 3rem 1.5rem;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}
.cards-section.cards-warm {
  background-color: #F8F5EE;
  border: 1px solid rgba(46, 46, 46, 0.12);
}
.cards-section.cards-sage {
  background-color: #E8EDD8;
}
.cards-section.cards-plain {
  background-color: transparent;
  box-shadow: none;
  padding: 2rem 0;
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
}
.cards-grid.cards-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cards-grid.cards-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card,
.info-card,
.phase-card,
.technique-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(46, 46, 46, 0.12);
}
.value-card h3,
.info-card h3,
.phase-card h3,
.technique-card h3 {
  font-family: "Cormorant Garamond", "Lora", Georgia, serif;
  font-size: 1.3rem;
  color: #565E2E;
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}
.value-card p,
.info-card p,
.phase-card p,
.technique-card p {
  color: #444;
  line-height: 1.65;
  margin: 0;
  font-size: 0.98rem;
}

.value-card {
  text-align: center;
}
.value-card .value-card-icon {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.phase-card .phase-card-label,
.education-meta {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #D9BF9F;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.education-meta {
  display: block;
}

.image-placeholder {
  background: linear-gradient(135deg, #F8F5EE, #E8EDD8);
  min-height: 18rem;
  border-radius: 12px;
}

.card-section-cta {
  margin-top: 1.75rem;
  text-align: center;
}
.card-section-cta a {
  color: #565E2E;
  font-weight: 500;
}

.check-section {
  max-width: 80rem;
  margin: 3rem auto;
  padding: 3rem 1.5rem;
  border-radius: 18px;
  background-color: #F8F5EE;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(46, 46, 46, 0.12);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.check-list li {
  padding-left: 1.8rem;
  position: relative;
  line-height: 1.65;
  color: #2E2E2E;
}
.check-list li::before {
  content: "✓";
  color: #697139;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}
.check-list.check-list-inline {
  margin-bottom: 1.5rem;
}

.check-conclusion {
  color: #5d5d5d;
  font-style: italic;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(46, 46, 46, 0.12);
}

.quote-section {
  max-width: 60rem;
  margin: 3rem auto;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(46, 46, 46, 0.12);
  border-bottom: 1px solid rgba(46, 46, 46, 0.12);
}
.quote-section blockquote {
  margin: 0;
  padding: 0;
}
.quote-section blockquote p {
  font-family: "Cormorant Garamond", "Lora", Georgia, serif;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-style: italic;
  color: #565E2E;
  line-height: 1.55;
  margin: 0 0 1rem 0;
}
.quote-section blockquote cite {
  color: #5d5d5d;
  font-style: normal;
  font-size: 0.95rem;
}

.pricing-section {
  max-width: 80rem;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(46, 46, 46, 0.12);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.1);
}
.pricing-card.pricing-card-featured {
  background: linear-gradient(160deg, #565E2E 0%, #3D421F 100%);
  color: #FAF7F0;
  border-color: transparent;
}
.pricing-card.pricing-card-featured .pricing-card-label,
.pricing-card.pricing-card-featured .pricing-amount,
.pricing-card.pricing-card-featured .pricing-unit,
.pricing-card.pricing-card-featured h3,
.pricing-card.pricing-card-featured .pricing-features li {
  color: #FAF7F0;
}
.pricing-card.pricing-card-featured .pricing-features li::before {
  color: #E8D3B3;
}
.pricing-card.pricing-card-featured .btn-primary {
  background-color: #D9BF9F;
  color: #3D421F;
}
.pricing-card.pricing-card-featured .btn-primary:hover {
  background-color: #E8D3B3;
}

.pricing-card-flag {
  position: absolute;
  top: -0.85rem;
  right: 1.5rem;
  background-color: #D9BF9F;
  color: #3D421F;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.pricing-card-header {
  margin-bottom: 1rem;
}
.pricing-card-header .pricing-card-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D9BF9F;
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.pricing-card-header h3 {
  margin: 0;
  font-size: 1.45rem;
  color: #565E2E;
}

.pricing-card-price {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(46, 46, 46, 0.12);
}
.pricing-card-price .pricing-amount {
  display: block;
  font-family: "Cormorant Garamond", "Lora", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #2E2E2E;
  line-height: 1.1;
}
.pricing-card-price .pricing-unit {
  display: block;
  font-size: 0.9rem;
  color: #5d5d5d;
  margin-top: 0.25rem;
}

.pricing-card-featured .pricing-card-price {
  border-bottom-color: rgba(250, 247, 240, 0.25);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pricing-features li {
  padding-left: 1.5rem;
  position: relative;
  color: #444;
  line-height: 1.5;
  font-size: 0.95rem;
}
.pricing-features li::before {
  content: "✓";
  color: #697139;
  font-weight: 700;
  position: absolute;
  left: 0;
}

.pricing-cta {
  width: 100%;
  text-align: center;
}

.pricing-extras {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pricing-extra {
  background-color: #F8F5EE;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(46, 46, 46, 0.12);
}
.pricing-extra h4 {
  font-family: "Cormorant Garamond", "Lora", Georgia, serif;
  margin: 0 0 0.5rem 0;
  color: #565E2E;
  font-size: 1.15rem;
}
.pricing-extra p {
  margin: 0;
  color: #444;
}

.rate-table-section {
  max-width: 80rem;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.rate-table-block {
  background-color: #fff;
  border: 1px solid rgba(46, 46, 46, 0.12);
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
  margin-bottom: 1.5rem;
}
.rate-table-block h3 {
  font-family: "Cormorant Garamond", "Lora", Georgia, serif;
  margin: 0 0 0.25rem 0;
  color: #565E2E;
  font-size: 1.3rem;
}
.rate-table-block .rate-table-meta {
  display: block;
  color: #5d5d5d;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.rate-table th, .rate-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(46, 46, 46, 0.12);
}
.rate-table th {
  font-family: "Inter", "Source Sans 3", system-ui, -apple-system, "Segoe UI", Helvetica, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5d5d5d;
  font-weight: 600;
}
.rate-table td.rate-table-price {
  font-family: "Cormorant Garamond", "Lora", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #565E2E;
  text-align: right;
  white-space: nowrap;
}
.rate-table tr:last-child td {
  border-bottom: none;
}

.location-section {
  max-width: 80rem;
  margin: 3rem auto;
  padding: 3rem 1.5rem;
  border-radius: 18px;
  background-color: #F8F5EE;
  border: 1px solid rgba(46, 46, 46, 0.12);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}

.location-photo {
  margin: 1.5rem 0 2rem 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.04);
}
.location-photo img {
  width: 100%;
  height: auto;
  max-height: 32rem;
  object-fit: cover;
  display: block;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  margin-top: 1rem;
}

.location-address {
  background-color: #fff;
  border: 1px solid rgba(46, 46, 46, 0.12);
  border-radius: 12px;
  padding: 1.75rem;
}
.location-address .location-name {
  font-family: "Cormorant Garamond", "Lora", Georgia, serif;
  font-size: 1.35rem;
  color: #565E2E;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}
.location-address .location-street {
  font-style: normal;
  color: #2E2E2E;
  line-height: 1.6;
  display: block;
  margin-bottom: 0.75rem;
}
.location-address p {
  margin: 0;
  color: #5d5d5d;
  font-size: 0.95rem;
  line-height: 1.6;
}

.travel-block h3 {
  font-family: "Cormorant Garamond", "Lora", Georgia, serif;
  color: #565E2E;
  font-size: 1.15rem;
  margin: 1.5rem 0 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.travel-block p {
  margin: 0 0 0.5rem 0;
  color: #2E2E2E;
  line-height: 1.65;
  font-size: 0.97rem;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.steps-list li {
  counter-increment: step-counter;
  padding-left: 3.5rem;
  position: relative;
  line-height: 1.7;
  color: #2E2E2E;
}
.steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #697139;
  color: #FAF7F0;
  border-radius: 50%;
  font-family: "Cormorant Garamond", "Lora", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps-list li strong {
  color: #565E2E;
  font-weight: 600;
}

.timeline-section {
  max-width: 80rem;
  margin: 3rem auto;
  padding: 3rem 1.5rem;
  border-radius: 18px;
  background-color: #F8F5EE;
  border: 1px solid rgba(46, 46, 46, 0.12);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  position: relative;
  max-width: 50rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  left: 0.75rem;
  width: 2px;
  background: linear-gradient(to bottom, #697139, rgba(105, 113, 57, 0.3));
}

.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 1.75rem;
}
.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: #697139;
  box-shadow: 0 0 0 4px rgba(105, 113, 57, 0.15);
}

.timeline-content h3 {
  margin: 0 0 0.4rem 0;
  color: #565E2E;
  font-size: 1.15rem;
}

.timeline-content p {
  margin: 0;
  color: #444;
  line-height: 1.65;
}

.contact-section {
  max-width: 80rem;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.contact-form-card {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(46, 46, 46, 0.12);
}

.contact-form-title {
  font-family: "Cormorant Garamond", "Lora", Georgia, serif;
  margin: 0 0 0.5rem 0;
  color: #565E2E;
  font-size: 1.6rem;
}

.contact-form-intro {
  color: #5d5d5d;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.contact-feedback {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.contact-feedback.contact-feedback-success {
  background-color: rgba(105, 113, 57, 0.12);
  color: #565E2E;
  border: 1px solid rgba(105, 113, 57, 0.25);
}
.contact-feedback.contact-feedback-error {
  background-color: rgba(190, 60, 60, 0.1);
  color: #8a2a2a;
  border: 1px solid rgba(190, 60, 60, 0.25);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.95rem;
}
.contact-field .contact-field-label {
  color: #2E2E2E;
  font-weight: 500;
  font-size: 0.9rem;
}
.contact-field .contact-field-label .required {
  color: #b54a4a;
}
.contact-field .contact-field-label .optional {
  color: #5d5d5d;
  font-weight: 400;
}
.contact-field input, .contact-field select, .contact-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: "Inter", "Source Sans 3", system-ui, -apple-system, "Segoe UI", Helvetica, sans-serif;
  font-size: 1rem;
  color: #2E2E2E;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-field input:focus, .contact-field select:focus, .contact-field textarea:focus {
  outline: none;
  border-color: #697139;
  box-shadow: 0 0 0 3px rgba(105, 113, 57, 0.18);
}
.contact-field textarea {
  resize: vertical;
  min-height: 7rem;
}

.contact-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #5d5d5d;
  line-height: 1.5;
  margin: 0.25rem 0 0.5rem 0;
}
.contact-checkbox input[type=checkbox] {
  margin-top: 0.25rem;
  accent-color: #697139;
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}
.contact-checkbox .required {
  color: #b54a4a;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
  min-width: 12rem;
}
.contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-form-meta {
  margin: 0.5rem 0 0 0;
  font-size: 0.85rem;
  color: #5d5d5d;
}

.contact-info-card {
  background: linear-gradient(160deg, #565E2E 0%, #3D421F 100%);
  color: #FAF7F0;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 1.5rem;
}

.contact-info-title {
  font-family: "Cormorant Garamond", "Lora", Georgia, serif;
  margin: 0 0 0.5rem 0;
  color: #FAF7F0;
  font-size: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-item a {
  color: #FAF7F0;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(250, 247, 240, 0.4);
}
.contact-info-item a:hover {
  text-decoration-color: #E8D3B3;
  color: #E8D3B3;
}

.contact-info-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: rgba(250, 247, 240, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  font-weight: 600;
}

.contact-info-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.15rem;
  color: #E8D3B3;
}

.contact-info-quote {
  margin-top: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(250, 247, 240, 0.18);
  font-style: italic;
  font-family: "Cormorant Garamond", "Lora", Georgia, serif;
  font-size: 1.05rem;
  color: rgba(250, 247, 240, 0.95);
  line-height: 1.5;
}

.faq-section {
  max-width: 80rem;
  margin: 3rem auto;
  padding: 3rem 1.5rem;
  border-radius: 18px;
  background-color: #F8F5EE;
  border: 1px solid rgba(46, 46, 46, 0.12);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
}

.faq-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 0.25rem 1.25rem;
  border: 1px solid rgba(46, 46, 46, 0.12);
  transition: box-shadow 0.2s ease;
}
.faq-item summary {
  cursor: pointer;
  font-family: "Inter", "Source Sans 3", system-ui, -apple-system, "Segoe UI", Helvetica, sans-serif;
  font-weight: 600;
  color: #2E2E2E;
  padding: 1rem 0;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #697139;
  font-size: 1.4rem;
  line-height: 1;
}
.faq-item[open] {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  margin: 0 0 1rem 0;
  color: #444;
  line-height: 1.65;
}

.herkenning-section,
.diensten-section,
.proces-section,
.voor-wie-section,
.over-mij-section {
  padding: 3rem 2rem;
  max-width: 80rem;
  margin: 3rem auto;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}

.herkenning-section {
  background-color: #E8EDD8;
}

.diensten-section {
  background-color: #F8F5EE;
  border: 1px solid rgba(46, 46, 46, 0.12);
}

.proces-section {
  background-color: #E8EDD8;
}

.voor-wie-section {
  background-color: #F8F5EE;
  border: 1px solid rgba(46, 46, 46, 0.12);
  display: flex;
  align-items: center;
  gap: 4rem;
}

.over-mij-section {
  background-color: #E8EDD8;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.herkenning-grid {
  display: flex;
  gap: 3rem;
  margin-top: 1rem;
}

.herkenning-kolom {
  flex: 1;
}

.diensten-grid {
  display: flex;
  gap: 1.5rem;
}

.diensten-card {
  flex: 1;
  background-color: #fff;
  border: 1px solid rgba(46, 46, 46, 0.12);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}
.diensten-card h3 {
  font-family: "Cormorant Garamond", "Lora", Georgia, serif;
  font-size: 1.35rem;
  color: #565E2E;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}
.diensten-card strong {
  display: block;
  color: #D9BF9F;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.diensten-card p {
  color: #444;
  line-height: 1.65;
  margin: 0;
}

.proces-steps {
  display: flex;
  gap: 2rem;
}

.proces-step {
  flex: 1;
  text-align: center;
  padding: 1rem;
}

.proces-step-number {
  font-family: "Cormorant Garamond", "Lora", Georgia, serif;
  font-size: 3rem;
  font-weight: 600;
  color: #697139;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.proces-step-title {
  font-family: "Cormorant Garamond", "Lora", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #565E2E;
  margin-bottom: 0.5rem;
}

.proces-step-text {
  color: #5d5d5d;
  line-height: 1.65;
}

.voor-wie-text {
  flex: 1;
}
.voor-wie-text ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.voor-wie-text ul li {
  padding-left: 1.4rem;
  position: relative;
}
.voor-wie-text ul li::before {
  content: "✓";
  color: #697139;
  position: absolute;
  left: 0;
  font-weight: 700;
}

.voor-wie-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.voor-wie-image img {
  width: 100%;
  max-width: 22rem;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.over-mij-image img {
  width: 12rem;
  height: 16rem;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.over-mij-content {
  flex: 1;
}
.over-mij-content p {
  line-height: 1.7;
  color: #2E2E2E;
  margin-bottom: 1.5rem;
}

.prose-section {
  max-width: 50rem;
  margin: 3rem auto;
  padding: 2.5rem 2rem;
  background-color: #fff;
  border: 1px solid rgba(46, 46, 46, 0.12);
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}
.prose-section h2 {
  font-family: "Cormorant Garamond", "Lora", Georgia, serif;
  font-size: 1.6rem;
  color: #565E2E;
  margin: 2.5rem 0 1rem 0;
  font-weight: 600;
}
.prose-section h2:first-of-type {
  margin-top: 0;
}
.prose-section h3 {
  font-family: "Cormorant Garamond", "Lora", Georgia, serif;
  font-size: 1.2rem;
  color: #565E2E;
  margin: 1.75rem 0 0.5rem 0;
  font-weight: 600;
}
.prose-section p {
  line-height: 1.75;
  color: #2E2E2E;
  margin: 0 0 1rem 0;
}
.prose-section ul, .prose-section ol {
  margin: 0 0 1.25rem 0;
  padding-left: 1.5rem;
}
.prose-section ul li, .prose-section ol li {
  line-height: 1.7;
  margin-bottom: 0.4rem;
  color: #2E2E2E;
}
.prose-section ol li {
  padding-left: 0.25rem;
}
.prose-section ol li::marker {
  color: #697139;
  font-weight: 600;
}
.prose-section strong {
  color: #565E2E;
}
.prose-section a {
  color: #565E2E;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: #D9BF9F;
}
.prose-section a:hover {
  color: #697139;
}
.prose-section hr {
  border: none;
  border-top: 1px solid rgba(46, 46, 46, 0.12);
  margin: 2.5rem 0 1.5rem 0;
}
.prose-section em {
  color: #5d5d5d;
  font-style: italic;
}

.cta-section {
  background: linear-gradient(135deg, #565E2E 0%, #3D421F 100%);
  padding: 3.5rem 2rem;
  text-align: center;
  max-width: 80rem;
  margin: 2rem auto 4rem;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(217, 191, 159, 0.15), transparent 55%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: "Cormorant Garamond", "Lora", Georgia, serif;
  color: #FAF7F0;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 1rem 0;
  position: relative;
  z-index: 1;
}
.cta-section p {
  color: rgba(250, 247, 240, 0.9);
  font-size: 1.05rem;
  margin: 0 0 1.75rem 0;
  position: relative;
  z-index: 1;
}
.cta-section .btn-primary {
  background-color: #D9BF9F;
  color: #3D421F;
  position: relative;
  z-index: 1;
}
.cta-section .btn-primary:hover {
  background-color: #E8D3B3;
}

footer {
  background-color: #3D421F;
  color: rgba(250, 247, 240, 0.92);
  max-width: 2500px;
  margin: 5rem calc(-1 * clamp(0.75rem, 2vw, 1.5rem)) 0;
  padding: 3rem 1.5rem 1.5rem;
}

.footer-flex-container {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  max-width: 75rem;
  margin: 0 auto;
}

.footer-brand .footer-logo {
  max-height: 5rem;
  filter: brightness(0) invert(1) sepia(0.1);
  opacity: 0.95;
}

.footer-tagline {
  margin: 0.75rem 0 0.25rem 0;
  color: #FAF7F0;
}

.footer-payoff {
  margin: 0.75rem 0 0 0;
  color: #E8D3B3;
  font-family: "Cormorant Garamond", "Lora", Georgia, serif;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-location {
  margin: 0;
  color: rgba(250, 247, 240, 0.7);
  font-size: 0.9rem;
}

.footer-flex-sub-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-flex-sub-container h4 {
  font-family: "Cormorant Garamond", "Lora", Georgia, serif;
  margin: 0 0 0.5rem 0;
  color: #FAF7F0;
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-refs {
  text-decoration: none;
  color: rgba(250, 247, 240, 0.85);
  display: inline-block;
  width: fit-content;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-refs-link:hover {
  color: #E8D3B3;
}

.footer-bottom {
  max-width: 75rem;
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(250, 247, 240, 0.15);
  font-size: 0.85rem;
  color: rgba(250, 247, 240, 0.6);
  text-align: center;
}

.fade-in {
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in, visibility 0s 0.5s;
}

.fade-in:not(.invisible) {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-in, transform 0.6s ease-out;
}

.p-menu1 {
  display: none;
}

@media only screen and (max-width: 75rem) {
  .nav-container {
    gap: 1.25rem;
  }
  .nav-sub-container {
    gap: 0.75rem;
  }
  .koning-logo-website {
    max-height: 4.75rem;
  }
  .hero-section,
  .split-section,
  .voor-wie-section,
  .over-mij-section {
    gap: 3rem;
    padding: 2.5rem 1.75rem;
  }
  .page-hero {
    padding: 3rem 2rem;
  }
  .cards-section,
  .check-section,
  .faq-section,
  .timeline-section,
  .location-section,
  .herkenning-section,
  .diensten-section,
  .proces-section {
    padding: 2.5rem 1.5rem;
  }
  .footer-flex-container {
    gap: 2rem;
  }
}
@media only screen and (max-width: 64rem) {
  .pricing-grid {
    gap: 1rem;
  }
  .pricing-card {
    padding: 1.75rem 1.25rem;
  }
  .pricing-amount {
    font-size: 2rem !important;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .contact-info-card {
    position: static;
    top: auto;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-flex-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .rate-table-block {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media only screen and (max-width: 60rem) {
  .cards-grid.cards-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card-featured {
    order: -1;
  }
  .pricing-amount {
    font-size: 2.4rem !important;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .pricing-extras {
    grid-template-columns: 1fr;
  }
  .footer-flex-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .hero-section,
  .voor-wie-section,
  .over-mij-section,
  .split-section,
  .split-section.split-reverse {
    flex-direction: column;
    gap: 2rem;
    text-align: left;
  }
  .hero-image img,
  .split-image img,
  .voor-wie-image img {
    max-width: 100%;
  }
  .herkenning-grid,
  .diensten-grid,
  .proces-steps {
    flex-direction: column;
  }
  .timeline::before {
    left: 0.6rem;
  }
  .location-section,
  .cards-section,
  .check-section,
  .faq-section,
  .timeline-section,
  .rate-table-section,
  .pricing-section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .travel-block h3 {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 56rem) {
  .nav-sub-container {
    display: none;
  }
  .p-menu1 {
    display: block;
  }
  .nav-container {
    justify-content: space-between;
    gap: 1rem;
  }
  .koning-logo-website {
    max-height: 4rem;
  }
  .hamburger1 {
    height: 45px;
    width: 45px;
    margin: 0;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    z-index: 120;
    cursor: pointer;
  }
  .hamburger1 div {
    background-color: #565E2E;
    width: 30px;
    height: 4px;
    margin-top: 7px;
    border-radius: 2px;
    transition: all 0.25s ease-in-out;
  }
  #toggle1 {
    display: none;
  }
  #toggle1:checked + .hamburger1 .top {
    transform: rotate(-45deg);
    margin-top: 22.5px;
  }
  #toggle1:checked + .hamburger1 .meat {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  #toggle1:checked + .hamburger1 .bottom {
    transform: scale(0);
  }
  .menu1 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-color: #3D421F;
    display: flex;
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    gap: 0.25rem;
    z-index: 110;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
    text-align: center;
  }
  #toggle1:checked ~ .menu1 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0s;
  }
  .link1 {
    width: 100%;
    padding: 0.85rem 0;
    font-family: "Cormorant Garamond", "Lora", Georgia, serif;
    font-weight: 600;
    font-size: 1.35rem;
    color: #FAF7F0;
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .link1-sub {
    font-family: "Inter", "Source Sans 3", system-ui, -apple-system, "Segoe UI", Helvetica, sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    padding: 0.55rem 0;
    color: rgba(250, 247, 240, 0.85);
    letter-spacing: 0.01em;
  }
  .menu1-category {
    font-family: "Inter", "Source Sans 3", system-ui, -apple-system, "Segoe UI", Helvetica, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #E8D3B3;
    padding: 1.25rem 0 0.25rem 0;
    display: block;
    text-align: center;
  }
  .link1:hover {
    background-color: rgba(250, 247, 240, 0.08);
  }
}
@media only screen and (max-width: 45rem) {
  body {
    padding: 0 1rem;
  }
  .page-hero, .hero-section, .split-section, .cards-section, .check-section,
  .faq-section, .timeline-section, .cta-section, .location-section,
  .herkenning-section, .diensten-section, .proces-section,
  .voor-wie-section, .over-mij-section, .rate-table-section,
  .pricing-section, .contact-section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin-left: 0;
    margin-right: 0;
  }
  .page-hero {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }
  .hero-section,
  .cards-section,
  .check-section,
  .faq-section,
  .timeline-section,
  .location-section,
  .cta-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .cards-grid.cards-grid-2,
  .cards-grid.cards-grid-3 {
    grid-template-columns: 1fr;
  }
  .check-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .contact-form-card {
    padding: 1.5rem 1.25rem;
  }
  .contact-info-card {
    padding: 1.75rem 1.25rem;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  .contact-info-item a {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .pricing-extras {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
    gap: 1rem;
  }
  .pricing-card {
    padding: 1.75rem 1.25rem;
  }
  .pricing-card-flag {
    right: 1rem;
  }
  .footer-flex-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-brand {
    grid-column: auto;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
  .hero-buttons,
  .page-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-submit {
    width: 100%;
    min-width: 0;
  }
  .rate-table-block {
    padding: 1.25rem;
  }
  .rate-table {
    font-size: 0.95rem;
  }
  .rate-table th, .rate-table td {
    padding: 0.7rem 0.5rem;
  }
  .rate-table td.rate-table-price {
    font-size: 1.15rem;
  }
  .prose-section {
    padding: 1.75rem 1.25rem;
  }
  .prose-section ol, .prose-section ul {
    padding-left: 1.25rem;
  }
  .timeline {
    padding-left: 0;
  }
  .timeline-item {
    padding-left: 2.25rem;
  }
  .timeline-marker {
    width: 1.25rem;
    height: 1.25rem;
  }
  .timeline::before {
    left: 0.5rem;
  }
  .steps-list li {
    padding-left: 3rem;
  }
  .steps-list li::before {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.1rem;
  }
  .travel-block h3 {
    font-size: 1.05rem;
    margin-top: 1.25rem;
  }
  .travel-block p {
    font-size: 0.95rem;
  }
  .quote-section {
    padding: 2rem 1rem;
  }
  header {
    padding: 0.9rem 1rem;
  }
  .koning-logo-website {
    max-height: 3.5rem;
  }
}
@media only screen and (max-width: 30rem) {
  .page-hero {
    padding: 1.75rem 1rem;
  }
  .page-hero h1 {
    font-size: 1.7rem;
  }
  .hero-text h1 {
    font-size: 1.7rem;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .contact-info-item {
    gap: 0.75rem;
  }
  .contact-info-icon {
    width: 2rem;
    height: 2rem;
    font-size: 0.9rem;
  }
  .steps-list li {
    padding-left: 2.75rem;
  }
  .steps-list li::before {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }
  .rate-table-block {
    padding: 1rem 0.75rem;
  }
  .rate-table {
    font-size: 0.9rem;
  }
  .rate-table th, .rate-table td {
    padding: 0.6rem 0.4rem;
  }
  .rate-table td.rate-table-price {
    font-size: 1rem;
  }
  .faq-item summary {
    padding: 0.85rem 0;
    padding-right: 1.75rem;
    font-size: 0.95rem;
  }
  .proces-step-number {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 26rem) {
  body {
    font-size: 1rem;
    padding: 0 0.75rem;
  }
  .section-wrapper {
    padding: 0 0.5rem;
  }
  header {
    padding: 0.75rem 0.75rem;
  }
  .koning-logo-website {
    max-height: 3rem;
  }
  .page-hero {
    padding: 1.5rem 1rem;
  }
  .contact-form-card, .contact-info-card {
    padding: 1.25rem 1rem;
  }
  .pricing-card {
    padding: 1.5rem 1rem;
  }
  .prose-section {
    padding: 1.5rem 1rem;
  }
  .cards-section,
  .check-section,
  .faq-section,
  .timeline-section,
  .location-section,
  .cta-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .pricing-card-flag {
    top: -0.65rem;
    right: 0.75rem;
    padding: 0.3rem 0.65rem;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }
}
