:root {
  --bg: #f3f7f2;
  --text: #121513;
  --muted: #4b5550;
  --primary: #0f7c45;
  --primary-2: #ff8c2f;
  --card: #ffffff;
  --line: #d6e0d7;
  --shadow: 0 20px 45px rgba(14, 35, 22, 0.12);
}

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

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.15;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 80% -10%, rgba(255, 140, 47, 0.2), transparent 35%),
    radial-gradient(circle at 15% 20%, rgba(15, 124, 69, 0.18), transparent 40%),
    linear-gradient(135deg, #f3f7f2 0%, #edf4ef 100%);
}

.site-header,
main,
.site-footer {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

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

.logo {
  width: clamp(230px, 27vw, 320px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-weight: 500;
}

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

.header-instagram {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #c8d4ca;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-instagram svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: #132119;
  stroke-width: 1.8;
}

.header-instagram:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(16, 44, 29, 0.16);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font-weight: 700;
  background: linear-gradient(120deg, var(--primary), #0d683a);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 124, 69, 0.3);
}

.btn-ghost {
  background: #fff;
  border-color: #c8d4ca;
  color: #132119;
}

.btn-small {
  padding: 0.55rem 0.9rem;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  margin-top: 1rem;
  background: linear-gradient(150deg, #ffffff, #f7faf7);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(1.6rem, 3vw, 3rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 140, 47, 0.35), transparent 70%);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.8rem;
  font-weight: 700;
  color: #315443;
}

.hero h1 {
  margin-top: 0.65rem;
  font-size: clamp(2rem, 5vw, 3.6rem);
  max-width: 18ch;
}

.hero-copy {
  margin-top: 1rem;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  max-width: 58ch;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-facts {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-facts li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-size: 0.95rem;
  color: #2d4035;
}

.section {
  margin-top: clamp(2.2rem, 5vw, 4rem);
}

.section-head {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.section-head h2 {
  max-width: 23ch;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.2rem;
}

.card h3 {
  font-size: 1.1rem;
}

.card p {
  margin-top: 0.6rem;
  color: var(--muted);
}

.gallery-section .section-head h2 {
  max-width: 20ch;
}

.gallery-section {
  width: min(900px, 100%);
  margin-inline: auto;
}

.gallery-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 220px;
  height: 140px;
  min-height: 140px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-item.large {
  flex-basis: 280px;
  height: 140px;
  min-height: 140px;
}

.gallery-item.wide {
  flex-basis: 260px;
  height: 140px;
  min-height: 140px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.35s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 14, 10, 0.2));
}

.gallery-item:hover img {
  transform: scale(1.05);
}

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

.split h2 {
  margin: 0.4rem 0 0.8rem;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
}

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

.stats {
  display: grid;
  gap: 0.8rem;
}

.stats div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.stats strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
}

.stats span {
  color: var(--muted);
}

.cta {
  background: linear-gradient(120deg, #13271d, #1f3a2e);
  color: #f6fff9;
  border-radius: 24px;
  padding: clamp(1.3rem, 3vw, 2.2rem);
}

.cta h2 {
  margin: 0.45rem 0 0.75rem;
  max-width: 25ch;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.cta p {
  color: #d9eee0;
  max-width: 62ch;
}

.cta .btn {
  background: linear-gradient(120deg, #ff8c2f, #ffa85d);
  color: #191f1a;
}

.cta .btn-ghost {
  color: #ecfff3;
  border-color: #5f7c6b;
  background: transparent;
}

.contact-form {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #def4e5;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #5f7c6b;
  background: rgba(255, 255, 255, 0.06);
  color: #f6fff9;
  padding: 0.75rem 0.8rem;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
  color: #b8d2c2;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid #ffb06a;
  outline-offset: 2px;
  border-color: #ffb06a;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form .consent {
  grid-template-columns: auto 1fr;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: #d9eee0;
}

.contact-form .consent input {
  width: 16px;
  height: 16px;
  accent-color: #ff9a47;
  padding: 0;
}

.contact-form .consent a {
  color: #ffcc9d;
  text-decoration: underline;
}

.form-feedback {
  margin: 0;
  min-height: 1.2rem;
  color: #ffd2b2;
  font-size: 0.88rem;
}

.contact-form button:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.site-footer {
  margin: 2rem auto 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  color: #53635a;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.legal-card {
  margin-top: 1rem;
  background: linear-gradient(150deg, #ffffff, #f7faf7);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1rem, 2.5vw, 1.8rem);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin-top: 0.45rem;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
}

.legal-card p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.legal-card h2 {
  margin-top: 1.25rem;
  font-size: clamp(1.05rem, 2.1vw, 1.3rem);
}

.legal-card a {
  color: #0e6a3b;
  font-weight: 600;
}

.legal-card ol {
  margin-top: 0.75rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.legal-card li + li {
  margin-top: 0.65rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.consent-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  pointer-events: auto;
  display: grid;
  gap: 0.7rem;
  max-width: 900px;
  margin-inline: auto;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid #cfdacd;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

.consent-toggle:checked + .consent-banner {
  display: none;
}

.consent-banner p {
  margin: 0;
  color: #213328;
  font-size: 0.92rem;
}

.consent-banner a {
  color: #0e6a3b;
  font-weight: 600;
  text-decoration: underline;
}

.consent-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.consent-actions button {
  pointer-events: auto;
}

@media (max-width: 900px) {
  .grid-3,
  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .logo {
    width: clamp(260px, 72vw, 340px);
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-tools {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero {
    border-radius: 20px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.large,
  .gallery-item.wide {
    flex-basis: 200px;
    height: 130px;
    min-height: 130px;
  }
}
