/* ============================================
   VIORA — Science-Backed Living, Simplified
   Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

/* ---- TOKENS ---- */
:root {
  --cream: #F9F6F1;
  --warm-white: #FDFBF8;
  --sand: #E8E0D4;
  --taupe: #C9BCAC;
  --stone: #9A8E82;
  --dark: #2A2420;
  --charcoal: #3D3530;
  --accent: #8B6F5E;
  --blush: #EDD9D0;
  --sage: #B5C4B1;
  --sage-light: #D4E0D1;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --max-w: 1200px;
  --radius: 0px;
  --ease: cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--warm-white);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }
ul, ol { list-style: none; }

/* ---- UTILITY ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  line-height: 1.15;
}
.section-line {
  width: 36px;
  height: 1px;
  background: var(--accent);
  margin: 1rem 0;
}
.section-line--center { margin: 1rem auto; }
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--dark);
  color: var(--dark);
  background: transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:hover { background: var(--dark); color: var(--warm-white); }
.btn--filled { background: var(--dark); color: var(--warm-white); border-color: var(--dark); }
.btn--filled:hover { background: var(--accent); border-color: var(--accent); }
.btn--light { border-color: var(--taupe); color: var(--taupe); }
.btn--light:hover { background: var(--warm-white); border-color: var(--warm-white); color: var(--dark); }
.text-center { text-align: center; }

/* ---- ANNOUNCEMENT ---- */
.announcement {
  background: var(--dark);
  color: var(--cream);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.announcement a { color: var(--taupe); text-decoration: underline; }

/* ---- NAV ---- */
.site-nav {
  background: var(--warm-white);
  border-bottom: 1px solid var(--sand);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--dark);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-subscribe {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  background: var(--dark);
  color: var(--warm-white);
  border: none;
  transition: background 0.2s;
}
.nav-subscribe:hover { background: var(--accent); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 1px; background: var(--dark); transition: transform 0.3s; }
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  background: var(--warm-white);
  border-top: 1px solid var(--sand);
  gap: 1.2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 500;
}

/* ---- TICKER ---- */
.ticker {
  background: var(--dark);
  padding: 0.7rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}
.ticker-item { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(249,246,241,0.7); padding: 0 2.5rem; }
.ticker-dot { color: var(--accent); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- HERO ---- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  background: var(--cream);
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 3rem;
  border-right: 1px solid var(--sand);
}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.hero-title strong {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 0.42em;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.6rem;
  font-family: var(--font-body);
}
.hero-desc {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-right { position: relative; overflow: hidden; background: var(--sand); }
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(8%) brightness(0.96);
  transition: transform 8s var(--ease);
}
.hero-right:hover img { transform: scale(1.04); }
.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(253,251,248,0.92);
  backdrop-filter: blur(8px);
  padding: 1rem 1.5rem;
  border-left: 2px solid var(--accent);
  max-width: 240px;
}
.hero-badge p { font-family: var(--font-display); font-size: 15px; font-style: italic; color: var(--dark); line-height: 1.4; }
.hero-badge span { display: block; font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--stone); margin-top: 0.4rem; }

/* ---- CATEGORY TABS ---- */
.cat-bar { background: var(--warm-white); border-bottom: 1px solid var(--sand); }
.cat-bar-inner {
  display: flex;
  justify-content: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-bar-inner::-webkit-scrollbar { display: none; }
.cat-tab {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 1.1rem 2rem;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
  text-decoration: none;
}
.cat-tab:hover, .cat-tab.active { color: var(--dark); border-bottom-color: var(--accent); }
.cat-tab-icon { font-size: 13px; }

/* ---- SECTION PADDING ---- */
.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }

/* ---- SECTION HEADER ---- */
.section-header { margin-bottom: 3rem; }
.section-header--center { text-align: center; }
.section-header--center .section-line { margin: 1rem auto; }

/* ---- FEATURED GRID ---- */
.featured-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 2px;
  background: var(--sand);
}
.featured-card {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
}
.featured-card--main { grid-row: span 2; }
.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.featured-card:hover img { transform: scale(1.05); }
.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,36,32,0.82) 0%, rgba(42,36,32,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.card-cat-tag {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.5rem;
}
.card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  color: var(--warm-white);
  line-height: 1.25;
}
.featured-card--main .card-title { font-size: 30px; }
.featured-card:not(.featured-card--main) .card-title { font-size: 20px; }
.card-read {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 0.75rem;
  transition: color 0.2s;
}
.featured-card:hover .card-read { color: var(--warm-white); }

/* ---- POST CARDS ---- */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.posts-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.posts-grid--2 { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.post-card { cursor: pointer; }
.post-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sand);
  margin-bottom: 1.1rem;
}
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.post-card:hover .post-card-img img { transform: scale(1.05); }
.post-card-cat {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.post-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.post-card:hover .post-card-title { color: var(--accent); }
.post-card-excerpt { font-size: 13px; color: var(--stone); line-height: 1.75; margin-bottom: 0.75rem; }
.post-card-meta { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--taupe); }

