:root {
  --bg: #FDF6F0;
  --text: #2D2A26;
  --accent: #C75B39;
  --accent-dark: #A14A2E;
  --teal: #2A9D8F;
  --teal-light: #E8F4F3;
  --sand: #E9D5C3;
  --card-bg: #FFFFFF;
  --border: #E9D5C3;
  --muted: #6B665E;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -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;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.1rem; margin-bottom: 1.2rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.8rem; }

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

/* Header - unique asymmetric style */
header {
  background-color: var(--card-bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 20px;
}

.logo {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
}

.logo span {
  color: var(--accent);
}

.menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

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

.menu a:hover {
  border-bottom-color: var(--accent);
  color: var(--text);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}

/* Hero - bold typography focused */
.hero {
  padding: 90px 0 70px;
  text-align: center;
  background: linear-gradient(180deg, var(--teal-light) 0%, var(--bg) 100%);
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
}

.hero h1 {
  font-size: 3.4rem;
  max-width: 820px;
  margin: 0 auto 24px;
  letter-spacing: -1.2px;
}

.hero p {
  font-size: 1.25rem;
  max-width: 620px;
  margin: 0 auto 32px;
  color: var(--muted);
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 14px 36px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(199, 91, 57, 0.25);
}

.cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(199, 91, 57, 0.3);
}

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

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--teal);
  border-radius: 3px;
}

/* Unique grid for articles - asymmetric */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.article-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.article-card.featured {
  grid-column: span 2;
  background: var(--teal-light);
  border-color: var(--teal);
}

.article-card h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
  line-height: 1.35;
}

.article-card p {
  color: var(--muted);
  flex: 1;
  margin-bottom: 20px;
  font-size: 0.98rem;
}

.article-card .read-more {
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-card .read-more:after {
  content: '→';
  transition: transform 0.2s;
}

.article-card:hover .read-more:after {
  transform: translateX(4px);
}

/* Content pages - book like reading */
.article-header {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 50px;
}

.article-header h1 {
  font-size: 2.6rem;
  max-width: 820px;
}

.meta {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.content p {
  margin-bottom: 1.4em;
}

.content h2 {
  margin-top: 2.2em;
  margin-bottom: 1em;
  font-size: 1.85rem;
}

.content h3 {
  margin-top: 1.8em;
  font-size: 1.35rem;
}

.pullquote {
  background: var(--teal-light);
  border-left: 5px solid var(--teal);
  padding: 28px 32px;
  margin: 40px 0;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  border-radius: 0 8px 8px 0;
}

/* About page unique layout */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text {
  font-size: 1.05rem;
}

.about-text p {
  margin-bottom: 1.3em;
}

.about-sidebar {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 40px 32px;
  border-radius: 12px;
  position: sticky;
  top: 100px;
}

.about-sidebar h3 {
  margin-bottom: 18px;
  color: var(--accent);
}

/* Contact form - clean */
.contact-form {
  max-width: 620px;
  margin: 40px auto 0;
}

.contact-form .form-group {
  margin-bottom: 22px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--card-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(199, 91, 57, 0.1);
}

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

.contact-form button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 15px 42px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-form button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* Thank you page */
.thanks {
  text-align: center;
  padding: 120px 20px 100px;
}

.thanks h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.thanks p {
  font-size: 1.2rem;
  max-width: 520px;
  margin: 0 auto 40px;
  color: var(--muted);
}

/* Footer */
footer {
  background: var(--text);
  color: #EDE8E0;
  padding: 70px 0 40px;
  margin-top: 80px;
}

footer a {
  color: #EDE8E0;
}

footer a:hover {
  color: var(--sand);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-col h4 {
  color: var(--sand);
  margin-bottom: 18px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 9px;
}

.footer-col ul li a {
  font-size: 0.95rem;
  opacity: 0.85;
}

.footer-col ul li a:hover {
  opacity: 1;
}

.address {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.85;
}

.legal {
  border-top: 1px solid rgba(237, 232, 224, 0.15);
  margin-top: 50px;
  padding-top: 30px;
  font-size: 0.85rem;
  opacity: 0.7;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.legal a {
  margin-right: 12px;
}

.copyright {
  margin-top: 30px;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 900px) {
  .menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--card-bg);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }
  
  .menu.active {
    display: flex;
  }
  
  .hamburger {
    display: flex;
  }
  
  .about-layout {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  h1 { font-size: 2.2rem; }
  .hero h1 { font-size: 2.5rem; }
  .article-header h1 { font-size: 2.1rem; }
  
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .article-card.featured {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

/* Small unique touches */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 50px 0;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}