:root {
  --cream: #f7f1ea;
  --warm-ivory: #fbf8f4;
  --sand: #ddd0c6;
  --soft-clay: #d2bbb2;
  --muted-blush: #e1c7c0;
  --taupe: #9a857b;
  --cocoa: #796760;
  --espresso: #574843;
  --champagne: #dfc7a5;
  --white: #ffffff;
  --line: rgba(121, 103, 96, 0.12);
  --line-soft: rgba(121, 103, 96, 0.08);
  --shadow-soft: 0 12px 32px rgba(121, 103, 96, 0.05);
  --shadow-card: 0 24px 54px rgba(121, 103, 96, 0.07);
  --radius-xl: 38px;
  --radius-lg: 30px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --container: min(1160px, calc(100vw - 2rem));
  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Instrument Sans", "Avenir Next", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--cocoa);
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top right, rgba(223, 199, 165, 0.16), transparent 24%),
    radial-gradient(circle at 14% 18%, rgba(225, 199, 192, 0.18), transparent 20%),
    linear-gradient(180deg, var(--warm-ivory) 0%, var(--cream) 42%, #f6efe8 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.6;
  pointer-events: none;
}

body::before {
  top: 6rem;
  right: -4rem;
  width: 16rem;
  height: 16rem;
  background: rgba(225, 199, 192, 0.2);
}

body::after {
  left: -5rem;
  bottom: 8rem;
  width: 18rem;
  height: 18rem;
  background: rgba(221, 208, 198, 0.2);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

input,
textarea {
  appearance: none;
}

[id] {
  scroll-margin-top: 6rem;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-frame {
  position: relative;
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 248, 244, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(121, 103, 96, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
}

.brand-monogram {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  color: var(--espresso);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
}

.brand-text strong {
  font-size: 0.98rem;
  font-weight: 600;
}

.brand-text small {
  color: var(--taupe);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  position: relative;
  color: var(--taupe);
  font-size: 0.94rem;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--espresso);
}

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

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.nav-toggle span {
  width: 1.15rem;
  height: 1px;
  background: var(--espresso);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero-section,
.page-hero {
  padding: 6rem 0 4rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 2rem;
  align-items: stretch;
}

.hero-copy,
.editorial-panel,
.link-card,
.book-card,
.feature-band,
.quote-panel,
.form-panel,
.contact-card,
.identity-card,
.coming-soon-card {
  border: 1px solid rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.56)),
    rgba(251, 248, 244, 0.68);
  box-shadow: var(--shadow-card);
}

.hero-copy,
.editorial-panel,
.feature-band,
.quote-panel,
.form-panel {
  border-radius: var(--radius-xl);
}

.hero-copy {
  padding: clamp(2rem, 4vw, 4.2rem);
  position: relative;
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 199, 165, 0.24), transparent 68%);
  pointer-events: none;
}

.hero-copy::after {
  content: "";
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  width: 5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--champagne), transparent);
}

.hero-home h1,
.page-hero h1,
h2,
h3 {
  margin: 0;
  color: var(--cocoa);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.hero-home h1,
.page-hero h1 {
  font-size: clamp(3.8rem, 10vw, 6.9rem);
  max-width: 9ch;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  max-width: 12ch;
}

h3 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.kicker,
.card-label,
.panel-kicker,
.section-label,
.book-meta,
.eyebrow-note {
  margin: 0 0 0.95rem;
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

p {
  margin: 0;
  line-height: 1.78;
}

.hero-subtitle,
.page-subtitle {
  margin-top: 1.2rem;
  max-width: 35rem;
  color: var(--taupe);
  font-size: 1.1rem;
}

.hero-intro,
.page-intro,
.prose p,
.section-heading p,
.link-card p,
.book-card p,
.editorial-panel p,
.feature-band p,
.quote-panel p,
.identity-card p,
.coming-soon-card p,
.contact-card p {
  color: var(--cocoa);
}

.hero-intro {
  margin-top: 2rem;
  max-width: 42rem;
  color: var(--taupe);
  font-size: 1.02rem;
}

.hero-genre-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.hero-genre-row span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(95, 74, 66, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--cocoa);
  font-size: 0.84rem;
  letter-spacing: 0.03em;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.28rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--taupe), var(--cocoa));
  color: var(--white);
  box-shadow: 0 16px 30px rgba(121, 103, 96, 0.14);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--cocoa);
}

