:root {
  --ink: #111936;
  --blue: #245b9c;
  --sky: #70c7e8;
  --mint: #47bfa7;
  --coral: #ff8f73;
  --peach: #ffe0d4;
  --gold: #f6c96b;
  --cream: #fffaf5;
  --card: rgba(255, 255, 255, 0.72);
  --card-strong: rgba(255, 255, 255, 0.9);
  --muted: #52607d;
  --border: rgba(17, 25, 54, 0.1);
  --shadow: 0 28px 70px rgba(40, 43, 70, 0.15);
  --shadow-soft: 0 18px 42px rgba(40, 43, 70, 0.11);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 143, 115, 0.45), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(112, 199, 232, 0.42), transparent 28%),
    radial-gradient(circle at 48% 90%, rgba(71, 191, 167, 0.2), transparent 30%),
    linear-gradient(135deg, #fff5ef 0%, #f9f4ff 48%, #ecf8ff 100%);
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
  padding-bottom: 4rem;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.7;
  pointer-events: none;
}

.glow-coral {
  top: 6rem;
  left: -6rem;
  width: 18rem;
  height: 18rem;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  animation: drift 18s ease-in-out infinite;
}

.glow-blue {
  top: 8rem;
  right: -7rem;
  width: 22rem;
  height: 22rem;
  background: linear-gradient(135deg, var(--sky), #d8eaff);
  animation: drift 21s ease-in-out infinite reverse;
}

.glow-mint {
  bottom: 10rem;
  left: 34%;
  width: 20rem;
  height: 20rem;
  background: linear-gradient(135deg, rgba(71, 191, 167, 0.55), rgba(246, 201, 107, 0.28));
  animation: drift 24s ease-in-out infinite;
}

.site-header,
section {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.95), transparent 26%),
    linear-gradient(135deg, var(--coral), var(--gold) 42%, var(--mint) 78%, var(--blue));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55), 0 14px 26px rgba(58, 70, 110, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  color: #465475;
  font-weight: 700;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--ink), var(--blue) 58%, var(--mint));
  box-shadow: 0 18px 36px rgba(36, 91, 156, 0.26);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(36, 91, 156, 0.12);
  box-shadow: var(--shadow-soft);
}

.button-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(17, 25, 54, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 3.2rem;
  align-items: center;
  padding: 4.2rem 0 2rem;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #1e2b4a;
  box-shadow: 0 10px 22px rgba(58, 70, 110, 0.08);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.style-panel h2,
.package-card h2,
.cta-copy h2 {
  margin: 1.15rem 0 1rem;
  font-family: "Fraunces", serif;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(3.6rem, 6.7vw, 5.85rem);
  line-height: 0.9;
}

.hero h1 span {
  color: var(--blue);
}

.hero p,
.section-heading p,
.style-panel p,
.service-card p,
.steps p,
.cta-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy > p {
  max-width: 38rem;
  margin: 0;
  font-size: 1.08rem;
}

.hero-actions,
.package-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.45rem;
}

.quick-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.quick-proof span,
.video-tags span {
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: #344362;
  font-weight: 800;
  font-size: 0.86rem;
}

.hero-visual {
  position: relative;
}

.video-frame,
.floating-note,
.logo-row,
.service-card,
.style-panel,
.steps article,
.package-card,
.cta-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.video-frame {
  overflow: hidden;
  padding: 1rem;
  border-radius: 34px;
}

.video-dots {
  display: flex;
  gap: 0.45rem;
  padding: 0.45rem 0.35rem 0.8rem;
}

.video-dots span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: #d8dde9;
}

.video-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 16rem;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.56), transparent 18%),
    radial-gradient(circle at 72% 44%, rgba(255, 255, 255, 0.22), transparent 32%),
    linear-gradient(135deg, #ff997e 0%, #f6cf6d 34%, #83d3bd 68%, #53b8da 100%);
}

.video-stage::before,
.video-stage::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.video-stage::before {
  width: 18rem;
  height: 18rem;
}

.video-stage::after {
  width: 11rem;
  height: 11rem;
}

.play-ring {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 8rem;
  height: 8rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 42px rgba(28, 36, 68, 0.18);
}

.play-ring:focus-visible {
  outline: 3px solid rgba(36, 91, 156, 0.5);
  outline-offset: 0.5rem;
}

