:root {
  --ivory: #f4eee6;
  --paper: #fbf8f3;
  --ink: #341c18;
  --wine: #6d2430;
  --wine-deep: #4b1720;
  --gold: #b58a4d;
  --muted: #74645d;
  --line: rgba(77, 44, 37, 0.16);
  --shadow: 0 24px 70px rgba(54, 28, 22, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  width: min(840px, calc(100% - 48px));
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 16px;
  color: #fff;
  background: var(--wine-deep);
  border-radius: 3px;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  border-bottom: 1px solid rgba(52, 28, 24, 0.12);
}

.header-inner {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand img {
  width: 154px;
  height: 70px;
  object-fit: contain;
  object-position: left center;
}

nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 28px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.language-option {
  padding: 7px 8px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.66rem;
  font-weight: 800;
  cursor: pointer;
}

.language-option.is-active {
  color: var(--ink);
  background: rgba(181, 138, 77, 0.14);
}

nav a {
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--wine);
  transition: right 180ms ease;
}

nav a:hover::after,
nav a:focus-visible::after {
  right: 0;
}

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ivory);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(244, 238, 230, 0.3) 0%, rgba(244, 238, 230, 0.12) 42%, rgba(244, 238, 230, 0) 62%);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-grid {
  position: relative;
  z-index: 2;
  padding-top: 132px;
  padding-bottom: 68px;
}

.hero-copy {
  width: min(650px, 58%);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--wine);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin: 0 12px 4px 0;
  background: var(--gold);
}

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

h1 {
  max-width: 650px;
  font-size: clamp(3rem, 5vw, 5.25rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2.35rem, 4.5vw, 4.35rem);
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: #584740;
  font-size: 1.06rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--wine-deep);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.72rem;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--wine-deep);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--wine);
}

.button-secondary {
  background: rgba(251, 248, 243, 0.54);
}

.development-note,
.quiet-note {
  color: var(--muted);
  font-size: 0.84rem;
}

.development-note {
  margin: 24px 0 0;
}

.section {
  padding: 132px 0;
}

.section-intro {
  text-align: center;
  background: var(--paper);
}

.section-intro .eyebrow::before {
  display: none;
}

.editorial-copy {
  margin-top: 42px;
  columns: 2;
  column-gap: 54px;
  text-align: left;
  color: #594942;
}

.editorial-copy p {
  margin: 0;
  break-inside: avoid;
}

.quiet-note {
  margin: 42px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.book-section {
  background: #eee2d5;
}

.split-grid,
.creator-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(56px, 8vw, 118px);
}

.book-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.book-halo {
  position: absolute;
  width: min(470px, 90%);
  aspect-ratio: 1;
  border: 1px solid rgba(181, 138, 77, 0.38);
  border-radius: 50%;
}

.book-visual img {
  position: relative;
  z-index: 1;
  max-height: 520px;
  filter: drop-shadow(0 28px 35px rgba(61, 33, 25, 0.2));
  mix-blend-mode: multiply;
}

.section-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 30px 0 0;
  color: #584740;
  font-size: 1.04rem;
}

.text-link {
  display: inline-block;
  margin-top: 34px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  color: var(--wine-deep);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 8px;
}

.creator-section {
  color: #f8f0e8;
  background: var(--wine-deep);
}

.creator-section .eyebrow {
  color: #d6b780;
}

.creator-section .section-copy > p:not(.eyebrow) {
  color: rgba(255, 247, 240, 0.78);
}

.creator-photo {
  position: relative;
  width: min(460px, 82vw);
  aspect-ratio: 4 / 5;
  margin-inline: auto;
  border: 1px solid rgba(214, 183, 128, 0.38);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(27, 8, 12, 0.34);
}

.creator-photo::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 245, 235, 0.26);
  pointer-events: none;
}

.creator-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.contact-section {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(56px, 8vw, 118px);
}

.contact-links {
  display: grid;
  border-top: 1px solid var(--line);
}

.contact-links a {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-links span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-links strong {
  font-weight: 600;
}

.text-link.light {
  color: #fff5eb;
}

.site-footer {
  padding: 74px 0;
  color: #584740;
  background: var(--ivory);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.footer-logo {
  width: 150px;
  height: 82px;
  object-fit: contain;
  object-position: left center;
}

.site-footer p {
  margin: 16px 0 0;
  font-size: 0.82rem;
}

.footer-legal {
  max-width: 680px;
}

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

@media (max-width: 900px) {
  .site-header {
    position: relative;
    background: var(--ivory);
  }

  .header-inner {
    min-height: 84px;
    flex-wrap: wrap;
    padding-block: 12px;
  }

  .brand img {
    width: 126px;
    height: 60px;
  }

  nav {
    gap: 18px;
  }

  .header-tools {
    flex: 1;
    justify-content: flex-end;
    gap: 16px;
  }

  nav a {
    font-size: 0.64rem;
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }

  .hero::before {
    display: none;
  }

  .hero-media {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 852 / 1100;
    overflow: hidden;
  }

  .hero-media img {
    object-position: center bottom;
  }

  .hero-grid {
    order: 1;
    width: 100%;
    padding-top: 74px;
    padding-bottom: 70px;
  }

  .hero-copy {
    width: 100%;
  }

  .split-grid,
  .creator-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-grid {
    gap: 58px;
  }

  .book-visual {
    min-height: 420px;
  }

  .book-visual img {
    max-height: 410px;
  }
}

@media (max-width: 620px) {
  .container,
  .narrow {
    width: min(100% - 32px, 1180px);
  }

  .header-inner {
    min-height: 76px;
    gap: 8px 16px;
  }

  .brand img {
    width: 105px;
  }

  nav {
    order: 2;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }

  nav a {
    letter-spacing: 0.08em;
    font-size: 0.58rem;
  }

  .header-tools {
    display: contents;
  }

  .language-switch {
    margin-left: auto;
    padding-left: 0;
    border-left: 0;
  }

  .language-option {
    padding: 6px;
    font-size: 0.58rem;
  }

  .hero {
    padding-bottom: 0;
  }

  .hero-media {
    aspect-ratio: 852 / 1150;
  }

  .hero-grid {
    padding-top: 54px;
    padding-bottom: 52px;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

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

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

  .button {
    width: 100%;
  }

  .section {
    padding: 88px 0;
  }

  .editorial-copy {
    columns: 1;
  }

  .editorial-copy p + p {
    margin-top: 20px;
  }

  .book-visual {
    min-height: 330px;
  }

  .book-visual img {
    max-height: 330px;
  }

  .creator-photo {
    width: min(100%, 360px);
  }

  .contact-links a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    padding: 58px 0;
  }

  .footer-grid {
    gap: 38px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
