/*
Theme Name:  Boulangerie KRISS
Theme URI:   https://www.birdit.be
Author:      birdit.be
Author URI:  https://www.birdit.be
Description: Thème artisanal pour la Boulangerie Pâtisserie KRISS — Herseaux, Belgique.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kriss
Tags:        one-page, responsive, clean
*/

/* ═══════════════════════════════════════════════════════════
   BOULANGERIE KRISS — Modern Redesign
   ═══════════════════════════════════════════════════════════ */

/* ── Custom properties ──────────────────────────────────── */
:root {
  /* Colors */
  --clr-bg:          #F8F6F1;
  --clr-bg-alt:      #EDEAE4;
  --clr-surface:     #FFFFFF;
  --clr-border:      rgba(24, 21, 18, 0.1);
  --clr-gold:        #181512;
  --clr-gold-light:  #3D3A36;
  --clr-gold-dark:   #000000;
  --clr-cream:       #181512;
  --clr-cream-muted: #5C5650;
  --clr-white:       #FFFFFF;
  --clr-text:        #2A2520;
  --clr-text-muted:  #9A948E;
  --clr-closed:      #A83030;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  2rem;
  --sp-lg:  4rem;
  --sp-xl:  7rem;

  /* Layout */
  --container-max: 1200px;
  --container-pad: clamp(1.25rem, 5vw, 3rem);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur:  0.4s;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

button { cursor: pointer; font: inherit; border: none; background: none; }

input, textarea, select {
  font: inherit;
  color: inherit;
}

/* ── Utility ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--sp-xl);
}

.section--alt {
  background-color: var(--clr-bg-alt);
}

.section--dark {
  background-color: #181512;
}

/* Dark section overrides */
.section--dark .hours__note { color: rgba(248,246,241,0.55); }
.section--dark .hours__day  { color: #F8F6F1; }
.section--dark .hours__time { color: rgba(248,246,241,0.6); }
.section--dark .hours__time--closed { color: #A05050; }
.section--dark .hours__row--closed { opacity: 0.5; }
.section--dark .hours__table {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  box-shadow: none;
}
.section--dark .hours__row {
  border-bottom-color: rgba(255,255,255,0.08);
}
.section--dark .hours__row:hover:not(.hours__row--closed) {
  background: rgba(255,255,255,0.06);
}

/* ── Section headings ───────────────────────────────────── */
.section__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 0.75rem;
}

.section__eyebrow--light { color: rgba(248,246,241,0.55); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--clr-cream);
  margin-bottom: 1.5rem;
}

.section__title em {
  font-style: italic;
  color: var(--clr-gold);
}

.section__title--light { color: #F8F6F1; }

.section__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--sp-lg);
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 100px;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--clr-gold);
  color: var(--clr-white);
}

