/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ═══════════════════════════════════════════
   SHARED ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes breathe {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════
   FOREST EDITORIAL THEME
   ═══════════════════════════════════════════════════════════════════════ */
:root {
  --accent: #5e7a54;
  --accent-light: #8ba47f;
  --cream: #f5f0e8;
  --dark: #2a2a28;
  --text: #3d3d3a;
  --text-light: #6b6b65;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
}

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 20px 48px;
  display: flex; justify-content: space-between; align-items: center;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.2);
  padding: 16px 48px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 500; color: #fff;
  letter-spacing: -0.5px;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
  position: relative;
  padding: 8px 0;
}
.nav-links a:hover {
  color: #fff;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  position: relative;
  padding: 120px 48px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('/assets/bg.jpg') center/cover no-repeat;
  filter: brightness(0.85);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,240,232,0.88) 0%, rgba(245,240,232,0.6) 40%, rgba(245,240,232,0.2) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
  animation: fadeUp 1s ease both;
}
.hero-tag {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid var(--accent-light);
  border-radius: 20px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero p {
  font-size: 17px; line-height: 1.7; color: var(--text-light);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 36px;
  background: var(--accent);
  color: #fff;
  font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.3s, transform 0.3s;
}
.hero-cta:hover { background: #4d6845; transform: translateY(-2px); }
.hero-cta svg { transition: transform 0.3s; }
.hero-cta:hover svg { transform: translateX(4px); }

/* PHILOSOPHY */
.philosophy {
  padding: 120px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.philosophy-img {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.philosophy-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.philosophy-img::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(94,122,84,0.2);
  border-radius: 8px;
  pointer-events: none;
}
.philosophy-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 400; line-height: 1.2;
  color: var(--dark); margin-bottom: 24px;
}
.philosophy-text p {
  font-size: 16px; line-height: 1.8; color: var(--text-light); margin-bottom: 16px;
}

/* ABOUT PAGE */
.about-hero {
  padding: 160px 48px 80px;
  text-align: center;
  background: linear-gradient(135deg, #2a332a 0%, #3d4a3a 50%, #2a332a 100%);
  position: relative;
}
.about-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('/assets/bg.jpg') center/cover no-repeat;
  opacity: 0.15;
}
.about-hero-content { position: relative; }
.about-tag {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 24px;
}
.about-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; font-weight: 400; color: #fff; margin-bottom: 16px;
}
.about-hero p {
  font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.7;
}
.about {
  padding: 80px 48px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.about-text p {
  font-size: 17px; line-height: 1.9; color: var(--text); margin-bottom: 24px;
}
.about-img {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  position: sticky;
  top: 100px;
}
.about-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-img::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(94,122,84,0.2);
  border-radius: 8px;
  pointer-events: none;
}

/* SERVICES */
.services {
  padding: 100px 48px;
  background: var(--dark);
  color: #fff;
}
.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.services-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 400; color: #fff; margin-bottom: 16px;
}
.services-header p { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  transition: border-color 0.4s, transform 0.4s;
}
.service-card:hover {
  border-color: rgba(139,164,127,0.4);
  transform: translateY(-4px);
}
.service-card .icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(94,122,84,0.15);
  margin-bottom: 24px;
}
.service-card .icon svg { width: 22px; height: 22px; stroke: var(--accent-light); fill: none; stroke-width: 1.5; }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400; margin-bottom: 12px;
}
.service-card p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.45); }

/* JOURNAL PREVIEW */
.journal-preview {
  padding: 100px 48px;
  background: var(--dark);
  color: #fff;
}
.journal-preview-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.journal-preview-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 400; color: #fff; margin-bottom: 16px;
}
.journal-preview-header p { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.journal-card {
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  transition: border-color 0.4s, transform 0.4s;
}
.journal-card:hover {
  border-color: rgba(139,164,127,0.4);
  transform: translateY(-4px);
}
.journal-card .card-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent-light); margin-bottom: 16px;
}
.journal-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400; color: #fff; line-height: 1.3;
  margin-bottom: 12px;
}
.journal-card h3 a { color: inherit; transition: color 0.3s; }
.journal-card h3 a:hover { color: var(--accent-light); }
.journal-card p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.45); }

