/* ==========================================================================
   HorecaZorg - stylesheet
   Sections: 1 tokens · 2 base · 3 layout · 4 buttons · 5 header · 6 footer
             7 home · 8 services · 9 about · 10 pricing · 11 contact
             12 responsive
   ========================================================================== */

/* 1. Design tokens
   ------------------------------------------------------------------------ */
:root {
  /* Brand */
  --blue: oklch(48% 0.18 258);
  --blue-light: oklch(70% 0.15 255);
  --blue-tint: oklch(93% 0.03 258);
  --blue-tint-text: oklch(38% 0.15 258);
  --blue-outline: oklch(80% 0.06 258);
  --on-blue: oklch(93% 0.02 258);

  /* Neutrals - light surfaces */
  --ink: oklch(18% 0.01 260);
  --ink-70: oklch(30% 0.01 260);
  --ink-65: oklch(35% 0.01 260);
  --ink-60: oklch(40% 0.01 260);
  --ink-55: oklch(45% 0.01 260);
  --ink-50: oklch(50% 0.01 260);
  --surface: oklch(97% 0.005 250);
  --surface-alt: oklch(93% 0.005 250);
  --border: oklch(90% 0.005 250);
  --border-strong: oklch(85% 0.005 250);
  --border-dashed: oklch(80% 0.01 250);
  --muted: oklch(55% 0.01 250);

  /* Neutrals - dark surfaces */
  --dark: oklch(14% 0.015 260);
  --darker: oklch(11% 0.015 260);
  --dark-border: oklch(20% 0.01 260);
  --on-dark: oklch(85% 0.005 250);
  --on-dark-soft: oklch(70% 0.01 250);
  --on-dark-mid: oklch(65% 0.01 250);
  --on-dark-quiet: oklch(55% 0.01 250);
  --on-dark-faint: oklch(45% 0.01 250);

  /* Type */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Shape */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-pill: 100px;

  /* Layout */
  --page-max: 1280px;
  --page-pad: 32px;
}

/* 2. Base
   ------------------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

img,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* 3. Layout primitives
   ------------------------------------------------------------------------ */
.section {
  padding: 100px var(--page-pad);
}

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

.section--white {
  background: #fff;
}

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

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

.container {
  max-width: var(--page-max);
  margin: 0 auto;
}

.container--narrow {
  max-width: 900px;
}

.container--text {
  max-width: 700px;
}

.container--process {
  max-width: 1100px;
}

.split {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}

.split__text {
  flex: 1 1 460px;
  min-width: 300px;
}

.split__media {
  flex: 1 1 420px;
  min-width: 300px;
}

.eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.eyebrow--on-dark {
  color: var(--blue-light);
}

.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

.display--xl {
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.1;
}

.display--lg {
  font-size: clamp(32px, 4vw, 48px);
}

.display--md {
  font-size: clamp(28px, 3.2vw, 40px);
}

.display--sm {
  font-size: clamp(26px, 3vw, 36px);
}

.display--on-dark {
  color: #fff;
}

.lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-60);
}

.media-frame {
  border-radius: 28px;
  overflow: hidden;
  background: var(--surface-alt);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame--hero {
  height: 420px;
}

.media-frame--about {
  height: 400px;
}

.media-frame--story {
  height: 380px;
}

/* Icon tiles used across services, values and cards */
.icon-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--blue-tint);
  color: var(--blue);
}

.icon-tile--lg {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
}

.icon-tile--md {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 20px;
}

.icon-tile--sm {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 18px;
}

/* Bulleted trust markers */
.dot-list {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dot-list--stacked {
  flex-direction: column;
  gap: 14px;
}

.dot-list__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-65);
}

.dot-list__item::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.dot-list--on-dark .dot-list__item {
  gap: 10px;
  font-size: 15px;
  font-weight: 400;
  color: var(--on-dark);
}

.dot-list--on-dark .dot-list__item::before {
  background: var(--blue-light);
}

.check-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-65);
}

.check-list__item::before {
  content: '✓';
  color: var(--blue);
  flex-shrink: 0;
}