.btn--primary:hover {
  background: var(--clr-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(24, 21, 18, 0.18);
}

.btn--ghost {
  border: 1.5px solid rgba(24, 21, 18, 0.35);
  color: var(--clr-cream);
}

.btn--ghost:hover {
  border-color: var(--clr-cream);
  background: rgba(24, 21, 18, 0.05);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
}

.btn--full { width: 100%; justify-content: center; }

/* ── Reveal animation ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  padding-block: 1.25rem;
  transition: background var(--dur) var(--ease), padding var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

#site-header.scrolled {
  background: rgba(253, 250, 246, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-block: 0.85rem;
  box-shadow: 0 1px 0 var(--clr-border), 0 4px 24px rgba(0,0,0,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  transition: opacity var(--dur);
}

.nav__logo:hover { opacity: 0.65; }

.nav__logo-img {
  height: 44px;
  width: auto;
  mix-blend-mode: multiply;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

#site-header.scrolled .nav__logo-img {
  opacity: 1;
  transform: translateY(0);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-cream-muted);
  border-radius: 100px;
  transition: color var(--dur), background var(--dur);
}

.nav__link:hover, .nav__link.active {
  color: var(--clr-cream);
  background: rgba(0,0,0,0.05);
}

.nav__link--cta {
  background: var(--clr-gold);
  color: var(--clr-white) !important;
  border: 1px solid var(--clr-gold);
}

.nav__link--cta:hover {
  background: var(--clr-gold-light);
  border-color: var(--clr-gold-light);
  color: var(--clr-white) !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-cream);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur);
}

.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--clr-bg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgba(24,21,18,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(24, 21, 18, 0.04) 80px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(24, 21, 18, 0.04) 80px
    );
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: 8rem 6rem;
}

.hero__logo-wrap {
  margin-bottom: 2.5rem;
}

.hero__logo-img {
  width: clamp(280px, 55vw, 560px);
  max-width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  display: block;
  margin-inline: auto;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-cream-muted);
  border: 1px solid rgba(24, 21, 18, 0.2);
  border-radius: 100px;
  padding: 0.4rem 1.2rem;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  max-width: 540px;
  margin-inline: auto;
  font-size: 1.05rem;
  color: var(--clr-cream-muted);
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(24, 21, 18, 0.25);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero__scroll span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--clr-cream);
  border-radius: 2px;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   RIBBON
   ═══════════════════════════════════════════════════════════ */
.ribbon {
  overflow: hidden;
  border-block: 1px solid var(--clr-border);
  background: var(--clr-bg-alt);
  padding-block: 1rem;
}

.ribbon__track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: ribbonScroll 28s linear infinite;
  width: max-content;
}

.ribbon__track span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--clr-cream-muted);
  flex-shrink: 0;
}

.ribbon__sep {
  color: var(--clr-gold) !important;
  font-style: normal !important;
  opacity: 0.4;
}

@keyframes ribbonScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  background: var(--clr-surface);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__illustration {
  width: 70%;
  opacity: 0.9;
}

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--clr-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(24, 21, 18, 0.25);
}

.about__badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: #F8F6F1;
  line-height: 1;
}

.about__badge-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  color: rgba(248,246,241,0.75);
  padding-inline: 0.5rem;
}

.about__body {
  color: var(--clr-cream-muted);
  margin-bottom: 1rem;
  font-size: 0.975rem;
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.about__values li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about__values li i {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(24, 21, 18, 0.05);
  border: 1px solid rgba(24, 21, 18, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 0.875rem;
  margin-top: 2px;
}

.about__values li div {
  display: flex;
  flex-direction: column;
}

.about__values li strong {
  color: var(--clr-cream);
  font-size: 0.9rem;
  font-weight: 600;
}

.about__values li span {
  font-size: 0.825rem;
  color: var(--clr-text-muted);
}

/* ═══════════════════════════════════════════════════════════
   PRODUCTS
   ═══════════════════════════════════════════════════════════ */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform var(--dur) var(--ease), border-color var(--dur),
              box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 21, 18, 0.25);
  box-shadow: 0 12px 40px rgba(24, 21, 18, 0.1);
}

.product-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(24, 21, 18, 0.05);
  border: 1px solid rgba(24, 21, 18, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  margin-bottom: 0.5rem;
}

.product-card__icon svg,
.product-card__icon img {
  width: 30px;
  height: 30px;
}

.product-card__icon i {
  font-size: 1.2rem;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--clr-cream);
}

.product-card__desc {
  font-size: 0.875rem;
  color: var(--clr-cream-muted);
  line-height: 1.7;
  flex: 1;
}

.product-card--highlight {
  background: linear-gradient(135deg, rgba(24, 21, 18, 0.05), rgba(24, 21, 18, 0.02));
  border-color: rgba(24, 21, 18, 0.2);
}

.product-card--highlight .product-card__title { color: var(--clr-gold); }

.product-card--highlight .product-card__icon {
  background: rgba(24, 21, 18, 0.08);
  border-color: rgba(24, 21, 18, 0.18);
}

/* ═══════════════════════════════════════════════════════════
   NEWS
   ═══════════════════════════════════════════════════════════ */
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.news-card {
  display: flex;
  gap: 1.5rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: transform var(--dur) var(--ease), border-color var(--dur),
              box-shadow var(--dur) var(--ease);
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 21, 18, 0.2);
  box-shadow: 0 12px 40px rgba(24, 21, 18, 0.08);
}

