:root {
  --bg: #eef7f1;
  --bg-soft: #f5fbf7;
  --surface: rgba(246, 251, 247, 0.9);
  --surface-strong: #fbfdfb;
  --text: #10261d;
  --muted: #4f675b;
  --line: rgba(16, 38, 29, 0.1);
  --primary: #0f6b46;
  --primary-dark: #0a5335;
  --accent: #0c3424;
  --gold: #d9b25f;
  --gold-soft: #f2d38c;
  --shadow: 0 28px 70px rgba(12, 52, 36, 0.14);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 107, 70, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(217, 178, 95, 0.16), transparent 26%),
    linear-gradient(180deg, #edf7f0 0%, #f7fbf8 46%, #eff8f2 100%);
}

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

img,
iframe {
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 0.8rem 0 2rem;
}

.scroll-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 2rem), 860px);
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(7, 25, 18, 0.94);
  box-shadow: 0 18px 50px rgba(7, 25, 18, 0.24);
  color: white;
  transform: translate(-50%, 140%);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.scroll-banner.visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.scroll-banner strong,
.scroll-banner span {
  display: block;
}

.scroll-banner span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.brand-copy small,
.hero-text,
.service-card p,
.timeline p,
.review-card p,
.faq-list p,
.contact-copy p,
.contact-list,
.site-footer {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.hero,
.launch-offer,
.contact-panel {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 1.5rem;
}

.launch-offer {
  align-items: stretch;
  margin-bottom: 0.55rem;
}

.top-cover {
  margin-bottom: 0.45rem;
}

.top-cover-image {
  display: block;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.top-video {
  margin-bottom: 0.55rem;
}

.top-video-player {
  display: block;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: #081710;
}

.launch-offer-copy,
.launch-offer-price {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.launch-offer-copy {
  padding: 1.75rem 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(232, 246, 238, 0.9)),
    var(--surface);
}

.launch-offer-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.03;
  text-wrap: balance;
}

.launch-offer-text {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.launch-offer-highlight {
  margin: 1.2rem 0 0;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--primary);
}

.launch-offer-price {
  display: grid;
  align-content: center;
  gap: 0.9rem;
  padding: 1.75rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(12, 52, 36, 0.98), rgba(7, 25, 18, 0.98)),
    var(--accent);
  color: white;
}

.launch-offer-old-price {
  font-size: 1rem;
  color: rgba(242, 222, 183, 0.78);
  text-decoration: line-through;
}

.launch-offer-price strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  color: var(--gold-soft);
}

.launch-offer-price .button {
  width: 100%;
}

.hero {
  grid-template-columns: 1fr;
  padding: 0.55rem 0 1rem;
  align-items: stretch;
  justify-items: center;
}

.hero-copy {
  width: min(100%, 900px);
}

.hero-copy,
.hero-card,
.section-highlight,
.review-card,
.service-card,
.faq-list details,
.contact-panel {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(236, 247, 240, 0.84)),
    var(--surface);
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  text-shadow: 0 1px 0 rgba(240, 248, 243, 0.45);
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1;
}

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

.hero-text {
  max-width: 60ch;
  margin: 1.35rem 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.button {
  min-height: 52px;
  padding: 0.9rem 1.3rem;
  border: 1px solid transparent;
}

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

.button-primary {
  background: var(--primary);
  color: white;
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
}

.button-full {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.hero-metrics li {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
}

.hero-metrics strong,
.hero-card h2,
.service-card h3,
.review-card footer,
.timeline strong {
  display: block;
  color: var(--text);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 1.7rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(12, 52, 36, 0.98), rgba(7, 25, 18, 0.98)),
    var(--accent);
  color: white;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 178, 95, 0.24), transparent 65%);
}

