@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("fonts/cormorant-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500 700;
  font-display: swap;
  src: url("fonts/cormorant-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("fonts/source-serif-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Source Serif 4";
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url("fonts/source-serif-italic.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("fonts/source-serif-normal-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Source Serif 4";
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url("fonts/source-serif-italic-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --paper: #f3ede0;
  --surface: #e7ddcc;
  --ink: #1a1612;
  --copper: #8c5a3c;
  --river: #3d4f45;
  --soot: #2b241c;
  --rule: color-mix(in srgb, var(--copper) 38%, var(--paper));
  --muted: color-mix(in srgb, var(--ink) 62%, var(--paper));
  --measure: 40rem;
  --wide: 58rem;
}

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

html {
  background: var(--paper);
  color: var(--ink);
  font-size: 112.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(1200px 420px at 50% -80px, color-mix(in srgb, var(--surface) 70%, transparent), transparent 70%),
    var(--paper);
  color: var(--ink);
  font-family: "Source Serif 4", "Palatino Linotype", Palatino, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.005em;
}

img,
video {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--copper);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--soot);
}

a:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--soot);
  color: var(--paper);
  padding: 0.4rem 0.7rem;
  z-index: 20;
}

.skip:focus {
  top: 0.6rem;
}

.masthead {
  border-bottom: 1px solid var(--rule);
  background: color-mix(in srgb, var(--paper) 88%, var(--surface));
}

.masthead-inner {
  width: min(var(--wide), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.05rem 0 0.95rem;
}

.masthead-top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.45rem 1.2rem;
  margin-bottom: 0.7rem;
}

.brand {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem 1.1rem;
}

.lang-switch {
  font-size: 0.92rem;
  white-space: nowrap;
}

.lang-switch a {
  color: var(--ink);
  text-decoration: none;
}

.lang-switch a:hover,
.lang-switch a[aria-current="true"] {
  color: var(--copper);
}

.locator {
  margin: 0 0 0.55rem;
  color: var(--river);
  font-size: 1.05rem;
}

.brand-name {
  font-family: "Cormorant Garamond", "Palatino Linotype", Palatino, serif;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--soot);
  text-decoration: none;
}

.brand-name:hover {
  color: var(--copper);
}

.brand-tag {
  color: var(--muted);
  font-size: 0.95rem;
  font-style: italic;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: inline-block;
  padding: 0.28rem 0.55rem 0.28rem 0;
  margin-right: 0.85rem;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--copper);
  border-bottom-color: var(--copper);
}

.wrap {
  width: min(var(--measure), calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.1rem 0 3.4rem;
}

.wrap.wide {
  width: min(var(--wide), calc(100% - 2rem));
}

.hero {
  padding-bottom: 0.4rem;
}

.kicker {
  margin: 0 0 0.55rem;
  color: var(--copper);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", "Palatino Linotype", Palatino, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--soot);
  letter-spacing: 0.01em;
}

h1 {
  margin: 0 0 0.7rem;
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 600;
}

.page-title {
  margin-bottom: 1.15rem;
}

.lede {
  font-size: 1.12rem;
  color: var(--soot);
}

.chain {
  margin: 0 0 1.4rem;
  padding: 0.7rem 0 0.85rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  color: var(--river);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.22rem;
  font-style: italic;
}

.prose p,
.prose li {
  margin: 0 0 1em;
}

.prose p:last-child,
.prose li:last-child {
  margin-bottom: 0;
}

.prose h2 {
  margin: 2.1rem 0 0.7rem;
  font-size: 1.75rem;
}

.prose h3 {
  margin: 1.6rem 0 0.55rem;
  font-size: 1.28rem;
}

.prose ul,
.prose ol {
  margin: 0 0 1.1rem;
  padding-left: 1.2rem;
}

.prose li + li {
  margin-top: 0.45rem;
}

.prose li {
  margin-bottom: 0;
}

.page-list {
  list-style: none;
  padding: 0;
}

.page-list li {
  margin: 0;
  padding: 0.55rem 0;
  border-top: 1px solid var(--rule);
}

.page-list li:last-child {
  border-bottom: 1px solid var(--rule);
}

.closing {
  margin-top: 1.6rem;
  font-style: italic;
  color: var(--river);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 1.1rem 0 1.5rem;
  border: 1px solid var(--rule);
  background: var(--surface);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th,
td {
  padding: 0.65rem 0.8rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid color-mix(in srgb, var(--rule) 80%, var(--ink));
}

th {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--soot);
  background: color-mix(in srgb, var(--surface) 70%, var(--paper));
}

tr:last-child td {
  border-bottom: 0;
}

.facts th {
  width: 32%;
  white-space: nowrap;
}

.timeline td:first-child {
  width: 28%;
  color: var(--soot);
  font-weight: 600;
}

@media (max-width: 640px) {
  .timeline,
  .timeline thead,
  .timeline tbody,
  .timeline tr,
  .timeline th,
  .timeline td {
    display: block;
    width: 100%;
  }

  .timeline thead {
    display: none;
  }

  .timeline tr {
    padding: 0.75rem 0.7rem;
    border-bottom: 1px solid var(--rule);
  }

  .timeline td {
    padding: 0.15rem 0;
    border: 0;
  }

  .timeline td:first-child {
    width: auto;
    margin-bottom: 0.25rem;
    color: var(--copper);
  }

  .facts th {
    white-space: normal;
  }
}

.plates {
  display: grid;
  gap: 1.4rem;
  margin: 1.6rem 0 1.8rem;
}

@media (min-width: 860px) {
  .plates {
    grid-template-columns: 1fr 1fr;
  }

  .plates .plate:first-child {
    grid-column: 1 / -1;
    max-width: 28rem;
    justify-self: center;
  }
}

.plate {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--rule);
  padding: 0.65rem 0.65rem 0.85rem;
}