.news-card__date {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: 0.25rem;
}

.news-card__day {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--clr-gold);
  line-height: 1;
}

.news-card__month {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.news-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--clr-cream);
  margin-bottom: 0.5rem;
}

.news-card__excerpt {
  font-size: 0.875rem;
  color: var(--clr-cream-muted);
  line-height: 1.7;
  flex: 1;
}

.news-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-cream);
  border: 1px solid rgba(24, 21, 18, 0.25);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  margin-top: 1rem;
  align-self: flex-start;
}

/* ═══════════════════════════════════════════════════════════
   HOURS
   ═══════════════════════════════════════════════════════════ */
.hours__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
}

.hours__note {
  color: var(--clr-cream-muted);
  font-size: 0.95rem;
  margin-top: 0.5rem;
  line-height: 1.7;
}

.hours__table {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(139,94,34,0.06);
}

.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--dur);
}

.hours__row:last-child { border-bottom: none; }

.hours__row:hover:not(.hours__row--closed) {
  background: rgba(139, 94, 34, 0.06);
}

.hours__row--closed { opacity: 0.5; }

.hours__day {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--clr-cream);
  letter-spacing: 0.02em;
}

.hours__time {
  font-size: 0.875rem;
  color: var(--clr-cream-muted);
}

.hours__time--closed {
  color: var(--clr-closed);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-lg);
  align-items: start;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact__details li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact__details li i {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(24, 21, 18, 0.06);
  border: 1px solid rgba(24, 21, 18, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 0.875rem;
  margin-top: 2px;
}

.contact__details li div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact__details li strong {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.contact__details li span,
.contact__details li a {
  font-size: 0.95rem;
  color: var(--clr-cream);
  line-height: 1.5;
}

.contact__details li a:hover { color: var(--clr-gold); }

.contact__form-wrap {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact__form .form__row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form__group:last-of-type { margin-bottom: 0; }

.form__group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.form__group input,
.form__group textarea {
  background: var(--clr-bg);
  border: 1.5px solid rgba(24, 21, 18, 0.18);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  color: var(--clr-cream);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--dur), box-shadow var(--dur);
  resize: vertical;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--clr-text-muted);
  opacity: 0.6;
}

.form__group input:focus,
.form__group textarea:focus {
  border-color: rgba(24, 21, 18, 0.5);
  box-shadow: 0 0 0 3px rgba(24, 21, 18, 0.06);
}

.contact__form .btn {
  margin-top: 1.5rem;
}

.form__success {
  font-size: 0.875rem;
  color: var(--clr-gold);
  text-align: center;
  min-height: 1.5rem;
  margin-top: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM 7 — overrides
   ═══════════════════════════════════════════════════════════ */
.contact__form-wrap .wpcf7 { margin: 0; }

.contact__form-wrap .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Labels */
.contact__form-wrap .wpcf7-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 0.4rem;
}

/* Inputs & textarea */
.contact__form-wrap .wpcf7-form input[type="text"],
.contact__form-wrap .wpcf7-form input[type="email"],
.contact__form-wrap .wpcf7-form input[type="tel"],
.contact__form-wrap .wpcf7-form textarea {
  width: 100%;
  background: var(--clr-bg);
  border: 1.5px solid rgba(24, 21, 18, 0.18);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  color: var(--clr-cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--dur), box-shadow var(--dur);
  resize: vertical;
  margin-bottom: 1.25rem;
}

.contact__form-wrap .wpcf7-form input::placeholder,
.contact__form-wrap .wpcf7-form textarea::placeholder {
  color: var(--clr-text-muted);
  opacity: 0.6;
}

.contact__form-wrap .wpcf7-form input:focus,
.contact__form-wrap .wpcf7-form textarea:focus {
  border-color: rgba(24, 21, 18, 0.5);
  box-shadow: 0 0 0 3px rgba(24, 21, 18, 0.06);
}

/* Validation errors */
.contact__form-wrap .wpcf7-not-valid {
  border-color: #B05050 !important;
}

.contact__form-wrap .wpcf7-not-valid-tip {
  font-size: 0.75rem;
  color: #B05050;
  margin-top: -1rem;
  margin-bottom: 0.75rem;
  display: block;
}

/* Submit button */
.contact__form-wrap .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 2rem;
  background: var(--clr-gold);
  color: var(--clr-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  margin-top: 0.5rem;
}

.contact__form-wrap .wpcf7-submit:hover {
  background: var(--clr-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(24, 21, 18, 0.18);
}

.contact__form-wrap .wpcf7-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Response messages */
.contact__form-wrap .wpcf7-response-output {
  font-size: 0.875rem;
  text-align: center;
  border: none !important;
  padding: 0.5rem 0 0 !important;
  margin: 0.5rem 0 0 !important;
}

.contact__form-wrap .wpcf7-mail-sent-ok {
  color: var(--clr-gold);
}

.contact__form-wrap .wpcf7-mail-sent-ng,
.contact__form-wrap .wpcf7-spam-blocked,
.contact__form-wrap .wpcf7-acceptance-missing {
  color: #B05050;
}

.contact__map {
  margin-top: var(--sp-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease) 0.2s, transform 0.7s var(--ease) 0.2s;
}

.contact__map.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact__map iframe {
  display: block;
  filter: grayscale(20%) contrast(95%);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
  padding-block-start: var(--sp-lg);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1.4fr;
  gap: var(--sp-lg);
  padding-bottom: var(--sp-lg);
}

.footer__brand p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  margin-top: 0.75rem;
  line-height: 1.7;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  font-size: 0.875rem;
  transition: color var(--dur), border-color var(--dur), background var(--dur);
}

.footer__social a:hover {
  color: var(--clr-cream);
  border-color: rgba(24, 21, 18, 0.4);
  background: rgba(24, 21, 18, 0.07);
}

.footer__nav h4,
.footer__contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-cream);
  margin-bottom: 1.25rem;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav ul li a {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  transition: color var(--dur);
}

