:root {
  color-scheme: light;
  --ink: #3b2441;
  --muted: #74546f;
  --cream: #fff7f6;
  --cream-strong: #ffe6df;
  --paper: #ffffff;
  --cocoa: #d85d8e;
  --cocoa-dark: #b54471;
  --green: #c85f7b;
  --gold: #f0a86d;
  --line: #f2d3d9;
  --shadow: 0 22px 60px rgba(116, 58, 95, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 203, 220, 0.42), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 226, 190, 0.38), transparent 24%),
    linear-gradient(180deg, #fff9fb 0%, var(--cream) 42%, #fff6f0 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
}

.brand {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.header-cta,
.primary-button {
  background: var(--cocoa);
  color: white;
  box-shadow: 0 12px 28px rgba(216, 93, 142, 0.28);
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.header-cta:hover,
.primary-button:hover {
  background: var(--cocoa-dark);
}

.secondary-button {
  border: 1px solid rgba(216, 93, 142, 0.22);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
}

.secondary-button.light {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: white;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 44px;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 64px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.5vw, 46px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.lead {
  max-width: 600px;
  margin-bottom: 18px;
  color: #6f4061;
  font-size: 22px;
  line-height: 1.55;
  font-weight: 700;
}

.story,
.mission p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.hero-actions.centered {
  justify-content: center;
}

.hero-photo {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdfd 0%, #fff2f1 100%);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.photo-note {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(80, 29, 67, 0.78), transparent);
  color: white;
}

.photo-note span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.photo-note strong {
  display: block;
  max-width: 340px;
  font-size: 24px;
  line-height: 1.2;
}

.mission {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 241, 240, 0.92) 100%);
  padding: 64px max(16px, calc((100vw - 1120px) / 2));
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 30px;
}

.cards article {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 244, 247, 0.96) 100%);
  padding: 26px;
  box-shadow: 0 12px 30px rgba(116, 58, 95, 0.08);
}

.cards p {
  color: var(--muted);
  line-height: 1.6;
}

.gallery {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 66px;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 24px;
}

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

.photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  background: #fffafb;
}

.photo-grid img:first-child {
  grid-column: span 2;
}

.final-cta {
  padding: 66px max(16px, calc((100vw - 850px) / 2));
  background: linear-gradient(135deg, #a63e70 0%, #d85d8e 58%, #f2a76c 100%);
  color: white;
  text-align: center;
}

.final-cta .eyebrow {
  color: #f2d383;
}

.final-cta p {
  max-width: 720px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .brand {
    max-width: 140px;
  }

  .hero,
  .mission,
  .cards,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
    padding-top: 24px;
  }

  .lead {
    font-size: 20px;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 380px;
  }

  .mission {
    padding-block: 46px;
  }

  .photo-grid img,
  .photo-grid img:first-child {
    grid-column: auto;
    min-height: 270px;
  }
}

@media (max-width: 520px) {
  .site-header {
    width: min(100% - 24px, 1120px);
    gap: 10px;
  }

  .header-cta {
    min-height: 44px;
    padding-inline: 12px;
    font-size: 14px;
  }

  .hero,
  .cards,
  .gallery {
    width: min(100% - 24px, 1120px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }
}
