/* ════════════════════════════════════════════════════════════
   BALATON BOUTIQUE — Public site stylesheet
   Mobile-first · serif display + clean sans · krém / navy / arany
   ════════════════════════════════════════════════════════════ */

:root {
  /* ─── Színek (logó alapján) ─── */
  --c-navy:        #1f3a5f;
  --c-navy-dark:   #15293f;
  --c-navy-light:  #2a4d7a;
  --c-gold:        #c9a86b;
  --c-gold-dark:   #a78747;
  --c-gold-light:  #e8d5a8;
  --c-cream:       #f8f4ed;
  --c-cream-dark:  #ede4d2;
  --c-sand:        #faf6ee;
  --c-terracotta:  #b85c3c;
  --c-terracotta-dark: #913f24;
  --c-text:        #2a2724;
  --c-text-soft:   #6b6357;
  --c-text-muted:  #9a8f7d;
  --c-border:      #e6dccb;
  --c-border-soft: #f0e9d9;
  --c-bg:          #ffffff;
  --c-success:     #2d7a4f;
  --c-error:       #b85c3c;

  /* ─── Tipográfia ─── */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ─── Méretek ─── */
  --container:    1200px;
  --container-narrow: 760px;
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --shadow-sm:    0 1px 3px rgba(31, 58, 95, 0.06);
  --shadow:       0 4px 16px rgba(31, 58, 95, 0.08);
  --shadow-lg:    0 12px 40px rgba(31, 58, 95, 0.12);

  /* ─── Animációk ─── */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --transition:   200ms var(--ease);
}

/* ═══ RESET ════════════════════════════════════════════════ */

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font: inherit; color: inherit; }
a { color: var(--c-navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-terracotta); }
ul, ol { list-style: none; }

::selection { background: var(--c-gold-light); color: var(--c-navy-dark); }

/* ═══ TIPOGRÁFIA ═══════════════════════════════════════════ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--c-navy);
}

h1 { font-size: clamp(2rem, 5vw + 1rem, 3.75rem); font-weight: 500; }
h2 { font-size: clamp(1.6rem, 3vw + 1rem, 2.5rem); }
h3 { font-size: clamp(1.25rem, 1.5vw + 1rem, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1em; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-dark);
  margin-bottom: 0.75rem;
  display: inline-block;
}

/* ═══ LAYOUT ═══════════════════════════════════════════════ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
}

.container--narrow { max-width: var(--container-narrow); }

main { flex: 1; }

.section { padding: 3.5rem 0; }
.section--lg { padding: 5rem 0; }
@media (min-width: 768px) {
  .section { padding: 5rem 0; }
  .section--lg { padding: 7rem 0; }
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head p { color: var(--c-text-soft); font-size: 1.05rem; margin-bottom: 0; }

/* ═══ NAV / HEADER ═════════════════════════════════════════ */

.site-header {
  background: rgba(248, 244, 237, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  gap: 1rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.nav__logo:hover { transform: scale(1.03); }
.nav__logo img {
  height: 64px;
  width: auto;
  display: block;
}
@media (min-width: 768px) {
  .nav__logo img { height: 78px; }
}
@media (min-width: 1024px) {
  .nav__logo img { height: 88px; }
}

.nav__menu {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav__menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-text);
  position: relative;
  padding: 0.5rem 0;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--c-gold);
  transition: width var(--transition);
}
.nav__menu a:hover, .nav__menu a.active { color: var(--c-navy); }
.nav__menu a:hover::after, .nav__menu a.active::after { width: 100%; }

.nav__contact {
  display: none;
  align-items: center;
  gap: 0.4rem;
  background: var(--c-navy);
  color: white;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}
.nav__contact:hover { background: var(--c-navy-dark); color: white; }

.nav__toggle {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  color: var(--c-navy);
}
.nav__toggle svg { width: 24px; height: 24px; }

@media (min-width: 900px) {
  .nav__menu, .nav__contact { display: flex; }
  .nav__toggle { display: none; }
}

