/* Kicsi Róka – finomított design system */
:root {
  --color-bg: #eef6f0;
  --color-bg-warm: #f7f5f2;
  --color-surface: #ffffff;
  --color-elevated: #ffffff;
  --color-text: #1c2420;
  --color-muted: #5c6560;
  --color-forest: #243d30;
  --color-forest-soft: #3d5c48;
  --color-coral: #c86b54;
  --color-coral-hover: #b35a45;
  --color-coral-muted: rgba(200, 107, 84, 0.12);
  --color-line: rgba(36, 61, 48, 0.1);
  --color-line-strong: rgba(36, 61, 48, 0.16);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(28, 36, 32, 0.04);
  --shadow-md: 0 4px 20px rgba(36, 61, 48, 0.07);
  --shadow-lg: 0 20px 50px rgba(36, 61, 48, 0.1);
  --shadow-soft: 0 8px 32px rgba(200, 107, 84, 0.14);
  --font: "Nunito", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --focus: 3px solid rgba(200, 107, 84, 0.45);
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --section-pad: clamp(3rem, 7vw, 5.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(200, 107, 84, 0.06) 0%, transparent 50%),
    radial-gradient(90% 60% at 0% 100%, rgba(61, 92, 72, 0.08) 0%, transparent 45%),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-warm) 100%);
  min-height: 100vh;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection {
  background: rgba(200, 107, 84, 0.28);
  color: var(--color-text);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-coral-hover);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-coral);
}

.wrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-surface);
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus {
  left: 1rem;
  outline: var(--focus);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--color-line);
  transition: box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 40px rgba(36, 61, 48, 0.09);
  border-bottom-color: rgba(36, 61, 48, 0.075);
  background: rgba(255, 255, 255, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  color: var(--color-forest);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.brand:hover {
  color: var(--color-forest);
  opacity: 0.92;
}

.brand-mark {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.brand-mark--footer {
  width: 40px;
  height: 40px;
}
.brand-text {
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.nav-toggle {
  display: none;
  background: var(--color-surface);
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.7rem;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--color-forest);
}
.nav-toggle:focus-visible {
  outline: var(--focus);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem clamp(0.35rem, 1.5vw, 0.35rem);
}
@media (min-width: 900px) {
  .site-nav {
    gap: 0.35rem 2rem;
  }
}

.site-nav__link {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 650;
  font-size: 0.98rem;
  padding: 0.5rem 0.15rem;
  border-radius: 6px;
  position: relative;
  letter-spacing: 0.01em;
}
.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 100%;
  height: 2px;
  background: var(--color-coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.site-nav__link:hover {
  color: var(--color-forest);
}
.site-nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.site-nav__link.is-active {
  color: var(--color-forest);
}
.site-nav__link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Fő CTA a menüben – visszafogott, „prémium” pill */
.btn--cta-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.25rem;
  padding: 0.55rem 1.35rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff !important;
  background: linear-gradient(165deg, var(--color-coral) 0%, var(--color-coral-hover) 100%);
  border: none;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(200, 107, 84, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn--cta-nav:hover {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 107, 84, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn--cta-nav:active {
  transform: translateY(0);
}
.btn--cta-nav:focus-visible {
  outline: var(--focus);
  outline-offset: 3px;
}

/* —— Buttons (általános) —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-weight: 700;
  font-family: inherit;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease),
    transform 0.2s var(--ease), border-color 0.25s var(--ease);
}
.btn:focus-visible {
  outline: var(--focus);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--color-forest);
  color: #f8faf8 !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-sm), 0 8px 28px rgba(36, 61, 48, 0.18);
}
.btn-primary:hover {
  background: var(--color-forest-soft);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), 0 12px 36px rgba(36, 61, 48, 0.22);
}

.btn--shine {
  position: relative;
  overflow: hidden;
}
.btn--shine::after {
  content: "";
  position: absolute;
  inset: 0;
  left: -120%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 45%,
    transparent 70%
  );
  transform: skewX(-18deg);
  transition: left 0.55s var(--ease);
  pointer-events: none;
}
.btn--shine:hover::after {
  left: 120%;
}

.btn--light {
  background: #fff;
  color: var(--color-forest) !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow-md), 0 12px 36px rgba(0, 0, 0, 0.12);
}
.btn--light:hover {
  background: #f8faf8;
  color: var(--color-forest) !important;
}

.btn--ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-weight: 750;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.45);
  color: #fff !important;
  background: transparent;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff !important;
  transform: translateY(-1px);
}

.btn--footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  text-decoration: none;
  background: #fff;
  color: var(--color-forest) !important;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.btn--footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  color: var(--color-forest) !important;
}

.btn-secondary {
  background: transparent;
  color: var(--color-forest) !important;
  border: 2px solid var(--color-line-strong);
  box-shadow: none;
}
.btn-secondary:hover {
  border-color: var(--color-forest);
  background: rgba(255, 255, 255, 0.6);
  color: var(--color-forest) !important;
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.95rem;
}

/* —— Section fejlécek —— */
.section-head {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.section-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-coral);
}
.section-head h1,
.section-head h2,
.section > .wrap > h1,
.section > .wrap > h2,
.display-sub {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 650;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.03em;
  color: var(--color-forest);
  line-height: 1.2;
}

.display-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-variation-settings: "opsz" 56;
  letter-spacing: -0.04em;
}

.display-cta {
  font-family: var(--font-display);
  font-weight: 650;
  font-variation-settings: "opsz" 48;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

/* —— Hero —— */
.hero {
  padding: clamp(2.75rem, 7vw, 5.5rem) 0 clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -20% -10% auto;
  height: 85%;
  background:
    radial-gradient(ellipse 70% 60% at 85% 20%, rgba(200, 107, 84, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 10% 70%, rgba(61, 92, 72, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  right: -15%;
  top: 5%;
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  border: 1px solid rgba(200, 107, 84, 0.2);
  border-radius: 50% 48% 52% 50% / 58% 50% 50% 42%;
  pointer-events: none;
  opacity: 0.55;
  animation: morph 14s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  bottom: 18%;
  width: min(40vw, 320px);
  height: min(40vw, 320px);
  border: 1px solid rgba(61, 92, 72, 0.12);
  border-radius: 42% 58% 48% 52% / 52% 48% 55% 45%;
  pointer-events: none;
  opacity: 0.45;
  animation: morph 18s ease-in-out infinite reverse;
}

@keyframes morph {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
    border-radius: 50% 48% 52% 50% / 58% 50% 50% 42%;
  }
  50% {
    transform: rotate(6deg) scale(1.03);
    border-radius: 48% 52% 50% 50% / 50% 58% 42% 50%;
  }
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero h1,
.hero .display-headline {
  font-size: clamp(2.15rem, 4.8vw, 3.25rem);
  line-height: 1.1;
  margin: 0 0 1.1rem;
  color: var(--color-forest);
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--color-coral-hover);
}

.hero__kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-coral), var(--color-coral-hover));
  box-shadow: 0 0 0 3px var(--color-coral-muted);
}

.lead {
  font-size: 1.125rem;
  color: var(--color-muted);
  margin: 0 0 1.75rem;
  max-width: 42ch;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  border: 1px solid var(--color-line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  animation: fade-up 0.8s var(--ease) both;
}

.hero-card--premium {
  overflow: hidden;
  border: 1px solid rgba(200, 107, 84, 0.18);
}

.hero-card__accent {
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-forest), var(--color-coral), var(--color-forest-soft));
  opacity: 0.95;
}

.hero-card__mark {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--color-coral);
  opacity: 0.75;
}

.hero-card__label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.hero-card__lead {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 650;
  line-height: 1.28;
  color: var(--color-forest);
}

.hero-card__text {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.62;
  color: var(--color-muted);
}

.hero-card__ticks {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.55;
}
.hero-card__ticks li {
  margin-bottom: 0.35rem;
}
.hero-card__ticks li:last-child {
  margin-bottom: 0;
}

.card-rise {
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card-rise:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-soft);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-card .leaf {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

.trust-strip {
  list-style: none;
  margin: clamp(1.75rem, 4vw, 2.75rem) 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 700px) {
  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.trust-strip__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-size: 0.92rem;
  line-height: 1.45;
}

.trust-strip__icon {
  color: var(--color-coral);
  font-size: 0.65rem;
  line-height: 1.9;
  opacity: 0.9;
}

.trust-strip__item strong {
  display: block;
  font-weight: 800;
  color: var(--color-forest);
}

.trust-strip__sub {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-muted);
  margin-top: 0.15rem;
}

.cta-band {
  position: relative;
  margin-top: clamp(0.5rem, 3vw, 1.5rem);
  padding: clamp(2.5rem, 6vw, 3.75rem) 0;
  background: linear-gradient(135deg, var(--color-forest) 0%, #1a2f24 48%, var(--color-forest-soft) 100%);
  color: #dfe8e3;
  overflow: hidden;
}

.cta-band__glow {
  position: absolute;
  width: min(90vw, 520px);
  height: min(90vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 107, 84, 0.35) 0%, transparent 65%);
  top: -40%;
  right: -15%;
  pointer-events: none;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 768px) {
  .cta-band__inner {
    grid-template-columns: 1.2fr auto;
    gap: 2.5rem;
  }
}

.cta-band__text p {
  margin: 0;
  max-width: 48ch;
  font-size: 1.03rem;
  line-height: 1.65;
  color: rgba(223, 232, 227, 0.9);
}

.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}

