:root {
  --gld-paper: #fffaf5;
  --gld-ink: #172033;
  --gld-cherry: #9b1b48;
  --gld-gold: #d3a640;
  --gld-rose: #f2d8df;
  --gld-line: #d9d4cc;
}

* { box-sizing: border-box; }
html { background: var(--gld-paper); }
body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: var(--gld-paper);
  color: var(--gld-ink);
  font-family: Georgia, "Times New Roman", serif;
}
body > #rap { display: none !important; }
a { color: inherit; }

.gld-site-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 18px;
  border-bottom: 1px solid var(--gld-line);
}
.gld-wordmark {
  color: var(--gld-cherry);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}
.gld-wordmark span {
  display: block;
  margin-top: 8px;
  color: var(--gld-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.gld-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; }
.gld-nav a {
  border-bottom: 2px solid transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.gld-nav a:hover, .gld-nav a:focus-visible { border-color: var(--gld-cherry); }

.gld-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  min-height: 500px;
  margin: 0 auto;
  padding: 58px 0 66px;
}
.gld-kicker {
  margin: 0 0 18px;
  color: var(--gld-cherry);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.gld-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--gld-ink);
  font-size: clamp(48px, 6.4vw, 88px);
  font-weight: 400;
  line-height: .96;
}
.gld-hero-copy {
  max-width: 690px;
  margin: 26px 0 0;
  color: #4a4e5a;
  font-size: 18px;
  line-height: 1.7;
}
.gld-legacy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 30px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
}
.gld-legacy-links a { text-decoration-color: var(--gld-gold); text-underline-offset: 4px; }
.gld-cabinet {
  position: relative;
  min-height: 346px;
  padding: 32px;
  border: 1px solid var(--gld-ink);
  background: #fff;
  box-shadow: 14px 14px 0 var(--gld-rose), 22px 22px 0 var(--gld-gold);
}
.gld-cabinet::before {
  content: "GLD";
  display: block;
  color: var(--gld-cherry);
  font-size: clamp(70px, 9vw, 112px);
  font-weight: 700;
  line-height: .85;
}
.gld-cabinet::after {
  content: "Beauty  /  Food  /  Art  /  Finds";
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  padding-top: 18px;
  border-top: 4px double var(--gld-ink);
  color: var(--gld-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.6;
  text-transform: uppercase;
}
.gld-cabinet p {
  max-width: 210px;
  margin: 30px 0 0 auto;
  color: #65656c;
  font-size: 15px;
  font-style: italic;
  line-height: 1.55;
}

section[data-na-home-articles] {
  display: block !important;
  padding: 0 0 72px;
  background: #fff;
  border-top: 1px solid var(--gld-line);
  border-bottom: 1px solid var(--gld-line);
}
section[data-na-home-articles] .notebook-pages {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 52px 0 0;
  background: #fff;
  color: var(--gld-ink);
}
.notebook-pages .notebook-pages-label {
  margin: 0 0 26px;
  color: var(--gld-cherry);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
}
.notebook-pages > .notebook-pages-list,
.notebook-pages details .notebook-pages-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 0;
}
.notebook-pages .notebook-line {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  min-height: 74px;
  padding: 16px 18px;
  border: 0;
  border-top: 1px solid var(--gld-line);
  background: transparent;
  text-decoration: none;
}
.notebook-pages .notebook-line:nth-child(4n+2),
.notebook-pages .notebook-line:nth-child(4n+3) { background: #fdf6f7; }
.notebook-pages .notebook-number {
  padding-top: 3px;
  color: var(--gld-cherry);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  opacity: 1;
}
.notebook-pages .notebook-title {
  font-size: 16px;
  line-height: 1.35;
}
.notebook-pages details { margin-top: 16px; border-top: 1px solid var(--gld-line); }
.notebook-pages summary {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 0;
  color: var(--gld-cherry);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 760px) {
  .gld-site-header { grid-template-columns: 1fr; width: min(100% - 32px, 1180px); gap: 16px; }
  .gld-nav { justify-content: flex-start; gap: 12px 18px; }
  .gld-hero { grid-template-columns: 1fr; width: min(100% - 32px, 1180px); min-height: 0; padding: 42px 0 54px; }
  .gld-hero h1 { font-size: 52px; }
  .gld-cabinet { min-height: 300px; margin: 0 8px 18px 0; }
  section[data-na-home-articles] .notebook-pages { width: min(100% - 32px, 1180px); padding-top: 38px; }
  .notebook-pages > .notebook-pages-list,
  .notebook-pages details .notebook-pages-list { grid-template-columns: 1fr; }
  .notebook-pages .notebook-line:nth-child(n) { background: transparent; }
  .notebook-pages .notebook-line:nth-child(even) { background: #fdf6f7; }
}
