/* Merkkleuren: donkerbruin #473024, lichtbeige #ECC184 */

:root {
  --color-brown: #473024;
  --color-beige: #ecc184;
  --color-beige-soft: #f5e6cc;
  --color-white: #faf8f5;
  --color-text: #2a1c17;
  --color-text-muted: #5c4a42;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --shadow-soft: 0 18px 50px rgba(71, 48, 36, 0.12);
  --radius: 12px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-brown);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #5a3d2e;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.container.narrow {
  width: min(720px, 100% - 2.5rem);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(71, 48, 36, 0.08);
}

.header-inner {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-end {
  display: flex;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-left: auto;
}

.btn-header-bestellen {
  display: inline-block;
  flex-shrink: 0;
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  white-space: nowrap;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  background: var(--color-brown);
  color: var(--color-beige);
  box-shadow: 0 2px 12px rgba(71, 48, 36, 0.25);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-header-bestellen:hover {
  color: var(--color-beige);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(71, 48, 36, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.logo:hover .logo-img {
  opacity: 0.9;
}

.footer-logo-link {
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.footer-logo-link:hover .footer-logo-img {
  opacity: 0.92;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--color-brown);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.75rem;
}

.site-nav a {
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  color: var(--color-text);
}

.site-nav a:hover {
  color: var(--color-brown);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: var(--color-white);
    border-bottom: 1px solid rgba(71, 48, 36, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .site-nav.is-open {
    max-height: 520px;
  }

  .site-nav ul {
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.75rem;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Hero */

.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: grid;
  align-items: end;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(71, 48, 36, 0.28) 0%,
    rgba(71, 48, 36, 0.78) 100%
  );
}

.hero-content {
  position: relative;
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
  padding: 3rem 0 4.5rem;
  color: var(--color-beige-soft);
}

.hero-tagline {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--color-beige);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  max-width: 14ch;
  color: #fff;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  opacity: 0.95;
}

@media (min-width: 769px) {
  .hero-lead {
    max-width: none;
    white-space: nowrap;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 4.5vw, 3.85rem);
  }

  .hero-lead {
    font-size: 1.25rem;
  }

  .hero-content .btn-primary {
    padding: 1rem 2.1rem;
    font-size: 1.0625rem;
  }
}

@media (max-width: 768px) {
  .hero {
    align-items: center;
    justify-items: center;
    min-height: min(78vh, 640px);
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.25rem;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-lead {
    max-width: 28ch;
    margin-inline: auto;
  }
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-beige);
  color: var(--color-brown);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  color: var(--color-brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid var(--color-brown);
  background: transparent;
  color: var(--color-brown);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
  background: var(--color-brown);
  color: var(--color-beige);
}

/* High Tea landing page */

.page-hightea .hightea-feature .feature-image-wrap {
  height: clamp(380px, 48vw, 600px);
  max-height: 600px;
}

.page-hightea .hightea-feature .feature-image-wrap img {
  object-position: center center;
}

.page-hightea .hightea-feature .feature-text h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  color: var(--color-beige);
  margin: 0 0 1rem;
  line-height: 1.15;
}

.page-hightea .hightea-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-beige);
  opacity: 0.85;
}

.page-hightea .hightea-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.page-hightea .btn-secondary--light {
  border-color: var(--color-beige);
  color: var(--color-beige);
}

.page-hightea .btn-secondary--light:hover {
  background: var(--color-beige);
  color: var(--color-brown);
}

.page-hightea .hightea-content {
  background: linear-gradient(180deg, var(--color-beige-soft) 0%, var(--color-white) 45%);
}

.page-hightea .hightea-about {
  width: min(720px, 100%);
  margin: 0 auto 2.5rem;
  text-align: center;
}

.page-hightea .hightea-about h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--color-brown);
  margin: 0 0 1rem;
}

.page-hightea .hightea-about p {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
}

.page-hightea .hightea-about p:last-child {
  margin-bottom: 0;
}

.page-hightea .hightea-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .page-hightea .hightea-cards {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.page-hightea .hightea-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(71, 48, 36, 0.08);
}

.page-hightea .hightea-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-brown);
  margin: 0 0 0.75rem;
}

.page-hightea .hightea-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
}