@media (min-width: 480px) {
  .cta-band__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.cta-band .display-cta {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

/* —— Sections —— */
.section {
  padding: var(--section-pad) 0;
}
.section--muted {
  background: rgba(255, 255, 255, 0.45);
  border-block: 1px solid var(--color-line);
}

.section--tilt {
  position: relative;
}

.section--tilt::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, rgba(200, 107, 84, 0.35), transparent);
  opacity: 0.55;
  pointer-events: none;
}

.card {
  background: var(--color-elevated);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-line);
}
.card--elevated {
  box-shadow: var(--shadow-lg);
}

.card--inset {
  border-color: rgba(36, 61, 48, 0.08);
  box-shadow: var(--shadow-md), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.prose-rich p:first-of-type {
  font-size: 1.08rem;
  line-height: 1.82;
  color: var(--color-text);
}

.pull-quote {
  margin: clamp(2rem, 4vw, 2.75rem) 0 0;
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.25rem, 3vw, 2rem);
  border-left: 4px solid var(--color-coral);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: linear-gradient(105deg, var(--color-coral-muted), rgba(255, 255, 255, 0.65));
  box-shadow: var(--shadow-sm);
}

.pull-quote p {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 550;
  font-style: italic;
  font-variation-settings: "opsz" 48;
  line-height: 1.5;
  color: var(--color-forest);
}

.pull-quote cite {
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 750;
  color: var(--color-muted);
}

/* —— Rólam – szerkesztői elrendezés —— */
.about-editorial {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .about-editorial {
    grid-template-columns: 340px 1fr;
    gap: 3.5rem;
    align-items: center;
  }
}

.about-frame {
  position: relative;
  margin: 0;
  padding: 0;
}
.about-frame::before {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(145deg, var(--color-coral-muted), transparent);
  z-index: 0;
  opacity: 0.9;
}
.about-frame--lux::before {
  inset: 16px -18px -18px 16px;
  background: linear-gradient(145deg, rgba(200, 107, 84, 0.22), rgba(61, 92, 72, 0.12), transparent);
  opacity: 1;
}

.about-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
  border-radius: var(--radius);
  aspect-ratio: 3 / 3.85;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
}

.about-frame--lux img {
  border-width: 5px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(36, 61, 48, 0.06);
}
@media (min-width: 900px) {
  .about-frame img {
    margin-inline: 0;
    max-width: 100%;
  }
}

.about-prose {
  max-width: 38rem;
}
.about-prose p {
  margin: 0 0 1.1rem;
  line-height: 1.78;
  font-size: 1.045rem;
  color: var(--color-text);
}
.about-prose p:last-child {
  margin-bottom: 0;
}

.section-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* —— Blog kártyák —— */
.blog-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .blog-grid--home {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-md);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card__media {
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #d8eadb 0%, #eef6f0 100%);
  position: relative;
}

.blog-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(36, 61, 48, 0.35) 100%);
  opacity: 0.65;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.blog-card:hover .blog-card__media::before {
  opacity: 0.85;
}

.blog-card__media-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255, 255, 255, 0.22) 48%,
    transparent 62%
  );
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease);
  pointer-events: none;
}

.blog-card:hover .blog-card__media-shine {
  transform: translateX(100%);
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.04);
}

.blog-card__pill {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-coral-hover);
  background: var(--color-coral-muted);
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.15rem;
}
.blog-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: linear-gradient(145deg, #cfe8d4 0%, #e8f3eb 40%, #f2ebe6 100%);
  opacity: 0.95;
}

