:root {
  --ink: #173b3b;
  --deep: #0e5e5c;
  --teal: #079f9c;
  --coral: #ed7145;
  --yellow: #f5d257;
  --paper: #f8f8f1;
  --white: #fffefa;
  --muted: #617876;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .42;
  background-image: linear-gradient(90deg, rgba(14,94,92,.035) 1px, transparent 1px), linear-gradient(rgba(14,94,92,.035) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.site-header {
  width: min(1160px, calc(100% - 64px));
  min-height: 86px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: fit-content; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: var(--teal); transform: rotate(-7deg); box-shadow: 3px 4px 0 rgba(23,59,59,.18); }
.brand-mark img { width: 28px; height: 28px; object-fit: contain; filter: brightness(0) invert(1); }
.brand-name { display: grid; line-height: 1; }
.brand-name strong { font: 800 1.12rem/1 "Manrope", sans-serif; letter-spacing: .06em; }
.brand-name small { margin-top: 5px; color: var(--muted); font-size: .67rem; letter-spacing: .02em; }
.header-note { color: var(--muted); font-size: .85rem; text-align: center; }
.header-link { justify-self: end; font-size: .88rem; font-weight: 700; color: var(--deep); }
.header-link span { display: inline-block; margin-left: 5px; color: var(--coral); transition: transform .2s ease; }
.header-link:hover span { transform: translate(3px, -3px); }

.hero { width: min(1160px, calc(100% - 64px)); min-height: calc(100vh - 86px); margin: auto; display: grid; grid-template-columns: minmax(0, .9fr) minmax(450px, 1.1fr); align-items: center; gap: clamp(48px, 7vw, 108px); padding: 42px 0 80px; }
.hero-copy { position: relative; z-index: 1; padding-bottom: 30px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--coral); font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.eyebrow-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--yellow); border: 2px solid var(--ink); }
h1 { max-width: 590px; margin: 22px 0 24px; font: 800 clamp(2.4rem, 3.8vw, 4rem)/1 "Manrope", sans-serif; letter-spacing: -.055em; }
.hero-lede { max-width: 500px; margin: 0; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.button-primary { display: inline-flex; align-items: center; gap: 17px; min-height: 56px; padding: 0 20px 0 24px; color: var(--white); background: var(--deep); border: 2px solid var(--ink); border-radius: 18px; box-shadow: 0 5px 0 var(--ink); font-weight: 700; transition: transform .16s ease, box-shadow .16s ease; }
.button-primary span { display: grid; place-items: center; width: 26px; height: 26px; color: var(--deep); background: var(--yellow); border-radius: 50%; font-size: 1.1rem; }
.button-primary span svg, .form-submit span svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.2; }
.button-primary:hover { transform: translateY(3px); box-shadow: 0 2px 0 var(--ink); }
.button-primary:active { transform: translateY(5px); box-shadow: none; }
.text-link { color: var(--deep); border-bottom: 2px solid rgba(14,94,92,.22); padding-bottom: 3px; font-size: .9rem; font-weight: 700; }
.text-link span { margin-left: 7px; color: var(--coral); }
.hero-signature { display: flex; align-items: center; gap: 13px; margin-top: 55px; }
.signature-avatars { display: flex; }
.signature-avatars span { display: grid; place-items: center; width: 29px; height: 29px; margin-left: -6px; border: 2px solid var(--paper); border-radius: 50%; color: var(--ink); background: var(--yellow); font-size: .8rem; font-weight: 800; }
.signature-avatars span:first-child { margin-left: 0; background: var(--coral); }
.signature-avatars span:last-child { background: var(--teal); }
.hero-signature p { margin: 0; color: var(--muted); font-size: .79rem; }
.hero-signature strong { color: var(--ink); }