/* ---- HORIZONTAL POST CARD ---- */
.post-card-h {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.2rem;
  align-items: start;
  cursor: pointer;
}
.post-card-h-img { width: 110px; height: 85px; overflow: hidden; background: var(--sand); flex-shrink: 0; }
.post-card-h-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.post-card-h:hover .post-card-h-img img { transform: scale(1.06); }
.post-card-h-title { font-family: var(--font-display); font-size: 16px; font-style: italic; font-weight: 500; color: var(--dark); line-height: 1.35; }
.post-card-h:hover .post-card-h-title { color: var(--accent); }

/* ---- TRENDING LIST ---- */
.trending-list { display: flex; flex-direction: column; }
.trending-item {
  display: grid;
  grid-template-columns: 50px 1fr 30px;
  align-items: center;
  gap: 1.2rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--sand);
  cursor: pointer;
  transition: padding-left 0.2s;
  text-decoration: none;
  color: inherit;
}
.trending-item:hover { padding-left: 6px; }
.trending-num { font-family: var(--font-display); font-size: 32px; font-style: italic; color: var(--sand); line-height: 1; }
.trending-info-cat { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.25rem; }
.trending-info-title { font-family: var(--font-display); font-size: 17px; font-style: italic; font-weight: 500; color: var(--dark); line-height: 1.3; }
.trending-item:hover .trending-info-title { color: var(--accent); }
.trending-arrow { color: var(--taupe); font-size: 16px; transition: transform 0.2s, color 0.2s; }
.trending-item:hover .trending-arrow { transform: translateX(4px); color: var(--accent); }

/* ---- DARK PILLAR BAND ---- */
.pillar-band { background: var(--dark); padding: 5rem 0; color: var(--cream); }
.pillar-band .section-title { color: var(--cream); }
.pillar-band .section-label { color: var(--taupe); }
.pillar-band .section-line { background: var(--accent); }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 3rem;
}
.pillar-item {
  background: var(--dark);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.pillar-item:hover { background: #3a3028; }
.pillar-icon { font-size: 26px; margin-bottom: 1rem; }
.pillar-title { font-family: var(--font-display); font-size: 18px; font-style: italic; font-weight: 400; color: var(--cream); margin-bottom: 0.5rem; }
.pillar-desc { font-size: 12px; color: var(--taupe); line-height: 1.75; }

/* ---- CYCLE SECTION ---- */
.cycle-section { background: var(--blush); }
.cycle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.cycle-card {
  background: var(--warm-white);
  padding: 2rem 1.5rem;
  border-top: 2px solid var(--accent);
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.cycle-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(42,36,32,0.1); }
.cycle-phase { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.cycle-card-title { font-family: var(--font-display); font-size: 17px; font-style: italic; font-weight: 500; color: var(--dark); line-height: 1.4; }

/* ---- EMAIL SECTION ---- */
.email-section { background: var(--cream); border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand); }
.email-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 950px;
  margin: 0 auto;
}
.email-perks { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.2rem; }
.email-perk {
  font-size: 13px;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.email-perk::before { content: '✓'; color: var(--accent); font-weight: 600; }
.email-form { display: flex; flex-direction: column; gap: 1rem; }
.email-form input {
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--sand);
  background: var(--warm-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.email-form input:focus { border-color: var(--accent); }
.email-form input::placeholder { color: var(--taupe); }
.email-form .btn--filled { width: 100%; text-align: center; border: none; padding: 1rem; }

/* ---- ABOUT STRIP ---- */
.about-strip { background: var(--dark); padding: 6rem 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: center; }
.about-img { aspect-ratio: 4/5; overflow: hidden; background: var(--charcoal); }
.about-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%); }
.about-content .section-label { color: var(--taupe); }
.about-content .section-title { color: var(--cream); }
.about-content .section-line { background: var(--accent); }
.about-content p { font-size: 14px; color: var(--taupe); line-height: 1.9; margin-top: 1.2rem; }

/* ---- SOCIAL STRIP ---- */
.social-strip { background: var(--warm-white); padding: 2.5rem 0; border-top: 1px solid var(--sand); }
.social-inner { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.social-links { display: flex; gap: 1rem; }
.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--sand);
  transition: all 0.2s;
}
.social-link:hover { background: var(--dark); color: var(--cream); border-color: var(--dark); }
.social-link-icon { font-size: 15px; }

