/*
Theme Name: HesoWP
Author: HesoWP
Version: 2.3.6
*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;0,8..60,700;1,8..60,400&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --garnexo-bg: #F4F4F2;
  --garnexo-bg-alt: #E7E7E4;
  --garnexo-text: #1F1F1E;
  --garnexo-text-secondary: #5A5A57;
  --garnexo-accent: #C5821C;
  --garnexo-accent-light: #FBF1DE;
  --garnexo-accent-dark: #8E5C0E;
  --garnexo-border: #CFCFCB;
  --garnexo-card-bg: #FFFFFF;
  --garnexo-f-display: 'Playfair Display', Georgia, serif;
  --garnexo-f-body: 'Source Serif 4', Georgia, serif;
  --garnexo-f-ui: 'DM Sans', Arial, sans-serif;
  --garnexo-radius: 10px;
  --garnexo-radius-lg: 20px;
  --garnexo-shadow: 0 4px 16px rgba(0,0,0,0.08);
  --garnexo-shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

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

body {
  font-family: var(--garnexo-f-body);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--garnexo-text);
  background: var(--garnexo-bg);
}

.u-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.u-label {
  display: inline-block;
  font-family: var(--garnexo-f-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--garnexo-accent);
  background: var(--garnexo-accent-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--garnexo-radius);
  margin-bottom: 1rem;
}

.u-text-center { text-align: center; }

/* ===== HEADER / NAV ===== */
.c-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(244,244,242,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--garnexo-border);
  transition: background 0.3s;
}

.c-header.is-solid {
  background: var(--garnexo-bg);
}

.c-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a.logo {
  font-family: var(--garnexo-f-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--garnexo-text);
  text-decoration: none;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--garnexo-text) 40%, var(--garnexo-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.c-nav a {
  font-family: var(--garnexo-f-ui);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--garnexo-text);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: var(--garnexo-radius);
  transition: background 0.2s;
}

.c-nav a:hover { background: var(--garnexo-bg-alt); }

.c-nav__mega {
  position: relative;
}

.c-nav__mega-drop {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--garnexo-card-bg);
  border: 1px solid var(--garnexo-border);
  border-radius: var(--garnexo-radius-lg);
  box-shadow: var(--garnexo-shadow-lg);
  padding: 1rem;
  min-width: 260px;
  z-index: 100;
}

.c-nav__mega:hover .c-nav__mega-drop {
  display: block;
}

.c-nav__mega-drop a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--garnexo-text);
  font-size: 0.88rem;
  border-radius: var(--garnexo-radius);
}

.c-nav__mega-drop a:hover { background: var(--garnexo-accent-light); }

.c-nav__cta a {
  background: var(--garnexo-accent);
  color: #fff;
  font-weight: 700;
  border-radius: var(--garnexo-radius);
  padding: 0.5rem 1rem;
}

.c-nav__cta a:hover {
  background: var(--garnexo-accent-dark);
}

.c-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.c-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--garnexo-text);
  border-radius: 2px;
  transition: all 0.3s;
}

.c-mobile-nav {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--garnexo-bg);
  border-bottom: 1px solid var(--garnexo-border);
  padding: 1rem 1.5rem;
  z-index: 850;
  flex-direction: column;
  gap: 0.5rem;
}

.c-mobile-nav.is-open { display: flex; }

.c-mobile-nav a {
  font-family: var(--garnexo-f-ui);
  font-size: 1rem;
  color: var(--garnexo-text);
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--garnexo-border);
}

.c-mobile-nav a:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .c-nav { display: none; }
  .c-burger { display: flex; }
}

/* ===== BUTTONS ===== */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--garnexo-radius);
  border: 2px solid transparent;
  font-family: var(--garnexo-f-ui);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 44px;
  min-width: 120px;
  box-sizing: border-box;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.2;
  text-decoration: none;
}

.c-btn--primary {
  background: var(--garnexo-accent);
  color: #fff;
  border-color: var(--garnexo-accent);
}

.c-btn--primary:hover {
  background: var(--garnexo-accent-dark);
  border-color: var(--garnexo-accent-dark);
}

.c-btn--outline {
  background: transparent;
  color: var(--garnexo-accent);
  border-color: var(--garnexo-accent);
}

