:root {
  --bg: #F9F5F0;
  --surface: #FFFFFF;
  --text: #2D2A26;
  --text-muted: #6B665F;
  --accent: #B85C38;
  --accent-light: #D4A48C;
  --secondary: #6B7F5D;
  --secondary-light: #A8B5A0;
  --border: #E8DFD0;
  --shadow: 0 4px 12px rgba(45, 42, 38, 0.08);
  --shadow-hover: 0 8px 24px rgba(45, 42, 38, 0.12);
  --radius: 12px;
  --radius-pill: 30px;
  --max-width: 1200px;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Nav */
header {
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
}

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

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #F9F5F0 0%, #EDE4D8 100%);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.hero h1 {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}

.hero p {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(184, 92, 56, 0.3);
}

.btn:hover {
  background-color: #A14D2F;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(184, 92, 56, 0.4);
}

.btn-secondary {
  background-color: var(--secondary);
  box-shadow: 0 4px 12px rgba(107, 127, 93, 0.3);
}

.btn-secondary:hover {
  background-color: #55654A;
}

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

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 620px;
}

/* Magazine style grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

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

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

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

.card p {
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 24px;
}

.card .meta {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Sidebar */
.sidebar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  height: fit-content;
}

.sidebar h4 {
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.sidebar ul {
  list-style: none;
}

.sidebar li {
  margin-bottom: 14px;
}

.sidebar a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
}

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

/* Main content area with sidebar */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

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

/* Article styles */
article {
  max-width: 780px;
  margin: 0 auto;
}

article h2 {
  font-size: 32px;
  margin: 48px 0 20px;
  line-height: 1.25;
}

article h3 {
  font-size: 22px;
  margin: 32px 0 14px;
}

article p {
  margin-bottom: 20px;
}

article ul, article ol {
  margin: 20px 0 20px 24px;
}

article li {
  margin-bottom: 8px;
}

.highlight-box {
  background: linear-gradient(135deg, #F1E9DF 0%, #E8DFD0 100%);
  border-left: 5px solid var(--accent);
  padding: 28px 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
}

.highlight-box p {
  margin: 0;
  font-style: italic;
}

/* Form */
form {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-width: 620px;
}

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

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 15px;
}

input, textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  background: #FFFEFC;
  transition: border-color 0.2s;
}

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

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

.form-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Footer */
footer {
  background: #2D2A26;
  color: #CFC9BE;
  padding: 60px 0 30px;
  font-size: 14px;
}

footer a {
  color: #CFC9BE;
  text-decoration: none;
}

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

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

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

.footer-col h5 {
  color: white;
  font-size: 15px;
  margin-bottom: 18px;
  font-weight: 600;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.legal-links a {
  font-size: 13px;
}

/* Thank you page */
.thank-you {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.thank-you-content {
  max-width: 520px;
}

.thank-you-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.thank-you-content p {
  font-size: 19px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 38px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
  
  .card {
    padding: 24px;
  }
}

/* Unique decorative elements for this site */
.decor-line {
  height: 3px;
  width: 60px;
  background: linear-gradient(to right, var(--accent), var(--secondary));
  margin: 20px 0;
}

.quote {
  font-size: 21px;
  font-style: italic;
  color: var(--text);
  border-left: 4px solid var(--secondary);
  padding-left: 24px;
  margin: 32px 0;
}