@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --page-bg: #f7f3ec;
  --surface: #fffaf3;
  --surface-soft: #f1eadf;

  --text: #2f3432;
  --muted: #7b817d;
  --line: rgba(47, 52, 50, 0.12);

  --accent: #b88a55;
  --accent-dark: #8c6437;

  --shadow: 0 28px 80px rgba(52, 45, 36, 0.12);
}

* {
  box-sizing: border-box;
}

body.sp-page {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top, rgba(184, 138, 85, 0.12), transparent 28rem),
    linear-gradient(180deg, #fbf7f0 0%, var(--page-bg) 100%);
  font-family: 'Poppins', sans-serif;
  color: var(--text);
}

.sp-page,
.sp-page * {
  font-family: 'Poppins', sans-serif !important;
}

a {
  color: inherit;
}

/* HERO */

.sp-hero {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 2rem clamp(2rem, 4vw, 3rem);
  text-align: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.sp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 50% at 50% 0%, rgba(184, 138, 85, 0.14), transparent 70%),
    radial-gradient(circle at 15% 80%, rgba(106, 155, 173, 0.07), transparent 18rem);
  pointer-events: none;
}

.sp-hero__inner {
  position: relative;
  z-index: 1;
}

.sp-hero h1 {
  max-width: 860px;
  margin: 0 auto 1rem;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.sp-hero h1 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 300;
}

.sp-sub {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 0.9rem;

  width: fit-content;
  max-width: 100%;
  margin: 0 auto;

  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.sp-sub span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.sp-sub-divider {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* STORY */

.sp-story {
  width: min(100% - 4rem, 980px);
  margin: clamp(3rem, 6vw, 5rem) auto;
}

.sp-story__card {
  position: relative;
  overflow: hidden;
  padding: clamp(2.6rem, 6vw, 5rem);
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(184, 138, 85, 0.10), transparent 58%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.sp-story__card::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(184, 138, 85, 0.14);
  border-radius: 28px;
  pointer-events: none;
}

.sp-story__card::after {
  content: '';
  position: absolute;
  right: -85px;
  bottom: -85px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(184, 138, 85, 0.14);
  border-radius: 50%;
}

.sp-story__label-row {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.sp-story__flower {
  width: 1.3rem;
  height: 1.3rem;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.92;
}

.sp-story__label {
  font-size: 0.55rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.sp-story h2 {
  position: relative;
  z-index: 1;

  margin: 0 0 2rem;

  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.045em;

  text-wrap: balance;
}

.sp-story__text {
  position: relative;
  z-index: 1;
}

.sp-story p {
  width: min(100%, 760px);
  margin: 0 auto 1.4rem;

  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.95;
  text-align: center;

  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.sp-story__highlight {
  width: min(100%, 860px);
  margin: 2.8rem auto 0 !important;
  padding-top: 2rem;
  border-top: 1px solid var(--line);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;

  color: var(--text) !important;
  font-size: clamp(1.4rem, 2.8vw, 2.3rem) !important;
  font-weight: 300;
  line-height: 1.35 !important;
  text-align: center;
}

.sp-story__highlight span {
  display: block;
}

/* VIDEO */

.sp-video {
  width: min(100% - 4rem, 1120px);
  margin: clamp(4rem, 7vw, 6rem) auto;
  text-align: center;
}

.sp-video__header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.sp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.1rem;
}

.sp-kicker::before,
.sp-kicker::after {
  content: '';
  width: 34px;
  height: 1px;
  background: rgba(184, 138, 85, 0.65);
}

.sp-kicker span {
  font-size: 0.55rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.sp-video__header h2 {
  margin: 0;

  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.045em;

  text-wrap: balance;
}

.sp-video__frame {
  position: relative;
  overflow: hidden;

  border-radius: 36px;
  border: 1px solid var(--line);

  background:
    radial-gradient(circle at center, rgba(184, 138, 85, 0.12), transparent 60%),
    var(--surface-soft);

  box-shadow: var(--shadow);
}

.sp-video__frame::before {
  content: '';
  position: absolute;
  inset: 16px;
  z-index: 2;

  border: 1px solid rgba(255, 250, 243, 0.42);
  border-radius: 28px;

  pointer-events: none;
}

.sp-video__frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #2f3432;
}

/* MENU BUTTON */

.sp-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  margin: clamp(2.4rem, 4vw, 3.2rem) auto clamp(4.5rem, 7vw, 6rem);
  padding: 0 1rem;
}

.sp-menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 190px;
  padding: 1.05rem 2.8rem;

  border-radius: 999px;
  background: var(--text);
  color: var(--surface);

  text-decoration: none;

  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;

  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.sp-menu-link:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(184, 138, 85, 0.24);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .sp-hero {
    padding: 2.8rem 1rem 2rem;
  }

  .sp-story,
  .sp-video {
    width: calc(100% - 2rem);
  }

  .sp-story {
    margin: 3rem auto;
  }

  .sp-story__card {
    padding: 3rem 1.4rem;
    border-radius: 28px;
  }

  .sp-story__card::before {
    inset: 14px;
    border-radius: 20px;
  }

  .sp-story__label-row {
    gap: 0.6rem;
    margin-bottom: 1rem;
  }

  .sp-story__flower {
    width: 1rem;
    height: 1rem;
  }

  .sp-video {
    margin: 3.8rem auto;
  }

  .sp-video__frame {
    border-radius: 26px;
  }

  .sp-video__frame::before {
    inset: 10px;
    border-radius: 18px;
  }

  .sp-menu-btn {
    width: calc(100% - 2rem);
    margin: 2.2rem auto 4.5rem;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .sp-hero {
    padding: 2.3rem 1rem 1.7rem;
  }

  .sp-hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.8rem);
  }

  .sp-sub {
    gap: 0.55rem;
    font-size: 0.55rem;
    letter-spacing: 0.12em;
  }

  .sp-sub-divider {
    width: 3px;
    height: 3px;
  }

  .sp-story p {
    width: 100%;
    font-size: 0.84rem;
    line-height: 1.85;
    text-wrap: pretty;
  }

  .sp-story__highlight {
    font-size: clamp(1.25rem, 7vw, 1.8rem) !important;
    line-height: 1.35 !important;
  }

  .sp-kicker {
    gap: 10px;
    margin-bottom: 0.9rem;
  }

  .sp-kicker::before,
  .sp-kicker::after {
    width: 24px;
  }

  .sp-story__flower {
    width: 0.85rem;
    height: 0.85rem;
  }

  .sp-story__label {
    font-size: 0.5rem;
    letter-spacing: 0.28em;
  }

  .sp-menu-link {
    width: 100%;
    padding: 1rem 1.4rem;
  }
}