:root {
  --green-900: #123d24;
  --green-800: #19542f;
  --green-700: #22713f;
  --green-600: #2f8a4e;
  --green-100: #e9f4ec;
  --green-50: #f4faf5;

  --charcoal: #202723;
  --gray-700: #4e5852;
  --gray-500: #78817b;
  --gray-300: #d8ded9;
  --gray-100: #f3f5f3;
  --white: #ffffff;

  --border-radius: 14px;
  --shadow: 0 20px 50px rgba(18, 61, 36, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(18, 61, 36, 0.1);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-900);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-800);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 17px;
}

.brand-text span {
  margin-top: 5px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.site-nav a {
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--green-700);
}

.site-nav .button {
  color: var(--white);
  background: var(--green-700);
  border-color: var(--green-700);
}

.site-nav .button:hover {
  color: var(--white);
  background: var(--green-800);
  border-color: var(--green-800);
}

.menu-button {
  display: none;
  width: 44px;
  padding: 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--green-900);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid var(--green-700);
  border-radius: 8px;
  color: var(--white);
  background: var(--green-700);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--green-800);
  box-shadow: 0 12px 25px rgba(18, 61, 36, 0.18);
}

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
.site-nav a:focus-visible,
.text-link:focus-visible,
.menu-button:focus-visible {
  outline: 3px solid rgba(47, 138, 78, 0.35);
  outline-offset: 3px;
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
}

.button-outline {
  color: var(--green-900);
  background: var(--white);
  border-color: var(--green-700);
}

.button-outline:hover {
  color: var(--white);
  background: var(--green-700);
  border-color: var(--green-700);
}

.button-full {
  width: 100%;
}

.hero {
  overflow: hidden;
  padding: 92px 0 80px;
  background:
    radial-gradient(circle at 80% 20%, rgba(47, 138, 78, 0.2), transparent 35%),
    linear-gradient(135deg, var(--green-50), var(--white));
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 65px;
  grid-template-columns: 0.95fr 1.05fr;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #a9ddb6;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--green-900);
  line-height: 1.08;
}

h1 {
  max-width: 720px;
  margin-bottom: 25px;
  font-size: clamp(42px, 6vw, 70px);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--gray-700);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  color: var(--green-800);
  font-weight: 800;
  text-decoration: none;
}