.blog-card__body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
}
.blog-card__body h2,
.blog-card__body h3 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.blog-card__body h2 a,
.blog-card__body h3 a {
  text-decoration: none;
  color: var(--color-forest);
}
.blog-card__body h2 a:hover,
.blog-card__body h3 a:hover {
  color: var(--color-coral-hover);
}
.blog-card__date {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-muted);
  letter-spacing: 0.03em;
}
.blog-card__excerpt {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-muted);
  flex: 1;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.25rem;
  font-size: 0.92rem;
  font-weight: 750;
  color: var(--color-coral-hover) !important;
  text-decoration: none !important;
  letter-spacing: 0.02em;
}
.link-arrow .arrow {
  transition: transform 0.25s var(--ease);
}
.link-arrow:hover {
  color: var(--color-forest) !important;
}
.link-arrow:hover .arrow {
  transform: translateX(4px);
}

/* —— Forms (részlet) —— */
.form-group {
  margin-bottom: 1.1rem;
}
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--color-forest);
}
.form-group input,
.form-group textarea {
  width: 100%;
  max-width: 520px;
  padding: 0.7rem 1rem;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-sm);
  font: inherit;
  background: #fff;
}
.form-group input:focus-visible,
.form-group textarea:focus-visible {
  outline: var(--focus);
  border-color: var(--color-coral);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.alert {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-weight: 600;
}
.alert-success {
  background: #d7f0da;
  color: #1e4620;
}
.alert-error {
  background: #fde2e4;
  color: #7f1d1d;
}

/* —— Naptár —— */
.calendar-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.calendar-toolbar button {
  background: var(--color-surface);
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.9rem;
  font: inherit;
  cursor: pointer;
  font-weight: 700;
  color: var(--color-forest);
}
.cal-month-label {
  font-weight: 800;
  color: var(--color-forest);
  min-width: 10rem;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 1.5rem;
}
.cal-dow {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-muted);
  text-align: center;
  padding: 0.35rem;
  letter-spacing: 0.06em;
}
.cal-day {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  color: var(--color-text);
}
.cal-day--muted {
  opacity: 0.38;
}
.cal-day--has-slots {
  cursor: pointer;
  border-color: rgba(61, 92, 72, 0.28);
  background: rgba(207, 232, 212, 0.72);
  font-weight: 800;
}
.cal-day--has-slots:hover {
  border-color: var(--color-coral);
  background: #fff;
}
.cal-day--selected {
  background: var(--color-forest);
  color: #fff;
  border-color: var(--color-forest);
}
.cal-day--empty {
  background: transparent;
  pointer-events: none;
}

.slot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.slot-btn {
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-line-strong);
  background: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  color: var(--color-forest);
}
.slot-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  text-decoration: line-through;
}
.slot-btn:not(:disabled):hover {
  border-color: var(--color-coral);
}
.slot-btn.is-picked {
  background: var(--color-forest);
  color: #fff;
  border-color: var(--color-forest);
}

/* —— Blog poszt oldal —— */
.post-wrap {
  max-width: 720px;
  margin-inline: auto;
}
.post-article {
  padding-bottom: var(--section-pad);
}
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-muted) !important;
  text-decoration: none !important;
  margin-bottom: 1.5rem;
}
.post-back:hover {
  color: var(--color-coral-hover) !important;
}
.post-article h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 650;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--color-forest);
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-line);
  font-size: 0.9rem;
  color: var(--color-muted);
  font-weight: 600;
}
.post-meta time {
  color: var(--color-muted);
}
.post-meta__sep {
  opacity: 0.55;
  font-weight: 400;
}
.post-figure {
  margin: 0 0 2.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-line);
}
.post-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.post-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text);
}
.post-content p {
  margin: 0 0 1.25rem;
}
.post-content p:last-child {
  margin-bottom: 0;
}
.post-content br + br {
  display: none;
}

/* —— Footer —— */
.site-footer {
  margin-top: auto;
  padding: 0;
  background: var(--color-forest);
  color: #dfe8e3;
}

.site-footer--rich {
  padding-top: clamp(2.75rem, 5vw, 3.75rem);
}

.wrap--footer {
  padding-bottom: 0;
}

.footer-rich {
  display: grid;
  gap: 2rem 2.5rem;
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
}