/* JOURNAL PAGE */
.journal-header {
  padding: 160px 48px 80px;
  text-align: center;
  background: linear-gradient(135deg, #2a332a 0%, #3d4a3a 50%, #2a332a 100%);
  position: relative;
}
.journal-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/bg.jpg') center/cover no-repeat;
  opacity: 0.15;
}
.journal-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}
.journal-header p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}
.journal-list {
  padding: 60px 48px 100px;
  max-width: 900px;
  margin: 0 auto;
}
.journal-post {
  padding: 48px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.journal-post:last-child {
  border-bottom: none;
}
.journal-post .post-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}
.post-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 12px;
}
.post-date {
  font-size: 13px;
  color: var(--text-light);
}
.post-header .post-date {
  color: rgba(255,255,255,0.6);
}
.journal-post h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 16px;
}
.journal-post h2 a { color: inherit; }
.journal-post h2 a:hover { color: var(--accent); }
.journal-post .excerpt {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
}
.read-more {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}
.read-more:hover { text-decoration: underline; }

/* SINGLE POST */
.post-header {
  padding: 160px 48px 60px;
  text-align: center;
  background: linear-gradient(135deg, #2a332a 0%, #3d4a3a 50%, #2a332a 100%);
  position: relative;
}
.post-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/bg.jpg') center/cover no-repeat;
  opacity: 0.15;
}
.post-header .post-meta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
}
.post-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.post-body {
  padding: 60px 48px 100px;
  max-width: 700px;
  margin: 0 auto;
}
.post-body p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 24px;
}
.post-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--dark);
  margin: 48px 0 24px;
}
.post-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  margin: 36px 0 16px;
}
.post-body ul, .post-body ol {
  margin: 0 0 24px 24px;
  color: var(--text);
}
.post-body li {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 8px;
  list-style: disc;
}
.post-body blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--text-light);
}
.post-nav {
  padding: 48px;
  max-width: 700px;
  margin: 0 auto;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.post-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}
.post-nav a:hover { text-decoration: underline; }

/* NEWSLETTER */
.newsletter {
  padding: 100px 48px;
  background: var(--dark);
  text-align: center;
}
.newsletter h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 300; color: #fff; margin-bottom: 16px;
}
.newsletter p {
  font-size: 16px; color: rgba(255,255,255,0.5); max-width: 500px; margin: 0 auto 40px; line-height: 1.7;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  border: none;
  border-radius: 4px 0 0 4px;
  outline: none;
}
.newsletter-input::placeholder {
  color: var(--text-light);
}
.newsletter-input:focus {
  box-shadow: 0 0 0 2px var(--accent-light);
}
.newsletter-btn {
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background 0.3s;
}
.newsletter-btn:hover {
  background: #4d6845;
}

/* SOCIAL */
.social {
  padding: 72px 48px 80px;
  background: #eae5db;
  text-align: center;
}
.social-label {
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.social h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 300; color: var(--dark); margin-bottom: 40px;
}
.social-links {
  display: flex; justify-content: center; gap: 32px;
}
.social-links a {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text-light);
  transition: color 0.3s, transform 0.3s;
}
.social-links a:hover {
  transform: translateY(-3px);
}
.social-links svg { width: 28px; height: 28px; }
.social-links span {
  font-size: 11px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
}
.social-ig:hover { color: #E4405F; }
.social-fb:hover { color: #1877F2; }
.social-x:hover { color: var(--dark); }
.social-tt:hover { color: #000; }

/* FOOTER */
.footer {
  padding: 28px 48px 32px;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  color: rgba(255,255,255,0.35);
  font-size: 13px;
}
.footer a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer a:hover { color: rgba(255,255,255,0.8); }
.footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-divider {
  opacity: 0.4;
}
.footer-disclaimer {
  max-width: 700px;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-disclaimer h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.footer-disclaimer p {
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255,255,255,0.3);
  margin-bottom: 8px;
}
.footer-disclaimer p:last-child {
  margin-bottom: 0;
}
.footer-bottom {
  font-size: 12px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .philosophy { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; padding: 60px 24px 80px; }
  .about-hero { padding: 140px 24px 60px; }
  .about-hero h1 { font-size: 36px; }
  .about-img { position: static; }
  .services-grid, .journal-grid { grid-template-columns: 1fr; }
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .journal-header, .post-header { padding-left: 24px; padding-right: 24px; }
  .journal-list, .post-body { padding-left: 24px; padding-right: 24px; }
  .post-header h1 { font-size: 36px; }
  .journal-post h2 { font-size: 26px; }
  .newsletter-form { flex-direction: column; gap: 12px; }
  .newsletter-input { border-radius: 4px; }
  .newsletter-btn { border-radius: 4px; }
  .social-links { gap: 24px; }
  .footer { padding: 24px 24px 28px; }
  .footer-top .footer-divider { display: none; }
  .footer-top { display: flex; flex-direction: column; gap: 4px; }
  .footer-disclaimer { padding: 16px 12px; max-width: 100%; }
}
