:root {
  color-scheme: light;
  --paper: #f3ebdd;
  --paper-light: #fbf7ef;
  --ink: #2b211b;
  --muted: #817467;
  --brick: #8a4b36;
  --forest: #34483a;
  --amber: #d29a4a;
  --line: rgba(43, 33, 27, 0.2);
  --page-pad: 20px;
  --section-space: 92px;
  --content: 1180px;
  --serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, serif;
  --sans: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.24;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.09'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
}

::selection {
  background: var(--brick);
  color: var(--paper-light);
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 8px 13px;
  background: var(--paper-light);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: max(10px, env(safe-area-inset-top)) var(--page-pad) 10px;
  color: var(--paper-light);
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(43, 33, 27, 0.1);
  background: rgba(243, 235, 221, 0.9);
  color: var(--ink);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.brand__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
  transform: rotate(-2deg);
}

.visit-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.visit-link span {
  font-size: 17px;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  background: #241b16;
  color: var(--paper-light);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: 50% 44%;
  animation: hero-settle 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__shade {
  background:
    linear-gradient(180deg, rgba(35, 25, 19, 0.35) 0%, rgba(35, 25, 19, 0.04) 34%, rgba(35, 25, 19, 0.1) 52%, rgba(35, 25, 19, 0.82) 100%),
    linear-gradient(90deg, rgba(35, 25, 19, 0.26), transparent 70%);
}

.hero__content {
  position: absolute;
  right: var(--page-pad);
  bottom: 72px;
  left: var(--page-pad);
  z-index: 2;
  max-width: 580px;
}

.location-line,
.section-index,
.tiny-label {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.location-line {
  margin-bottom: 14px;
  color: rgba(251, 247, 239, 0.82);
}

.hero h1 {
  max-width: 360px;
  font-size: clamp(44px, 13.2vw, 58px);
  line-height: 1.07;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero__lead {
  max-width: 270px;
  margin-top: 18px;
  color: rgba(251, 247, 239, 0.9);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.7;
}

.hero__signature {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.hero__signature::before {
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero__signature span {
  color: rgba(251, 247, 239, 0.55);
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0.16em;
}

.scroll-thread {
  position: absolute;
  right: 18px;
  bottom: 0;
  z-index: 3;
  display: flex;
  height: 150px;
  align-items: center;
  gap: 9px;
  writing-mode: vertical-rl;
}

.scroll-thread span {
  color: rgba(251, 247, 239, 0.68);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.scroll-thread i {
  display: block;
  width: 1px;
  height: 46px;
  overflow: hidden;
  background: rgba(251, 247, 239, 0.3);
}

.scroll-thread i::after {
  display: block;
  width: 1px;
  height: 22px;
  background: var(--paper-light);
  content: "";
  animation: thread-down 2s ease-in-out infinite;
}

@keyframes hero-settle {
  from { transform: scale(1.045); }
  to { transform: scale(1); }
}

@keyframes thread-down {
  0% { transform: translateY(-24px); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(48px); opacity: 0; }
}

.section {
  width: min(100%, var(--content));
  margin-inline: auto;
  padding: var(--section-space) var(--page-pad) 0;
}

.pause-section {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--paper-light);
}

.pause-section__copy {
  position: relative;
  z-index: 2;
  width: min(100%, 1180px);
  margin-inline: auto;
  padding: 112px var(--page-pad) 150px;
}

.section-index {
  margin-bottom: 18px;
  color: var(--brick);
}

.pause-words {
  font-family: var(--serif);
  font-size: clamp(22px, 6.2vw, 28px);
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.pause-words strong {
  position: relative;
  font-weight: 600;
}

.pause-words strong::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 5px;
  background: url("data:image/svg+xml,%3Csvg width='200' height='7' viewBox='0 0 200 7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4c37-3 78 2 115-1 32-2 56 1 83-1' fill='none' stroke='%238a4b36' stroke-width='1.4' opacity='.75'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  content: "";
}

.branch {
  position: absolute;
  max-width: 100%;
  pointer-events: none;
}

.branch svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.branch path {
  stroke: rgba(52, 72, 58, 0.45);
  stroke-width: 1.35;
  stroke-linecap: round;
}

.branch .branch__bird {
  fill: var(--brick);
  stroke: none;
}

.branch--pause {
  right: max(0px, env(safe-area-inset-right));
  bottom: 34px;
  width: 128px;
  height: 240px;
}

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

.section-heading h2,
.reading__heading h2 {
  font-size: clamp(31px, 8vw, 42px);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.story {
  padding-top: 100px;
}

.story__composition {
  position: relative;
}

.story__house {
  width: calc(100% - 34px);
}

.story__house img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 44%;
}

.story__house figcaption {
  width: 85%;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.story-note {
  position: relative;
  width: 100%;
  margin: 28px 0 0;
  padding: 32px 26px 38px 32px;
  overflow: hidden;
  background: #e9ddcb;
  box-shadow: 0 10px 28px rgba(43, 33, 27, 0.07);
}

.story-note::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 1px;
  background: rgba(138, 75, 54, 0.24);
  content: "";
}

.story-note p {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.9;
}

.story-note__lead {
  color: var(--brick);
  font-family: var(--serif);
  font-size: 18px !important;
  font-weight: 600;
  line-height: 1.75 !important;
}

.story-note .story-note__ending {
  margin: 26px 0 0;
  font-family: var(--serif);
  font-size: 17px;
}

.kite-photo {
  position: relative;
  width: calc(100% + var(--page-pad) * 2);
  margin: 68px calc(var(--page-pad) * -1) 0;
  overflow: hidden;
}

.kite-photo img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 55% 50%;
  filter: brightness(0.88) saturate(0.9);
}

.kite-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.space {
  padding-top: 112px;
}

.section-heading--right {
  margin-left: auto;
  text-align: right;
}

.space-moment {
  margin-top: 64px;
}

.space-moment:first-of-type {
  margin-top: 0;
}

.photo-frame {
  overflow: hidden;
}

.photo-frame img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.space-moment--tatami .photo-frame {
  width: calc(100% + var(--page-pad));
  margin-left: calc(var(--page-pad) * -1);
}

.space-moment--tatami img {
  object-position: 58% 50%;
}

.space-moment--sofa .photo-frame {
  width: calc(100% + var(--page-pad));
}

.space-moment--sofa img {
  object-position: 57% 50%;
}

.space-moment__words {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 20px;
}

.space-moment__words span {
  color: var(--brick);
}

.space-moment--sofa .space-moment__words {
  text-align: right;
}

.lamp-moment {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(132px, 44%);
  align-items: center;
  gap: 20px;
  margin-top: 78px;
}

.lamp-moment__copy p {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.75;
}

.tiny-label {
  color: var(--brick);
}

.lamp-moment__photo {
  position: relative;
}

.lamp-moment__photo::before {
  position: absolute;
  top: -14px;
  right: 14px;
  left: -14px;
  z-index: -1;
  height: 100%;
  border: 1px solid rgba(138, 75, 54, 0.34);
  content: "";
}

.lamp-moment__photo img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 27% 50%;
}

.reading {
  padding-top: 130px;
}

.reading__heading {
  margin-bottom: 38px;
}

.reading__heading h2 em {
  color: var(--brick);
  font-style: normal;
}

.reading__photo {
  position: relative;
  z-index: 2;
  width: calc(100% + var(--page-pad) * 2);
  margin-left: calc(var(--page-pad) * -1);
}

.reading__photo img {
  width: 100%;
  height: 72svh;
  max-height: 760px;
  object-fit: cover;
  object-position: 50% 55%;
}

.life {
  position: relative;
  margin-top: -24px;
  padding-top: 24px;
  overflow: hidden;
  background: var(--forest);
  color: var(--paper-light);
}

.life::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 1px;
  background: var(--amber);
  content: "";
}

.life__inner {
  padding-top: 96px;
  padding-bottom: 110px;
}

.section-index--light {
  color: #dfbc7c;
}

.life .section-heading h2 {
  color: var(--paper-light);
}

.life__intro {
  max-width: 270px;
  margin-top: 22px;
  color: rgba(251, 247, 239, 0.7);
  font-family: var(--serif);
  font-size: 15px;
}

.cat-collage {
  position: relative;
  min-height: 620px;
  margin-top: 54px;
}

.cat-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-photo--main {
  width: calc(100% + var(--page-pad));
  margin-left: calc(var(--page-pad) * -1);
}

.cat-photo--main img {
  aspect-ratio: 3 / 2;
  object-position: 55% 50%;
}

.cat-photo--side {
  position: absolute;
  right: -1px;
  bottom: 0;
  z-index: 2;
  width: 58%;
  border: 8px solid var(--forest);
}

.cat-photo--side img {
  aspect-ratio: 4 / 5;
  object-position: 50% 48%;
}

.cat-note {
  position: absolute;
  bottom: 122px;
  left: 6px;
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.55;
  transform: rotate(-5deg);
}

.cat-note span {
  color: #dfbc7c;
  font-size: 20px;
}

.drinks {
  width: 100%;
  max-width: none;
  padding-top: 110px;
  padding-right: 0;
  padding-left: 0;
  overflow: hidden;
}

.drinks > .section-heading {
  width: min(calc(100% - var(--page-pad) * 2), 1180px);
  margin-right: auto;
  margin-left: auto;
}

.drink-rail {
  display: grid;
  grid-auto-columns: 70vw;
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  padding: 0 var(--page-pad) 20px;
  scroll-padding-left: var(--page-pad);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.drink-rail::-webkit-scrollbar {
  display: none;
}

.drink-card {
  scroll-snap-align: start;
}

.drink-card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.drink-card:first-child img {
  object-position: 50% 55%;
  filter: saturate(0.82);
}

.drink-card:nth-child(2) img {
  object-position: 50% 38%;
}

.drink-card figcaption {
  display: flex;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 14px;
}

.drink-card figcaption span {
  color: var(--brick);
  font-family: var(--sans);
  font-size: 10px;
}

.drink-footnote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px var(--page-pad) 0;
  color: var(--muted);
  text-align: center;
}

.drink-footnote p {
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.drink-footnote > span {
  font-size: 19px;
}

.visit {
  padding-top: 128px;
  padding-bottom: 112px;
}

.sign-photo {
  position: relative;
  width: calc(100% + var(--page-pad) * 2);
  margin-left: calc(var(--page-pad) * -1);
}

.sign-photo img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 50%;
}

.sign-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(35, 26, 21, 0.64));
  content: "";
}

.sign-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 20px;
  z-index: 2;
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.06em;
  transform: rotate(-3deg);
}