/* mobil drawer */
.nav__drawer {
  position: fixed;
  inset: 0;
  background: var(--c-cream);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 280ms var(--ease);
  overflow-y: auto;
}
.nav__drawer.is-open { transform: translateX(0); }
.nav__drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.nav__drawer-close { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.nav__drawer a {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  border-bottom: 1px solid var(--c-border-soft);
  color: var(--c-navy);
}

@media (min-width: 900px) {
  .nav__drawer { display: none; }
}

/* ═══ BUTTONS ══════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1.2;
}

.btn--primary { background: var(--c-navy); color: white; }
.btn--primary:hover { background: var(--c-navy-dark); color: white; transform: translateY(-1px); box-shadow: var(--shadow); }

.btn--accent { background: var(--c-terracotta); color: white; }
.btn--accent:hover { background: var(--c-terracotta-dark); color: white; transform: translateY(-1px); box-shadow: var(--shadow); }

.btn--gold { background: var(--c-gold); color: var(--c-navy-dark); }
.btn--gold:hover { background: var(--c-gold-dark); color: white; transform: translateY(-1px); box-shadow: var(--shadow); }

.btn--outline { background: transparent; color: var(--c-navy); border-color: var(--c-navy); }
.btn--outline:hover { background: var(--c-navy); color: white; }

.btn--ghost { background: transparent; color: var(--c-navy); }
.btn--ghost:hover { background: var(--c-cream-dark); color: var(--c-navy); }

.btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* ═══ HERO ═════════════════════════════════════════════════ */

.hero {
  position: relative;
  background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-sand) 100%);
  padding: 3rem 0 4rem;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .hero { padding: 5.5rem 0 6rem; min-height: 85vh; }
}

/* Hero háttérkép — alul lévő réteg, mély navy overlay-jel olvashatóságért */
.hero--with-image {
  background: var(--c-navy-dark);
}
.hero--with-image .hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero--with-image .hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(15, 31, 51, 0.78) 0%,
    rgba(31, 58, 95, 0.55) 45%,
    rgba(31, 58, 95, 0.20) 75%,
    rgba(31, 58, 95, 0.05) 100%
  );
}
.hero--with-image .hero__notice {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero--with-image h1 {
  color: white;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero--with-image h1 strong { color: var(--c-gold-light); }
.hero--with-image .hero__lead {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}
.hero--with-image .btn--ghost {
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.hero--with-image .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.hero__decoration {
  position: absolute;
  top: 50%;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c-gold-light) 0%, transparent 65%);
  opacity: 0.55;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}
.hero--with-image .hero__decoration { display: none; }

.hero__inner { position: relative; z-index: 2; max-width: 760px; }

.hero h1 {
  font-size: clamp(2.5rem, 6vw + 1rem, 4.5rem);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.hero h1 strong { font-weight: 600; font-style: normal; color: var(--c-gold-dark); }

.hero__lead {
  font-size: clamp(1.05rem, 1.2vw + 0.9rem, 1.35rem);
  color: var(--c-text-soft);
  margin-bottom: 2rem;
  max-width: 580px;
  line-height: 1.65;
}

.hero__actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.hero__notice {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--c-border);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: var(--c-text-soft);
  font-weight: 500;
}
.hero__notice-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-terracotta);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ═══ KATEGÓRIA KÁRTYÁK ════════════════════════════════════ */

.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (min-width: 900px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .category-grid { grid-template-columns: repeat(5, 1fr); }
}

.category-card {
  background: white;
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: white;
  border: 1px solid var(--c-border-soft);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 4 / 5;
  isolation: isolate;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: white;
}
.category-card:hover .category-card__bg { transform: scale(1.06); }

.category-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--c-cream-dark);
  transition: transform 600ms var(--ease);
  z-index: 0;
}
.category-card__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(15, 31, 51, 0.12) 0%,
    rgba(15, 31, 51, 0.42) 55%,
    rgba(15, 31, 51, 0.85) 100%);
}

.category-card__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.category-card__icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.8rem;
  background: rgba(255, 255, 255, 0.92);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}
.category-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
  display: block;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.category-card__count {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
}

/* fallback: ha nincs kép, klasszikus világos verzió */
.category-card--no-image { background: white; color: var(--c-navy); }
.category-card--no-image .category-card__bg { background: linear-gradient(135deg, var(--c-cream) 0%, var(--c-cream-dark) 100%); }
.category-card--no-image .category-card__bg::after { display: none; }
.category-card--no-image:hover { color: var(--c-navy); }
.category-card--no-image .category-card__name { color: var(--c-navy); text-shadow: none; }
.category-card--no-image .category-card__count { color: var(--c-text-muted); }
.category-card--no-image .category-card__icon { background: white; box-shadow: 0 2px 8px rgba(31, 58, 95, 0.1); }