@media (min-width: 640px) {
  .footer-rich {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (min-width: 960px) {
  .footer-rich {
    grid-template-columns: 1.35fr 0.9fr 0.95fr 0.95fr;
    align-items: start;
  }
}

.footer-col--brand .brand-footer {
  margin-bottom: 0.75rem;
}

.footer-tagline {
  margin: 0;
  max-width: 32ch;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(223, 232, 227, 0.85);
}

.footer-heading {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-nav--col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-nav--col a {
  text-decoration: none;
  font-weight: 650;
  color: #f0ddd6;
}

.footer-nav--col a:hover {
  color: #fff;
}

.footer-contact-line {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
}

.footer-contact-line:last-child {
  margin-bottom: 0;
}

.footer-tel {
  font-weight: 800;
  font-size: 1.05rem;
}

.footer-cta-text {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(223, 232, 227, 0.88);
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.15rem 0 1.75rem;
}

.site-footer a {
  color: #f0ddd6;
}

.site-footer a:hover {
  color: #fff;
}

.brand-footer {
  color: #fff !important;
}

.brand-footer img {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
}

.footer-nav a {
  text-decoration: none;
  font-weight: 650;
}

.copyright {
  margin: 0;
  font-size: 0.88rem;
  opacity: 0.78;
}

/* —— Blog lista főoldal címe —— */
.page-lead {
  margin: 0.75rem 0 0;
  max-width: 40ch;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* —— Mobil nav —— */
@media (max-width: 899px) {
  .nav-toggle {
    display: block;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--color-line);
    box-shadow: var(--shadow-md);
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-header {
    position: relative;
  }
  .site-nav__link {
    padding: 0.85rem 0.25rem;
    border-radius: var(--radius-sm);
  }
  .site-nav__link:hover {
    background: rgba(36, 61, 48, 0.06);
  }
  .btn--cta-nav {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
    justify-content: center;
  }
}

/* —— Belső oldalak (ügyfél-orientált) —— */
.section--page-top {
  padding-top: clamp(2rem, 5vw, 3.25rem);
}

.page-intro {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  max-width: 52rem;
}

.page-intro__title {
  margin: 0 0 0.65rem;
}

.page-intro__lead {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--color-muted);
  max-width: 48ch;
}

.booking-steps {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  max-width: 520px;
}

.booking-steps--center {
  margin-left: auto;
  margin-right: auto;
}

.section--booking .wrap--booking {
  width: min(1040px, 94vw);
}

.page-intro--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.page-intro--center .page-intro__lead {
  margin-left: auto;
  margin-right: auto;
}

.booking-steps__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--color-line);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-muted);
  transition:
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease);
}

.booking-steps__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: rgba(36, 61, 48, 0.08);
  color: var(--color-forest);
  font-size: 0.85rem;
  font-weight: 800;
}

.booking-steps__item--current {
  border-color: rgba(200, 107, 84, 0.45);
  background: var(--color-coral-muted);
  color: var(--color-forest);
}

.booking-steps__item--current .booking-steps__num {
  background: var(--color-coral);
  color: #fff;
}

.booking-steps__item--done {
  border-color: rgba(61, 92, 72, 0.28);
  color: var(--color-forest-soft);
}

.booking-steps__item--done .booking-steps__num {
  background: var(--color-forest-soft);
  color: #fff;
}

.card-narrow {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.card-narrow__hint {
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.card--success-banner .alert {
  margin-top: 0;
}

.card-booking {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.booking-panel {
  width: 100%;
}

@media (min-width: 960px) {
  .booking-panel {
    display: grid;
    grid-template-columns: minmax(300px, 1.05fr) minmax(320px, 1fr);
    gap: 0 2rem;
    align-items: start;
    max-width: none;
  }

  .booking-panel__cal {
    padding-right: 1.75rem;
    margin-right: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    border-right: 1px solid var(--color-line);
  }

  .booking-panel__form {
    padding-top: 0.25rem;
  }

  .booking-panel__cal .cal-grid {
    max-width: 100%;
  }

  .calendar-toolbar {
    max-width: 340px;
  }
}

.booking-calendar {
  position: relative;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-line);
  transition: opacity 0.25s var(--ease);
}

.booking-calendar[data-loading] {
  opacity: 0.72;
  pointer-events: none;
}

.cal-loading {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--color-forest-soft);
}

.slots-heading {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  color: var(--color-forest);
  font-weight: 800;
}

.slots-hint {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.45;
}

.booking-slot-summary {
  margin-top: 1.15rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(61, 92, 72, 0.08);
  border: 1px solid rgba(61, 92, 72, 0.14);
}

.booking-slot-summary__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}