.prose > .plate {
  margin: 1.6rem 0 1.8rem;
}

.plate img {
  display: block;
  width: 100%;
  background: var(--soot);
}

.plate figcaption,
.film-band figcaption {
  margin: 0.65rem 0.15rem 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.film-band {
  margin: 2rem 0;
}

.film-band.breakout {
  width: min(var(--wide), calc(100vw - 2rem));
  margin-left: calc(50% - min(var(--wide), calc(100vw - 2rem)) / 2);
  margin-right: calc(50% - min(var(--wide), calc(100vw - 2rem)) / 2);
}

.film-frame {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background:
    linear-gradient(165deg, color-mix(in srgb, var(--surface) 80%, var(--copper)) 0%, var(--copper) 46%, var(--soot) 100%);
  border: 1px solid var(--rule);
}

.film-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      color-mix(in srgb, var(--paper) 10%, transparent) 3px
    );
  pointer-events: none;
  opacity: 0.28;
}

.film-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.places {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

@media (min-width: 760px) {
  .places {
    grid-template-columns: 1fr 1fr;
  }

  .places article:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

.place-card {
  margin: 0;
  padding: 1rem 1.05rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--rule);
}

.place-card h2 {
  margin: 0 0 0.45rem;
  font-size: 1.4rem;
}

.place-card p {
  margin: 0;
  font-size: 0.98rem;
}

.biblio {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
}

.biblio li {
  margin: 0 0 0.85rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--rule);
}

.colophon {
  border-top: 1px solid var(--rule);
  background: color-mix(in srgb, var(--surface) 55%, var(--paper));
  color: var(--muted);
}

.colophon-inner {
  width: min(var(--wide), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.4rem 0 1.8rem;
}

.colophon p {
  margin: 0 0 0.7rem;
  font-size: 0.92rem;
}

.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  list-style: none;
  margin: 0 0 0.9rem;
  padding: 0;
}

.foot-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
}

.foot-nav a:hover,
.foot-nav a[aria-current="page"] {
  color: var(--copper);
}

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

.coins {
  display: grid;
  gap: 1.1rem;
  margin: 1.6rem 0 1.8rem;
}

@media (min-width: 760px) {
  .coins {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.coins .coin-credit,
.coin-credit {
  grid-column: 1 / -1;
  margin: 0;
}

html[lang="te"] body {
  font-family: "Noto Serif Telugu", "Noto Sans Telugu", "Gautami", "Vani", "Nirmala UI", "Source Serif 4", "Palatino Linotype", Palatino, serif;
}

html[lang="te"] h1,
html[lang="te"] h2,
html[lang="te"] h3,
html[lang="te"] .brand-name,
html[lang="te"] .kicker,
html[lang="te"] .chain {
  font-family: "Noto Serif Telugu", "Noto Sans Telugu", "Gautami", "Cormorant Garamond", "Palatino Linotype", Palatino, serif;
}
