:root {
  --color-background: #fff3e0;
  --color-surface: #ffe0b2;
  --color-accent: #ffb74d;
  --color-link: #92a500;
  --color-text: #2f2a24;
  --color-muted: #6f6254;
  --color-white: #fffaf3;
  --max-width: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.65;
}

a { color: var(--color-link); text-decoration: none; }
a:hover, a:focus { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(180deg, #f7c97f 0%, #f2b766 100%);
  border-bottom: 1px solid rgba(47, 42, 36, 0.12);
  box-shadow: 0 8px 28px rgba(47, 42, 36, 0.08);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.logo {
  min-width: 300px;
  line-height: 1.16;
}

.logo-name {
  display: inline-block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-text);
}

.logo-role {
  display: block;
  margin-top: 2px;
  font-size: 0.76rem;
  font-weight: 500;
  color: #5f4d3b;
}

.logo-method {
  display: block;
  margin-top: 3px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #657300;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--color-text);
  font-weight: 500;
}

.nav-links a.active,
.nav-links a:last-child {
  color: var(--color-link);
  font-weight: 700;
}

main { overflow: hidden; }

.hero, .page-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 96px 24px 88px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 56px;
  align-items: center;
}

.page-hero { padding-bottom: 56px; }

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-link);
}

h1, h2, h3 { margin-top: 0; line-height: 1.18; }
h1 {
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 6vw, 4.9rem);
  font-weight: 600;
  max-width: 820px;
}
h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 500;
}
h3 { margin-bottom: 12px; font-size: 1.35rem; }

.hero-subtitle {
  margin: 0 0 10px;
  max-width: 760px;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  color: var(--color-muted);
}

.hero-method {
  margin: 0 0 30px;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-link);
}

.lead {
  margin: 0 0 34px;
  max-width: 700px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-muted);
}

.button-group { display: flex; flex-wrap: wrap; gap: 14px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--color-link);
}

.button-primary { background: var(--color-link); color: var(--color-white); }
.button-secondary { background: transparent; color: var(--color-link); }

.hero-image, .placeholder-photo {
  min-height: 460px;
  border-radius: 220px 220px 22px 22px;
  background:
    linear-gradient(rgba(255, 224, 178, 0.12), rgba(255, 183, 77, 0.22)),
    var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px;
  text-align: center;
  color: var(--color-muted);
  box-shadow: 0 24px 80px rgba(47, 42, 36, 0.12);
}

.section { padding: 82px 24px; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-light { background: var(--color-white); }
.section-accent { background: var(--color-surface); }

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.card, .contact-details {
  background: var(--color-white);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 14px 50px rgba(47, 42, 36, 0.08);
}

.section-light .card { background: var(--color-background); }

.text-block p, .card p, .contact-details p {
  margin-top: 0;
  color: var(--color-muted);
}

.info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.info-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(47, 42, 36, 0.12);
}

.quote-box {
  margin-top: 34px;
  padding: 30px;
  border-left: 4px solid var(--color-link);
  background: rgba(255, 255, 255, 0.45);
  border-radius: 0 24px 24px 0;
  font-size: 1.15rem;
}

.site-footer {
  padding: 34px 24px;
  background: var(--color-text);
  color: var(--color-white);
  font-size: 0.9rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer a { color: var(--color-surface); }

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }
  .logo { min-width: 0; }
  .nav-links { justify-content: flex-start; }
}

@media (max-width: 860px) {
  .hero, .two-column { grid-template-columns: 1fr; }
  .hero { padding-top: 64px; }
  .hero-image, .placeholder-photo { min-height: 340px; }
  .cards { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .section, .page-hero { padding: 62px 20px; }
  .hero { padding: 56px 20px 64px; }
  .nav { padding: 16px 20px; }
  .logo-name { font-size: 1.8rem; }
  .logo-role { max-width: 280px; }
  .button { width: 100%; }
}