:root {
  --bg: #fafaf8;
  --bg-soft: #f7f7f5;
  --text: #2f2f2f;
  --muted: #66645f;
  --line: rgba(47, 47, 47, 0.1);
  --white: #ffffff;
  --blue: #3438ff;
  --blue-dark: #1215a6;
  --orange: #ff8b1a;
  --lavender: #ecebff;
  --cream: #fff4e3;
  --shadow: 0 22px 70px rgba(31, 32, 52, 0.12);
  --shadow-soft: 0 14px 44px rgba(31, 32, 52, 0.08);
  --radius-lg: 38px;
  --radius-md: 28px;
  --radius-sm: 18px;
  --max: 1280px;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: "Inter Tight", "Manrope", system-ui, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(52, 56, 255, 0.4);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--text);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px clamp(16px, 4vw, 54px) 0;
}

.navbar {
  width: min(var(--max), 100%);
  margin: 0 auto;
  min-height: 72px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 20px;
  border-radius: 999px;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header.scrolled .navbar {
  background: rgba(250, 250, 248, 0.82);
  box-shadow: 0 16px 40px rgba(47, 47, 47, 0.08);
  backdrop-filter: blur(18px);
  padding: 0 14px 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand img {
  width: 176px;
  height: auto;
}

.nav-menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 15px;
  font-weight: 700;
}

.nav-link {
  position: relative;
  color: rgba(47, 47, 47, 0.82);
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--blue);
  transform: translateX(-50%) scale(0);
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-dark);
}

.nav-link.active::after {
  transform: translateX(-50%) scale(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

body.nav-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.button {
  --blob: 64% 36% 61% 39% / 58% 42% 58% 42%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 16px 26px;
  border-radius: var(--blob);
  font-weight: 800;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform 0.25s ease, border-radius 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-3px);
  border-radius: 42% 58% 42% 58% / 50% 52% 48% 50%;
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 20px 42px rgba(52, 56, 255, 0.28);
}

.button-primary:hover {
  box-shadow: 0 24px 52px rgba(52, 56, 255, 0.34);
}

.button-secondary,
.button-light {
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: var(--shadow-soft);
}

.button-secondary {
  border-color: rgba(52, 56, 255, 0.12);
}

.button-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.82);
}

.button-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-pad {
  padding: clamp(76px, 11vw, 150px) clamp(18px, 4vw, 54px);
}

.container {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  box-shadow: 0 12px 34px rgba(31, 32, 52, 0.05);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.section-kicker {
  background: var(--lavender);
  color: var(--blue-dark);
  box-shadow: none;
}

.section-head {
  max-width: 860px;
  margin-bottom: 44px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.row-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  max-width: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.95;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4.2rem, 12.8vw, 11.25rem);
  font-weight: 900;
  max-width: 1160px;
  margin: 46px auto 28px;
  text-wrap: balance;
}

h2 {
  font-size: clamp(3rem, 7vw, 7.2rem);
  font-weight: 850;
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  font-weight: 820;
}

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

.hero {
  min-height: 100vh;
  padding-top: clamp(56px, 8vw, 100px);
  background:
    radial-gradient(circle at 50% 22%, rgba(236, 235, 255, 0.85), transparent 26%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.hero-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  max-width: 850px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  color: #4d4b47;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.trust-line {
  margin-top: 22px;
  font-size: 0.96rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: clamp(420px, 47vw, 610px);
  margin-top: clamp(58px, 9vw, 105px);
  transform-style: preserve-3d;
  --mx: 0px;
  --my: 0px;
}

.hero-glow {
  position: absolute;
  inset: 8% 13% 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(52, 56, 255, 0.28), transparent 56%),
    radial-gradient(circle at 35% 68%, rgba(255, 139, 26, 0.2), transparent 36%);
  filter: blur(34px);
}

.float-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
  animation: floaty 6s ease-in-out infinite;
}

.float-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-one {
  width: min(48vw, 570px);
  height: clamp(260px, 30vw, 380px);
  left: 50%;
  top: 4%;
  transform: translateX(-50%) rotate(-1.8deg) translate3d(calc(var(--mx) * 0.4), calc(var(--my) * 0.35), 0);
  z-index: 4;
}

.card-two {
  width: min(26vw, 330px);
  height: clamp(190px, 21vw, 270px);
  left: 9%;
  top: 27%;
  transform: rotate(-6deg) translate3d(calc(var(--mx) * -0.25), calc(var(--my) * 0.2), 0);
  z-index: 3;
  animation-delay: -1.1s;
}