.footer__nav ul li a:hover { color: var(--clr-cream); }

.footer__contact p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.footer__contact a {
  transition: color var(--dur);
}

.footer__contact a:hover { color: var(--clr-gold); }

.footer__bottom {
  border-top: 1px solid var(--clr-border);
  padding-block: 1.25rem;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

.footer__bottom a {
  color: var(--clr-gold);
  opacity: 0.8;
  transition: opacity var(--dur);
}

.footer__bottom a:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--clr-gold);
  color: #F8F6F1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(24, 21, 18, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--dur), transform var(--dur) var(--ease);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--clr-gold-light);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .news__grid     { grid-template-columns: 1fr 1fr; }
  .footer__inner  { grid-template-columns: 1fr 1fr; }
  .footer__brand  { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root {
    --sp-xl: 5rem;
    --sp-lg: 3rem;
  }

  .nav__links {
    position: fixed;
    inset-block: 0;
    inset-inline-end: 0;
    width: min(320px, 100vw);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    background: rgba(253, 250, 246, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--clr-border);
    box-shadow: -8px 0 40px rgba(0,0,0,0.1);
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform var(--dur) var(--ease);
    z-index: 999;
  }
  .nav__links.open  { transform: translateX(0); }
  .nav__link        { width: 100%; padding: 0.85rem 1.25rem; font-size: 1rem; }
  .nav__burger      { display: flex; z-index: 1001; }
  .hero__actions    { flex-direction: column; align-items: center; }
  .about__grid      { grid-template-columns: 1fr; }
  .about__visual    { max-width: 320px; margin-inline: auto; order: -1; }
  .about__badge     { right: 0; bottom: -1rem; }
  .products__grid   { grid-template-columns: 1fr; }
  .news__grid       { grid-template-columns: 1fr; }
  .hours__grid      { grid-template-columns: 1fr; }
  .contact__grid    { grid-template-columns: 1fr; }
  .contact__form .form__row--split { grid-template-columns: 1fr; gap: 0; }
  .footer__inner    { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__brand    { grid-column: auto; }
  .back-to-top      { bottom: 1.25rem; right: 1.25rem; }
}

@media (max-width: 480px) {
  .hero__subtitle    { font-size: 0.95rem; }
  .about__badge      { width: 100px; height: 100px; }
  .about__badge-num  { font-size: 1.8rem; }
}

/* ═══════════════════════════════════════════════════════════
   SINGLE POST
   ═══════════════════════════════════════════════════════════ */

/* ── Post Hero ──────────────────────────────────────────── */
.post-hero {
  position: relative;
  background: var(--clr-gold);
  padding-block: 5rem 3.5rem;
  overflow: hidden;
}

.post-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.post-hero__inner {
  position: relative;
  z-index: 1;
}

/* Breadcrumb */
.post-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-family: var(--font-body);
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.6);
}

