:root {
  --sage: #8da399;
  --cream: #f9f7f2;
  --charcoal: #3d3d3d;
  --soft-white: #ffffff;
  --accent: #b59a7d;
}

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

body {
  font-family: 'optima', 'Didot', 'serif';
  line-height: 1.8;
  color: var(--charcoal);
  background-color: var(--cream);
  
  /* Global Background Image */
  background-image: url('background-spirals.jpg');
  background-size: cover; 
  background-attachment: fixed; 
  background-position: center;
  
  display: flex;
  flex-direction: column;
  min-height: 100vh; 
}

/* ==========================================================
   SLIMMED DOWN HEADER
   ========================================================== */
header {
  background-color: var(--soft-white);
  padding: 15px 40px; /* REDUCED: Was 25px or 35px */
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}

/* Brand Layout (True Centered Text + Logo on Left) */
.brand {
  position: relative;
  display: inline-block; 
  margin-bottom: 10px; /* REDUCED: Was 20px */
}

.logo {
  position: absolute;
  right: 100%; 
  top: 50%;
  transform: translateY(-50%); 
  margin-right: 25px; 
  max-width: 80px; /* Try 90px to make it bigger, or 50px to make it smaller */  
  height: auto;
}

header h1 {
  font-weight: 300;
  letter-spacing: 4px;
  margin: 0;
  color: var(--sage);
  text-transform: uppercase;
  font-size: 2em;
  text-align: center;
}

nav {
  display: flex;
  gap: 30px;
  justify-content: center;
}

nav a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 300;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--sage);
}

/* ==========================================================
   MAIN CONTENT & CONTAINERS
   ========================================================== */
main {
  flex: 1;
}

.hero {
  text-align: center;
  padding: 60px 20px;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  margin-bottom: 20px;
}

.hero h2 {
  font-weight: 300;
  font-size: 2.5em;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

.container {
  background-color: var(--soft-white);
  padding: 50px;
  margin: 40px auto;
  max-width: 800px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  border-radius: 2px;
}

h2 {
  font-weight: 300;
  color: var(--sage);
  margin-bottom: 20px;
  font-size: 1.8em;
  letter-spacing: 1px;
}

h3 {
  font-weight: 300;
  color: var(--charcoal);
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.3em;
}

p {
  margin-bottom: 20px;
}

.method-brand {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85em;
  letter-spacing: 1px;
}

/* ==========================================================
   BUTTONS & TYPOGRAPHY
   ========================================================== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--sage);
  color: white;
  text-decoration: none;
  letter-spacing: 1px;
  border-radius: 30px; 
  margin: 10px 5px;
  transition: all 0.3s ease;
  font-size: 0.9em;
  box-shadow: 0 4px 15px rgba(141, 163, 153, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(141, 163, 153, 0.5);
}

.quote-section {
  font-style: italic;
  font-size: 1.4em;
  text-align: center;
  padding: 40px;
  color: var(--accent);
  border-top: 1px solid rgba(181, 154, 125, 0.2);
  border-bottom: 1px solid rgba(181, 154, 125, 0.2);
  margin: 50px 0;
  line-height: 1.5;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

hr {
  border: 0;
  height: 1px;
  background-color: rgba(141, 163, 153, 0.3);
  margin: 40px 0;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  text-align: center;
  padding: 40px 20px;
  background-color: var(--charcoal);
  color: var(--cream);
  font-size: 0.8em;
  letter-spacing: 2px;
  margin-top: 40px;
}

/* ==========================================================
   MOBILE RESPONSIVENESS
   ========================================================== */
@media (max-width: 600px) {
  .container, .hero {
    padding: 40px 20px;
  }
  
  header {
    padding: 15px 20px;
  }
  
  nav {
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .quote-section {
    font-size: 1.2em;
    padding: 30px 20px;
  }
  
  /* Mobile rule for the logo */
  .brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .logo {
    position: static; 
    transform: none;
    margin-right: 0;
    margin-bottom: 10px;
    max-width: 60px;
  }
}