.visit-info {
  position: relative;
  z-index: 2;
  margin: -1px 0 0;
  padding: 42px 24px 32px;
  background: var(--paper-light);
  border-bottom: 1px solid var(--line);
}

.visit-info__intro {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.visit-info__intro h3 {
  margin-top: 9px;
  font-size: 27px;
}

.visit-info dl > div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.visit-info dt {
  color: var(--brick);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.visit-info dd {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.7;
}

.visit-info dd span {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 11px;
}

.visit-info__pending {
  margin-top: 24px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.arrival-photo {
  position: relative;
  width: calc(100% + var(--page-pad) * 2);
  margin: 72px calc(var(--page-pad) * -1) 0;
}

.arrival-photo img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.88);
}

.arrival-photo figcaption {
  margin: 14px var(--page-pad) 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 13px;
}

.site-footer {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px var(--page-pad) max(42px, env(safe-area-inset-bottom));
  overflow: hidden;
  background: var(--ink);
  color: var(--paper-light);
  text-align: center;
}

.nest-mark {
  position: relative;
  display: grid;
  width: 150px;
  height: 102px;
  place-items: center;
}

.nest-mark svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nest-mark path {
  stroke: rgba(210, 154, 74, 0.78);
  stroke-width: 1.2;
  stroke-linecap: round;
}

.nest-mark span {
  position: relative;
  z-index: 2;
  margin-top: -10px;
  font-family: var(--serif);
  font-size: 38px;
}

.site-footer__wish {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.6;
}

.site-footer__brand {
  margin-top: 32px;
  color: rgba(251, 247, 239, 0.5);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.site-footer > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  margin-top: 26px;
  border-bottom: 1px solid rgba(251, 247, 239, 0.35);
  color: rgba(251, 247, 239, 0.7);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 360px) {
  :root {
    --page-pad: 16px;
  }

  .brand__name {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .hero h1 {
    font-size: 42px;
  }

  .pause-words {
    font-size: 21px;
  }

  .cat-collage {
    min-height: 550px;
  }
}

@media (min-width: 700px) {
  :root {
    --page-pad: 36px;
    --section-space: 120px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero__content {
    bottom: 90px;
    left: max(var(--page-pad), calc((100vw - 1180px) / 2));
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero__lead {
    max-width: 380px;
    font-size: 19px;
  }

  .pause-section__copy {
    padding-top: 150px;
  }

  .pause-words {
    font-size: 34px;
  }

  .branch--pause {
    right: 8%;
    width: 190px;
    height: 330px;
  }

  .story__composition {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
    align-items: center;
  }

  .story__house {
    width: 100%;
  }

  .story-note {
    z-index: 2;
    width: calc(100% + 40px);
    margin: 0 0 0 -40px;
    padding: 46px 44px 48px;
    overflow: visible;
    transform: rotate(0.5deg);
  }

  .kite-photo {
    width: 78%;
    margin: 92px 0 0 auto;
  }

  .space-moment {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    align-items: end;
    gap: 32px;
  }

  .space-moment--sofa {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .space-moment--sofa .photo-frame {
    grid-column: 2;
  }

  .space-moment--sofa .space-moment__words {
    grid-row: 1;
    text-align: left;
  }

  .space-moment__words {
    margin-bottom: 24px;
    font-size: 23px;
  }

  .lamp-moment {
    width: 66%;
    margin-right: 5%;
    margin-left: auto;
  }

  .reading__photo {
    width: 82%;
    margin-left: auto;
  }

  .reading__photo img {
    height: 780px;
  }

  .cat-collage {
    min-height: 760px;
  }

  .cat-photo--main {
    width: 78%;
    margin-left: 0;
  }

  .cat-photo--side {
    right: 7%;
    width: 42%;
  }

  .cat-note {
    bottom: 160px;
    left: 22%;
  }

  .drink-rail {
    grid-auto-columns: min(500px, 48vw);
    gap: 24px;
    padding-left: max(var(--page-pad), calc((100vw - 1180px) / 2));
    scroll-padding-left: max(var(--page-pad), calc((100vw - 1180px) / 2));
  }

  .drink-footnote {
    display: none;
  }

  .sign-photo {
    width: 64%;
    margin-left: 0;
  }

  .visit-info {
    width: 68%;
    margin: -140px 0 0 auto;
    padding: 50px;
  }

  .arrival-photo {
    width: 80%;
    margin: 100px auto 0;
  }
}

@media (min-width: 1024px) {
  :root {
    --page-pad: 48px;
    --section-space: 150px;
  }

  .site-header {
    padding-right: max(var(--page-pad), calc((100vw - 1180px) / 2));
    padding-left: max(var(--page-pad), calc((100vw - 1180px) / 2));
  }

  .hero__image {
    object-position: center 45%;
  }

  .hero__content {
    bottom: 11vh;
  }

  .hero h1 {
    font-size: 86px;
  }

  .section-heading h2,
  .reading__heading h2 {
    font-size: 50px;
  }

  .pause-section {
    min-height: 780px;
  }

  .pause-section__copy {
    padding-top: 190px;
  }

  .pause-words {
    font-size: 40px;
  }

  .story > .section-heading {
    margin-left: 7%;
  }

  .story__composition {
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.68fr);
  }

  .story-note {
    margin-left: -70px;
    padding: 58px 56px;
  }

  .story-note p {
    font-size: 16px;
  }

  .kite-photo {
    width: 70%;
  }

  .space-moment {
    margin-top: 110px;
  }

  .space-moment .photo-frame {
    width: 100%;
    margin-left: 0;
  }

  .space-moment--tatami {
    width: 88%;
  }

  .space-moment--sofa {
    width: 88%;
    margin-left: auto;
  }

  .lamp-moment {
    width: 54%;
    margin-top: 130px;
  }

  .reading {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    align-items: start;
    gap: 70px;
  }

  .reading__heading {
    position: sticky;
    top: 130px;
    padding-top: 70px;
  }

  .reading__photo {
    width: 100%;
  }

  .life__inner {
    padding-top: 140px;
    padding-bottom: 160px;
  }

  .life .section-heading {
    margin-left: 8%;
  }

  .cat-collage {
    min-height: 900px;
  }

  .cat-photo--main {
    width: 72%;
  }

  .cat-photo--side {
    width: 37%;
  }

  .cat-note {
    bottom: 210px;
    left: 41%;
  }

  .drinks > .section-heading {
    padding-right: 48px;
    padding-left: 48px;
  }

  .visit > .section-heading {
    margin-left: 8%;
  }

  .sign-photo {
    width: 58%;
  }

  .visit-info {
    width: 61%;
    margin-top: -210px;
    padding: 60px;
  }

  .visit-info dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
  }

  .visit-info dl > div {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .arrival-photo {
    width: 82%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