.post-breadcrumb a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color var(--dur);
}

.post-breadcrumb a:hover { color: #fff; }
.post-breadcrumb span:last-child { color: rgba(255,255,255,0.5); }

/* Categories */
.post-hero__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.post-hero__cats .news-card__tag {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}

/* Title */
.post-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.18;
  color: #fff;
  max-width: 820px;
  margin-bottom: 1.5rem;
}

.post-hero__title em {
  font-style: italic;
}

/* Meta bar */
.post-hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-body);
}

.post-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.post-hero__meta-sep { opacity: 0.4; }

/* ── Featured image ─────────────────────────────────────── */
.post-thumbnail {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.post-thumbnail__img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 16px 60px rgba(24,21,18,0.15);
}

/* ── Post body layout ───────────────────────────────────── */
.post-body__inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--sp-lg);
  align-items: start;
}

/* ── Prose (article content) ────────────────────────────── */
.post-prose {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--clr-text);
}

.post-prose h2,
.post-prose h3,
.post-prose h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--clr-cream);
  margin-block: 2rem 0.75rem;
  line-height: 1.25;
}

.post-prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.post-prose h3 { font-size: 1.35rem; }
.post-prose h4 { font-size: 1.1rem; }

.post-prose p  { margin-bottom: 1.25rem; }

.post-prose a {
  color: var(--clr-gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-prose a:hover { color: var(--clr-gold); }

.post-prose strong { font-weight: 600; color: var(--clr-cream); }
.post-prose em     { font-style: italic; }

.post-prose blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--clr-gold);
  background: var(--clr-bg-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--clr-cream);
}

.post-prose blockquote p { margin: 0; }

.post-prose ul,
.post-prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.post-prose li { margin-bottom: 0.4rem; }

.post-prose img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-block: 1.5rem;
  display: block;
}

.post-prose hr {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin-block: 2.5rem;
}

.post-prose figure { margin-block: 1.5rem; }
.post-prose figcaption {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

/* ── Tags ───────────────────────────────────────────────── */
.post-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--clr-border);
}

.post-tags__label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-text-muted);
  margin-right: 0.25rem;
}

.post-tags__item {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.78rem;
  font-family: var(--font-body);
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: background var(--dur), color var(--dur);
}

.post-tags__item:hover {
  background: var(--clr-gold);
  color: #fff;
  border-color: var(--clr-gold);
}

/* ── Prev / Next navigation ─────────────────────────────── */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--clr-border);
}

.post-nav__link {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.25rem;
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--dur), border-color var(--dur), transform var(--dur);
}

.post-nav__link:hover {
  background: var(--clr-surface);
  border-color: rgba(24,21,18,0.25);
  transform: translateY(-2px);
}

.post-nav__link--right {
  text-align: right;
  align-items: flex-end;
}

.post-nav__dir {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-text-muted);
}

.post-nav__title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--clr-cream);
  line-height: 1.3;
}

/* ── Sidebar ────────────────────────────────────────────── */
.post-sidebar {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-sidebar__widget {
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.post-sidebar__heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--clr-cream);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--clr-border);
}

