/*
Theme Name: Patrycja Kamińska — Psycholog Dziecięcy
Theme URI: https://patrycjakaminska.pl
Author: Patrycja Kamińska
Author URI: https://patrycjakaminska.pl
Description: Custom theme for patrycjakaminska.pl — personal brand + blog. Design matching Crescere theme with Quicksand/Outfit fonts, warm color palette, mobile-first approach.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: patrycjakaminska
*/

/* ==========================================================================
   1. CSS Custom Properties
   ========================================================================== */
:root {
  --sage: #3D8B6F;
  --forest: #2C5F4D;
  --coral: #FF9E80;
  --sunshine: #FFD54F;
  --cream: #FAF7F2;
  --sky: #A8DADC;
  --lavender: #C4A5DE;
  --charcoal: #4A4A4A;

  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-3xl: 2.5rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
}

/* ==========================================================================
   2. Reset / Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--sage);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--forest);
}

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--forest); }

/* ==========================================================================
   3. Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.75rem; }
}

@media (min-width: 1024px) {
  h1 { font-size: 3.75rem; }
  h2 { font-size: 3rem; }
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.font-display {
  font-family: 'Quicksand', system-ui, sans-serif;
}

/* ==========================================================================
   4. Layout
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container { padding: 0 1.5rem; }
}

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

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.max-w-narrow { max-width: 800px; margin-left: auto; margin-right: auto; }
.max-w-medium { max-width: 1024px; margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* ==========================================================================
   5. Navbar
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(61, 139, 111, 0.1);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-lg);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--forest);
}

.site-logo .logo-img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  flex-shrink: 0;
}

.site-logo .logo-text {
  font-family: 'Quicksand', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Desktop nav */
.nav-menu {
  display: none;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-menu li a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a {
  color: var(--sage);
  background: rgba(61, 139, 111, 0.08);
}

.nav-cta a {
  background: var(--coral) !important;
  color: #fff !important;
  padding: 0.6rem 1.25rem !important;
  border-radius: var(--radius-full) !important;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease !important;
}

.nav-cta a:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.nav-cta-btn {
  display: none;
  background: var(--coral);
  color: #fff;
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
  color: #fff;
}

@media (min-width: 768px) {
  .nav-menu { display: flex; }
  .nav-cta-btn { display: inline-flex; }
  .hamburger { display: none !important; }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 60;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--forest);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(250, 247, 242, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
  font-family: 'Quicksand', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--sage);
  background: rgba(61, 139, 111, 0.1);
}

.mobile-menu .mobile-cta {
  margin-top: 1rem;
  background: var(--coral);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: var(--shadow-xl);
}

/* ==========================================================================
   6. Page Hero
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 5rem 0 6rem;
  background: linear-gradient(135deg, var(--cream), rgba(168,218,220,0.2), rgba(196,165,222,0.2));
  overflow: hidden;
  text-align: center;
}

.page-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255, 213, 79, 0.3);
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--sage);
  margin-bottom: 1.5rem;
}

.page-hero h1 { margin-bottom: 1rem; }
.page-hero p {
  font-size: 1.125rem;
  color: rgba(74,74,74,0.8);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-hero .decor-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
}

.page-hero .decor-1 { top: 2rem; left: 1rem; width: 4rem; height: 4rem; background: rgba(255,213,79,0.3); animation: float 6s ease-in-out infinite; }
.page-hero .decor-2 { top: 4rem; right: 2rem; width: 6rem; height: 6rem; background: rgba(255,158,128,0.2); animation: float 6s ease-in-out 2s infinite; }
.page-hero .decor-3 { bottom: 3rem; left: 25%; width: 5rem; height: 5rem; background: rgba(61,139,111,0.2); animation: float 6s ease-in-out infinite; }

.wave-separator { position: absolute; bottom: 0; left: 0; width: 100%; overflow: hidden; line-height: 0; }
.wave-separator svg { display: block; width: 100%; height: 4rem; }

@media (min-width: 768px) {
  .wave-separator svg { height: 6rem; }
  .page-hero { padding: 7rem 0 8rem; }
}

/* ==========================================================================
   7. Front Page Hero
   ========================================================================== */
.front-hero {
  position: relative;
  padding: 5rem 0 8rem;
  background: linear-gradient(135deg, var(--cream), rgba(168,218,220,0.2), rgba(196,165,222,0.2));
  overflow: hidden;
}

@media (min-width: 768px) {
  .front-hero { padding: 8rem 0 12rem; }
}

.front-hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .front-hero .hero-grid { grid-template-columns: 1fr 1fr; }
}

.hero-content { animation: fadeIn 1s ease-in-out; }

.hero-content .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255,213,79,0.3);
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--sage);
  margin-bottom: 1.5rem;
}

.hero-content h1 { margin-bottom: 1.5rem; }
.hero-content h1 .text-sage { color: var(--sage); }

.hero-content .hero-desc {
  font-size: 1.125rem;
  color: rgba(74,74,74,0.8);
  line-height: 1.7;
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.hero-content .hero-desc .name-highlight {
  font-weight: 600;
  color: var(--forest);
}

.trust-signals { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.6);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: rgba(74,74,74,0.7);
}

.cta-group { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .cta-group { flex-direction: row; } }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--coral);
  color: #fff;
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 700;
  padding: 1.25rem 2rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-xl);
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
}

.btn-primary:hover {
  color: #fff;
  transform: scale(1.05);
  box-shadow: var(--shadow-2xl);
  filter: brightness(1.05);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--forest);
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 600;
  padding: 1.25rem 2rem;
  border-radius: var(--radius-full);
  border: 2px solid rgba(61,139,111,0.2);
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
}

.btn-secondary:hover { color: var(--forest); background: var(--cream); box-shadow: var(--shadow-xl); }

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(to right, var(--coral), var(--sunshine));
  color: #fff;
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 700;
  padding: 1.25rem 2.5rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-2xl);
  transition: all 0.3s ease;
  font-size: 1.125rem;
  text-decoration: none;
}

.btn-gradient:hover { color: #fff; background: linear-gradient(to right, var(--sunshine), var(--coral)); transform: scale(1.05); }

.social-proof { font-size: 0.875rem; color: rgba(74,74,74,0.6); }
.social-proof .check { color: var(--sage); font-weight: 600; }

/* ==========================================================================
   Hero Illustration
   ========================================================================== */
.hero-illustration { width: 100%; max-width: 28rem; margin: 0 auto; }
@media (max-width: 767px) { .hero-illustration { max-width: 20rem; } }
.hero-svg { display: block; width: 100%; height: auto; }

.svg-flower { transform-origin: 200px 200px; animation: flower-breathe 8s ease-in-out infinite; }
.svg-ring--outer { transform-origin: 200px 200px; animation: ring-drift 14s ease-in-out infinite; }
.svg-ring--middle { transform-origin: 200px 200px; animation: ring-drift-reverse 12s ease-in-out infinite; }
.svg-ring--inner { transform-origin: 200px 200px; animation: ring-drift 10s ease-in-out infinite; }
.svg-center { transform-box: fill-box; transform-origin: center; animation: center-pulse 5s ease-in-out infinite; }
.svg-glow { transform-box: fill-box; transform-origin: center; animation: glow-breathe 7s ease-in-out infinite; }

.svg-dot--1 { animation: float 6s ease-in-out infinite; }
.svg-dot--2 { animation: float 7s ease-in-out 1.5s infinite; }
.svg-dot--3 { animation: float 8s ease-in-out 3s infinite; }
.svg-dot--4 { animation: float 5.5s ease-in-out 4s infinite; }

@keyframes flower-breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } }
@keyframes ring-drift { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(4deg); } }
@keyframes ring-drift-reverse { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(-4deg); } }
@keyframes center-pulse { 0%, 100% { transform: scale(1); opacity: 0.85; } 50% { transform: scale(1.12); opacity: 1; } }
@keyframes glow-breathe { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.05); opacity: 1; } }

