:root {
  --cream: #faf6ec;
  --paper: #fffdf7;
  --pink: #f8e0e4;
  --rose: #e86d68;
  --teal: #72aebf;
  --mint: #c7d7ad;
  --peach: #f5b996;
  --yellow: #f8d58a;
  --lav: #cab5da;
  --ink: #353641;
  --muted: #646776;
  --footer: #89b7b7;
  --shadow: 0 22px 55px rgba(86, 72, 83, .14);
  --line: rgba(70, 73, 82, .12);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.5;
  padding-top: 72px
}

a {
  color: inherit
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

.flex {
  display: flex
}

.flex-col {
  display: flex;
  flex-direction: column
}

.flex-wrap {
  flex-wrap: wrap
}

.items-center {
  align-items: center
}

.items-start {
  align-items: flex-start
}

.justify-between {
  justify-content: space-between
}

.justify-center {
  justify-content: center
}

.gap-8 {
  gap: 8px
}

.gap-12 {
  gap: 12px
}

.gap-16 {
  gap: 16px
}

.gap-20 {
  gap: 20px
}

.gap-28 {
  gap: 28px
}

.gap-36 {
  gap: 36px
}

.w-full {
  width: 100%
}

.max-site {
  max-width: 1180px;
  margin: 0 auto
}

.px-site {
  padding-left: 32px;
  padding-right: 32px
}

.py-xl {
  padding-top: 88px;
  padding-bottom: 88px
}

.py-lg {
  padding-top: 68px;
  padding-bottom: 68px
}

.rounded-18 {
  border-radius: 18px
}

.rounded-28 {
  border-radius: 28px
}

.rounded-36 {
  border-radius: 36px
}

.shadow-soft {
  box-shadow: var(--shadow)
}

.text-center {
  text-align: center
}

.text-muted {
  color: var(--muted)
}

.bg-paper {
  background: var(--paper)
}

.bg-pink {
  background: var(--pink)
}

.bg-cream {
  background: var(--cream)
}

.bg-footer {
  background: var(--footer)
}

.top-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 26px rgba(82, 71, 66, .07)
}

.nav-shell {
  height: 72px
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--peach), var(--yellow) 45%, var(--lav));
  box-shadow: 0 10px 24px rgba(232, 109, 104, .25);
  position: relative;
  flex: 0 0 auto
}

.brand-mark:before,
.brand-mark:after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, .55);
  border-radius: 8px
}

.brand-mark:before {
  width: 3px;
  height: 34px;
  left: 20px;
  top: 4px
}

.brand-mark:after {
  height: 3px;
  width: 34px;
  left: 4px;
  top: 20px
}

.brand-name {
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
  white-space: nowrap
}

.main-links {
  margin-left: auto
}

.main-links a {
  font-weight: 750;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
  color: #494653;
  padding: 10px 9px;
  border-radius: 999px
}

.main-links a:hover {
  background: #f2e8e7;
  color: #bc5756
}

.menu-btn {
  display: none;
  border: 0;
  background: #f0e5e4;
  border-radius: 16px;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: relative
}

.menu-btn span:before,
.menu-btn span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--ink)
}

.menu-btn span:before {
  top: -7px
}

.menu-btn span:after {
  top: 7px
}

.lock-scroll {
  overflow: hidden
}

.hero-stage {
  position: relative;
  min-height: 710px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #fbf8f3 0%, #f8edf1 100%)
}

.hero-stage:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 26%, rgba(114, 174, 191, .24), transparent 26%), radial-gradient(circle at 8% 90%, rgba(248, 213, 138, .35), transparent 24%);
  pointer-events: none
}

.hero-media {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 66%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end
}

.hero-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .95
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 590px;
  background: rgba(255, 253, 247, .78);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: 0 28px 90px rgba(92, 72, 83, .18);
  padding: 42px;
  border-radius: 0 38px 38px 0;
  backdrop-filter: blur(10px)
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 900;
  color: #2f5f66;
  background: #fff2b9;
  padding: 9px 13px;
  border-radius: 999px
}

