:root {
  --ink: #17201c;
  --muted: #68746e;
  --paper: #fbf7ee;
  --snow: #f6f8f4;
  --forest: #102a1e;
  --deep: #06110d;
  --gold: #ebd3a4;
  --amber: #c28b44;
  --line: rgba(23, 32, 28, 0.14);
  --shadow: 0 26px 80px rgba(6, 17, 13, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 8%, rgba(194, 139, 68, 0.14), transparent 28rem),
    linear-gradient(180deg, #f7f2e7 0, var(--paper) 48rem, #f3f5ef 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(20px, 5vw, 72px);
  color: #fff;
  background: linear-gradient(180deg, rgba(6, 17, 13, 0.72), rgba(6, 17, 13, 0));
}

.brand,
.site-header nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 850;
}

.brand span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(235, 211, 164, 0.52);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
}

.site-header nav {
  gap: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 750;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--deep);
  color: #fff;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 17, 13, 0.92) 0%, rgba(6, 17, 13, 0.64) 36%, rgba(6, 17, 13, 0.16) 76%),
    linear-gradient(0deg, rgba(6, 17, 13, 0.54), rgba(6, 17, 13, 0));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 40px));
  padding: 160px 0 96px clamp(20px, 6vw, 86px);
}

.hero-copy p,
.gallery p {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
p,
blockquote {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 8vw, 104px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-copy span {
  display: block;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 22px;
  line-height: 1.5;
}

.hero-copy a {
  display: inline-block;
  margin-top: 34px;
  padding: 15px 20px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--deep);
  font-weight: 850;
}

.intro {
  display: grid;
  width: min(1100px, calc(100% - 40px));
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
  margin: -54px auto 64px;
  padding: 34px;
  border: 1px solid rgba(235, 211, 164, 0.38);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: var(--shadow);
}

.intro img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.intro p {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.22;
}

.intro p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-family: inherit;
  font-size: 18px;
  line-height: 1.6;
}

.story {
  width: min(100%, 1360px);
  margin: 0 auto;
}

.chapter,
.dialogue {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto 58px;
}

.chapter p,
.dialogue p {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.72;
}

.chapter p:last-child,
.dialogue p:last-child {
  margin-bottom: 0;
}

blockquote {
  margin: 34px 0;
  padding: 26px 30px;
  border-left: 4px solid var(--amber);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.62);
  color: #314036;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.38;
}

.wide {
  width: min(1180px, calc(100% - 40px));
  margin: 72px auto;
}

.wide img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

figcaption {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

.split {
  display: grid;
  width: min(1020px, calc(100% - 40px));
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 48px;
  align-items: center;
}

.split aside {
  align-self: center;
}

.split aside img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
}

.dialogue {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.5);
}

.dialogue p {
  font-size: 21px;
}

.final {
  align-items: end;
}

.gallery {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 84px auto 96px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.gallery div {
  grid-column: 1 / -1;
}

.gallery h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  line-height: 1;
}

.gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(6, 17, 13, 0.14);
}

@media (max-width: 860px) {
  .site-header nav {
    display: none;
  }

  .hero-copy {
    padding: 128px 20px 72px;
  }

  .intro,
  .split {
    grid-template-columns: 1fr;
  }

  .intro {
    margin-top: -32px;
    padding: 24px;
  }

  .intro img,
  .split aside img {
    max-height: 240px;
  }

  .chapter p,
  .dialogue p {
    font-size: 20px;
    line-height: 1.68;
  }

  blockquote {
    font-size: 24px;
  }

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

@media (max-width: 560px) {
  .hero-copy {
    width: 100%;
    padding-right: 28px;
  }

  h1 {
    font-size: 44px;
    line-height: 1;
  }

  .hero-copy span {
    max-width: 320px;
    font-size: 19px;
  }

  .dialogue {
    padding: 24px;
  }

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