:root {
  --plum: #512438;
  --pink: #fae8ed;
  --rose: #efd0da;
  --paper: #fffaf7;
  --green: #d8e3b6;
  --line: #51243830;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--plum);
  font-family: var(--sans);
  font-size: 15px;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline: 3px solid #8a4563;
  outline-offset: 6px;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
p {
  line-height: 1.7;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.topline {
  background: var(--plum);
  color: var(--pink);
  padding: 11px 20px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 600;
}
.topline span {
  padding: 0 20px;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 5%;
  background: var(--pink);
  border-bottom: 1px solid var(--line);
}
.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.wordmark > span {
  font: 600 27px var(--serif);
  letter-spacing: -1.4px;
}
.wordmark small {
  font-size: 9px;
  letter-spacing: 5px;
  margin-top: 5px;
}
.mark {
  font-size: 29px;
  margin-left: 7px;
}
nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
}
nav a:hover,
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.header-call {
  font-size: 12px;
  font-weight: 600;
  border-bottom: 1px solid;
  padding: 8px 0;
}
.header-call span {
  margin-left: 20px;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--pink);
  min-height: 625px;
}
.hero-copy {
  padding: 64px 8% 45px 10%;
}
.eyebrow {
  font-size: 9px;
  letter-spacing: 1.7px;
  font-weight: 700;
  line-height: 1.5;
}
.tiny-flower {
  font-size: 20px;
  vertical-align: middle;
  margin-right: 10px;
}
h1 {
  font: 500 clamp(60px, 6.8vw, 104px) / 1.04 var(--serif);
  letter-spacing: -4px;
  margin: 28px 0 23px;
}
em {
  font-weight: 500;
}
h1 em {
  position: relative;
}
h1 em:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 8px;
  border-bottom: 2px solid var(--plum);
  border-radius: 50%;
  transform: rotate(-4deg);
}
.intro {
  font-size: 21px;
  line-height: 1.5;
  margin-bottom: 17px;
}
.detail {
  font-size: 13px;
  max-width: 310px;
  opacity: 0.85;
  margin-bottom: 27px;
}
.button {
  display: inline-flex;
  gap: 46px;
  align-items: center;
  padding: 16px 24px;
  background: var(--plum);
  color: var(--paper);
  font-size: 12px;
  font-weight: 600;
  border-radius: 3px;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  background: #713b52;
  transform: translateY(-2px);
}
.button span {
  font-size: 18px;
}
.hero-note {
  font-size: 10px;
  margin-top: 30px;
}
.hero-note > span {
  font-size: 18px;
  vertical-align: middle;
  margin-right: 8px;
}
.hero-art {
  position: relative;
  min-width: 0;
  overflow: hidden;
}
.hero-art > img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: 55% center;
}
.flower-seal {
  position: absolute;
  top: 35px;
  right: 32px;
  background: var(--green);
  height: 134px;
  width: 134px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transform: rotate(12deg);
  font-size: 9px;
  letter-spacing: 1.3px;
  box-shadow: 0 0 0 5px #d8e3b63b;
}
.flower-seal span {
  font: italic 24px var(--serif);
  letter-spacing: -0.5px;
  margin: 7px 0;
}
.flower-seal b {
  font-size: 7px;
  font-weight: 500;
}
.photo-caption {
  position: absolute;
  bottom: 25px;
  left: 28px;
  color: white;
  font: italic 21px var(--serif);
  text-shadow: 0 1px 8px #000;
}
.ribbon {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
  background: var(--green);
  padding: 22px 5%;
  font: italic 20px var(--serif);
}
.ribbon b {
  font-style: normal;
  font-size: 27px;
  font-weight: 400;
}
.section {
  padding: 85px 8%;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 40px;
  gap: 40px;
}
h2 {
  font: 500 clamp(36px, 4vw, 58px) / 1.15 var(--serif);
  letter-spacing: -1.8px;
  margin: 14px 0 20px;
}
.section-heading > p {
  max-width: 315px;
  font-size: 13px;
  margin-bottom: 24px;
}
.offerings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.offering {
  padding: 32px 30px 34px 0;
  transition: background 0.2s;
}
.offering + .offering {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}
.offering:hover {
  background: var(--pink);
}
.offering-symbol {
  font-size: 54px;
  display: block;
  margin-bottom: 24px;
  font-weight: 400;
}
.offering h3 {
  font: 500 28px var(--serif);
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}
.offering > p:not(.eyebrow) {
  font-size: 13px;
  max-width: 255px;
  min-height: 48px;
}
.text-link {
  display: inline-flex;
  gap: 24px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 15px;
}
.text-link b {
  font-size: 17px;
  font-weight: 400;
}
.story {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 10%;
  background: var(--plum);
  color: var(--pink);
  align-items: center;
}
.story-label {
  border: 1px solid #fae8ed50;
  border-radius: 50% 50% 0 0;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.story-label > span {
  font: italic clamp(65px, 9vw, 140px) var(--serif);
  letter-spacing: -6px;
}
.story-label p {
  font-size: 10px;
  letter-spacing: 2px;
  margin-top: 18px;
  line-height: 2;
}
.story > div > p:not(.eyebrow) {
  font-size: 13px;
  max-width: 445px;
}
.visit {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 10%;
  background: var(--pink);
}
.visit > div > p:not(.eyebrow) {
  max-width: 330px;
  font-size: 13px;
}
.visit .button {
  margin-top: 15px;
}
.visit-details {
  border-left: 1px solid var(--line);
  padding-left: 50px;
  display: grid;
  gap: 23px;
}
.visit-details h3 {
  font-size: 11px;
  margin-bottom: 8px;
}
.visit-details p,
.visit-details a {
  font-size: 13px;
  line-height: 1.9;
  margin: 0;
}
.visit-details p span {
  float: right;
  margin-left: 30px;
}
.visit-details a:hover {
  text-decoration: underline;
}
.email {
  overflow-wrap: anywhere;
}
footer {
  padding: 36px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
footer .wordmark > span {
  font-size: 21px;
}
footer p {
  font: italic 16px var(--serif);
  margin: 0;
}
footer > small {
  font-size: 9px;
}
.skip {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 10;
  padding: 15px;
  background: white;
}
.skip:focus {
  top: 10px;
}
@media (min-width: 1600px) {
  body {
    max-width: 1800px;
    margin: auto;
  }
  .hero-copy {
    padding-top: 90px;
    padding-bottom: 70px;
  }
  .hero {
    min-height: 730px;
  }
}
@media (max-width: 900px) {
  header {
    padding: 22px 5%;
  }
  nav {
    gap: 18px;
  }
  .hero-copy {
    padding: 42px 8% 35px 10%;
  }
  h1 {
    font-size: 65px;
    letter-spacing: -3px;
  }
  .intro {
    font-size: 18px;
  }
  .hero {
    min-height: 580px;
  }
  .eyebrow {
    font-size: 8px;
  }
  .flower-seal {
    width: 112px;
    height: 112px;
    right: 20px;
  }
  .section {
    padding: 65px 6%;
  }
  .visit-details {
    padding-left: 28px;
  }
  .visit {
    gap: 6%;
  }
  .ribbon {
    font-size: 16px;
    gap: 15px;
  }
  .offering + .offering {
    padding-left: 20px;
  }
  .offering {
    padding-right: 20px;
  }
  .offering h3 {
    font-size: 24px;
  }
}
@media (max-width: 620px) {
  .topline {
    font-size: 8px;
    letter-spacing: 1.2px;
  }
  .topline span {
    padding: 0 7px;
  }
  header {
    padding: 20px 6%;
  }
  .wordmark > span {
    font-size: 22px;
  }
  .wordmark small {
    font-size: 7px;
  }
  .mark {
    font-size: 22px;
  }
  nav {
    display: none;
  }
  .header-call {
    font-size: 10px;
  }
  .header-call span {
    margin-left: 9px;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 38px 7% 35px;
  }
  h1 {
    font-size: 71px;
    margin: 22px 0;
    letter-spacing: -3.3px;
  }
  .intro {
    font-size: 20px;
  }
  .detail {
    max-width: 335px;
  }
  .hero-note {
    margin-top: 23px;
  }
  .hero-art {
    height: 410px;
  }
  .hero-art > img {
    object-position: 50% 45%;
  }
  .flower-seal {
    top: 23px;
    right: 23px;
  }
  .ribbon {
    padding: 20px 6%;
    flex-wrap: wrap;
    gap: 12px 20px;
    justify-content: center;
    font-size: 16px;
  }
  .ribbon b {
    font-size: 20px;
  }
  .ribbon b:nth-of-type(2) {
    display: none;
  }
  .ribbon span {
    white-space: nowrap;
  }
  .section {
    padding: 52px 7%;
  }
  .section-heading {
    display: block;
    margin-bottom: 25px;
  }
  h2 {
    font-size: 42px;
  }
  .section-heading > p {
    max-width: 100%;
  }
  .offerings {
    grid-template-columns: 1fr;
  }
  .offering,
  .offering + .offering {
    padding: 25px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    position: relative;
  }
  .offering:last-child {
    border-bottom: 0;
  }
  .offering-symbol {
    position: absolute;
    right: 5px;
    top: 25px;
    font-size: 42px;
  }
  .offering h3 {
    font-size: 28px;
  }
  .offering .eyebrow {
    padding-right: 55px;
  }
  .offering > p:not(.eyebrow) {
    max-width: 275px;
    min-height: 0;
  }
  .story {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .story-label {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
  }
  .story-label > span {
    font-size: 94px;
  }
  .visit {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .visit-details {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 28px 0 0;
  }
  .visit-details p span {
    float: none;
    margin-left: 25px;
  }
  footer {
    flex-direction: column;
    padding: 32px 6%;
    gap: 21px;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(49px, 15.3vw, 64px);
    letter-spacing: -2.8px;
  }
  .flower-seal span {
    font-size: 20px;
    white-space: nowrap;
  }
}
/* Real photographs and family story */
figure {
  margin: 0;
}
figcaption {
  font-size: 11px;
  line-height: 1.6;
  padding-top: 14px;
}
.archive-photo {
  align-self: center;
}
.archive-photo img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--paper);
  padding: 10px;
  transform: rotate(-2deg);
}
.archive-photo figcaption {
  padding-top: 24px;
}
.archive-photo figcaption span {
  display: block;
  font-size: 8px;
  letter-spacing: 2px;
  margin-bottom: 5px;
  opacity: 0.7;
}
.story {
  grid-template-columns: 1fr 1.08fr;
  gap: 8%;
}
.life-gallery {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: 24px;
  align-items: start;
}
.life-gallery img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.life-gallery figure:nth-child(2) {
  padding-top: 48px;
}
.stand-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding-top: 32px;
}
.stand-notes h3 {
  font: 500 23px var(--serif);
  margin-bottom: 12px;
}
.stand-notes p {
  font-size: 13px;
}
.occasions {
  background: #edf0e2;
}
.occasion-gallery {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 32px;
  align-items: center;
}
.occasion-gallery img {
  width: 100%;
  height: auto;
  display: block;
}
.occasion-copy {
  padding: 0 8px;
}
.occasion-copy h3,
.arrangement-gallery h3 {
  font: 500 37px/1.15 var(--serif);
  letter-spacing: -1px;
}
.occasion-copy > p:not(.eyebrow),
.arrangement-gallery p:not(.eyebrow) {
  font-size: 13px;
}
.occasion-copy .button {
  gap: 18px;
  padding: 14px 18px;
}
.arrangement-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 65px;
  padding-top: 45px;
  border-top: 1px solid var(--line);
}
.arrangement-gallery img {
  width: 100%;
  height: auto;
  display: block;
}
.arrangement-gallery > div {
  padding-left: 10px;
}
@media (max-width: 900px) {
  .occasion-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .occasion-copy {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
  .occasion-gallery figure:last-child {
    grid-column: 1;
  }
  .arrangement-gallery {
    gap: 20px;
  }
  .arrangement-gallery h3 {
    font-size: 29px;
  }
}
@media (max-width: 620px) {
  .story {
    grid-template-columns: 1fr;
  }
  .archive-photo {
    margin: 0 5px 8px;
  }
  .life-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 25px 15px;
  }
  .life-gallery figure:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-top: 0;
  }
  .life-gallery figure:nth-child(2) img {
    aspect-ratio: 4/3;
  }
  .stand-notes {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
  }
  .stand-notes p {
    margin-bottom: 0;
  }
  .occasion-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 25px 15px;
  }
  .occasion-copy {
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 5px 0;
  }
  .occasion-gallery figure:last-child {
    grid-column: 2;
    grid-row: 1;
  }
  .occasion-gallery img {
    aspect-ratio: 2/3;
    object-fit: cover;
  }
  .arrangement-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 24px 15px;
    margin-top: 35px;
    padding-top: 30px;
  }
  .arrangement-gallery > div {
    grid-column: 1 / -1;
    padding: 0;
  }
  .arrangement-gallery h3 {
    font-size: 35px;
  }
}