.h1 {
  font-size: clamp(46px, 6.2vw, 92px);
  line-height: .93;
  letter-spacing: -.06em;
  margin: 20px 0 18px
}

.lead {
  font-size: 18px;
  max-width: 520px;
  color: #525462
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px
}

.btn-primary,
.btn-secondary,
.btn-green {
  border: 0;
  text-decoration: none;
  font-weight: 850;
  border-radius: 16px;
  padding: 15px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease
}

.btn-primary {
  background: linear-gradient(90deg, #ffdd7a, #ff9caf);
  color: #2c2031;
  box-shadow: 0 14px 28px rgba(232, 109, 104, .2)
}

.btn-primary:hover,
.btn-green:hover {
  transform: translateY(-2px)
}

.btn-secondary {
  background: #fff;
  border: 1px solid rgba(65, 69, 77, .16);
  color: var(--ink)
}

.btn-green {
  background: #6fb892;
  color: #fff
}

.play-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(60, 60, 68, .14);
  border-radius: 14px;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 25px rgba(80, 65, 66, .12)
}

.play-triangle {
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid #65ba89
}

.soft-title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0
}

.section-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  color: var(--rose);
  margin: 0 0 10px
}

.body-lg {
  font-size: 18px
}

.split-band {
  display: flex;
  gap: 54px;
  align-items: center
}

.split-band>* {
  flex: 1 1 0
}

.about-panel {
  background: rgba(255, 255, 255, .7);
  padding: 34px;
  border-radius: 34px;
  box-shadow: var(--shadow)
}

.floating-blocks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.float-square {
  position: absolute;
  border-radius: 18px;
  opacity: .33
}

.mode-list {
  display: flex;
  gap: 26px;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 42px
}

.mode-card {
  flex: 1 1 250px;
  max-width: 350px;
  background: #fff;
  border-radius: 26px;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(87, 74, 68, .1)
}

.mode-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.mode-icon:before,
.mode-icon:after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, .75);
  border-radius: 6px
}

.mode-icon:before {
  height: 44px;
  width: 12px
}

.mode-icon:after {
  width: 44px;
  height: 12px
}

.mode-card h3 {
  margin: 0 0 12px;
  font-size: 20px
}

.mode-card ul {
  padding-left: 18px;
  margin: 0;
  color: #5c5d68
}

.tip-line {
  padding: 16px 0;
  border-bottom: 1px solid rgba(63, 66, 74, .12);
  display: flex;
  gap: 12px
}

.tip-line:before {
  content: "✓";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: 0 0 auto
}

.tile-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end
}

.feature-tile {
  width: 160px;
  min-height: 140px;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 750
}

.phone-row {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 42px
}

.phone-card {
  width: 220px;
  background: #fff;
  border-radius: 24px;
  padding: 14px 14px 18px;
  box-shadow: 0 14px 36px rgba(85, 72, 73, .1);
  text-align: center;
  flex: 0 0 auto
}

.phone-card img {
  border-radius: 18px;
  width: 100%;
  height: auto;
  aspect-ratio: 43/72;
  object-fit: cover;
  object-position: center;
  overflow: hidden
}

.phone-card b {
  display: block;
  margin-top: 14px;
  color: var(--rose);
  letter-spacing: .07em
}

.contact-logo {
  display: flex;
  justify-content: center;
  align-items: center
}

.contact-logo img {
  width: min(100%, 560px);
  height: auto;
  object-fit: contain
}

.detail-strip {
  display: flex;
  gap: 26px;
  align-items: center
}

.detail-note {
  flex: 0 1 410px
}