/* ---- FOOTER ---- */
.site-footer { background: var(--dark); color: var(--taupe); padding: 4rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { display: block; font-family: var(--font-display); font-size: 26px; font-style: italic; color: var(--cream); margin-bottom: 1rem; }
.footer-brand p { font-size: 13px; line-height: 1.85; color: var(--taupe); }
.footer-col h4 { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul li a { font-size: 13px; color: var(--taupe); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 11px; color: var(--stone); letter-spacing: 0.06em; }

/* ---- CATEGORY PAGE HERO ---- */
.cat-hero { background: var(--cream); padding: 4rem 0; border-bottom: 1px solid var(--sand); }
.cat-hero .section-title { font-size: clamp(38px, 5vw, 60px); }
.cat-hero p { font-size: 15px; color: var(--stone); max-width: 500px; line-height: 1.85; margin-top: 1rem; }

/* ---- BLOG POST ---- */
.post-hero { background: var(--cream); padding: 4rem 0 0; }
.post-hero-inner { max-width: 780px; margin: 0 auto; padding: 0 2rem; }
.post-cat-tag { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; display: block; }
.post-title { font-family: var(--font-display); font-size: clamp(30px, 5vw, 52px); font-style: italic; font-weight: 400; color: var(--dark); line-height: 1.15; margin-bottom: 1.5rem; }
.post-meta { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); padding-bottom: 2rem; border-bottom: 1px solid var(--sand); }
.post-featured-img { width: 100%; max-height: 520px; overflow: hidden; background: var(--sand); margin: 2rem 0; }
.post-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.post-body { max-width: 780px; margin: 0 auto; padding: 0.5rem 2rem 5rem; }
.post-body h2 { font-family: var(--font-display); font-size: 30px; font-style: italic; font-weight: 400; color: var(--dark); margin: 2.5rem 0 1rem; line-height: 1.2; }
.post-body h3 { font-family: var(--font-display); font-size: 22px; font-style: italic; font-weight: 500; color: var(--charcoal); margin: 2rem 0 0.75rem; }
.post-body p { font-size: 16px; color: var(--charcoal); line-height: 1.9; margin-bottom: 1.3rem; font-weight: 300; }
.post-body ul, .post-body ol { margin: 1rem 0 1.5rem 1.5rem; }
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { font-size: 15px; color: var(--charcoal); line-height: 1.85; margin-bottom: 0.4rem; }
.post-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.post-body strong { font-weight: 500; color: var(--dark); }
.key-takeaways {
  background: var(--blush);
  border-left: 3px solid var(--accent);
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
}
.key-takeaways h3 { font-family: var(--font-display); font-size: 18px; font-style: italic; font-weight: 500; color: var(--dark); margin-bottom: 1rem; margin-top: 0; }
.key-takeaways ul { list-style: none; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.key-takeaways ul li { font-size: 14px; color: var(--charcoal); padding-left: 1.5rem; position: relative; }
.key-takeaways ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-weight: 500; }
.affiliate-box {
  background: var(--cream);
  border: 1px solid var(--sand);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.affiliate-box p { font-size: 13px; color: var(--stone); margin: 0; }
.pull-quote {
  border-left: 3px solid var(--accent);
  padding: 1rem 2rem;
  margin: 2rem 0;
  background: var(--cream);
}
.pull-quote p { font-family: var(--font-display); font-size: 22px; font-style: italic; color: var(--dark); margin: 0; line-height: 1.4; }
.related-posts-section { background: var(--cream); padding: 4rem 0; border-top: 1px solid var(--sand); }

/* ---- ABOUT PAGE ---- */
.about-page-hero { background: var(--cream); padding: 6rem 0; }
.about-page-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.about-page-img { aspect-ratio: 3/4; overflow: hidden; }
.about-page-img img { width: 100%; height: 100%; object-fit: cover; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.value-item { padding: 2rem; background: var(--cream); border-top: 2px solid var(--accent); }
.value-icon { font-size: 24px; margin-bottom: 1rem; }
.value-title { font-family: var(--font-display); font-size: 18px; font-style: italic; color: var(--dark); margin-bottom: 0.5rem; }
.value-desc { font-size: 13px; color: var(--stone); line-height: 1.75; }

/* ---- CONTACT PAGE ---- */
.contact-page { padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--sand);
  background: var(--warm-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--taupe); }

/* ---- FADE IN ANIMATION ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .posts-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-page-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-values { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 3rem 1.5rem; border-right: none; border-bottom: 1px solid var(--sand); }
  .hero-right { min-height: 320px; }
  .featured-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .featured-card--main { grid-row: span 1; min-height: 300px; }
  .featured-card:not(.featured-card--main) { min-height: 220px; }
  .posts-grid { grid-template-columns: 1fr; }
  .posts-grid--4 { grid-template-columns: 1fr; }
  .posts-grid--2 { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .cycle-grid { grid-template-columns: repeat(2, 1fr); }
  .email-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-values { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
  .cat-bar-inner { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .cycle-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { text-align: center; }
}
