/* ============================================
   BAKE YOUR WEBSITE — Shared Stylesheet
   ============================================ */

:root {
  --espresso:  #2C1810;
  --amber:     #C8954A;
  --amber-light: #E8B86D;
  --cream:     #FDF8F3;
  --cream-dark:#F2E8DC;
  --white:     #FFFFFF;
  --text:      #1A0F0A;
  --text-mid:  #5C3D2E;
  --text-light:#8A6A58;
  --border:    #E8D9CC;
  --success:   #4CAF77;
  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 4px 24px rgba(44,24,16,0.10);
  --shadow-lg: 0 8px 40px rgba(44,24,16,0.15);
  --max-width: 1140px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--espresso);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--text-mid); font-size: 1.05rem; }

a  { color: var(--amber); text-decoration: none; }
a:hover { text-decoration: underline; }

strong { color: var(--espresso); font-weight: 700; }

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

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all .2s ease;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--espresso);
  border-color: var(--espresso);
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}
.btn-outline:hover {
  background: var(--espresso);
  color: var(--white);
  text-decoration: none;
}
.btn-lg { padding: 18px 40px; font-size: 1.1rem; border-radius: 12px; }

/* ── Nav ── */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(44,24,16,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 68px;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--espresso);
  text-decoration: none;
}
.nav-logo span { color: var(--amber); }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: var(--text-mid);
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--amber); }
.nav-links .nav-cta a {
  background: var(--amber);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-links .nav-cta a:hover { background: var(--espresso); }

/* ── Hero ── */
.hero {
  padding: 80px 24px 72px;
  text-align: center;
  background: linear-gradient(160deg, var(--cream) 60%, #EFE0CC 100%);
}
.hero-badge {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: .5px;
}
.hero h1 { max-width: 800px; margin: 0 auto 20px; }
.hero p.lead {
  font-size: 1.2rem;
  max-width: 640px;
  margin: 0 auto 36px;
  color: var(--text-mid);
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: .9rem; color: var(--text-light); }

/* ── Stats bar ── */
.stats-bar {
  background: var(--espresso);
  color: var(--white);
  padding: 28px 24px;
}
.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item .number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber-light);
  display: block;
}
.stat-item .label {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
}

/* ── Section ── */
section { padding: 72px 24px; }
.section-label {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 10px;
}
.section-title { margin-bottom: 14px; }
.section-sub  { max-width: 580px; color: var(--text-mid); margin-bottom: 48px; }