/* ==========================================================================
   8. Sections
   ========================================================================== */
.section { padding: 5rem 0; position: relative; overflow: hidden; }
@media (min-width: 768px) { .section { padding: 8rem 0; } }

.section-white { background: #fff; }
.section-cream { background: var(--cream); }
.section-gradient { background: linear-gradient(135deg, #fff, rgba(168,218,220,0.1), rgba(196,165,222,0.1)); }

.section-header { text-align: center; margin-bottom: 3rem; }

.section-header .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--cream);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: 2px solid rgba(61,139,111,0.2);
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 1rem;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.125rem; color: rgba(74,74,74,0.8); max-width: 640px; margin: 0 auto; line-height: 1.7; }
.section-header p .highlight { color: var(--sage); font-weight: 600; }

.bg-decor { position: absolute; border-radius: 50%; filter: blur(48px); pointer-events: none; }

/* ==========================================================================
   9. Cards
   ========================================================================== */
.card {
  position: relative;
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(61,139,111,0.1);
  transition: all 0.3s ease;
  text-align: center;
}

@media (min-width: 768px) { .card { text-align: left; } }

.card:hover { box-shadow: var(--shadow-xl); border-color: rgba(61,139,111,0.3); transform: translateY(-2px); }

.card .card-icon {
  width: 5rem; height: 5rem;
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) { .card .card-icon { margin: 0 0 1.5rem; } }
.card:hover .card-icon { transform: scale(1.1); }

.card-icon.sage-gradient { background: linear-gradient(135deg, var(--sage), var(--forest)); }
.card-icon.coral-gradient { background: linear-gradient(135deg, var(--coral), var(--sunshine)); }
.card-icon.sky-gradient { background: linear-gradient(135deg, var(--sky), var(--lavender)); }

.card h3 { margin-bottom: 0.75rem; }
.card p { color: rgba(74,74,74,0.8); line-height: 1.7; }

/* Service cards */
.service-card {
  position: relative;
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(61,139,111,0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

@media (min-width: 768px) { .service-card { text-align: left; align-items: stretch; } }
.service-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-2px); }
.service-card .service-icon { font-size: 3rem; margin-bottom: 1.5rem; transition: transform 0.3s ease; }
.service-card:hover .service-icon { transform: scale(1.1); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.service-card p { color: rgba(74,74,74,0.8); line-height: 1.7; flex: 1; }

.service-card .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
  justify-content: center;
}
@media (min-width: 768px) { .service-card .card-tags { justify-content: flex-start; } }

.service-card .card-tags .tag-item {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sage);
  background: rgba(61,139,111,0.08);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.service-card--lavender { border-color: rgba(196,165,222,0.3); background: linear-gradient(135deg,#fff 70%,rgba(196,165,222,0.08)); }
.service-card--sky { border-color: rgba(168,218,220,0.35); background: linear-gradient(135deg,#fff 70%,rgba(168,218,220,0.1)); }
.service-card--sunshine { border-color: rgba(255,213,79,0.35); background: linear-gradient(135deg,#fff 70%,rgba(255,213,79,0.08)); }
.service-card--coral { border-color: rgba(255,158,128,0.25); background: linear-gradient(135deg,#fff 70%,rgba(255,158,128,0.07)); }
.service-card--sage { border-color: rgba(61,139,111,0.18); background: linear-gradient(135deg,#fff 70%,rgba(61,139,111,0.06)); }
.service-card--forest { border-color: rgba(44,95,77,0.15); background: linear-gradient(135deg,#fff 70%,rgba(44,95,77,0.05)); }

/* Quote box */
.quote-box {
  position: relative;
  background: linear-gradient(to right, rgba(250,247,242,0.8), rgba(255,213,79,0.1));
  padding: 2rem;
  border-radius: var(--radius-3xl);
  border: 2px solid rgba(61,139,111,0.2);
  box-shadow: var(--shadow-xl);
  margin-top: 3rem;
}

@media (min-width: 768px) { .quote-box { padding: 3rem; } }

.quote-box .quote-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) { .quote-box .quote-inner { flex-direction: row; align-items: flex-start; text-align: left; } }

.quote-box .quote-avatar {
  width: 6rem; height: 6rem;
  background: linear-gradient(135deg, var(--sage), var(--forest));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  box-shadow: var(--shadow-xl);
  border: 4px solid #fff;
  flex-shrink: 0;
  align-self: center;
}

@media (min-width: 768px) { .quote-box .quote-avatar { align-self: auto; } }

.quote-box blockquote {
  font-size: 1.125rem;
  color: var(--forest);
  line-height: 1.7;
  font-style: italic;
}

@media (min-width: 768px) { .quote-box blockquote { font-size: 1.25rem; } }

.quote-box .quote-author { font-family: 'Quicksand', system-ui, sans-serif; font-weight: 700; color: var(--forest); font-size: 1.125rem; font-style: normal; margin-top: 1rem; }
.quote-box .quote-role { font-size: 0.875rem; color: rgba(74,74,74,0.6); font-style: normal; }

/* Note box */
.note-box {
  position: relative;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: var(--radius-3xl);
  border: 2px solid rgba(61,139,111,0.3);
  box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) { .note-box { padding: 2.5rem; } }

.note-box .note-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) { .note-box .note-inner { flex-direction: row; align-items: flex-start; text-align: left; } }

.note-box .note-icon {
  width: 4rem; height: 4rem;
  background: linear-gradient(135deg, var(--sage), var(--forest));
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.875rem;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
  align-self: center;
}

@media (min-width: 768px) { .note-box .note-icon { align-self: auto; } }
.note-box h3 { margin-bottom: 0.75rem; }
.note-box p { font-size: 1.125rem; color: rgba(74,74,74,0.8); line-height: 1.7; }

/* Stats bar */
.stats-bar { padding: 3rem 0; background: var(--cream); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 48rem; margin: 0 auto; }
.stat-item { text-align: center; }
.stat-icon { width: 3rem; height: 3rem; margin: 0 auto 0.5rem; color: var(--sage); }
.stat-value { font-family: 'Quicksand', system-ui, sans-serif; font-size: 1.75rem; font-weight: 700; color: var(--forest); }
.stat-label { font-size: 0.875rem; color: rgba(74,74,74,0.6); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; max-width: 48rem; margin: 0 auto; }
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }

.pricing-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(250,247,242,0.6);
  padding: 1.5rem;
  border-radius: var(--radius-2xl);
  border: 2px solid rgba(61,139,111,0.15);
  box-shadow: var(--shadow);
}

.pricing-card--coral { border-color: rgba(255,158,128,0.2); }

.pricing-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--sage);
  background: rgba(61,139,111,0.1);
}

.pricing-icon--coral { color: var(--coral); background: rgba(255,158,128,0.12); }

.pricing-label { font-family: 'Quicksand', system-ui, sans-serif; font-weight: 600; color: rgba(74,74,74,0.7); font-size: 0.875rem; }
.pricing-value { font-family: 'Quicksand', system-ui, sans-serif; font-size: 2rem; font-weight: 700; color: var(--sage); line-height: 1.1; }
.pricing-value--coral { color: var(--coral); }
.pricing-note { font-size: 0.75rem; color: rgba(74,74,74,0.5); margin-top: 0.25rem; }

/* Cross-link block (to crescere shop) */
.crosslink-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #fff;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(61,139,111,0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  max-width: 48rem;
  margin: 0 auto;
}

.crosslink-block:hover {
  border-color: rgba(61,139,111,0.25);
  box-shadow: var(--shadow-xl);
}

.crosslink-icon {
  width: 3.5rem; height: 3.5rem;
  background: linear-gradient(135deg, var(--sage), var(--forest));
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.crosslink-title { font-family: 'Quicksand', system-ui, sans-serif; font-weight: 700; color: var(--forest); font-size: 1.125rem; }
.crosslink-desc { font-size: 0.875rem; color: rgba(74,74,74,0.6); margin-top: 0.25rem; }
.crosslink-arrow { color: rgba(61,139,111,0.4); font-size: 1.25rem; margin-left: auto; flex-shrink: 0; transition: all 0.3s ease; }
.crosslink-block:hover .crosslink-arrow { color: var(--sage); transform: translateX(4px); }

/* Highlight cards (3-col on homepage) */
.highlight-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(61,139,111,0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.highlight-card:hover { box-shadow: var(--shadow-xl); border-color: rgba(61,139,111,0.25); transform: translateY(-2px); }
.highlight-icon { font-size: 3rem; margin-bottom: 1.25rem; transition: transform 0.3s ease; }
.highlight-card:hover .highlight-icon { transform: scale(1.1); }
.highlight-title { font-family: 'Quicksand', system-ui, sans-serif; font-size: 1.125rem; font-weight: 700; color: var(--forest); margin-bottom: 0.75rem; }
.highlight-desc { color: rgba(74,74,74,0.75); font-size: 0.95rem; line-height: 1.6; }

/* ==========================================================================
   10. Blog Cards
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: #fff;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(61,139,111,0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); border-color: rgba(61,139,111,0.3); }

.blog-card .card-thumb { width: 100%; max-height: 200px; overflow: hidden; }
.blog-card .card-thumb img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.3s ease; }
.blog-card:hover .card-thumb img { transform: scale(1.05); }
.blog-card .card-thumb-placeholder { width: 100%; height: 200px; background: linear-gradient(135deg, rgba(61,139,111,0.1), rgba(196,165,222,0.1)); display: flex; align-items: center; justify-content: center; font-size: 3rem; }

.blog-card .card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }

.blog-card .card-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.8rem; color: rgba(74,74,74,0.6); }
.blog-card .card-meta .category { background: rgba(61,139,111,0.1); color: var(--sage); padding: 0.25rem 0.75rem; border-radius: var(--radius-full); font-weight: 600; font-family: 'Quicksand', system-ui, sans-serif; }

.blog-card h3 { font-size: 1.125rem; margin-bottom: 0.75rem; }
.blog-card h3 a { color: var(--forest); text-decoration: none; }
.blog-card h3 a:hover { color: var(--sage); }

.blog-card .card-excerpt { color: rgba(74,74,74,0.8); font-size: 0.9rem; line-height: 1.6; flex: 1; }

.blog-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--forest);
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 1rem;
  padding: 0.5rem 1.125rem;
  border-radius: 999px;
  background: rgba(61,139,111,0.08);
  border: 1.5px solid rgba(61,139,111,0.18);
  transition: all 0.25s ease;
  text-decoration: none;
}

.blog-card .read-more:hover { background: var(--sage); color: #fff; gap: 0.75rem; box-shadow: 0 4px 12px rgba(61,139,111,0.2); }

/* ==========================================================================
   11. Single Post
   ========================================================================== */
.single-hero {
  position: relative;
  padding: 5rem 0 6rem;
  background: linear-gradient(135deg, var(--cream), rgba(61,139,111,0.15));
  overflow: hidden;
  text-align: center;
}

@media (min-width: 768px) { .single-hero { padding: 7rem 0 8rem; } }

.single-hero .post-category {
  display: inline-block;
  background: rgba(255,255,255,0.8);
  color: var(--sage);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(61,139,111,0.2);
}

.single-hero .post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(74,74,74,0.6);
}

.post-featured-image {
  max-width: 800px;
  margin: -3rem auto 2rem;
  padding: 0 1rem;
  position: relative;
  z-index: 5;
}

.post-featured-image img { border-radius: var(--radius-2xl); box-shadow: var(--shadow-xl); width: 100%; }

.post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem 4rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--charcoal);
}

.post-content h2 { margin: 2.5rem 0 1rem; font-size: 1.75rem; }
.post-content h3 { margin: 2rem 0 0.75rem; font-size: 1.375rem; }
.post-content p { margin-bottom: 1.25rem; }
.post-content ul, .post-content ol { margin: 1rem 0 1.5rem 1.5rem; }
.post-content li { margin-bottom: 0.5rem; line-height: 1.7; }
.post-content blockquote { border-left: 4px solid var(--sage); padding: 1.5rem; margin: 1.5rem 0; background: rgba(61,139,111,0.05); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; font-style: italic; color: var(--forest); }
.post-content a { color: var(--sage); text-decoration: underline; text-underline-offset: 2px; }
.post-content a:hover { color: var(--forest); }
.post-content img { border-radius: var(--radius-lg); margin: 1.5rem 0; box-shadow: var(--shadow); }

.disclaimer-box {
  background: linear-gradient(135deg, rgba(168,218,220,0.15), rgba(196,165,222,0.15));
  border: 2px solid rgba(61,139,111,0.2);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  margin: 3rem 0;
}

.disclaimer-box h4 { margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.disclaimer-box p { font-size: 0.95rem; color: rgba(74,74,74,0.8); margin-bottom: 0; }

.post-nav {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem 4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.post-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #fff;
  border-radius: var(--radius-full);
  border: 2px solid rgba(61,139,111,0.2);
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--forest);
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.post-nav a:hover { border-color: var(--sage); box-shadow: var(--shadow-lg); color: var(--sage); }

/* ==========================================================================
   12. Contact Form
   ========================================================================== */
.contact-form-wrapper {
  position: relative;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-2xl);
  border: 2px solid rgba(61,139,111,0.2);
}

@media (min-width: 768px) { .contact-form-wrapper { padding: 3rem; } }

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.form-group label .required { color: var(--coral); }
.form-group label .optional { font-size: 0.8rem; color: rgba(74,74,74,0.5); font-weight: 400; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(61,139,111,0.3);
  border-radius: var(--radius-xl);
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.1rem;
  background: #fff;
  color: var(--charcoal);
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(61,139,111,0.15);
}

.form-group textarea { resize: none; min-height: 140px; }
.form-group .field-hint { font-size: 0.85rem; color: rgba(74,74,74,0.6); margin-top: 0.5rem; }

.form-submit-btn {
  width: 100%;
  padding: 1.5rem 2rem;
  background: linear-gradient(to right, var(--coral), var(--sunshine));
  color: #fff;
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: var(--shadow-2xl);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.form-submit-btn:hover { background: linear-gradient(to right, var(--sunshine), var(--coral)); transform: scale(1.02); }
.form-submit-btn:disabled { background: rgba(74,74,74,0.3); cursor: not-allowed; transform: none; }

.form-status {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  margin-top: 1.5rem;
  animation: fadeIn 0.5s ease-in-out;
  display: none;
}

.form-status.visible { display: block; }
.form-status.success { background: linear-gradient(to right, rgba(61,139,111,0.15), rgba(255,213,79,0.15)); border: 2px solid rgba(61,139,111,0.3); }
.form-status.error { background: #FEF2F2; border: 2px solid #FECACA; }

.form-status .status-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.form-status .status-title { font-family: 'Quicksand', system-ui, sans-serif; font-weight: 700; font-size: 1.125rem; margin-bottom: 0.25rem; }
.form-status.success .status-title { color: var(--forest); }
.form-status.error .status-title { color: #991B1B; }

.form-privacy { text-align: center; font-size: 0.875rem; color: rgba(74,74,74,0.6); margin-top: 2rem; padding-top: 1.5rem; border-top: 2px solid rgba(61,139,111,0.1); }

.form-group--consent { padding: 1rem 1.25rem; background: rgba(61,139,111,0.04); border: 2px solid rgba(61,139,111,0.15); border-radius: 1rem; }
.consent-label { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; margin: 0; }
.consent-label input[type="checkbox"] { width: 1.125rem; height: 1.125rem; flex-shrink: 0; margin-top: 0.2rem; accent-color: var(--sage); cursor: pointer; border: none; background: none; box-shadow: none; padding: 0; }
.consent-text { font-size: 0.875rem; color: rgba(74,74,74,0.75); line-height: 1.6; }
.consent-text a { color: var(--sage); text-decoration: underline; text-underline-offset: 2px; }
.consent-text a:hover { color: var(--forest); }

/* Trust cards (contact page) */
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }

.trust-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(61,139,111,0.2);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.trust-card .trust-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.trust-card .trust-title { font-family: 'Quicksand', system-ui, sans-serif; font-weight: 600; color: var(--forest); margin-bottom: 0.25rem; }
.trust-card .trust-desc { font-size: 0.875rem; color: rgba(74,74,74,0.7); margin-bottom: 0; }

/* ==========================================================================
   13. Cookie Banner
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 1rem;
  display: flex;
  justify-content: center;
}

.cookie-banner-inner {
  background: #fff;
  border: 2px solid rgba(61,139,111,0.2);
  border-radius: 1.5rem;
  box-shadow: 0 -4px 32px rgba(44,95,77,0.12), 0 4px 32px rgba(0,0,0,0.08);
  padding: 1.25rem 1.5rem;
  max-width: 860px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cookie-banner { padding: 1.25rem; }
  .cookie-banner-inner { flex-direction: row; align-items: center; gap: 1.5rem; }
}

.cookie-banner-text { flex: 1; }
.cookie-banner-title { font-family: 'Quicksand', sans-serif; font-weight: 700; color: var(--forest); font-size: 0.95rem; margin-bottom: 0.35rem; }
.cookie-banner-desc { font-size: 0.8125rem; color: rgba(74,74,74,0.72); line-height: 1.55; margin: 0; }
.cookie-banner-desc a { color: var(--sage); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner-actions { display: flex; gap: 0.625rem; flex-shrink: 0; flex-wrap: wrap; }

.cookie-btn {
  padding: 0.625rem 1.125rem;
  border-radius: 9999px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  border: 2px solid transparent;
}

.cookie-btn--secondary { background: transparent; border-color: rgba(61,139,111,0.3); color: var(--forest); }
.cookie-btn--secondary:hover { border-color: var(--sage); background: rgba(61,139,111,0.06); }
.cookie-btn--primary { background: var(--sage); color: #fff; box-shadow: 0 2px 12px rgba(61,139,111,0.3); }
.cookie-btn--primary:hover { background: var(--forest); }

/* ==========================================================================
   14. Footer
   ========================================================================== */
.site-footer {
  background: linear-gradient(135deg, var(--forest), #1a3d2e);
  color: #fff;
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer .footer-decor { position: absolute; border-radius: 50%; pointer-events: none; }
.site-footer .footer-decor-1 { top: 2rem; right: 2rem; width: 10rem; height: 10rem; background: rgba(61,139,111,0.2); filter: blur(48px); }
.site-footer .footer-decor-2 { bottom: 2rem; left: 2rem; width: 8rem; height: 8rem; background: rgba(255,158,128,0.1); filter: blur(40px); }

.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; position: relative; z-index: 1; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; } }

.footer-brand .brand-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-brand .brand-logo .footer-logo-img { width: 2.5rem; height: 2.5rem; object-fit: contain; }
.footer-brand .brand-logo h3 { font-size: 1.25rem; color: #fff; }
.footer-brand .brand-desc { color: rgba(255,255,255,0.8); margin-bottom: 0.5rem; }
.footer-brand .brand-author { color: rgba(255,255,255,0.6); font-size: 0.875rem; }

.footer-links h4 { color: #fff; font-size: 1.125rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.8); transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-links a:hover { color: var(--sunshine); }

.footer-contact h4 { color: #fff; font-size: 1.125rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-contact .contact-item { margin-bottom: 1rem; }
.footer-contact a { color: rgba(255,255,255,0.8); display: inline-flex; align-items: center; gap: 0.75rem; transition: color 0.3s ease; }
.footer-contact a:hover { color: var(--sunshine); }
.footer-contact .response-time { display: flex; align-items: flex-start; gap: 0.75rem; color: rgba(255,255,255,0.8); }
.footer-contact .response-time .label { font-weight: 600; margin-bottom: 0.25rem; }
.footer-contact .response-time .value { font-size: 0.875rem; color: rgba(255,255,255,0.6); }

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--coral);
  color: #fff;
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 0.5rem;
}

.footer-cta-btn:hover { background: var(--sunshine); color: #fff; box-shadow: var(--shadow-xl); }

.footer-personal h4 { font-family: 'Quicksand', system-ui, sans-serif; font-size: 0.875rem; font-weight: 700; margin-bottom: 0.75rem; opacity: 0.8; }

.footer-personal-link {
  display: block;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-personal-link:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); }
.footer-personal-link strong { display: block; color: #fff; font-family: 'Quicksand', system-ui, sans-serif; font-size: 1rem; margin-bottom: 0.25rem; }
.footer-personal-link span { display: block; color: rgba(255,255,255,0.5); font-size: 0.8rem; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.2); padding: 2rem 0; position: relative; z-index: 1; }
.footer-bottom-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
@media (min-width: 768px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; } }

.footer-bottom-inner a { color: rgba(255,255,255,0.6); text-decoration: underline; text-underline-offset: 3px; opacity: 0.7; }

/* ==========================================================================
   15. Pagination
   ========================================================================== */
.pagination { display: flex; justify-content: center; align-items: center; gap: 0.5rem; margin-top: 3rem; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 2.75rem; height: 2.75rem; padding: 0.5rem 1rem; border-radius: var(--radius-full); font-family: 'Quicksand', system-ui, sans-serif; font-weight: 600; font-size: 0.95rem; transition: all 0.3s ease; }
.pagination a { background: #fff; color: var(--forest); border: 2px solid rgba(61,139,111,0.2); box-shadow: var(--shadow-sm); }
.pagination a:hover { border-color: var(--sage); box-shadow: var(--shadow); color: var(--sage); }
.pagination .current { background: var(--sage); color: #fff; border: 2px solid var(--sage); }

/* ==========================================================================
   16. 404
   ========================================================================== */
.error-404 { text-align: center; padding: 4rem 1rem; }
.error-404 .error-icon { font-size: 5rem; margin-bottom: 1.5rem; }
.error-404 h2 { margin-bottom: 1rem; }
.error-404 p { font-size: 1.125rem; color: rgba(74,74,74,0.7); margin-bottom: 2rem; }

/* ==========================================================================
   17. Animations
   ========================================================================== */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes wave { 0%, 100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce-slow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-delayed { animation: float 6s ease-in-out 2s infinite; }
.animate-fadeIn { animation: fadeIn 1s ease-in-out; }

/* ==========================================================================
   18. WordPress / Gutenberg overrides
   ========================================================================== */
.alignwide { max-width: 1024px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: rgba(74,74,74,0.6); text-align: center; margin-top: 0.5rem; }
.wp-block-image { margin: 1.5rem 0; }
.wp-block-image img { border-radius: var(--radius-lg); }
.wp-block-quote { border-left: 4px solid var(--sage); padding: 1.5rem; margin: 1.5rem 0; background: rgba(61,139,111,0.05); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.wp-block-button__link { background: var(--coral); color: #fff; padding: 0.75rem 2rem; border-radius: var(--radius-full); font-family: 'Quicksand', system-ui, sans-serif; font-weight: 700; transition: all 0.3s ease; }
.wp-block-button__link:hover { transform: scale(1.05); color: #fff; }

body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }

/* ==========================================================================
   19. Page Content
   ========================================================================== */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.page-content h2 { margin: 2.5rem 0 1rem; }
.page-content h3 { margin: 2rem 0 0.75rem; }
.page-content ul, .page-content ol { margin: 1rem 0 1.5rem 1.5rem; }
.page-content li { margin-bottom: 0.5rem; }
.page-content img { border-radius: var(--radius-lg); box-shadow: var(--shadow); margin: 1.5rem 0; }

/* ==========================================================================
   20. Latest Posts Section
   ========================================================================== */
.latest-posts-section { padding: 5rem 0; background: #fff; }
@media (min-width: 768px) { .latest-posts-section { padding: 8rem 0; } }

/* ==========================================================================
   21. Utilities
   ========================================================================== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* About page — credentials list */
.credentials-list { display: flex; flex-direction: column; gap: 0.75rem; }
.credentials-item { display: flex; align-items: center; gap: 1rem; background: rgba(250,247,242,0.6); padding: 1rem 1.25rem; border-radius: var(--radius-xl); border: 1px solid rgba(61,139,111,0.1); }
.credentials-check { width: 2rem; height: 2rem; border-radius: 50%; background: rgba(61,139,111,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--sage); font-weight: 700; font-size: 0.875rem; }
.credentials-text { color: rgba(74,74,74,0.8); }

/* Values grid */
.values-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
.value-card { background: #fff; padding: 2rem; border-radius: var(--radius-2xl); box-shadow: var(--shadow-lg); border: 2px solid rgba(61,139,111,0.1); }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-title { font-family: 'Quicksand', system-ui, sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--forest); margin-bottom: 0.75rem; }
.value-desc { color: rgba(74,74,74,0.75); line-height: 1.7; }

/* Process steps */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
.process-step { text-align: center; }
.process-number { width: 3.5rem; height: 3.5rem; margin: 0 auto 1rem; background: linear-gradient(135deg, var(--sage), var(--forest)); border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); }
.process-number span { color: #fff; font-family: 'Quicksand', system-ui, sans-serif; font-weight: 700; font-size: 1.25rem; }
.process-title { font-family: 'Quicksand', system-ui, sans-serif; font-size: 1.125rem; font-weight: 700; color: var(--forest); margin-bottom: 0.75rem; }
.process-desc { color: rgba(74,74,74,0.7); line-height: 1.7; font-size: 0.95rem; }

/* About page — photo placeholder */
.photo-placeholder {
  width: 14rem; height: 14rem;
  background: linear-gradient(135deg, var(--sage), var(--forest));
  border-radius: 2rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  box-shadow: var(--shadow-2xl);
  border: 4px solid #fff;
  margin: 0 auto;
}

/* ==========================================================================
   22. Layout Utilities (section, inner containers, btn)
   ========================================================================== */

/* Section wrapper */
.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 5rem 0; } }
.section--white { background: #fff; }
.section--cream { background: var(--cream); }
.section--cream-light { background: rgba(250,247,242,0.4); }

/* Inner width limiters */
.section-inner { max-width: 80rem; margin: 0 auto; }
.section-inner--narrow { max-width: 48rem; margin: 0 auto; }
.text-center { text-align: center; }

/* Section typography */
.section-title {
  font-family: 'Quicksand', system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 2.5rem;
  text-align: center;
}
@media (min-width: 768px) { .section-title { font-size: 2rem; } }
.section-title--left { text-align: left; }

.section-lead {
  font-size: 1.1rem;
  color: rgba(74,74,74,0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Hero typography used across page templates */
.hero-title {
  font-family: 'Quicksand', system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) { .hero-title { font-size: 3rem; } }

.hero-lead {
  font-size: 1.1rem;
  color: rgba(74,74,74,0.8);
  line-height: 1.7;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.text-coral { color: var(--coral); }

/* Button system (BEM) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn--primary { background: var(--coral); color: #fff; box-shadow: var(--shadow-xl); }
.btn--primary:hover { background: #ff8c65; color: #fff; transform: scale(1.04); box-shadow: var(--shadow-2xl); }
.btn--secondary { background: var(--cream); color: var(--forest); border: 2px solid rgba(61,139,111,0.2); box-shadow: var(--shadow); }
.btn--secondary:hover { background: rgba(61,139,111,0.08); color: var(--forest); border-color: rgba(61,139,111,0.4); box-shadow: var(--shadow-lg); }
.btn--full { width: 100%; }
.btn--large { padding: 1.25rem 2.5rem; font-size: 1.125rem; }

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }

/* ==========================================================================
   23. Page Hero Variants
   ========================================================================== */
.page-hero--omnie,
.page-hero--oferta,
.page-hero--rezerwacja,
.page-hero--blog,
.page-hero--archive,
.page-hero--generic,
.page-hero--404 {
  position: relative;
  padding: 6rem 0 4rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-hero--omnie, .page-hero--oferta, .page-hero--rezerwacja,
  .page-hero--blog, .page-hero--archive, .page-hero--generic, .page-hero--404 {
    padding: 8rem 0 5rem;
  }
}

.page-hero--omnie   { background: linear-gradient(135deg, var(--cream), rgba(196,165,222,0.12), rgba(168,218,220,0.12)); }
.page-hero--oferta  { background: linear-gradient(135deg, var(--cream), rgba(168,218,220,0.12), rgba(196,165,222,0.12)); }
.page-hero--rezerwacja { background: linear-gradient(135deg, var(--cream), rgba(168,218,220,0.12), rgba(196,165,222,0.12)); }
.page-hero--blog    { background: linear-gradient(135deg, var(--cream), rgba(61,139,111,0.08)); }
.page-hero--archive { background: linear-gradient(135deg, var(--cream), rgba(61,139,111,0.08)); }
.page-hero--generic { background: var(--cream); }
.page-hero--404     { background: linear-gradient(135deg, var(--cream), rgba(255,158,128,0.1)); }

.page-hero-decor { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.page-hero-decor-1 { top: 3rem; right: 2rem; width: 12rem; height: 12rem; background: rgba(255,213,79,0.15); animation: float 8s ease-in-out infinite; }
.page-hero-decor-2 { bottom: 1rem; left: 2rem; width: 16rem; height: 16rem; background: rgba(61,139,111,0.08); animation: float 8s ease-in-out 2s infinite; }

/* ==========================================================================
   24. O mnie page
   ========================================================================== */
.omnie-hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; max-width: 64rem; margin: 0 auto; align-items: start; }
@media (min-width: 768px) { .omnie-hero-grid { grid-template-columns: 280px 1fr; } }

.omnie-photo-col { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.omnie-name-block { text-align: center; }
.omnie-name-block h1 { font-family: 'Quicksand', system-ui, sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--forest); margin-bottom: 0.25rem; }
.omnie-subtitle { color: var(--sage); font-weight: 600; font-size: 0.9rem; margin: 0; }

.omnie-bio-col { display: flex; flex-direction: column; gap: 1.5rem; }
.omnie-bio-text { display: flex; flex-direction: column; gap: 1rem; color: rgba(74,74,74,0.82); font-size: 1.05rem; line-height: 1.8; }

.value-card h4 { font-family: 'Quicksand', system-ui, sans-serif; font-size: 1.125rem; font-weight: 700; color: var(--forest); margin-bottom: 0.5rem; }
.value-card p { color: rgba(74,74,74,0.75); line-height: 1.7; margin: 0; }

/* ==========================================================================
   25. Oferta page
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 80rem; margin: 0 auto; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.service-tags span { font-size: 0.75rem; font-weight: 600; color: var(--sage); background: rgba(61,139,111,0.1); padding: 0.25rem 0.75rem; border-radius: var(--radius-full); }

.service-card h3 { font-family: 'Quicksand', system-ui, sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--forest); margin-bottom: 0.75rem; }
.service-card p { color: rgba(74,74,74,0.8); line-height: 1.7; }

.note-box-icon { width: 3.5rem; height: 3.5rem; background: linear-gradient(135deg, var(--sage), var(--forest)); border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; box-shadow: var(--shadow-lg); flex-shrink: 0; }
.note-box-content h3 { font-family: 'Quicksand', system-ui, sans-serif; font-size: 1.125rem; font-weight: 700; color: var(--forest); margin-bottom: 0.75rem; }
.note-box-content p { color: rgba(74,74,74,0.8); line-height: 1.7; margin: 0; }
.note-box { display: flex; align-items: flex-start; gap: 1.5rem; }
@media (max-width: 640px) { .note-box { flex-direction: column; } }

.process-step h3 { font-family: 'Quicksand', system-ui, sans-serif; font-size: 1.125rem; font-weight: 700; color: var(--forest); margin-bottom: 0.5rem; }
.process-step p { color: rgba(74,74,74,0.7); line-height: 1.7; }

/* ==========================================================================
   26. Contact page
   ========================================================================== */
.contact-section { position: relative; padding: 6rem 0 4rem; background: linear-gradient(135deg, #fff, rgba(168,218,220,0.1), rgba(196,165,222,0.1)); overflow: hidden; min-height: 100vh; }

.contact-decor { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.contact-decor-1 { top: 2rem; left: 2rem; width: 8rem; height: 8rem; background: rgba(255,213,79,0.2); animation: float 6s ease-in-out infinite; }
.contact-decor-2 { bottom: 2rem; right: 2rem; width: 10rem; height: 10rem; background: rgba(255,158,128,0.2); animation: float 6s ease-in-out 2s infinite; }
.contact-decor-3 { top: 50%; left: 25%; width: 6rem; height: 6rem; background: rgba(61,139,111,0.1); animation: float 6s ease-in-out 1s infinite; }

.contact-wrap { max-width: 48rem; margin: 0 auto; }
.contact-header { text-align: center; margin-bottom: 2.5rem; }
.contact-badge { display: inline-flex; align-items: center; gap: 0.75rem; background: #fff; padding: 0.75rem 1.5rem; border-radius: var(--radius-full); border: 2px solid rgba(255,158,128,0.2); box-shadow: var(--shadow-lg); font-family: 'Quicksand', system-ui, sans-serif; font-weight: 600; color: var(--forest); font-size: 1.1rem; margin-bottom: 1.5rem; }

.contact-form-wrap { position: relative; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); border-radius: var(--radius-3xl); padding: 2rem; box-shadow: var(--shadow-2xl); border: 2px solid rgba(61,139,111,0.2); }
@media (min-width: 768px) { .contact-form-wrap { padding: 3rem; } }

.form-field { margin-bottom: 1.5rem; }
.form-field label { display: flex; align-items: center; gap: 0.5rem; color: var(--forest); font-family: 'Quicksand', system-ui, sans-serif; font-weight: 600; margin-bottom: 0.625rem; font-size: 0.95rem; }
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea { width: 100%; padding: 1rem 1.5rem; border: 2px solid rgba(61,139,111,0.3); border-radius: var(--radius-xl); background: #fff; color: var(--charcoal); font-size: 1rem; font-family: 'Outfit', system-ui, sans-serif; transition: border-color 0.3s, box-shadow 0.3s; outline: none; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 4px rgba(61,139,111,0.12); }
.form-field input.is-invalid, .form-field textarea.is-invalid { border-color: #f87171; background: #fef2f2; }
.form-field textarea { resize: vertical; }
.form-hint { font-size: 0.8125rem; color: rgba(74,74,74,0.6); margin-top: 0.375rem; }
.required { color: var(--coral); }
.optional { font-size: 0.8rem; color: rgba(74,74,74,0.5); font-weight: 400; }

.form-field--checkbox { margin-bottom: 1.25rem; }
.checkbox-label { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; color: rgba(74,74,74,0.75); font-size: 0.875rem; line-height: 1.6; }
.checkbox-label input[type="checkbox"] { margin-top: 2px; width: 1.25rem; height: 1.25rem; flex-shrink: 0; accent-color: var(--sage); cursor: pointer; }
.checkbox-label a { color: var(--sage); text-decoration: underline; text-underline-offset: 2px; }

.form-error { display: block; color: #dc2626; font-size: 0.8125rem; margin-top: 0.375rem; min-height: 1.2em; }

.btn-idle, .btn-loading { display: flex; align-items: center; justify-content: center; gap: 0.75rem; }

.form-status { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 1.5rem; border-radius: var(--radius-xl); margin-top: 1.5rem; font-size: 0.95rem; }
.form-status > span:first-child { font-size: 2rem; flex-shrink: 0; }
.form-status strong { display: block; font-family: 'Quicksand', system-ui, sans-serif; font-weight: 700; margin-bottom: 0.25rem; }
.form-status p { margin: 0; line-height: 1.5; }
.form-status-note { font-size: 0.8125rem; color: rgba(74,74,74,0.6); margin-top: 0.5rem !important; }
.form-status--success { background: linear-gradient(135deg, rgba(61,139,111,0.12), rgba(255,213,79,0.12)); border: 2px solid rgba(61,139,111,0.25); color: var(--forest); }
.form-status--error { background: #fef2f2; border: 2px solid #fecaca; color: #991b1b; }

.form-privacy-note { margin-top: 1.5rem; padding-top: 1rem; border-top: 2px solid rgba(61,139,111,0.1); text-align: center; font-size: 0.8125rem; color: rgba(74,74,74,0.6); }

.alt-contact { margin-top: 2.5rem; text-align: center; }
.alt-contact > p { color: rgba(74,74,74,0.7); margin-bottom: 1rem; }
.alt-contact-links { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; justify-content: center; }
@media (min-width: 640px) { .alt-contact-links { flex-direction: row; } }
.alt-contact-btn { display: inline-flex; align-items: center; gap: 0.625rem; background: #fff; color: var(--forest); font-family: 'Quicksand', system-ui, sans-serif; font-weight: 600; padding: 0.75rem 1.5rem; border-radius: var(--radius-full); border: 2px solid rgba(61,139,111,0.2); box-shadow: var(--shadow-lg); transition: all 0.3s ease; text-decoration: none; }
.alt-contact-btn:hover { border-color: rgba(61,139,111,0.4); background: var(--cream); color: var(--forest); box-shadow: var(--shadow-xl); }

/* ==========================================================================
   27. Stats grid variants
   ========================================================================== */
.stats-grid--3 { grid-template-columns: repeat(3, 1fr); max-width: 36rem; }
.stat-item { text-align: center; }
.stat-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.stat-label { font-family: 'Quicksand', system-ui, sans-serif; font-weight: 700; color: var(--forest); font-size: 0.9rem; }
.stat-sub { font-size: 0.75rem; color: rgba(74,74,74,0.6); margin-top: 0.125rem; }

/* ==========================================================================
   28. Single post additions
   ========================================================================== */
.single-hero-decor { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.single-hero-decor-1 { top: 2rem; right: 2rem; width: 10rem; height: 10rem; background: rgba(255,213,79,0.15); }
.single-hero-decor-2 { bottom: 3rem; left: 2rem; width: 14rem; height: 14rem; background: rgba(196,165,222,0.12); }

.post-category-badge { display: inline-block; background: rgba(255,255,255,0.85); color: var(--sage); padding: 0.375rem 1rem; border-radius: var(--radius-full); font-family: 'Quicksand', system-ui, sans-serif; font-weight: 600; font-size: 0.8125rem; margin-bottom: 1.25rem; border: 2px solid rgba(61,139,111,0.2); }

.post-meta-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; font-size: 0.875rem; color: rgba(74,74,74,0.65); }

.post-content-wrap { background: #fff; padding: 3rem 0; }
.post-content-inner { max-width: 800px; margin: 0 auto; padding: 0 1rem; }

.post-cta-box { background: linear-gradient(135deg, var(--cream), rgba(255,158,128,0.1)); border: 2px solid rgba(255,158,128,0.2); border-radius: var(--radius-2xl); padding: 2rem; text-align: center; margin: 3rem 0; }
.post-cta-box h3 { font-family: 'Quicksand', system-ui, sans-serif; font-weight: 700; color: var(--forest); margin-bottom: 0.5rem; }
.post-cta-box p { color: rgba(74,74,74,0.75); margin-bottom: 1.25rem; }

.post-taxonomy { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid rgba(61,139,111,0.15); display: flex; flex-wrap: wrap; gap: 0.75rem; font-size: 0.875rem; color: rgba(74,74,74,0.7); }
.post-taxonomy a { color: var(--sage); text-decoration: underline; text-underline-offset: 2px; }

/* Post navigation (BEM names for new template) */
.post-nav-inner { max-width: 800px; margin: 0 auto; padding: 0 1rem; display: flex; justify-content: space-between; align-items: stretch; gap: 1rem; }
.post-nav-link { display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.25rem; border-radius: var(--radius-xl); border: 2px solid rgba(61,139,111,0.15); background: #fff; color: var(--charcoal); text-decoration: none; transition: all 0.3s ease; max-width: 48%; }
.post-nav-link:hover { border-color: var(--sage); box-shadow: var(--shadow-lg); color: var(--sage); }
.post-nav-link--next { margin-left: auto; flex-direction: row-reverse; }
.post-nav-arrow { font-size: 1.25rem; color: var(--sage); flex-shrink: 0; }
.post-nav-text { display: flex; flex-direction: column; }
.post-nav-label { font-size: 0.75rem; color: rgba(74,74,74,0.55); }
.post-nav-title { font-family: 'Quicksand', system-ui, sans-serif; font-weight: 600; color: var(--forest); font-size: 0.9rem; line-height: 1.35; }

/* Crosslink extended */
.crosslink-block { display: flex; align-items: center; justify-content: space-between; gap: 2rem; max-width: 56rem; margin: 0 auto; padding: 2.5rem; }
.crosslink-text h3 { font-family: 'Quicksand', system-ui, sans-serif; font-weight: 700; color: var(--forest); font-size: 1.25rem; margin-bottom: 0.75rem; }
.crosslink-text p { color: rgba(74,74,74,0.75); margin-bottom: 1.25rem; line-height: 1.6; }
.crosslink-icon { font-size: 4rem; opacity: 0.6; flex-shrink: 0; }
@media (max-width: 640px) { .crosslink-block { flex-direction: column; text-align: center; } .crosslink-icon { display: none; } }

/* ==========================================================================
   29. Blog listing (home.php / archive.php)
   ========================================================================== */
.blog-filter-bar { background: #fff; border-bottom: 1px solid rgba(61,139,111,0.12); padding: 1rem 0; position: sticky; top: 72px; z-index: 99; box-shadow: 0 2px 8px rgba(44,95,77,0.06); }
.blog-filter-inner { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.blog-filter-btn { padding: 0.4rem 1.125rem; border-radius: var(--radius-full); font-family: 'Quicksand', system-ui, sans-serif; font-weight: 600; font-size: 0.8125rem; color: var(--forest); background: var(--cream); border: 2px solid transparent; text-decoration: none; transition: all 0.2s ease; }
.blog-filter-btn:hover { background: rgba(61,139,111,0.1); color: var(--sage); border-color: rgba(61,139,111,0.2); }
.blog-filter-btn.is-active { background: var(--sage); color: #fff; border-color: var(--sage); }

.blog-card-thumb { display: block; overflow: hidden; border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
.blog-card-thumb img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.05); }

.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-cat { display: inline-block; background: rgba(61,139,111,0.1); color: var(--sage); padding: 0.25rem 0.75rem; border-radius: var(--radius-full); font-family: 'Quicksand', system-ui, sans-serif; font-weight: 600; font-size: 0.75rem; margin-bottom: 0.75rem; }
.blog-card-title { font-family: 'Quicksand', system-ui, sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.625rem; }
.blog-card-title a { color: var(--forest); text-decoration: none; }
.blog-card-title a:hover { color: var(--sage); }
.blog-card-excerpt { color: rgba(74,74,74,0.8); font-size: 0.875rem; line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-top: auto; }
.blog-card-date { font-size: 0.75rem; color: rgba(74,74,74,0.55); }
.blog-card-link { font-family: 'Quicksand', system-ui, sans-serif; font-weight: 600; font-size: 0.8125rem; color: var(--sage); text-decoration: none; transition: color 0.2s; }
.blog-card-link:hover { color: var(--forest); }

.blog-pagination { margin-top: 3rem; display: flex; justify-content: center; }
.blog-pagination .nav-links { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.blog-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; padding: 0.5rem 1rem; border-radius: var(--radius-lg); border: 2px solid rgba(61,139,111,0.2); color: var(--forest); font-family: 'Quicksand', system-ui, sans-serif; font-weight: 600; font-size: 0.875rem; text-decoration: none; transition: all 0.2s; }
.blog-pagination .page-numbers:hover { background: rgba(61,139,111,0.08); border-color: var(--sage); }
.blog-pagination .page-numbers.current { background: var(--sage); color: #fff; border-color: var(--sage); }

.no-posts { text-align: center; padding: 4rem 1rem; color: rgba(74,74,74,0.7); font-size: 1.05rem; }
.no-posts p { margin-bottom: 1.5rem; }

/* ==========================================================================
   30. Archive page
   ========================================================================== */
.archive-type-badge { display: inline-block; background: rgba(61,139,111,0.1); color: var(--sage); padding: 0.375rem 1rem; border-radius: var(--radius-full); font-family: 'Quicksand', system-ui, sans-serif; font-weight: 600; font-size: 0.8125rem; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.archive-breadcrumb { padding: 0.75rem 0; border-bottom: 1px solid rgba(61,139,111,0.1); background: var(--cream); }
.archive-breadcrumb a { font-family: 'Quicksand', system-ui, sans-serif; font-weight: 600; font-size: 0.875rem; color: var(--sage); text-decoration: none; }
.archive-breadcrumb a:hover { color: var(--forest); }

/* ==========================================================================
   31. 404 page
   ========================================================================== */
.error-404-emoji { font-size: 5rem; margin-bottom: 1.5rem; }
.error-404-links { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 2.5rem; }
.error-404-search { max-width: 28rem; margin: 0 auto; }
.error-404-search label { display: block; font-family: 'Quicksand', system-ui, sans-serif; font-weight: 600; color: var(--forest); margin-bottom: 0.75rem; }
.error-404-search-inner { display: flex; gap: 0.5rem; }
.error-404-search-inner input { flex: 1; padding: 0.75rem 1.25rem; border: 2px solid rgba(61,139,111,0.2); border-radius: var(--radius-xl); font-size: 0.9rem; outline: none; background: #fff; }
.error-404-search-inner input:focus { border-color: var(--sage); }
.error-404-search-inner button { padding: 0.75rem 1rem; border-radius: var(--radius-xl); background: var(--sage); color: #fff; border: none; cursor: pointer; font-size: 1rem; transition: background 0.2s; }
.error-404-search-inner button:hover { background: var(--forest); }

/* ==========================================================================
   32. Header scroll state + hamburger animation
   ========================================================================== */
.site-header.is-scrolled { box-shadow: 0 2px 20px rgba(44,95,77,0.12); background: rgba(250,247,242,0.97); backdrop-filter: blur(12px); }

.hamburger.is-active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }

/* ==========================================================================
   33. POLISH — Bug fix: mobile menu class (CSS used .active, JS uses .is-open)
   ========================================================================== */
.mobile-menu.is-open { display: flex; }

/* ==========================================================================
   34. POLISH — Typography refinements
   ========================================================================== */
h1 {
  letter-spacing: -0.025em;
  line-height: 1.1;
}

h2 {
  letter-spacing: -0.018em;
  line-height: 1.15;
}

.front-hero .hero-content h1 {
  line-height: 1.06;
}

/* ==========================================================================
   35. POLISH — Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

/* ==========================================================================
   36. POLISH — Stats section: large gradient numbers
   ========================================================================== */
.stats-bar {
  background: #fff;
  border-top: 1px solid rgba(61,139,111,0.08);
  border-bottom: 1px solid rgba(61,139,111,0.08);
  padding: 2.5rem 0;
}

.stat-item { position: relative; }

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(61,139,111,0.18), transparent);
}

.stat-value {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.035em;
  line-height: 1;
  background: linear-gradient(135deg, var(--forest) 0%, var(--sage) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  margin-top: 0.35rem;
  font-size: 0.775rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600 !important;
  color: rgba(74,74,74,0.48) !important;
}

.stat-icon {
  color: var(--sage);
  opacity: 0.55;
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   37. POLISH — Service card top accent borders
   ========================================================================== */
.service-card {
  border-top-width: 3px !important;
  border-top-style: solid !important;
}

.service-card--lavender { border-top-color: #C4A5DE !important; }
.service-card--sky      { border-top-color: #A8DADC !important; }
.service-card--sunshine { border-top-color: #FFD54F !important; }
.service-card--coral    { border-top-color: #FF9E80 !important; }
.service-card--sage     { border-top-color: #3D8B6F !important; }
.service-card--forest   { border-top-color: #2C5F4D !important; }

/* ==========================================================================
   38. POLISH — Hero background: richer radial mesh
   ========================================================================== */
.front-hero {
  background: linear-gradient(
    160deg,
    var(--cream) 0%,
    rgba(168,218,220,0.12) 40%,
    rgba(196,165,222,0.1) 70%,
    var(--cream) 100%
  ) !important;
}

.front-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 55% at 92% 18%, rgba(168,218,220,0.2) 0%, transparent 65%),
    radial-gradient(ellipse 38% 48% at 4%  85%, rgba(196,165,222,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 28% 32% at 60% 98%, rgba(255,213,79,0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.front-hero > * { position: relative; z-index: 1; }

/* ==========================================================================
   39. POLISH — Pricing card top accent + larger value
   ========================================================================== */
.pricing-card {
  position: relative;
  overflow: hidden;
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--sky));
  border-radius: var(--radius-full) var(--radius-full) 0 0;
}

.pricing-card--coral::after {
  background: linear-gradient(90deg, var(--coral), var(--sunshine));
}

.pricing-value {
  font-size: 2.25rem !important;
  letter-spacing: -0.03em;
}

/* ==========================================================================
   40. POLISH — Blog card (listing) placeholder when no image
   ========================================================================== */
.blog-card-thumb {
  aspect-ratio: 16 / 9;
  min-height: 160px;
  background: linear-gradient(
    135deg,
    rgba(61,139,111,0.09) 0%,
    rgba(168,218,220,0.14) 50%,
    rgba(196,165,222,0.1) 100%
  );
}

/* ==========================================================================
   41. POLISH — Button hover: lift effect
   ========================================================================== */
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 10px 28px rgba(255,158,128,0.32) !important;
}

.btn-secondary:hover,
.btn--secondary:hover {
  transform: translateY(-2px);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.nav-cta a:hover {
  transform: translateY(-1px) scale(1.04) !important;
}

/* ==========================================================================
   42. POLISH — Highlight cards: top border accent on hover
   ========================================================================== */
.highlight-card {
  border-top: 3px solid rgba(61,139,111,0.1);
}

.highlight-card:hover {
  border-top-color: var(--sage) !important;
}

/* ==========================================================================
   43. POLISH — O mnie: photo placeholder (replaces emoji box)
   ========================================================================== */
.photo-placeholder {
  position: relative;
  width: 210px;
  height: 230px;
  border-radius: var(--radius-2xl);
  background: linear-gradient(
    160deg,
    rgba(61,139,111,0.1),
    rgba(168,218,220,0.18),
    rgba(196,165,222,0.12)
  );
  border: 2px solid rgba(61,139,111,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  margin: 0 auto;
}

.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 18%, rgba(255,213,79,0.1), transparent 48%),
    radial-gradient(circle at 75% 82%, rgba(168,218,220,0.14), transparent 50%);
}

.photo-placeholder .photo-svg {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 130px;
}

/* ==========================================================================
   44. POLISH — Value cards: top border accent on hover
   ========================================================================== */
.value-card {
  border-top: 3px solid rgba(61,139,111,0.1) !important;
  transition: border-top-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease !important;
}

.value-card:hover {
  border-top-color: var(--sage) !important;
}

/* ==========================================================================
   45. POLISH — Crosslink block: subtle gradient bg
   ========================================================================== */
.crosslink-block {
  background: linear-gradient(135deg, #fff 0%, rgba(61,139,111,0.03) 100%) !important;
}

/* ==========================================================================
   46. POLISH — Mobile refinements
   ========================================================================== */
@media (max-width: 767px) {
  h1 { font-size: 2.1rem; letter-spacing: -0.02em; }
  .stat-value { font-size: 2rem !important; }
  .section { padding: 3.5rem 0 !important; }
  .front-hero { padding: 4rem 0 6rem !important; }
}
.hamburger.is-active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

