:root {
  --brand-green: #234c2d;
  --brand-green-dark: #17371f;
  --brand-cream: #f6f6f6;
  --text: #1b1b1b;
  --muted: #5e5e5e;
  --card: #ffffff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--text);
  background: var(--brand-cream);
  line-height: 1.7;
}
a { color: inherit; }
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}
.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: 'Adamina', Georgia, serif;
  letter-spacing: 0.5px;
}
.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.brand span { font-size: 18px; }
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.brand,
.brand span,
.nav a,
.phone {
  color: #ffffff;
}
.brand img {
  border: 2px solid rgba(255, 255, 255, 0.8);
}
.nav a {
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav a:hover,
.nav a.active {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.95);
}
.phone { font-weight: 600; text-decoration: none; }
.hero {
  background: linear-gradient(rgba(0,0,0,.38), rgba(0,0,0,.38)),
    url('/assets/images/hero.png?v=20260528') center/cover no-repeat;
  color: #fff;
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 130px 16px 52px;
}
.hero h1 {
  margin: 0 0 12px;
  font-family: 'Adamina', Georgia, serif;
  font-size: clamp(32px, 5vw, 48px);
}
.hero p { margin: 0; font-size: 18px; }
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 20px 56px;
}
.section-title {
  margin: 0 0 18px;
  font-family: 'Adamina', Georgia, serif;
  color: var(--brand-green);
  font-size: clamp(28px, 4vw, 38px);
}
.lead {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 24px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.card {
  grid-column: span 12;
  background: var(--card);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
@media (min-width: 900px) {
  .card.half { grid-column: span 6; }
}
.card h2,
.card h3 {
  margin-top: 0;
  font-family: 'Adamina', Georgia, serif;
  color: var(--brand-green);
}
.card p { margin-bottom: 0; }
.photo {
  width: 100%;
  border-radius: 12px;
  display: block;
  margin-top: 18px;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.list {
  margin: 10px 0 0;
  padding-left: 18px;
}
.footer {
  border-top: 1px solid #1a3b23;
  background: var(--brand-green);
  padding: 28px 20px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  color: #e9f4ec;
}
.footer-nav {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-nav a {
  text-decoration: none;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  padding-bottom: 2px;
}
.cta {
  margin-top: 24px;
  display: inline-block;
  background: var(--brand-green);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}
.cta:hover { background: var(--brand-green-dark); }
@media (max-width: 860px) {
  .nav-wrap { flex-direction: column; align-items: flex-start; gap: 10px; }
  .phone { align-self: flex-start; }
  .hero { padding-top: 180px; }
}

#sc-chat-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  background: var(--brand-green);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}
#sc-chat-btn:hover {
  background: var(--brand-green-dark);
}
#sc-chat-panel {
  position: fixed;
  right: 18px;
  bottom: 72px;
  z-index: 9999;
  width: 340px;
  max-width: calc(100vw - 28px);
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}
#sc-chat-panel h4 {
  margin: 0 0 10px;
  font-family: 'Adamina', Georgia, serif;
  color: var(--brand-green);
}
#sc-chat-panel input,
#sc-chat-panel textarea {
  width: 100%;
  margin: 0 0 10px;
  padding: 10px;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  font: inherit;
}
#sc-chat-panel button {
  background: var(--brand-green);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 600;
}
#sc-chat-panel button:hover {
  background: var(--brand-green-dark);
}
#sc-chat-status {
  margin: 10px 0 0;
  font-size: 14px;
  color: #2f2f2f;
}
