:root {
  color-scheme: light;
  --ink: #161617;
  --muted: #626269;
  --line: rgba(22, 22, 23, 0.12);
  --paper: #fafaff;
  --white: #ffffff;
  --mist: #f0f7ff;
  --sage: #26737e;
  --rose: #ee4f9b;
  --amber: #ff9f1c;
  --sky: #10c8f2;
  --violet: #703cff;
  --shadow: 0 24px 60px rgba(29, 35, 82, 0.14);
  --brand-gradient: linear-gradient(135deg, #0fc8f2 0%, #7c3cff 42%, #ee4f9b 70%, #ff9f1c 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", sans-serif;
  letter-spacing: 0;
}

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

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

.mobile-only {
  display: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 clamp(18px, 4vw, 48px);
  color: rgba(22, 22, 23, 0.88);
  background: rgba(250, 250, 255, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(22px) saturate(180%);
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(250, 250, 255, 0.92);
  border-color: var(--line);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-size: 16px;
  font-weight: 720;
}

.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow:
    0 10px 28px rgba(124, 60, 255, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.88);
}

.site-nav {
  gap: clamp(16px, 3vw, 32px);
  color: rgba(22, 22, 23, 0.68);
  font-size: 14px;
}

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

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

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 108px clamp(22px, 6vw, 92px) 64px;
  background: var(--paper);
}

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

.hero::after {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(250, 250, 255, 0.98) 0%, rgba(250, 250, 255, 0.82) 33%, rgba(250, 250, 255, 0.1) 68%),
    url("assets/generated/hero.jpg?v=202605261208") 61% center / cover no-repeat;
  transform: translate3d(0, var(--hero-shift, 0px), 0) scale(var(--hero-scale, 1));
  transform-origin: 62% 48%;
  transition: transform 140ms linear;
}

.hero::before {
  z-index: -1;
  opacity: 0.72;
  background:
    linear-gradient(112deg, transparent 0 18%, rgba(16, 200, 242, 0.18) 26%, rgba(124, 60, 255, 0.1) 37%, transparent 50%),
    linear-gradient(128deg, transparent 0 58%, rgba(238, 79, 155, 0.13) 70%, rgba(255, 159, 28, 0.1) 84%, transparent 100%);
  animation: color-drift 12s ease-in-out infinite alternate;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-shell > .eyebrow {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(16, 200, 242, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 10px 24px rgba(16, 200, 242, 0.08);
}

.hero h1,
.section-shell h2,
.closing-copy h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(64px, 11vw, 142px);
  line-height: 0.9;
  font-weight: 760;
  color: transparent;
  background: linear-gradient(110deg, #101112 0%, #101112 46%, #1679f2 66%, #ef4c99 86%, #ff9f1c 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lede {
  width: 100%;
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(22, 22, 23, 0.72);
  font-size: clamp(20px, 2.35vw, 32px);
  line-height: 1.28;
  font-weight: 560;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 650;
  border: 1px solid rgba(22, 22, 23, 0.18);
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--brand-gradient);
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(238, 79, 155, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(124, 60, 255, 0.24);
  color: #282038;
}

.intro-band,
.moments-band,
.gallery-section,
.closing {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(88px, 10vw, 132px) clamp(22px, 6vw, 92px) clamp(54px, 7vw, 92px);
}

.section-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-shell h2,
.closing-copy h2 {
  max-width: 820px;
  font-size: clamp(38px, 5.4vw, 78px);
  line-height: 1.03;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.trait-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(34px, 5vw, 62px);
}

.trait,
.moment-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
}

.trait {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 28px;
}

.trait::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: var(--brand-gradient);
}

.trait span {
  color: var(--rose);
  font-size: 13px;
  font-weight: 760;
}

.trait h3,
.moment-list h3 {
  margin: 42px 0 12px;
  font-size: 24px;
  line-height: 1.18;
}

.trait p,
.moment-list p,
.closing-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.showcase {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(78px, 8vw, 100px) clamp(14px, 3vw, 32px) clamp(36px, 5vw, 56px);
}

.feature-frame {
  position: relative;
  overflow: hidden;
  width: min(1380px, 100%);
  height: min(760px, calc(100svh - 136px));
  min-height: min(520px, calc(100svh - 136px));
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #1c1b18;
}

