:root {
  --background: #f3f8ff;
  --surface: #ffffff;
  --surface-low: #eaf3ff;
  --surface-mid: #e2edff;
  --surface-high: #d7e5fb;
  --ink: #132238;
  --ink-soft: #526175;
  --outline: #c3d2e7;
  --primary: #4a86d9;
  --primary-soft: #7ea8e6;
  --primary-pale: #d8e8ff;
  --secondary: #a53556;
  --secondary-soft: #fc799a;
  --shadow: 0 28px 64px rgba(74, 134, 217, 0.08);
  --radius: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--ink);
  font-family: "Be Vietnam Pro", sans-serif;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  opacity: 0.1;
  filter: blur(60px);
  pointer-events: none;
}

.ambient--teal {
  top: 4rem;
  right: -5rem;
  background: #cfe1ff;
}

.ambient--pink {
  top: 14rem;
  left: -8rem;
  background: var(--secondary-soft);
}

.site-header__inner,
.hero__inner,
.section,
.site-footer {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(189, 201, 202, 0.35);
  box-shadow: 0 8px 24px rgba(74, 134, 217, 0.05);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand img {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 999px;
}

.brand__copy {
  display: grid;
  gap: 0.1rem;
}

.brand__copy strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand__copy small {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.header-nav a {
  color: var(--ink-soft);
  transition: color 160ms ease;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: var(--primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.5rem;
  padding: 0.95rem 1.5rem;
  border: 0;
  border-radius: 16px;
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.button:hover,
.button:focus-visible,
.share-fab:hover,
.share-fab:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 18px 38px rgba(74, 134, 217, 0.22);
}

.button--ghost {
  border: 1px solid rgba(74, 134, 217, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary);
}

.button--accent {
  display: none;
  background: var(--secondary-soft);
  color: #730b32;
  box-shadow: 0 18px 38px rgba(165, 53, 86, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding: 6.5rem 0 3rem;
  background: #edf4ff;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.12) 28%, rgba(237, 244, 255, 0.8) 78%, rgba(237, 244, 255, 0.97) 100%);
}

.hero::after {
  z-index: 2;
  background:
    radial-gradient(circle at top center, rgba(154, 191, 255, 0.2), transparent 34%),
    radial-gradient(circle at 80% 18%, rgba(252, 121, 154, 0.1), transparent 20%);
}

.hero__inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  min-height: calc(100svh - 9rem);
  position: relative;
  z-index: 3;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
}

.hero__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
  filter: saturate(0.82) contrast(0.9) brightness(0.94);
}

.hero__copy {
  position: relative;
  z-index: 1;
}

.hero__copy--centered {
  display: grid;
  justify-items: center;
  text-align: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chip--accent {
  background: rgba(165, 53, 86, 0.12);
  color: var(--secondary);
}

.chip__icon {
  font-size: 0.9rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 11ch;
  margin-top: 1rem;
  font-size: clamp(3.2rem, 10vw, 6rem);
  line-height: 0.95;
}

h1 span {
  color: var(--primary);
  font-style: italic;
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.65rem;
  line-height: 1.15;
}

.hero__lead,
.section__intro p,
.story-card p,
.bio-copy p,
.testimonial-copy blockquote,
.cta-card > p,
.contact-meta,
.floating-review p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.hero__lead {
  max-width: 42rem;
  margin-top: 1.5rem;
  font-size: 1.08rem;
  color: #516063;
}

.hero__actions,
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero__tags li {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(74, 134, 217, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #4b5b5f;
}

.floating-review {
  max-width: 18rem;
  margin-top: 2rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 44px rgba(74, 134, 217, 0.12);
  backdrop-filter: blur(10px);
}

.floating-review__stars {
  margin-bottom: 0.35rem;
  color: var(--secondary);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.hero__visual--about {
  min-height: auto;
}

.hero-photo--about {
  overflow: hidden;
  border: 0;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(74, 134, 217, 0.08);
  transform: none;
}

.hero-photo--about img {
  width: 100%;
  height: auto;
  max-height: 38rem;
  object-fit: contain;
  object-position: center center;
}

.share-fab {
  position: absolute;
  top: 6.5rem;
  right: 1rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary);
  box-shadow: 0 18px 32px rgba(74, 134, 217, 0.14);
  cursor: pointer;
}

.share-fab svg {
  width: 1.45rem;
  height: 1.45rem;
}

.section {
  padding: 6rem 0 0;
}

.section--soft {
  padding-top: 7rem;
  background: rgba(233, 242, 255, 0.78);
}

.section__intro {
  max-width: 38rem;
  margin-inline: auto;
  margin-bottom: 3rem;
  display: grid;
  justify-items: center;
  text-align: center;
}

.section__intro h2 {
  max-width: 12ch;
  margin-inline: auto;
}

.section__intro p {
  max-width: 32rem;
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--primary);
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-grid {
  display: grid;
  gap: 1.25rem;
}

.story-card,
.bio-visual,
.cta-card,
.testimonial-wrap {
  border-radius: 24px;
}

.story-card {
  position: relative;
  overflow: hidden;
  padding: 2.25rem;
  border: 1px solid rgba(74, 134, 217, 0.12);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.story-card--wide {
  background: rgba(255, 255, 255, 0.68);
}

.story-card--teal {
  background: rgba(255, 255, 255, 0.68);
}

.story-card--media {
  display: grid;
  gap: 1.5rem;
  padding: 1.25rem;
}

.story-card__media {
  overflow: hidden;
  border-radius: 24px;
}

.story-card__media img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
}

.story-card__body {
  padding: 0 0.5rem 0.35rem;
}

.story-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 1.3rem;
  border-radius: 20px;
  background: rgba(126, 168, 230, 0.18);
  color: var(--primary);
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.story-card p {
  margin-top: 0.9rem;
  color: #536467;
}

.story-card a {
  display: inline-flex;
  margin-top: 1.2rem;
  color: var(--primary);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.bio-layout,
.testimonial-wrap {
  display: grid;
  gap: 1.25rem;
}

.story-gallery__layout {
  display: grid;
  gap: 1rem;
}

.story-gallery__text,
.story-gallery__image {
  overflow: hidden;
  border: 1px solid rgba(74, 134, 217, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(74, 134, 217, 0.05);
}

.story-gallery__text {
  display: grid;
  gap: 1rem;
  padding: 2rem;
}

.story-gallery__text p {
  margin: 0;
  color: #536467;
  line-height: 1.85;
}

.story-gallery__image img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.bio-visual {
  position: relative;
  overflow: hidden;
  min-height: 22rem;
}

.bio-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-visual__badge {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: var(--primary);
}

.testimonial-band {
  position: relative;
  padding-top: 6rem;
}

.testimonial-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #fff;
}

.testimonial-wrap {
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  gap: 2rem;
}

.testimonial-copy {
  padding: 0;
  text-align: center;
}

.testimonial-carousel {
  display: grid;
  justify-items: center;
}

.quote-mark {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--secondary);
  font-family: "Manrope", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.testimonial-copy blockquote {
  max-width: 46rem;
  margin: 0;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  line-height: 1.5;
  color: var(--primary);
}

.testimonial-slides {
  position: relative;
  width: 100%;
}

.testimonial-slide {
  display: none;
  gap: 1.2rem;
}

.testimonial-slide.is-active {
  display: grid;
}

.testimonial-author {
  display: grid;
  gap: 0.2rem;
  margin-top: 1.5rem;
  justify-items: center;
}

.testimonial-author strong {
  font-family: "Manrope", sans-serif;
}

.testimonial-author span {
  color: var(--ink-soft);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-gallery {
  display: grid;
  gap: 1rem;
}

.testimonial-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 0.7rem;
  height: 0.7rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(74, 134, 217, 0.24);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.testimonial-dot.is-active {
  background: var(--primary);
  transform: scale(1.1);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  border-radius: 24px;
}

.testimonial-image--tall img {
  min-height: 24rem;
}

.testimonial-image--soft img {
  min-height: 15rem;
  object-position: center;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 2rem;
  background: var(--primary);
  text-align: center;
  box-shadow: none;
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 12% 10%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.cta-card h2 {
  max-width: none;
  position: relative;
  z-index: 1;
  color: #fff;
}

.cta-card > p {
  max-width: 42rem;
  margin: 1rem auto 0;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.88);
}

.cta-card .eyebrow {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.84);
}

.cta-actions {
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-actions .button {
  min-width: 12rem;
}

.cta-card .button--primary {
  background: #fff;
  color: var(--primary);
  box-shadow: none;
}

.cta-card .button--ghost {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 1.4rem;
  margin-top: 1.5rem;
  font-size: 0.92rem;
  text-align: center;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
}

.contact-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.contact-meta svg {
  width: 1rem;
  height: 1rem;
  color: rgba(255, 255, 255, 0.88);
  flex: 0 0 auto;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 2rem 0 6rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.sticky-bar {
  position: fixed;
  right: 1rem;
  bottom: max(1rem, env(safe-area-inset-bottom));
  left: 1rem;
  z-index: 25;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 0.85rem;
}

.sticky-bar__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  background: #223336;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(34, 51, 54, 0.18);
}

.sticky-bar__button--light {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 6rem;
  z-index: 40;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(13, 30, 33, 0.92);
  color: #fff;
  font-size: 0.92rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.75rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

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

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

@media (min-width: 760px) {
  .site-header__inner,
  .hero__inner,
  .section,
  .site-footer {
    width: min(calc(100% - 3rem), var(--container));
  }

  .button--accent {
    display: inline-flex;
  }

  .hero {
    padding-top: 7rem;
  }

  .bio-layout,
  .testimonial-wrap {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .hero__inner {
    gap: 0;
    justify-items: center;
  }

  .section__intro {
    margin-bottom: 3rem;
  }

  .section__intro h2 {
    max-width: 13ch;
  }

  .hero__actions {
    justify-content: center;
  }

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

  .story-gallery__text,
  .story-gallery__image--wide {
    grid-column: span 2;
  }

  .hero__actions,
  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .story-card--wide,
  .story-card--media {
    grid-column: span 2;
  }

  .story-card--media {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
  }

  .story-card__media img {
    height: 100%;
    min-height: 15rem;
  }

  .testimonial-copy {
    grid-column: 1 / -1;
    max-width: 52rem;
    margin: 0 auto;
  }

  .testimonial-gallery {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: stretch;
  }

  .cta-card {
    padding: 3.5rem 3rem;
    border-radius: 48px;
  }

  .site-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 980px) {
  .header-nav {
    display: inline-flex;
  }

  h1 {
    font-size: clamp(4.8rem, 8vw, 7rem);
  }

  .hero-photo--about img {
    max-height: 44rem;
  }

  .story-card:hover {
    transform: translateY(-3px);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    box-shadow: 0 18px 36px rgba(74, 134, 217, 0.08);
  }

  .testimonial-wrap {
    grid-template-columns: minmax(0, 1fr);
  }

  .sticky-bar {
    display: none;
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }
}

@media (max-width: 759px) {
  .brand__copy small,
  .button--accent {
    display: none;
  }

  .section__intro h2 {
    max-width: 14ch;
    font-size: clamp(2.45rem, 8vw, 3.35rem);
    line-height: 1.04;
  }

  .section__intro p {
    max-width: 26rem;
  }

  .share-fab {
    top: auto;
    right: 1rem;
    bottom: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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