@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

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

:root {
  --green-dark: #2d6a4f;
  --green-mid: #40916c;
  --green-light: #74c69d;
  --text-dark: #1b1b1b;
  --text-muted: #555;
  --bg-light: #f8f9f6;
  --border: #e0e6e0;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: #fff;
}

/* ─── Header ─────────────────────────────────────────── */

.site-header {
  background-image: url('../assets/background.jpg');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: relative;
}

.site-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.header-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 24px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.site-logo img {
  max-height: 80px;
  width: auto;
}

.site-title {
  font-family: 'Lato', sans-serif;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-align: center;
  font-style: normal;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

/* ─── Navigation ─────────────────────────────────────── */

.site-nav {
  background: #000;
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-nav a {
  display: block;
  padding: 14px 20px;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
  border-bottom-color: var(--green-light);
}

/* ─── Page layout ────────────────────────────────────── */

.site-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}

/* ─── Content ────────────────────────────────────────── */

.content-image {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-top: 28px;
  display: block;
}

.page-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--green-dark);
}

.page-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin: 32px 0 14px;
  color: var(--green-dark);
}

.page-content p {
  margin-bottom: 18px;
  color: var(--text-dark);
}

.page-content ul {
  margin: 0 0 18px 20px;
}

.page-content ul li {
  margin-bottom: 8px;
}

/* ─── Hero (homepage only) ───────────────────────────── */

.hero-quote {
  border-left: 4px solid var(--green-light);
  padding: 20px 28px;
  margin-bottom: 36px;
  background: var(--bg-light);
  border-radius: 0 6px 6px 0;
}

.hero-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.hero-quote cite {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: normal;
  letter-spacing: 0.04em;
}

/* ─── Testimonial ────────────────────────────────────── */

.testimonial {
  border-left: 4px solid var(--green-light);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--bg-light);
  border-radius: 0 6px 6px 0;
}

.testimonial blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.testimonial cite {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: normal;
}

/* ─── Sidebar ────────────────────────────────────────── */

.sidebar {
  position: sticky;
  top: 24px;
}

.about-widget {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-light);
}

.about-widget-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-widget-body {
  padding: 20px;
  text-align: center;
}

.about-widget-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-widget-title {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.about-widget-bio {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
  text-align: left;
}

.about-widget-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}

.about-widget-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
}

.about-widget-social a:hover {
  background: var(--green-mid);
  color: #fff;
}

/* ─── Contact links ──────────────────────────────────── */

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border: 2px solid var(--green-mid);
  border-radius: 6px;
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
  width: fit-content;
}

.contact-link:hover {
  background: var(--green-mid);
  color: #fff;
}

/* ─── Footer ─────────────────────────────────────────── */

.site-footer {
  background: #1b2e2a;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 28px 24px;
  font-size: 0.83rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

/* ─── Responsive ─────────────────────────────────────── */

@media (max-width: 768px) {
  .site-main {
    grid-template-columns: 1fr;
    padding: 32px 18px;
    gap: 40px;
  }

  .sidebar {
    position: static;
  }

  .hero-quote blockquote {
    font-size: 1.15rem;
  }

  .page-content h1 {
    font-size: 1.6rem;
  }
}
