:root {
  --bg: #f7fbf4;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --line: rgba(21, 127, 53, 0.14);
  --line-strong: rgba(7, 85, 31, 0.22);
  --text: #0d2c18;
  --muted: #45644d;
  --primary: #157f35;
  --primary-deep: #0a5a22;
  --primary-soft: #b5e18d;
  --accent: #d8f34c;
  --viber: #7360f2;
  --viber-deep: #5b46dd;
  --viber-soft: #efeaff;
  --shadow: 0 24px 60px rgba(10, 60, 22, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(216, 243, 76, 0.3), transparent 30%),
    radial-gradient(circle at top right, rgba(21, 127, 53, 0.16), transparent 32%),
    linear-gradient(180deg, #f8fff5 0%, #eef8ef 55%, #f5faf2 100%);
}

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

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

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 110px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 14px 18px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--line);
  object-fit: cover;
}

.brand span {
  display: grid;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 0.96rem;
  color: var(--muted);
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: var(--primary-deep);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn {
  text-align: center;
}

.header-cta,
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  box-shadow: 0 14px 32px rgba(21, 127, 53, 0.28);
}

.btn-secondary {
  color: #fff;
  background: linear-gradient(135deg, var(--viber) 0%, var(--viber-deep) 100%);
  border: 1px solid rgba(91, 70, 221, 0.25);
  box-shadow: 0 14px 30px rgba(115, 96, 242, 0.22);
}

.header-cta:hover,
.btn:hover,
.header-cta:focus-visible,
.btn:focus-visible {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 44px;
  align-items: center;
  padding: 64px 0 32px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.story-panel h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  max-width: 12ch;
}

.hero-text,
.section-heading p,
.story-panel p,
.contact-copy p,
.area-copy p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(10, 60, 22, 0.06);
}

.hero-visual {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
}

.hero-orbit {
  position: absolute;
  inset: 5% 2% 11%;
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 34%, rgba(216, 243, 76, 0.42), transparent 26%),
    radial-gradient(circle at 60% 20%, rgba(21, 127, 53, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(227, 245, 222, 0.74));
  border: 1px solid rgba(21, 127, 53, 0.18);
  box-shadow: var(--shadow);
  transform: rotate(-8deg);
}

.hero-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-card-main {
  width: min(96%, 470px);
  padding: 22px;
  border-radius: 34px;
  z-index: 2;
}

.hero-card-note {
  left: 0;
  bottom: 36px;
  width: 230px;
  padding: 18px 20px;
  border-radius: 24px;
  z-index: 3;
}

.hero-card-note p,
.hero-card-badge span {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-card-note strong,
.hero-card-badge strong {
  font-size: 1rem;
  line-height: 1.4;
}

.hero-card-badge {
  right: 8px;
  top: 40px;
  width: 190px;
  padding: 18px;
  border-radius: 26px;
  background: linear-gradient(145deg, #114f22, #1c7e36);
  color: white;
  z-index: 3;
}

.hero-card-badge span {
  color: rgba(255, 255, 255, 0.72);
}

.trust-strip,
.section,
.contact-panel {
  margin-top: 28px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-strip article,
.service-card,
.story-panel,
.story-stats,
.area-highlight,
.review-card,
.faq-list details,
.contact-panel {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.trust-strip article {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.trust-strip p {
  margin: 10px 0 0;
  color: var(--muted);
}

.section {
  padding: 84px 0 0;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.story-panel h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 5vw, 4.1rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.rental-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 20px;
  margin-top: 26px;
  align-items: start;
}

.rental-copy,
.rental-gallery {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: 30px;
}

.rental-copy {
  padding: 28px;
}

.rental-copy h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.rental-copy p:last-child {
  margin-bottom: 0;
}

.rental-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 14px;
}

.rental-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  min-height: 190px;
}

.rental-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rental-photo-featured {
  grid-column: 1 / -1;
  min-height: 360px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  padding: 28px;
  border-radius: 28px;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -58px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 243, 76, 0.72), transparent 66%);
}

.service-index {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-story {
  display: grid;
  grid-template-columns: 1.1fr 0.82fr;
  gap: 20px;
  align-items: stretch;
}

.story-panel,
.story-stats,
.contact-panel {
  border-radius: 32px;
  padding: 30px;
}

.story-stats {
  display: grid;
  align-content: center;
  gap: 18px;
  background:
    radial-gradient(circle at top left, rgba(216, 243, 76, 0.42), transparent 26%),
    linear-gradient(180deg, rgba(13, 44, 24, 0.96), rgba(14, 64, 24, 0.88));
  color: white;
}

.story-stats strong {
  display: block;
  font-size: 1.35rem;
}

.story-stats span {
  color: rgba(255, 255, 255, 0.74);
}

.area-highlight {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 28px;
  margin-top: 28px;
  border-radius: 30px;
}

.area-copy h3 {
  margin: 0 0 8px;
  font-size: 2rem;
}

.area-tag {
  padding: 18px 22px;
  border-radius: 999px;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.review-card {
  min-height: 200px;
  padding: 28px;
  border-radius: 28px;
}

.review-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-list details {
  border-radius: 22px;
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-contact {
  padding-bottom: 20px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(232, 247, 224, 0.88));
}

.contact-details {
  display: grid;
  gap: 16px;
  align-content: center;
}

.contact-details div {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
}

.contact-details span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.sticky-actions {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 50;
  transform: translateX(-50%);
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: min(calc(100% - 24px), 460px);
}

.sticky-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(10, 60, 22, 0.2);
}

.sticky-call {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: white;
}

.sticky-viber {
  background: linear-gradient(135deg, var(--viber) 0%, var(--viber-deep) 100%);
  color: #ffffff;
  border: 1px solid rgba(91, 70, 221, 0.3);
}

.viber-notice {
  position: fixed;
  right: 16px;
  bottom: 88px;
  z-index: 60;
  width: min(calc(100% - 24px), 360px);
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 42px rgba(10, 60, 22, 0.18);
  color: var(--text);
  line-height: 1.55;
}

.viber-notice a {
  color: var(--primary-deep);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .top-nav {
    display: none;
  }

  .hero,
  .section-story,
  .contact-panel,
  .service-grid,
  .rental-showcase,
  .review-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: 500px;
  }

  .service-card,
  .review-card {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-header {
    gap: 12px;
    padding: 12px 14px;
    border-radius: 24px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 28px;
    gap: 22px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
    min-height: 54px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-card-main {
    width: calc(100% - 22px);
    padding: 14px;
  }

  .hero-card-note {
    left: 10px;
    right: 10px;
    bottom: 18px;
    width: auto;
    padding: 12px 14px;
  }

  .hero-card-badge {
    right: 12px;
    top: 14px;
    width: 140px;
    padding: 12px 14px;
  }

  .story-panel,
  .story-stats,
  .area-highlight,
  .review-card,
  .faq-list details,
  .contact-panel,
  .rental-copy,
  .rental-gallery,
  .trust-strip article,
  .service-card {
    border-radius: 24px;
  }

  .section {
    padding-top: 66px;
  }

  .area-highlight {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .sticky-actions {
    display: grid;
  }

  .viber-notice {
    right: 12px;
    left: 12px;
    bottom: 82px;
    width: auto;
  }

  .rental-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }

  .rental-photo,
  .rental-photo-featured {
    min-height: auto;
  }

  .rental-photo img {
    aspect-ratio: 4 / 3;
  }
}
