@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=Lora:ital,wght@0,500;0,600;0,700;1,500&display=swap');

:root {
  --green: #1b4332;
  --green-mid: #2d6a4f;
  --green-light: #52b788;
  --gold: #d4a853;
  --cream: #faf7f0;
  --white: #ffffff;
  --ink: #1a1a1a;
  --muted: #5c6358;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-serif: 'Lora', Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green-mid); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

/* Top info bar */
.info-bar {
  background: var(--green);
  color: var(--cream);
  padding: 0.5rem 1.5rem;
  font-size: 0.78rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  text-align: center;
}

.info-bar a { color: var(--gold); font-weight: 600; }

/* Header */
header {
  background: var(--cream);
  border-bottom: 3px solid var(--gold);
}

.head-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--green);
}

.brand img { width: 46px; height: 46px; }
.brand strong { display: block; font-size: 1rem; letter-spacing: 0.02em; }
.brand span { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

.menu-btn {
  display: none;
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 0.55rem 1rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}

.nav-links { display: flex; gap: 0.15rem; align-items: center; }

.nav-links a {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a.active { color: var(--green); }

.nav-email {
  background: var(--gold) !important;
  color: var(--green) !important;
  border-radius: 4px;
}

.nav-email:hover { background: var(--green-light) !important; color: var(--white) !important; }

/* Hero band with bleed image */
.hero-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 75vh;
  background: var(--green);
  color: var(--cream);
}

.hero-text {
  padding: 4rem 1.5rem 4rem max(1.5rem, calc((100vw - 1140px) / 2 + 1.5rem));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text .kicker {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-text h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-text p { opacity: 0.92; max-width: 32rem; margin-bottom: 1rem; }

.hero-mail { font-weight: 700; margin-bottom: 2rem !important; }
.hero-mail a { color: var(--gold); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn {
  display: inline-flex;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 4px;
  border: 2px solid transparent;
}

.btn-gold { background: var(--gold); color: var(--green); }
.btn-gold:hover { background: var(--cream); color: var(--green); }

.btn-line { border-color: var(--gold); color: var(--gold); }
.btn-line:hover { background: rgba(212, 168, 83, 0.15); color: var(--gold); }

.hero-img img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }

/* Gold divider strip */
.strip {
  background: var(--gold);
  color: var(--green);
  padding: 1.5rem 1.5rem;
}

.strip-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.strip-inner strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.65rem;
}

.strip-inner span { font-size: 0.82rem; font-weight: 600; }

section { padding: 4.5rem 1.5rem; }

.container { max-width: 1140px; margin: 0 auto; }

.overline {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

h2.title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  color: var(--green);
  margin-bottom: 1rem;
}

.lead { color: var(--muted); max-width: 620px; margin-bottom: 2rem; }

.bg-cream { background: var(--cream); }
.bg-green { background: var(--green); color: var(--cream); }
.bg-green a { color: var(--gold); }
.bg-green h2.title { color: var(--white); }
.bg-green .lead { color: rgba(250, 247, 240, 0.78); }

/* Offer grid */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.offer {
  background: var(--white);
  padding: 1.75rem;
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(27, 67, 50, 0.08);
  border-top: 4px solid var(--green-light);
}

.bg-green .offer {
  background: rgba(255,255,255,0.06);
  border-top-color: var(--gold);
}

.offer h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.offer p { font-size: 0.92rem; color: var(--muted); margin-bottom: 0.75rem; }
.bg-green .offer p { color: rgba(250, 247, 240, 0.72); }

.offer-mail { font-size: 0.85rem; font-weight: 700; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split img { border-radius: 4px; box-shadow: 0 16px 48px rgba(27, 67, 50, 0.12); }

.facts { list-style: none; margin-top: 1.25rem; }
.facts li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(27, 67, 50, 0.1);
  font-size: 0.95rem;
}
.facts li::before { content: '—'; color: var(--gold); margin-right: 0.5rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
}

.contact-block p { margin-bottom: 0.75rem; }
.contact-block .email-lg { font-size: 1.15rem; font-weight: 700; margin: 1rem 0; }

form { display: grid; gap: 1rem; }

label { display: block; font-size: 0.8rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--green); }

input, textarea, select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(27, 67, 50, 0.15);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--green-light);
}

textarea { min-height: 130px; resize: vertical; }

.form-hint { font-size: 0.82rem; color: var(--muted); }

.page-hero {
  background: var(--green);
  color: var(--cream);
  padding: 5rem 1.5rem 2.5rem;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.page-hero p { max-width: 560px; margin: 0 auto 0.75rem; opacity: 0.88; }

.page-hero .overline { color: var(--gold); }

.prose { max-width: 720px; margin: 0 auto; padding: 3rem 1.5rem; }
.prose h2 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--green); margin: 2rem 0 0.75rem; }
.prose p { margin-bottom: 1rem; color: var(--muted); }

.timeline { border-left: 3px solid var(--gold); padding-left: 1.25rem; margin: 1.5rem 0; }
.timeline div { margin-bottom: 1.25rem; }
.timeline strong { display: block; color: var(--green-mid); font-size: 0.85rem; }

footer {
  background: var(--ink);
  color: rgba(250, 247, 240, 0.75);
  padding: 2.5rem 1.5rem 1.5rem;
}

.foot-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

footer h4 { color: var(--white); font-family: var(--font-serif); margin-bottom: 0.75rem; }

.foot-links a {
  display: block;
  color: rgba(250, 247, 240, 0.65);
  padding: 0.2rem 0;
  font-size: 0.9rem;
}

.foot-links a:hover { color: var(--gold); }

.foot-mail { color: var(--gold); font-weight: 700; word-break: break-all; }

.foot-bottom {
  max-width: 1140px;
  margin: 1.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

@media (max-width: 900px) {
  .hero-band, .split, .contact-grid, .foot-grid, .offer-grid { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .menu-btn { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 1.5rem;
    flex-direction: column;
    background: var(--cream);
    padding: 0.5rem;
    border: 2px solid var(--gold);
    min-width: 240px;
    z-index: 50;
  }
  .nav-links.open { display: flex; }
  .head-wrap { position: relative; }
}

@media (max-width: 520px) {
  .strip-inner { grid-template-columns: 1fr; }
}
