/* The Journal of Govinda Jewels.
   Set like a small letterpress trade periodical: centered heads, thick-thin
   double rules, drop caps, diamond section breaks (the site's marquee device),
   and a boxed correspondence notice for end matter. Two faces only:
   Playfair Display for display work, DM Sans for text. No monospace here. */

:root {
  --paper: #FBF9F4;
  --ink: #1C1917;
  --ink-soft: #57534E;
  --ink-faint: #A8A29E;
  --rust: #9A3412;
  --rust-deep: #78350F;
  --gold: #B4833E;
  --hairline: #E7E2D8;
  --hairline-warm: #DDD5C7;
  --parchment: #F5EFE6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--rust); text-decoration-color: rgba(154, 52, 18, 0.35); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }

.smallcaps {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Classic thick-thin printer's rule. */
.double-rule {
  height: 5px;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.double-rule.light { border-color: var(--hairline-warm); }

/* Diamond section break, lifted from the site's marquee separator. */
.diamonds { display: flex; justify-content: center; gap: 0.9rem; margin: 3rem 0; }
.diamonds i { width: 5px; height: 5px; background: rgba(180, 131, 62, 0.65); transform: rotate(45deg); }

/* ---------------------------------------------------------------- header */

.site-header { border-bottom: 1px solid var(--hairline); }
.site-header .inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.wordmark {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.enquire-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--rust);
  white-space: nowrap;
}

/* -------------------------------------------------------------- masthead */

.masthead { max-width: 44rem; margin: 0 auto; padding: 2.75rem 1.5rem 0; }
.masthead .smallcaps { text-align: center; color: var(--rust); padding: 0.55rem 0; }

/* ------------------------------------------------------------------ head */

.page { max-width: 44rem; margin: 0 auto; padding: 0 1.5rem 4.5rem; }

.head { text-align: center; margin: 2.75rem auto 0; max-width: 38rem; }
.head .dept { color: var(--rust); }
.head h1 {
  margin-top: 1.1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
}
.head .dateline { margin-top: 1.4rem; color: var(--ink-faint); }
.head::after {
  content: "";
  display: block;
  width: 3.5rem;
  margin: 1.6rem auto 0;
  border-top: 1px solid var(--gold);
}

/* --------------------------------------------------------------- article */

article { margin-top: 2.5rem; }

article > p.lede::first-letter {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.3em;
  line-height: 0.82;
  float: left;
  padding: 0.07em 0.12em 0 0;
  color: var(--rust);
}

article h2 {
  margin: 3rem 0 1.1rem;
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: 1.45rem;
  line-height: 1.3;
}
article h2 .no {
  font-style: italic;
  color: var(--gold);
  margin-right: 0.4em;
}

article h3 {
  margin: 2rem 0 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: 1.15rem;
}

article p { margin: 1.1rem 0; }

article ul, article ol { margin: 1.1rem 0 1.1rem 1.5rem; }
article li { margin: 0.5rem 0; }
article li::marker { color: var(--gold); }

article figure { margin: 2.4rem 0; }
article img { width: 100%; height: auto; display: block; }
article figure { border: 1px solid var(--hairline); padding: 0.5rem; background: #fff; }
article figcaption {
  padding: 0.7rem 0.35rem 0.25rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
article figcaption .fig {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 0.5em;
}

article blockquote {
  margin: 2.6rem auto;
  max-width: 32rem;
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.55;
  color: #3F3A34;
}
article blockquote footer {
  margin-top: 0.9rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

article table {
  width: 100%;
  margin: 1.75rem 0;
  border-collapse: collapse;
  font-size: 0.92rem;
  line-height: 1.55;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
article th {
  text-align: left;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--rust-deep);
  padding: 0.65rem 0.7rem;
  border-bottom: 1px solid var(--hairline-warm);
}
article td { padding: 0.65rem 0.7rem; border-bottom: 1px solid var(--hairline); vertical-align: top; }
article tr:last-child td { border-bottom: none; }

/* ------------------------------------------------- contents, dot leaders */

.contents { margin-top: 3rem; }
.contents .label { text-align: center; color: var(--rust); }
.contents ol { list-style: none; margin-top: 1.75rem; }
.contents li { padding: 1.1rem 0; border-bottom: 1px solid var(--hairline); }
.contents li:first-child { border-top: 1px solid var(--hairline); }
.contents .row { display: flex; align-items: baseline; gap: 0.9rem; text-decoration: none; }
.contents .num {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  color: var(--gold);
  min-width: 1.4rem;
}
.contents .title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--ink);
}
.contents .row:hover .title { color: var(--rust); }
.contents .leader {
  flex: 1;
  min-width: 2rem;
  border-bottom: 1px dotted var(--hairline-warm);
  transform: translateY(-0.3rem);
}
.contents .dept { color: var(--ink-faint); white-space: nowrap; }
.contents .desc { margin: 0.4rem 0 0 2.3rem; font-size: 0.92rem; color: var(--ink-soft); }

@media (max-width: 600px) {
  .contents .leader, .also .leader { display: none; }
  .contents .row { display: block; }
  .contents .num { display: inline; margin-right: 0.35rem; }
  .contents .title { display: inline; }
  .contents .dept { display: block; margin-top: 0.4rem; }
  .contents .desc { margin-left: 0; }
  .also li { flex-wrap: wrap; }
  .also .dept { flex-basis: 100%; }
}

/* ------------------------------------------------------------ end matter */

.also { margin-top: 3.75rem; }
.also .label { text-align: center; color: var(--rust); }
.also ol { list-style: none; margin-top: 1.25rem; }
.also li { display: flex; align-items: baseline; gap: 0.8rem; padding: 0.55rem 0; }
.also a { font-family: "Playfair Display", Georgia, serif; font-size: 1.02rem; text-decoration: none; color: var(--ink); }
.also a:hover { color: var(--rust); }
.also .leader { flex: 1; min-width: 2rem; border-bottom: 1px dotted var(--hairline-warm); transform: translateY(-0.25rem); }
.also .dept { color: var(--ink-faint); white-space: nowrap; }

.notice {
  margin: 4rem auto 0;
  max-width: 34rem;
  border: 1px solid var(--gold);
  outline: 1px solid var(--hairline-warm);
  outline-offset: 4px;
  padding: 2.1rem 2rem 2.3rem;
  text-align: center;
}
.notice .label { color: var(--rust); }
.notice h2 {
  margin-top: 0.9rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.35;
}
.notice p { margin-top: 0.8rem; font-size: 0.95rem; color: var(--ink-soft); }
.notice a { font-weight: 500; }

/* ---------------------------------------------------------------- footer */

.site-footer { margin-top: 4.5rem; }
.site-footer .inner { max-width: 44rem; margin: 0 auto; padding: 0 1.5rem 3.5rem; text-align: center; }
.site-footer .sanskrit {
  margin-top: 1.6rem;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.site-footer nav {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 1.75rem;
  row-gap: 0.5rem;
}
.site-footer nav a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
}
.site-footer nav a:hover { color: var(--rust); }
.site-footer .fine { margin-top: 1.5rem; font-size: 0.72rem; color: var(--ink-faint); }