.button-ghost {
  align-self: flex-start;
  border-color: rgba(121, 103, 96, 0.14);
  background: rgba(223, 199, 165, 0.12);
  color: var(--cocoa);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  margin-top: auto;
  color: var(--cocoa);
  font-weight: 600;
}

.text-link::after {
  content: "→";
  font-size: 0.95rem;
}

.editorial-panel {
  padding: 1.8rem;
  background:
    radial-gradient(circle at top right, rgba(225, 199, 192, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(250, 244, 239, 0.92));
}

.soft-image-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58)),
    rgba(251, 248, 244, 0.64);
  box-shadow: var(--shadow-soft);
}

.soft-image-card img {
  display: block;
  width: 100%;
  height: auto;
}

.portrait-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.58)),
    linear-gradient(135deg, rgba(225, 199, 192, 0.22), rgba(221, 208, 198, 0.2));
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: auto 1.1rem 1rem auto;
  width: 4.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--champagne), transparent);
  opacity: 0.9;
}

.portrait-card img {
  filter: none;
  object-position: center 18%;
}

.hero-soft-image {
  margin-bottom: 1rem;
}

.hero-soft-image img,
.image-tall img {
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.image-wide img {
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.library-photo img {
  aspect-ratio: 8 / 5;
  object-fit: cover;
  object-position: center;
}

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

.section-image {
  margin-bottom: 1.75rem;
}

.panel-intro {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow-soft);
}

.panel-stack {
  display: grid;
  gap: 1rem;
}

.mini-feature {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: var(--shadow-soft);
}

.mini-index {
  color: var(--soft-clay);
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.mini-feature h2 {
  max-width: none;
  font-size: 1.85rem;
}

.mini-feature p {
  margin-top: 0.5rem;
  color: var(--taupe);
}

.panel-quote {
  margin-top: 1rem;
  padding: 1.1rem 0 0;
  border-top: 1px solid rgba(121, 103, 96, 0.12);
}

.panel-quote p:last-child {
  color: var(--cocoa);
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section {
  padding: 2rem 0 5.5rem;
}

.section-soft {
  padding-top: 0.6rem;
}

.section-band {
  padding-top: 0;
  padding-bottom: 3.25rem;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.section-heading p,
.page-intro,
.prose {
  max-width: 42rem;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.genre-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.52)),
    rgba(225, 199, 192, 0.16);
  box-shadow: var(--shadow-soft);
}

.genre-band span {
  color: var(--taupe);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}

.link-card,
.book-card,
.identity-card,
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.link-card:hover,
.book-card:hover,
.identity-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(121, 103, 96, 0.09);
}

.link-card-sand {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.54)),
    rgba(221, 208, 198, 0.42);
}

.link-card-blush {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.54)),
    rgba(225, 199, 192, 0.4);
}

.link-card-cream {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.56)),
    rgba(251, 248, 244, 0.74);
}

.split-layout,
.content-layout,
.contact-layout,
.identity-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.7rem;
  align-items: start;
}

.prose {
  display: grid;
  gap: 1rem;
}

.split-lead {
  position: relative;
  padding-top: 0.25rem;
}

.prose-feature {
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.52)),
    rgba(225, 199, 192, 0.14);
  box-shadow: var(--shadow-soft);
}

.feature-band,
.coming-soon-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.7rem, 3vw, 2.4rem);
}

.feature-band {
  background:
    linear-gradient(135deg, rgba(225, 199, 192, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(250, 245, 240, 0.92));
}

.feature-band-rich {
  position: relative;
  overflow: hidden;
}

.feature-band-rich::before {
  content: "";
  position: absolute;
  inset: auto -6rem -6rem auto;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 199, 192, 0.18), transparent 64%);
}

.coming-soon-card {
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(221, 208, 198, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(250, 245, 240, 0.92));
}

.feature-band h2,
.coming-soon-card h2 {
  margin-bottom: 0.9rem;
}

.page-hero-grid {
  display: grid;
  gap: 1.4rem;
  max-width: 56rem;
}

.page-hero .page-intro {
  margin-top: 0.6rem;
}

.book-stack {
  display: grid;
  gap: 1.75rem;
}