.page-hightea .hightea-card a {
  font-weight: 600;
}

.page-hightea .hightea-card-note {
  margin-top: 0.85rem !important;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .page-hightea .hightea-feature .feature-inner {
    grid-template-columns: 1fr;
  }

  .page-hightea .hightea-feature .feature-image-wrap {
    order: -1;
    height: clamp(280px, 62vw, 420px);
  }

  .page-hightea .hightea-about {
    text-align: left;
  }
}

/* Sections */

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-welcome {
  background: var(--color-white);
}

.section-welcome h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--color-brown);
  margin: 0 0 1.25rem;
}

.section-welcome p {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--color-text);
  margin: 0 0 1rem;
}

.section-welcome p:last-child {
  margin-bottom: 0;
}

.section-split {
  background: linear-gradient(180deg, var(--color-beige-soft) 0%, #fff 60%);
}

.section-title {
  font-family: var(--font-display);
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--color-brown);
  margin: 0 0 0.5rem;
}

.section-subtitle {
  text-align: center;
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  color: var(--color-text-muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

@media (min-width: 1000px) {
  .cards-grid--menu {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .cards-grid--menu {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 599px) {
  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
}

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(71, 48, 36, 0.06);
}

.card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-brown);
  margin: 1.25rem 1.25rem 0.5rem;
}

.card p {
  margin: 0 1.25rem 0.75rem;
  font-size: 0.98rem;
  color: var(--color-text-muted);
}

.menu-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(71, 48, 36, 0.14);
}

.menu-card:hover h3 {
  color: var(--color-brown);
}

.menu-card:focus-visible {
  outline: 3px solid var(--color-beige);
  outline-offset: 4px;
}

.menu-card-cta {
  display: block;
  margin: 0 1.25rem 1.35rem;
  padding-top: 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-brown);
  border-top: 1px solid rgba(71, 48, 36, 0.12);
}

.menu-card:hover .menu-card-cta {
  color: #5a3d2e;
}

.menu-cards-note {
  margin: 2rem auto 0;
  max-width: 52ch;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.supplier-logos {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(1.75rem, 4vw, 2.25rem);
  border-top: 1px solid rgba(71, 48, 36, 0.12);
}

.supplier-logos-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 600;
  color: var(--color-brown);
  text-align: center;
  margin: 0 0 1.75rem;
}

.supplier-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2rem;
}

.supplier-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 87px;
  padding: 0.35rem 0.5rem;
}

.supplier-logo-cell img {
  display: block;
  max-height: 81px;
  width: auto;
  max-width: min(263px, 55vw);
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.supplier-logo-cell img:hover {
  opacity: 1;
}

.section-feature {
  padding: 0;
  background: var(--color-brown);
  color: var(--color-beige-soft);
}

.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  align-items: stretch;
}

@media (max-width: 768px) {
  .feature-inner {
    grid-template-columns: 1fr;
  }

  /* Zelfde ritme als sectie erboven: eerst foto, dan tekst */
  .feature-inner--image-right .feature-image-wrap {
    order: -1;
  }
}

.feature-image-wrap {
  overflow: hidden;
  align-self: center;
  width: 100%;
  height: clamp(374px, 46vw, 576px);
  max-height: 576px;
}

.feature-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

#sfeer .feature-image-wrap {
  height: clamp(412px, 50vw, 634px);
  max-height: 634px;
}

#sfeer .feature-image-wrap img {
  object-position: center bottom;
}

#bezorg-afhaal .feature-image-wrap img {
  object-position: center 60%;
}

.feature-text {
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.5vw, 2rem);
  color: var(--color-beige);
  margin: 0 0 1rem;
}

.feature-text p {
  margin: 0 0 1rem;
  opacity: 0.92;
}

.feature-text p:last-child {
  margin-bottom: 0;
}

.feature-highlight {
  margin-top: 1.5rem;
  padding: 1.15rem 1.35rem;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  border: 1px solid rgba(236, 193, 132, 0.35);
}

.feature-highlight h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--color-beige);
  margin: 0 0 0.6rem;
  font-weight: 600;
}

.feature-highlight p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.58;
  opacity: 0.95;
}

.section-hours {
  background: var(--color-beige-soft);
}