/* ── Services grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p  { font-size: .95rem; }
.service-result {
  margin-top: 16px;
  padding: 10px 14px;
  background: var(--cream);
  border-left: 3px solid var(--amber);
  font-size: .88rem;
  color: var(--text-mid);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ── Results grid ── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.result-metric {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--amber);
  display: block;
  margin-bottom: 6px;
}
.result-card h4 { font-size: 1rem; margin-bottom: 8px; }
.result-card p  { font-size: .9rem; }

/* ── Testimonials ── */
.testimonials-section { background: var(--espresso); }
.testimonials-section .section-label { color: var(--amber-light); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.testimonial-stars { color: var(--amber-light); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-text  { color: rgba(255,255,255,.88); font-size: 1rem; margin-bottom: 20px; font-style: italic; }
.testimonial-author strong { color: var(--white); display: block; }
.testimonial-author span  { color: rgba(255,255,255,.55); font-size: .88rem; }
.testimonial-result {
  margin-top: 16px;
  padding: 10px 14px;
  background: rgba(200,149,74,.15);
  border-left: 3px solid var(--amber);
  color: var(--amber-light);
  font-size: .88rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ── How it works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.step-number {
  width: 52px; height: 52px;
  background: var(--amber);
  color: var(--white);
  border-radius: 50%;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.step-card h3 { margin-bottom: 10px; font-size: 1.1rem; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--espresso);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question .icon { font-size: 1.2rem; transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-mid);
  font-size: .97rem;
}
.faq-item.open .faq-answer { display: block; }

/* ── Blog cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--amber);
  margin-bottom: 10px;
  display: block;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card p  { font-size: .92rem; flex: 1; }
.blog-card-footer {
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  font-size: .85rem;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
}

/* ── Locations ── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: box-shadow .2s;
}
.location-card:hover { box-shadow: var(--shadow); }
.location-flag { font-size: 2.5rem; margin-bottom: 14px; display: block; }
.location-card h3 { margin-bottom: 8px; }
.location-card p  { font-size: .92rem; margin-bottom: 18px; }

/* ── CTA section ── */
.cta-section {
  background: linear-gradient(135deg, var(--espresso) 0%, #4A2818 100%);
  text-align: center;
  padding: 80px 24px;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,.75); max-width: 540px; margin: 0 auto 36px; }
.cta-note { margin-top: 16px; font-size: .88rem; color: rgba(255,255,255,.5); }

/* ── Article / Blog post content ── */
.article-header {
  background: linear-gradient(160deg, var(--cream) 60%, #EFE0CC 100%);
  padding: 60px 24px 48px;
}
.article-header .article-meta {
  font-size: .88rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.article-header h1 { max-width: 820px; margin-bottom: 16px; }
.article-header .article-intro {
  font-size: 1.15rem;
  max-width: 720px;
  color: var(--text-mid);
}
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.article-body h2 { margin: 48px 0 16px; }
.article-body h3 { margin: 32px 0 12px; }
.article-body p  { margin-bottom: 18px; }
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 18px;
  color: var(--text-mid);
}
.article-body li { margin-bottom: 8px; }
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: .95rem;
}
.article-body table th {
  background: var(--espresso);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
}
.article-body table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.article-body table tr:nth-child(even) td { background: var(--cream); }
.callout {
  background: var(--cream-dark);
  border-left: 4px solid var(--amber);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
}
.callout p { margin: 0; }
.stat-highlight {
  background: var(--espresso);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  text-align: center;
  margin: 32px 0;
}
.stat-highlight .big-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  color: var(--amber-light);
  display: block;
  margin-bottom: 6px;
}
.step-list { list-style: none; padding: 0; }
.step-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.step-num {
  width: 36px; height: 36px;
  background: var(--amber);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: .95rem;
}

/* ── Page header (for non-article pages) ── */
.page-header {
  background: linear-gradient(160deg, var(--cream) 60%, #EFE0CC 100%);
  padding: 64px 24px 56px;
  text-align: center;
}
.page-header h1 { margin-bottom: 14px; }
.page-header p  { max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--amber);
  box-shadow: var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .5px;
}
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.pricing-card .price-note { font-size: .92rem; color: var(--text-light); margin-bottom: 24px; }
.pricing-features { list-style: none; padding: 0; text-align: left; margin: 24px 0; }
.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: .93rem;
  color: var(--text-mid);
  display: flex;
  gap: 10px;
}
.pricing-features li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }

/* ── Footer ── */
.site-footer {
  background: var(--espresso);
  color: rgba(255,255,255,.7);
  padding: 56px 24px 32px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
}
.footer-brand .nav-logo { color: var(--white); }
.footer-brand p { margin-top: 12px; font-size: .92rem; }
.footer-col h5 {
  color: var(--white);
  font-size: .9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.65); font-size: .92rem; }
.footer-col a:hover { color: var(--amber-light); text-decoration: none; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--amber-light); }

/* ── Breadcrumb ── */
.breadcrumb {
  font-size: .88rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--amber); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero { padding: 56px 20px 48px; }
  section { padding: 52px 20px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}

/* ── Utility ── */
.text-center  { text-align: center; }
.text-amber   { color: var(--amber); }
.bg-cream     { background: var(--cream-dark); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }
.bold  { font-weight: 700; }