/* 4. Buttons
   ------------------------------------------------------------------------ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 15px 30px;
  border: none;
  border-radius: var(--radius-pill);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.15s ease, background-color 0.15s ease;
}

.btn:hover {
  opacity: 0.88;
}

.btn--blue {
  background: var(--blue);
  color: #fff;
}

.btn--dark {
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  padding: 11px 22px;
  white-space: nowrap;
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-strong);
}

.btn--white {
  background: #fff;
  color: var(--blue);
  padding: 16px 34px;
}

.btn--white-outline {
  background: transparent;
  color: #fff;
  padding: 16px 34px;
  border: 1.5px solid var(--blue-outline);
}

.btn--light {
  background: var(--blue-light);
  color: var(--dark);
  font-size: 15px;
  padding: 13px 24px;
}

.btn--quiet {
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  padding: 13px 24px;
  border: 1.5px solid var(--border-strong);
}

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-row--center {
  justify-content: center;
}

.text-link {
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.text-link:hover {
  text-decoration: underline;
}

.text-link--on-dark {
  color: var(--blue-light);
}

/* 5. Header
   ------------------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(97% 0.005 250 / 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 16px var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--ink);
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
}

.brand__name em {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  color: var(--blue);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-65);
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--ink);
}

.main-nav a[aria-current='page'] {
  color: var(--ink);
  font-weight: 700;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 4px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--surface-alt);
  padding: 4px;
  border-radius: var(--radius-pill);
}

.lang-switch__btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 15px;
  border: none;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--ink-60);
  cursor: pointer;
}

.lang-switch__btn[aria-pressed='true'] {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
}

/* 6. Footer
   ------------------------------------------------------------------------ */
.site-footer {
  background: var(--darker);
  padding: 64px var(--page-pad) 36px;
}

.site-footer__top {
  max-width: var(--page-max);
  margin: 0 auto 40px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.site-footer__brand {
  flex: 1 1 260px;
  max-width: 320px;
}

.site-footer .brand {
  color: #fff;
  margin-bottom: 16px;
}

.site-footer .brand__name {
  font-size: 18px;
}

.site-footer .brand__name em {
  color: var(--blue-light);
}

.site-footer__tagline {
  font-size: 14px;
  line-height: 1.6;
  color: var(--on-dark-quiet);
}

.site-footer__heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
}

.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--on-dark-soft);
}

.site-footer__list a {
  color: var(--on-dark-soft);
  text-decoration: none;
}

.site-footer__list a:hover {
  color: #fff;
}

.site-footer__bottom {
  max-width: var(--page-max);
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--dark-border);
  font-size: 13px;
  color: var(--on-dark-faint);
}

/* 7. Home
   ------------------------------------------------------------------------ */
.hero {
  padding: 96px var(--page-pad) 88px;
}

.hero__text {
  flex: 1 1 480px;
  min-width: 300px;
}

.hero__badge {
  display: inline-block;
  background: var(--blue-tint);
  color: var(--blue-tint-text);
  font-size: 14px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.hero__title {
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-60);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero .btn-row {
  margin-bottom: 40px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.section-head__title {
  margin-bottom: 12px;
}

.section-head__intro {
  font-size: 17px;
  color: var(--ink-55);
  max-width: 520px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.card__title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card__text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-55);
}

.about-band .split__media {
  order: 2;
}

.about-band .split__text {
  order: 1;
}

.about-band__title {
  margin-bottom: 22px;
}

.about-band__text {
  color: var(--on-dark-soft);
  max-width: 520px;
  margin-bottom: 32px;
}

.about-band .dot-list {
  margin-bottom: 36px;
}

.cta-band {
  padding: 96px var(--page-pad);
  text-align: center;
}

.cta-band__title {
  margin-bottom: 16px;
}

.cta-band__text {
  font-size: 18px;
  color: var(--on-blue);
  margin-bottom: 36px;
}

.cta-band__title + .btn {
  margin-top: 20px;
}

/* 8. Services
   ------------------------------------------------------------------------ */
.page-head {
  padding: 80px var(--page-pad) 56px;
  text-align: center;
}

.page-head__title {
  margin-bottom: 18px;
}

.page-head__intro {
  font-size: 18px;
  color: var(--ink-55);
}

.service-list {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-row {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 34px;
}

.service-row__title {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-row__text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-55);
  max-width: 640px;
  margin-bottom: 14px;
}

/* 9. About
   ------------------------------------------------------------------------ */
.about-story__title {
  margin-bottom: 24px;
}

.about-story__text {
  max-width: 520px;
}

.values-title {
  margin-bottom: 44px;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.value-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-head {
  text-align: center;
  margin-bottom: 56px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-step__number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--blue-light);
  margin-bottom: 14px;
}

.process-step__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.process-step__text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--on-dark-mid);
}

