/* ============================================
   Baklava Atolyesi — Culinary Kitchen Style
   Warm parchment, honey gold, pistachio,
   handcrafted recipe-card aesthetic
   ============================================ */

:root {
  /* --- Culinary palette --- */
  --parchment:       #FBF5EB;
  --parchment-dark:  #F2E8D5;
  --paper:           #FFFDF8;
  --honey:           #C8922A;
  --honey-light:     #E0B85C;
  --honey-dark:      #9A6F1C;
  --syrup:           #A0652A;
  --pastry:          #D4A96A;
  --pistachio:       #6B8C42;
  --pistachio-light: #8FAD62;
  --walnut:          #5C3D2E;
  --charcoal:        #3B302B;
  --charcoal-light:  #6B5E56;
  --warm-white:      #FFFCF5;
  --border:          #E5D9C8;
  --border-light:    #F0E6D6;
  --error:           #B5403A;
  --success:         #5B7F3B;

  /* --- Gradients --- */
  --honey-gradient:   linear-gradient(135deg, #C8922A 0%, #E0B85C 50%, #D4A96A 100%);
  --warm-gradient:    linear-gradient(170deg, #F2E8D5 0%, #FBF5EB 40%, #FFFDF8 100%);
  --syrup-line:       linear-gradient(90deg, transparent 0%, #C8922A 15%, #D4A96A 50%, #C8922A 85%, transparent 100%);

  /* --- Typography --- */
  --font-body:    'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: Georgia, 'Times New Roman', 'Palatino Linotype', serif;

  /* --- Shadows --- */
  --shadow-sm:    0 1px 4px rgba(59,48,43,0.06);
  --shadow-md:    0 3px 12px rgba(59,48,43,0.08);
  --shadow-lg:    0 8px 28px rgba(59,48,43,0.12);
  --shadow-warm:  0 4px 16px rgba(200,146,42,0.12);

  /* --- Layout --- */
  --max-w:   1100px;
  --radius:  6px;
  --radius-lg: 10px;
  --speed:   0.25s;
}


/* =============================================
   RESET & BASE
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.78;
  color: var(--charcoal);
  background: var(--parchment);
  /* subtle parchment texture */
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(212,169,106,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200,146,42,0.04) 0%, transparent 50%);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--honey-dark); text-decoration: none; transition: color var(--speed); }
a:hover { color: var(--syrup); }
ul, ol { padding-left: 1.4em; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--walnut);
  line-height: 1.3;
  font-weight: 700;
}
h1 { font-size: 2.3rem; margin-bottom: 0.9rem; }
h2 { font-size: 1.7rem; margin-bottom: 0.75rem; margin-top: 2.2rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; margin-top: 1.6rem; }
p  { margin-bottom: 1rem; }

strong { color: var(--walnut); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }


/* =============================================
   DECORATIVE DIVIDER (syrup line)
   ============================================= */

.copper-divider {
  height: 2px;
  border: none;
  background: var(--syrup-line);
  margin: 2.5rem 0;
  position: relative;
}
.copper-divider::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--honey);
  border-radius: 50%;
  border: 2px solid var(--parchment);
}


/* =============================================
   HEADER
   ============================================= */

.site-header {
  background: var(--warm-white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(59,48,43,0.05);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
}
.site-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
}
.site-logo a {
  color: var(--walnut);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color var(--speed);
}
.site-logo a:hover { color: var(--honey-dark); }

/* nav */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 0.15rem;
  padding: 0;
  flex-wrap: wrap;
}
.main-nav a {
  display: block;
  padding: 0.4rem 0.7rem;
  font-size: 0.9rem;
  color: var(--charcoal-light);
  border-radius: var(--radius);
  transition: background var(--speed), color var(--speed);
  position: relative;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--honey-dark);
  background: var(--parchment-dark);
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 25%;
  right: 25%;
  height: 2px;
  background: var(--honey);
  border-radius: 1px;
}

/* mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--honey);
  border-radius: var(--radius);
  padding: 0.35rem 0.55rem;
  cursor: pointer;
  color: var(--honey-dark);
  font-size: 1.25rem;
  line-height: 1;
}


/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  background: var(--warm-gradient);
  padding: 3.5rem 0 3rem;
  overflow: hidden;
  border-bottom: 2px solid var(--border-light);
}
/* subtle warm glow */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -8%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(200,146,42,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(107,140,66,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-text h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  color: var(--walnut);
}
.hero-text h1 span {
  color: var(--honey-dark);
  font-style: italic;
}
.hero-text p {
  font-size: 1.08rem;
  color: var(--charcoal-light);
  margin-bottom: 1.6rem;
}
.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--border-light);
}

/* CTA button */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: var(--honey);
  color: var(--warm-white);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--speed), transform var(--speed), box-shadow var(--speed);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(200,146,42,0.2);
}
.btn:hover {
  background: var(--honey-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-warm);
  color: var(--warm-white);
}