.book-group {
  display: grid;
  gap: 1.5rem;
}

.book-group-header {
  display: grid;
  gap: 0.8rem;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.book-card {
  padding: 0;
  overflow: hidden;
}

.book-cover {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 250px;
  padding: 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  overflow: hidden;
}

.book-cover::before {
  content: "";
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.book-cover h3 {
  position: relative;
  z-index: 1;
  max-width: 15ch;
  color: var(--cocoa);
}

.book-cover.has-image {
  display: block;
  min-height: 0;
  padding: 0;
  background: rgba(247, 241, 234, 0.92);
}

.book-cover.has-image::before {
  display: none;
}

.book-cover.has-image img {
  display: block;
  width: 100%;
  height: auto;
}

.book-cover.tarot {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(145deg, #ecdcd3 0%, #d8bfb4 100%);
}

.book-cover.digits {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(145deg, #f0e3db 0%, #dbc4b9 100%);
}

.book-cover.doodle {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.26), transparent 28%),
    linear-gradient(145deg, #f1e7df 0%, #e2c8be 100%);
}

.book-content {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
}

.book-meta {
  margin-bottom: 0;
}

.page-quote {
  display: grid;
  gap: 1rem;
}

.quote-panel,
.form-panel {
  padding: 1.95rem;
  background:
    linear-gradient(135deg, rgba(223, 199, 165, 0.09), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(250, 245, 240, 0.92));
}

.quote-panel .soft-image-card {
  margin-bottom: 1.3rem;
}

.identity-list {
  display: grid;
  gap: 1.2rem;
}

.identity-card h3 {
  max-width: 14ch;
}

.newsletter-form,
.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field label {
  color: var(--cocoa);
  font-size: 0.9rem;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(121, 103, 96, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  padding: 1rem 1rem;
  color: var(--cocoa);
}

.field textarea {
  min-height: 180px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a08a7f;
}

.form-note {
  color: var(--taupe);
  font-size: 0.92rem;
}

.form-note.is-success {
  color: var(--cocoa);
}

.form-note.is-error {
  color: #9b5f57;
}

.contact-layout {
  align-items: start;
}

.contact-card {
  gap: 0.8rem;
}

.contact-card h2 {
  max-width: none;
  font-size: 1.8rem;
}

.page-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(95, 74, 66, 0.18), transparent);
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-inner {
  padding-top: 2rem;
  border-top: 1px solid rgba(95, 74, 66, 0.1);
  color: var(--taupe);
  text-align: center;
}

.footer-title {
  color: var(--cocoa);
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.footer-inner p + p {
  margin-top: 0.35rem;
}

.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;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(214, 185, 140, 0.28);
  outline-offset: 3px;
}

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

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

  .button,
  .site-nav a::after,
  .nav-toggle span,
  .link-card,
  .book-card,
  .identity-card,
  .contact-card {
    transition: none;
  }
}

@media (max-width: 1024px) {
  .hero-layout,
  .split-layout,
  .content-layout,
  .contact-layout,
  .identity-layout,
  .card-grid-three,
  .book-grid,
  .feature-band,
  .coming-soon-card {
    grid-template-columns: 1fr;
  }

  .feature-band,
  .coming-soon-card {
    align-items: flex-start;
  }

  .hero-home h1,
  .page-hero h1 {
    max-width: 10ch;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.25rem;
    padding: 0.8rem;
    border: 1px solid rgba(95, 74, 66, 0.12);
    border-radius: 28px;
    background: rgba(251, 248, 244, 0.98);
    box-shadow: var(--shadow-card);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.78rem 0.65rem;
  }

  .site-nav a::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-section,
  .page-hero {
    padding-top: 4.8rem;
  }

  .hero-copy,
  .editorial-panel,
  .feature-band,
  .quote-panel,
  .form-panel {
    padding: 1.55rem;
    border-radius: 28px;
  }

  .link-card,
  .book-card,
  .identity-card,
  .contact-card {
    padding: 1.25rem;
  }

  .book-content {
    padding: 1.25rem;
  }

  .book-cover {
    min-height: 220px;
    padding: 1.25rem;
  }

  .hero-soft-image img,
  .image-tall img {
    aspect-ratio: 4 / 5;
  }

  .image-wide img {
    aspect-ratio: 16 / 10;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
  }
}
