body {
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(243, 240, 231, 0.94);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(149, 167, 145, 0.18);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-m) 0;
  gap: var(--space-m);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-s);
}

.brand__logo img {
  display: block;
  height: 40px;
  width: auto;
}

@media (min-width: 768px) {
  .brand__logo img {
    height: 48px;
  }
}
/* Logo files live in assets/img/brand/logo.webp and assets/img/brand/logo.png. Use at least 320x320px transparent sources for crisp 40–48px header rendering. */

.nav-toggle {
  background: none;
  border: 1px solid rgba(149, 167, 145, 0.5);
  border-radius: var(--radius-s);
  padding: 0.5rem 0.6rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.nav-toggle__bar {
  width: 18px;
  height: 2px;
  background: var(--color-text);
  position: relative;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle__bar::before {
  top: -6px;
}

.nav-toggle__bar::after {
  top: 6px;
}

.nav-links { 
  display: none;
  flex-direction: column;
  gap: var(--space-s);
  padding: var(--space-s) 0;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.lang-switcher__btn {
  border: 1px solid rgba(149, 167, 145, 0.5);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-s);
  padding: 0.35rem 0.55rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--color-text);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.lang-switcher__btn:hover,
.lang-switcher__btn:focus-visible {
  outline: 2px solid var(--color-sage);
  outline-offset: 2px;
  border-color: var(--color-sage);
  color: var(--color-coffee);
}

.lang-switcher__btn--active {
  background: var(--color-sage);
  color: #fff;
  border-color: var(--color-sage);
}

@media (max-width: 540px) {
  .lang-switcher {
    gap: 0.25rem;
  }

  .lang-switcher__btn {
    padding: 0.3rem 0.5rem;
    font-size: 0.75rem;
  }
}

.nav-links a {
  font-weight: 600;
  font-family: 'Quicksand', system-ui, sans-serif;
}

.nav-links a.active {
  color: var(--color-sage);
}

.nav-links.is-open {
  display: flex;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-m);
  }
}

.hero {
  display: grid;
  gap: var(--space-l);
  align-items: center;
  grid-template-columns: 1fr;
  padding: var(--space-xl) 0 var(--space-l);
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}

.hero__eyebrow {
  font-weight: 600;
  color: var(--color-sage);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero__title {
  font-family: 'Quicksand', system-ui, sans-serif;
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--color-coffee);
  line-height: 1.2;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
}

.hero__media {
  min-height: 220px;
}

.section-alt {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: var(--space-l);
}

.footer {
  background: #fff;
  border-top: 1px solid rgba(149, 167, 145, 0.18);
  margin-top: auto;
}

.footer__inner {
  padding: var(--space-l) 0;
  display: grid;
  gap: var(--space-m);
  text-align: center;
}

.footer__brand {
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 700;
  color: var(--color-coffee);
}

.footer__details {
  display: grid;
  gap: 0.2rem;
  color: var(--color-text);
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: var(--space-s);
}

.order-layout {
  display: grid;
  gap: var(--space-m);
}

.order-panel {
  background: #fff;
  border: 1px solid rgba(119, 60, 43, 0.08);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
  padding: var(--space-m);
  display: grid;
  gap: var(--space-m);
}

@media (min-width: 768px) {
  .order-layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: var(--space-l);
  }
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
  }

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

  .footer__social {
    justify-content: flex-end;
  }
}