.c-btn--outline:hover {
  background: var(--garnexo-accent-light);
}

/* ===== HERO ===== */
.garnexo-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  padding-top: 64px;
  overflow: hidden;
}

.garnexo-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #1F1F1E, #3a2e1a);
  z-index: 0;
}

.garnexo-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.garnexo-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,31,30,0.88) 0%, rgba(31,31,30,0.2) 60%, transparent 100%);
  pointer-events: none;
}

.garnexo-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 4rem 0 3rem;
}

.garnexo-hero__label {
  display: inline-block;
  font-family: var(--garnexo-f-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--garnexo-accent);
  margin-bottom: 1.25rem;
}

.garnexo-hero h1 {
  font-family: var(--garnexo-f-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  max-width: 820px;
  margin-bottom: 1.25rem;
}

.garnexo-hero__standfirst {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.82);
  max-width: 620px;
  line-height: 1.7;
}

.garnexo-hero__meta {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.garnexo-hero__meta span {
  font-family: var(--garnexo-f-ui);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

@media (max-width: 768px) {
  .garnexo-hero { min-height: 60vh; }
  .garnexo-hero h1 { font-size: 2rem; }
}

/* ===== PAGE HERO (inner pages) ===== */
.s-page-hero {
  background: var(--garnexo-bg-alt);
  padding: 6rem 0 3rem;
  border-bottom: 1px solid var(--garnexo-border);
}

.s-page-hero h1 {
  font-family: var(--garnexo-f-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.s-page-hero p {
  font-size: 1.1rem;
  color: var(--garnexo-text-secondary);
  max-width: 620px;
}

/* ===== PROSE ===== */
.garnexo-prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.garnexo-prose h2 {
  font-family: var(--garnexo-f-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  line-height: 1.25;
}

.garnexo-prose h3 {
  font-family: var(--garnexo-f-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
}

.garnexo-prose p {
  margin-bottom: 1.4rem;
  color: var(--garnexo-text);
}

.garnexo-prose ul, .garnexo-prose ol {
  margin: 1rem 0 1.4rem 1.5rem;
}

.garnexo-prose li { margin-bottom: 0.5rem; }

.garnexo-prose blockquote {
  border-left: 4px solid var(--garnexo-accent);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: var(--garnexo-accent-light);
  border-radius: 0 var(--garnexo-radius) var(--garnexo-radius) 0;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--garnexo-text);
}

.garnexo-prose blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.85rem;
  font-family: var(--garnexo-f-ui);
  color: var(--garnexo-text-secondary);
}

.garnexo-prose figure {
  margin: 2rem 0;
}

.garnexo-prose figure img {
  width: 100%;
  height: auto;
  border-radius: var(--garnexo-radius-lg);
  display: block;
}

.garnexo-prose figcaption {
  font-family: var(--garnexo-f-ui);
  font-size: 0.8rem;
  color: var(--garnexo-text-secondary);
  margin-top: 0.5rem;
  text-align: center;
}

/* ===== EDITOR NOTE ===== */
.garnexo-editor-note {
  background: var(--garnexo-accent-light);
  border-left: 4px solid var(--garnexo-accent);
  border-radius: 0 var(--garnexo-radius-lg) var(--garnexo-radius-lg) 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.garnexo-editor-note p {
  font-style: italic;
  color: var(--garnexo-text);
  margin: 0;
}

.garnexo-editor-note cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.82rem;
  font-family: var(--garnexo-f-ui);
  font-weight: 600;
  color: var(--garnexo-accent-dark);
}

/* ===== CHAPTER LIST ===== */
.garnexo-chapter-list {
  background: var(--garnexo-card-bg);
  border: 1px solid var(--garnexo-border);
  border-radius: var(--garnexo-radius-lg);
  padding: 2rem;
  margin: 2rem 0;
}

.garnexo-chapter-list h3 {
  font-family: var(--garnexo-f-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--garnexo-text-secondary);
  margin-bottom: 1.25rem;
}

.garnexo-chapter-list ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.garnexo-chapter-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--garnexo-border);
  font-family: var(--garnexo-f-ui);
  font-size: 0.92rem;
}

.garnexo-chapter-list li:last-child { border-bottom: none; }

.garnexo-chapter-list .ch-time {
  color: var(--garnexo-text-secondary);
  font-size: 0.8rem;
  white-space: nowrap;
  margin-left: 1rem;
}

/* ===== TWO-COLUMN COMPARISON ===== */
.garnexo-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.garnexo-comparison__col {
  background: var(--garnexo-card-bg);
  border: 1px solid var(--garnexo-border);
  border-radius: var(--garnexo-radius-lg);
  padding: 1.5rem;
}

.garnexo-comparison__col--before { border-top: 4px solid #b5b5b0; }
.garnexo-comparison__col--after { border-top: 4px solid var(--garnexo-accent); }

.garnexo-comparison__col h3 {
  font-family: var(--garnexo-f-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--garnexo-text-secondary);
  margin-bottom: 1rem;
}

.garnexo-comparison__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.garnexo-comparison__col li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--garnexo-border);
}

.garnexo-comparison__col li:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .garnexo-comparison { grid-template-columns: 1fr; }
}