/* Related posts list */
.post-related {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-related__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.post-related__thumb {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
}

.post-related__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-related__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.post-related__title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-cream);
  text-decoration: none;
  line-height: 1.35;
  transition: color var(--dur);
}

.post-related__title:hover { color: var(--clr-gold-light); }

.post-related__date {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}

/* CTA widget */
.post-sidebar__cta {
  background: var(--clr-gold);
  border-color: transparent;
  text-align: center;
}

.post-sidebar__cta-text {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
  font-style: italic;
}

/* ── Single post responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .post-body__inner {
    grid-template-columns: 1fr;
  }

  .post-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 768px) {
  .post-hero { padding-block: 4rem 2.5rem; }

  .post-nav {
    grid-template-columns: 1fr;
  }

  .post-sidebar {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   PAGE 404
   ═══════════════════════════════════════════════════════════ */
/* ─────────────────────────────────────────────────────────
   404  — scoped to section.error404 to avoid targeting the
   WordPress body element which also receives class "error404"
   ───────────────────────────────────────────────────────── */
section.error404 {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #181512;
  overflow: hidden;
  text-align: center;
  padding-block: 6rem;
}

/* ── Background layers ──────────────────────────────────── */
section.error404 .error404__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Subtle radial glow at top */
section.error404 .error404__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 50% at 50% -5%, rgba(248,246,241,0.05) 0%, transparent 65%);
}

/* ── Falling breadcrumb particles ───────────────────────── */
.error404__crumbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.error404__crumbs span {
  position: absolute;
  top: -20px;
  border-radius: 50%;
  background: rgba(248, 246, 241, 0.08);
  animation: crumbFall linear infinite;
}

.error404__crumbs span:nth-child(1) { left:  8%; width:  8px; height:  8px; animation-duration:  7.0s; animation-delay: 0.0s; }
.error404__crumbs span:nth-child(2) { left: 18%; width:  5px; height:  5px; animation-duration:  9.5s; animation-delay: 1.2s; }
.error404__crumbs span:nth-child(3) { left: 32%; width: 11px; height: 11px; animation-duration:  6.5s; animation-delay: 0.5s; }
.error404__crumbs span:nth-child(4) { left: 48%; width:  6px; height:  6px; animation-duration: 11.0s; animation-delay: 2.1s; }
.error404__crumbs span:nth-child(5) { left: 62%; width:  9px; height:  9px; animation-duration:  8.0s; animation-delay: 0.8s; }
.error404__crumbs span:nth-child(6) { left: 74%; width:  4px; height:  4px; animation-duration: 10.5s; animation-delay: 3.0s; }
.error404__crumbs span:nth-child(7) { left: 85%; width:  7px; height:  7px; animation-duration:  7.5s; animation-delay: 1.6s; }
.error404__crumbs span:nth-child(8) { left: 55%; width:  5px; height:  5px; animation-duration: 12.0s; animation-delay: 4.0s; }
.error404__crumbs span:nth-child(9) { left: 92%; width:  8px; height:  8px; animation-duration:  9.0s; animation-delay: 2.5s; }

@keyframes crumbFall {
  0%   { transform: translateY(-20px) rotate(0deg);   opacity: 0;   }
  8%   { opacity: 1;                                                 }
  90%  { opacity: 0.5;                                               }
  100% { transform: translateY(110vh) rotate(360deg); opacity: 0;   }
}

/* ── Inner layout ───────────────────────────────────────── */
.error404__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

/* ── Big 404 visual ─────────────────────────────────────── */
.error404__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.error404__num {
  font-family: var(--font-display);
  font-size: clamp(7.5rem, 20vw, 15rem);
  font-weight: 300;
  line-height: 1;
  color: rgba(248, 246, 241, 0.1);
  letter-spacing: -0.04em;
  user-select: none;
}

.error404__num--left  { animation: numWobbleLeft  3.5s ease-in-out infinite; }
.error404__num--right { animation: numWobbleRight 3.5s ease-in-out infinite; animation-delay: 0.4s; }

