:root {
  --ink: #242321;
  --cream: #f7f3ec;
  --paper: #fffdf9;
  --taupe: #b8ad9f;
  --taupe-light: #ded7cb;
  --blush: #c9a6a0;
  --blush-light: #eadbd7;
  --sage: #59635b;
  --sage-dark: #414a43;
  --line: rgba(36, 35, 33, 0.2);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Arial, Helvetica, sans-serif;
  --shell: min(1180px, calc(100% - 48px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blush);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.15rem, 7vw, 6.7rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.9rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  letter-spacing: -0.025em;
}

address {
  font-style: normal;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.preview-bar {
  color: var(--ink);
  background: var(--blush);
  border-bottom: 1px solid rgba(36, 35, 33, 0.25);
}

.preview-bar p {
  display: flex;
  width: var(--shell);
  min-height: 34px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  width: var(--shell);
  min-height: 116px;
  margin-inline: auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  width: fit-content;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 500;
  letter-spacing: 0.29em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  gap: clamp(22px, 4vw, 54px);
  justify-content: center;
}

.primary-nav a,
.header-contact {
  position: relative;
  padding-block: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a::after,
.header-contact::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after,
.header-contact:hover::after,
.header-contact:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  justify-self: end;
}

.eyebrow {
  margin-bottom: 25px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.light-eyebrow {
  color: #ddd7ce;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(34px, 6vw, 92px);
  padding-block: clamp(58px, 8vw, 112px) clamp(84px, 10vw, 150px);
  align-items: center;
}

.hero-copy h1 {
  max-width: 780px;
  margin-bottom: 32px;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 38px;
  color: #4d4a46;
  font-family: var(--serif);
  font-size: clamp(1.16rem, 1.7vw, 1.43rem);
  line-height: 1.48;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 14px 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--ink);
  background: transparent;
}

.button-light {
  color: var(--ink);
  background: var(--cream);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--cream);
  background: transparent;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1rem;
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -2px);
}

.text-link-light {
  color: var(--cream);
}

.hero-facts {
  display: flex;
  gap: 45px;
  margin-block: 58px 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.hero-facts div {
  min-width: 128px;
}

.hero-facts dt {
  margin-bottom: 4px;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.hero-figure {
  position: relative;
  margin: 0;
  padding: 20px 20px 0 0;
}

.hero-figure::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 56%;
  height: 58%;
  background: var(--blush-light);
  content: "";
}

.hero-figure::after {
  position: absolute;
  right: -15px;
  bottom: 52px;
  width: 100px;
  height: 100px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  content: "";
}

.hero-figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 63% center;
  filter: saturate(0.83) contrast(0.96);
}