.card-three {
  width: min(24vw, 300px);
  height: clamp(185px, 20vw, 260px);
  right: 7%;
  top: 29%;
  transform: rotate(6deg) translate3d(calc(var(--mx) * 0.25), calc(var(--my) * -0.2), 0);
  z-index: 3;
  animation-delay: -2s;
}

.card-four {
  width: min(30vw, 370px);
  height: clamp(190px, 20vw, 260px);
  left: 31%;
  bottom: 0;
  transform: rotate(3deg) translate3d(calc(var(--mx) * -0.15), calc(var(--my) * -0.25), 0);
  z-index: 5;
  animation-delay: -3.2s;
}

.hero-mini-card {
  position: absolute;
  right: 23%;
  bottom: 14%;
  z-index: 6;
  width: 210px;
  min-height: 108px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  text-align: left;
  animation: floaty 7s ease-in-out infinite;
}

.hero-mini-card strong,
.hero-mini-card small {
  display: block;
}

.hero-mini-card strong {
  margin-top: 10px;
  font-size: 1.08rem;
}

.hero-mini-card small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.mini-dot {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(255, 139, 26, 0.16);
}

.logo-strip {
  padding: 20px clamp(18px, 4vw, 54px) 90px;
}

.logo-strip-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
}

.logo-strip p {
  font-size: 0.74rem;
  line-height: 1.35;
  text-transform: uppercase;
  font-weight: 900;
  color: #aaa6a0;
  letter-spacing: 0.06em;
}

.category-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 18px;
  align-items: center;
}

.category-logos span {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  font-weight: 850;
  color: rgba(47, 47, 47, 0.7);
  text-align: center;
}

.intro {
  background: var(--bg-soft);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(44px, 8vw, 100px);
  align-items: center;
}

.intro-copy p {
  max-width: 640px;
  margin-top: 28px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.photo-grid img:nth-child(2),
.photo-grid img:nth-child(5) {
  background: var(--blue);
  transform: translateY(24px);
}

.photo-grid img:nth-child(3),
.photo-grid img:nth-child(4) {
  transform: translateY(-12px);
}

.features {
  background: var(--bg-soft);
  overflow: hidden;
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(47, 47, 47, 0.08);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.icon-btn svg {
  width: 22px;
  height: 22px;
  stroke: var(--text);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 330px);
  gap: 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  padding: 8px clamp(18px, 6vw, 72px) 26px 0;
  cursor: grab;
  scrollbar-width: none;
}

.feature-carousel::-webkit-scrollbar {
  display: none;
}

.feature-carousel.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.feature-card {
  min-height: 360px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  padding: 34px 32px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(47, 47, 47, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.feature-card p {
  margin-top: 22px;
  font-size: 1.08rem;
}

.feature-icon {
  position: relative;
  display: block;
  width: 82px;
  height: 82px;
  margin: auto 0 0 auto;
  border-radius: 26px;
  background: linear-gradient(145deg, #fff, #ebe9e4);
  box-shadow: 12px 16px 24px rgba(47, 47, 47, 0.08), inset -8px -8px 16px rgba(47, 47, 47, 0.06), inset 8px 8px 16px rgba(255, 255, 255, 0.9);
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--blue);
}

.stage-icon::before {
  width: 48px;
  height: 12px;
  left: 17px;
  bottom: 22px;
}

.stage-icon::after {
  width: 14px;
  height: 36px;
  left: 34px;
  bottom: 32px;
  background: var(--orange);
}

.lights-icon::before {
  width: 16px;
  height: 46px;
  left: 18px;
  top: 18px;
  transform: rotate(-25deg);
}

.lights-icon::after {
  width: 16px;
  height: 46px;
  right: 18px;
  top: 18px;
  transform: rotate(25deg);
  background: var(--orange);
}

.party-icon::before {
  width: 42px;
  height: 42px;
  left: 20px;
  top: 20px;
  background: var(--orange);
  clip-path: polygon(50% 0, 64% 34%, 100% 38%, 72% 60%, 82% 100%, 50% 78%, 18% 100%, 28% 60%, 0 38%, 36% 34%);
}

.party-icon::after {
  width: 10px;
  height: 10px;
  right: 18px;
  top: 18px;
}

.comfort-icon::before {
  width: 42px;
  height: 30px;
  left: 20px;
  top: 28px;
  background: var(--blue);
}

.comfort-icon::after {
  width: 34px;
  height: 8px;
  left: 24px;
  bottom: 18px;
  background: var(--orange);
}

.vendor-icon::before {
  width: 46px;
  height: 46px;
  left: 18px;
  top: 18px;
  border: 10px solid var(--blue);
  background: transparent;
}

.vendor-icon::after {
  width: 16px;
  height: 16px;
  left: 33px;
  top: 33px;
  background: var(--orange);
}

.map-icon::before {
  width: 46px;
  height: 46px;
  left: 18px;
  top: 18px;
  background: var(--blue);
  clip-path: polygon(50% 0, 84% 16%, 100% 48%, 50% 100%, 0 48%, 16% 16%);
}

.map-icon::after {
  width: 14px;
  height: 14px;
  left: 34px;
  top: 29px;
  background: var(--white);
}

.benefits {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.benefits-wrap {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 52px;
  isolation: isolate;
}

.benefit-intro {
  max-width: 580px;
}

.benefit-intro h2 {
  margin-top: 18px;
}

.blue-loop {
  position: absolute;
  inset: 8% 9% 3% 20%;
  z-index: -1;
  border: 58px solid rgba(52, 56, 255, 0.92);
  border-radius: 50% 44% 54% 46% / 42% 56% 44% 58%;
  filter: drop-shadow(0 26px 50px rgba(52, 56, 255, 0.22));
  transform: rotate(-11deg);
}

.blue-loop::after {
  content: "";
  position: absolute;
  inset: 17%;
  border: 30px solid var(--bg);
  border-radius: 44% 56% 48% 52% / 52% 42% 58% 48%;
}

.benefit-cards {
  display: grid;
  gap: 22px;
  align-self: center;
}

.benefit-card {
  max-width: 520px;
  margin-left: auto;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
}

.benefit-card:nth-child(2) {
  margin-right: 82px;
}

.benefit-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--cream);
  color: var(--orange);
  font-weight: 900;
}

.benefit-card h3 {
  margin-top: 18px;
}

.benefit-card p {
  margin-top: 14px;
}

.event-types {
  background: var(--bg);
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 24px;
  align-items: stretch;
}

.event-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(47, 47, 47, 0.04);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-soft);
}