.detail-art {
  flex: 1 1 auto;
  min-height: 250px;
  border-radius: 40px;
  background: linear-gradient(135deg, #f8e5e8, #fff7df);
  position: relative;
  overflow: hidden
}

.detail-art:before {
  content: "";
  position: absolute;
  width: 460px;
  height: 180px;
  right: 10%;
  top: 48px;
  background: linear-gradient(90deg, var(--peach), var(--lav), var(--mint));
  border-radius: 32px;
  opacity: .75;
  box-shadow: 0 18px 50px rgba(110, 90, 100, .12)
}

.detail-art:after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  right: 32%;
  top: 18px;
  background: #cce8f0;
  border-radius: 18px;
  box-shadow: 90px 52px 0 #f1c0ad, 180px 96px 0 #d2dda9, 250px 18px 0 #cbb7de
}

.faq-box {
  max-width: 760px;
  margin: 44px auto 0
}

.faq-item {
  background: #fff9ef;
  border-radius: 16px;
  margin: 13px 0;
  box-shadow: 0 12px 28px rgba(80, 70, 70, .09);
  overflow: hidden
}

.faq-q {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 19px 22px;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px
}

.faq-q:after {
  content: "+"
}

.faq-item.is-open .faq-q:after {
  content: "–"
}

.faq-a {
  display: none;
  padding: 0 22px 20px;
  color: #5f6069
}

.faq-item.is-open .faq-a {
  display: block
}

.contact-zone {
  display: flex;
  gap: 55px;
  align-items: center
}

.contact-logo {
  flex: 1
}

.contact-form {
  flex: 1;
  background: rgba(255, 255, 255, .72);
  border-radius: 30px;
  padding: 32px;
  box-shadow: var(--shadow)
}

.mail-pill {
  display: flex;
  gap: 10px;
  background: #fff;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 10px 24px rgba(70, 62, 64, .12)
}

.mail-pill input {
  border: 0;
  outline: 0;
  flex: 1;
  font-size: 20px;
  font-weight: 800;
  padding: 0 14px;
  color: var(--ink);
  min-width: 0
}

.site-footer {
  padding: 42px 32px 46px;
  color: #fff;
  text-align: center
}

.site-footer p {
  margin: 28px 0 0
}

.site-footer a:hover {
  text-decoration: underline !important
}

.cookie-box {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #40204a;
  color: #fff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 16px 50px rgba(25, 10, 25, .35);
  max-width: 980px;
  margin: auto
}

.cookie-box p {
  margin: 0
}

.cookie-box a {
  color: #ffe282;
  font-weight: 800
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto
}

.cookie-actions button {
  border: 0;
  border-radius: 13px;
  padding: 13px 17px;
  font-weight: 900;
  cursor: pointer
}

.cookie-actions button:first-child {
  background: #ffe282;
  color: #33233c
}

.cookie-actions button:last-child {
  background: #6a4d74;
  color: #fff
}

.legal-main {
  background: #fbf1f2;
  min-height: 70vh;
  padding: 70px 24px
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .48);
  padding: 42px;
  border-radius: 28px
}

.legal-card h1 {
  text-align: center;
  font-size: 46px;
  letter-spacing: .03em;
  text-transform: uppercase
}

.legal-card h2 {
  font-size: 20px;
  margin-top: 28px
}

.legal-card p,
.legal-card li {
  font-size: 15px;
  color: #30323b
}

.legal-card a {
  color: #286fd2;
  font-weight: 700
}

.legal-list {
  padding-left: 22px
}

.external-list {
  list-style: none;
  margin: 8px 0 0;
  padding-left: 18px
}

.external-list li:before {
  content: "• ";
  color: #286fd2
}

.mt-24 {
  margin-top: 24px
}

.mt-36 {
  margin-top: 36px
}

.relative {
  position: relative
}

.hidden {
  display: none
}