.hero-art { position: relative; min-height: 650px; display: grid; place-items: center; }
.art-sun { position: absolute; top: 4%; right: -9%; width: 230px; height: 230px; border-radius: 50%; background: var(--yellow); opacity: .72; }
.art-frame { position: relative; width: min(100%, 570px); aspect-ratio: .82; padding: 13px; background: var(--white); border: 2px solid var(--ink); border-radius: 150px 150px 20px 20px; box-shadow: 12px 14px 0 rgba(23,59,59,.95); transform: rotate(3deg); overflow: hidden; }
.art-frame::after { content: ""; position: absolute; inset: 13px; border: 1px solid rgba(255,255,255,.55); border-radius: 138px 138px 12px 12px; pointer-events: none; }
.art-frame img { width: 100%; height: 100%; border-radius: 138px 138px 10px 10px; object-fit: cover; object-position: 47% center; filter: saturate(.9) contrast(.97); }
.art-caption { position: absolute; left: -28px; bottom: 65px; display: flex; align-items: center; gap: 12px; max-width: 275px; padding: 13px 18px 13px 13px; background: var(--white); border: 2px solid var(--ink); border-radius: 17px; box-shadow: 5px 6px 0 var(--coral); transform: rotate(-4deg); }
.caption-icon { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 12px; background: var(--teal); }
.caption-icon img { width: 25px; height: 25px; object-fit: contain; filter: brightness(0) invert(1); }
.art-caption span:last-child { display: grid; gap: 3px; }
.art-caption small { color: var(--coral); font-size: .67rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.art-caption strong { font: 700 .86rem/1.25 "Manrope", sans-serif; }
.art-sticker { position: absolute; top: 18%; right: -28px; display: grid; place-items: center; width: 112px; height: 112px; padding: 15px; color: var(--deep); background: var(--yellow); border: 2px solid var(--ink); border-radius: 50%; box-shadow: 5px 6px 0 var(--ink); text-align: center; transform: rotate(11deg); }
.art-sticker span { font: 800 2rem/1 "Manrope", sans-serif; }
.art-sticker small { font-size: .68rem; font-weight: 800; line-height: 1.05; text-transform: uppercase; }

.below-fold { width: min(1160px, calc(100% - 64px)); margin: -18px auto 0; padding-bottom: 38px; display: flex; align-items: center; gap: 13px; color: var(--muted); font-size: .8rem; }
.below-fold p { margin: 0; }
.scroll-line { width: 34px; height: 2px; background: var(--coral); }
.scroll-arrow { margin-left: auto; color: var(--coral); font-size: 1.2rem; }

.serve-section { width: min(1160px, calc(100% - 64px)); margin: 70px auto 0; padding: 72px 0 34px; border-top: 1px solid rgba(23,59,59,.14); }
.serve-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr); align-items: end; gap: 70px; }
.serve-intro h2 { max-width: 650px; margin: 16px 0 0; font: 800 clamp(2rem, 3.8vw, 3.45rem)/1.03 "Manrope", sans-serif; letter-spacing: -.05em; }
.serve-intro > p { max-width: 390px; margin: 0 0 5px; color: var(--muted); font-size: .98rem; line-height: 1.65; }
.serve-map { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.serve-card { position: relative; min-height: 275px; padding: 22px 23px 24px; border: 2px solid var(--ink); border-radius: 22px; box-shadow: 5px 6px 0 var(--ink); transition: transform .2s ease, box-shadow .2s ease; }
.serve-card:hover { transform: translateY(-5px) rotate(-1deg); box-shadow: 5px 11px 0 var(--ink); }
.serve-card-coral { background: #f48a60; }
.serve-card-yellow { background: var(--yellow); }
.serve-card-teal { background: #63c7bd; }
.serve-card-top { display: flex; align-items: center; justify-content: space-between; }
.serve-number { font: 700 .8rem/1 "Manrope", sans-serif; opacity: .72; }
.serve-icon { display: grid; place-items: center; width: 43px; height: 43px; border: 2px solid var(--ink); border-radius: 14px; background: rgba(255,255,255,.5); transform: rotate(7deg); }
.serve-icon img { width: 28px; height: 28px; object-fit: contain; filter: brightness(0) saturate(100%) invert(20%) sepia(19%) saturate(1134%) hue-rotate(132deg) brightness(89%); }
.serve-card h3 { max-width: 220px; margin: 39px 0 10px; font: 800 1.38rem/1.08 "Manrope", sans-serif; letter-spacing: -.03em; }
.serve-card p { max-width: 255px; margin: 0; font-size: .9rem; line-height: 1.55; }
.serve-arrow { position: absolute; right: 22px; bottom: 20px; font-size: 1.35rem; font-weight: 700; }
.serve-footer { display: flex; align-items: center; gap: 13px; margin-top: 42px; color: var(--muted); font-size: .83rem; }
.serve-footer-mark { display: grid; place-items: center; width: 35px; height: 35px; color: var(--white); background: var(--deep); border-radius: 11px; font: 800 .72rem/1 "Manrope", sans-serif; letter-spacing: .04em; }
.serve-footer a { margin-left: auto; color: var(--deep); font-weight: 700; }
.serve-footer a span { margin-left: 5px; color: var(--coral); }

.pause-section { position: relative; width: min(1030px, calc(100% - 64px)); min-height: 330px; margin: 92px auto 90px; display: grid; grid-template-columns: 235px minmax(0, 1fr); align-items: center; gap: 58px; padding: 52px 70px; overflow: hidden; background: var(--yellow); border: 2px solid var(--ink); border-radius: 30px; box-shadow: 9px 10px 0 var(--ink); }
.pause-section::after { content: ""; position: absolute; right: -80px; bottom: -150px; width: 360px; height: 360px; border: 1px solid rgba(23,59,59,.2); border-radius: 50%; box-shadow: 0 0 0 28px rgba(23,59,59,.04), 0 0 0 56px rgba(23,59,59,.04); pointer-events: none; }
.pause-photo { position: relative; width: 205px; height: 205px; display: grid; place-items: center; background: var(--white); border: 2px solid var(--ink); border-radius: 50%; box-shadow: 7px 8px 0 var(--ink); transform: rotate(-7deg); }
.pause-photo img { width: 148px; height: 148px; object-fit: contain; filter: brightness(0) saturate(100%) invert(20%) sepia(19%) saturate(1134%) hue-rotate(132deg) brightness(89%); }
.pause-spark { position: absolute; display: grid; place-items: center; width: 39px; height: 39px; color: var(--white); background: var(--coral); border: 2px solid var(--ink); border-radius: 50%; font: 800 1.35rem/1 "Manrope", sans-serif; }
.pause-spark-one { top: 8px; right: 3px; transform: rotate(13deg); }
.pause-spark-two { left: -8px; bottom: 21px; background: var(--teal); transform: rotate(-12deg); }
.pause-copy { position: relative; z-index: 1; max-width: 590px; }
.pause-label { color: var(--coral); font: 800 .75rem/1 "Manrope", sans-serif; letter-spacing: .11em; text-transform: uppercase; }
.pause-copy h2 { max-width: 570px; margin: 16px 0 14px; font: 800 clamp(2rem, 3.5vw, 3.2rem)/1.04 "Manrope", sans-serif; letter-spacing: -.05em; }
.pause-copy > p { max-width: 535px; margin: 0; color: rgba(23,59,59,.76); font-size: .96rem; line-height: 1.65; }
.pause-line { display: flex; align-items: center; gap: 9px; margin-top: 24px; color: var(--deep); font-size: .8rem; font-weight: 800; }
.pause-line span { width: 34px; height: 3px; background: var(--coral); }

.general-signup { width: min(900px, calc(100% - 64px)); margin: 0 auto 110px; padding: 78px 0 0; border-top: 1px solid rgba(23,59,59,.14); }
.signup-heading { max-width: 700px; margin: 0 auto 39px; text-align: center; }
.signup-heading h2 { margin: 15px 0 13px; font: 800 clamp(2.1rem, 4vw, 3.4rem)/1.02 "Manrope", sans-serif; letter-spacing: -.05em; }
.signup-heading > p { max-width: 590px; margin: 0 auto; color: var(--muted); font-size: .95rem; line-height: 1.65; }
.signup-note { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; color: var(--coral); font-size: .78rem; font-weight: 800; }
.signup-note span { color: var(--yellow); font-size: 1.2rem; }
.general-form { padding: 35px; background: var(--white); border: 2px solid var(--ink); border-radius: 24px; box-shadow: 6px 7px 0 var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.general-form label { display: grid; gap: 8px; margin-bottom: 17px; color: var(--ink); font-size: .76rem; font-weight: 800; }
.form-control { display: flex; align-items: center; min-height: 55px; gap: 11px; padding: 0 15px; border: 1px solid rgba(23,59,59,.19); border-radius: 13px; background: var(--paper); transition: border-color .2s ease, box-shadow .2s ease; }
.form-control:focus-within { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(7,159,156,.13); }
.form-control svg { width: 18px; height: 18px; flex: 0 0 auto; fill: none; stroke: var(--teal); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.form-control input, .form-control select, .form-control textarea { width: 100%; min-width: 0; border: 0; outline: 0; color: var(--ink); background: transparent; font: 500 .91rem "DM Sans", sans-serif; }
.form-control select { cursor: pointer; }
.form-control textarea { min-height: 93px; padding: 16px 0; resize: vertical; line-height: 1.5; }
.form-control input::placeholder, .form-control textarea::placeholder { color: #849593; }
.form-wide { display: grid; }
.form-textarea { align-items: flex-start; }
.form-textarea svg { margin-top: 17px; }
.form-submit-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 6px; }
.form-submit-row p { max-width: 290px; margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.45; }
.form-submit { display: inline-flex; align-items: center; gap: 17px; min-height: 53px; padding: 0 18px 0 22px; color: var(--white); background: var(--deep); border: 2px solid var(--ink); border-radius: 15px; box-shadow: 0 4px 0 var(--ink); font: 700 .89rem "DM Sans", sans-serif; cursor: pointer; transition: transform .16s ease, box-shadow .16s ease; }
.form-submit span { display: grid; place-items: center; width: 25px; height: 25px; color: var(--deep); background: var(--yellow); border-radius: 50%; font-size: 1.05rem; }
.form-submit:hover { transform: translateY(2px); box-shadow: 0 2px 0 var(--ink); }
.form-submit:active { transform: translateY(4px); box-shadow: none; }
.form-submit:disabled { cursor: wait; opacity: .72; }
.form-submit.is-loading span { width: 15px; height: 15px; border: 2px solid rgba(23,59,59,.3); border-top-color: var(--deep); background: transparent; border-radius: 50%; animation: form-spin .7s linear infinite; }
.form-submit.is-loading span svg { display: none; }
.general-form-status { min-height: 20px; margin: 16px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.4; text-align: right; }
.general-form-status[data-state="success"] { color: var(--deep); font-weight: 700; }
.general-form-status[data-state="error"] { color: #b24d38; font-weight: 700; }
@keyframes form-spin { to { transform: rotate(360deg); } }

.closing-section { position: relative; width: min(900px, calc(100% - 64px)); margin: 0 auto 50px; display: grid; grid-template-columns: 105px minmax(0, 1fr) 45px; align-items: center; gap: 27px; padding: 42px 48px; overflow: hidden; color: var(--white); background: var(--teal); border-radius: 25px; }
.closing-section::before { content: ""; position: absolute; right: -75px; bottom: -110px; width: 260px; height: 260px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; box-shadow: 0 0 0 24px rgba(255,255,255,.04), 0 0 0 48px rgba(255,255,255,.04); }
.closing-mark { position: relative; z-index: 1; width: 92px; height: 92px; display: grid; place-items: center; border-radius: 27px; background: var(--white); transform: rotate(-7deg); box-shadow: 5px 6px 0 var(--deep); }
.closing-mark img { width: 67px; height: 67px; object-fit: contain; filter: brightness(0) saturate(100%) invert(28%) sepia(21%) saturate(1362%) hue-rotate(132deg) brightness(87%); }
.closing-copy { position: relative; z-index: 1; }
.closing-label { color: var(--yellow); font: 800 .72rem/1 "Manrope", sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.closing-copy h2 { max-width: 520px; margin: 12px 0 10px; font: 800 clamp(1.75rem, 3vw, 2.7rem)/1.05 "Manrope", sans-serif; letter-spacing: -.045em; }
.closing-copy p { margin: 0; color: rgba(255,254,250,.82); font-size: .85rem; line-height: 1.55; }
.closing-copy .closing-email { margin-top: 7px; color: var(--white); font-weight: 700; }
.closing-star { position: relative; z-index: 1; align-self: start; color: var(--yellow); font-size: 2.2rem; transform: rotate(15deg); }

.memory-section { position: relative; width: min(1160px, calc(100% - 64px)); margin: 0 auto 96px; overflow: hidden; border: 2px solid var(--ink); border-radius: 34px; background: var(--deep); box-shadow: 9px 10px 0 var(--ink); }
.memory-backdrop { width: 100%; aspect-ratio: 2.15 / 1; background: var(--deep); }
.memory-backdrop img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.memory-content { display: grid; grid-template-columns: minmax(0, .9fr) minmax(260px, .65fr); align-items: end; gap: 54px; padding: 35px 58px 38px; color: var(--white); }
.memory-eyebrow { color: var(--yellow); }
.memory-content h2 { margin: 13px 0 0; font: 800 clamp(2rem, 3.2vw, 3.25rem)/1.02 "Manrope", sans-serif; letter-spacing: -.045em; }
.memory-content p { max-width: 380px; margin: 0 0 2px; color: rgba(255,254,250,.78); font-size: .9rem; line-height: 1.6; }
.memory-gallery { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 14px; padding: 0 28px 28px; }
.memory-card { min-width: 0; aspect-ratio: 1.32 / 1; margin: 0; padding: 6px; background: var(--white); border: 2px solid var(--ink); box-shadow: 4px 5px 0 rgba(0,0,0,.4); }
.memory-card:nth-child(2) { transform: translateY(-12px); }
.memory-card img { width: 100%; height: 100%; object-fit: cover; }
.memory-card:first-child img { object-position: center 35%; }

@media (max-width: 900px) {
  .site-header, .hero, .below-fold { width: min(100% - 40px, 680px); }
  .site-header { grid-template-columns: 1fr auto; min-height: 74px; }
  .header-note { display: none; }
  .hero { grid-template-columns: 1fr; gap: 12px; padding-top: 52px; }
  .hero-copy { padding: 0; }
  h1 { max-width: 630px; font-size: clamp(2.6rem, 8.5vw, 3.85rem); }
  .hero-lede { max-width: 600px; }
  .hero-art { min-height: 510px; margin-top: 10px; }
  .art-frame { width: min(84vw, 470px); }
  .art-caption { left: 2%; bottom: 35px; }
  .art-sticker { right: 2%; top: 11%; }
  .below-fold { margin-top: 0; }
  .serve-section { width: min(100% - 40px, 680px); margin-top: 52px; padding-top: 52px; }
  .serve-intro { grid-template-columns: 1fr; gap: 20px; }
  .serve-intro > p { max-width: 560px; }
  .serve-map { grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: visible; padding: 0; }
  .serve-card { min-height: 255px; }
  .pause-section { width: min(100% - 40px, 680px); grid-template-columns: 150px minmax(0, 1fr); gap: 34px; padding: 44px; }
  .pause-photo { width: 142px; height: 142px; }
  .pause-photo img { width: 102px; height: 102px; }
}
@media (max-width: 540px) {
  .site-header, .hero, .below-fold { width: calc(100% - 32px); }
  .header-link { font-size: .8rem; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-mark img { width: 25px; height: 25px; }
  .hero { padding-top: 38px; padding-bottom: 40px; }
  h1 { margin-top: 18px; font-size: clamp(2.35rem, 11vw, 3.05rem); }
  .hero-lede { font-size: 1rem; line-height: 1.6; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 28px; }
  .hero-signature { margin-top: 38px; }
  .hero-art { min-height: 390px; margin-top: 6px; }
  .art-frame { width: min(86vw, 380px); padding: 9px; border-radius: 105px 105px 16px 16px; box-shadow: 8px 9px 0 rgba(23,59,59,.95); }
  .art-frame img { border-radius: 95px 95px 9px 9px; }
  .art-caption { left: -2px; bottom: 18px; max-width: 225px; padding: 10px 12px 10px 10px; }
  .caption-icon { width: 32px; height: 32px; border-radius: 9px; }
  .caption-icon img { width: 21px; height: 21px; }
  .art-caption strong { font-size: .72rem; }
  .art-sticker { right: -3px; top: 5%; width: 86px; height: 86px; padding: 10px; }
  .art-sticker span { font-size: 1.4rem; }
  .art-sticker small { font-size: .55rem; }
  .below-fold { align-items: flex-start; font-size: .73rem; }
  .serve-section { width: calc(100% - 32px); margin-top: 40px; padding-top: 42px; }
  .serve-intro h2 { font-size: 2.15rem; }
  .serve-intro > p { font-size: .92rem; }
  .serve-map { grid-template-columns: 1fr; gap: 14px; margin-top: 30px; }
  .serve-card { min-height: 245px; padding: 19px; }
  .serve-card h3 { margin-top: 32px; font-size: 1.22rem; }
  .serve-card p { font-size: .84rem; }
  .serve-footer { flex-wrap: wrap; margin-top: 30px; font-size: .75rem; }
  .serve-footer a { width: 100%; margin: 3px 0 0 48px; }
  .pause-section { width: calc(100% - 32px); grid-template-columns: 1fr; gap: 28px; margin: 64px auto 60px; padding: 32px 25px 36px; border-radius: 27px; box-shadow: 6px 7px 0 var(--ink); }
  .pause-photo { width: 116px; height: 116px; margin-left: 4px; }
  .pause-photo img { width: 82px; height: 82px; }
  .pause-spark { width: 31px; height: 31px; font-size: 1rem; }
  .pause-copy h2 { margin-top: 14px; font-size: 2.2rem; }
  .pause-copy > p { font-size: .9rem; }
  .memory-section { width: calc(100% - 32px); margin-bottom: 60px; border-radius: 27px; box-shadow: 6px 7px 0 var(--ink); }
  .memory-backdrop { aspect-ratio: 1.55 / 1; }
  .memory-content { grid-template-columns: 1fr; gap: 15px; padding: 30px 25px 31px; }
  .memory-content h2 { margin-top: 13px; font-size: 2.25rem; }
  .memory-content p { font-size: .86rem; }
  .memory-gallery { gap: 9px; padding: 0 13px 15px; }
  .memory-card { padding: 4px; box-shadow: 3px 4px 0 rgba(0,0,0,.4); }
  .memory-card:nth-child(2) { transform: translateY(-6px); }
  .general-signup { width: calc(100% - 32px); margin-bottom: 70px; padding-top: 50px; }
  .signup-heading { margin-bottom: 28px; }
  .signup-heading h2 { font-size: 2.25rem; }
  .signup-heading > p { font-size: .88rem; }
  .general-form { padding: 23px 18px; border-radius: 19px; box-shadow: 5px 6px 0 var(--ink); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-submit-row { align-items: flex-start; flex-direction: column-reverse; gap: 16px; }
  .form-submit { width: 100%; justify-content: center; }
  .closing-section { width: calc(100% - 32px); grid-template-columns: 76px minmax(0, 1fr); gap: 20px; margin-bottom: 28px; padding: 30px 23px; border-radius: 21px; }
  .closing-mark { width: 68px; height: 68px; border-radius: 20px; }
  .closing-mark img { width: 50px; height: 50px; }
  .closing-copy h2 { margin-top: 10px; font-size: 1.75rem; }
  .closing-copy p { font-size: .78rem; }
  .closing-star { display: none; }
}
