:root {
  --pink: #ff6fae;
  --pink-dark: #e95695;
  --cream: #fff3e1;
  --cream-2: #f8e8d2;
  --navy: #00182a;
  --yellow: #ffd447;
  --gray: #686f76;
  --white: #fffaf3;
  --shadow: 0 18px 55px rgba(0, 24, 42, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy);
  background: var(--cream);
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.eyebrow {
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.kicker { color: var(--pink-dark); }
.section { padding: 88px 0; }
.section-tight { padding: 58px 0; }
.section-title {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.section-copy { max-width: 730px; font-size: 1.07rem; color: #274052; }

.topbar {
  background: var(--navy);
  color: var(--cream);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}
.topbar .container { display: flex; justify-content: center; gap: 14px; padding: 8px 0; text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 243, 225, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 24, 42, 0.1);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  border: 2px solid var(--navy);
  position: relative;
  font-size: 1.2rem;
}
.brand-mark::after {
  content: "";
  width: 11px;
  height: 6px;
  background: var(--navy);
  border-radius: 100% 0 100% 0;
  position: absolute;
  right: 5px;
  top: 6px;
  transform: rotate(-25deg);
}
.brand-name {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 2.15rem;
  line-height: 1;
  color: var(--pink-dark);
  text-shadow: 2px 2px 0 var(--navy);
}
.brand-sub {
  display: block;
  color: var(--navy);
  text-shadow: none;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: -2px;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { text-decoration: none; font-weight: 800; font-size: 0.93rem; }
.nav-links a:hover { color: var(--pink-dark); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--navy); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 2px solid var(--navy);
  text-decoration: none;
  font-weight: 900;
  transition: 0.2s ease;
  box-shadow: 3px 3px 0 var(--navy);
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--navy); }
.btn-primary { background: var(--pink); color: var(--navy); }
.btn-cream { background: var(--cream); color: var(--navy); }
.btn-dark { background: var(--navy); color: var(--cream); border-color: var(--navy); box-shadow: 3px 3px 0 var(--pink-dark); }
.btn-small { min-height: 42px; padding: 0 16px; font-size: 0.9rem; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 62px 0 74px;
  background:
    radial-gradient(circle at 91% 10%, rgba(255,212,71,.75) 0 65px, transparent 66px),
    linear-gradient(135deg, var(--cream) 0%, #ffe6ee 62%, #ffc1da 100%);
}
.hero::before, .hero::after {
  content: "✦";
  position: absolute;
  color: var(--pink-dark);
  font-size: 44px;
  opacity: 0.7;
}
.hero::before { left: 4%; top: 18%; }
.hero::after { right: 8%; bottom: 8%; font-size: 28px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 46px;
  align-items: center;
}
.hero h1 {
  margin: 10px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.35rem, 7.2vw, 7.2rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
}
.hero h1 .pink { color: var(--pink-dark); }
.hero .lead { max-width: 700px; font-size: clamp(1.08rem, 2vw, 1.3rem); color: #253f50; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.hero-note { margin-top: 20px; font-size: 0.88rem; color: #4a5c68; }

.ticket {
  position: relative;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: 10px 10px 0 var(--pink);
  padding: 28px;
}
.ticket::before, .ticket::after {
  content: "";
  position: absolute;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #ffd1e1;
  border: 2px solid var(--navy);
  top: 55%;
}
.ticket::before { left: -13px; }
.ticket::after { right: -13px; }
.ticket-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 2px dashed rgba(0,24,42,0.25);
}
.ticket-title strong { font-family: Georgia, serif; font-size: 1.5rem; }
.ticket-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 14px; }
.ticket-list li { display: grid; grid-template-columns: 30px 1fr; gap: 10px; align-items: start; }
.ticket-num {
  width: 28px; height: 28px; border-radius: 50%; background: var(--navy); color: var(--cream); display: grid; place-items: center; font-weight: 900; font-size: .8rem;
}

.ribbon {
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
}
.ribbon-track {
  white-space: nowrap;
  padding: 13px 0;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ribbon-track span { color: var(--yellow); padding: 0 14px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 6px 6px 0 rgba(0,24,42,.12);
}
.card h3 { margin: 8px 0 8px; font-family: Georgia, serif; font-size: 1.5rem; }
.card p { margin: 0; color: #38505f; }
.icon-chip {
  width: 52px; height: 52px; border: 2px solid var(--navy); border-radius: 16px; display: grid; place-items: center; background: var(--yellow); font-size: 1.5rem;
}

.services { background: var(--navy); color: var(--cream); }
.services .section-copy { color: #d5e0e6; }
.service-card { background: #08283c; border-color: #31556c; color: var(--cream); min-height: 240px; }
.service-card p { color: #c9d5dc; }
.service-card .icon-chip { background: var(--pink); }
.service-card a { display: inline-block; margin-top: 18px; color: var(--yellow); font-weight: 900; text-decoration: none; }

.split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 48px; align-items: center; }
.poster {
  min-height: 520px;
  background: var(--pink);
  border: 2px solid var(--navy);
  border-radius: 32px;
  position: relative;
  box-shadow: 12px 12px 0 var(--navy);
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.poster::after {
  content: "🍋";
  position: absolute;
  font-size: 11rem;
  right: -10px;
  bottom: -30px;
  transform: rotate(-12deg);
  opacity: 0.92;
}
.poster-big {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: .9;
  max-width: 480px;
  color: var(--cream);
  text-shadow: 4px 4px 0 var(--navy);
  position: relative;
  z-index: 1;
}
.poster-small { max-width: 300px; font-weight: 900; position: relative; z-index: 2; }

.promise-list { display: grid; gap: 14px; margin-top: 26px; }
.promise {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,24,42,.14);
}
.promise:last-child { border-bottom: 0; }
.promise-number {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: var(--cream); font-weight: 900;
}
.promise h3 { margin: 0 0 4px; font-family: Georgia, serif; font-size: 1.22rem; }
.promise p { margin: 0; color: #3f5563; }

.co-section { background: var(--yellow); border-top: 2px solid var(--navy); border-bottom: 2px solid var(--navy); }
.co-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; }
.co-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.co-point { background: rgba(255,255,255,.55); border: 2px solid var(--navy); border-radius: 18px; padding: 18px; font-weight: 800; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { position: relative; padding-top: 56px; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 0;
  left: 0;
  font-family: Georgia, serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--pink-dark);
}
.step h3 { font-family: Georgia, serif; margin: 0 0 8px; }
.step p { margin: 0; color: #425968; }

.faq { display: grid; gap: 12px; }
.faq details { background: var(--white); border: 2px solid var(--navy); border-radius: 16px; padding: 18px 20px; }
.faq summary { cursor: pointer; font-weight: 900; }
.faq p { color: #3a5261; margin-bottom: 0; }

.cta {
  background: var(--pink);
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
}
.cta-box {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: center;
}
.cta h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(2.35rem, 5vw, 4.8rem); line-height: .95; }
.cta p { font-size: 1.05rem; }
.cta-actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }

.site-footer { background: var(--navy); color: var(--cream); padding: 54px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .9fr; gap: 36px; }
.footer-grid h4 { margin-top: 0; color: var(--yellow); }
.footer-grid a { color: var(--cream); text-decoration: none; }
.footer-links { display: grid; gap: 8px; }
.footer-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); font-size: .85rem; color: #b7c5cd; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

.page-hero { padding: 72px 0; background: linear-gradient(135deg, #ffd8e7 0%, var(--cream) 75%); border-bottom: 2px solid var(--navy); }
.page-hero h1 { margin: 8px 0 12px; font-family: Georgia, serif; font-size: clamp(3.1rem, 7vw, 6.3rem); line-height: .92; letter-spacing: -0.045em; }
.page-hero p { max-width: 760px; font-size: 1.15rem; color: #334f60; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 42px; align-items: start; }
.form-card { background: var(--white); border: 2px solid var(--navy); border-radius: 26px; padding: 26px; box-shadow: 8px 8px 0 var(--pink); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 900; font-size: .9rem; }
input, select, textarea {
  width: 100%;
  border: 2px solid #9aabb5;
  border-radius: 12px;
  background: #fffdf8;
  color: var(--navy);
  padding: 13px 14px;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--pink-dark); box-shadow: 0 0 0 3px rgba(255,111,174,.18); }
textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: .82rem; color: #5e707c; }
.alert { padding: 14px 16px; border-radius: 12px; margin-bottom: 18px; font-weight: 800; }
.alert-success { background: #e7f7ec; border: 1px solid #8cc79a; color: #174c27; }
.alert-error { background: #ffe9ed; border: 1px solid #dc8fa1; color: #742138; }

.quote-box { background: var(--navy); color: var(--cream); border-radius: 24px; padding: 26px; }
.quote-box h3 { font-family: Georgia, serif; font-size: 1.7rem; margin-top: 0; }
.quote-box ul { padding-left: 1.2rem; }
.quote-box li { margin-bottom: 9px; }

.badge-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.badge { border: 2px solid var(--navy); border-radius: 999px; padding: 8px 12px; font-size: .82rem; font-weight: 900; background: var(--white); }

.mobile-cta { display: none; }

@media (max-width: 920px) {
  .hero-grid, .split, .co-grid, .cta-box, .contact-grid { grid-template-columns: 1fr; }
  .grid-4, .steps { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-actions { justify-content: flex-start; }
  .poster { min-height: 420px; }
}

@media (max-width: 760px) {
  .topbar { display: none; }
  .site-header { top: 0; }
  .nav { min-height: 70px; }
  .nav-toggle { display: block; cursor: pointer; }
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream);
    padding: 18px;
    border-bottom: 2px solid var(--navy);
  }
  .nav-links.open { display: flex; }
  .nav-links .btn { width: 100%; }
  .hero { padding-top: 42px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 5.2rem); }
  .hero-grid { gap: 30px; }
  .section { padding: 66px 0; }
  .grid-4, .steps, .co-points, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .brand-name { font-size: 1.8rem; }
  .brand-mark { width: 36px; height: 36px; }
  .ticket { box-shadow: 7px 7px 0 var(--pink); }
  .poster { min-height: 360px; padding: 28px; }
  .poster::after { font-size: 8rem; }
  .mobile-cta {
    display: grid;
    position: fixed;
    z-index: 60;
    bottom: 12px;
    left: 12px;
    right: 12px;
    grid-template-columns: 1fr;
    background: var(--navy);
    border-radius: 999px;
    padding: 7px;
    box-shadow: 0 8px 30px rgba(0,0,0,.28);
  }
  .mobile-cta a { text-decoration: none; color: var(--navy); background: var(--pink); text-align: center; padding: 12px 14px; border-radius: 999px; font-weight: 900; }
  body { padding-bottom: 72px; }
}