/* =============================================
   TIMELINE (recipe-step cards)
   ============================================= */

.timeline-section {
  padding: 3rem 0;
}
.timeline-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--walnut);
}
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 1.2rem;
  position: relative;
}
/* connecting line */
.timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--syrup-line);
  z-index: 0;
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.timeline-step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--honey);
  color: var(--warm-white);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  box-shadow: 0 3px 10px rgba(200,146,42,0.25);
  border: 3px solid var(--parchment);
}
.timeline-step h3 {
  font-size: 0.98rem;
  margin-top: 0;
  margin-bottom: 0.3rem;
  color: var(--walnut);
}
.timeline-step p {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  line-height: 1.5;
}


/* =============================================
   CONTENT PAGES
   ============================================= */

.page-content {
  padding: 2rem 0 3rem;
}
.page-content h1 {
  margin-bottom: 1.3rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--border-light);
}
.page-content h2:first-of-type {
  margin-top: 0.8rem;
}
.content-body {
  max-width: 780px;
  margin: 0 auto;
}
.content-body ul,
.content-body ol {
  margin-bottom: 1.1rem;
}
.content-body li {
  margin-bottom: 0.35rem;
}
.content-body li::marker {
  color: var(--honey);
}


/* =============================================
   RECIPE-STYLE CARDS (Teknik / Dikkat / Alternatif)
   ============================================= */

.card {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid var(--border);
  border-left: 4px solid var(--border);
  position: relative;
  transition: box-shadow var(--speed);
}
.card:hover {
  box-shadow: var(--shadow-md);
}
.card h3 {
  margin-top: 0;
  font-size: 1.12rem;
}

/* Teknik Notu — honey */
.card--teknik {
  border-left-color: var(--honey);
  background: linear-gradient(135deg, var(--warm-white) 0%, rgba(200,146,42,0.04) 100%);
}
/* Dikkat — warm red */
.card--dikkat {
  border-left-color: var(--error);
  background: linear-gradient(135deg, var(--warm-white) 0%, rgba(181,64,58,0.03) 100%);
}
/* Alternatif — pistachio */
.card--alternatif {
  border-left-color: var(--pistachio);
  background: linear-gradient(135deg, var(--warm-white) 0%, rgba(107,140,66,0.04) 100%);
}

.card-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.15rem 0.55rem;
  border-radius: 3px;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}
.card--teknik .card-label  { background: rgba(200,146,42,0.12); color: var(--honey-dark); }
.card--dikkat .card-label  { background: rgba(181,64,58,0.10); color: var(--error); }
.card--alternatif .card-label { background: rgba(107,140,66,0.12); color: var(--pistachio); }


/* =============================================
   LINK CARDS (homepage grid)
   ============================================= */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.3rem;
  margin: 1.8rem 0;
}
.link-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow var(--speed), transform var(--speed), border-color var(--speed);
  text-decoration: none;
  color: var(--charcoal);
  display: block;
  position: relative;
  overflow: hidden;
}
/* warm accent bar at top */
.link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--honey);
  opacity: 0;
  transition: opacity var(--speed);
}
.link-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--honey-light);
  color: var(--charcoal);
}
.link-card:hover::before {
  opacity: 1;
}
.link-card h3 {
  margin-top: 0;
  color: var(--walnut);
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
}
.link-card p {
  font-size: 0.88rem;
  color: var(--charcoal-light);
  margin-bottom: 0;
  line-height: 1.6;
}


/* =============================================
   BREADCRUMBS
   ============================================= */

