:root {
  --bg: #071810;
  --bg-soft: #0d2d1f;
  --card: rgba(255, 255, 255, 0.1);
  --text: #effcf4;
  --muted: #b9dbc7;
  --accent: #67e0a4;
  --accent-2: #a6f17a;
  --border: rgba(186, 235, 208, 0.32);
  --shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Nunito", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 15%, rgba(103, 224, 164, 0.22), transparent 35%),
    radial-gradient(circle at 80% 5%, rgba(166, 241, 122, 0.17), transparent 30%),
    linear-gradient(160deg, #04140b 0%, #0b2117 45%, #153626 100%);
  overflow-x: hidden;
}

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

.bg-glow {
  position: fixed;
  width: 34vw;
  height: 34vw;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.22;
  z-index: -1;
}

.bg-glow-left {
  top: -6vw;
  left: -10vw;
  background: #5de49f;
}

.bg-glow-right {
  right: -12vw;
  bottom: 10vh;
  background: #9eec74;
}

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

.hero {
  padding: 58px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  gap: 42px;
  align-items: flex-start;
}

.hero-tag {
  margin: 0 0 10px;
  color: #d6f4e2;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
}

.eyebrow {
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.76rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Nunito", "Segoe UI", sans-serif;
  font-weight: 900;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
}

h3 {
  font-size: 1.4rem;
}

p {
  margin: 0;
  line-height: 1.72;
  color: var(--muted);
}

.hero-subtitle {
  margin-top: 18px;
  font-size: 1.08rem;
  max-width: 54ch;
}

.hero-note {
  margin-top: 16px;
  color: #d8f4e2;
  max-width: 44ch;
  font-size: 0.96rem;
  padding-left: 14px;
  border-left: 3px solid rgba(103, 224, 164, 0.85);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-accent {
  color: #062516;
  background: linear-gradient(120deg, var(--accent), #9df2bc);
  box-shadow: 0 10px 24px rgba(103, 224, 164, 0.3);
}

.btn-outline {
  color: var(--text);
  border-color: #4fb37f;
  background: #1f5f45;
}

.btn-outline:hover {
  border-color: #78d6a7;
  background: #2a7c5b;
}

.hero-points {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.88rem;
  color: #d6f0e2;
  background: rgba(17, 64, 45, 0.6);
}

.hero-media {
  position: relative;
  padding: 18px 14px 44px 24px;
  background: linear-gradient(140deg, rgba(110, 216, 157, 0.2), rgba(255, 255, 255, 0.03));
  border-radius: 40px 16px 34px 14px;
  border: 1px solid rgba(153, 231, 186, 0.34);
}

.hero-main {
  width: 100%;
  height: min(70vh, 520px);
  object-fit: cover;
  border-radius: 30px 14px 28px 16px;
  box-shadow: var(--shadow);
}

.hero-small {
  position: absolute;
  right: -8px;
  bottom: -14px;
  width: min(44%, 250px);
  aspect-ratio: 1.15;
  object-fit: cover;
  border-radius: 10px 26px 16px 30px;
  border: 4px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
}

.hero-stamp {
  position: absolute;
  left: -12px;
  bottom: 26px;
  background: linear-gradient(130deg, rgba(103, 224, 164, 0.95), rgba(177, 246, 141, 0.92));
  color: #123526;
  border-radius: 14px 20px 16px 8px;
  padding: 12px 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.hero-stamp strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.1;
}

.hero-stamp span {
  font-size: 0.76rem;
  letter-spacing: 0.03em;
}

.section {
  padding: 86px 0;
}

.section-head {
  margin-bottom: 26px;
  max-width: 720px;
}

.place-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
}

.place-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.place-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.place-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 22px 10px 18px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.place-gallery img:nth-child(2n) {
  border-radius: 12px 22px 12px 20px;
}

.coach-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 28px;
  align-items: center;
}

.coach-photo {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 26px 12px 24px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.coach-card {
  background: linear-gradient(145deg, rgba(113, 208, 155, 0.2), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--border);
  border-radius: 14px 30px 16px 26px;
  padding: clamp(20px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-top {
  margin-bottom: 18px;
}

.price-value {
  margin-top: 10px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 800;
  color: var(--accent-2);
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 18px;
}

.list-card {
  border: 1px solid var(--border);
  border-radius: 12px 28px 14px 26px;
  background: linear-gradient(145deg, rgba(113, 208, 155, 0.2), rgba(255, 255, 255, 0.04));
  padding: clamp(18px, 3vw, 30px);
}

.list-card h3 {
  margin-bottom: 14px;
}

.list-card ul {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #d8f1e1;
  line-height: 1.55;
}

.included-photos {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.included-photos img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.list-card-light {
  background: linear-gradient(145deg, rgba(166, 241, 122, 0.2), rgba(255, 255, 255, 0.06));
}

.list-card-light img {
  margin-top: 18px;
  width: 100%;
  border-radius: 20px 12px 18px 10px;
  max-height: 250px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.masonry {
  columns: 3 240px;
  column-gap: 14px;
}

.masonry img {
  width: 100%;
  margin: 0 0 14px;
  border-radius: 20px 10px 18px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.masonry img:nth-child(3n) {
  border-radius: 12px 22px 12px 20px;
}

.cta {
  padding-top: 96px;
}

.cta-wrap {
  text-align: left;
  max-width: 820px;
  margin: 0 auto;
  background: linear-gradient(140deg, rgba(103, 224, 164, 0.2), rgba(166, 241, 122, 0.16));
  border: 1px solid rgba(186, 235, 208, 0.42);
  border-radius: 16px 34px 18px 28px;
  padding: clamp(26px, 4vw, 48px);
}

.cta .btn-accent {
  background: #67e0a4;
  color: #103123;
}

.cta .btn-outline {
  background: #2b7f5d;
  border-color: #7cdfab;
}

.cta-wrap p {
  margin-top: 14px;
}

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero-grid,
  .place-grid,
  .coach-wrap,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    margin-left: 0;
  }

  .hero-main {
    height: min(56vh, 460px);
  }

  .hero-small {
    width: min(40%, 220px);
  }

  .place-gallery img {
    height: 200px;
  }
}

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

  .hero-main {
    height: min(50vh, 360px);
    border-radius: 20px;
  }

  .hero-small {
    width: 150px;
    right: -6px;
    bottom: -10px;
    border-width: 3px;
  }

  .hero-media {
    padding: 12px 8px 36px 10px;
  }

  .hero-stamp {
    left: 10px;
    bottom: 14px;
    padding: 9px 12px;
  }

  .section {
    padding: 64px 0;
  }

  .place-gallery {
    grid-template-columns: 1fr;
  }

  .place-gallery img {
    height: 220px;
  }

  .included-photos img {
    height: 170px;
  }

  .btn {
    width: 100%;
  }

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

  .masonry {
    columns: 2 170px;
  }
}

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .masonry {
    columns: 1;
  }

  .included-photos {
    grid-template-columns: 1fr;
  }

  .included-photos img {
    height: 190px;
  }

  .cta-wrap {
    border-radius: 16px 24px 16px 20px;
  }
}
