/* ============================================
   KONDITER — Cake & Pastry Online Shop
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --cream: #f7efe2;
  --cream-light: #fdf8ef;
  --cream-dark: #efe3cc;
  --caramel: #c08552;
  --caramel-dark: #8b5a2b;
  --chocolate: #3d2817;
  --chocolate-soft: #5a3a25;
  --rose: #d4827a;
  --rose-soft: #e8b4a8;
  --gold: #b8893a;
  --ink: #2a1a10;
  --paper: #fbf6ec;
  --line: rgba(61, 40, 23, 0.15);

  --font-display: 'Playfair Display', serif;
  --font-script: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

/* Subtle paper-grain background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(192, 133, 82, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 130, 122, 0.04) 0%, transparent 50%);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--chocolate);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--caramel) 0%, var(--rose) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--cream-light);
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(192, 133, 82, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.brand-tag {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--caramel-dark);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--chocolate-soft);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--caramel);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--caramel-dark); }
.nav-links a:hover::after { width: 100%; }

.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 3px;
  background: var(--cream-light);
}

.lang-btn {
  background: none;
  border: none;
  padding: 0.4rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--chocolate-soft);
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s;
}

.lang-btn.active {
  background: var(--chocolate);
  color: var(--cream-light);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--chocolate);
  margin: 5px 0;
  transition: 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(232, 180, 168, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(192, 133, 82, 0.15) 0%, transparent 50%),
    var(--paper);
}

.hero-decor {
  position: absolute;
  pointer-events: none;
}

.hero-decor.circle-1 {
  top: 10%;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 130, 122, 0.15), rgba(192, 133, 82, 0.1));
  filter: blur(40px);
}

.hero-decor.circle-2 {
  bottom: 5%;
  left: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 137, 58, 0.2), transparent);
  filter: blur(30px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-script);
  font-style: italic;
  color: var(--caramel-dark);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--caramel);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  font-weight: 700;
  color: var(--chocolate);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: italic;
  color: var(--caramel-dark);
  font-size: 1.1em;
}

.hero p.lead {
  font-size: 1.1rem;
  color: var(--chocolate-soft);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 50px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--chocolate);
  color: var(--cream-light);
}

.btn-primary:hover {
  background: var(--caramel-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(61, 40, 23, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--chocolate);
  border-color: var(--chocolate);
}

.btn-ghost:hover {
  background: var(--chocolate);
  color: var(--cream-light);
}

/* Hero illustration — layered cake SVG */
.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cake-stage {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
}

.cake-stage svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 30px 40px rgba(61, 40, 23, 0.2));
}

.floating-tag {
  position: absolute;
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.7rem 1rem;
  box-shadow: 0 10px 30px rgba(61, 40, 23, 0.1);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  animation: float 4s ease-in-out infinite;
}

.floating-tag .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.tag-1 {
  top: 15%;
  left: -10%;
  animation-delay: 0s;
}

.tag-1 .icon { background: rgba(212, 130, 122, 0.2); }

.tag-2 {
  bottom: 20%;
  right: -8%;
  animation-delay: 1.5s;
}

.tag-2 .icon { background: rgba(184, 137, 58, 0.2); }

.tag-strong { font-weight: 600; color: var(--chocolate); }
.tag-soft { font-size: 0.72rem; color: var(--chocolate-soft); display: block; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================================
   SECTIONS — common
   ============================================ */
.section {
  padding: 6rem 2rem;
  position: relative;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--caramel-dark);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--chocolate);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.section-title em {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: italic;
  color: var(--caramel-dark);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--chocolate-soft);
  max-width: 620px;
  line-height: 1.7;
}

/* ============================================
   STATS — daily production report
   ============================================ */
.stats {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  position: relative;
}

.stats-header {
  text-align: center;
  margin-bottom: 4rem;
}

.stats-header .section-sub {
  margin: 1rem auto 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(61, 40, 23, 0.1);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at top right, rgba(192, 133, 82, 0.15), transparent 70%);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--chocolate);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-number sup {
  font-size: 1.2rem;
  color: var(--caramel-dark);
  vertical-align: super;
  margin-left: 4px;
}

.stat-label {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--caramel-dark);
  margin-bottom: 0.4rem;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--chocolate-soft);
  line-height: 1.5;
}

/* ============================================
   CATEGORIES — large product cards
   ============================================ */
.categories {
  background: var(--paper);
}

.categories-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cat-card {
  background: var(--cream-light);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s;
  cursor: pointer;
  border: 1px solid var(--line);
}