.hero-card-top,
.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-card-top span,
.contact-list span,
.contact-list a {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.hero-card strong,
.hero-card h2,
.scroll-banner strong {
  color: var(--gold-soft);
}

.hero-card-top strong,
.hero-card-top span {
  color: rgba(255, 247, 227, 0.9);
}

.hero-card h2 {
  margin: 1.4rem 0 0.8rem;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.06;
}

.hero-checks {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.hero-checks div {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.hero-checks span,
.hero-card p {
  color: rgba(255, 255, 255, 0.76);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0 0;
  padding: 1rem 0;
}

.trust-strip p {
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-weight: 700;
}

.section {
  padding: 5.5rem 0 0;
}

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

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.04;
  text-wrap: balance;
}

.service-grid,
.review-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
  align-items: stretch;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.gallery-card {
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.gallery-tall {
  grid-row: auto;
  min-height: 0;
  aspect-ratio: 3 / 4;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card,
.review-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.68);
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(15, 107, 70, 0.12);
  color: var(--primary);
  font-weight: 800;
}

.section-highlight {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(236, 247, 240, 0.92));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.timeline article {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
}

.review-card {
  margin: 0;
}

.review-card footer {
  margin-top: 1.2rem;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.faq-list details {
  padding: 1.2rem 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
}

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

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

.faq-list p {
  margin-bottom: 0;
}

.contact-section {
  padding-bottom: 2.5rem;
}

.contact-panel {
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(15, 107, 70, 0.08), rgba(217, 178, 95, 0.12)),
    rgba(255, 252, 247, 0.8);
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.15rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.66);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(29, 26, 23, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.contact-list a svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: currentColor;
}

.contact-section .contact-list a,
.contact-section .contact-list span {
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  border: 1px solid rgba(58, 34, 48, 0.08);
}

.contact-offer-price {
  margin: 1rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.15rem, 2.3vw, 1.55rem);
  font-weight: 700;
  color: var(--primary);
}

.contact-copy .button {
  margin-top: 0.85rem;
}

.hero-copy,
.service-card,
.review-card,
.faq-list details,
.timeline article,
.video-card,
.contact-form {
  color: var(--text);
}

.section-heading h2,
.contact-copy h2,
.service-card h3,
.review-card footer,
.faq-list summary,
.timeline strong {
  color: var(--text);
}

.site-footer {
  padding: 1rem 0 0.5rem;
  text-align: center;
  font-size: 0.95rem;
}

.video-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #000;
}

.video-placeholder,
.video-frame iframe {
  width: 100%;
  height: 100%;
}

.video-frame iframe {
  border: 0;
}

.video-placeholder {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  cursor: pointer;
  padding: 1rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
}

.video-placeholder::before {
  content: "▶";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(36, 24, 29, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.32);
  font-weight: 800;
  font-size: 2rem;
  backdrop-filter: blur(8px);
}

.video-placeholder span {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  background: rgba(36, 24, 29, 0.66);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

.video-card h3 {
  margin-bottom: 0.35rem;
}

@media (max-width: 980px) {
  .hero,
  .launch-offer,
  .contact-panel,
  .service-grid,
  .review-grid,
  .gallery-grid,
  .video-grid,
  .timeline,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .scroll-banner {
    width: min(calc(100% - 1rem), 860px);
    flex-direction: column;
    align-items: stretch;
    bottom: 0.5rem;
    padding: 0.85rem;
  }

  .scroll-banner .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 1rem), var(--max-width));
    padding-top: 0.35rem;
  }

  .hero-copy,
  .launch-offer-copy,
  .launch-offer-price,
  .hero-card,
  .section-highlight,
  .contact-panel {
    padding: 1.25rem;
  }

  .hero {
    padding-top: 0.25rem;
    gap: 1rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    line-height: 0.98;
  }

  .hero-text {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-card h2,
  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
  }

  .service-card,
  .review-card,
  .faq-list details,
  .video-card,
  .contact-form {
    padding: 1rem;
  }

  .gallery-card,
  .gallery-tall {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .video-frame::before {
    transform: scale(0.9);
  }

  .timeline article {
    padding: 1rem;
  }

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

  .contact-list a,
  .contact-list span {
    width: 100%;
    text-align: center;
  }

  .section {
    padding-top: 4rem;
  }

  .scroll-banner {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    width: auto;
    transform: translate(0, 140%);
    border-radius: 20px;
  }

  .scroll-banner.visible {
    transform: translate(0, 0);
  }

  .scroll-banner strong {
    font-size: 0.95rem;
  }

  .scroll-banner span {
    font-size: 0.82rem;
  }

  .site-footer {
    padding-bottom: 5.8rem;
  }
}