/* 10. Pricing
   ------------------------------------------------------------------------ */
.pricing-head {
  padding: 80px var(--page-pad) 30px;
  text-align: center;
}

.pricing-section {
  padding: 50px var(--page-pad) 110px;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
}

.tier--featured {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.tier__flag {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--blue-light);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.tier__name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tier--featured .tier__name {
  margin-top: 12px;
}

.tier__desc {
  font-size: 15px;
  color: var(--ink-50);
  margin-bottom: 24px;
  min-height: 40px;
}

.tier--featured .tier__desc {
  color: var(--on-dark-mid);
}

.tier__price {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
}

.tier__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.tier__features li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-65);
}

.tier__features li::before {
  content: '✓';
  color: var(--blue);
  flex-shrink: 0;
}

.tier--featured .tier__features li {
  color: var(--on-dark);
}

.tier--featured .tier__features li::before {
  color: var(--blue-light);
}

.faq {
  max-width: 820px;
  margin: 0 auto;
}

.faq__title {
  margin-bottom: 44px;
  text-align: center;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item__trigger {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-item__sign {
  font-size: 20px;
  color: var(--blue);
  flex-shrink: 0;
}

.faq-item__sign::before {
  content: '+';
}

.faq-item__trigger[aria-expanded='true'] .faq-item__sign::before {
  content: '−';
}

.faq-item__panel {
  display: none;
  padding: 0 26px 22px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-55);
}

.faq-item__panel.is-open {
  display: block;
}

/* 11. Contact
   ------------------------------------------------------------------------ */
.contact-section {
  padding: 80px var(--page-pad) 110px;
}

.contact-layout {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.contact-main {
  flex: 1 1 480px;
  min-width: 300px;
}

.contact-main__title {
  margin-bottom: 16px;
}

.contact-main__subtitle {
  font-size: 17px;
  color: var(--ink-55);
  margin-bottom: 36px;
}

.contact-aside {
  flex: 1 1 340px;
  min-width: 280px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 480px;
}

.contact-form.is-hidden {
  display: none;
}

.field__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-70);
  margin-bottom: 7px;
}

.field__input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
}

.field__input:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px var(--blue-tint);
}

textarea.field__input {
  resize: vertical;
}

.field-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.field-row .field {
  flex: 1 1 200px;
}

.contact-form .btn {
  align-self: flex-start;
}

.contact-form .btn[disabled] {
  opacity: 0.6;
  cursor: progress;
}

/* Honeypot - kept out of sight and out of the tab order. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  font-size: 15px;
  color: oklch(48% 0.19 25);
  background: oklch(96% 0.03 25);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  max-width: 480px;
}

.form-error[hidden] {
  display: none;
}

.form-thanks {
  display: none;
  background: var(--blue-tint);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  max-width: 480px;
}

.form-thanks.is-visible {
  display: block;
}

.form-thanks__title {
  font-size: 18px;
  font-weight: 700;
  color: oklch(20% 0.1 258);
  margin-bottom: 6px;
}

.form-thanks__text {
  font-size: 15px;
  color: oklch(35% 0.08 258);
}

.contact-card {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 24px;
}

.contact-card__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 8px;
}

.contact-card__value {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}

.contact-card__value a {
  color: #fff;
  text-decoration: none;
}

.contact-card__value a:hover {
  text-decoration: underline;
}

.map-embed {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* 12. Responsive
   ------------------------------------------------------------------------ */
@media (max-width: 900px) {
  .split {
    gap: 40px;
  }

  .site-header__inner {
    gap: 14px;
  }

  .main-nav {
    gap: 20px;
    order: 3;
    width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --page-pad: 20px;
  }

  .section,
  .cta-band,
  .contact-section,
  .pricing-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .page-head,
  .pricing-head {
    padding-top: 56px;
  }

  .contact-layout,
  .split {
    gap: 40px;
  }

  .service-row {
    flex-direction: column;
    gap: 18px;
    padding: 28px 24px;
  }

  .card,
  .tier {
    padding: 28px 24px;
  }

  .media-frame--hero,
  .media-frame--about,
  .media-frame--story {
    height: 260px;
  }
}