.hours-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 920px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .hours-two-col {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
    align-items: start;
  }
}

.hours-two-col .hours-block {
  max-width: none;
  margin-inline: 0;
}

.hours-block {
  text-align: center;
  max-width: 480px;
  margin-inline: auto;
}

.hours-block h2 {
  font-family: var(--font-display);
  color: var(--color-brown);
  font-size: clamp(1.75rem, 3vw, 2.1rem);
  margin: 0 0 1.5rem;
}

.hours-list {
  margin: 0;
  text-align: left;
  display: grid;
  gap: 0.85rem;
}

.hours-list > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(71, 48, 36, 0.12);
}

.hours-list dt {
  font-weight: 600;
  margin: 0;
}

.hours-list dd {
  margin: 0;
  font-variant-numeric: tabular-nums;
}

.section-contact-pair {
  background: #fff;
  border-top: 1px solid rgba(71, 48, 36, 0.08);
}

.contact-reserve-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 960px;
  margin-inline: auto;
}

@media (min-width: 800px) {
  .contact-reserve-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
    align-items: start;
  }

  .contact-pair-col--contact {
    padding-left: 2rem;
    border-left: 1px solid rgba(71, 48, 36, 0.12);
  }
}

.section-contact-pair .contact-pair-col h2 {
  font-family: var(--font-display);
  color: var(--color-brown);
  font-size: clamp(1.75rem, 3vw, 2.1rem);
  margin: 0 0 1rem;
}

.section-contact-pair #reserveren > p {
  margin: 0 0 0.75rem;
  color: var(--color-text);
  line-height: 1.65;
}

.section-contact-pair #reserveren > p:last-child {
  margin-bottom: 0;
}

.reserve-vandaag-note {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--color-text);
  line-height: 1.65;
}

.section-contact-pair #reserveren .reserve-vandaag-note {
  margin-bottom: 0;
}

.section-reviews {
  background: linear-gradient(180deg, var(--color-beige-soft) 0%, #fff 70%);
  border-top: 1px solid rgba(71, 48, 36, 0.08);
}

.reviews-heading {
  font-family: var(--font-display);
  color: var(--color-brown);
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  text-align: center;
  margin: 0 0 0.65rem;
}

.reviews-intro {
  text-align: center;
  max-width: 46ch;
  margin: 0 auto 2rem;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.review-card {
  margin: 0;
  padding: 1.5rem 1.35rem 1.4rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(71, 48, 36, 0.08);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.review-stars {
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: #c5a059;
  margin-bottom: 0.85rem;
  line-height: 1;
}

.review-text {
  margin: 0;
  flex: 1;
}

.review-text p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.58;
  color: var(--color-text);
}

.review-meta {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(71, 48, 36, 0.1);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.reviews-footer-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 0.25rem;
}

.reviews-outro {
  margin: 0 0 1.15rem;
  font-size: 0.98rem;
  color: var(--color-text-muted);
}

.btn-reviews-google {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 999px;
  text-decoration: none;
  background: var(--color-brown);
  color: var(--color-beige);
  box-shadow: 0 4px 20px rgba(71, 48, 36, 0.2);
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.btn-reviews-google:hover {
  color: var(--color-beige);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(71, 48, 36, 0.28);
}

.contact-inner {
  text-align: center;
}

.contact-details {
  font-style: normal;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.contact-details p {
  margin: 0;
}

.contact-details a {
  font-weight: 500;
}

.contact-map {
  margin-top: 1.5rem;
  width: 100%;
}

.contact-map iframe {
  width: 100%;
  display: block;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem 0.75rem;
  margin-top: 2rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-beige);
  background: var(--color-brown);
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(71, 48, 36, 0.2);
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.15s;
}

.social-btn:hover {
  color: var(--color-beige);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(71, 48, 36, 0.28);
}

.social-btn-icon {
  flex-shrink: 0;
}

/* Reserverings-widget (rechtsonder) */

.reserve-widget {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  max-width: calc(100vw - 2rem);
}

.reserve-widget-panel {
  width: min(100vw - 2rem, 380px);
  max-height: min(72vh, 560px);
  overflow-y: auto;
  padding: 1.25rem 1.25rem 1.35rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(71, 48, 36, 0.2);
  border: 1px solid rgba(71, 48, 36, 0.1);
  text-align: left;
}

.reserve-widget-panel[hidden] {
  display: none !important;
}

.reserve-widget-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 6px;
}

.reserve-widget-close:hover {
  background: rgba(71, 48, 36, 0.06);
  color: var(--color-brown);
}

.reserve-widget-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-brown);
  margin: 0 2rem 0.5rem 0;
}

