/* ─── GOOGLE FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

/* ─── TOKENS ─── */
:root {
  --green:        #9fc9b5;
  --green-dark:   #2f5f4b;
  --green-soft:   #edf7f2;
  --green-mid:    #c5e4d4;
  --cream:        #fbf8f1;
  --beige:        #efe6d5;
  --gold:         #c2a86b;
  --ink:          #25352f;
  --muted:        #61726b;
  --white:        #ffffff;
  --shadow:       0 18px 50px rgba(38,64,53,.13);
  --shadow-sm:    0 6px 20px rgba(38,64,53,.08);
  --shadow-hover: 0 28px 60px rgba(38,64,53,.18);
  --radius:       24px;
  --radius-sm:    14px;
  --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.15; margin-top: 0; }
h1, h2 { font-family: var(--font-display); }

/* ─── LAYOUT ─── */
.container { width: min(1120px, 92%); margin: 0 auto; }
.narrow    { max-width: 780px; }
.center    { text-align: center; }

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,248,241,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(47,95,75,.1);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 4px 28px rgba(38,64,53,.1); }

.nav-wrapper {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--green-dark);
  flex-shrink: 0;
}
.logo-mark {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  display: block;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--green-dark);
  flex-shrink: 0;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.logo-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
}
.logo-text {
  font-size: 1.12rem;
  font-weight: 800;
  font-family: var(--font-body);
}
.logo-author {
  margin-top: 1px;
  font-family: 'Dancing Script', cursive;
  font-style: normal;
  font-weight: 400;
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: .02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: .88rem;
}
.main-nav a {
  padding: 8px 12px;
  color: var(--muted);
  font-weight: 600;
  border-radius: 10px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--green-dark);
  background: var(--green-soft);
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--green-dark);
  color: white;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-toggle:hover { background: #244b3b; }

/* ─── EYEBROW ─── */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--green-dark);
  font-weight: 700;
  font-size: .75rem;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ─── HERO ─── */
.hero {
  padding: 48px 0 52px;
  background:
    radial-gradient(ellipse at 80% 0%,   rgba(159,201,181,.45) 0%, transparent 52%),
    radial-gradient(ellipse at 0%  100%, rgba(194,168,107,.12) 0%, transparent 48%),
    var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159,201,181,.18), transparent 70%);
  right: -120px;
  top: -180px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}

.hero h1, .page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.1;
  margin: 0 0 20px;
  color: #1d332b;
  font-weight: 800;
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.72;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: .95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  font-family: var(--font-body);
  letter-spacing: .01em;
}
.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(47,95,75,.22);
}
.btn-primary:hover {
  background: #244b3b;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(47,95,75,.3);
}
.btn-secondary {
  background: var(--white);
  border-color: rgba(47,95,75,.25);
  color: var(--green-dark);
}
.btn-secondary:hover {
  background: var(--green-soft);
  border-color: var(--green-dark);
  transform: translateY(-2px);
}

/* ─── HERO CARD ─── */
.hero-card {
  background: var(--white);
  border: 1px solid rgba(47,95,75,.1);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  border-radius: var(--radius) var(--radius) 0 0;
}
.hero-card h2 {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 18px;
}
.hero-card ul {
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
}
.hero-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .94rem;
  color: var(--ink);
  line-height: 1.5;
}
.hero-card ul li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--green-soft);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 900;
  margin-top: 2px;
}

/* ─── QUOTE BOX ─── */
.quote-box {
  background: #1d332b !important;
  border: none !important;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.quote-box::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(255,255,255,.2);
  line-height: 1;
  display: block;
  margin-bottom: -20px;
}
.quote-box p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff !important;
  margin: 0;
  line-height: 1.6;
  font-style: italic;
}

/* ─── NOTICE ─── */
.notice {
  margin-bottom: 28px;
  background: #fffaf0;
  border: 1px solid rgba(194,168,107,.3);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
}

/* ─── SECTIONS ─── */
.section      { padding: 80px 0; }
.section-soft { background: var(--green-soft); }

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}
.section-heading h2,
.split h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--ink);
}
.section-heading p,
.split > div > p {
  color: var(--muted);
}

