@import url("https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=Euphoria+Script&family=Instrument+Serif:ital@0;1&family=Jost:ital,wght@0,100..900;1,100..900&family=Lexend:wght@100..900&family=Ms+Madi&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
:root {
  --ink: #11110f;
  --paper: #f2f2f2;
  --sage: #78806a;
  --gutter: #1d1d1d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Jost, Helvetica, sans-serif;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button,
a {
  color: inherit;
}

.page-shell {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 48px 0px 48px;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  padding: 0 36px;
}

.brand {
  font-family: Didot, "Bodoni MT", "Times New Roman", serif;
  font-size: 24px;
  text-decoration: none;
}

.menu-button {
  position: relative;
  z-index: 12;
  display: flex;
  width: 34px;
  height: 28px;
  padding: 4px 2px;
  border: 0;
  background: transparent;
  cursor: pointer;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-end;
}

.menu-button span {
  display: block;
  width: 23px;
  height: 2px;
  margin-left: auto;
  background: currentColor;
  transition:
    transform 180ms ease,
    width 180ms ease,
    opacity 180ms ease;
}

.menu-button span:last-child {
  width: 15px;
}

.menu-button span:nth-child(2) {
  width: 19px;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(9px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:last-child {
  width: 23px;
  transform: translateY(-9px) rotate(-45deg);
}

.site-menu {
  position: fixed;
  z-index: 11;
  inset: 0;
  display: flex;
  padding: 110px 42px 54px;
  visibility: hidden;
  background: #758065;
  color: var(--paper);
  opacity: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  pointer-events: none;
  transition:
    opacity 300ms ease,
    visibility 300ms ease;
}

.site-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.site-menu a {
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
  min-width: min(100%, 290px);
  padding: 4px 22px;
  overflow: hidden;
  border-radius: 4px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(25px, 7vw, 38px);
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0;
  transform: translateY(16px);
  transition:
    color 180ms ease,
    opacity 260ms ease,
    transform 320ms ease;
}

.site-menu a::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: rgb(242 238 228 / 14%);
  content: "";
  transform: translateX(-105%);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-menu.is-open a {
  opacity: 1;
  transform: translateY(0);
}

.site-menu.is-open a:nth-child(2) {
  transition-delay: 45ms;
}
.site-menu.is-open a:nth-child(3) {
  transition-delay: 90ms;
}
.site-menu.is-open a:nth-child(4) {
  transition-delay: 135ms;
}
.site-menu.is-open a:nth-child(5) {
  transition-delay: 180ms;
}

.site-menu.is-open a:hover,
.site-menu.is-open a:focus-visible {
  color: #fff;
  transform: scale(1.015);
  transition-delay: 0ms;
}

.site-menu a:hover::before,
.site-menu a:focus-visible::before {
  transform: translateX(0);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .brand,
body.menu-open .menu-button {
  z-index: 12;
  color: var(--paper);
}

.hero-copy {
  position: relative;
  z-index: 3;
  margin-top: 42px;
  margin-left: 12px;
}

.hero-copy h1,
.hero-copy p,
.hero-ending strong,
span {
  margin: 0;
  font-family: Jost, "Bodoni MT", "Times New Roman", serif;
  font-weight: 400;
}

.hero-copy h1 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: clamp(64px, 9vw, 132px);
  line-height: 0.82;
  text-transform: uppercase;
  letter-spacing: -0.055em;
}

.hero-copy p {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  margin-top: 18px;
  color: var(--sage);
  font-size: clamp(45px, 6vw, 86px);
  font-style: italic;
  line-height: 0.8;
}

.collage {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr 0.8fr;
  gap: 22px;
  width: calc(100% + 84px);
  margin-top: -24px;
  margin-left: -42px;
}

.collage-column {
  height: 690px;
  overflow: hidden;
  will-change: transform;
}

.collage-column--left {
  margin-top: 90px;
}

.collage-column--right {
  margin-top: -90px;
}

.collage-track {
  display: block;
  will-change: transform;
}

.collage-track.is-intro-rolling {
  animation: collage-track-intro 5000ms ease-in-out both;
}

@keyframes collage-track-intro {
  0% {
    opacity: 1;
    transform: translate3d(0, var(--collage-intro-start), 0);
  }
  82% {
    opacity: 1;
    transform: translate3d(0, var(--collage-intro-roll), 0);
  }
  90% {
    opacity: 0;
    transform: translate3d(0, var(--collage-intro-roll), 0);
  }
  91% {
    opacity: 0;
    transform: translate3d(0, var(--collage-intro-start), 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, var(--collage-intro-start), 0);
  }
}

.photo--center img.is-load-revealing {
  animation: hero-center-image-settle 2200ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-center-image-settle {
  0% {
    filter: brightness(0.94) saturate(0.9);
    transform: scale(1);
  }
  52% {
    filter: brightness(1.02) saturate(1);
    transform: scale(1.045);
  }
  100% {
    filter: brightness(1) saturate(1);
    transform: scale(1);
  }
}

.collage-set {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.photo {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.photo[data-hero-image] {
  position: relative;
  background: #e3e4de;
}

.photo[data-hero-image]::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
      105deg,
      transparent 28%,
      rgb(255 255 255 / 52%) 46%,
      transparent 64%
    )
    #e3e4de;
  background-position: 130% 0;
  background-size: 240% 100%;
  content: "";
  opacity: 1;
  pointer-events: none;
  animation: hero-image-skeleton 1500ms ease-in-out infinite;
  transition: opacity 420ms ease;
}

.photo[data-hero-image] > img {
  position: relative;
  z-index: 2;
  opacity: 0;
  transition: opacity 620ms ease;
}

.photo[data-hero-image].is-image-loaded::before {
  opacity: 0;
  animation: none;
}

.photo[data-hero-image].is-image-loaded > img {
  opacity: 1;
}

@keyframes hero-image-skeleton {
  to {
    background-position: -130% 0;
  }
}

.photo--center {
  height: 690px;
}

.photo--left-top {
  height: 300px;
}
.photo--left-bottom {
  height: 370px;
}
.photo--right-top {
  height: 320px;
}
.photo--right-bottom {
  height: 390px;
}

.photo--center img {
  object-position: 40% 45%;
}
.photo--left-top img {
  object-position: 46% center;
}
.photo--left-bottom img {
  object-position: 50% center;
}
.photo--right-top img {
  object-position: 58% center;
}
.photo--right-bottom img {
  object-position: 55% center;
}

.hero-ending {
  position: relative;
  z-index: 2;
  margin: -100px 0 0;
  right: 12px;
}

.hero-ending span {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  display: block;
  color: var(--sage);
  font-size: clamp(45px, 6vw, 82px);
  font-style: italic;
  line-height: 1;
  text-align: end;
}

.hero-ending strong {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  display: block;
  font-size: clamp(64px, 9vw, 130px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.055em;
  text-align: end;
}

.about-section {
  min-height: 100vh;
  min-height: 100svh;
  padding: 76px 50px 68px;
  color: var(--paper);
  background: #8e9979;
}

.about-section__inner {
  width: min(100%, 780px);
  margin: 0 auto;
}

.about-section__portrait {
  position: relative;
  height: min(720px, 72vh);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #e9ece8;
  /* transform: rotate(2deg); */
}

.about-section__portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.about-section__portrait[data-about-reveal] img {
  transform: scale(1);
}

.about-section__portrait[data-about-reveal].is-visible img {
  animation: about-image-settle 1400ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes about-image-settle {
  0% {
    transform: scale(1);
  }
  62% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

.about-section__content {
  max-width: 620px;
  margin: 34px auto 0;
}

.about-section__eyebrow {
  margin: 0 0 2px;
  font-size: 14px;
  text-transform: uppercase;
}

.about-section h2 {
  margin: 2px 0 0 -15px;
  font-family: "Instrument Serif", "Bodoni MT", "Times New Roman", serif;
  font-size: clamp(46px, 6vw, 72px);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  color: #525b41;
}

.about-section__content > p:not(.about-section__eyebrow) {
  margin: 0 0 26px;
  font-size: 17px;
  line-height: 1.48;
  white-space: normal;
}

.home-copy-reveal [data-about-copy-reveal],
.home-copy-reveal [data-approach-copy-reveal] {
  opacity: 0;
  filter: blur(2px);
  transform: translateY(14px);
  transition:
    opacity 900ms ease,
    filter 800ms ease,
    transform 1050ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-copy-reveal [data-about-copy-reveal].is-copy-visible,
.home-copy-reveal [data-approach-copy-reveal].is-copy-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.about-section__link {
  display: block;
  width: fit-content;
  margin: 36px auto 0;
  padding: 14px 25px;
  border-radius: 999px;
  color: #68705d;
  background: var(--paper);
  font-size: 16px;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.about-section__link:hover,
.about-section__link:focus-visible {
  color: var(--ink);
  transform: translateY(-2px);
}

/* Mobile and tablet share this layout until tablet-specific design begins. */
@media (max-width: 1023px) {
  .page-shell {
    width: 100%;
    min-width: 0;
    margin: 0;
  }

  .hero {
    min-height: 100vh;
    padding: 32px 0 42px;
  }

  .brand {
    font-size: 20px;
  }

  .hero-copy {
    margin-top: 35px;
  }

  .hero-copy h1 {
    font-size: clamp(64px, 9.1vw, 63px);
    line-height: 0.86;
  }

  .hero-copy p {
    margin-top: 16px;
    font-size: clamp(39px, 10.5vw, 51px);
  }

  .collage {
    grid-template-columns: 1.25fr 1.75fr 1.22fr;
    gap: 10px;
    width: calc(100% + 72px);
    margin-top: -4px;
    margin-left: -36px;
  }

  .collage-column--left {
    margin-top: 45px;
  }

  .collage-column--right {
    margin-top: -80px;
  }

  .collage-set {
    gap: 10px;
  }

  .collage-column {
    height: 559px;
  }

  .photo--center {
    height: 542px;
  }
  .photo--left-top {
    height: 244px;
  }
  .photo--left-bottom {
    height: 305px;
  }
  .photo--right-top {
    height: 252px;
  }
  .photo--right-bottom {
    height: 307px;
  }

  .hero-ending {
    margin-top: -80px;
    right: 12px;
  }

  .hero-ending span {
    font-size: clamp(40px, 6.5vw, 50px);
  }

  .hero-ending strong {
    margin-top: 13px;
    font-size: clamp(64px, 6.1vw, 61px);
    white-space: nowrap;
  }

  .about-section {
    min-height: 100vh;
    min-height: 100svh;
    padding: 42px 36px 25px;
  }

  .about-section__inner {
    display: flex;
    min-height: calc(100vh - 67px);
    min-height: calc(100svh - 67px);
    flex-direction: column;
  }

  .about-section__portrait {
    height: auto;
    min-height: 353px;
    flex: 1 1 auto;
    border-radius: 8px;
  }

  .about-section__portrait img {
    object-position: center 40%;
  }

  .about-section__content {
    margin: 24px 0;
  }

  .about-section__eyebrow {
    font-size: 12px;
  }

  .about-section h2 {
    margin-bottom: 24px;
    font-size: 36px;
  }

  .about-section__content > p:not(.about-section__eyebrow) {
    margin-bottom: 23px;
    font-size: 18px;
    line-height: 1.52;
  }

  .about-section__link {
    margin-top: 27px;
    padding: 11px 19px;
    font-size: 15px;
  }
}

/* Laptop and larger: keep the complete hero composition inside one viewport. */
@media (min-width: 1024px) {
  .hero {
    height: 100vh;
    height: 100svh;
    min-height: 0;
    padding: 0;
    overflow: hidden;
  }

  .hero .site-header {
    position: absolute;
    inset: clamp(22px, 4vh, 42px) 0 auto;
    padding: 0 clamp(36px, 4vw, 72px);
  }

  .hero-copy {
    position: absolute;
    top: clamp(58px, 13vh, 105px);
    left: clamp(53px, 2vw, 392px);
    margin: 0;
  }

  .hero-copy h1 {
    font-size: clamp(68px, 8vw, 98px);
  }

  .hero-copy p {
    margin-top: clamp(10px, 1.5vh, 18px);
    font-size: clamp(44px, 5vw, 76px);
  }

  .collage {
    position: absolute;
    top: clamp(160px, 22vh, 230px);
    bottom: clamp(82px, 12vh, 130px);
    left: -42px;
    width: calc(100% + 84px);
    margin: 0;
  }

  .collage-column,
  .photo--center {
    height: 100%;
  }

  .collage-column--left {
    margin-top: clamp(52px, -1vh, 115px);
  }

  .collage-column--right {
    margin-top: clamp(-82px, -8vh, -42px);
  }

  .photo--left-top,
  .photo--right-top {
    height: clamp(190px, 29vh, 310px);
  }

  .photo--left-bottom,
  .photo--right-bottom {
    height: clamp(230px, 36vh, 380px);
  }

  .hero-ending {
    position: absolute;
    right: clamp(42px, 8vw, 394px);
    bottom: clamp(-8px, -8.5vh, 28px);
    left: 28%;
    margin: 0;
  }

  .hero-ending span {
    font-size: clamp(42px, 4.7vw, 72px);
  }

  .hero-ending strong {
    font-size: clamp(68px, 7.5vw, 116px);
  }

  .about-section {
    height: 100vh;
    height: 100svh;
    min-height: 0;
    padding: clamp(42px, 6vh, 72px) clamp(50px, 6vw, 100px);
    overflow: hidden;
  }

  .about-section__inner {
    display: grid;
    width: min(100%, 1280px);
    height: 100%;
    margin: 0 auto;
    align-items: stretch;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: clamp(52px, 7vw, 112px);
  }

  .about-section__portrait {
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .about-section__content {
    width: 100%;
    max-width: 540px;
    margin: 0;
    align-self: center;
  }

  .about-section h2 {
    margin: 2px 0 clamp(28px, 4vh, 44px) -15px;
  }

  .about-section__content > p:not(.about-section__eyebrow) {
    font-size: clamp(17px, 1.35vw, 20px);
  }

  .about-section__link {
    margin-top: clamp(30px, 5vh, 52px);
  }
}

.services-section {
  padding: 42px 24px 24px;
  background: var(--paper);
}

.services-section__inner {
  width: min(100%, 700px);
  margin: 0 auto;
}

.services-section__heading {
  flex: none;
  margin: 0 0 12px 8%;
}

.services-section__heading p {
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
}

.services-section__heading h2 {
  margin: 0 0 0 -20px;
  color: var(--sage);
  font-family: "Instrument Serif", "Bodoni MT", "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 64px);
  font-style: italic;
  font-weight: 500;
  line-height: 0.9;
}

.services-grid {
  display: grid;
  width: 100%;
  aspect-ratio: 160 / 555;
  grid-template-columns: 1fr 0.98fr;
  grid-template-rows: 1fr 0.75fr 0.75fr 1fr;
  gap: 7px;
}

.service-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

.service-card::after {
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(transparent, rgb(21 22 17 / 53%));
  content: "";
}

.service-card img {
  transition: transform 500ms ease;
}

.service-card:hover img,
.service-card:focus-visible img {
  transform: scale(1.025);
}

.service-card > span {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 16px;
  left: 16px;
}

.service-card strong,
.service-card small {
  display: block;
  font-family: "Instrument Serif", "Bodoni MT", "Times New Roman", serif;
  font-weight: 400;
}

.service-card strong {
  font-size: clamp(27px, 4vw, 47px);
  line-height: 1.25;
}

.service-card small {
  margin-top: 6px;
  font-size: clamp(13px, 1.6vw, 18px);
  font-style: italic;
  line-height: 1.15;
}

.service-card--wedding {
  grid-area: 1 / 1 / 2 / 3;
}
.service-card--family {
  grid-area: 2 / 1 / 4 / 2;
}
.service-card--pregnancy {
  grid-area: 2 / 2 / 3 / 3;
}
.service-card--portrait {
  grid-area: 3 / 2 / 4 / 3;
}
.service-card--couples {
  grid-area: 4 / 1 / 5 / 3;
}
.service-card--wedding img {
  object-position: center 53%;
}
.service-card--family img {
  object-position: center 42%;
}
.service-card--pregnancy img {
  object-position: center 35%;
}
.service-card--portrait img {
  object-position: center 37%;
}
.service-card--couples img {
  object-position: center 43%;
}

.services-section[data-services-reveal] .services-section__heading,
.services-section[data-services-reveal] .service-card {
  opacity: 0;
  transform: translateY(14px) scale(0.99);
  transition:
    opacity 600ms ease,
    transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}

.services-section[data-services-reveal].is-visible .services-section__heading,
.services-section[data-services-reveal].is-visible .service-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.services-section[data-services-reveal] .service-card {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 1200ms ease,
    filter 1050ms ease,
    transform 1450ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}

.services-section[data-services-reveal].is-visible .service-card {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.services-section[data-services-reveal].is-visible .service-card--wedding {
  transition-delay: 100ms;
}
.services-section[data-services-reveal].is-visible .service-card--family {
  transition-delay: 260ms;
}
.services-section[data-services-reveal].is-visible .service-card--pregnancy {
  transition-delay: 420ms;
}
.services-section[data-services-reveal].is-visible .service-card--portrait {
  transition-delay: 580ms;
}
.services-section[data-services-reveal].is-visible .service-card--couples {
  transition-delay: 740ms;
}

@media (max-width: 1023px) {
  .services-section {
    padding: 18px 16px 10px;
  }

  .services-section__heading {
    margin: 0 0 32px 13px;
  }

  .services-section__heading p {
    font-size: 14px;
  }

  .services-section__heading h2 {
    margin-left: -11px;
    font-size: 36px;
  }

  .services-grid {
    gap: 8px;
  }

  .service-card > span {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .service-card strong {
    font-size: 36px;
  }

  .service-card small {
    margin-top: 3px;
    font-size: 16px;
  }

  .service-card--pregnancy strong,
  .service-card--portrait strong {
    font-size: 36px;
  }

  .service-card--pregnancy small,
  .service-card--portrait small {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-card img {
    transition: none;
  }
  .services-section[data-services-reveal] .services-section__heading,
  .services-section[data-services-reveal] .service-card {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .site-menu a,
  .site-menu a::before {
    transition: none;
  }
  .menu-button span {
    transition: none;
  }
  .collage-track {
    transform: none !important;
  }
  .photo--center img.is-load-revealing {
    filter: none;
    transform: none;
    animation: none;
  }
  .photo[data-hero-image]::before {
    animation: none;
  }
  .about-section__portrait[data-about-reveal],
  .about-section__portrait[data-about-reveal] img {
    opacity: 1;
    clip-path: none;
    transform: none;
    animation: none;
    transition: none;
  }
}

.stories-section {
  padding: 96px 50px 76px;
  background: var(--paper);
}

.stories-section__inner {
  width: min(100%, 900px);
  margin: 0 auto;
}

.stories-section__heading {
  margin: 0 0 20px 7%;
}

.stories-section__heading p {
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
}

.stories-section__heading h2 {
  margin: -2px 0 0 -15px;
  color: var(--sage);
  font-family: "Instrument Serif", "Bodoni MT", "Times New Roman", serif;
  font-size: clamp(45px, 6vw, 72px);
  font-style: italic;
  font-weight: 500;
  line-height: 0.9;
}

.stories-grid {
  display: grid;
  gap: 8px;
}

.stories-grid--top {
  aspect-ratio: 0.86;
  grid-template-columns: 1.65fr 1fr;
  grid-template-rows: 1.72fr 1fr;
}

.stories-grid--bottom {
  aspect-ratio: 1.34;
  grid-template-columns: 0.76fr 1fr;
  margin-top: 8px;
}

.story-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 0 rgb(26 28 22 / 0%);
}

.story-card::after {
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgb(0 0 0 / 40%));
  content: "";
  transition: background 350ms ease;
}

.story-card img {
  transition: transform 500ms ease;
}

.story-card:hover img,
.story-card:focus-visible img {
  transform: scale(1.065);
}

.story-card span {
  position: absolute;
  z-index: 1;
  right: 12px;
  bottom: 14px;
  left: 12px;
  font-family: "Instrument Serif", "Bodoni MT", "Times New Roman", serif;
  font-size: clamp(18px, 3vw, 29px);
  text-align: center;
  transition:
    letter-spacing 300ms ease,
    transform 350ms ease;
}

.story-card--main {
  grid-area: 1 / 1 / 2 / 2;
}
.story-card--wide {
  grid-area: 2 / 1 / 3 / 2;
}
.story-card--tall {
  grid-area: 1 / 2 / 3 / 3;
}
.story-card--main img {
  object-position: center 42%;
}
.story-card--wide img {
  object-position: center 52%;
}
.story-card--tall img {
  object-position: 54% center;
}

.stories-section__link {
  display: block;
  width: fit-content;
  margin: 42px auto 0;
  padding: 13px 24px;
  border-radius: 999px;
  color: #fff;
  background: #8d9878;
  font-size: 18px;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.stories-section__link:hover,
.stories-section__link:focus-visible {
  background: #758065;
  transform: translateY(-2px);
}

.stories-section[data-stories-reveal] .stories-section__heading,
.stories-section[data-stories-reveal] .story-card,
.stories-section[data-stories-reveal]
  > .stories-section__inner
  > .stories-section__link {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 600ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 350ms ease;
}

.stories-section[data-stories-reveal].is-visible .stories-section__heading,
.stories-section[data-stories-reveal].is-visible .story-card,
.stories-section[data-stories-reveal].is-visible
  > .stories-section__inner
  > .stories-section__link {
  opacity: 1;
  transform: translateY(0);
  vertical-align: top;
}

.stories-section[data-stories-reveal] .story-card {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 1200ms ease,
    filter 1050ms ease,
    transform 1450ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 350ms ease;
  will-change: opacity, filter, transform;
}

.stories-section[data-stories-reveal].is-visible .story-card {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.stories-section[data-stories-reveal].is-visible .story-card:nth-child(1) {
  transition-delay: 100ms;
}
.stories-section[data-stories-reveal].is-visible .story-card:nth-child(2) {
  transition-delay: 260ms;
}
.stories-section[data-stories-reveal].is-visible .story-card:nth-child(3) {
  transition-delay: 420ms;
}
.stories-section[data-stories-reveal].is-visible
  .stories-grid--bottom
  .story-card:nth-child(1) {
  transition-delay: 580ms;
}
.stories-section[data-stories-reveal].is-visible
  .stories-grid--bottom
  .story-card:nth-child(2) {
  transition-delay: 740ms;
}
.stories-section[data-stories-reveal].is-visible
  > .stories-section__inner
  > .stories-section__link {
  transition-delay: 380ms;
}

@media (max-width: 1023px) {
  .stories-section {
    padding: 42px 16px 42px;
  }

  .stories-section__inner {
    display: block;
  }

  .stories-section__heading {
    margin: 0 0 32px 14px;
  }

  .stories-section__heading p {
    font-size: 14px;
  }

  .stories-section__heading h2 {
    margin-left: -12px;
    font-size: 36px;
  }

  .stories-grid {
    gap: 5px;
  }

  .stories-grid--top {
    min-height: 0;
    grid-template-rows: 1.72fr 1fr;
  }

  .stories-grid--bottom {
    min-height: 0;
    margin-top: 5px;
  }

  .story-card span {
    right: 5px;
    bottom: 10px;
    left: 5px;
    font-size: 28px;
  }

  .stories-section__link {
    margin-top: 54px;
    margin-bottom: 16px;
    padding: 10px 19px;
    font-size: 14px;
  }
}

@media (min-width: 1024px) {
  .stories-section {
    width: 100%;
    height: 100vh;
    height: 100svh;
    min-height: 0;
    padding: clamp(24px, 3.5vh, 42px) clamp(32px, 5vw, 80px);
    overflow: hidden;
  }

  .stories-section__inner {
    display: grid;
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.9fr);
    grid-template-rows: auto minmax(0, 1fr) auto;
    column-gap: clamp(8px, 1vw, 16px);
  }

  .stories-section__heading {
    margin: 0 0 clamp(12px, 2vh, 22px) 3%;
    grid-column: 1 / -1;
  }

  .stories-section__heading h2 {
    font-size: clamp(45px, 5vw, 68px);
  }

  .stories-grid {
    min-width: 0;
    min-height: 0;
    gap: clamp(6px, 0.7vw, 10px);
  }

  .stories-grid--top {
    height: 100%;
    aspect-ratio: auto;
    grid-column: 1;
    grid-row: 2;
  }

  .stories-grid--bottom {
    height: 100%;
    margin: 0;
    aspect-ratio: auto;
    grid-column: 2;
    grid-row: 2;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .story-card span {
    right: clamp(8px, 1vw, 14px);
    bottom: clamp(9px, 1.5vh, 15px);
    left: clamp(8px, 1vw, 14px);
    font-size: clamp(21px, 2.1vw, 31px);
  }

  .stories-section__link {
    margin: clamp(14px, 2vh, 24px) auto 0;
    grid-column: 1 / -1;
    grid-row: 3;
  }
}

@media (min-width: 1024px) {
  .services-section {
    width: 100%;
    height: 100vh;
    height: 100svh;
    min-height: 0;
    padding: clamp(24px, 3.5vh, 42px) clamp(32px, 5vw, 80px);
    overflow: hidden;
  }

  .services-section__inner {
    display: grid;
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .services-section__heading {
    margin: 0 0 clamp(14px, 2vh, 24px) 3%;
  }

  .services-section__heading h2 {
    font-size: clamp(44px, 5vw, 68px);
  }

  .services-grid {
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: clamp(7px, 0.8vw, 12px);
  }

  .service-card--wedding {
    grid-area: 1 / 1 / 2 / 6;
  }

  .service-card--pregnancy {
    grid-area: 1 / 6 / 2 / 9;
  }

  .service-card--portrait {
    grid-area: 1 / 9 / 2 / 13;
  }

  .service-card--family {
    grid-area: 2 / 1 / 3 / 4;
  }

  .service-card--couples {
    grid-area: 2 / 4 / 3 / 13;
  }

  .service-card > span {
    right: clamp(12px, 1.4vw, 22px);
    bottom: clamp(12px, 2vh, 22px);
    left: clamp(12px, 1.4vw, 22px);
  }

  .service-card strong,
  .service-card--pregnancy strong,
  .service-card--portrait strong {
    font-size: clamp(28px, 3vw, 46px);
  }

  .service-card small,
  .service-card--pregnancy small,
  .service-card--portrait small {
    font-size: clamp(14px, 1.3vw, 18px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-card img,
  .stories-section__link {
    transition: none;
  }
  .story-card::after,
  .story-card span {
    transition: none;
  }
  .stories-section[data-stories-reveal] .stories-section__heading,
  .stories-section[data-stories-reveal] .story-card,
  .stories-section[data-stories-reveal]
    > .stories-section__inner
    > .stories-section__link {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

/* Shared CTA interaction */
.about-section__link,
.stories-section__link {
  /* --button-sweep: #626c54; */
  --button-sweep: #cec3a8;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 0 0 rgb(28 32 24 / 0%);
  transition:
    color 260ms ease,
    box-shadow 260ms ease,
    letter-spacing 260ms ease,
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-section__link {
  /* --button-sweep: #68735a; */
  --button-sweep: #cec3a8;
}

.about-section__link::before,
.stories-section__link::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: var(--button-sweep);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-section__link::after,
.stories-section__link::after {
  display: inline-block;
  width: 0;
  overflow: hidden;
  vertical-align: -0.13em;
  content: "\00BB";
  font-size: 1.35em;
  line-height: 0.8;
  opacity: 0;
  transform: translateX(-8px);
  transition:
    margin-left 260ms ease,
    opacity 220ms ease,
    transform 260ms ease,
    width 260ms ease;
}

.about-section__link:hover,
.about-section__link:focus-visible,
.about-section__link.is-attention,
.stories-section__link:hover,
.stories-section__link:focus-visible,
.stories-section__link.is-attention {
  color: #fff;
  box-shadow: 0 10px 24px rgb(28 32 24 / 20%);
  letter-spacing: 0.02em;
  transform: translateY(-3px) scale(1.015);
}

.about-section__link:hover::before,
.about-section__link:focus-visible::before,
.about-section__link.is-attention::before,
.stories-section__link:hover::before,
.stories-section__link:focus-visible::before,
.stories-section__link.is-attention::before {
  transform: scaleX(1);
  transform-origin: left center;
}

.about-section__link:hover::after,
.about-section__link:focus-visible::after,
.about-section__link.is-attention::after,
.stories-section__link:hover::after,
.stories-section__link:focus-visible::after,
.stories-section__link.is-attention::after {
  width: 1.05em;
  margin-left: 5px;
  opacity: 1;
  transform: translateX(0);
  vertical-align: -0.13em;
}

.menu-button:hover span:last-child,
.menu-button:focus-visible span:last-child {
  width: 23px;
}

@media (prefers-reduced-motion: reduce) {
  .about-section__link,
  .stories-section__link,
  .about-section__link::before,
  .stories-section__link::before,
  .about-section__link::after,
  .stories-section__link::after {
    transition: none;
  }
}

.approach-section {
  padding: 76px 50px 72px;
  margin-bottom: 32px;
  color: #fff;
  background: #cec3a8;
}

.approach-section__inner {
  width: min(100%, 620px);
  margin: 24px auto;
}

.approach-section__eyebrow {
  margin: 0 0 2px;
  font-size: 14px;
  text-transform: uppercase;
}

.approach-section h2 {
  margin: 0 0 28px -15px;
  color: #52541b;
  font-family: "Instrument Serif", "Bodoni MT", "Times New Roman", serif;
  font-size: clamp(45px, 6vw, 70px);
  font-style: italic;
  font-weight: 500;
  line-height: 0.95;
}

.approach-section__inner > p:not(.approach-section__eyebrow) {
  margin: 0 0 27px;
  font-size: 18px;
  line-height: 1.52;
  white-space: pre-line;
}

.approach-section__inner > p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .approach-section {
    padding: 48px 36px;
  }

  .approach-section__eyebrow {
    font-size: 14px;
  }

  .approach-section h2 {
    margin: 0 0 21px -14px;
    font-size: 36px;
  }

  .approach-section__inner > p:not(.approach-section__eyebrow) {
    margin-bottom: 23px;
    font-size: 18px;
    line-height: 1.52;
  }
}

.reviews-section {
  padding: 42px 32px 22px;
  background: var(--paper);
}

.reviews-section__inner {
  width: min(100%, 350px);
  margin: 0 auto;
}

.reviews-section__heading p {
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
}

.reviews-section__heading h2 {
  margin: -1px 0 0 -8px;
  color: var(--sage);
  font-family: "Instrument Serif", "Bodoni MT", "Times New Roman", serif;
  font-size: 36px;
  font-style: italic;
  font-weight: 500;
  line-height: 0.9;
}

.review-stage {
  /* padding-top: 45px; */
  margin: 96px 0 64px;
}

.review-card {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 460px;
  padding: 52px 30px 20px;
  flex-direction: column;
  justify-content: center;
  border-radius: 15px;
  background: #c9ccbf;
  box-shadow: 0 0 0 rgb(39 43 33 / 0%);
  transform-origin: center;
}

.review-card__portrait {
  position: absolute;
  top: 0;
  left: 50%;
  width: 125px;
  height: 125px;
  border: 8px solid var(--paper);
  border-radius: 50%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  transition:
    opacity 180ms ease,
    transform 360ms ease,
    filter 260ms ease;
}

.review-card blockquote {
  margin: 0;
  padding-top: 32px;
  font-size: 18px;
  line-height: 1.45;
  transition:
    opacity 180ms ease,
    transform 360ms ease,
    filter 260ms ease;
}

.review-card__more {
  align-self: flex-start;
  width: fit-content;
  padding: 3px 0;
  border: 0;
  border-bottom: 1px solid rgb(17 17 15 / 45%);
  margin: 3px 0 0;
  color: inherit;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.review-card__more:hover,
.review-card__more:focus-visible {
  border-color: #fff;
  color: #fff;
  transform: translateY(-1px);
}

.review-card__author {
  margin: 24px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  transition:
    opacity 180ms ease,
    transform 360ms ease,
    filter 260ms ease;
}

.review-card.is-changing.is-next {
  animation: review-card-soft-change 420ms ease;
}

.review-card.is-changing.is-previous {
  animation: review-card-soft-change 420ms ease;
}

@keyframes review-card-soft-change {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  48% {
    opacity: 0.82;
    transform: scale(0.99);
  }
}

.review-card__control {
  position: absolute;
  top: 50%;
  display: grid;
  width: 25px;
  height: 38px;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  font-family: Georgia, serif;
  font-size: 21px;
  cursor: pointer;
  place-items: center;
  transform: translateY(-50%);
}

.review-card__control--previous {
  left: -2px;
}
.review-card__control--next {
  right: -2px;
}

.review-card__control--next.is-attention,
.review-card__control--previous.is-attention {
  animation: review-next-attention 1250ms cubic-bezier(0.22, 1, 0.36, 1);
}

.review-card__control--previous.is-attention {
  animation-name: review-previous-attention;
}

@keyframes review-next-attention {
  0%,
  100% {
    border-radius: 999px;
    background: rgb(255 255 255 / 0%);
    transform: translateY(-50%) translateX(0);
  }
  22% {
    background: rgb(255 255 255 / 13%);
    transform: translateY(-50%) translateX(7px);
  }
  42% {
    background: rgb(255 255 255 / 8%);
    transform: translateY(-50%) translateX(1px);
  }
  64% {
    background: rgb(255 255 255 / 13%);
    transform: translateY(-50%) translateX(7px);
  }
  82% {
    background: rgb(255 255 255 / 5%);
    transform: translateY(-50%) translateX(2px);
  }
}

@keyframes review-previous-attention {
  0%,
  100% {
    border-radius: 999px;
    background: rgb(255 255 255 / 0%);
    transform: translateY(-50%) translateX(0);
  }
  22% {
    background: rgb(255 255 255 / 13%);
    transform: translateY(-50%) translateX(-7px);
  }
  42% {
    background: rgb(255 255 255 / 8%);
    transform: translateY(-50%) translateX(-1px);
  }
  64% {
    background: rgb(255 255 255 / 13%);
    transform: translateY(-50%) translateX(-7px);
  }
  82% {
    background: rgb(255 255 255 / 5%);
    transform: translateY(-50%) translateX(-2px);
  }
}

.reviews-section__link {
  margin: 20px auto 0;
}

.reviews-section[data-reviews-reveal] .reviews-section__heading,
.reviews-section[data-reviews-reveal] .review-stage,
.reviews-section[data-reviews-reveal] .reviews-section__link {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 600ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reviews-section[data-reviews-reveal].is-visible .reviews-section__heading,
.reviews-section[data-reviews-reveal].is-visible .review-stage,
.reviews-section[data-reviews-reveal].is-visible .reviews-section__link {
  opacity: 1;
  transform: translateY(0);
}

.reviews-section[data-reviews-reveal].is-visible .review-stage {
  transition-delay: 100ms;
}
.reviews-section[data-reviews-reveal].is-visible .reviews-section__link {
  transition-delay: 200ms;
}

@media (min-width: 1024px) {
  .reviews-section {
    display: grid;
    width: 100%;
    height: 100vh;
    height: 100svh;
    min-height: 0;
    padding: clamp(30px, 5vh, 56px) clamp(42px, 6vw, 96px);
    overflow: hidden;
    align-items: center;
    grid-template-columns: minmax(250px, 0.72fr) minmax(480px, 1.28fr);
    gap: clamp(48px, 7vw, 112px);
  }

  .reviews-section__heading {
    margin-left: clamp(0px, 3vw, 48px);
    align-self: center;
  }

  .reviews-section__heading p {
    font-size: 14px;
  }

  .reviews-section__heading h2 {
    margin-left: -12px;
    font-size: clamp(54px, 6vw, 84px);
    line-height: 0.92;
  }

  .reviews-section__inner {
    display: flex;
    width: min(100%, 720px);
    height: 100%;
    margin: 0 auto;
    justify-content: center;
    flex-direction: column;
  }

  .review-stage {
    margin: clamp(64px, 9vh, 92px) 0 0;
    padding: 0;
  }

  .review-card {
    min-height: clamp(390px, 58vh, 520px);
    padding: clamp(74px, 11vh, 104px) clamp(58px, 6vw, 94px)
      clamp(30px, 5vh, 48px);
    border-radius: 24px;
  }

  .review-card__portrait {
    width: clamp(112px, 10vw, 142px);
    height: clamp(112px, 10vw, 142px);
    border-width: 6px;
  }

  .review-card blockquote {
    font-size: clamp(17px, 1.45vw, 20px);
  }

  .review-card__author {
    margin-top: clamp(22px, 3vh, 32px);
    font-size: clamp(15px, 1.3vw, 18px);
  }

  .review-card__more {
    font-size: 15px;
  }

  .review-card__control--previous {
    left: clamp(14px, 2vw, 26px);
  }

  .review-card__control--next {
    right: clamp(14px, 2vw, 26px);
  }

  .reviews-section__link {
    margin: clamp(22px, 3.5vh, 36px) auto 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-card,
  .review-card__portrait,
  .review-card blockquote,
  .review-card__author {
    animation: none;
    transition: none;
  }

  .review-card__more {
    transition: none;
  }

  .review-card__control--next.is-attention,
  .review-card__control--previous.is-attention {
    animation: none;
  }
  .reviews-section[data-reviews-reveal] .reviews-section__heading,
  .reviews-section[data-reviews-reveal] .review-stage,
  .reviews-section[data-reviews-reveal] .reviews-section__link {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-footer {
  padding: 45px 20px 36px;
  color: var(--ink);
  background: var(--paper);
  text-align: center;
}

.site-footer__socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.site-footer__socials a {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
  color: var(--sage);
  transform: translateY(-2px);
}

.site-footer__socials svg {
  width: 24px;
  height: 24px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.site-footer__socials .social-icon__dot,
.site-footer__socials .social-icon__fill {
  fill: currentColor;
  stroke: none;
}

.site-footer__socials .social-icon__facebook {
  fill: var(--paper);
  stroke: none;
}

.site-footer p {
  margin: 13px 0 0;
  font-size: 10px;
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__socials a {
    transition: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-section {
  min-height: 92vh;
  padding: 38px 32px 22px;
  background: var(--paper);
}

.contact-section__inner {
  width: min(100%, 420px);
  height: 100%;
  margin: 0 auto;
}
.contact-section__heading {
  /* text-align: center; */
  margin-top: 16px;
}
.contact-section__heading p {
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
}
.contact-section__heading h2 {
  margin: 0;
  color: var(--sage);
  font-family: "Instrument Serif", "Bodoni MT", "Times New Roman", serif;
  font-size: 36px;
  font-style: italic;
  font-weight: 500;
  line-height: 0.9;
}

.contact-form__types {
  display: grid;
  margin: 20px 0 0;
  padding: 0;
  border: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.contact-form__types label {
  cursor: pointer;
}
.contact-form__types input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.contact-form__types label > span {
  display: flex;
  height: 55px;
  border: 1px solid #95a07e;
  border-radius: 8px;
  color: #68705d;
  font-size: 11px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}
.contact-form__types small {
  display: block;
  margin-top: 2px;
  font-size: 14px;
}
.contact-form__types svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-form__type-icon {
  width: 27px;
  height: 21px;
  object-fit: contain;
  transition: filter 180ms ease;
}
.contact-form__types input:checked + span .contact-form__type-icon {
  filter: invert(1);
}
.contact-form__types input:checked + span {
  color: #fff;
  background: #8e9979;
}

.contact-form__types.is-selection-tour input:checked + span {
  color: #68705d;
  background: transparent;
}

.contact-form__types.is-selection-tour
  input:checked
  + span
  .contact-form__type-icon {
  filter: none;
}

.contact-form__types.is-selection-tour label > span.is-tour-active {
  color: #fff;
  background: #8e9979;
  box-shadow: 0 7px 18px rgb(74 84 64 / 16%);
  transform: translateY(-2px) scale(1.025);
}

.contact-form__types.is-selection-tour
  label
  > span.is-tour-active
  .contact-form__type-icon {
  filter: invert(1);
}

.contact-form__types input:checked + span.is-selection-cue {
  animation: selection-cue 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes selection-cue {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgb(142 153 121 / 0%);
    transform: scale(1);
  }
  45% {
    box-shadow: 0 0 0 7px rgb(142 153 121 / 18%);
    transform: scale(1.045);
  }
}
.contact-form__types input:focus-visible + span,
.contact-form__types label:hover > span {
  transform: translateY(-2px);
  outline: 2px solid rgb(117 128 101 / 30%);
  outline-offset: 2px;
}

.contact-form__intro {
  margin: 32px 0 20px;
  text-align: center;
}
.contact-form__intro p {
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
}
.contact-form__intro strong {
  display: block;
  color: var(--sage);
  /* font-family: "Instrument Serif", "Bodoni MT", "Times New Roman", serif; */
  font-size: 24px;
  /* font-style: italic; */
  font-weight: 400;
}

.contact-form__field {
  display: flex;
  min-height: 38px;
  margin-top: 9px;
  padding: 0 11px;
  border: 1px solid #8e9979;
  border-radius: 10px;
  color: #8e9979;
  align-items: center;
  gap: 9px;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.contact-form__field:focus-within {
  border-color: #6f795f;
  animation: field-focus-pulse 480ms ease-out;
}

@keyframes field-focus-pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(117 128 101 / 28%);
  }
  55% {
    box-shadow: 0 0 0 4px rgb(117 128 101 / 16%);
  }
  100% {
    box-shadow: 0 0 0 2px rgb(117 128 101 / 8%);
  }
}
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 10px 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 14px;
}
.contact-form__field textarea {
  height: 76px;
  resize: vertical;
}
.contact-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    color 220ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-form__field:focus-within .contact-icon {
  color: #68735a;
}
.contact-form__field--message {
  align-items: flex-start;
}
.contact-form__field--message > .contact-icon {
  margin-top: 10px;
}

.contact-form__consent {
  display: flex;
  margin: 13px 10px 0;
  color: #777b70;
  font-size: 14px;
  align-items: center;
  gap: 6px;
}
.contact-form__consent input {
  width: 13px;
  height: 13px;
  margin: 0;
  accent-color: #8e9979;
}
.contact-form__submit {
  min-width: 167px;
  border: 0;
  cursor: pointer;
}
.contact-form__note {
  margin: 12px 0 0;
  color: #777b70;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

.contact-details-section {
  display: flow-root;
  background: var(--paper);
}

.contact-details {
  width: min(100%, 360px);
  margin: 52px auto 0;
  text-align: center;
}

.contact-details__item {
  position: relative;
  padding: 0 12px 45px;
}

.contact-details__item:last-child {
  padding-bottom: 0;
}

.contact-details__item::after {
  position: absolute;
  right: 50%;
  bottom: 22px;
  width: 58px;
  height: 1px;
  background: #a8ae9d;
  content: "";
  transform: translateX(50%);
}

.contact-details__item:last-child::after {
  display: none;
}

.contact-details h3 {
  margin: 0 0 7px;
  color: #6f795f;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact-details a,
.contact-details p {
  margin: 0;
  color: var(--ink);
  font-family: Jost, "Bodoni MT", "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.4;
  text-decoration: none;
}

.contact-details a {
  transition: color 180ms ease;
}
.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--sage);
}
.contact-details p + p {
  margin-top: 5px;
  color: var(--sage);
  font-size: 15px;
}

.contact-section[data-contact-reveal] .contact-section__heading,
.contact-section[data-contact-reveal] .contact-form__types,
.contact-section[data-contact-reveal] .contact-form__intro,
.contact-section[data-contact-reveal] .contact-form__field,
.contact-section[data-contact-reveal] .contact-form__consent,
.contact-section[data-contact-reveal] .contact-form__submit,
.contact-section[data-contact-reveal] .contact-form__note,
.contact-details[data-contact-details-reveal] .contact-details__item {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 520ms ease,
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-section[data-contact-reveal].is-visible .contact-section__heading,
.contact-section[data-contact-reveal].is-visible .contact-form__types,
.contact-section[data-contact-reveal].is-visible .contact-form__intro,
.contact-section[data-contact-reveal].is-visible .contact-form__field,
.contact-section[data-contact-reveal].is-visible .contact-form__consent,
.contact-section[data-contact-reveal].is-visible .contact-form__submit,
.contact-section[data-contact-reveal].is-visible .contact-form__note,
.contact-details[data-contact-details-reveal].is-visible
  .contact-details__item {
  opacity: 1;
  transform: translateY(0);
}

.contact-section.is-visible .contact-form__types {
  transition-delay: 70ms;
}
.contact-section.is-visible .contact-form__intro {
  transition-delay: 130ms;
}
.contact-section.is-visible .contact-form__field:nth-of-type(1) {
  transition-delay: 180ms;
}
.contact-section.is-visible .contact-form__field:nth-of-type(2) {
  transition-delay: 220ms;
}
.contact-section.is-visible .contact-form__field:nth-of-type(3) {
  transition-delay: 260ms;
}
.contact-section.is-visible .contact-form__field:nth-of-type(4) {
  transition-delay: 300ms;
}
.contact-section.is-visible .contact-form__consent {
  transition-delay: 340ms;
}
.contact-section.is-visible .contact-form__submit {
  transition-delay: 380ms;
}
.contact-section.is-visible .contact-form__note {
  transition-delay: 420ms;
}
.contact-details.is-visible .contact-details__item:nth-child(2) {
  transition-delay: 70ms;
}
.contact-details.is-visible .contact-details__item:nth-child(3) {
  transition-delay: 140ms;
}
.contact-details.is-visible .contact-details__item:nth-child(4) {
  transition-delay: 210ms;
}

@media (max-width: 1023px) {
  .contact-section {
    padding: 54px 32px 0;
  }

  .contact-section__heading {
    margin-bottom: 48px;
  }
  .contact-section__heading p {
    font-size: 14px;
  }
  .contact-section__heading h2 {
    font-size: 36px;
  }
  .contact-form__types {
    margin-top: 20px;
    gap: 7px;
  }
  .contact-form__types label > span {
    height: 69px;
    font-size: 12px;
  }
  .contact-form__intro {
    margin: 40px 0 25px;
  }
  .contact-form__field {
    min-height: 46px;
    margin-top: 12px;
    padding-right: 14px;
    padding-left: 14px;
    border-radius: 14px;
  }
  .contact-form__field textarea {
    height: 94px;
  }
  .contact-form__consent {
    margin-top: 17px;
  }
  .contact-form__submit {
    min-width: 210px;
    margin-top: 22px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .contact-form__note {
    margin-top: 16px;
  }

  .contact-details {
    margin-top: 46px;
  }
  .contact-details__item {
    padding-right: 8px;
    padding-bottom: 42px;
    padding-left: 8px;
  }
  .contact-details__item:last-child {
    padding-bottom: 0;
  }
  .contact-details h3 {
    font-size: 14px;
  }
  .contact-details a,
  .contact-details p {
    font-size: 18px;
  }
  .contact-details p + p {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .contact-section {
    width: 100%;
    height: 100vh;
    height: 100svh;
    min-height: 0;
    padding: clamp(28px, 5vh, 54px) clamp(38px, 5vw, 80px);
    overflow: hidden;
  }

  .contact-section__inner {
    display: grid;
    width: min(100%, 1200px);
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr);
  }

  .contact-section__heading {
    margin: 0 0 clamp(18px, 3vh, 30px);
    grid-column: 1;
    grid-row: 1;
  }

  .contact-section__heading p {
    font-size: 14px;
  }

  .contact-section__heading h2 {
    font-size: clamp(44px, 5vw, 66px);
  }

  .contact-form {
    display: grid;
    width: min(100%, 1120px);
    min-width: 0;
    min-height: 0;
    margin: 0 auto;
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: minmax(280px, 0.82fr) minmax(390px, 1.18fr);
    grid-template-rows:
      repeat(3, minmax(48px, auto)) minmax(105px, 1fr)
      auto auto auto;
    column-gap: clamp(24px, 3vw, 48px);
    row-gap: clamp(8px, 1.2vh, 13px);
  }

  .contact-form__types {
    margin: 0;
    align-self: start;
    grid-column: 1;
    grid-row: 1 / 4;
    gap: clamp(7px, 0.8vw, 11px);
  }

  .contact-form__types label > span {
    height: clamp(66px, 9vh, 82px);
    font-size: 14px;
  }

  .contact-form__intro {
    margin: 0;
    align-self: center;
    grid-column: 1;
    grid-row: 4;
  }

  .contact-form__field {
    min-height: 48px;
    margin: 0;
    grid-column: 2;
  }

  .contact-form > .contact-form__field:nth-of-type(1) {
    grid-row: 1;
  }

  .contact-form > .contact-form__field:nth-of-type(2) {
    grid-row: 2;
  }

  .contact-form > .contact-form__field:nth-of-type(3) {
    grid-row: 3;
  }

  .contact-form > .contact-form__field:nth-of-type(4) {
    grid-row: 4;
  }

  .contact-form__field textarea {
    height: 100%;
    min-height: 88px;
  }

  .contact-form__consent {
    margin: 0 8px;
    grid-column: 2;
    grid-row: 5;
  }

  .contact-form__submit {
    margin: 0 auto;
    align-self: center;
    grid-column: 2;
    grid-row: 6;
  }

  .contact-form__note {
    margin: 0;
    align-self: center;
    grid-column: 2;
    grid-row: 7;
  }

  .contact-details-section {
    padding: clamp(64px, 8vh, 96px) clamp(42px, 6vw, 96px);
  }

  .contact-details {
    display: grid;
    width: min(100%, 1200px);
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(34px, 5vh, 52px) 0;
    border-top: 1px solid #a8ae9d;
    border-bottom: 1px solid #a8ae9d;
    text-align: left;
    grid-template-columns: 1.25fr 0.85fr 1fr 1.4fr;
    align-items: stretch;
  }

  .contact-details__item {
    display: flex;
    padding: 0 clamp(22px, 2.5vw, 38px);
    justify-content: center;
    flex-direction: column;
  }

  .contact-details__item:first-child {
    padding-left: 0;
  }

  .contact-details__item:last-child {
    padding-right: 0;
  }

  .contact-details__item + .contact-details__item {
    border-left: 1px solid rgb(168 174 157 / 65%);
  }

  .contact-details__item::after {
    display: none;
  }

  .contact-details h3 {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .contact-details a,
  .contact-details p {
    font-size: clamp(15px, 1.25vw, 18px);
    overflow-wrap: anywhere;
  }

  .contact-details p + p {
    font-size: clamp(14px, 1.1vw, 16px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-form__types label > span {
    animation: none;
    transition: none;
  }
  .contact-details a {
    transition: none;
  }
  .contact-form__field,
  .contact-icon {
    animation: none;
    transition: none;
  }
  .contact-section[data-contact-reveal] .contact-section__heading,
  .contact-section[data-contact-reveal] .contact-form__types,
  .contact-section[data-contact-reveal] .contact-form__intro,
  .contact-section[data-contact-reveal] .contact-form__field,
  .contact-section[data-contact-reveal] .contact-form__consent,
  .contact-section[data-contact-reveal] .contact-form__submit,
  .contact-section[data-contact-reveal] .contact-form__note,
  .contact-details[data-contact-details-reveal] .contact-details__item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Consistent CTA sizing */
.about-section__link,
.stories-section__link {
  padding: 15px 29px;
  font-size: 17px;
}

@media (max-width: 1023px) {
  .about-section__link,
  .stories-section__link {
    padding: 12px 24px;
    font-size: 18px;
  }
}

.scroll-top {
  position: fixed;
  z-index: 9;
  right: clamp(16px, 3vw, 30px);
  bottom: max(18px, env(safe-area-inset-bottom));
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  visibility: hidden;
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 50%;
  color: #fff;
  background: rgb(117 128 101 / 68%);
  box-shadow: 0 8px 24px rgb(27 31 24 / 16%);
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
  transform: translateY(12px);
  backdrop-filter: blur(10px);
  place-items: center;
  transition:
    opacity 240ms ease,
    transform 300ms ease,
    visibility 240ms ease,
    background-color 220ms ease;
}

.scroll-top.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus-visible {
  background: rgb(104 115 90 / 25%);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 599px) {
  .scroll-top {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top {
    transition: none;
  }
}
