:root {
  --paper: #f8f6ee;
  --ink: #254c3b;
  --muted: #72776c;
  --coral: #cb674c;
  --lime: #e5edb4;
  --line: #dfe1d5;
  --serif: Georgia, "Times New Roman", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.7;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 6px;
}
img {
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
.brand {
  font-family: Manrope, sans-serif;
  letter-spacing: -0.055em;
  font-weight: 800;
}
h2 {
  font-size: clamp(35px, 4vw, 54px);
  line-height: 1.16;
  margin: 0;
}
h3 {
  font-size: 27px;
  line-height: 1.3;
}
p {
  color: var(--muted);
}
.container {
  max-width: 1240px;
  padding-left: 36px;
  padding-right: 36px;
}
.coral {
  color: var(--coral);
}
.serif {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.05em;
}
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--ink);
  margin-bottom: 22px;
}
.section {
  padding-top: 112px;
  padding-bottom: 112px;
}
.section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 48px;
}
.section-top > p {
  font-size: 14px;
  margin: 0 0 4px;
}
.skip-link {
  position: fixed;
  top: -100px;
  background: var(--ink);
  color: white;
  padding: 10px 25px;
  z-index: 100;
}
.skip-link:focus {
  top: 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  transition:
    box-shadow 0.3s,
    background 0.3s;
  background: rgba(248, 246, 238, 0.95);
}
.site-header.scrolled {
  background: rgba(248, 246, 238, 0.94);
  box-shadow: 0 4px 20px #254c3b0c;
  backdrop-filter: blur(16px);
}
.navbar {
  min-height: 100px;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-size: 26px;
  display: flex;
  align-items: center;
  position: relative;
  line-height: 1;
}
.brand-dot {
  color: var(--coral);
}
.brand-mark {
  width: 42px;
  height: 45px;
  display: inline-block;
  font-family: Georgia;
  font-size: 51px;
  font-weight: 400;
  position: relative;
  margin-right: 12px;
  transform: rotate(-10deg);
}
.brand-mark > span {
  position: absolute;
  font-size: 19px;
  right: 0;
  top: -1px;
  color: var(--coral);
}
.brand-sub {
  position: absolute;
  left: 55px;
  bottom: -12px;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 2px;
  font-size: 7px;
  font-weight: 500;
}
.navbar-nav {
  align-items: center;
  gap: 28px;
}
.navbar .nav-link {
  font-size: 12px;
  color: var(--muted);
  padding: 8px 0 !important;
  position: relative;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--ink);
}
.nav-link.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 45%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
}
.tiny-heart {
  color: var(--coral);
  margin-left: 2px;
}
.navbar .nav-gallery {
  border: 1px solid var(--ink);
  border-radius: 30px;
  padding: 10px 20px !important;
  color: var(--ink);
}
.nav-gallery span {
  padding-left: 18px;
}
.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 66px;
  padding-bottom: 105px;
  gap: 20px;
}
.hero h1 {
  font-size: clamp(58px, 6.1vw, 82px);
  line-height: 1.05;
  position: relative;
  margin: 0 0 27px;
}
.heading-spark {
  width: 48px;
  height: 48px;
  stroke: var(--coral);
  stroke-width: 3;
  position: absolute;
  left: 345px;
  bottom: 6px;
  transform: rotate(12deg);
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: 2px;
}
.hero-tagline {
  font-size: 25px;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.7px;
  margin-bottom: 18px;
}
.underlined {
  position: relative;
  white-space: nowrap;
}
.underlined:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -4px;
  width: 108%;
  height: 8px;
  border-top: 2px solid var(--coral);
  border-radius: 50%;
  transform: rotate(-3deg);
}
.hero-intro {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 27px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  border: none;
  border-radius: 30px;
  padding: 14px 24px;
  font-size: 12px;
  font-weight: 500;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px #254c3b20;
}
.button-green {
  background: var(--ink);
  color: white;
}
.button-green:hover {
  color: white;
}
.button > span {
  font-size: 20px;
  line-height: 1;
}
.family-signature {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 29px;
}
.avatar-stack {
  display: flex;
  padding-left: 0;
}
.avatar-stack img {
  width: 34px;
  height: 34px;
  border: 2px solid var(--paper);
  object-fit: cover;
  border-radius: 50%;
  margin-left: -9px;
}
.avatar-stack img:first-child {
  margin-left: 0;
  object-position: 25% 45%;
}
.avatar-stack .avatar-mom {
  object-position: 85% 50%;
}
.family-signature strong {
  font-size: 10px;
  display: block;
  font-weight: 500;
}
.family-signature > div > span {
  font-size: 9px;
  display: block;
  color: var(--muted);
  margin-top: 1px;
}
.hero-art {
  position: relative;
  height: 520px;
  margin-left: 8px;
}
.hero-orbit {
  position: absolute;
  background: #ececd8;
  border-radius: 47% 53% 60% 40%;
  width: 93%;
  height: 93%;
  top: 5%;
  left: 7%;
  transform: rotate(-15deg);
}
.photo-print {
  padding: 12px 12px 0;
  background: #fffef9;
  box-shadow: 0 12px 35px #28342614;
}
.photo-print img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.photo-print figcaption {
  font-family: var(--serif);
  font-style: italic;
  color: #686c59;
  font-size: 18px;
  padding: 15px 5px;
  text-align: center;
  letter-spacing: 0.2px;
}
.hero-photo {
  position: absolute;
  left: 0;
  top: 18px;
  width: 97%;
  transform: rotate(-5deg);
  z-index: 2;
  padding: 13px 13px 0;
}
.hero-photo img {
  height: 350px;
  object-position: 45% center;
}
.hero-photo figcaption {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  font-size: 20px;
}
.hero-photo figcaption span {
  font-size: 28px;
  line-height: 1;
  color: var(--coral);
}
.hero-photo:before,
.story-photo:before {
  content: "";
  position: absolute;
  left: 38%;
  top: -14px;
  width: 100px;
  height: 30px;
  background: #e8d8aaae;
  transform: rotate(3deg);
  z-index: 3;
  clip-path: polygon(
    2% 0,
    98% 6%,
    96% 24%,
    100% 31%,
    97% 55%,
    100% 82%,
    98% 100%,
    0 98%,
    3% 72%,
    0 57%,
    3% 37%,
    0 16%
  );
}
.little-print {
  position: absolute;
  right: -7px;
  bottom: -13px;
  width: 175px;
  z-index: 4;
  transform: rotate(10deg);
  padding: 8px 8px 0;
}
.little-print img {
  height: 177px;
  object-position: center 35%;
}
.little-print figcaption {
  font-size: 15px;
  padding: 9px 0;
}
.love-sticker {
  position: absolute;
  z-index: 4;
  right: -23px;
  top: 3px;
  background: var(--lime);
  height: 118px;
  width: 118px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  line-height: 1.35;
  transform: rotate(13deg);
  font-size: 12px;
  box-shadow: 0 4px 14px #254c3b0b;
}
.love-sticker span {
  font-size: 30px;
  line-height: 1;
}
.love-sticker strong {
  font-size: 18px;
}
.doodle-sun {
  position: absolute;
  top: -45px;
  left: -40px;
  color: #c49e49;
  font-size: 85px;
  line-height: 1;
  animation: gentle-turn 16s ease-in-out infinite;
}
.hand-note {
  position: absolute;
  bottom: 9px;
  left: 47px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.2;
  transform: rotate(-8deg);
  color: #6d775c;
}
.hand-note svg {
  width: 65px;
  position: absolute;
  left: 130px;
  top: 11px;
  stroke: #6d775c;
  stroke-width: 1.5;
  fill: none;
  transform: rotate(-20deg);
}
.hero-bottom {
  position: absolute;
  bottom: 24px;
  left: 36px;
  right: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #858a7a;
  font-size: 9px;
  letter-spacing: 1.7px;
}
.hero-bottom a {
  font-size: 10px;
  letter-spacing: 0.2px;
}
.hero-bottom a span {
  margin-left: 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  width: 29px;
  height: 29px;
  justify-content: center;
  align-items: center;
  font-size: 15px;
}
.love-ribbon {
  padding: 21px 20px;
  background: #e9eddf;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  white-space: nowrap;
  overflow: hidden;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
}
.love-ribbon b {
  color: #a3ae86;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
}
.member-photo {
  height: 345px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.member-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.family-cards article:hover .member-photo > img {
  transform: scale(1.04);
}
.dad-photo img {
  object-position: 25% 37%;
  width: 180%;
  max-width: none;
  transform: translateX(-3%);
}
.family-cards article:hover .dad-photo img {
  transform: translateX(-3%) scale(1.04);
}
.mom-photo img {
  object-position: 23% 65%;
  transform: scale(1.55);
  transform-origin: 25% 70%;
}
.family-cards article:hover .mom-photo img {
  transform: scale(1.59);
}
.baby-photo img {
  object-position: center 38%;
}
.photo-label {
  position: absolute;
  left: 18px;
  top: 18px;
  font-size: 9px;
  letter-spacing: 1.6px;
  padding: 6px 12px;
  background: #fffdf5ec;
  border-radius: 18px;
}
.member-doodle {
  position: absolute;
  bottom: 10px;
  right: 18px;
  font-size: 57px;
  color: #f3ecc3;
  line-height: 1;
}
.member-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 22px 0 6px;
}
.member-title h3 {
  font-size: 24px;
  margin: 0;
}
.member-title > span {
  color: #9a9e8e;
  font-size: 10px;
}
.family-cards article > p {
  font-size: 13px;
  line-height: 1.8;
  max-width: 285px;
}
.middle-card {
  padding-top: 30px;
}
.story-section {
  background: #ecefe4;
  padding: 85px 0;
}
.story-art {
  position: relative;
  padding: 10px 45px 10px 65px;
}
.story-photo {
  max-width: 340px;
  transform: rotate(-6deg);
  position: relative;
  margin: 0 auto;
}
.story-photo img {
  height: 375px;
  object-position: center 50%;
}
.story-stamp {
  position: absolute;
  bottom: 55px;
  right: 5%;
  background: var(--lime);
  border: 1px dashed #8b9c68;
  outline: 8px solid var(--lime);
  border-radius: 50%;
  width: 116px;
  height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  line-height: 1.4;
  transform: rotate(10deg);
}
.story-stamp span {
  font-size: 20px;
  font-family: var(--serif);
  font-style: italic;
}
.story-copy {
  padding-left: 55px;
}
.story-copy h2 {
  margin-bottom: 26px;
}
.story-copy > p:not(.eyebrow) {
  font-size: 14px;
  max-width: 400px;
}
.story-signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  margin-top: 28px;
}
.story-signature span {
  color: var(--coral);
  margin-left: 10px;
  font-size: 28px;
}
.kensho-panel {
  border-radius: 24px;
  background: #f3eacb;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  padding: 60px 62px;
  gap: 50px;
  overflow: hidden;
}
.kensho-copy .eyebrow {
  font-size: 9px;
  letter-spacing: 1.6px;
}
.kensho-copy h2 {
  font-size: 44px;
  margin-bottom: 24px;
}
.kensho-copy > p {
  font-size: 13px;
}
.talent-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.talent-tags span {
  border: 1px solid #d3c9a4;
  background: #faf7e555;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 10px;
}
.kensho-art {
  position: relative;
  padding: 12px 15px;
}
.kensho-portrait {
  height: 400px;
  width: 100%;
  object-fit: cover;
  border-radius: 48% 48% 12px 12px;
  transform: rotate(4deg);
  border: 8px solid #fffdf3;
}
.kensho-spark {
  position: absolute;
  top: -42px;
  left: -20px;
  font-size: 100px;
  color: var(--coral);
  z-index: 2;
}
.kensho-heart {
  position: absolute;
  bottom: -15px;
  left: -20px;
  font-size: 100px;
  line-height: 1;
  color: var(--coral);
  transform: rotate(-15deg);
}
.kensho-caption {
  position: absolute;
  bottom: 12px;
  right: -14px;
  padding: 10px 22px;
  background: var(--ink);
  color: #fff;
  font-family: var(--serif);
  font-style: italic;
  border-radius: 20px;
  transform: rotate(-10deg);
  font-size: 22px;
}
.love-feedback {
  font-size: 10px !important;
  margin-top: 11px;
  margin-bottom: 0;
  min-height: 20px;
}
.love-particle {
  position: fixed;
  z-index: 60;
  font-size: 25px;
  color: var(--coral);
  pointer-events: none;
  animation: love-fly 1.3s ease-out forwards;
}
.memories-section {
  padding-top: 10px;
}
.memory-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
  margin-top: 50px;
}
.memory-image {
  height: 440px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.memory-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.8s;
}
.memory-image:hover img {
  transform: scale(1.03);
}
.image-note {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fffdf4;
  padding: 7px 17px;
  font-size: 18px;
  font-family: var(--serif);
  font-style: italic;
  transform: rotate(-3deg);
}
.memory-number {
  font-size: 10px;
  letter-spacing: 2px;
  color: #9ba18d;
  display: block;
  margin-bottom: 18px;
}
.memory-copy h3 {
  font-size: 37px;
  margin-bottom: 20px;
}
.memory-copy p {
  max-width: 340px;
  font-size: 14px;
}
.memory-symbol {
  font-size: 48px;
  color: var(--coral);
}
.memory-row.reverse {
  grid-template-columns: 1fr 1.1fr;
  margin-top: 75px;
}
.reverse .memory-image {
  grid-column: 2;
  grid-row: 1;
  height: 355px;
}
.reverse .memory-copy {
  grid-column: 1;
  grid-row: 1;
  padding-left: 40px;
}
.carousel-section {
  background: #e9eddf;
  padding: 85px 0;
}
.carousel-tools {
  display: flex;
  gap: 10px;
  align-items: center;
}
.round-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #adb6a1;
  background: transparent;
  color: var(--ink);
  font-size: 20px;
  transition: background 0.2s;
}
.round-button:hover {
  background: var(--ink);
  color: #fff;
}
.text-button {
  border: none;
  background: none;
  color: var(--ink);
  padding: 5px 0;
  font-size: 12px;
}
.carousel-tools .text-button {
  margin-right: 16px;
}
.carousel-tools .text-button span {
  margin-left: 5px;
}
.carousel-inner {
  border-radius: 15px;
}
.carousel-item {
  height: 560px;
}
.carousel-item > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.slide-shade {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, #13291ec7);
}
.slide-caption {
  position: absolute;
  bottom: 47px;
  left: 45px;
  color: white;
}
.slide-caption > span {
  font-size: 9px;
  letter-spacing: 2px;
}
.slide-caption h3 {
  font-size: 32px;
  margin-top: 8px;
}
.carousel-indicators {
  left: auto;
  right: 35px;
  bottom: 48px;
  margin: 0;
  gap: 7px;
}
.carousel-indicators [data-bs-target] {
  border: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  opacity: 0.5;
}
.carousel-indicators .active {
  width: 24px;
  border-radius: 10px;
  opacity: 1;
}
.gallery-hint {
  font-size: 11px;
}
.gallery-grid {
  columns: 3;
  column-gap: 18px;
}
.gallery-item {
  width: 100%;
  padding: 0;
  border: 0;
  background: #e4e6d8;
  border-radius: 9px;
  overflow: hidden;
  position: relative;
  margin: 0 0 18px;
  display: block;
  break-inside: avoid;
  text-align: left;
}
.gallery-item img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  transition: transform 0.6s;
}
.gallery-item.tall img {
  height: 365px;
}
.gallery-item:hover img {
  transform: scale(1.045);
}
.gallery-overlay {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, #172d25bb);
  color: white;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: flex-end;
  padding: 20px;
  font-size: 11px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-overlay > span {
  font-size: 23px;
}
.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay {
  opacity: 1;
}
.album-footnote {
  text-align: center;
  font-size: 11px;
  margin: 25px 0 0;
}
.album-footnote span {
  color: var(--coral);
  font-size: 22px;
  margin-left: 7px;
}
.formula-section {
  background: #efebdf;
  padding: 85px 0 55px;
}
.formula-section h2 {
  margin-bottom: 20px;
}
.formula-section > .container > p:not(.eyebrow) {
  font-size: 13px;
}
.formula-grid {
  display: grid;
  grid-template-columns: 1fr 25px 1fr 25px 1fr 25px 1fr;
  align-items: center;
  gap: 8px;
  margin: 40px 0 25px;
}
.formula-card {
  border: 0;
  background: transparent;
  padding: 15px 0 20px;
  border-radius: 16px;
  transition:
    background 0.25s,
    transform 0.25s;
  color: var(--ink);
}
.formula-card:hover,
.formula-card.chosen {
  background: #fffaf0;
  transform: translateY(-5px);
}
.formula-icon {
  font-size: 53px;
  display: block;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 17px;
  color: var(--coral);
}
.formula-card strong {
  display: block;
  font-family: Manrope;
  font-size: 17px;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.formula-card > span:last-child {
  font-size: 10px;
  color: var(--muted);
}
.formula-plus {
  font-family: var(--serif);
  font-size: 25px;
  color: #9a9f88;
}
.formula-message {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px !important;
  min-height: 33px;
}
.closing {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 85px;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 110px;
}
.closing-photo {
  transform: rotate(-4deg);
  background: #fffdf5;
  padding: 11px 11px 37px;
  box-shadow: 0 10px 30px #254c3b12;
}
.closing-photo img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  object-position: center 45%;
}
.closing-copy {
  position: relative;
}
.closing-copy h2 {
  font-size: 43px;
  margin-bottom: 24px;
}
.closing-copy > p:not(.eyebrow) {
  font-size: 12px;
}
.closing-copy > a {
  font-size: 11px;
}
.closing-heart {
  position: absolute;
  right: 20px;
  top: -25px;
  font-family: var(--serif);
  font-size: 85px;
  line-height: 1;
  color: var(--coral);
  transform: rotate(15deg);
}
footer {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}
footer p,
footer > span {
  font-size: 10px;
  margin: 0;
}
.footer-brand {
  font-family: Manrope;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -1px;
}
.footer-brand span {
  color: var(--coral);
}
footer > span {
  color: var(--muted);
}
.lightbox {
  border: 0;
  padding: 0;
  background: #172a23;
  color: #fff;
  width: 100vw;
  max-width: 100vw;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0;
}
.lightbox::backdrop {
  background: #172a23ed;
}
.lightbox[open] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lightbox-top {
  position: absolute;
  top: 20px;
  left: 30px;
  right: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 1px;
}
.lightbox button {
  background: #ffffff15;
  border: 1px solid #ffffff50;
  border-radius: 50%;
  color: #fff;
  width: 45px;
  height: 45px;
  font-size: 24px;
}
.lightbox figure {
  margin: 45px 70px 0;
  text-align: center;
  max-width: calc(100vw - 150px);
}
.lightbox figure img {
  max-height: 75dvh;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 3px;
}
.lightbox figcaption {
  font-size: 13px;
  margin-top: 16px;
}
.lightbox-arrow {
  position: absolute;
  top: 48%;
}
.lightbox-arrow.previous {
  left: 22px;
}
.lightbox-arrow.next {
  right: 22px;
}
.lightbox-help {
  font-size: 10px;
  color: #abb6ad;
  margin: 16px 0;
}
.menu-icon {
  display: block;
  width: 20px;
  height: 14px;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  position: relative;
}
.menu-icon:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 5px;
  border-top: 1.5px solid var(--ink);
}
.navbar-toggler {
  border: 1px solid var(--line);
  padding: 12px;
  border-radius: 50%;
}
.reveal {
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.js-motion .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(26px);
}
.js-motion [data-reveal="left"]:not(.visible) {
  transform: translateX(-25px);
}
.js-motion [data-reveal="right"]:not(.visible) {
  transform: translateX(25px);
}
@keyframes gentle-turn {
  0%,
  100% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(18deg);
  }
}
@keyframes love-fly {
  from {
    opacity: 1;
    transform: translate(-50%, 0) scale(0.7);
  }
  to {
    opacity: 0;
    transform: translate(calc(-50% + var(--drift)), -140px) rotate(25deg)
      scale(1.4);
  }
}
@media (min-width: 1450px) {
  .hero {
    min-height: 780px;
    padding-top: 85px;
  }
  .hero-art {
    height: 540px;
  }
  .hero-photo img {
    height: 385px;
  }
}
@media (max-width: 1100px) {
  .navbar-nav {
    gap: 20px;
  }
  .hero {
    gap: 25px;
    min-height: 680px;
  }
  .hero h1 {
    font-size: 66px;
  }
  .heading-spark {
    left: 280px;
    width: 40px;
  }
  .hero-art {
    height: 460px;
  }
  .hero-photo img {
    height: 300px;
  }
  .little-print {
    width: 145px;
  }
  .little-print img {
    height: 145px;
  }
  .love-sticker {
    width: 96px;
    height: 96px;
    right: -10px;
  }
  .hand-note {
    left: 15px;
    font-size: 20px;
    bottom: 12px;
  }
  .doodle-sun {
    font-size: 66px;
    left: -15px;
    top: -30px;
  }
  .member-photo {
    height: 300px;
  }
  .kensho-panel {
    padding: 42px;
    gap: 30px;
  }
  .kensho-copy h2 {
    font-size: 37px;
  }
  .memory-row {
    gap: 60px;
  }
  .closing {
    gap: 60px;
  }
  .closing-copy h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 85px;
  }
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .navbar {
    min-height: 78px;
  }
  .navbar-collapse {
    padding: 22px 0 10px;
  }
  .navbar-nav {
    align-items: stretch;
    gap: 10px;
  }
  .navbar .nav-link {
    padding: 8px 12px !important;
  }
  .nav-link.active:after {
    left: 0;
    bottom: 16px;
  }
  .nav-gallery {
    display: flex;
    justify-content: space-between;
  }
  .brand {
    font-size: 24px;
  }
  .brand-sub {
    font-size: 6px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 42px;
    padding-bottom: 84px;
    gap: 45px;
    min-height: auto;
  }
  .hero h1 {
    font-size: clamp(57px, 12vw, 78px);
    margin-bottom: 22px;
  }
  .hero-copy > .eyebrow {
    font-size: 8px;
    letter-spacing: 1.5px;
  }
  .heading-spark {
    left: 295px;
    width: 40px;
    bottom: 7px;
  }
  .hero-tagline {
    font-size: 23px;
  }
  .hero-intro {
    font-size: 12px;
  }
  .hero-copy .button {
    font-size: 11px;
  }
  .family-signature {
    margin-top: 24px;
  }
  .hero-art {
    height: 470px;
    width: 90%;
    max-width: 480px;
    margin: 0 auto;
  }
  .hero-photo {
    top: 20px;
    width: 97%;
  }
  .hero-photo img {
    height: 320px;
  }
  .hero-photo figcaption {
    font-size: 17px;
  }
  .little-print {
    width: 145px;
    bottom: -8px;
    right: -6px;
  }
  .little-print img {
    height: 140px;
  }
  .love-sticker {
    right: -12px;
    top: 2px;
  }
  .hand-note {
    bottom: 8px;
    left: 17px;
    font-size: 20px;
  }
  .hero-bottom {
    left: 24px;
    right: 24px;
    bottom: 18px;
  }
  .hero-bottom > span {
    font-size: 7px;
    letter-spacing: 1px;
    max-width: 150px;
  }
  .hero-bottom a {
    font-size: 9px;
  }
  .hero-bottom a span {
    margin-left: 8px;
  }
  .love-ribbon {
    justify-content: flex-start;
    gap: 28px;
    font-size: 19px;
    padding: 15px 22px;
  }
  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .section-top {
    display: block;
    margin-bottom: 32px;
  }
  .section-top > p {
    margin-top: 20px;
    font-size: 13px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.7px;
    margin-bottom: 18px;
  }
  .family-cards {
    row-gap: 30px !important;
  }
  .member-photo {
    height: 410px;
  }
  .dad-photo img {
    width: 160%;
    transform: translateX(-2%);
  }
  .family-cards article:hover .dad-photo img {
    transform: translateX(-2%) scale(1.04);
  }
  .middle-card {
    padding-top: 0;
  }
  .member-title h3 {
    font-size: 26px;
  }
  .family-cards article > p {
    max-width: 100%;
  }
  .story-section {
    padding: 65px 0;
  }
  .story-section .row {
    row-gap: 30px;
  }
  .story-art {
    padding: 0 40px !important;
  }
  .story-photo {
    max-width: 320px;
  }
  .story-photo img {
    height: 340px;
  }
  .story-stamp {
    right: 18px;
    bottom: 30px;
  }
  .story-copy {
    padding-left: 12px;
    padding-top: 15px;
  }
  .story-copy > p:not(.eyebrow) {
    max-width: none;
  }
  .kensho-panel {
    grid-template-columns: 1fr;
    padding: 32px 25px;
    gap: 30px;
    border-radius: 15px;
  }
  .kensho-copy h2 {
    font-size: 34px;
  }
  .kensho-copy .eyebrow {
    font-size: 7px;
    letter-spacing: 1px;
  }
  .kensho-art {
    max-width: 330px;
    width: 100%;
    margin: auto;
    padding: 12px;
  }
  .kensho-portrait {
    height: 365px;
  }
  .kensho-spark {
    font-size: 80px;
    top: -20px;
    left: -12px;
  }
  .kensho-heart {
    font-size: 85px;
    left: -8px;
  }
  .kensho-caption {
    right: -5px;
    bottom: 20px;
    font-size: 20px;
  }
  .memories-section {
    padding-top: 0;
  }
  .memory-row,
  .memory-row.reverse {
    display: flex;
    flex-direction: column;
    gap: 27px;
    margin-top: 40px;
    align-items: stretch;
  }
  .memory-image,
  .reverse .memory-image {
    height: 380px;
  }
  .reverse .memory-copy {
    padding: 0;
  }
  .memory-copy h3 {
    font-size: 30px;
  }
  .memory-copy p {
    max-width: none;
  }
  .memory-symbol {
    display: none;
  }
  .memory-number {
    margin-bottom: 12px;
  }
  .memory-copy h3 {
    margin-bottom: 15px;
  }
  .carousel-section {
    padding: 60px 0;
  }
  .carousel-tools {
    margin-top: 25px;
    justify-content: flex-end;
  }
  .carousel-item {
    height: 365px;
  }
  .slide-caption {
    bottom: 42px;
    left: 22px;
    right: 22px;
  }
  .slide-caption h3 {
    font-size: 26px;
  }
  .slide-caption > span {
    font-size: 8px;
  }
  .carousel-indicators {
    bottom: 20px;
    right: 24px;
  }
  .gallery-grid {
    columns: 2;
    column-gap: 12px;
  }
  .gallery-item {
    margin-bottom: 12px;
    border-radius: 7px;
  }
  .gallery-item img {
    height: 175px;
  }
  .gallery-item.tall img {
    height: 255px;
  }
  .gallery-overlay {
    padding: 10px;
    font-size: 9px;
  }
  .gallery-overlay > span {
    font-size: 19px;
  }
  .formula-section {
    padding: 60px 0 40px;
  }
  .formula-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 30px;
  }
  .formula-plus {
    display: none;
  }
  .formula-card {
    background: #f8f4e9;
    padding: 25px 10px;
  }
  .formula-card strong {
    font-size: 16px;
  }
  .formula-icon {
    font-size: 44px;
  }
  .formula-message {
    font-size: 17px !important;
    min-height: 58px;
  }
  .closing {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 70px;
    padding-bottom: 65px;
  }
  .closing-photo {
    max-width: 300px;
    margin: 0 auto;
    width: 90%;
  }
  .closing-photo img {
    height: 340px;
  }
  .closing-copy h2 {
    font-size: 35px;
  }
  .closing-heart {
    font-size: 65px;
    right: 5px;
    top: 0;
  }
  .closing-copy .eyebrow {
    font-size: 7px;
  }
  footer {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
  }
  footer > span {
    width: 100%;
    text-align: center;
    font-size: 9px;
  }
  .footer-brand {
    font-size: 21px;
  }
  .lightbox figure {
    margin: 55px 15px 0;
    max-width: calc(100vw - 30px);
  }
  .lightbox figure img {
    max-height: 65dvh;
  }
  .lightbox-arrow {
    top: auto;
    bottom: 30px;
  }
  .lightbox-arrow.previous {
    left: calc(50% - 60px);
  }
  .lightbox-arrow.next {
    right: calc(50% - 60px);
  }
  .lightbox-help {
    display: none;
  }
}
@media (max-width: 390px) {
  .heading-spark {
    left: 265px;
    width: 30px;
  }
  .hero-art {
    height: 405px;
  }
  .hero-photo img {
    height: 267px;
  }
  .hero-photo figcaption {
    font-size: 15px;
    padding: 14px 2px;
  }
  .little-print {
    width: 127px;
  }
  .little-print img {
    height: 123px;
  }
  .hand-note {
    font-size: 18px;
    left: 0;
  }
  .hand-note svg {
    left: 110px;
    width: 45px;
  }
  .love-sticker {
    width: 85px;
    height: 85px;
    font-size: 10px;
  }
  .love-sticker strong {
    font-size: 16px;
  }
  .member-photo {
    height: 355px;
  }
  .kensho-copy h2 {
    font-size: 30px;
  }
  .gallery-item img {
    height: 140px;
  }
  .gallery-item.tall img {
    height: 215px;
  }
  .carousel-item {
    height: 300px;
  }
  .closing-copy h2 {
    font-size: 31px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .js-motion .reveal:not(.visible) {
    opacity: 1;
    transform: none;
  }
  .love-particle {
    display: none;
  }
}
/* The portrait keeps Dad's face in frame while retaining the untouched source. */
.dad-photo img {
  width: 190%;
  max-width: none;
  object-position: center 26%;
  transform: translateX(0);
}
.family-cards article:hover .dad-photo img {
  transform: scale(1.025);
  transform-origin: 25% center;
}
.closing-photo.visible {
  transform: rotate(-4deg) translateY(var(--parallax, 0px));
}
@media (prefers-reduced-motion: reduce) {
  .closing-photo.visible {
    transform: rotate(-4deg);
  }
}
@media (max-width: 767px) {
  .hero h1 {
    font-size: clamp(48px, 11vw, 72px);
  }
  .hero-orbit {
    transform: rotate(-5deg);
    width: 90%;
    left: 5%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-orbit {
    transform: rotate(-5deg);
    left: 0;
    width: 95%;
  }
  .hero h1 {
    font-size: 54px;
  }
  .heading-spark {
    left: 230px;
    width: 35px;
  }
  .hero-tagline {
    font-size: 23px;
  }
  .hero-art {
    height: 460px;
  }
  .hero-photo img {
    height: 285px;
  }
  .hand-note {
    font-size: 18px;
    left: 0;
    bottom: 25px;
  }
  .hand-note svg {
    left: 105px;
    width: 42px;
  }
  .little-print {
    width: 130px;
    bottom: 2px;
  }
  .little-print img {
    height: 135px;
  }
  .navbar-nav {
    gap: 17px;
  }
  .navbar .nav-link {
    font-size: 11px;
  }
  .navbar .nav-gallery {
    padding: 9px 12px !important;
  }
  .nav-gallery span {
    padding-left: 6px;
  }
  .kensho-panel {
    padding: 35px 30px;
    gap: 25px;
  }
  .kensho-copy h2 {
    font-size: 33px;
  }
  .kensho-portrait {
    height: 370px;
  }
  .closing {
    grid-template-columns: 260px 1fr;
    gap: 40px;
  }
  .closing-copy h2 {
    font-size: 31px;
  }
  .closing-heart {
    font-size: 60px;
    right: 0;
  }
  .member-photo {
    height: 270px;
  }
  .member-title h3 {
    font-size: 21px;
  }
}
.hero-orbit {
  left: 3%;
  width: 90%;
  transform: rotate(-5deg);
}