@media (max-width:1024px) {
  body {
    padding-top: 68px
  }

  .nav-shell {
    height: 68px
  }

  .main-links {
    position: fixed;
    inset: 68px 0 auto 0;
    background: rgba(255, 250, 247, .98);
    display: none;
    flex-direction: column;
    padding: 28px 24px 34px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(70, 58, 58, .16);
    z-index: 75
  }

  .main-links.is-open {
    display: flex
  }

  .main-links a {
    font-size: 16px;
    padding: 14px 18px
  }

  .menu-btn {
    display: flex;
    margin-left: auto
  }

  .hero-stage {
    min-height: auto;
    display: block;
    padding: 34px 0 0
  }

  .hero-media {
    position: relative;
    width: 100%;
    height: auto
  }

  .hero-media img {
    height: auto;
    min-height: 320px;
    object-fit: cover;
    object-position: center
  }

  .hero-copy {
    max-width: none;
    margin: 0 18px 18px;
    border-radius: 30px;
    padding: 30px
  }

  .split-band,
  .detail-strip,
  .contact-zone {
    flex-direction: column
  }

  .tile-wall {
    justify-content: center
  }

  .soft-title {
    letter-spacing: .05em
  }

  .py-xl {
    padding-top: 70px;
    padding-bottom: 70px
  }

  .contact-logo img {
    width: min(100%, 680px)
  }
}

@media (max-width:768px) {
  .px-site {
    padding-left: 22px;
    padding-right: 22px
  }

  .h1 {
    font-size: 48px
  }

  .lead {
    font-size: 16px
  }

  .mode-card {
    flex-basis: 100%;
    max-width: none
  }

  .feature-tile {
    width: calc(50% - 8px);
    min-height: 120px
  }

  .phone-card {
    width: calc(50% - 14px)
  }

  .detail-art {
    width: 100%;
    min-height: 220px
  }

  .cookie-box {
    left: 14px;
    right: 14px;
    bottom: 14px;
    flex-direction: column;
    align-items: flex-start
  }

  .cookie-actions {
    width: 100%
  }

  .cookie-actions button {
    flex: 1
  }

  .contact-form {
    width: 100%
  }

  .legal-card {
    padding: 28px 20px
  }

  .legal-card h1 {
    font-size: 34px
  }

  .mail-pill {
    flex-direction: column
  }

  .mail-pill input {
    font-size: 16px
  }

  .btn-green {
    width: 100%
  }
}

@media (max-width:430px) {
  body {
    padding-top: 64px
  }

  .nav-shell {
    height: 64px
  }

  .brand-name {
    font-size: 15px
  }

  .brand-mark {
    width: 36px;
    height: 36px
  }

  .main-links {
    inset: 64px 0 auto 0
  }

  .hero-copy {
    padding: 24px 20px;
    margin: 0 12px 14px
  }

  .h1 {
    font-size: 40px
  }

  .cta-row a {
    width: 100%
  }

  .soft-title {
    font-size: 34px
  }

  .body-lg {
    font-size: 16px
  }

  .py-xl,
  .py-lg {
    padding-top: 54px;
    padding-bottom: 54px
  }

  .mode-list {
    gap: 18px
  }

  .mode-card,
  .about-panel,
  .contact-form {
    padding: 24px;
    border-radius: 22px
  }

  .feature-tile {
    width: 100%
  }

  .phone-card {
    width: 100%
  }

  .site-footer {
    padding-left: 18px;
    padding-right: 18px
  }

  .site-footer ul {
    gap: 16px !important
  }

  .legal-main {
    padding: 48px 14px
  }

  .cookie-box {
    font-size: 14px
  }
}

@media (max-width:360px) {
  .px-site {
    padding-left: 16px;
    padding-right: 16px
  }

  .h1 {
    font-size: 35px
  }

  .soft-title {
    font-size: 30px
  }

  .hero-media img {
    min-height: 260px
  }

  .mail-pill input {
    font-size: 14px
  }

  .play-badge {
    width: 100%;
    justify-content: center
  }

  .nav-shell {
    padding-left: 14px;
    padding-right: 14px
  }
}