.event-photo-card {
  min-height: 450px;
  position: relative;
  color: var(--white);
}

.event-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.76));
}

.event-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-photo-card div {
  position: relative;
  z-index: 1;
}

.event-photo-card p,
.event-photo-card h3,
.event-photo-card .tags span {
  color: var(--white);
}

.event-card:nth-child(1) {
  grid-row: span 2;
}

.event-card:nth-child(4) {
  grid-column: span 2;
}

.avatar {
  display: block;
  width: 88px;
  height: 88px;
  margin-bottom: auto;
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}

.avatar-party {
  background-image: url("assets/family-party.webp");
}

.avatar-wedding {
  background-image: url("assets/wedding-hall.webp");
}

.avatar-community {
  background-image: url("assets/stage-table.webp");
}

.avatar-banquet {
  background-image: url("assets/reception.webp");
}

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

.tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(47, 47, 47, 0.07);
  color: rgba(47, 47, 47, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-photo-card .tags span {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.process {
  background:
    radial-gradient(circle at 33% 46%, rgba(255, 139, 26, 0.18), transparent 20%),
    radial-gradient(circle at 45% 40%, rgba(52, 56, 255, 0.16), transparent 22%),
    var(--bg-soft);
}

.blur-title {
  display: block;
  margin-bottom: -12px;
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 900;
  line-height: 0.78;
  color: rgba(47, 47, 47, 0.2);
  filter: blur(5px);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: 38px;
  max-width: 900px;
  margin: 0 auto;
}

.process-summary {
  min-height: 530px;
  display: flex;
  flex-direction: column;
  padding: 36px;
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.process-summary h3 {
  margin-top: 50px;
  font-size: clamp(2rem, 3.3vw, 3.1rem);
}

.mini-3d {
  position: relative;
  width: 170px;
  height: 128px;
  margin-top: auto;
}

.mini-stage,
.mini-calendar,
.mini-light {
  position: absolute;
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, #e9e7e1);
  box-shadow: 10px 14px 26px rgba(47, 47, 47, 0.1), inset 7px 7px 14px rgba(255, 255, 255, 0.9), inset -8px -8px 16px rgba(47, 47, 47, 0.08);
}

.mini-stage {
  width: 112px;
  height: 38px;
  left: 0;
  bottom: 10px;
}

.mini-calendar {
  width: 74px;
  height: 74px;
  right: 0;
  bottom: 24px;
}

.mini-light {
  width: 56px;
  height: 56px;
  left: 42px;
  top: 0;
  border-radius: 999px;
}

.process-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tab-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(47, 47, 47, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.tab-button {
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-weight: 850;
  cursor: pointer;
}

.tab-button.active {
  background: #e9e8e6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.tab-panel {
  display: none;
  flex-direction: column;
  gap: 18px;
}

.tab-panel.active {
  display: flex;
}

.step-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 28px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(47, 47, 47, 0.04);
}

.step-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--cream);
  color: var(--orange);
  font-weight: 900;
}

.step-card h3 {
  font-size: 1.35rem;
  line-height: 1.1;
}

.step-card p {
  margin-top: 10px;
}

.packages {
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 34px;
  border-radius: 34px;
  background: var(--white);
  border: 1px solid rgba(47, 47, 47, 0.06);
  box-shadow: 0 1px 0 rgba(47, 47, 47, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.price-card:hover,
.price-card.pricing-active {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.price-card.featured {
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 139, 26, 0.2), transparent 30%),
    var(--blue);
  color: var(--white);
  border-color: rgba(52, 56, 255, 0.6);
}

.price-card.featured p,
.price-card.featured li {
  color: rgba(255, 255, 255, 0.82);
}

.price-badge {
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--orange);
  font-weight: 900;
  font-size: 0.82rem;
}

.price-card.featured .price-badge {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.price-card h3 {
  margin-top: 28px;
}

.price-card p {
  margin-top: 18px;
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-weight: 700;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 139, 26, 0.16);
}

.price-card .button {
  margin-top: auto;
}

.price-note {
  max-width: 760px;
  margin: 30px auto 0;
  text-align: center;
  font-size: 0.95rem;
}

.article-section {
  background: linear-gradient(180deg, var(--bg), var(--bg-soft));
}

.article-shell {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px);
  border-radius: 38px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.article-shell h2 {
  margin-top: 22px;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.article-shell h3 {
  margin-top: 42px;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  line-height: 1.1;
}

.article-shell p {
  margin-top: 18px;
  font-size: 1.05rem;
  color: #4d4b47;
}

.location {
  background: var(--bg-soft);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 48px;
  align-items: center;
}

.location-copy h2 {
  margin-top: 18px;
}

address {
  margin-top: 28px;
  font-style: normal;
  color: var(--muted);
  font-size: 1.05rem;
}

address strong {
  color: var(--text);
}

address a {
  color: var(--blue-dark);
  font-weight: 800;
}

.micro-note {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #8b8780;
}

.location-copy .button {
  margin-top: 30px;
}

.pseudo-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 40px;
  background:
    radial-gradient(circle at 70% 30%, rgba(52, 56, 255, 0.13), transparent 28%),
    linear-gradient(135deg, #eef1f7, #f8f9fb);
  box-shadow: var(--shadow-soft);
}

.road {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 0 1px rgba(47, 47, 47, 0.03);
}

.road-one {
  width: 130%;
  height: 34px;
  left: -12%;
  top: 46%;
  transform: rotate(-18deg);
}

.road-two {
  width: 32px;
  height: 125%;
  left: 48%;
  top: -10%;
  transform: rotate(22deg);
}

.road-three {
  width: 120%;
  height: 24px;
  left: -8%;
  top: 72%;
  transform: rotate(11deg);
}

.map-zone {
  position: absolute;
  border-radius: 32px;
  background: rgba(236, 235, 255, 0.72);
}

.zone-one {
  width: 170px;
  height: 120px;
  top: 12%;
  left: 12%;
}

.zone-two {
  width: 220px;
  height: 150px;
  right: 8%;
  bottom: 12%;
  background: rgba(255, 244, 227, 0.86);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 36px;
  height: 36px;
  border-radius: 50% 50% 50% 0;
  background: var(--blue);
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 0 0 14px rgba(52, 56, 255, 0.12);
}

.map-pin::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 999px;
  background: var(--white);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 999px;
  border: 2px solid rgba(52, 56, 255, 0.45);
  animation: pulse 2.2s ease-out infinite;
}

.map-card {
  position: absolute;
  left: 50%;
  top: calc(50% + 46px);
  transform: translateX(-50%);
  width: min(320px, 78%);
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.map-card strong,
.map-card span {
  display: block;
}

.map-card span {
  margin-top: 6px;
  color: var(--muted);
}

.reviews {
  background: var(--bg);
  overflow: hidden;
}

.rating-line {
  margin-top: 18px;
  color: var(--blue-dark);
  font-weight: 900;
}

.reviews-stack {
  position: relative;
  width: min(780px, 100%);
  min-height: 540px;
  margin: 0 auto;
}

.reviews-stack::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 560px;
  height: 300px;
  transform: translateX(-50%);
  border-radius: 60px 60px 26px 26px;
  background: linear-gradient(135deg, #ffb553, var(--orange));
  box-shadow: var(--shadow);
  clip-path: polygon(0 20%, 50% 58%, 100% 20%, 100% 100%, 0 100%);
}

.review-card {
  position: absolute;
  left: 50%;
  width: min(480px, 86vw);
  min-height: 190px;
  padding: 30px;
  border: 1px solid rgba(47, 47, 47, 0.08);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transform: translateX(-50%);
}

.review-card:nth-child(1) {
  top: 0;
  transform: translateX(-50%) rotate(-1deg);
}

.review-card:nth-child(2) {
  top: 132px;
  transform: translateX(-46%) rotate(3deg);
  z-index: 2;
}

.review-card:nth-child(3) {
  top: 250px;
  transform: translateX(-54%) rotate(-4deg);
  z-index: 3;
}

.review-card:nth-child(4) {
  top: 366px;
  transform: translateX(-50%) rotate(2deg);
  z-index: 4;
}

.review-card p {
  margin-top: 18px;
  color: var(--text);
  font-size: 1.16rem;
  font-weight: 700;
}

.stars {
  color: var(--orange);
  letter-spacing: 0;
}

.faq {
  background: var(--bg-soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  gap: 60px;
  align-items: start;
}

.faq-copy h2 {
  margin-top: 18px;
}

.faq-copy p {
  margin-top: 22px;
  max-width: 480px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(47, 47, 47, 0.04);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 0;
  padding: 22px 24px;
  background: transparent;
  color: var(--text);
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--lavender);
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 13px;
  width: 12px;
  height: 2px;
  background: var(--blue);
  border-radius: 999px;
}

.faq-question span::after {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] span::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  overflow: hidden;
  padding: 0 24px;
}

.faq-item.open .faq-answer p {
  padding-bottom: 24px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 80px clamp(18px, 4vw, 54px) 0;
  background: var(--bg);
}

.footer-visual {
  position: relative;
  width: min(var(--max), 100%);
  height: 360px;
  margin: 0 auto -98px;
  text-align: center;
}

.footer-word {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 15rem);
  font-weight: 900;
  line-height: 0.78;
  color: rgba(52, 56, 255, 0.08);
  white-space: nowrap;
}

