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

:root {
  --green: #3d5a2c;
  --green-dark: #2a3f1e;
  --gold: #c4a035;
  --gold-light: #e8cc6a;
  --barn: #8b4513;
  --cream: #f5f0e0;
  --cream-dark: #ebe4d0;
  --text: #2c2416;
  --muted: #6b5f4a;
  --white: #ffffff;
  --line: #d9cfba;
  --max: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

.wrap { width: min(var(--max), 92vw); margin: 0 auto; }

.bar {
  background: var(--green-dark);
  color: #b8c4a8;
  font-size: 0.78rem;
  padding: 0.55rem 0;
}

.bar .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

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

.header {
  background: var(--white);
  border-bottom: 2px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo img { width: 50px; height: 50px; }

.logo .name {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.15;
}

.logo .tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--barn);
  font-weight: 600;
}

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

.nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}

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

.nav .cta {
  background: var(--green);
  color: var(--white);
  padding: 0.6rem 1.15rem;
  border-radius: 4px;
  font-weight: 700;
}

.nav .cta:hover { background: var(--green-dark); }

.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 0.45rem 0.75rem;
  font: inherit;
  font-weight: 700;
  color: var(--green);
  border-radius: 4px;
  cursor: pointer;
}

.hero {
  background: var(--green);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
}

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

.hero h1 {
  font-family: 'Bitter', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.12;
  margin-bottom: 1rem;
}

.hero .lead {
  color: #c8d4bc;
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 0.85rem;
}

.hero .email-line {
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.hero .email-line a {
  color: var(--gold-light);
  font-weight: 700;
}

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

.btn {
  display: inline-block;
  padding: 0.75rem 1.35rem;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

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

.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}

.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

.hero-img img {
  border-radius: 8px;
  height: 360px;
  object-fit: cover;
  width: 100%;
  border: 3px solid rgba(255,255,255,0.15);
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 2px solid var(--line);
}

.facts div {
  padding: 1.35rem 1rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.facts div:last-child { border-right: 0; }

.facts strong {
  display: block;
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.3rem;
  color: var(--green);
}

.facts span {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section { padding: 4.5rem 0; }
.section-white { background: var(--white); }

.head { margin-bottom: 2.5rem; max-width: 620px; }
.head.center { text-align: center; margin-left: auto; margin-right: auto; }

.head h2 {
  font-family: 'Bitter', Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  color: var(--green);
  margin-bottom: 0.65rem;
}

.head p { color: var(--muted); }

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

.grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  padding: 1.5rem;
  border-radius: 0 0 6px 6px;
}

.section-white .grid article { background: var(--cream); }

.grid h3 {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.05rem;
  color: var(--green);
  margin-bottom: 0.45rem;
}

.grid p { font-size: 0.88rem; color: var(--muted); }

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

.split img {
  border-radius: 8px;
  height: 320px;
  object-fit: cover;
  width: 100%;
}

.split h3 {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.45rem;
  color: var(--green);
  margin-bottom: 0.65rem;
}

.split p { color: var(--muted); margin-bottom: 0.85rem; }
.split a { color: var(--barn); font-weight: 700; }

.owner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem;
}

.owner img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.owner h3 {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.45rem;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.owner .role {
  color: var(--barn);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}

.owner p { color: var(--muted); margin-bottom: 0.75rem; }

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.panel {
  background: var(--green);
  color: var(--white);
  padding: 2.25rem;
  border-radius: 8px;
}

.panel h2 {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.55rem;
  margin-bottom: 0.75rem;
}

.panel p { color: #b8c4a8; margin-bottom: 1.25rem; }

.panel li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.panel li:last-child { border-bottom: 0; }

.panel strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.panel a { color: var(--white); word-break: break-all; font-weight: 600; }

.form-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2.25rem;
}

.field { margin-bottom: 1rem; }

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

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 0.75rem 0.85rem;
  font: inherit;
  background: var(--cream);
  border-radius: 4px;
}

.field textarea { min-height: 120px; resize: vertical; }

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.note { font-size: 0.82rem; color: var(--muted); margin-top: 0.75rem; }

.map { margin-top: 1.25rem; border-radius: 6px; overflow: hidden; }
.map iframe { width: 100%; height: 220px; border: 0; display: block; }

.footer {
  background: var(--green-dark);
  color: #a8b898;
  padding: 2.5rem 0 1.25rem;
  margin-top: 2rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-cols h4 {
  color: var(--white);
  font-family: 'Bitter', Georgia, serif;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.footer-cols a { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.footer-bottom a { color: var(--gold-light); }

.head a, .owner a { color: var(--barn); font-weight: 700; }

@media (max-width: 960px) {
  .hero-grid, .split, .contact-row, .footer-cols, .owner { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .facts div:nth-child(2) { border-right: 0; }
}

@media (max-width: 680px) {
  .menu-btn { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 2px solid var(--line);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav.open { display: flex; }
  .header .wrap { position: relative; }
  .grid, .facts { grid-template-columns: 1fr; }
  .facts div { border-right: 0; border-bottom: 1px solid var(--line); }
}