.play-core {
  display: grid;
  place-items: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  animation: pulse 3.8s ease-in-out infinite;
}

.play-icon {
  width: 0;
  height: 0;
  margin-left: 0.25rem;
  border-top: 0.72rem solid transparent;
  border-bottom: 0.72rem solid transparent;
  border-left: 1.12rem solid var(--ink);
}

.story-card {
  position: absolute;
  z-index: 2;
  width: 12rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 35px rgba(36, 43, 77, 0.16);
  pointer-events: none;
}

.story-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: #34537f;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-card strong {
  font-size: 1.05rem;
}

.story-card-left {
  top: 2.2rem;
  left: 2rem;
  transform: rotate(-5deg);
}

.story-card-right {
  right: 2rem;
  bottom: 2rem;
  transform: rotate(5deg);
}

.progress {
  height: 0.55rem;
  margin: 1rem 0 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ink), var(--coral), var(--gold), var(--mint), var(--blue));
}

.video-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.floating-note {
  position: absolute;
  top: -1rem;
  right: -1.1rem;
  width: min(17rem, 70%);
  padding: 1.15rem;
  border-radius: 24px;
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.floating-note span {
  color: var(--muted);
  line-height: 1.55;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 999px;
}

.logo-row span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logo-row strong {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

section {
  padding-top: 4.3rem;
}

.section-heading {
  max-width: 44rem;
  margin: 0 auto 1.9rem;
  text-align: center;
}

.section-heading h2,
.style-panel h2,
.package-card h2,
.cta-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

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

.service-card {
  min-height: 14rem;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
}

.service-card span,
.steps span {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-weight: 900;
}

.service-card h3 {
  margin: 1.4rem 0 0.5rem;
  font-size: 1.25rem;
}

.service-card p,
.steps p {
  margin: 0;
}

.service-card.coral {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 224, 212, 0.72));
}

.service-card.blue {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(216, 234, 255, 0.72));
}

.service-card.mint {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(205, 246, 236, 0.72));
}

.work-process {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: stretch;
}

.style-panel,
.steps article,
.package-card,
.cta-card {
  border-radius: var(--radius-xl);
}

.style-panel {
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 143, 115, 0.25), transparent 36%),
    rgba(255, 255, 255, 0.68);
}

.steps {
  display: grid;
  gap: 1rem;
}

.steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  align-items: start;
  padding: 1.2rem;
}

.steps strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.steps p {
  grid-column: 2;
}

.package-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 224, 212, 0.64)),
    radial-gradient(circle at bottom right, rgba(112, 199, 232, 0.25), transparent 36%);
}

.package-card h2,
.style-panel h2,
.cta-copy h2 {
  margin-bottom: 0;
}

.package-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.cta-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.66);
}

.cta-copy {
  padding: 1.4rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form span {
  color: #31415f;
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 25, 54, 0.1);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(36, 91, 156, 0.35);
  box-shadow: 0 0 0 4px rgba(112, 199, 232, 0.18);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button:disabled {
  opacity: 0.72;
  cursor: default;
  transform: none;
}

.form-status {
  min-height: 1.3rem;
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

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

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

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(1rem, -1.2rem, 0) scale(1.04);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
    border-radius: 26px;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero,
  .work-process,
  .package-card,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 2rem;
    padding-top: 4.2rem;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 16vw, 6.2rem);
  }

  .package-actions {
    justify-content: flex-start;
  }

  .floating-note {
    right: 0.6rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 0.6rem;
  }

  .brand small,
  .site-nav {
    display: none;
  }

  .button {
    width: 100%;
  }

  .site-header .button {
    width: auto;
    min-height: 2.75rem;
    padding: 0.75rem 1rem;
  }

  .hero {
    padding-top: 3.4rem;
  }

  .hero-actions,
  .package-actions {
    display: grid;
  }

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

  .video-stage {
    min-height: 14rem;
  }

  .story-card {
    width: 10.2rem;
    padding: 0.75rem;
  }

  .story-card-left {
    left: 0.8rem;
  }

  .story-card-right {
    right: 0.8rem;
  }

  .play-ring {
    width: 6.6rem;
    height: 6.6rem;
  }

  .play-core {
    width: 3.7rem;
    height: 3.7rem;
  }

  .floating-note {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    margin-top: 1rem;
  }

  .logo-row {
    border-radius: 26px;
    justify-content: flex-start;
  }
}