.footer-orbit {
  position: absolute;
  left: 50%;
  top: 44%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  filter: blur(0.2px);
}

.orbit-one {
  width: 240px;
  height: 240px;
  border: 36px solid rgba(52, 56, 255, 0.42);
}

.orbit-two {
  width: 320px;
  height: 140px;
  border: 24px solid rgba(255, 139, 26, 0.38);
  transform: translate(-50%, -50%) rotate(-18deg);
}

.footer-spark {
  position: absolute;
  right: 20%;
  top: 18%;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 18px rgba(255, 139, 26, 0.12);
}

.footer-panel {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(38px, 6vw, 76px);
  border-radius: 44px 44px 0 0;
  background: var(--white);
  box-shadow: 0 -20px 80px rgba(47, 47, 47, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 1fr 0.88fr 1.1fr;
  gap: 34px;
}

.footer-grid h2 {
  margin-bottom: 16px;
  color: #aaa6a0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-weight: 750;
}

.footer-brand p {
  margin-top: 18px;
  max-width: 260px;
  font-weight: 700;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--text);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 76px;
  padding-top: 24px;
  border-top: 1px solid rgba(47, 47, 47, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--blue-dark);
  font-weight: 850;
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floaty {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -16px;
  }
}

@keyframes pulse {
  0% {
    opacity: 0.85;
    transform: scale(0.55);
  }
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@media (max-width: 1080px) {
  .navbar {
    grid-template-columns: auto 1fr auto;
  }

  .intro-grid,
  .benefits-wrap,
  .location-grid,
  .faq-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .benefits-wrap {
    min-height: auto;
  }

  .blue-loop {
    inset: 28% 1% 2%;
    border-width: 38px;
  }

  .benefit-card,
  .benefit-card:nth-child(2) {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  .pricing-grid,
  .masonry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-card:nth-child(1),
  .event-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .site-header {
    padding: 12px 14px 0;
  }

  .navbar {
    min-height: 64px;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    padding: 0;
  }

  .site-header.scrolled .navbar {
    padding: 0 8px 0 12px;
  }

  .brand img {
    width: 146px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .nav-cta {
    min-height: 46px;
    padding: 12px 16px;
    font-size: 0.86rem;
    order: 2;
  }

  .nav-menu {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 86px;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px) scale(0.98);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  body.nav-open .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .nav-link {
    width: 100%;
    padding: 16px 12px;
    border-radius: 16px;
  }

  .nav-link:hover,
  .nav-link.active {
    background: var(--lavender);
  }

  .nav-link::after {
    display: none;
  }

  h1 {
    font-size: clamp(3.45rem, 16vw, 6.9rem);
    margin-top: 34px;
  }

  h2 {
    font-size: clamp(2.55rem, 12vw, 5.4rem);
  }

  .section-pad {
    padding: 76px 18px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .button {
    width: 100%;
    min-height: 56px;
    white-space: normal;
    text-align: center;
  }

  .hero-visual {
    min-height: 560px;
    margin-top: 56px;
  }

  .card-one {
    width: 86%;
    height: 260px;
    top: 0;
  }

  .card-two {
    width: 50%;
    height: 178px;
    left: 2%;
    top: 46%;
  }

  .card-three {
    width: 50%;
    height: 178px;
    right: 2%;
    top: 43%;
  }

  .card-four {
    width: 68%;
    height: 198px;
    left: 16%;
    bottom: 0;
  }

  .hero-mini-card {
    right: 50%;
    bottom: 27%;
    transform: translateX(50%);
  }

  .logo-strip {
    padding-bottom: 64px;
  }

  .logo-strip-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .category-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-logos span {
    text-align: left;
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-grid img:nth-child(n) {
    transform: none;
  }

  .row-head {
    align-items: start;
    flex-direction: column;
  }

  .process-summary {
    min-height: 420px;
  }

  .pricing-grid,
  .masonry-grid {
    grid-template-columns: 1fr;
  }

  .event-card,
  .event-photo-card,
  .price-card {
    min-height: auto;
  }

  .event-photo-card {
    min-height: 420px;
  }

  .location-grid,
  .faq-grid {
    gap: 34px;
  }

  .pseudo-map {
    min-height: 440px;
  }

  .reviews-stack {
    min-height: 670px;
  }

  .reviews-stack::before {
    width: 92%;
    height: 260px;
  }

  .review-card:nth-child(1) {
    top: 0;
  }

  .review-card:nth-child(2) {
    top: 150px;
  }

  .review-card:nth-child(3) {
    top: 310px;
  }

  .review-card:nth-child(4) {
    top: 480px;
  }

  .footer-visual {
    height: 280px;
    margin-bottom: -70px;
  }

  .footer-panel {
    border-radius: 34px 34px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 44px;
  }
}

@media (max-width: 520px) {
  .nav-cta {
    max-width: 128px;
    min-width: 0;
  }

  .eyebrow,
  .section-kicker {
    min-height: 38px;
    font-size: 0.74rem;
  }

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

  .hero-visual {
    min-height: 500px;
  }

  .card-one {
    height: 230px;
  }

  .card-two,
  .card-three {
    height: 150px;
  }

  .card-four {
    height: 178px;
  }

  .hero-mini-card {
    width: 186px;
    min-height: 96px;
    padding: 15px;
    bottom: 29%;
  }

  .feature-carousel {
    grid-auto-columns: 84%;
  }

  .feature-card {
    min-height: 330px;
  }

  .blue-loop {
    display: none;
  }

  .article-shell {
    border-radius: 28px;
  }

  .tab-list {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .step-card {
    grid-template-columns: 1fr;
  }

  .faq-question {
    font-size: 0.98rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