.breadcrumb {
  padding: 0.9rem 0 0;
}
.breadcrumb-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0;
  font-size: 0.84rem;
}
.breadcrumb li::after {
  content: '/';
  margin-left: 0.45rem;
  color: var(--pastry);
  font-weight: 300;
}
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb a { color: var(--honey-dark); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li:last-child { color: var(--charcoal-light); }


/* =============================================
   CONTENT IMAGES
   ============================================= */

.content-image {
  margin: 1.8rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.content-image img {
  width: 100%;
  display: block;
}


/* =============================================
   TEXT + IMAGE SIDE-BY-SIDE
   ============================================= */

.text-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin: 1.8rem 0;
}
.text-with-image--reverse {
  direction: rtl;
}
.text-with-image--reverse > * {
  direction: ltr;
}
.text-with-image .text-side p:first-child {
  margin-top: 0;
}
.text-with-image .image-side {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.text-with-image .image-side img {
  width: 100%;
  display: block;
}

@media (max-width: 680px) {
  .text-with-image {
    grid-template-columns: 1fr;
  }
  .text-with-image--reverse {
    direction: ltr;
  }
}


/* =============================================
   CONTACT FORM
   ============================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 1.5rem;
}
.contact-info h3 { margin-top: 0; }
.contact-info-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  align-items: flex-start;
}
.contact-info-item .icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--honey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-white);
  font-size: 0.95rem;
}
.contact-form-wrapper {
  background: var(--warm-white);
  padding: 1.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.form-group {
  margin-bottom: 1.1rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.3rem;
  color: var(--charcoal);
}
.form-group label .required {
  color: var(--error);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--charcoal);
  background: var(--parchment);
  transition: border-color var(--speed), box-shadow var(--speed);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--honey);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.10);
  background: var(--warm-white);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}
.form-check input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: var(--honey);
  width: 17px;
  height: 17px;
}
.form-check label {
  font-size: 0.85rem;
  line-height: 1.5;
}

.form-message {
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  display: none;
}
.form-message--success {
  background: rgba(91,127,59,0.08);
  color: var(--success);
  border: 1px solid rgba(91,127,59,0.2);
}
.form-message--error {
  background: rgba(181,64,58,0.06);
  color: var(--error);
  border: 1px solid rgba(181,64,58,0.15);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}


/* =============================================
   COOKIE BANNER
   ============================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--warm-white);
  box-shadow: 0 -3px 16px rgba(59,48,43,0.10);
  z-index: 9999;
  padding: 1.3rem 1.5rem;
  display: none;
  border-top: 2px solid var(--border);
}
.cookie-banner.is-visible { display: block; }
.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.3rem;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 260px;
  font-size: 0.88rem;
  color: var(--charcoal-light);
}
.cookie-text a { text-decoration: underline; color: var(--honey-dark); }
.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--honey);
  transition: background var(--speed), color var(--speed);
  font-family: var(--font-body);
}
/* all three buttons equal */
.cookie-btn--accept,
.cookie-btn--reject,
.cookie-btn--settings {
  background: transparent;
  color: var(--honey-dark);
}
.cookie-btn--accept:hover,
.cookie-btn--reject:hover,
.cookie-btn--settings:hover {
  background: rgba(200,146,42,0.08);
}

/* settings panel */
.cookie-settings {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  width: 100%;
}
.cookie-settings.is-open { display: block; }
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
}
.cookie-category:last-of-type { border-bottom: none; }
.cookie-category-info h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  margin-bottom: 0.1rem;
  color: var(--charcoal);
}
.cookie-category-info p {
  font-size: 0.78rem;
  color: var(--charcoal-light);
  margin: 0;
}

/* toggle switch */
.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle .slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--speed);
}
.cookie-toggle .slider::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: var(--warm-white);
  border-radius: 50%;
  transition: transform var(--speed);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.cookie-toggle input:checked + .slider { background: var(--honey); }
.cookie-toggle input:checked + .slider::after { transform: translateX(20px); }
.cookie-toggle input:disabled + .slider { opacity: 0.6; cursor: not-allowed; }

.cookie-save-btn {
  margin-top: 0.8rem;
  padding: 0.45rem 1.3rem;
  background: var(--honey);
  color: var(--warm-white);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.85rem;
  font-family: var(--font-body);
  transition: background var(--speed);
}
.cookie-save-btn:hover { background: var(--honey-dark); }

.cookie-reopen-btn {
  display: inline-block;
  padding: 0.6rem 1.3rem;
  background: var(--honey);
  color: var(--warm-white);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: var(--font-body);
  margin-top: 0.8rem;
  transition: background var(--speed);
}
.cookie-reopen-btn:hover { background: var(--honey-dark); }


/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  background: var(--walnut);
  color: rgba(255,255,255,0.72);
  padding: 2.5rem 0 1.2rem;
  margin-top: 2.5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}
.footer-col h4 {
  color: var(--honey-light);
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.8rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color var(--speed);
}
.footer-col a:hover { color: var(--honey-light); }
.footer-col p {
  font-size: 0.88rem;
  line-height: 1.65;
}
.footer-bottom {
  max-width: var(--max-w);
  margin: 1.5rem auto 0;
  padding: 1rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}


/* =============================================
   POLICY PAGES
   ============================================= */

.policy-content h2 { font-size: 1.4rem; }
.policy-content h3 { font-size: 1.12rem; }
.policy-content ul { margin-bottom: 1.1rem; }


/* =============================================
   SCROLL REVEAL
   ============================================= */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-image {
    max-width: 480px;
    margin: 0 auto;
  }
  .hero-text h1 { font-size: 2.1rem; }
  h1 { font-size: 1.9rem; }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .timeline::before { display: none; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-white);
    border-bottom: 2px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 0.8rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
    padding-top: 0;
    padding-bottom: 0;
  }
  .main-nav.is-open {
    max-height: 400px;
    opacity: 1;
    padding: 0.8rem;
  }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { padding: 0.6rem 0.9rem; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  body { font-size: 15.5px; }
  .hero { padding: 2.5rem 0 2rem; }
  .hero-text h1 { font-size: 1.75rem; }
  .container { padding: 0 1rem; }
}


/* =============================================
   REDUCED MOTION
   ============================================= */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