.reserve-widget-lead,
.reserve-widget-panel .reserve-vandaag-note {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.reserve-widget-panel .reserve-vandaag-note {
  margin-bottom: 1rem;
}

.reserve-field--check {
  margin: 0.1rem 0;
}

.reserve-check-label {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brown);
  cursor: pointer;
  line-height: 1.4;
  margin-bottom: 0;
  white-space: nowrap;
}

.reserve-field label.reserve-check-label {
  display: flex;
}

.reserve-check-label input[type="checkbox"] {
  margin: 0;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  accent-color: var(--color-brown);
}

.reserve-check-label input[type="checkbox"]:focus {
  outline: 2px solid var(--color-beige);
  outline-offset: 2px;
  box-shadow: none;
}

.reserve-widget-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.reserve-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 0.35rem;
}

.reserve-req {
  color: #a94442;
}

.reserve-field--datum {
  display: flex;
  flex-direction: column;
}

.reserve-datum-error {
  display: none;
  order: 3;
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #a94442;
  line-height: 1.4;
}

.reserve-datum-error.is-visible {
  display: block;
}

.reserve-field--datum label {
  order: 1;
}

.reserve-field--datum input[type="date"] {
  order: 2;
}

.reserve-field-hint {
  margin: -0.1rem 0 0.45rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.reserve-field input:not([type="checkbox"]),
.reserve-field select,
.reserve-field textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid rgba(71, 48, 36, 0.2);
  border-radius: 8px;
  background: #fff;
}

.reserve-field input:not([type="checkbox"]):focus,
.reserve-field select:focus,
.reserve-field textarea:focus {
  outline: none;
  border-color: var(--color-brown);
  box-shadow: 0 0 0 3px rgba(236, 193, 132, 0.45);
}

.reserve-field--inline {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.reserve-field--inline > div {
  min-width: 0;
}

.reserve-field input[type="date"] {
  display: block;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.reserve-widget-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.reserve-widget-note a {
  font-weight: 600;
}

.reserve-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.reserve-widget-feedback {
  margin: 0 0 0.75rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.88rem;
  line-height: 1.45;
  border-radius: 8px;
  text-align: left;
}

.reserve-widget-feedback--success {
  background: rgba(46, 125, 50, 0.12);
  color: #1b5e20;
  border: 1px solid rgba(46, 125, 50, 0.35);
}

.reserve-widget-feedback--error {
  background: rgba(183, 28, 28, 0.1);
  color: #6d1b1b;
  border: 1px solid rgba(183, 28, 28, 0.35);
}

.reserve-widget-submit {
  margin-top: 0.25rem;
  padding: 0.75rem 1rem;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-beige);
  background: var(--color-brown);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(71, 48, 36, 0.22);
}

.reserve-widget-submit:hover {
  filter: brightness(1.05);
}

.reserve-widget-fab {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.45rem;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-beige);
  background: var(--color-brown);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(71, 48, 36, 0.35);
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.reserve-widget-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(71, 48, 36, 0.4);
}

.reserve-widget-fab[aria-expanded="true"] {
  background: #5a3d2e;
}

.reserve-widget-fab-icon {
  flex-shrink: 0;
}

/* Footer */

.site-footer {
  background: var(--color-brown);
  color: var(--color-beige);
  padding: 2rem 0;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  margin: 0;
}

.intro-hightea-link,
.reserve-hightea-link {
  font-size: 1.0625rem;
  line-height: 1.65;
}

.intro-hightea-link {
  margin: 0;
}

.reserve-hightea-link {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.footer-extra-link {
  color: inherit;
  opacity: 0.9;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-extra-link:hover {
  opacity: 1;
  color: var(--color-beige);
}

.footer-copy {
  margin: 0;
  opacity: 0.85;
}
