:root {
  --paper: #f5f1e9;
  --paper-deep: #eee9df;
  --canvas: #fbf9f4;
  --ink: #252b26;
  --muted: #646b62;
  --green: #3a493e;
  --green-deep: #293b33;
  --sage: #e5eae2;
  --line: #d7d6cc;
  --accent: #aa735d;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input {
  font-family: var(--sans);
}

::selection {
  background: #c6d3c5;
  color: var(--ink);
}

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

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

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

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

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

h1 em,
h2 em,
h3 em {
  font-weight: 400;
}

.site-shell {
  overflow: clip;
}

.page-container {
  width: min(100% - 104px, 1320px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: -100px;
  left: 24px;
  padding: 12px 18px;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  top: 16px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #c5b5a6;
}

.eyebrow__line {
  width: 22px;
  height: 1px;
  background: currentColor;
}

.button {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: 0 23px;
  border: 1px solid var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

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

.button span,
.text-link span {
  font-size: 17px;
  line-height: 1;
}

.button--dark {
  background: var(--green);
  color: #fff;
}

.button--dark:hover {
  background: var(--green-deep);
}

.button--outline {
  background: transparent;
  color: var(--green);
}

.button--outline:hover {
  background: var(--green);
  color: white;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--green);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .025em;
  transition: gap .2s ease;
}

.text-link:hover {
  gap: 36px;
}

.text-link--light {
  border-color: #e1e6dc;
  color: #f6f5ef;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--paper);
  border-bottom: 1px solid #e8e4dc;
}

.site-header__inner {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  flex: none;
  line-height: 1.1;
}

.brand__name {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -.065em;
}

.brand__period,
.site-footer__brand span {
  color: var(--accent);
}

.brand__descriptor {
  margin-top: 6px;
  color: #88877c;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 50px);
}

.site-nav__link {
  position: relative;
  padding: 9px 0;
  color: #5e665f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .105em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.site-nav__link::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: '';
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.site-nav__link:hover,
.site-nav__link--current {
  color: var(--ink);
}

.site-nav__link:hover::after,
.site-nav__link--current::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.home-hero {
  position: relative;
  background: var(--paper);
}

.home-hero::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 37%;
  background: var(--paper-deep);
  content: '';
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  min-height: 710px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 30px;
}

.home-hero__content {
  position: relative;
  z-index: 2;
  padding: 74px 0 65px;
}

.home-hero h1 {
  margin-top: 27px;
  font-size: clamp(60px, 5.4vw, 86px);
  letter-spacing: -.075em;
  line-height: 1.1;
}

.home-hero h1 em {
  color: var(--green);
}

.home-hero__intro {
  max-width: 470px;
  margin-top: 29px;
  color: #626a62;
  font-size: 14px;
  line-height: 1.95;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 37px;
}

.home-hero__aside {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 73px;
  color: #85887d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.home-hero__aside span {
  width: 43px;
  height: 1px;
  background: #b5b5ab;
}

.home-hero__visual {
  position: relative;
  height: 100%;
  min-height: 710px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 43px 38px 43px 0;
}

.home-hero__photo-frame {
  width: min(100%, 470px);
  height: 625px;
  overflow: hidden;
  background: #d8d6d0;
  box-shadow: 21px 22px 0 #dcd7cd;
}

.home-hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 34%;
}

.home-hero__vertical {
  position: absolute;
  top: 50%;
  right: -18px;
  color: #7c8177;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .27em;
  white-space: nowrap;
  transform: translateY(-50%) rotate(90deg);
}

.home-hero__sunburst {
  position: absolute;
  right: -9px;
  bottom: 9px;
  color: var(--accent);
  font-size: 44px;
  line-height: 1;
}

.intro-band {
  background: #e7ebe4;
}

.intro-band__inner {
  min-height: 244px;
  display: grid;
  grid-template-columns: 220px 1fr 40px;
  align-items: center;
  gap: 45px;
}

.intro-band__inner > p:nth-child(2) {
  max-width: 780px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.8vw, 40px);
  letter-spacing: -.05em;
  line-height: 1.45;
}