.no-obligation {
  margin-top: 20px;
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 380px;
  place-items: center;
  overflow: visible;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-visual::after {
  position: absolute;
  right: 7%;
  bottom: 42px;
  left: 7%;
  height: 28px;
  border-radius: 50%;
  background: rgba(18, 61, 36, 0.10);
  filter: blur(18px);
  content: "";
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: 112%;
  max-width: none;
  max-height: 430px;
  border-radius: 0;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.hero-badge {
  display: none;
}

.hero-badge span {
  color: var(--green-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-badge strong {
  margin-top: 3px;
  font-size: 18px;
}

.trust-strip {
  padding: 30px 0;
  color: var(--white);
  background: var(--green-900);
}

.trust-grid {
  display: grid;
  align-items: center;
  gap: 28px;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-grid > div > div:not(.trust-icon-wrap) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.trust-icon-wrap {
  display: flex;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
}

.trust-icon {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.trust-grid strong {
  color: var(--white);
  font-size: 18px;
  line-height: 1.2;
}

.trust-grid span {
  margin-top: 4px;
  color: #bfd4c5;
  font-size: 14px;
  line-height: 1.35;
}

.section {
  padding: 100px 0;
}

.section-muted {
  background: var(--gray-100);
}

.section-heading {
  max-width: 750px;
  margin-bottom: 45px;
}

.section-heading > p:last-child,
.two-column p {
  color: var(--gray-700);
  font-size: 18px;
}

.card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.info-card {
  padding: 34px;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(18, 61, 36, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(18, 61, 36, 0.10);
}

.card-number {
  margin-bottom: 35px;
  color: var(--green-600);
  font-size: 14px;
  font-weight: 900;
}

.info-card p {
  margin-bottom: 0;
  color: var(--gray-700);
}

.two-column {
  display: grid;
  align-items: center;
  gap: 75px;
  grid-template-columns: 1fr 1fr;
}

.area-list {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  background: var(--white);
  grid-template-columns: 1fr 1fr;
}

.area-list div {
  padding: 25px;
  border-right: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  color: var(--green-900);
  font-weight: 800;
}

.cart-visual {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
  overflow: visible;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cart-visual::after {
  position: absolute;
  right: 18%;
  bottom: 45px;
  left: 18%;
  height: 26px;
  border-radius: 50%;
  background: rgba(18, 61, 36, 0.10);
  filter: blur(17px);
  content: "";
}

.cart-visual img {
  position: relative;
  z-index: 2;
  width: auto;
  max-height: 410px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.cart-placeholder {
  display: none;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
}

details {
  padding: 22px 25px;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  background: var(--white);
}

summary {
  color: var(--green-900);
  font-weight: 850;
  cursor: pointer;
}

details p {
  margin: 16px 0 0;
  color: var(--gray-700);
}

.reserve-section {
  padding: 105px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 61, 36, 0.97), rgba(34, 113, 63, 0.94));
}

.reserve-section h2 {
  color: var(--white);
}

.reserve-section p {
  max-width: 600px;
  color: #dcebe0;
  font-size: 18px;
}

.reserve-grid {
  display: grid;
  align-items: start;
  gap: 70px;
  grid-template-columns: 0.85fr 1.15fr;
}

.reservation-form {
  padding: 34px;
  border-radius: var(--border-radius);
  color: var(--charcoal);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

label {
  display: flex;
  margin-bottom: 18px;
  flex-direction: column;
  color: var(--green-900);
  font-size: 14px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  margin-top: 7px;
  padding: 10px 13px;
  border: 1px solid #bdc7c0;
  border-radius: 7px;
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus {
  border-color: var(--green-600);
  outline: 3px solid rgba(47, 138, 78, 0.16);
}

.checkbox-label {
  display: grid;
  align-items: start;
  grid-template-columns: auto 1fr;
}

.checkbox-label input {
  width: 18px;
  min-height: 18px;
  margin: 3px 10px 0 0;
}

.form-note {
  margin: 16px 0 0;
  color: var(--gray-500) !important;
  font-size: 12px !important;
}

.form-message {
  margin-top: 14px;
  color: var(--green-700);
  font-weight: 800;
}

.site-footer {
  padding: 65px 0 28px;
  color: #c9d8cd;
  background: #0d2818;
}

.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.6fr 0.7fr 0.9fr;
}

.footer-grid div {
  display: flex;
  flex-direction: column;
}

.footer-grid strong {
  color: var(--white);
}

.footer-grid p {
  max-width: 500px;
  margin-top: 10px;
}

.footer-grid span {
  color: #91aa99;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  justify-content: space-between;
  font-size: 13px;
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: 82px;
    right: 0;
    left: 0;
    display: none;
    padding: 25px;
    border-bottom: 1px solid var(--gray-300);
    flex-direction: column;
    background: var(--white);
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-button {
    display: block;
  }

  .hero-grid,
  .two-column,
  .reserve-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 65px;
  }

  .hero-visual {
    min-height: 340px;
    padding: 0;
  }

  .trust-grid,
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-text strong {
    font-size: 14px;
  }

  .brand-text span {
    font-size: 11px;
  }

  .hero {
    padding: 48px 0 60px;
  }

  h1 {
    font-size: 43px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 270px;
    padding: 0;
    border-radius: 0;
  }

  .hero-badge {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-width: 0;
  }

  .trust-grid,
  .card-grid,
  .area-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .reservation-form {
    padding: 23px;
  }

  .footer-bottom {
    gap: 10px;
    flex-direction: column;
  }
}