/* ─── CARDS ─── */
.cards       { display: grid; gap: 22px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border: 1px solid rgba(47,95,75,.1);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card h3 {
  color: var(--green-dark);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.card p { color: var(--muted); margin-bottom: 0; font-size: .94rem; }

/* ─── FEATURE GRID ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: var(--white);
  border: 1px solid rgba(47,95,75,.1);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s;
  display: block;
  position: relative;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green-mid);
}
.feature-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .84rem;
  margin-bottom: 16px;
  transition: background 0.22s;
}
.feature-card:hover span { background: var(--green-mid); }
.feature-card h3 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 1.1rem;
  font-weight: 700;
}
.feature-card p {
  color: var(--muted);
  margin: 0;
  font-size: .92rem;
  line-height: 1.58;
}
.feature-card::after {
  content: '→';
  display: block;
  margin-top: 16px;
  color: var(--green-dark);
  font-weight: 800;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
}
.feature-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* ─── SPLIT / ABOUT ─── */
.split {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 52px;
  align-items: center;
}
.text-link {
  color: var(--green-dark);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  transition: gap 0.22s var(--ease);
}
.text-link:hover { gap: 12px; }

/* ─── NEWSLETTER ─── */
.newsletter { padding-top: 0; }
.newsletter-box {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 44px;
  background: var(--green-dark);
  color: white;
  border-radius: 32px;
  padding: 52px;
  position: relative;
  overflow: hidden;
}
.newsletter-box::after {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(159,201,181,.12);
  right: -60px;
  bottom: -100px;
  pointer-events: none;
}
.newsletter-box h2 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin: 0 0 12px;
}
.newsletter-box .eyebrow { color: var(--green); }
.newsletter-box .eyebrow::before { background: rgba(159,201,181,.6); }
.newsletter-box > div:first-child > p { color: rgba(255,255,255,.75); margin-bottom: 0; }

/* ─── FORMS ─── */
.signup-form,
.contact-form {
  display: grid;
  gap: 12px;
  background: white;
  color: var(--ink);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  z-index: 1;
}
.signup-form input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid rgba(47,95,75,.18);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  font-size: .95rem;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.signup-form input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(47,95,75,.1);
  background: var(--white);
}
.signup-form label,
.contact-form label {
  font-weight: 700;
  color: var(--green-dark);
  font-size: .88rem;
  margin-bottom: -4px;
}
.signup-form small { color: var(--muted); font-size: .8rem; }
.contact-form textarea { resize: vertical; min-height: 120px; }

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 72px 0 64px;
  background: linear-gradient(135deg, var(--green-soft) 0%, var(--cream) 65%);
  border-bottom: 1px solid rgba(47,95,75,.08);
}
.page-hero .lead { max-width: 680px; }

/* ─── BLOG ─── */
.blog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
}
.sidebar {
  background: white;
  border: 1px solid rgba(47,95,75,.1);
  border-radius: var(--radius);
  padding: 24px;
  height: max-content;
  position: sticky;
  top: 96px;
}
.sidebar h2 {
  font-size: .75rem;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: var(--font-body);
}
.sidebar a {
  display: block;
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 600;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
  font-size: .91rem;
}
.sidebar a:hover { background: var(--green-soft); color: var(--green-dark); }

