:root {
  --ink: #24172f;
  --muted: #6d6474;
  --violet: #31086e;
  --violet-soft: #f1eafa;
  --coral: #ee6f67;
  --gold: #f7bd4a;
  --cream: #fffaf2;
  --white: #ffffff;
  --line: #eadfee;
  --shadow: 0 24px 80px rgba(49, 8, 110, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid rgba(234, 223, 238, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--violet);
}

.hero {
  min-height: calc(100vh - 77px);
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  align-items: center;
  gap: clamp(28px, 6vw, 86px);
  padding: clamp(44px, 6vw, 84px) clamp(20px, 5vw, 72px) clamp(44px, 7vw, 78px);
  background: var(--white);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 5.6vw, 5.65rem);
  line-height: 1;
  letter-spacing: 0;
  max-width: 760px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 22px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
button {
  color: white;
  background: var(--violet);
  box-shadow: 0 16px 36px rgba(49, 8, 110, 0.22);
}

.button.primary:hover,
button:hover {
  background: #43118d;
}

.button.secondary {
  color: var(--violet);
  background: white;
  border: 1px solid var(--line);
}

.button.light {
  color: var(--violet);
  background: white;
}

.quote {
  color: var(--violet);
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 5% 2% 2% 12%;
  border-radius: 36px;
  background: linear-gradient(135deg, var(--gold), var(--coral) 48%, var(--violet));
  transform: rotate(-4deg);
  box-shadow: var(--shadow);
}

.hero-visual img {
  position: relative;
  width: min(100%, 500px);
  border-radius: 30px;
  background: white;
  padding: clamp(22px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(20px, 5vw, 72px);
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  transform: translateY(-30px);
  box-shadow: var(--shadow);
}

.trust-strip div {
  position: relative;
  padding: 24px;
  background: white;
}

.trust-strip div:first-child {
  border-radius: 8px 0 0 8px;
}

.trust-strip div:last-child {
  border-radius: 0 8px 8px 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 6px;
  color: var(--violet);
}

.trust-strip span {
  color: var(--muted);
}

.section {
  padding: clamp(64px, 9vw, 124px) clamp(20px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: clamp(28px, 6vw, 80px);
  background: #f6f0fb;
  border-top: 1px solid #eadfee;
  border-bottom: 1px solid #eadfee;
}

.split p,
.section-heading p,
.story p,
.contact p,
.event p {
  color: var(--muted);
  font-size: 1.08rem;
}

.impact {
  position: relative;
  overflow: hidden;
  background: var(--violet);
  color: white;
}

.impact::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  right: -240px;
  top: -170px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(247, 189, 74, 0.24), rgba(238, 111, 103, 0.10) 42%, transparent 68%);
}

.impact::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(29, 18, 39, 0.22));
  pointer-events: none;
}

.impact .section-kicker {
  color: var(--gold);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 38px;
}

.section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.impact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.impact-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 240ms ease, background 240ms ease, border-color 240ms ease;
}

.impact-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.impact-grid span {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--gold);
  font-weight: 900;
}

.impact-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.story {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
  background: var(--white);
}

.story-photo {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.strong-line {
  color: var(--violet) !important;
  font-weight: 900;
}

.difference {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: white;
  background:
    linear-gradient(135deg, rgba(49, 8, 110, 0.94), rgba(238, 111, 103, 0.86)),
    url("/assets/gallery-3.jpg") center / cover;
}

.difference h2 {
  max-width: 900px;
}

.difference .section-kicker {
  color: var(--gold);
}

.gallery {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.gallery::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -160px;
  top: 70px;
  border-radius: 999px;
  background: rgba(247, 189, 74, 0.16);
}

.gallery::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -210px;
  bottom: 20px;
  border-radius: 999px;
  background: rgba(49, 8, 110, 0.08);
}

.section-heading.compact {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.section-heading.compact p {
  color: var(--muted);
}

.section-heading.compact .section-kicker {
  color: var(--coral);
}

.gallery-collage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 22px);
}

.photo-card {
  position: relative;
  margin: 0;
  display: grid;
  place-items: center;
  padding: clamp(10px, 1.4vw, 16px);
  border: 1px solid rgba(234, 223, 238, 0.88);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 242, 0.92));
  box-shadow: 0 18px 58px rgba(49, 8, 110, 0.12);
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(247, 189, 74, 0.22), rgba(238, 111, 103, 0.12), rgba(49, 8, 110, 0.10));
}

.photo-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  filter: saturate(1.03) contrast(1.02);
}

.photo-card.tall {
  flex: 1 1 220px;
  max-width: 285px;
  aspect-ratio: 3 / 4.1;
}

.photo-card.square {
  flex: 1 1 220px;
  max-width: 285px;
  aspect-ratio: 1 / 1;
}

.photo-card.wide {
  flex: 1 1 470px;
  max-width: 590px;
  aspect-ratio: 16 / 9;
}

.photo-card:nth-child(1) {
  transform: rotate(-2.5deg);
}

.photo-card:nth-child(2) {
  transform: translateY(22px) rotate(1.5deg);
}

.photo-card:nth-child(3) {
  transform: rotate(-1deg);
}

.photo-card:nth-child(4) {
  transform: translateY(-12px) rotate(2.4deg);
}

.photo-card:nth-child(5) {
  transform: translateY(-4px) rotate(-1.2deg);
}

.photo-card:nth-child(6) {
  transform: translateY(18px) rotate(1.8deg);
}

.event {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--violet-soft);
}

.event h2 {
  color: var(--violet);
}

.muted {
  color: var(--muted);
}

.event-card {
  width: min(100%, 260px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 26px;
  border-radius: 8px;
  color: white;
  background: var(--violet);
  box-shadow: var(--shadow);
}

.event-card span,
.event-card small {
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-card strong {
  font-size: 6rem;
  line-height: 0.85;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.64fr);
  gap: clamp(32px, 6vw, 80px);
  background: white;
}

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

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

.contact-form {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--ink);
  background: white;
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-form p {
  margin: 14px 0 0;
  font-size: 0.86rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: #1d1227;
}

.site-footer div {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 900;
}

.site-footer img {
  width: 42px;
  height: 42px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero,
  .story,
  .contact,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-visual {
    min-height: 0;
  }

  .trust-strip,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .photo-card.tall,
  .photo-card.square,
  .photo-card.wide {
    flex-basis: calc(50% - 16px);
    max-width: none;
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.86rem;
  }

  .hero-actions,
  .difference,
  .event,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  h1 {
    font-size: clamp(1.78rem, 8.6vw, 2.15rem);
    line-height: 1.05;
    max-width: 100%;
  }

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

  .button,
  button {
    width: 100%;
  }

  .hero-visual::before {
    inset: 8% 0 0 8%;
    border-radius: 22px;
  }

  .hero-visual img {
    border-radius: 20px;
  }

  .gallery-collage {
    flex-direction: column;
  }

  .photo-card.tall,
  .photo-card.square,
  .photo-card.wide {
    width: 100%;
    flex-basis: auto;
    aspect-ratio: 4 / 5;
  }

  .photo-card,
  .photo-card:nth-child(n) {
    transform: none;
  }

  .event-card {
    width: 100%;
    max-width: 240px;
  }
}

@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;
  }
}