.cat-card:hover {
  transform: translateY(-8px);
}

.cat-illustration {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cat-card.cakes .cat-illustration {
  background: linear-gradient(135deg, #f5d6c8 0%, #e8b4a8 100%);
}

.cat-card.cupcakes .cat-illustration {
  background: linear-gradient(135deg, #f0e0c0 0%, #d4b483 100%);
}

.cat-card.cookies .cat-illustration {
  background: linear-gradient(135deg, #d9b48a 0%, #b8893a 100%);
}

.cat-illustration svg {
  width: 70%;
  height: 70%;
  filter: drop-shadow(0 12px 20px rgba(61, 40, 23, 0.2));
}

.cat-body {
  padding: 1.8rem 2rem 2.2rem;
}

.cat-count {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--caramel-dark);
  margin-bottom: 0.4rem;
}

.cat-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--chocolate);
  margin-bottom: 0.6rem;
}

.cat-desc {
  font-size: 0.92rem;
  color: var(--chocolate-soft);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.cat-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--caramel-dark);
  text-decoration: none;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s;
}

.cat-card:hover .cat-link { gap: 0.8rem; }

/* ============================================
   ABOUT / STORY
   ============================================ */
.about {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 50%, var(--paper) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose-soft) 0%, var(--caramel) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(61, 40, 23, 0.1) 0%, transparent 50%);
}

.about-visual svg {
  width: 75%;
  height: 75%;
  filter: drop-shadow(0 30px 40px rgba(61, 40, 23, 0.25));
  position: relative;
  z-index: 1;
}

.about-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--cream-light);
  border-radius: 20px;
  padding: 1rem 1.3rem;
  z-index: 2;
  box-shadow: 0 12px 30px rgba(61, 40, 23, 0.2);
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--chocolate);
  line-height: 1;
}

.about-badge-label {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--caramel-dark);
}

.about-text p {
  font-size: 1.05rem;
  color: var(--chocolate-soft);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.about-features {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.about-feature-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--chocolate);
  margin-bottom: 0.2rem;
}

.about-feature-text {
  font-size: 0.88rem;
  color: var(--chocolate-soft);
  line-height: 1.5;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  background: var(--chocolate);
  color: var(--cream-light);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(192, 133, 82, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.process .section-title { color: var(--cream-light); }
.process .section-eyebrow { color: var(--rose-soft); }
.process .section-sub { color: rgba(247, 239, 226, 0.8); }

.process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.process-header .section-sub {
  margin: 1rem auto 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-step {
  position: relative;
}

.process-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4rem;
  font-weight: 400;
  color: var(--caramel);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.process-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream-light);
  margin-bottom: 0.7rem;
}

.process-text {
  color: rgba(247, 239, 226, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--cream-light);
  padding: 5rem 2rem 2rem;
  position: relative;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247, 239, 226, 0.12);
}

.footer-brand .brand-mark {
  width: 50px;
  height: 50px;
}

.footer-brand .brand-name { color: var(--cream-light); }
.footer-brand-desc {
  margin-top: 1.2rem;
  color: rgba(247, 239, 226, 0.7);
  line-height: 1.7;
  font-size: 0.92rem;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--cream-light);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.7rem;
}

.footer-col a {
  color: rgba(247, 239, 226, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--rose-soft); }

.footer-contact-item {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(247, 239, 226, 0.8);
  line-height: 1.6;
}

.footer-contact-label {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--rose-soft);
  display: block;
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.footer-contact-item a { color: inherit; text-decoration: none; }
.footer-contact-item a:hover { color: var(--rose-soft); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(247, 239, 226, 0.5);
}

.footer-bottom a {
  color: rgba(247, 239, 226, 0.5);
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--rose-soft); }

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ============================================
   PAGE — generic content (Privacy, Terms, etc.)
   ============================================ */
.page-hero {
  padding: 5rem 2rem 3rem;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(232, 180, 168, 0.2) 0%, transparent 60%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--chocolate);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.page-hero h1 em {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: italic;
  color: var(--caramel-dark);
}

.page-hero p {
  color: var(--chocolate-soft);
  font-size: 1.05rem;
}

.page-hero .breadcrumb {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--caramel-dark);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.page-hero .breadcrumb a {
  color: var(--caramel-dark);
  text-decoration: none;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.legal-content .meta {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--caramel-dark);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--chocolate);
  margin-top: 1.8rem;
  margin-bottom: 0.7rem;
}