@keyframes numWobbleLeft {
  0%, 100% { transform: rotate(0deg)  translateY(0);    }
  22%       { transform: rotate(-4deg) translateY(-8px); }
  44%       { transform: rotate(2deg)  translateY(5px);  }
  66%       { transform: rotate(-1deg) translateY(-3px); }
}

@keyframes numWobbleRight {
  0%, 100% { transform: rotate(0deg) translateY(0);    }
  22%       { transform: rotate(4deg) translateY(-8px); }
  44%       { transform: rotate(-2deg) translateY(5px); }
  66%       { transform: rotate(1deg) translateY(-3px); }
}

/* ── Croissant / wheat icon ─────────────────────────────── */
.error404__croissant {
  width: clamp(80px, 15vw, 145px);
  filter: drop-shadow(0 8px 32px rgba(248,246,241,0.08));
  animation: croissantDance 5s ease-in-out infinite;
}

.error404__croissant img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1) opacity(0.75);
}

@keyframes croissantDance {
  0%,  100% { transform: translateY(0)     rotate(-6deg); }
  25%        { transform: translateY(-20px) rotate( 5deg); }
  50%        { transform: translateY(-10px) rotate(-3deg); }
  75%        { transform: translateY(-20px) rotate( 7deg); }
}

/* ── Eyebrow ─────────────────────────────────────────────── */
.error404__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(248, 246, 241, 0.45);
  margin: 0;
}

/* ── Title ───────────────────────────────────────────────── */
.error404__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: #F8F6F1;
  line-height: 1.2;
  margin: 0;
}

.error404__title em {
  font-style: italic;
  color: rgba(248, 246, 241, 0.55);
}

/* ── Subtitle ────────────────────────────────────────────── */
.error404__subtitle {
  font-size: 1rem;
  color: rgba(248, 246, 241, 0.5);
  line-height: 1.8;
  max-width: 500px;
  margin: 0;
}

/* ── Fun breadcrumb trail ────────────────────────────────── */
.error404__lost {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 246, 241, 0.22);
  margin: 0;
}

/* ── Actions ─────────────────────────────────────────────── */
.error404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.error404__actions .btn--primary {
  background: #F8F6F1;
  color: #181512;
}

.error404__actions .btn--primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(248,246,241,0.12);
}

.error404__actions .btn--ghost {
  border-color: rgba(248, 246, 241, 0.25);
  color: rgba(248, 246, 241, 0.75);
}

.error404__actions .btn--ghost:hover {
  background: rgba(248, 246, 241, 0.07);
  border-color: rgba(248, 246, 241, 0.6);
  transform: translateY(-2px);
}

/* ── Search ──────────────────────────────────────────────── */
.error404__search {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 420px;
}

.error404__search-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 246, 241, 0.35);
  margin: 0;
}

section.error404 .search-form {
  display: flex;
  width: 100%;
  border-radius: 100px;
  overflow: hidden;
  border: 1.5px solid rgba(248, 246, 241, 0.14);
  transition: border-color var(--dur) var(--ease);
}

section.error404 .search-form:focus-within {
  border-color: rgba(248, 246, 241, 0.38);
}

section.error404 .search-form label { display: none; }

section.error404 .search-field {
  flex: 1;
  background: rgba(248, 246, 241, 0.06);
  border: none;
  padding: 0.8rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #F8F6F1;
  outline: none;
}

section.error404 .search-field::placeholder {
  color: rgba(248, 246, 241, 0.28);
}

section.error404 .search-submit {
  background: rgba(248, 246, 241, 0.08);
  border: none;
  padding: 0.8rem 1.25rem;
  color: rgba(248, 246, 241, 0.65);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--dur), color var(--dur);
  white-space: nowrap;
}

section.error404 .search-submit:hover {
  background: rgba(248, 246, 241, 0.18);
  color: #F8F6F1;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 480px) {
  .error404__actions  { flex-direction: column; align-items: center; }
  .error404__num      { font-size: 5.5rem; }
  .error404__croissant { width: 65px; }
}