/* ===== FAQ ACCORDION ===== */
.garnexo-faq {
  margin: 2rem 0;
}

.garnexo-faq__item {
  border-bottom: 1px solid var(--garnexo-border);
}

.garnexo-faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--garnexo-f-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--garnexo-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.garnexo-faq__question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--garnexo-accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.garnexo-faq__item.is-open .garnexo-faq__question::after {
  transform: rotate(45deg);
}

.garnexo-faq__answer {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--garnexo-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.garnexo-faq__item.is-open .garnexo-faq__answer {
  display: block;
}

/* ===== AUTHORS GRID ===== */
.garnexo-authors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.garnexo-author-card {
  background: var(--garnexo-card-bg);
  border: 1px solid var(--garnexo-border);
  border-radius: var(--garnexo-radius-lg);
  padding: 1.5rem;
  text-align: center;
}

.garnexo-author-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--garnexo-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--garnexo-f-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--garnexo-accent);
}

.garnexo-author-card h4 {
  font-family: var(--garnexo-f-ui);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.garnexo-author-card p {
  font-size: 0.82rem;
  color: var(--garnexo-text-secondary);
  margin: 0;
}

/* ===== CTA SECTION ===== */
.garnexo-cta {
  background: linear-gradient(135deg, #1F1F1E 0%, #3a2e1a 100%);
  padding: 5rem 0;
  text-align: center;
}

.garnexo-cta .u-label {
  color: var(--garnexo-accent);
  background: rgba(197,130,28,0.2);
}

.garnexo-cta h2 {
  font-family: var(--garnexo-f-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  max-width: 640px;
  margin: 0 auto 1.25rem;
  line-height: 1.25;
}

.garnexo-cta > .u-container > p {
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.garnexo-cta__form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.garnexo-cta__form input[type="email"] {
  padding: 0.8rem 1.25rem;
  border-radius: var(--garnexo-radius);
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: var(--garnexo-f-ui);
  font-size: 0.95rem;
  width: 280px;
  max-width: 100%;
  min-height: 44px;
  box-sizing: border-box;
}

.garnexo-cta__form input[type="email"]::placeholder { color: rgba(255,255,255,0.5); }

.garnexo-cta__form input[type="email"]:focus {
  outline: none;
  border-color: var(--garnexo-accent);
}

.garnexo-cta .micro {
  font-family: var(--garnexo-f-ui);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* ===== ARTICLE CARD ===== */
.c-card {
  background: var(--garnexo-card-bg);
  border: 1px solid var(--garnexo-border);
  border-radius: var(--garnexo-radius-lg);
  overflow: hidden;
  box-shadow: var(--garnexo-shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}

.c-card:hover {
  box-shadow: var(--garnexo-shadow-lg);
  transform: translateY(-2px);
}

.c-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.c-card__body { padding: 1.5rem; }

.c-card__category {
  font-family: var(--garnexo-f-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--garnexo-accent);
  margin-bottom: 0.5rem;
  display: block;
}

.c-card h3 {
  font-family: var(--garnexo-f-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.c-card p {
  font-size: 0.9rem;
  color: var(--garnexo-text-secondary);
  margin-bottom: 1rem;
}

/* ===== POSTS GRID ===== */
.garnexo-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

/* ===== TIMELINE (Contact) ===== */
.garnexo-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.garnexo-timeline__step {
  text-align: center;
  position: relative;
}

.garnexo-timeline__step::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -0.75rem;
  width: 1.5rem;
  height: 2px;
  background: var(--garnexo-border);
  pointer-events: none;
}

.garnexo-timeline__step:last-child::after { display: none; }

.garnexo-timeline__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--garnexo-accent);
  color: #fff;
  font-family: var(--garnexo-f-ui);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.garnexo-timeline__step h3 {
  font-family: var(--garnexo-f-ui);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.garnexo-timeline__step p {
  font-size: 0.82rem;
  color: var(--garnexo-text-secondary);
}

@media (max-width: 768px) {
  .garnexo-timeline {
    grid-template-columns: 1fr 1fr;
  }
  .garnexo-timeline__step::after { display: none; }
}

/* ===== CONTACT FORM ===== */
.garnexo-contact-section {
  padding: 4rem 0;
}

.c-form__group {
  margin-bottom: 1.25rem;
}

.c-form__label {
  display: block;
  font-family: var(--garnexo-f-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--garnexo-text);
  margin-bottom: 0.4rem;
}

.c-form__input,
.c-form__select,
.c-form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--garnexo-border);
  border-radius: var(--garnexo-radius);
  font-family: var(--garnexo-f-body);
  font-size: 1rem;
  color: var(--garnexo-text);
  background: var(--garnexo-card-bg);
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.c-form__input:focus,
.c-form__select:focus,
.c-form__textarea:focus {
  outline: none;
  border-color: var(--garnexo-accent);
}

.c-form__textarea { resize: vertical; min-height: 140px; }

.c-form__check {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--garnexo-text-secondary);
}

.c-form__check input[type="checkbox"] {
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--garnexo-accent);
}

.c-form__check a { color: var(--garnexo-accent); }

/* ===== ABOUT TEAM ===== */
.garnexo-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.garnexo-team-card {
  background: var(--garnexo-card-bg);
  border: 1px solid var(--garnexo-border);
  border-radius: var(--garnexo-radius-lg);
  padding: 1.75rem 1.5rem;
}

.garnexo-team-card__initial {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--garnexo-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--garnexo-f-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--garnexo-accent);
  margin-bottom: 1rem;
}

.garnexo-team-card h3 {
  font-family: var(--garnexo-f-ui);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.garnexo-team-card .role {
  font-size: 0.8rem;
  font-family: var(--garnexo-f-ui);
  color: var(--garnexo-accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.garnexo-team-card p {
  font-size: 0.88rem;
  color: var(--garnexo-text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* ===== METHODOLOGY ===== */
.garnexo-method-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.garnexo-method-item {
  background: var(--garnexo-bg-alt);
  border-radius: var(--garnexo-radius-lg);
  padding: 1.5rem;
  border-left: 4px solid var(--garnexo-accent);
}

.garnexo-method-item h3 {
  font-family: var(--garnexo-f-ui);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.garnexo-method-item p {
  font-size: 0.88rem;
  color: var(--garnexo-text-secondary);
  margin: 0;
}

/* ===== FOOTER ===== */
.c-footer {
  background: #1F1F1E;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}

.c-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.c-footer__brand a.logo {
  -webkit-text-fill-color: #fff;
  background: none;
  font-size: 1.4rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.c-footer__brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}

.c-footer__col h4 {
  font-family: var(--garnexo-f-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}

.c-footer__col ul {
  list-style: none;
}

.c-footer__col li { margin-bottom: 0.5rem; }

.c-footer__col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: var(--garnexo-f-ui);
  transition: color 0.2s;
}

.c-footer__col a:hover { color: var(--garnexo-accent); }

.c-footer__contact-item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  font-family: var(--garnexo-f-ui);
}

.c-footer__contact-item a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.c-footer__contact-item a:hover { color: var(--garnexo-accent); }

.c-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.c-footer__bottom p {
  font-size: 0.8rem;
  font-family: var(--garnexo-f-ui);
  color: rgba(255,255,255,0.4);
}

.c-footer__bottom-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.c-footer__bottom-links a {
  font-size: 0.8rem;
  font-family: var(--garnexo-f-ui);
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.c-footer__bottom-links a:hover { color: var(--garnexo-accent); }

@media (max-width: 768px) {
  .c-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .c-footer__bottom { flex-direction: column; text-align: center; }
}

/* ===== COOKIE CONSENT ===== */
.cc-consent {
  position: fixed;
  z-index: 9999;
  bottom: 0; left: 0; right: 0;
}

.cc-consent.cc-hidden .cc-banner,
.cc-consent.cc-hidden .cc-modal { display: none; }

.cc-banner {
  background: #1F1F1E;
  border-top: 2px solid var(--garnexo-accent);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cc-banner__text h3 {
  font-family: var(--garnexo-f-ui);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.cc-banner__text p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-family: var(--garnexo-f-ui);
}

.cc-banner__text p a {
  color: var(--garnexo-accent);
  text-decoration: underline;
}

.cc-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cc-banner__actions button {
  font-family: var(--garnexo-f-ui);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: var(--garnexo-radius);
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.35);
  min-height: 40px;
  box-sizing: border-box;
  white-space: nowrap;
  transition: all 0.2s;
}

.cc-banner__actions button[data-cc-action="accept-all"] {
  background: var(--garnexo-accent);
  color: #fff;
  border-color: var(--garnexo-accent);
}

.cc-banner__actions button[data-cc-action="accept-all"]:hover {
  background: var(--garnexo-accent-dark);
  border-color: var(--garnexo-accent-dark);
}

.cc-banner__actions button[data-cc-action="open"],
.cc-banner__actions button[data-cc-action="reject-all"] {
  background: transparent;
  color: rgba(255,255,255,0.85);
}

.cc-banner__actions button[data-cc-action="open"]:hover,
.cc-banner__actions button[data-cc-action="reject-all"]:hover {
  background: rgba(255,255,255,0.1);
}

.cc-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cc-modal.cc-modal-open { display: flex; }

.cc-modal__box {
  background: var(--garnexo-card-bg);
  border-radius: var(--garnexo-radius-lg);
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cc-modal__box h2 {
  font-family: var(--garnexo-f-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cc-modal__box > p {
  font-size: 0.88rem;
  color: var(--garnexo-text-secondary);
  margin-bottom: 1.5rem;
  font-family: var(--garnexo-f-ui);
}

.cc-cat {
  border: 1px solid var(--garnexo-border);
  border-radius: var(--garnexo-radius);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cc-cat__info h4 {
  font-family: var(--garnexo-f-ui);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.cc-cat__info p {
  font-size: 0.78rem;
  color: var(--garnexo-text-secondary);
  margin: 0;
  font-family: var(--garnexo-f-ui);
}

.cc-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cc-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cc-toggle__track {
  position: absolute;
  inset: 0;
  background: var(--garnexo-border);
  border-radius: 12px;
  transition: background 0.2s;
  cursor: pointer;
}

.cc-toggle input:checked + .cc-toggle__track { background: var(--garnexo-accent); }

.cc-toggle__track::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  pointer-events: none;
}

.cc-toggle input:checked + .cc-toggle__track::after {
  transform: translateX(20px);
}

.cc-always-on {
  font-family: var(--garnexo-f-ui);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--garnexo-accent);
  background: var(--garnexo-accent-light);
  padding: 0.25rem 0.6rem;
  border-radius: var(--garnexo-radius);
  white-space: nowrap;
}

.cc-modal__footer {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.cc-modal__footer button {
  font-family: var(--garnexo-f-ui);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  border-radius: var(--garnexo-radius);
  cursor: pointer;
  border: 2px solid var(--garnexo-accent);
  min-height: 42px;
  box-sizing: border-box;
  transition: all 0.2s;
}

.cc-modal__footer button[data-cc-action="save"] {
  background: var(--garnexo-accent);
  color: #fff;
}

.cc-modal__footer button[data-cc-action="save"]:hover {
  background: var(--garnexo-accent-dark);
  border-color: var(--garnexo-accent-dark);
}

.cc-modal__footer button[data-cc-action="accept-all-modal"] {
  background: transparent;
  color: var(--garnexo-accent);
}

.cc-modal__footer button[data-cc-action="accept-all-modal"]:hover {
  background: var(--garnexo-accent-light);
}

/* ===== ARTICLE POST LAYOUT ===== */
.garnexo-post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  padding: 3rem 0;
  align-items: start;
}

.garnexo-post-sidebar {
  position: sticky;
  top: 80px;
}

.garnexo-sidebar-box {
  background: var(--garnexo-card-bg);
  border: 1px solid var(--garnexo-border);
  border-radius: var(--garnexo-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.garnexo-sidebar-box h4 {
  font-family: var(--garnexo-f-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--garnexo-text-secondary);
  margin-bottom: 1rem;
}

.garnexo-sidebar-box ul {
  list-style: none;
  padding: 0;
}

.garnexo-sidebar-box li {
  margin-bottom: 0.65rem;
  font-size: 0.88rem;
}

.garnexo-sidebar-box a {
  color: var(--garnexo-text);
  text-decoration: none;
  line-height: 1.4;
}

.garnexo-sidebar-box a:hover { color: var(--garnexo-accent); }

@media (max-width: 1024px) {
  .garnexo-post-layout { grid-template-columns: 1fr; }
  .garnexo-post-sidebar { position: static; }
}

/* ===== LEGAL PAGES ===== */
.garnexo-legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.garnexo-legal h2 {
  font-family: var(--garnexo-f-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--garnexo-accent-light);
}

.garnexo-legal h3 {
  font-family: var(--garnexo-f-ui);
  font-size: 1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
  color: var(--garnexo-accent-dark);
}

.garnexo-legal p, .garnexo-legal li {
  font-size: 0.95rem;
  color: var(--garnexo-text);
  line-height: 1.75;
}

.garnexo-legal ul, .garnexo-legal ol {
  margin: 0.75rem 0 1.25rem 1.5rem;
}

.garnexo-legal li { margin-bottom: 0.4rem; }

.garnexo-legal dl { margin: 1rem 0; }

.garnexo-legal dt {
  font-family: var(--garnexo-f-ui);
  font-weight: 700;
  color: var(--garnexo-text);
  margin-top: 1rem;
}

.garnexo-legal dd {
  margin-left: 1.5rem;
  color: var(--garnexo-text-secondary);
  font-size: 0.93rem;
}

/* ===== SUCCESS / 404 ===== */
.garnexo-special {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
}

.garnexo-special__inner {
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}

.garnexo-special h1 {
  font-family: var(--garnexo-f-display);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--garnexo-accent);
  margin-bottom: 1rem;
}

.garnexo-special h2 {
  font-family: var(--garnexo-f-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.garnexo-special p {
  color: var(--garnexo-text-secondary);
  margin-bottom: 2rem;
}

.garnexo-special__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
  text-align: left;
}

.garnexo-special__step {
  background: var(--garnexo-card-bg);
  border: 1px solid var(--garnexo-border);
  border-radius: var(--garnexo-radius-lg);
  padding: 1.25rem;
}

.garnexo-special__step-num {
  font-family: var(--garnexo-f-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--garnexo-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.garnexo-special__step p {
  font-size: 0.85rem;
  color: var(--garnexo-text-secondary);
  margin: 0;
}

.garnexo-related-links {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.garnexo-related-links a {
  color: var(--garnexo-accent);
  font-family: var(--garnexo-f-ui);
  font-size: 0.95rem;
  text-decoration: none;
}

.garnexo-related-links a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .garnexo-special__steps { grid-template-columns: 1fr; }
}

/* ===== SECTION PADDING ===== */
.garnexo-section {
  padding: 5rem 0;
}

.garnexo-section + .garnexo-section {
  border-top: 1px solid var(--garnexo-border);
}

/* ===== PULL QUOTE ===== */
.garnexo-pull-quote {
  font-family: var(--garnexo-f-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  color: var(--garnexo-accent-dark);
  border-left: 5px solid var(--garnexo-accent);
  padding: 1.25rem 2rem;
  margin: 2.5rem 0;
  background: var(--garnexo-accent-light);
  border-radius: 0 var(--garnexo-radius-lg) var(--garnexo-radius-lg) 0;
  line-height: 1.5;
}

.garnexo-pull-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.82rem;
  font-family: var(--garnexo-f-ui);
  color: var(--garnexo-text-secondary);
}

/* IntersectionObserver fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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