.hero-figure figcaption {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.collection {
  padding-block: clamp(90px, 10vw, 150px);
  border-top: 1px solid var(--line);
}

.section-heading {
  margin-bottom: clamp(48px, 6vw, 82px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(250px, 0.65fr);
  gap: clamp(32px, 8vw, 110px);
  align-items: end;
}

.split-heading h2 {
  max-width: 860px;
  margin-bottom: 0;
}

.split-heading > p {
  max-width: 390px;
  margin-bottom: 5px;
  color: #56524e;
  font-family: var(--serif);
  font-size: 1.14rem;
  line-height: 1.55;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.category-card {
  position: relative;
  display: grid;
  min-height: 390px;
  padding: clamp(25px, 4vw, 46px);
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
  transition: color 220ms ease, background 220ms ease;
}

.category-card::before,
.category-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
  transition: transform 300ms ease;
}

.category-card-featured::before {
  right: -15%;
  bottom: -36%;
  width: 70%;
  height: 100%;
  background: var(--sage);
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
}

.category-card-featured::after {
  right: -7%;
  bottom: -20%;
  width: 64%;
  height: 75%;
  border: 1px solid rgba(247, 243, 236, 0.75);
  transform: rotate(-8deg);
}

.category-card-blush {
  background: var(--blush-light);
}

.category-card-blush::before {
  right: -25px;
  bottom: -52px;
  width: 250px;
  height: 220px;
  background: var(--paper);
  box-shadow: -18px -18px 0 var(--blush), -36px -36px 0 #d2bdb7;
  transform: rotate(8deg);
}

.category-card-paper {
  background-color: var(--taupe-light);
  background-image: linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 18px 18px;
}

.category-card-paper::before {
  right: 12%;
  bottom: -48px;
  width: 255px;
  height: 210px;
  background: var(--paper);
  box-shadow: 16px -16px 0 var(--sage), 32px -32px 0 var(--blush);
  transform: rotate(-6deg);
}

.category-card-line::before {
  right: 35px;
  bottom: 8px;
  width: 215px;
  height: 215px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.category-card-line::after {
  right: 2px;
  bottom: -24px;
  width: 215px;
  height: 215px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.category-card:hover::before,
.category-card:focus-visible::before {
  transform: translate(-7px, -7px) rotate(-2deg);
}

.category-card-blush:hover::before,
.category-card-blush:focus-visible::before {
  transform: translate(-7px, -7px) rotate(5deg);
}

.category-card-paper:hover::before,
.category-card-paper:focus-visible::before {
  transform: translate(-7px, -7px) rotate(-9deg);
}

.category-number,
.category-name,
.category-note,
.category-arrow {
  position: relative;
  z-index: 1;
}

.category-number {
  align-self: start;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.category-name {
  max-width: 360px;
  margin-top: 45px;
  align-self: center;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.category-note {
  max-width: 250px;
  margin-top: 48px;
  align-self: end;
  font-size: 0.75rem;
  line-height: 1.45;
}

.category-arrow {
  position: absolute;
  top: 32px;
  right: 35px;
  font-size: 1.25rem;
}

.collection-link-row {
  display: flex;
  padding-top: 38px;
  justify-content: flex-end;
}

.editorial-feature {
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1.12fr);
  min-height: 770px;
  background: var(--sage-dark);
}

.feature-image {
  min-height: 650px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(0.98);
}

.feature-copy {
  position: relative;
  display: flex;
  max-width: 780px;
  padding: clamp(60px, 9vw, 140px);
  flex-direction: column;
  justify-content: center;
  color: var(--cream);
}

.feature-copy::before {
  position: absolute;
  top: 8%;
  right: 9%;
  width: 72px;
  height: 72px;
  border-top: 1px solid rgba(247, 243, 236, 0.4);
  border-right: 1px solid rgba(247, 243, 236, 0.4);
  content: "";
}

.feature-index {
  margin-bottom: 55px;
  color: var(--blush);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.feature-index span {
  padding-inline: 8px;
  color: var(--cream);
}

.feature-copy h2 {
  max-width: 700px;
  margin-bottom: 35px;
}

.feature-copy > p:not(.eyebrow):not(.feature-index) {
  max-width: 560px;
  margin-bottom: 40px;
  color: #e6e0d7;
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.58;
}

.feature-copy .button {
  align-self: flex-start;
}

.about {
  display: grid;
  grid-template-columns: minmax(270px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(45px, 10vw, 140px);
  padding-block: clamp(100px, 12vw, 190px);
  align-items: center;
}

.about-mark {
  display: flex;
  flex-direction: column;
  color: var(--taupe);
  font-family: var(--serif);
  font-size: clamp(6rem, 16vw, 12.8rem);
  letter-spacing: -0.09em;
  line-height: 0.58;
  text-align: right;
}

.about-mark span:last-child {
  color: var(--blush);
  transform: translateX(18%);
}

.about-copy {
  max-width: 720px;
}

.about-copy h2 {
  margin-bottom: 34px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 34px;
  color: #4d4945;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.6;
}

.details {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(48px, 10vw, 150px);
  padding-block: clamp(90px, 10vw, 150px);
  border-top: 1px solid var(--line);
}

.details-intro h2 {
  max-width: 450px;
  margin-bottom: 0;
}

.details-list details {
  border-top: 1px solid var(--ink);
}

.details-list details:last-child {
  border-bottom: 1px solid var(--ink);
}

.details-list summary {
  display: flex;
  min-height: 90px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
}

.details-list summary::-webkit-details-marker {
  display: none;
}

.details-list summary span {
  flex: 0 0 auto;
  margin-left: 20px;
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 180ms ease;
}

.details-list details[open] summary span {
  transform: rotate(45deg);
}

.details-list details p {
  max-width: 590px;
  margin: -5px 50px 28px 0;
  color: #514d49;
}

.visit-band {
  position: relative;
  padding-block: 95px;
  overflow: hidden;
  background: var(--blush-light);
}

.visit-word {
  position: absolute;
  top: 50%;
  right: -2vw;
  color: rgba(247, 243, 236, 0.84);
  font-family: var(--sans);
  font-size: clamp(9rem, 28vw, 28rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.8;
  transform: translateY(-50%);
}

.visit-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: clamp(35px, 7vw, 90px);
  align-items: end;
}

.visit-content h2 {
  max-width: 580px;
  margin-bottom: 0;
}

.visit-address p {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: 1.08rem;
}

.visit-actions {
  display: flex;
  gap: 18px;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer {
  padding: 72px max(24px, calc((100vw - 1180px) / 2));
  color: var(--cream);
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 38px;
  padding-bottom: 65px;
}

.footer-wordmark {
  color: var(--cream);
}

.footer-main p,
.footer-main address,
.footer-main a:not(.wordmark) {
  display: block;
  margin-bottom: 6px;
  color: #d7d0c6;
  font-family: var(--serif);
  font-size: 0.96rem;
  line-height: 1.65;
  text-decoration: none;
}

.footer-main a:not(.wordmark):hover,
.footer-main a:not(.wordmark):focus-visible {
  color: var(--paper);
  text-decoration: underline;
}

.footer-main .footer-label {
  margin-bottom: 18px;
  color: var(--blush);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  padding-top: 24px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(247, 243, 236, 0.22);
}

.footer-bottom p,
.footer-bottom a {
  margin-bottom: 0;
  color: #aaa39a;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-bottom nav {
  display: flex;
  gap: 26px;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--paper);
}

/* Product page */

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr);
  gap: clamp(45px, 10vw, 150px);
  padding-block: clamp(75px, 10vw, 150px) clamp(68px, 8vw, 115px);
  align-items: end;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 0;
}

.page-hero-aside {
  padding-bottom: 10px;
}

.page-hero-aside p {
  margin-bottom: 28px;
  color: #55514c;
  font-family: var(--serif);
  font-size: 1.16rem;
  line-height: 1.55;
}

.product-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: clamp(90px, 12vw, 170px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.product-index a {
  display: flex;
  min-height: 110px;
  padding: 18px 22px;
  align-items: center;
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.03rem;
  line-height: 1.25;
  text-decoration: none;
  transition: background 180ms ease;
}

.product-index a:last-child {
  border-right: 0;
}

.product-index a:hover,
.product-index a:focus-visible {
  background: var(--blush-light);
}

.product-index span {
  margin-right: 18px;
  color: #766f67;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.product-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(50px, 10vw, 135px);
  padding-bottom: clamp(100px, 14vw, 190px);
  align-items: center;
}

.product-photo {
  position: relative;
  margin-left: 8%;
  padding-left: 24px;
}

.product-photo::before {
  position: absolute;
  top: -24px;
  bottom: 50px;
  left: 0;
  width: 45%;
  background: var(--blush);
  content: "";
}

.portrait-photo img {
  position: relative;
  width: 100%;
  max-height: 720px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.8);
}

.product-photo p,
.visit-photo p {
  position: relative;
  margin: 14px 0 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-number {
  margin-bottom: 45px;
  color: var(--blush);
  font-family: var(--serif);
  font-size: 1.28rem;
}

.product-story-copy {
  max-width: 620px;
}

.product-story-copy h2,
.stationery-copy h2 {
  margin-bottom: 34px;
}

.product-story-copy > p:not(.eyebrow):not(.product-number),
.stationery-copy > p:not(.eyebrow):not(.product-number) {
  max-width: 560px;
  margin-bottom: 34px;
  color: #514d48;
  font-family: var(--serif);
  font-size: 1.17rem;
  line-height: 1.6;
}

.invitation-panel {
  padding-block: clamp(90px, 11vw, 155px);
  color: var(--cream);
  background: var(--sage-dark);
}

.invitation-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: clamp(52px, 10vw, 145px);
  align-items: center;
}

.invitation-art {
  position: relative;
  padding: clamp(20px, 4vw, 48px) 0 0 clamp(20px, 4vw, 48px);
}

.invitation-art::before {
  position: absolute;
  top: 0;
  right: clamp(20px, 4vw, 48px);
  bottom: clamp(20px, 4vw, 48px);
  left: 0;
  border: 1px solid rgba(247, 243, 236, 0.4);
  content: "";
}

.invitation-art img {
  position: relative;
  width: 100%;
}

.invitation-copy {
  max-width: 610px;
}

.invitation-copy h2 {
  margin-bottom: 34px;
}

.invitation-copy > p:not(.eyebrow):not(.product-number) {
  margin-bottom: 38px;
  color: #e0d9cf;
  font-family: var(--serif);
  font-size: 1.17rem;
  line-height: 1.62;
}

.stationery-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(350px, 1.1fr);
  gap: clamp(55px, 10vw, 140px);
  min-height: 760px;
  padding-block: clamp(110px, 14vw, 190px);
  align-items: center;
}

.stationery-copy {
  max-width: 600px;
}

.simple-list {
  margin-block: 40px;
  border-top: 1px solid var(--ink);
}

.simple-list div {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 25px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
}

.simple-list dt {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.simple-list dd {
  margin-bottom: 0;
  font-family: var(--serif);
}

.paper-stack {
  position: relative;
  min-height: 570px;
}

.paper-stack::before {
  position: absolute;
  top: 8%;
  right: 3%;
  bottom: 5%;
  left: 5%;
  background: var(--taupe-light);
  content: "";
}

.paper-sheet {
  position: absolute;
  top: 15%;
  right: 15%;
  width: 67%;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(36, 35, 33, 0.2);
  background: var(--paper);
  box-shadow: 0 20px 45px rgba(36, 35, 33, 0.08);
}

.paper-sheet-one {
  background: var(--blush);
  transform: rotate(13deg) translate(12%, -4%);
}

.paper-sheet-two {
  background: var(--sage);
  transform: rotate(-8deg) translate(-9%, 3%);
}

.paper-sheet-three {
  display: grid;
  place-items: center;
  transform: rotate(2deg);
}

.paper-sheet-three::before,
.paper-sheet-three::after {
  position: absolute;
  left: 50%;
  width: 1px;
  height: 27%;
  background: var(--blush);
  content: "";
}

.paper-sheet-three::before {
  top: 8%;
}

.paper-sheet-three::after {
  bottom: 8%;
}

.paper-sheet-three i {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-style: normal;
}

.more-goods {
  padding-block: clamp(95px, 12vw, 170px);
  border-top: 1px solid var(--line);
}

.goods-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.goods-grid article {
  min-height: 365px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.goods-grid article:nth-child(2) {
  background: var(--blush-light);
}

.goods-grid article:nth-child(3) {
  background: var(--taupe-light);
}

.goods-grid h3 {
  margin-block: 75px 20px;
}

.goods-grid p {
  max-width: 290px;
  margin-bottom: 0;
  color: #514d48;
}

.goods-icon {
  position: relative;
  display: block;
  width: 72px;
  height: 64px;
}

.goods-icon-box {
  border: 1px solid var(--ink);
}

.goods-icon-box::before {
  position: absolute;
  top: -10px;
  right: 8px;
  left: 8px;
  height: 12px;
  border: 1px solid var(--ink);
  background: var(--paper);
  content: "";
}

.goods-icon-gift {
  border: 1px solid var(--ink);
}

.goods-icon-gift::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 31px;
  width: 9px;
  border-right: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  background: var(--blush);
  content: "";
}

.goods-icon-gift::after {
  position: absolute;
  top: -10px;
  right: -5px;
  left: -5px;
  height: 16px;
  border: 1px solid var(--ink);
  background: var(--paper);
  content: "";
}

.goods-envelope {
  width: 72px;
  height: 64px;
}

.product-cta,
.contact-note {
  padding-block: clamp(90px, 12vw, 150px);
  color: var(--cream);
  background: var(--sage-dark);
}

.product-cta-inner,
.contact-note-inner {
  max-width: 800px;
  text-align: center;
}

.product-cta h2,
.contact-note h2 {
  margin-bottom: 26px;
}

.product-cta-inner > p:not(.eyebrow),
.contact-note-inner > p:not(.eyebrow) {
  max-width: 580px;
  margin: 0 auto 38px;
  color: #ded7cd;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.product-cta .button-row,
.contact-note .button-row {
  justify-content: center;
}

/* Visit page */

.visit-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: clamp(50px, 10vw, 145px);
  padding-block: clamp(80px, 11vw, 150px);
  align-items: center;
}

.visit-hero-copy h1 {
  max-width: 780px;
  margin-bottom: 34px;
}

.visit-hero-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 38px;
  color: #514d48;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.58;
}

.address-card {
  position: relative;
  max-width: 470px;
  min-height: 510px;
  padding: clamp(38px, 6vw, 68px);
  background: var(--blush-light);
  box-shadow: 18px 18px 0 var(--taupe-light);
}

.address-card::before,
.address-card::after {
  position: absolute;
  width: 45px;
  height: 45px;
  border-color: var(--ink);
  content: "";
}

.address-card::before {
  top: 18px;
  left: 18px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.address-card::after {
  right: 18px;
  bottom: 18px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.address-card-kicker {
  display: block;
  margin-bottom: 72px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.address-card address {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.address-rule {
  width: 80px;
  height: 1px;
  margin-block: 38px;
  background: var(--ink);
}

.address-card p {
  font-family: var(--serif);
  font-size: 1.1rem;
}

.address-card img {
  position: absolute;
  right: 48px;
  bottom: 48px;
  width: 47px;
}

.visit-details {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(55px, 10vw, 145px);
  padding-block: clamp(100px, 13vw, 175px);
  border-top: 1px solid var(--line);
  align-items: center;
}

.visit-photo {
  position: relative;
  padding-bottom: 22px;
}

.visit-photo::after {
  position: absolute;
  right: -22px;
  bottom: 0;
  width: 62%;
  height: 54%;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  content: "";
}

.visit-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.82);
}

.visit-photo p {
  position: relative;
  z-index: 1;
}

.visit-info h2 {
  margin-bottom: 42px;
}

.visit-info dl {
  margin-bottom: 0;
  border-top: 1px solid var(--ink);
}

.visit-info dl div {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 20px;
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}

.visit-info dt {
  padding-top: 4px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visit-info dd {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 1.06rem;
  line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 780px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 105px;
  }

  .primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    padding: 0 0 18px;
    justify-content: flex-start;
  }

  .header-contact {
    grid-column: 2;
    grid-row: 1;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-figure {
    width: min(92%, 680px);
    margin-left: auto;
  }

  .hero-figure img {
    aspect-ratio: 5 / 4;
  }

  .split-heading,
  .details,
  .page-hero,
  .product-story,
  .invitation-inner,
  .stationery-story,
  .visit-hero,
  .visit-details {
    grid-template-columns: 1fr;
  }

  .split-heading > p {
    max-width: 600px;
  }

  .editorial-feature {
    grid-template-columns: minmax(290px, 0.8fr) minmax(0, 1.2fr);
  }

  .feature-copy {
    padding: 64px 45px;
  }

  .feature-copy h2 {
    font-size: clamp(2.6rem, 5vw, 4rem);
  }

  .visit-content {
    grid-template-columns: 1fr 1fr;
  }

  .visit-actions {
    grid-column: 2;
  }

  .footer-main {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-main > div:last-child {
    grid-column: 2;
  }

  .product-index {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-index a:nth-child(2) {
    border-right: 0;
  }

  .product-index a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .product-photo {
    width: min(80%, 600px);
    margin-left: auto;
    margin-right: auto;
  }

  .product-story-copy,
  .invitation-copy,
  .stationery-copy {
    max-width: 680px;
  }

  .invitation-art {
    width: min(90%, 700px);
  }

  .stationery-story {
    padding-bottom: 120px;
  }

  .paper-stack {
    width: min(90%, 650px);
    margin-inline: auto;
  }

  .address-card {
    width: min(90%, 520px);
    justify-self: end;
  }

  .visit-photo {
    width: min(90%, 720px);
  }

  .visit-info {
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 32px);
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.65rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.55rem);
  }

  .preview-bar p {
    min-height: 32px;
    font-size: 0.56rem;
    letter-spacing: 0.1em;
  }

  .preview-bar p span:first-child {
    display: none;
  }

  .preview-bar p {
    justify-content: center;
  }

  .site-header {
    min-height: 96px;
  }

  .wordmark {
    font-size: 1.4rem;
  }

  .header-contact {
    font-size: 0.61rem;
  }

  .primary-nav {
    gap: 28px;
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .primary-nav a {
    flex: 0 0 auto;
    font-size: 0.62rem;
  }

  .hero {
    gap: 55px;
    padding-block: 62px 90px;
  }

  .hero-copy h1 {
    margin-bottom: 26px;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .hero-facts {
    gap: 20px;
    margin-top: 42px;
    flex-direction: column;
  }

  .hero-facts div {
    display: grid;
    grid-template-columns: 100px 1fr;
  }

  .hero-figure {
    width: calc(100% - 10px);
    padding: 12px 12px 0 0;
  }

  .hero-figure::after {
    right: -8px;
    bottom: 46px;
    width: 70px;
    height: 70px;
  }

  .hero-figure img {
    aspect-ratio: 4 / 5;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 330px;
    padding: 27px;
  }

  .category-name {
    font-size: 2.75rem;
  }

  .category-note {
    margin-top: 35px;
  }

  .editorial-feature {
    grid-template-columns: 1fr;
  }

  .feature-image {
    min-height: auto;
  }

  .feature-image img {
    aspect-ratio: 4 / 5;
  }

  .feature-copy {
    padding: 68px 24px 78px;
  }

  .feature-index {
    margin-bottom: 40px;
  }

  .about {
    grid-template-columns: 1fr;
    padding-block: 110px;
  }

  .about-mark {
    width: fit-content;
    margin-inline: auto;
    font-size: 8.5rem;
    text-align: center;
  }

  .about-mark span:last-child {
    transform: translateX(11%);
  }

  .details {
    gap: 20px;
  }

  .details-list summary {
    min-height: 82px;
    font-size: 1.35rem;
  }

  .visit-band {
    padding-block: 78px;
  }

  .visit-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .visit-actions {
    grid-column: auto;
  }

  .visit-word {
    top: 26%;
    font-size: 9.5rem;
  }

  .site-footer {
    padding: 58px 24px 35px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-main > div:last-child {
    grid-column: auto;
  }

  .footer-wordmark {
    margin-bottom: 20px;
  }

  .footer-bottom {
    gap: 25px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom nav {
    gap: 18px;
    flex-wrap: wrap;
  }

  .page-hero {
    padding-block: 68px 65px;
  }

  .product-index {
    grid-template-columns: 1fr;
    margin-bottom: 95px;
  }

  .product-index a {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-index a:last-child {
    border-bottom: 0;
  }

  .product-photo {
    width: calc(100% - 12px);
    margin-left: 12px;
    padding-left: 14px;
  }

  .product-photo::before {
    top: -14px;
  }

  .product-number {
    margin-bottom: 30px;
  }

  .invitation-inner {
    gap: 60px;
  }

  .invitation-art {
    width: 100%;
    padding: 15px 0 0 15px;
  }

  .stationery-story {
    gap: 55px;
    min-height: 0;
  }

  .paper-stack {
    width: 100%;
    min-height: 430px;
  }

  .simple-list div {
    grid-template-columns: 0.4fr 0.6fr;
  }

  .goods-grid {
    grid-template-columns: 1fr;
  }

  .goods-grid article {
    min-height: 300px;
  }

  .goods-grid h3 {
    margin-top: 55px;
  }

  .visit-hero {
    padding-block: 70px 100px;
  }

  .address-card {
    width: calc(100% - 14px);
    min-height: 470px;
    padding: 50px 34px;
  }

  .address-card-kicker {
    margin-bottom: 65px;
  }

  .address-card img {
    right: 34px;
    bottom: 34px;
  }

  .visit-photo {
    width: calc(100% - 12px);
  }

  .visit-photo::after {
    right: -12px;
  }

  .visit-info dl div {
    grid-template-columns: 90px 1fr;
  }
}

@media (max-width: 380px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .header-contact {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }

  .primary-nav {
    grid-row: 3;
    padding-top: 13px;
  }

  .hero .button-row,
  .visit-hero .button-row,
  .product-cta .button-row,
  .contact-note .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .text-link {
    width: 100%;
    justify-content: center;
  }

  .category-name {
    font-size: 2.45rem;
  }
}