/* ═══ TERMÉK KÁRTYÁK ═══════════════════════════════════════ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 700px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
@media (min-width: 1000px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-border-soft);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-border);
}

.product-card__image {
  position: relative;
  aspect-ratio: 1;
  background: var(--c-cream);
  overflow: hidden;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease);
}
.product-card:hover .product-card__image img { transform: scale(1.04); }

.product-card__badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 2;
}
.product-card__featured {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--c-gold);
  color: var(--c-navy-dark);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.product-card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--c-navy);
  line-height: 1.25;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__name:hover { color: var(--c-terracotta); }
.product-card__cat {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-card__price {
  margin-top: auto;
  padding-top: 0.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--c-navy);
}
.product-card__price-old {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--c-text-muted);
  text-decoration: line-through;
  font-weight: 400;
}

/* ═══ AVAILABILITY BADGE ═══════════════════════════════════ */

.avail {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
}
.avail::before { content: ''; width: 6px; height: 6px; border-radius: 50%; }

.avail--in-stock      { color: var(--c-success); }
.avail--in-stock::before    { background: var(--c-success); }
.avail--low-stock     { color: var(--c-gold-dark); }
.avail--low-stock::before   { background: var(--c-gold-dark); }
.avail--last-piece    { color: var(--c-terracotta); }
.avail--last-piece::before  { background: var(--c-terracotta); animation: pulse 2s infinite; }
.avail--on-request    { color: var(--c-text-soft); }
.avail--on-request::before  { background: var(--c-text-muted); }

.avail--lg { font-size: 0.88rem; padding: 0.45rem 1rem; }

/* ═══ FILTERS / TOOLBAR ═══════════════════════════════════ */

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  align-items: center;
}
.toolbar__chip {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--c-border);
  font-size: 0.85rem;
  color: var(--c-text-soft);
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.toolbar__chip:hover { border-color: var(--c-gold); color: var(--c-navy); }
.toolbar__chip.is-active {
  background: var(--c-navy);
  color: white;
  border-color: var(--c-navy);
}

.toolbar__count {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--c-text-muted);
}

/* ═══ TERMÉKOLDAL ══════════════════════════════════════════ */

.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 900px) {
  .product-detail { grid-template-columns: 1.1fr 1fr; gap: 3.5rem; }
}

.gallery__main {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  border: 1px solid var(--c-border-soft);
  margin-bottom: 0.75rem;
  position: relative;
}
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }

.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 0.5rem;
}
.gallery__thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background: white;
  padding: 0;
  transition: border-color var(--transition);
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb.is-active { border-color: var(--c-gold); }

.product-info__breadcrumb {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}
.product-info__breadcrumb a { color: var(--c-text-soft); }
.product-info__breadcrumb a:hover { color: var(--c-navy); }

.product-info h1 {
  font-size: clamp(1.8rem, 3vw + 1rem, 2.6rem);
  margin-bottom: 0.75rem;
}

.product-info__sku { font-size: 0.78rem; color: var(--c-text-muted); letter-spacing: 0.06em; margin-bottom: 1.5rem; }

.product-info__price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--c-navy);
  margin: 1rem 0 0.5rem;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.product-info__price-old {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--c-text-muted);
  text-decoration: line-through;
  font-weight: 400;
}
.product-info__sale {
  background: var(--c-terracotta);
  color: white;
  font-family: var(--font-body);
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.product-info__short {
  font-size: 1.05rem;
  color: var(--c-text-soft);
  line-height: 1.65;
  margin: 1.5rem 0;
}

.product-info__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2rem 0 1.5rem;
}
.product-info__cta .btn { flex: 1; min-width: 140px; }

.product-info__meta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-border-soft);
}
.product-info__meta dl {
  display: grid;
  grid-template-columns: minmax(120px, auto) 1fr;
  gap: 0.75rem 1.25rem;
  font-size: 0.95rem;
}
.product-info__meta dt { color: var(--c-text-muted); font-weight: 500; }
.product-info__meta dd { color: var(--c-text); }

