/* Reset & base */
:root {
  --green-deep: #1f4a38;
  --copper: #a75a33;
  --sand: #d9c7aa;
  --ivory: #f6f3ec;
  --blue-night: #17343c;
  --muted: #8a9a83;
  --text: #1b1b18;
  --radius: 14px;
  --max-width: 1100px;
  --container-padding: 20px;
}
* {
  box-sizing: border-box;
}
html, body {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Lato', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  color: var(--text);
  background: linear-gradient(180deg, var(--ivory), #f2efe8);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--green-deep);
}
.brand svg {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
}
.site-title {
  font-family: 'Crimson Pro', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
}
.nav {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.nav a {
  color: var(--green-deep);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.3s ease;
}
.nav a:hover {
  background: rgba(31,74,56,0.06);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: center;
  padding: 28px 0 12px;
}
.hero-card {
  background: linear-gradient(180deg, rgba(250,246,240,0.6), rgba(246,243,236,0.9));
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 30px rgba(17,17,17,0.06);
}
.hero h1 {
  font-family: 'Crimson Pro', serif;
  font-size: 40px;
  margin: 0 0 12px;
  color: var(--green-deep);
}
.lead {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 16px;
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
}
.btn-primary {
  background: var(--green-deep);
  color: var(--ivory);
}
.btn-ghost {
  border: 2px solid var(--green-deep);
  color: var(--green-deep);
  background: transparent;
}
.hero-visual {
  background: var(--blue-night);
  border-radius: var(--radius);
  padding: 20px;
  color: var(--ivory);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-visual .symbol {
  width: 160px;
  height: 160px;
  margin-bottom: 10px;
}
.hero-visual p {
  max-width: 260px;
  text-align: center;
}

/* Cards grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 26px 0;
}
.card {
  background: var(--ivory);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 6px 20px rgba(17,17,17,0.04);
  border: 1px solid rgba(17,17,17,0.03);
}
.card h3 {
  margin: 0 0 8px;
  color: var(--green-deep);
}
.card p {
  margin: 0;
  color: #3b3b36;
}

/* Footer */
.site-footer {
  margin-top: 40px;
  padding: 26px 0;
  border-top: 1px dashed rgba(27,27,24,0.06);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}
.small {
  font-size: 13px;
  color: #5a5a57;
}

/* Offers page */
.offer-hero {
  padding: 18px 0;
}
.offer-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.offer-item {
  background: linear-gradient(180deg, rgba(250,246,240,0.9), rgba(246,243,236,0.95));
  border-radius: 12px;
  padding: 18px;
  border-left: 6px solid var(--copper);
}
.offer-item h4 {
  margin: 0 0 8px;
}
.price {
  font-weight: 800;
  color: var(--green-deep);
}

/* Contact page */
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 22px;
  align-items: start;
}
.form {
  background: var(--ivory);
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}
.input,
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(27,27,24,0.08);
  font-size: 15px;
}
.input:focus,
textarea:focus {
  outline: 2px solid rgba(23,52,60,0.09);
}
.form .row {
  margin-bottom: 12px;
}

/* Utilities */
.kicker {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
}
.tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(31,74,56,0.06);
  color: var(--green-deep);
  font-weight: 700;
}
.center {
  text-align: center;
}

/* Responsive breakpoints */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr 380px;
  }
  .contact-panel {
    grid-template-columns: 1fr 360px;
  }
}

@media (max-width: 980px) {
  .hero,
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offer-list {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 240px;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero h1 {
    font-size: 32px;
    text-align: center;
  }
  .lead {
    font-size: 16px;
    text-align: center;
  }
  .cta-row {
    justify-content: center;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 600px) {
  .brand svg {
    width: 44px;
    height: 44px;
  }
  .hero h1 {
    font-size: 26px;
  }
  .hero-card {
    padding: 20px;
  }
  .hero-visual {
    padding: 16px;
  }
  .input,
  textarea {
    font-size: 14px;
  }
  .btn {
    width: 100%;
  }
  .container {
    padding: 16px;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 22px;
  }
  .lead {
    font-size: 15px;
  }
}

/* Decorative details */
.leaf-accent {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-left: 8px;
}
.logo-mini {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31,74,56,0.06);
  background: linear-gradient(180deg, rgba(31,74,56,0.03), transparent);
}