.booking-slot-summary__value {
  font-weight: 750;
  color: var(--color-forest);
  font-size: 1rem;
}

.booking-form {
  margin: 0;
}

.booking-form__fieldset {
  border: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.booking-form__legend {
  padding: 0;
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-forest);
  font-family: var(--font-display);
}

.req {
  color: var(--color-coral-hover);
  font-weight: 800;
}

.form-label-note {
  font-weight: 600;
  color: var(--color-muted);
  font-size: 0.9em;
}

.form-group--split {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .form-group--split {
    grid-template-columns: 1fr 1fr;
  }
}

.trust-inline {
  margin-top: 2rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--color-line);
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-text);
  max-width: 720px;
}

.trust-inline--booking {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}

.trust-inline p {
  margin: 0;
}

.contact-split {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 880px) {
  .contact-split {
    grid-template-columns: minmax(260px, 340px) 1fr;
    gap: 2rem;
  }
}

.contact-card__heading,
.contact-form-card__heading {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-forest);
  font-family: var(--font-display);
}

.contact-chips {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  font-weight: 700;
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.75);
  transition:
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    transform 0.2s var(--ease);
  color: var(--color-forest) !important;
}

.contact-chip:hover {
  border-color: var(--color-coral);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.contact-chip__icon {
  font-size: 1.1rem;
  opacity: 0.85;
}

.contact-chip__text {
  font-size: 0.95rem;
  word-break: break-word;
}

.contact-hours {
  margin-top: 1.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-line);
}

.contact-hours__title {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.contact-hours__body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text);
}

.contact-form-card__hint {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.contact-form-card__after {
  margin: 1rem 0 0;
  line-height: 1.6;
  color: var(--color-muted);
}

.contact-form-card__after a {
  font-weight: 750;
}

.breadcrumb {
  margin-bottom: 1rem;
}

.breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--color-muted);
}

.breadcrumb__item:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  opacity: 0.45;
  font-weight: 400;
}

.breadcrumb__item a {
  color: var(--color-muted);
  text-decoration: none !important;
}

.breadcrumb__item a:hover {
  color: var(--color-coral-hover);
}

.breadcrumb__item--current {
  color: var(--color-text);
  flex: 1 1 100%;
  min-width: 0;
}

.post-end-cta {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(1.35rem, 3vw, 1.85rem);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(238, 246, 240, 0.9));
}

.post-end-cta__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 650;
  color: var(--color-forest);
}

.post-end-cta__text {
  margin: 0 0 1.15rem;
  line-height: 1.6;
  color: var(--color-text);
  max-width: 48ch;
}

.post-end-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: calc(1.15rem + env(safe-area-inset-bottom, 0px));
  z-index: 110;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--color-line-strong);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-forest);
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    background 0.2s var(--ease);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: #fff;
}

.back-to-top:focus-visible {
  outline: var(--focus);
}

body.has-mobile-sticky-cta .back-to-top {
  bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 900px) {
  body.has-mobile-sticky-cta .back-to-top {
    bottom: calc(1.15rem + env(safe-area-inset-bottom, 0px));
  }
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 899px) {
  body.has-mobile-sticky-cta {
    padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
  }

  body.has-mobile-sticky-cta .mobile-sticky-cta {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0.65rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px) saturate(1.15);
    -webkit-backdrop-filter: blur(14px) saturate(1.15);
    border-top: 1px solid var(--color-line);
    box-shadow: 0 -8px 32px rgba(36, 61, 48, 0.08);
  }

  .mobile-sticky-cta__book {
    flex: 1;
    text-align: center;
    justify-content: center;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
  }

  .mobile-sticky-cta__call {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.1rem;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none !important;
    border: 2px solid var(--color-line-strong);
    color: var(--color-forest) !important;
    background: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
  }

  .mobile-sticky-cta__call:hover {
    border-color: var(--color-forest);
    background: #fff;
  }
}

.blog-card__title {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.blog-card__title a {
  text-decoration: none;
  color: var(--color-forest);
}

.blog-card__title a:hover {
  color: var(--color-coral-hover);
}

@media (min-width: 1000px) {
  .blog-grid--list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.admin-badge {
  display: inline-block;
  background: var(--color-coral);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  vertical-align: middle;
  margin-left: 0.35rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .btn--shine::after {
    transition: none;
  }

  .blog-card:hover .blog-card__media-shine {
    transform: none;
  }
}