.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.post-card {
  background: var(--white);
  border: 1px solid rgba(47,95,75,.1);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.post-card h3 {
  color: var(--green-dark);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.post-card p {
  color: var(--muted);
  font-size: .93rem;
  flex: 1;
}
.post-card a {
  color: var(--green-dark);
  font-weight: 700;
  font-size: .9rem;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.post-card a:hover { gap: 8px; }

.tag {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: .76rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ─── POST LIST ─── */
.post-list { display: grid; gap: 16px; }
.post-list article {
  background: white;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(47,95,75,.1);
  transition: box-shadow 0.22s var(--ease), transform 0.22s var(--ease);
}
.post-list article:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.post-list article h3 {
  color: var(--green-dark);
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 700;
}
.post-list article p { color: var(--muted); margin: 0; font-size: .92rem; }

/* ─── CONTENT PAGES ─── */
.content h2 { margin-top: 36px; color: var(--green-dark); font-size: 1.5rem; }
.content p  { color: var(--muted); }

/* ─── PRODUCTS ─── */
.product .btn { margin-top: 14px; }

/* ─── NEWS CARDS ─── */
.news-grid { display: flex; flex-direction: column; gap: 32px; }
.news-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 36px 40px;
  transition: box-shadow .25s var(--ease);
}
.news-card:hover { box-shadow: var(--shadow); }
.news-card--featured { border-left: 5px solid var(--green-dark); }
.news-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.news-date { font-size: .8rem; color: var(--muted); margin-left: auto; }
.news-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.25;
}
.news-intro {
  font-size: 1.02rem;
  color: var(--muted);
  margin-bottom: 28px;
  border-bottom: 1px solid var(--green-mid);
  padding-bottom: 20px;
}
.news-body h3 { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin: 22px 0 8px; }
.news-body ul { padding-left: 1.2em; color: var(--muted); }
.news-body li { margin-bottom: 5px; font-size: .94rem; }
.news-body p  { color: var(--muted); font-size: .95rem; }
.news-highlight {
  background: var(--green-soft);
  border: 1.5px solid var(--green-mid);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 20px 0;
}
.news-highlight.pcd { border-color: var(--gold); background: #fdf8ef; }
.news-highlight h3 { margin-top: 0; color: var(--ink); }
.news-footer {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--green-mid);
}
.news-tag {
  font-size: .75rem;
  font-weight: 700;
  background: var(--green-soft);
  color: var(--green-dark);
  border: 1.5px solid var(--green-mid);
  border-radius: 20px;
  padding: 3px 12px;
  letter-spacing: .02em;
}
.pill-alert { background: #fff3e0; color: #b45309; border-color: #fbbf24; }
@media (max-width: 640px) {
  .news-card { padding: 24px 20px; }
  .news-title { font-size: 1.25rem; }
  .news-date { margin-left: 0; width: 100%; }
}

/* ─── TIMELINE ─── */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 8px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--green-mid);
}
.timeline-item {
  position: relative;
  padding-left: 56px;
  margin-bottom: 40px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 10px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-dark);
  border: 3px solid var(--green-mid);
}
.timeline-year {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1.5px solid var(--green-mid);
  border-radius: 20px;
  padding: 2px 12px;
  margin-bottom: 8px;
  letter-spacing: .03em;
}
.timeline-content h3 { font-size: 1.1rem; margin-bottom: 6px; color: var(--ink); }
.timeline-content p  { color: var(--muted); font-size: .95rem; }
.timeline-photo {
  margin-top: 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-width: 380px;
}
.timeline-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.photo-caption {
  display: block;
  font-size: .78rem;
  color: var(--muted);
  padding: 6px 10px;
  background: var(--green-soft);
  font-style: italic;
}