.feature-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feature-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.03) 48%);
}

.feature-frame figcaption {
  position: absolute;
  z-index: 1;
  left: clamp(24px, 5vw, 70px);
  bottom: clamp(24px, 5vw, 62px);
  max-width: 580px;
  color: var(--white);
}

.feature-frame span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-frame strong {
  display: block;
  font-size: clamp(34px, 5vw, 74px);
  line-height: 1.03;
  letter-spacing: 0;
}

.moments-band {
  background:
    linear-gradient(135deg, rgba(16, 200, 242, 0.12), transparent 38%),
    linear-gradient(225deg, rgba(255, 159, 28, 0.12), transparent 42%),
    var(--mist);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.moment-list {
  display: grid;
  gap: 12px;
}

.moment-list article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.moment-list h3 {
  margin-top: 0;
  font-size: 21px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(178px, 23svh, 246px);
  gap: 12px;
  margin-top: clamp(24px, 4vw, 46px);
}

.gallery-section {
  align-items: start;
}

.gallery-section .section-shell {
  display: grid;
  min-height: calc(100svh - clamp(142px, 17vw, 224px));
  align-content: center;
}

.gallery-section h2 {
  max-width: 100%;
}

.photo-tile {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(16, 200, 242, 0.2), rgba(238, 79, 155, 0.18));
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.photo-tile:hover img {
  transform: scale(1.035);
}

.photo-tile.tall {
  grid-row: span 2;
}

.photo-tile.wide {
  grid-column: span 2;
}

.closing {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(16, 200, 242, 0.2), transparent 34%),
    linear-gradient(225deg, rgba(238, 79, 155, 0.2), transparent 36%),
    #101112;
  color: var(--white);
}

.closing-media {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  background: #242528;
}

.closing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
}

.closing-copy p {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(18px, 2vw, 24px);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(22px, 6vw, 92px);
  color: rgba(255, 255, 255, 0.6);
  background: #101112;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
  color: var(--white);
}

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

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

@keyframes color-drift {
  from {
    transform: translate3d(-1.5%, 0, 0);
  }

  to {
    transform: translate3d(1.5%, 0, 0);
  }
}

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

  .hero::before {
    animation: none;
  }

  .reveal,
  .photo-tile img,
  .button,
  .site-header {
    transition: none;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 100svh;
    align-items: end;
    padding-top: 86px;
    padding-bottom: 44px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(250, 250, 255, 0.98) 0%, rgba(250, 250, 255, 0.78) 35%, rgba(250, 250, 255, 0.05) 74%),
      url("assets/generated/hero.jpg?v=202605261208") 63% center / cover no-repeat;
  }

  .hero::before {
    background:
      linear-gradient(118deg, transparent 0 20%, rgba(16, 200, 242, 0.16) 32%, transparent 50%),
      linear-gradient(150deg, transparent 0 56%, rgba(238, 79, 155, 0.16) 74%, rgba(255, 159, 28, 0.08) 94%);
  }

  .hero-copy {
    padding-bottom: 4vh;
  }

  .site-nav {
    gap: 16px;
  }

  .trait-grid,
  .two-column,
  .closing {
    grid-template-columns: 1fr;
  }

  .trait {
    min-height: auto;
  }

  .trait h3 {
    margin-top: 34px;
  }

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

  .feature-frame {
    height: calc(100svh - 128px);
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 56px;
    padding-inline: 14px;
  }

  .brand {
    font-size: 14px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding-inline: 18px;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 92px);
  }

  .hero-lede {
    font-size: 19px;
    max-width: calc(100vw - 36px);
    word-break: break-all;
  }

  .mobile-only {
    display: block;
  }

  .section-shell h2,
  .closing-copy h2 {
    font-size: clamp(34px, 11vw, 42px);
    word-break: break-all;
  }

  .button {
    width: 100%;
  }

  .intro-band,
  .moments-band,
  .gallery-section,
  .closing {
    padding-inline: 18px;
    padding-top: 82px;
    padding-bottom: 44px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 310px;
  }

  .photo-tile.tall,
  .photo-tile.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .feature-frame {
    height: calc(100svh - 126px);
    min-height: 360px;
  }

  .site-footer {
    flex-direction: column;
    padding-inline: 18px;
  }
}
