:root {
  --bg: #f3f6f4;
  --bg-soft: #ffffff;
  --surface: #ffffff;
  --ink: #1c2a24;
  --muted: #43524b;
  --brand: #0d4f3a;
  --brand-soft: #d9ece4;
  --line: #d7e2dc;
  --shadow: 0 18px 36px rgba(18, 35, 29, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1,
h2,
h3,
p,
ul,
figure {
  margin: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 15%, rgba(13, 79, 58, 0.2), transparent 48%),
    radial-gradient(circle at 83% 0%, rgba(90, 126, 114, 0.22), transparent 44%),
    linear-gradient(165deg, #f5f8f6 0%, #edf3f0 100%);
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.hero {
  padding: 56px 0 20px;
}

.hero__inner {
  background: linear-gradient(145deg, rgba(8, 58, 43, 0.94), rgba(13, 79, 58, 0.92));
  color: #f2f8f5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 50px);
  animation: riseIn 0.6s ease-out both;
}

.hero__eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
  font-weight: 700;
  opacity: 0.86;
}

.hero h1,
h2 {
  font-family: "Plus Jakarta Sans", "Trebuchet MS", sans-serif;
}

.hero h1 {
  margin-top: 10px;
  font-size: clamp(2rem, 6vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero__lead {
  margin-top: 18px;
  max-width: 70ch;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  color: #dcebe5;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero__highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding: 0;
}

.hero__highlights li {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: #eef5f2;
  font-weight: 700;
  font-size: 0.88rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 22px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: #f5f7f6;
  color: #103528;
}

.button--primary:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #eef5f2;
  background: rgba(255, 255, 255, 0.02);
}

main {
  padding: 26px 0 48px;
  display: grid;
  gap: 22px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 7px 22px rgba(19, 31, 26, 0.08);
  padding: clamp(18px, 2.4vw, 28px);
  animation: riseIn 0.6s ease-out both;
}

.card--pricing {
  animation-delay: 0.08s;
}

.info-grid .card:first-child {
  animation-delay: 0.14s;
}

.info-grid .card:last-child {
  animation-delay: 0.2s;
}

.card h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  letter-spacing: -0.02em;
}

.card--pricing {
  display: grid;
  gap: 18px;
}

.card--pricing > div > p {
  color: var(--muted);
}

.pricing-highlight {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 800;
  font-size: 0.92rem;
  white-space: nowrap;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 14px;
}

.price-item {
  border: 1px solid var(--line);
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 14px;
}

.price-item__size {
  color: var(--muted);
}

.price-item__value {
  font-family: "Plus Jakarta Sans", "Trebuchet MS", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  margin-top: 2px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

ul {
  padding-left: 20px;
  margin-top: 12px;
}

li + li {
  margin-top: 2px;
}

.card--contact a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.card--contact a:hover {
  text-decoration: underline;
}

.card--contact p + p {
  margin-top: 8px;
}

.gallery h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  margin-bottom: 10px;
}

.gallery__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}

.gallery__item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  min-height: 180px;
  animation: riseIn 0.6s ease-out both;
}

.gallery__item:nth-child(1) {
  animation-delay: 0.1s;
}

.gallery__item:nth-child(2) {
  animation-delay: 0.16s;
}

.gallery__item:nth-child(3) {
  animation-delay: 0.22s;
}

.gallery__item:nth-child(4) {
  animation-delay: 0.28s;
}

.gallery__item:nth-child(5) {
  animation-delay: 0.34s;
}

.gallery__item:nth-child(6) {
  animation-delay: 0.4s;
}

.gallery__item--wide {
  grid-column: span 2;
  grid-row: span 2;
}

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

figcaption {
  position: absolute;
  left: 8px;
  bottom: 8px;
  background: rgba(10, 26, 20, 0.7);
  color: #eef4f1;
  font-size: 0.8rem;
  border-radius: 999px;
  padding: 4px 10px;
}

@media (max-width: 980px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .hero {
    padding-top: 22px;
  }

  .hero__inner {
    border-radius: 18px;
  }

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

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

  .gallery__item--wide {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 220px;
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery__item,
  .gallery__item--wide {
    grid-column: span 1;
    min-height: 220px;
  }

  .hero__cta {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero__highlights {
    margin-top: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__inner,
  .card,
  .gallery__item,
  .button {
    animation: none;
    transition: none;
  }
}
