/* synessa — Cool Slate + Fresh Mint + Warm Coral — Completely new 2026 design */
:root {
  --bg: #F6F7F9;
  --text: #1F252B;
  --accent: #0D9488;
  --coral: #E05A3C;
  --light: #EEF0F4;
  --card: #FFFFFF;
  --border: #E2E5EA;
  --accent-soft: #E6F0EF;
}

* {
  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);
  line-height: 1.75;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
}

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

a:hover {
  color: #0A6B63;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header - New clean centered-ish nav */
header {
  position: sticky;
  top: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 50;
  padding: 22px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: var(--accent);
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--text);
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 28px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-menu-btn {
    display: block;
  }
}

/* Hero - New centered editorial style */
.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0 80px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--coral));
  opacity: 0.6;
}

.hero-text {
  max-width: 820px;
}

.hero-text h1 {
  font-size: 62px;
  line-height: 1.05;
  margin-bottom: 32px;
  font-weight: 800;
}

.hero-text p {
  font-size: 21px;
  max-width: 620px;
  margin: 0 auto 48px;
  color: #4B535B;
}

/* New button style - square with border */
.cta-button {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  padding: 15px 42px;
  border: 2px solid var(--accent);
  border-radius: 8px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* Sections */
.section {
  padding: 72px 0;
}

.section-title {
  font-size: 28px;
  margin-bottom: 42px;
  font-weight: 700;
  position: relative;
}

/* New article grid - clean 2-col with left accent */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.article-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 32px;
  transition: border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.article-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 32px;
  bottom: 32px;
  width: 5px;
  background: var(--accent);
  border-radius: 0 3px 3px 0;
}

.article-card:hover {
  border-color: #D1D5DB;
}

.article-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  line-height: 1.3;
  padding-left: 22px;
}

.article-card p {
  color: #4B535B;
  flex-grow: 1;
  margin-bottom: 28px;
  font-size: 15.8px;
  padding-left: 22px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-left: 22px;
}

.read-more span {
  transition: transform 0.2s ease;
}

.read-more:hover span {
  transform: translateX(5px);
}

/* Author teaser - new horizontal clean */
.author-teaser {
  background: var(--light);
  border-radius: 12px;
  padding: 52px 56px;
  display: flex;
  gap: 52px;
  align-items: flex-start;
}

.author-avatar {
  width: 160px;
  height: 160px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  flex-shrink: 0;
}

/* Footer - updated colors */
footer {
  background: #1F252B;
  color: #A8B0B8;
  padding: 68px 0 38px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr;
  gap: 56px;
}

.footer-col h4 {
  color: #E2E5EA;
  font-size: 14px;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-col a {
  color: #A8B0B8;
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-col a:hover {
  color: white;
}

.address {
  font-size: 14.5px;
  line-height: 1.65;
}

.legal-links {
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid #3A4149;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  font-size: 13px;
}

.legal-links a {
  color: #7E8791;
}

/* Article page - new reading design */
.article-header {
  padding: 52px 0 36px;
  border-bottom: 1px solid var(--border);
}

.article-meta {
  font-size: 13.5px;
  color: #6B727A;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 0 80px;
}

.article-body p {
  margin-bottom: 1.8em;
  font-size: 17.2px;
}

.pull-quote {
  margin: 56px 0;
  padding: 38px 0;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  font-size: 22px;
  line-height: 1.5;
  font-style: italic;
  color: #37424A;
  text-align: center;
}

.article-body h2 {
  font-size: 24px;
  margin: 48px 0 16px;
  font-weight: 700;
}

/* Contact form - updated */
.contact-form {
  max-width: 640px;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  margin-bottom: 9px;
  font-weight: 600;
  font-size: 14.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  background: white;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.submit-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 16px 46px;
  font-size: 14.5px;
  font-weight: 700;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #0A6B63;
}

/* Thanks page */
.thanks-container {
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thanks-content h1 {
  font-size: 44px;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-text h1 {
    font-size: 46px;
  }
  .author-teaser {
    flex-direction: column;
    text-align: center;
  }
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}