/* ─── INSTAGRAM CARD ─── */
.instagram-card {
  display: flex;
  align-items: center;
  gap: 28px;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 32px 36px;
  max-width: 720px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.instagram-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  padding: 3px;
}
.instagram-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}
.instagram-info { flex: 1; min-width: 200px; }
.instagram-handle {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0 0 2px;
}
.instagram-name {
  color: var(--muted);
  font-size: .88rem;
  margin: 0 0 10px;
}
.instagram-stats {
  display: flex;
  gap: 20px;
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.instagram-stats strong { color: var(--ink); }
.instagram-bio {
  font-size: .83rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.btn-instagram {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 50px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  text-align: center;
  white-space: nowrap;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.btn-instagram:hover { opacity: .88; transform: translateY(-2px); }
@media (max-width: 640px) {
  .instagram-card { padding: 24px 20px; gap: 18px; }
  .btn-instagram { width: 100%; }
  .timeline::before { left: 12px; }
  .timeline-item { padding-left: 40px; }
  .timeline-dot { left: 4px; }
}

/* ─── FOOTER ─── */
.site-footer {
  background: #1d332b;
  color: #e5eee9;
  padding: 52px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  padding-bottom: 40px;
}
.site-footer strong {
  font-size: 1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  color: var(--white);
}
.site-footer p {
  color: rgba(229,238,233,.65);
  margin: 0;
  font-size: .91rem;
  line-height: 1.65;
}
.site-footer a {
  display: block;
  color: rgba(229,238,233,.7);
  margin-top: 10px;
  font-size: .91rem;
  transition: color 0.2s;
}
.site-footer a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  color: rgba(229,238,233,.4);
  font-size: .82rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

/* ─── CONTACT ─── */
.contact-form { box-shadow: var(--shadow); }

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-dark);
  color: white;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(47,95,75,.3);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.2s;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: #244b3b;
  transform: translateY(-3px);
}

/* ─── NAV SEARCH ICON ─── */
.nav-search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: var(--muted);
  border: 1.5px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.nav-search svg { width: 18px; height: 18px; }
.nav-search:hover,
.nav-search.active {
  background: var(--green-soft);
  color: var(--green-dark);
  border-color: rgba(47,95,75,.15);
}

/* ─── SEARCH PAGE ─── */
.search-bar-wrapper {
  max-width: 640px;
  margin-top: 32px;
  position: relative;
}
.search-bar-wrapper input {
  width: 100%;
  padding: 16px 52px 16px 22px;
  border-radius: 999px;
  border: 2px solid rgba(47,95,75,.2);
  font: inherit;
  font-size: 1.05rem;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-bar-wrapper input:focus {
  outline: none;
  border-color: var(--green-dark);
  box-shadow: 0 0 0 4px rgba(47,95,75,.1);
}
.search-bar-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1.15rem;
  pointer-events: none;
}
.search-count {
  margin-top: 18px;
  font-size: .88rem;
  color: var(--muted);
  min-height: 22px;
}
.search-results { margin-top: 24px; display: grid; gap: 14px; }
.search-result-item {
  background: var(--white);
  border: 1px solid rgba(47,95,75,.1);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  display: block;
}
.search-result-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.search-result-item .result-cat {
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.search-result-item h3 { margin: 0 0 6px; color: var(--ink); font-size: 1.05rem; }
.search-result-item p  { margin: 0; color: var(--muted); font-size: .91rem; line-height: 1.5; }

.search-empty {
  text-align: center;
  padding: 56px 20px;
  color: var(--muted);
}
.search-empty .empty-icon { font-size: 2.8rem; margin-bottom: 12px; }
.search-empty p { margin: 0; font-size: 1rem; }

/* ─── NEWSLETTER SUCCESS ─── */
.form-success { text-align: center; padding: 28px 16px; }
.form-success .success-icon {
  width: 54px; height: 54px;
  background: var(--green-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 14px;
}
.form-success h3 { color: var(--green-dark); margin: 0 0 8px; font-size: 1.1rem; }
.form-success p  { color: var(--muted); font-size: .92rem; margin: 0; }

/* ─── SCROLL REVEAL ─── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE: tablet ─── */
@media (max-width: 980px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 4%;
    right: 4%;
    background: white;
    border: 1px solid rgba(47,95,75,.12);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .main-nav.open   { display: flex; }
  .nav-toggle      { display: block; }

  .hero-grid,
  .split,
  .newsletter-box,
  .blog-layout,
  .footer-grid      { grid-template-columns: 1fr; }

  .cards.three,
  .feature-grid,
  .post-grid        { grid-template-columns: 1fr 1fr; }

  .sidebar          { position: static; top: auto; }
  .hero             { padding-top: 52px; }
  .newsletter-box   { padding: 36px; }
  .footer-bottom    { flex-direction: column; text-align: center; }
}

/* ─── RESPONSIVE: mobile ─── */
@media (max-width: 640px) {
  .cards.three,
  .feature-grid,
  .post-grid        { grid-template-columns: 1fr; }

  .hero h1,
  .page-hero h1     { font-size: 2.15rem; }

  .section          { padding: 56px 0; }
  .newsletter-box   { padding: 28px; }
  .hero-actions     { flex-direction: column; }
  .btn              { width: 100%; justify-content: center; }
  .hero::after      { display: none; }
}


/* ─── ILLUSTRATIONS & ENHANCED CONTENT ─── */
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 42px;
  align-items: center;
}
.illustration-card {
  background: var(--white);
  border: 1px solid rgba(47,95,75,.1);
  border-radius: 32px;
  padding: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.illustration-card img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}
.hero-illustration img { aspect-ratio: 1 / 1; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.deep-card {
  background: var(--white);
  border: 1px solid rgba(47,95,75,.1);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.deep-card h2, .deep-card h3 { color: var(--green-dark); }
.deep-card p, .deep-card li { color: var(--muted); }
.deep-card ul, .deep-card ol { padding-left: 20px; margin-bottom: 0; }
.highlight-box {
  background: var(--green-dark);
  color: var(--white);
  border-radius: 30px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.highlight-box h2, .highlight-box h3 { color: var(--white); font-family: var(--font-display); }
.highlight-box p, .highlight-box li { color: rgba(255,255,255,.78); }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .84rem;
  font-weight: 700;
}
.article-body {
  background: var(--white);
  border: 1px solid rgba(47,95,75,.1);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.article-body h2 { color: var(--green-dark); font-size: 1.55rem; margin-bottom: 12px; }
.article-body h3 { color: var(--green-dark); margin-top: 24px; }
.article-body p, .article-body li { color: var(--muted); }
.article-body ul, .article-body ol { padding-left: 22px; }
.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  padding: 5px 12px;
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px;
}
.checklist-list { display: grid; gap: 12px; margin-top: 18px; }
.checklist-list li { list-style: none; position: relative; padding-left: 30px; }
.checklist-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--green-dark); font-weight: 900; }
@media (max-width: 980px) {
  .page-hero-grid,
  .content-grid { grid-template-columns: 1fr; }
}


/* ─── AJUSTES DE MARCA E ILUSTRAÇÕES ─── */
.page-hero h1 {
  font-size: clamp(2.35rem, 4.2vw, 3.65rem);
  line-height: 1.08;
}
.page-hero .lead {
  max-width: 720px;
  font-size: 1.08rem;
}
.page-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(280px, 30vw, 390px);
  gap: clamp(34px, 5vw, 66px);
  align-items: center;
}
.page-title-copy {
  min-width: 0;
}
.page-title-illustration {
  width: clamp(280px, 30vw, 390px);
  justify-self: end;
  background: var(--white);
  border: 1px solid rgba(47,95,75,.1);
  border-radius: 32px;
  padding: 14px;
  box-shadow: var(--shadow-sm);
}
.page-title-illustration img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}
.page-title-illustration.page-title-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}
.hero-illustration {
  max-width: clamp(380px, 35vw, 500px);
  justify-self: center;
}
.hero-illustration img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.logo-mark {
  background: transparent;
}
.logo-mark img {
  object-fit: cover;
}
@media (max-width: 980px) {
  .page-title-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .page-title-illustration {
    justify-self: start;
    width: min(330px, 78vw);
  }
  .hero-illustration {
    max-width: min(420px, 84vw);
    justify-self: start;
  }
  .logo-mark { width: 50px; height: 50px; }
  .logo-text { font-size: 1.02rem; }
  .logo-author { font-size: .86rem; }
}
@media (max-width: 640px) {
  .nav-wrapper { min-height: 72px; }
  .main-nav { top: 72px; }
  .logo { gap: 10px; }
  .logo-mark { width: 46px; height: 46px; border-radius: 13px; }
  .logo-text { font-size: .98rem; }
  .logo-author { font-size: .82rem; }
  .page-title-illustration { width: min(300px, 82vw); }
  .hero-illustration { max-width: min(340px, 86vw); }
}
