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

:root {
  --cream: #fdf3ec;
  --cream-dark: #f3e6d8;
  --olive: #5f6b3e;
  --olive-light: #8a9760;
  --orange: #e2592c;
  --orange-dark: #c2451e;
  --text-dark: #3a3a3a;
  --text-mid: #6b6b6b;
  --green-dark: #1f2e1a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* HEADER */
header {
  background: var(--cream);
  padding: 20px 40px;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo img { height: 90px; width: auto; }
.logo span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--olive);
  font-size: 1.1rem;
}
.home-link {
  color: var(--text-dark);
  text-decoration: underline;
  font-size: 0.95rem;
}

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 40px 40px 80px;
}
.hero-text { flex: 1.2; }
.hero-kicker {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.hero-text h1 {
  font-size: 2.2rem;
  line-height: 1.3;
  color: var(--olive-light);
  margin-bottom: 20px;
}
.hero-text h1 strong { color: var(--green-dark); }
.hero-line {
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
  color: var(--olive-light);
  margin-bottom: 10px;
}
.hero-line strong { color: var(--green-dark); }

.hero-image { flex: 1; display: flex; justify-content: center; }
.hero-photo {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* BUTTONS */
.btn-orange {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 16px;
  transition: background 0.2s;
}
.btn-orange:hover { background: var(--orange-dark); }

.btn-cream {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--text-dark);
  padding: 16px 48px;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 32px auto 0;
  transition: background 0.2s;
}
.btn-cream:hover { background: #e8d9c8; }

/* GUIDE TO */
.guide-to {
  background: var(--green-dark);
  color: white;
  padding: 70px 40px;
  text-align: center;
}
.guide-to h2 {
  font-size: 1.9rem;
  margin-bottom: 40px;
}
.guide-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.guide-card {
  background: white;
  color: var(--text-dark);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: left;
}
.guide-icon { font-size: 1.8rem; margin-bottom: 16px; }
.guide-card h3 {
  font-size: 1.1rem;
  color: var(--olive);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.guide-card p { font-size: 0.92rem; color: var(--text-mid); }
.guide-to .btn-cream { display: block; width: fit-content; }

/* ABOUT */
.about {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  padding: 80px 40px;
}
.about-text { flex: 1.2; }
.about-text h2 {
  font-size: 2rem;
  color: var(--olive);
  margin-bottom: 20px;
}
.about-text p { font-size: 0.98rem; color: var(--text-mid); margin-bottom: 16px; }
.about-image { flex: 1; }
.about-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 6px;
}

/* CTA GREEN */
.cta-green {
  background: linear-gradient(135deg, #2d4a2d, #1f2e1a);
  color: white;
  padding: 80px 40px;
}
.cta-green-inner {
  max-width: 800px;
  margin: 0 auto;
}
.cta-green h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}
.cta-green p {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}
.recommendation-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
.recommendation-links a {
  color: white;
  text-decoration: underline;
  font-weight: 700;
  font-size: 1rem;
}
.cta-closing {
  font-style: italic;
  font-size: 1.05rem;
}

/* TESTIMONIALS */
.testimonials {
  padding: 80px 40px;
  text-align: center;
}
.testimonials h2 {
  font-size: 1.8rem;
  color: var(--olive);
  text-transform: uppercase;
}
.testimonials-subtitle {
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
  color: var(--olive);
  text-transform: uppercase;
  margin-bottom: 40px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial {
  background: white;
  border-radius: 6px;
  padding: 24px;
  text-align: left;
}
.testimonial p:first-child {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--olive);
  margin-bottom: 10px;
}
.quote-body { font-size: 0.9rem; color: var(--text-mid); }

/* BRIDGE */
.bridge {
  background: var(--cream-dark);
  padding: 60px 40px;
  text-align: center;
}
.bridge-inner { max-width: 700px; margin: 0 auto; }
.bridge h2 { font-size: 1.6rem; color: var(--olive); margin-bottom: 16px; }
.bridge p { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 20px; }

/* FOOTER */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.7);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { height: 90px; width: auto; background: white; border-radius: 8px; padding: 10px 20px; }
.footer-logo span { font-family: 'Playfair Display', serif; font-style: italic; color: white; font-size: 1.4rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; }
.footer-links a:hover { color: white; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { flex-direction: column; padding: 30px 20px 50px; }
  .hero-text h1 { font-size: 1.7rem; }
  .guide-cards { grid-template-columns: 1fr; }
  .about { flex-direction: column; padding: 50px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-image img { height: 280px; }
}
