/* Baresi Hollberg - Unique Magazine Blog Style | Warm Sage & Cream Palette | 2026 */
:root {
  --bg: #FDF8F3;
  --text-primary: #2C2522;
  --text-secondary: #5C5249;
  --accent: #7A8B6E;
  --accent-dark: #5F6F55;
  --gold: #C9A86C;
  --border: #EDE4D7;
  --card: #FFFFFF;
  --shadow: 0 8px 25px rgba(44, 37, 34, 0.07);
  --radius: 12px;
  --radius-pill: 9999px;
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.1rem; margin-bottom: 1rem; }
h3 { font-size: 1.45rem; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header - Classic with elegant twist */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.025em;
}

.nav-desktop {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}

.nav-desktop a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-mobile {
  display: none;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.25rem;
}

/* Hero - Full width colored, magazine editorial */
.hero {
  background-color: var(--accent);
  color: #F8F4ED;
  padding: 7rem 0 6rem;
  text-align: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #F8F4ED;
  font-size: 3.6rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
}

.hero p {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.cta-button {
  display: inline-block;
  background-color: #F8F4ED;
  color: var(--accent-dark);
  padding: 0.95rem 2.75rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-button:hover {
  background-color: var(--gold);
  color: var(--text-primary);
  transform: translateY(-1px);
}

/* Intro Section - Long text focus */
.intro {
  padding: 5rem 0 4rem;
}

.intro-content {
  max-width: 780px;
  margin: 0 auto;
}

.intro h2 {
  font-size: 2.35rem;
  margin-bottom: 2rem;
  text-align: center;
}

.intro p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.65rem;
}

.quote-block {
  background-color: var(--card);
  border-left: 5px solid var(--accent);
  padding: 2rem 2.25rem;
  margin: 2.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-secondary);
}

/* Insights Section - Magazine Grid + Sidebar */
.insights {
  padding: 3rem 0 6rem;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-header h2 {
  font-size: 2.4rem;
}

.insights-wrapper {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.main-content {
  flex: 1;
  min-width: 0;
}

.sidebar {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 120px;
  align-self: flex-start;
}

.sidebar-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.sidebar-card h4 {
  font-size: 1rem;
  margin-bottom: 1.1rem;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.sidebar-card ul {
  list-style: none;
}

.sidebar-card li {
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.sidebar-card a {
  color: var(--text-secondary);
  font-weight: 500;
}

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

/* Article Cards / Sections - Unique asymmetric feel with accent */
.article {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 2.5rem;
  margin-bottom: 2.25rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.article:hover {
  box-shadow: 0 15px 35px rgba(44, 37, 34, 0.09);
  transform: translateY(-2px);
}

.article-accent {
  height: 5px;
  background: linear-gradient(to right, var(--accent), var(--gold));
  margin: -2.25rem -2.5rem 2rem;
  border-radius: var(--radius) var(--radius) 0 0;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}

.article-date {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.category-pill {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  background-color: #F0E9DF;
  color: var(--accent-dark);
}

.article h3 {
  font-size: 1.65rem;
  margin-bottom: 1.35rem;
  line-height: 1.3;
}

.article p {
  color: var(--text-secondary);
  margin-bottom: 1.35rem;
  font-size: 1.02rem;
}

.article p:last-child {
  margin-bottom: 0;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  margin-top: 0.75rem;
}

.read-more:hover {
  gap: 0.75rem;
  color: var(--accent-dark);
}

/* Contact Page Specific */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background-color: #FFFEFA;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(122, 139, 110, 0.1);
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  background-color: var(--accent);
  color: white;
  border: none;
  padding: 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  background-color: var(--accent-dark);
}

/* Legal Pages */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.legal-content h1 {
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
}

.legal-content .last-updated {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin: 2.75rem 0 1rem;
  color: var(--accent-dark);
}

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  margin-bottom: 1.1rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Thank You Page */
.thankyou-hero {
  background-color: var(--accent);
  color: #F8F4ED;
  padding: 5rem 0;
  text-align: center;
}

.thankyou-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.thankyou-content p {
  font-size: 1.08rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  background-color: #2C2522;
  color: #D4C9B8;
  padding: 4rem 0 3rem;
  font-size: 0.92rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

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

.footer-brand h4 {
  color: #F8F4ED;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.footer-brand p {
  line-height: 1.7;
  opacity: 0.85;
}

.footer-links a {
  color: #D4C9B8;
  display: block;
  margin-bottom: 0.55rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 201, 184, 0.2);
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.75;
}

/* Responsive */
@media (max-width: 1024px) {
  .insights-wrapper {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    position: static;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-mobile {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow);
    display: none;
  }
  
  .nav-mobile.active {
    display: block;
  }
  
  .nav-mobile a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
  }
  
  .hero h1 {
    font-size: 2.75rem;
  }
  
  .article {
    padding: 1.75rem 1.5rem;
  }
  
  .article-accent {
    margin: -1.75rem -1.5rem 1.75rem;
  }
}

/* Misc unique elements */
.category-pill.movement { background-color: #E8EDE5; }
.category-pill.nourishment { background-color: #F5EDE3; }
.category-pill.mindfulness { background-color: #EDE8F0; }
.category-pill.exploration { background-color: #E5F0ED; }

.disclaimer {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}