.product-info__desc {
  margin-top: 2.5rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--c-text-soft);
}

/* ═══ KAPCSOLAT ŰRLAP ══════════════════════════════════════ */

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border-soft);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 700px) { .contact-form { padding: 2.5rem; } }

.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-size: 0.85rem;
  color: var(--c-text-soft);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="password"],
.field input[type="number"],
.field textarea,
.field select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: var(--c-cream);
  transition: border-color var(--transition), background var(--transition);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--c-gold);
  background: white;
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.55; }

.field--check { display: flex; align-items: flex-start; gap: 0.6rem; }
.field--check input { width: 18px; height: 18px; margin-top: 0.15rem; flex-shrink: 0; }
.field--check label { margin-bottom: 0; cursor: pointer; }

.field__hint { font-size: 0.78rem; color: var(--c-text-muted); margin-top: 0.3rem; }

/* ═══ FLASHES ══════════════════════════════════════════════ */

.flash {
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: 0.92rem;
  border-left: 4px solid;
}
.flash--success { background: #ecf7f0; color: var(--c-success); border-color: var(--c-success); }
.flash--error   { background: #fdf3ee; color: var(--c-terracotta); border-color: var(--c-terracotta); }
.flash--info    { background: #fdf8ec; color: var(--c-gold-dark); border-color: var(--c-gold); }

/* ═══ FOOTER ═══════════════════════════════════════════════ */

.site-footer {
  background: var(--c-navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 3.5rem 0 2rem;
  margin-top: 4rem;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

.site-footer h4 {
  color: white;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul li { margin-bottom: 0.55rem; }
.site-footer a { color: rgba(255, 255, 255, 0.75); }
.site-footer a:hover { color: var(--c-gold-light); }

.footer-brand img { height: 60px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255, 255, 255, 0.65); line-height: 1.6; max-width: 320px; }

.footer-contact a { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.6rem; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.65); }

/* ═══ COOKIE BANNER ════════════════════════════════════════ */

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: white;
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.88rem;
  max-width: 540px;
  margin-left: auto;
}
.cookie-banner.is-hidden { display: none; }
.cookie-banner__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cookie-banner__actions .btn { flex: 1; min-width: 100px; }

@media (min-width: 700px) {
  .cookie-banner {
    bottom: 1.5rem;
    right: 1.5rem;
    left: auto;
  }
}

/* ═══ EMPTY STATES ═════════════════════════════════════════ */

.empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--c-text-soft);
}
.empty-state__icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state h3 { color: var(--c-navy); margin-bottom: 0.5rem; }

/* ═══ PAGINATION ═══════════════════════════════════════════ */

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin: 2.5rem 0 1rem;
}
.pagination__item {
  min-width: 42px;
  height: 42px;
  padding: 0 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--c-border-soft);
  color: var(--c-text-soft);
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all var(--transition);
}
.pagination__item:hover { border-color: var(--c-gold); color: var(--c-navy); }
.pagination__item--active {
  background: var(--c-navy);
  color: white;
  border-color: var(--c-navy);
}
.pagination__item--active:hover { color: white; }

/* ═══ INFO STRIPE ══════════════════════════════════════════ */

.info-stripe {
  background: var(--c-cream-dark);
  padding: 2.5rem 0;
}
.info-stripe__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  text-align: center;
}
@media (min-width: 700px) {
  .info-stripe__inner { grid-template-columns: repeat(3, 1fr); text-align: left; }
}
.info-stripe__item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  padding: 0.5rem;
}
@media (min-width: 700px) {
  .info-stripe__item { align-items: flex-start; flex-direction: row; }
  .info-stripe__item-icon { font-size: 2rem; }
}
.info-stripe__item-icon { font-size: 2.2rem; }
.info-stripe__item h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.2rem; color: var(--c-navy); }
.info-stripe__item p { color: var(--c-text-soft); font-size: 0.9rem; margin-bottom: 0; }

/* ═══ ACCESSIBILITY ════════════════════════════════════════ */

:focus-visible {
  outline: 3px solid var(--c-gold);
  outline-offset: 2px;
  border-radius: 4px;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--c-navy);
  color: white;
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 999;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; color: white; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