.intro-band__inner > p:nth-child(2) em {
  color: var(--green);
}

.intro-band__ornament {
  align-self: end;
  padding-bottom: 35px;
  color: #9aaa9a;
  font-size: 31px;
}

.section {
  padding-block: 116px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 47px;
}

.section-heading h2,
.home-about h2,
.home-feature h2,
.writing-intro h2,
.about-story h2,
.about-behind h2,
.contact-main h2,
.writing-endnote h2 {
  margin-top: 20px;
  font-size: clamp(44px, 4.2vw, 65px);
  letter-spacing: -.068em;
  line-height: 1.2;
}

.section-heading > p {
  max-width: 360px;
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.writing-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.writing-card {
  min-height: 396px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 30px;
  background: #ece7dc;
  transition: background .2s ease, transform .2s ease;
}

.writing-card:nth-child(2) {
  background: #e6ebe4;
}

.writing-card:nth-child(3) {
  background: #e9e1d9;
}

.writing-card:hover {
  background: #dce5da;
  transform: translateY(-5px);
}

.writing-card__top,
.writing-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #697269;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.writing-card__top span:last-child {
  font-size: 18px;
}

.writing-card__category {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.writing-card h3 {
  max-width: 290px;
  font-size: clamp(30px, 2.5vw, 38px);
  letter-spacing: -.055em;
  line-height: 1.25;
}

.writing-card h3 + p {
  max-width: 295px;
  margin-top: 18px;
  color: #666d64;
  font-size: 12px;
  line-height: 1.85;
}

.writing-card__bottom {
  padding-top: 16px;
  border-top: 1px solid #c9cdc4;
  color: var(--green);
  letter-spacing: .04em;
  text-transform: none;
}

.writing-card__bottom span {
  font-size: 17px;
}

.home-feature {
  position: relative;
  min-height: 615px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #45372a;
}

.home-feature__image,
.home-feature__image::after,
.home-feature__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-feature__image img {
  object-fit: cover;
  object-position: center 52%;
}

.home-feature__image::after {
  z-index: 1;
  background: linear-gradient(90deg, rgb(15 22 18 / 38%), transparent 80%);
  content: '';
}

.home-feature__inner {
  position: relative;
  z-index: 2;
  padding-block: 75px;
}

.home-feature__panel {
  max-width: 560px;
  padding: 50px 54px 54px;
  background: var(--green-deep);
  color: #f5f4ed;
}

.home-feature h2 {
  margin-top: 22px;
  font-size: clamp(40px, 3.8vw, 60px);
}

.home-feature h2 em {
  color: #d7c8b2;
}

.home-feature__panel > p:not(.eyebrow) {
  max-width: 400px;
  margin-top: 20px;
  color: #d4dbd1;
  font-size: 13px;
  line-height: 1.9;
}

.home-feature .text-link {
  margin-top: 32px;
}

.home-about {
  background: var(--paper);
}

.home-about__grid {
  display: grid;
  grid-template-columns: .88fr 1fr;
  align-items: center;
  gap: clamp(70px, 11vw, 160px);
}

.home-about__copy {
  padding-left: clamp(0px, 5vw, 70px);
}

.home-about h2 {
  margin-top: 25px;
  font-size: clamp(55px, 5.5vw, 83px);
}

.home-about__copy > p:not(.eyebrow) {
  max-width: 440px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.home-about .text-link {
  margin-top: 33px;
}

.home-about__visual {
  position: relative;
  width: 100%;
  max-width: 510px;
}

.home-about__visual img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

.home-about__caption {
  position: absolute;
  right: -27px;
  bottom: -22px;
  padding: 13px 18px;
  background: var(--canvas);
  color: #77786d;
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

.site-footer {
  background: var(--green-deep);
  color: #f1f1e9;
}

.site-footer__top {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.site-footer h2 {
  margin-top: 20px;
  font-size: clamp(42px, 4.8vw, 75px);
  letter-spacing: -.07em;
  line-height: 1.18;
}

.site-footer h2 em {
  color: #d0c7b6;
}

.round-link {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  flex: none;
  border: 1px solid #a7b3a5;
  border-radius: 50%;
  font-size: 31px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.round-link:hover {
  background: #e7e7db;
  color: var(--green-deep);
  transform: rotate(45deg);
}

.site-footer__bottom {
  min-height: 135px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.site-footer__brand {
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: -.055em;
}

.site-footer__bottom p {
  color: #b9c4b8;
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

.site-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.site-footer__bottom nav a {
  color: #dfdfd6;
  font-size: 11px;
}

.site-footer__bottom nav a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer__legal {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #a4b1a4;
  font-size: 10px;
  letter-spacing: .03em;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.page-hero::after {
  position: absolute;
  top: -250px;
  right: -180px;
  width: 680px;
  height: 680px;
  border: 1px solid #e7e0d3;
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgb(221 220 205 / 20%), 0 0 0 220px rgb(221 220 205 / 10%);
  content: '';
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 109px 112px;
}

.page-hero h1 {
  max-width: 990px;
  margin-top: 23px;
  font-size: clamp(60px, 7vw, 104px);
  letter-spacing: -.08em;
  line-height: 1.12;
}

.page-hero h1 em {
  color: var(--green);
}

.page-hero__inner > p:last-child {
  max-width: 530px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.page-hero--writing {
  background: #e8ebe4;
}

.page-hero--about {
  background: #eee9df;
}

.page-hero--contact {
  background: #e8ebe4;
}

.writing-intro__grid {
  display: grid;
  grid-template-columns: .85fr 1fr;
  align-items: center;
  gap: clamp(70px, 10vw, 145px);
}

.writing-intro__photo,
.contact-main__photo {
  position: relative;
  max-width: 490px;
}

.writing-intro__photo img,
.contact-main__photo img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: center 27%;
}

.photo-label {
  position: absolute;
  right: -16px;
  bottom: -16px;
  padding: 12px 18px;
  background: var(--green-deep);
  color: white;
  font-size: 10px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.writing-intro__copy > p:not(.eyebrow),
.about-story__copy > p:not(.eyebrow),
.about-behind__copy > p:not(.eyebrow),
.contact-main__copy > p:not(.eyebrow) {
  max-width: 530px;
  margin-top: 23px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.writing-intro__copy .writing-intro__note {
  margin-top: 29px;
  padding-left: 19px;
  border-left: 2px solid var(--accent);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}

.writing-areas {
  padding-block: 27px 100px;
}

.writing-area {
  display: grid;
  grid-template-columns: 175px 1fr 32px;
  align-items: start;
  gap: 25px;
  padding: 48px 0 52px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 30px;
}

.writing-area:last-child {
  border-bottom: 1px solid var(--line);
}

.writing-area__index {
  display: flex;
  align-items: center;
  gap: 17px;
  padding-top: 4px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.writing-area__index span {
  width: 40px;
  height: 1px;
  background: #b8b8ad;
}

.writing-area h2 {
  margin-top: 8px;
  font-size: clamp(34px, 3.3vw, 51px);
  letter-spacing: -.06em;
}

.writing-area__content > p:last-child {
  max-width: 510px;
  margin-top: 11px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.writing-area__mark {
  color: var(--green);
  font-size: 25px;
}

.writing-endnote {
  background: var(--sage);
  text-align: center;
}

.writing-endnote__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.writing-endnote h2 {
  margin-top: 20px;
}

.writing-endnote .button {
  margin-top: 30px;
}

.about-story__grid {
  display: grid;
  grid-template-columns: .91fr 1fr;
  align-items: center;
  gap: clamp(70px, 9vw, 125px);
}

.about-story__image {
  max-width: 510px;
  padding: 22px 22px 0 0;
  border-top: 1px solid #b8b7aa;
  border-right: 1px solid #b8b7aa;
}

.about-story__image img {
  width: 100%;
  height: 665px;
  object-fit: cover;
  object-position: center 38%;
}

.about-story__lead {
  color: var(--ink) !important;
  font-family: var(--serif);
  font-size: 19px !important;
  line-height: 1.7 !important;
}

.about-story .text-link,
.about-behind .text-link {
  margin-top: 32px;
}

.about-interlude {
  background: var(--green-deep);
  color: #f1f1e9;
}

.about-interlude__inner {
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  text-align: center;
}

.about-interlude p {
  max-width: 870px;
  font-family: var(--serif);
  font-size: clamp(27px, 3.2vw, 44px);
  font-style: italic;
  letter-spacing: -.035em;
  line-height: 1.5;
}

.about-interlude span {
  color: #b9ad92;
  font-size: 22px;
}

.about-behind {
  background: var(--paper);
}

.about-behind__grid {
  display: grid;
  grid-template-columns: .9fr .85fr;
  align-items: center;
  justify-content: space-between;
  gap: clamp(70px, 10vw, 160px);
}

.about-behind__visual {
  max-width: 460px;
}

.about-behind__visual img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: center 42%;
}

.about-behind figcaption {
  margin-top: 12px;
  color: #82877d;
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

.contact-main__grid {
  display: grid;
  grid-template-columns: .86fr 1fr;
  align-items: center;
  gap: clamp(70px, 10vw, 145px);
}

.contact-main__photo img {
  height: 600px;
  object-position: center 40%;
}

.contact-detail {
  max-width: 470px;
  margin-top: 32px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.contact-detail__label {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail p {
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(21px, 2.1vw, 30px);
  letter-spacing: -.04em;
}

.contact-detail a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-detail a span {
  font-family: var(--sans);
  font-size: 18px;
}

.contact-main__copy .contact-main__footnote {
  margin-top: 40px;
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
}

@media (max-width: 1060px) {
  .page-container {
    width: min(100% - 72px, 1320px);
  }

  .home-hero h1 {
    font-size: clamp(56px, 6vw, 72px);
  }

  .home-hero__photo-frame {
    height: 570px;
  }

  .home-hero__grid,
  .home-hero__visual {
    min-height: 650px;
  }

  .intro-band__inner {
    grid-template-columns: 160px 1fr 20px;
    gap: 25px;
  }

  .home-about__grid,
  .writing-intro__grid,
  .about-story__grid,
  .about-behind__grid,
  .contact-main__grid {
    gap: 55px;
  }
}

@media (max-width: 760px) {
  .page-container {
    width: min(100% - 42px, 540px);
  }

  .site-header__inner {
    min-height: 78px;
  }

  .brand__name {
    font-size: 24px;
  }

  .brand__descriptor {
    font-size: 7px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    width: 24px;
    height: 1px;
    display: block;
    background: var(--ink);
    transition: transform .2s ease;
  }

  .menu-toggle span:first-child.is-open {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle span:last-child.is-open {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 14px 21px 25px;
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 30px rgb(25 29 22 / 9%);
  }

  .site-nav--open {
    display: flex;
  }

  .site-nav__link {
    padding: 15px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }

  .site-nav__link::after {
    display: none;
  }

  .home-hero::after {
    top: auto;
    width: 43%;
    height: 430px;
  }

  .home-hero__grid {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .home-hero__content {
    width: 100%;
    padding: 70px 0 29px;
  }

  .home-hero h1 {
    margin-top: 21px;
    font-size: clamp(46px, 11vw, 65px);
    line-height: 1.11;
  }

  .home-hero__intro {
    max-width: 470px;
    margin-top: 21px;
    font-size: 13px;
    line-height: 1.85;
  }

  .home-hero__actions {
    gap: 24px;
    margin-top: 27px;
  }

  .home-hero__aside {
    display: none;
  }

  .home-hero__visual {
    width: 100%;
    min-height: 0;
    height: 510px;
    justify-content: center;
    padding: 21px 25px 43px 0;
  }

  .home-hero__photo-frame {
    width: 100%;
    max-width: 390px;
    height: 100%;
    box-shadow: 16px 15px 0 #dcd7cd;
  }

  .home-hero__vertical,
  .home-hero__sunburst {
    display: none;
  }

  .intro-band__inner {
    min-height: 0;
    display: block;
    padding-block: 54px 64px;
  }

  .intro-band__inner > p:nth-child(2) {
    margin-top: 17px;
    font-size: clamp(27px, 7vw, 36px);
  }

  .intro-band__ornament {
    display: none;
  }

  .section {
    padding-block: 76px;
  }

  .section-heading {
    display: block;
    margin-bottom: 30px;
  }

  .section-heading h2,
  .home-feature h2,
  .writing-intro h2,
  .about-story h2,
  .about-behind h2,
  .contact-main h2,
  .writing-endnote h2 {
    font-size: clamp(43px, 9.2vw, 57px);
  }

  .section-heading > p {
    margin-top: 16px;
  }

  .writing-card-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .writing-card {
    min-height: 300px;
  }

  .writing-card h3 {
    font-size: 35px;
  }

  .home-feature {
    min-height: 610px;
    align-items: end;
  }

  .home-feature__image img {
    object-position: 60% center;
  }

  .home-feature__inner {
    padding-block: 130px 22px;
  }

  .home-feature__panel {
    padding: 33px 28px 36px;
  }

  .home-about__grid,
  .writing-intro__grid,
  .about-story__grid,
  .about-behind__grid,
  .contact-main__grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 44px;
  }

  .home-about__copy {
    padding-left: 0;
  }

  .home-about h2 {
    font-size: clamp(56px, 12vw, 78px);
  }

  .home-about__visual {
    max-width: none;
  }

  .home-about__visual img {
    height: 480px;
  }

  .home-about__caption {
    right: -4px;
    bottom: -20px;
  }

  .site-footer__top {
    min-height: 0;
    padding-block: 79px 68px;
  }

  .site-footer h2 {
    font-size: clamp(37px, 8.4vw, 55px);
  }

  .round-link {
    width: 55px;
    height: 55px;
    font-size: 23px;
  }

  .site-footer__bottom {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 17px;
    padding-block: 33px;
  }

  .site-footer__bottom nav {
    gap: 20px;
    margin-top: 7px;
  }

  .site-footer__legal {
    min-height: 74px;
  }

  .page-hero__inner {
    padding-block: 74px 82px;
  }

  .page-hero h1 {
    font-size: clamp(49px, 11vw, 78px);
  }

  .page-hero__inner > p:last-child {
    font-size: 13px;
  }

  .page-hero::after {
    right: -570px;
  }

  .writing-intro__photo,
  .contact-main__photo {
    max-width: none;
  }

  .writing-intro__photo img,
  .contact-main__photo img {
    height: 530px;
  }

  .writing-areas {
    padding-block: 0 76px;
  }

  .writing-area {
    grid-template-columns: 46px 1fr;
    gap: 18px;
    padding-block: 37px;
  }

  .writing-area__index span,
  .writing-area__mark {
    display: none;
  }

  .writing-area h2 {
    font-size: 36px;
  }

  .about-story__image {
    max-width: none;
  }

  .about-story__image img {
    height: 585px;
  }

  .about-interlude__inner {
    min-height: 0;
    gap: 16px;
    padding-block: 75px;
  }

  .about-interlude p {
    font-size: 27px;
  }

  .about-interlude span {
    display: none;
  }

  .about-behind__visual {
    max-width: none;
  }

  .about-behind__visual img {
    height: 570px;
  }
}

@media (max-width: 420px) {
  .page-container {
    width: min(100% - 34px, 540px);
  }

  .home-hero__content {
    padding-top: 57px;
  }

  .home-hero h1 {
    font-size: 45px;
  }

  .home-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .home-hero__visual {
    height: 450px;
  }

  .site-footer__top {
    align-items: end;
    gap: 10px;
  }

  .site-footer h2 {
    font-size: 35px;
  }

  .round-link {
    width: 47px;
    height: 47px;
  }

  .site-footer__legal {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    padding-block: 17px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
