:root {
  --bg: #F6F5F3;
  --panel: #F6F5F3;
  --ink: #2b2623;
  --accent: #d48b6b;
  --accent-ink: #5a382c;
  --muted: #6b5e56;
  --radius: 18px;
  --shadow: 0 8px 24px rgba(0,0,0,0.08);
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

.frame {
  max-width: 1200px;
  margin: 24px auto;
  background: var(--bg);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* -----------------------------
   HEADER & NAVIGATION
----------------------------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  background: var(--panel);
  flex-wrap: wrap;
  /* margin-top: 70px; */
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-ink);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand-logo {
  height: 10px;
  width: auto;
  border-radius: 8px;
}

.nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: #493e37;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.2s;
  padding-bottom: 3px;
}

.nav a:hover {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

.nav a.active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

/* -----------------------------
   HERO SECTION
----------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(180deg, var(--panel), #F6F5F3 60%);
  padding: 8px 16px 24px;
}

.hero h1 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #3a2f28;
}

.hero p {
  font-size: clamp(0.8rem, 1.6vw, 0.9rem);
  color: var(--muted);
}

.hero .subline {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero p.hero-sub {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 0;
}

.hero p.subline {
  margin-bottom: 4px;
}

.cta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
}

.hero-image-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
 } 

.hero-image {
  width: 100%;
  height: auto;
  max-width: 340px;
  object-fit: contain;
  display: block;
} 
.center-image {
  display: block;
  margin: 0 auto 1.5rem;
  max-width: 300px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

/* -----------------------------
   BUTTONS
----------------------------- */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-outline {
  border: 1.5px solid var(--accent);
  color: var(--accent-ink);
  background: transparent;
}

.btn:hover {
  filter: brightness(0.95);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}

/* -----------------------------
   SECTIONS
----------------------------- */
.section {
  margin: 0 24px 20px;
  background: var(--panel);
  border-radius: var(--radius);
  padding: 24px;
}

.section h1 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 2rem;
  margin-bottom: 16px;
  color: #3a2f28;
}

.section h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.6rem;
  margin-bottom: 12px;
  margin-top: 2.5rem;
  color: #3a2f28;
}

.section h2:first-child {
  margin-top: 0;
}

.section h2::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 10px;
  border-radius: 2px;
}

.section p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.subheader {
  font-size: 1.25rem;
  color: #3a2f28;
  margin-top: 0;
  margin-bottom: 8px;
  font-weight: 600;
}

.package {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: #faf7f4;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.price-line {
  font-size: 0.95rem;
  color: var(--accent-ink);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* -----------------------------
   GUIDE / LEAD MAGNET
----------------------------- */
.guide-hero-section {
  background: linear-gradient(135deg, #fdece2 0%, #f6f5f3 60%);
}

.guide-hero-section h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.guide-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.guide-subline {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--muted);
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

.guide-form {
  margin-top: 1.5rem;
}

.guide-form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.guide-form-row input {
  padding: 12px 16px;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #d8cfc8;
  flex: 1;
  min-width: 180px;
  background: white;
}

.guide-form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 10px;
  margin-bottom: 0;
}

.guide-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.guide-list li {
  padding: 0.6rem 0 0.6rem 1.5rem;
  position: relative;
  border-bottom: 1px solid #e8e0d8;
  font-size: 1rem;
  color: var(--ink);
}

.guide-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.guide-cta-section,
.section.card.guide-cta-section {
  background: #3a2f28 !important;
  text-align: center;
  padding: 3rem 2rem;
  margin-left: 24px;
  margin-right: 24px;
}

.guide-cta-section .guide-label {
  color: var(--accent);
  font-size: 1rem;
}

.guide-cta-section h2 {
  font-size: 2.2rem;
  color: #f6f5f3;
  margin-top: 0.25rem;
}

.guide-cta-section h2::before {
  display: none;
}

.guide-cta-section p {
  color: #e8ddd8;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.guide-cta-section .btn-primary {
  background: var(--accent);
  color: white;
  margin-top: 0.5rem;
}

.contact-btn-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.contact-form-wrap {
  max-width: 600px;
}

.muted {
  color: var(--muted);
}

/* -----------------------------
   BLOCKQUOTE (Optional)
----------------------------- */
blockquote {
  font-style: italic;
  color: #5a4a42;
  background-color: #fdece2;
  border-left: 4px solid #d48b6b;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

blockquote footer {
  font-size: 0.9rem;
  color: #8b776b;
  text-align: right;
  margin-top: 0.5rem;
}

.pull-quote {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--accent-ink);
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1.5rem;
  margin: 1.5rem 0;
  background: #fdece2;
  border-radius: 0 10px 10px 0;
}

/* -----------------------------
   FOOTER
----------------------------- */
.footer {
  /* color: #cfcfcf; */
  color: #120f0f;
  text-align: center;
  padding: 22px;
  font-size: 0.9rem;
}

/* -----------------------------
   RESPONSIVE DESIGN
----------------------------- */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .frame {
    max-width: 90%;
    margin: 16px auto;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 16px;
  }

  .nav {
    justify-content: center;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .frame {
    margin: 0;
    border-radius: 0;
  }

  .topbar {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 24px 16px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .cta {
    flex-direction: column;
    align-items: center;
  }

  .section {
    margin: 12px;
    padding: 20px;
  }

  .btn {
    width: 100%;
    max-width: 250px;
  }
}

/* Small phones (480px and below) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.4rem;
  }

  .section h2 {
    font-size: 1.3rem;
  }

  .nav {
    gap: 12px;
  }
}
.container {
  display: flex;
  gap: 40px; /* space between left and right */
  align-items: flex-start;
}

.left{
  flex: 1; /* takes 1 part of available space */
}

.right {
  flex: 2; /* takes 2 parts (bigger) */
}
nav ul {
  padding-left: 40px;   /* standard indent */
}
/* 1. Put cards side-by-side */
.contact-cards {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

/* 2. Card styling */
.card {
  background: #F6F5F3;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  flex: 1;
}

/* 3. Remove bullets */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 4. Style each contact row (icon + text) */
.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

/* 5. Make icons uniform */
.contact-list img {
  width: 22px;
  height: 22px;
}

/* Optional: links style */
.contact-list a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
form input,
form textarea {
  width: 100%;          /* makes them fill the card */
  padding: 12px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  box-sizing: border-box;
}

/* ------- */
@media (max-width: 768px) {
  .contact-cards {
    flex-direction: column;
  }

  .card {
    width: 100%;
  }
}
form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