.legal-content p {
  color: var(--chocolate-soft);
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1rem;
}

.legal-content ul, .legal-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--chocolate-soft);
  line-height: 1.8;
}

.legal-content li { margin-bottom: 0.5rem; }

.legal-content a {
  color: var(--caramel-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content strong {
  color: var(--chocolate);
  font-weight: 600;
}

/* Contact page */
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.5rem;
}

.contact-info-card h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--chocolate);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-item-label {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--caramel-dark);
  margin-bottom: 2px;
}

.contact-item-value {
  font-size: 0.98rem;
  color: var(--chocolate);
  line-height: 1.5;
  word-break: break-word;
}

.contact-item-value a {
  color: var(--chocolate);
  text-decoration: none;
}

.contact-item-value a:hover {
  color: var(--caramel-dark);
}

.contact-form {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.5rem;
}

.contact-form h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--chocolate);
  margin-bottom: 0.5rem;
}

.contact-form-sub {
  color: var(--chocolate-soft);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.field {
  margin-bottom: 1.3rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--chocolate);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--chocolate);
  transition: border-color 0.3s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--caramel);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--chocolate-soft);
}

.form-note a { color: var(--caramel-dark); }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.3rem 1.5rem;
  box-shadow: 0 20px 40px rgba(61, 40, 23, 0.2);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  transform: translateY(150%);
  transition: transform 0.5s;
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner p {
  flex: 1;
  font-size: 0.88rem;
  color: var(--chocolate-soft);
  line-height: 1.5;
  min-width: 250px;
}

.cookie-banner p a { color: var(--caramel-dark); }

.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
}

.cookie-btn {
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid var(--chocolate);
  background: transparent;
  color: var(--chocolate);
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
}

.cookie-btn.primary {
  background: var(--chocolate);
  color: var(--cream-light);
}

.cookie-btn:hover { transform: translateY(-1px); }

/* ============================================
   ANIMATIONS — page entrance
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

/* Language visibility helpers */
[data-lang="en"] { display: none; }
body.lang-en [data-lang="ua"] { display: none; }
body.lang-en [data-lang="en"] { display: inline; }
body.lang-en p[data-lang="en"],
body.lang-en h1[data-lang="en"],
body.lang-en h2[data-lang="en"],
body.lang-en h3[data-lang="en"],
body.lang-en h4[data-lang="en"],
body.lang-en div[data-lang="en"],
body.lang-en span[data-lang="en"],
body.lang-en li[data-lang="en"],
body.lang-en em[data-lang="en"],
body.lang-en a[data-lang="en"],
body.lang-en strong[data-lang="en"],
body.lang-en small[data-lang="en"],
body.lang-en label[data-lang="en"],
body.lang-en button[data-lang="en"] { display: revert; }

/* ============================================
   RESPONSIVE — mobile
   ============================================ */
@media (max-width: 968px) {
  .nav-inner { padding: 1rem 1.2rem; }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--cream-light);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-150%);
    transition: transform 0.4s;
    box-shadow: 0 20px 30px rgba(61, 40, 23, 0.1);
  }

  .nav-links.open { transform: translateY(0); }

  .menu-toggle { display: block; order: 3; }

  .lang-switch { order: 2; }

  .hero { padding: 3rem 1.2rem; min-height: auto; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-eyebrow { justify-content: center; display: inline-flex; }

  .hero p.lead { margin-left: auto; margin-right: auto; }

  .hero-cta { justify-content: center; }

  .cake-stage { max-width: 320px; margin: 0 auto; }

  .floating-tag { font-size: 0.78rem; padding: 0.55rem 0.8rem; }

  .section { padding: 4rem 1.2rem; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .cat-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .cat-illustration { height: 220px; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }

  .about-features { grid-template-columns: 1fr; }

  .process-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .footer { padding: 4rem 1.2rem 2rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.2rem 4rem;
  }

  .contact-info-card, .contact-form { padding: 1.8rem; }

  .legal-content { padding: 2.5rem 1.2rem 4rem; }

  .stat-number { font-size: 2.4rem; }

  .cookie-banner {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    padding: 1rem 1.2rem;
  }

  .cookie-banner-actions { width: 100%; justify-content: stretch; }
  .cookie-btn { flex: 1; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 2rem; }
  .brand-name { font-size: 1.2rem; }
  .brand-tag { font-size: 0.75rem; }
  .footer-legal-links { gap: 1rem; }
}
