:root {
  --navy: #0f2230;
  --deep-navy: #07161f;
  --parchment: #f7efe2;
  --paper: #fff8ed;
  --ink: #102638;
  --text: #273d50;
  --muted: #657382;
  --gold: #c7953f;
  --dark-gold: #9f6e25;
  --burgundy: #7d4a4a;
  --moss: #65735c;
  --wood: #8a5d35;
  --line: rgba(199, 149, 63, .38);
  --shadow: 0 18px 38px rgba(8, 23, 32, .18);
  --soft-shadow: 0 10px 24px rgba(8, 23, 32, .14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: "Trebuchet MS", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(199,149,63,.14), transparent 30%),
    radial-gradient(circle at top right, rgba(15,34,48,.12), transparent 32%),
    linear-gradient(180deg, var(--parchment), var(--paper));
}

a { color: inherit; }

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

/* TOP NAV */

.site-header {
  width: 100%;
  margin: 0;
  padding: 0;
}

.top-nav {
  width: 100%;
  min-height: 82px;
  padding: 10px 46px;
  background: linear-gradient(180deg, var(--deep-navy), var(--navy));
  border-bottom: 2px solid var(--gold);
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 28px;
}

.nav-logo-link,
.logo-image-link,
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo {
  width: 230px;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 52px;
  flex-wrap: wrap;
}

nav a {
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: .08em;
  padding-bottom: 8px;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* HERO */

.hero-section {
  display: grid;
  grid-template-columns: minmax(280px, 540px) 1px minmax(360px, 620px);
  align-items: center;
  justify-content: center;
  gap: 42px;
  padding: 46px 48px 42px;
  background:
    radial-gradient(circle at left center, rgba(199,149,63,.16), transparent 32%),
    linear-gradient(180deg, rgba(255,248,237,.98), rgba(247,239,226,.96));
  border-bottom: 1px solid rgba(199,149,63,.25);
}

.hero-brand {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  width: 500px;
  max-width: 100%;
  display: block;
}

.hero-divider {
  height: 300px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  position: relative;
}

.hero-divider::before,
.hero-divider::after {
  content: "✦";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: .9rem;
}

.hero-divider::before { top: 30px; }
.hero-divider::after { bottom: 30px; }

.hero-copy {
  max-width: 620px;
}

.hero-copy h1,
.site-intro h1,
.page-hero h1 {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -.02em;
}

.hero-copy p,
.site-intro p,
.page-hero p {
  margin: 14px 0;
  max-width: 600px;
  font-size: 1.02rem;
  line-height: 1.65;
}

.hand-note,
.signature {
  color: var(--burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.35rem !important;
  font-weight: 700;
  letter-spacing: .04em;
}

/* MAIN DARK LIBRARY */

.home-main {
  max-width: none;
  margin: 0;
  padding: 0;
}

.dark-library-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(7,22,31,.98), rgba(15,34,48,.98)),
    var(--deep-navy);
  color: var(--paper);
  padding: 0 0 34px;
  overflow: hidden;
}

.dark-library-section::before,
.dark-library-section::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 360px;
  background: url("../images/assets/leaves-asset.png") center / contain no-repeat;
  opacity: .42;
  pointer-events: none;
}

.dark-library-section::before {
  top: 0;
  left: -40px;
}

.dark-library-section::after {
  top: -30px;
  right: -40px;
  transform: scaleX(-1);
}

.shelf-title {
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  color: var(--gold);
  margin: 0;
  padding: 28px 24px 20px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.shelf-title::before,
.shelf-title::after {
  content: " ✦ ";
  color: var(--gold);
  font-size: 1rem;
}

/* FEATURED SHELF */

.featured-bookcase {
  position: relative;
  margin: 0 auto;
  padding: 0 32px 62px;
  max-width: 1120px;
  overflow-x: auto;
}

.featured-bookcase::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 40px;
  height: 24px;
  z-index: 0;
  background: linear-gradient(180deg, #9a6a3d, #5e3a20);
  box-shadow: 0 14px 20px rgba(0,0,0,.45);
  border-radius: 2px;
}

.featured-books {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(24px, 3vw, 46px);
}

.featured-books a {
  display: block;
  flex: 0 0 150px;
  width: 150px;
  height: 225px;
  overflow: hidden;
  border-radius: 8px 8px 4px 4px;
  background: #f7f2eb;
  box-shadow: 0 16px 28px rgba(0,0,0,.5);
  transition: transform .18s ease, box-shadow .18s ease;
}

.featured-books a:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 38px rgba(0,0,0,.6);
}

.featured-books img,
.book-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* HOMEPAGE CARDS */

.homepage-grid {
  max-width: 1120px;
  margin: 0 auto;
  padding: 26px 24px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.card {
  background: rgba(8, 23, 32, .92);
  border: 1px solid rgba(199,149,63,.45);
  border-radius: 0;
  box-shadow: var(--shadow);
  padding: 28px;
  color: var(--paper);
}

.current-review-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.current-review-cover {
  width: 170px;
  height: 255px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 16px 28px rgba(0,0,0,.42);
  background: #f7f2eb;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .8rem;
}

.eyebrow::before,
.eyebrow::after {
  content: "✦";
  color: var(--gold);
  margin: 0 10px;
}

.title-score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
}

h2,
h3 {
  margin: 0 0 8px;
  color: var(--paper);
}

.current-review-card h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1;
}

.muted {
  margin: 0;
  color: rgba(255,248,237,.78);
}

.score-circle {
  width: 72px;
  height: 72px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.25rem;
  white-space: nowrap;
  flex: 0 0 auto;
}

.spec-list {
  margin-top: 18px;
}

.spec-row {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr);
  gap: 12px;
  margin: 8px 0;
  align-items: baseline;
}

.spec-row span {
  color: var(--paper);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.spec-row strong {
  color: rgba(255,248,237,.84);
  font-weight: 700;
}

.green {
  color: #a6b38f !important;
}

/* BUTTONS */

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button,
.buy-link,
.browse-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 4px;
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--gold);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(8,23,32,.18);
}

.button.secondary {
  background: var(--gold);
  color: var(--deep-navy);
}

.button:hover,
.buy-link:hover,
.browse-button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep-navy);
}

/* RATING / ABOUT */

.rating-card h2,
.about-panel h2,
.library-card h2 {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 1.2rem;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(199,149,63,.35);
  margin-bottom: 18px;
}

.rating-list {
  display: grid;
  gap: 16px;
}

.rating-list div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
}

.rating-list img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.rating-list p {
  margin: 0;
  line-height: 1.35;
  color: rgba(255,248,237,.86);
}

.rating-list strong {
  color: var(--paper);
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
}

/* ABOUT PANEL */

.about-panel {
  max-width: 1120px;
  margin: 26px auto 0;
  padding: 28px 34px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: 26px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.about-panel p {
  max-width: 760px;
  margin: 0 0 14px;
  line-height: 1.7;
  color: rgba(255,248,237,.86);
}

.about-panel strong,
.about-tagline {
  color: var(--paper);
}

.about-art {
  min-height: 260px;
  background:
    linear-gradient(90deg, rgba(8,23,32,.25), rgba(8,23,32,0)),
    url("../images/assets/bookcase-asset.png") center / cover no-repeat;
  border-left: 1px solid rgba(199,149,63,.28);
}

.browse-wrap {
  text-align: center;
  margin: 30px auto 0;
  max-width: 1120px;
  padding: 0 24px;
}

.browse-button {
  min-width: min(520px, 100%);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

/* INNER PAGES */

.page-main {
  max-width: none;
  margin: 0;
  padding: 34px 24px 46px;
  background:
    linear-gradient(180deg, rgba(7,22,31,.98), rgba(15,34,48,.98)),
    var(--deep-navy);
  min-height: calc(100vh - 160px);
}

.page-hero {
  max-width: 980px;
  margin: 0 auto 24px;
  text-align: center;
  padding: 34px 24px;
  border: 1px solid rgba(199,149,63,.38);
  background: rgba(255,248,237,.94);
  color: var(--text);
  box-shadow: var(--soft-shadow);
}

.page-hero h1 {
  color: var(--ink);
}

.page-hero p {
  margin-left: auto;
  margin-right: auto;
}

.filters {
  max-width: 1120px;
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 16px;
}

.filters label {
  display: grid;
  gap: 8px;
  color: var(--paper);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

select {
  width: 100%;
  padding: 11px 10px;
  border: 1px solid rgba(199,149,63,.45);
  border-radius: 4px;
  background: var(--paper);
  color: var(--text);
}

.book-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, 185px);
  justify-content: center;
  gap: 28px 24px;
}

.book-card {
  width: 185px;
  padding: 14px 14px 18px;
  border: 1px solid rgba(199,149,63,.45);
  background: rgba(8, 23, 32, .92);
  box-shadow: var(--soft-shadow);
  color: var(--paper);
}

.book-card[hidden] {
  display: none;
}

.book-cover {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3.05;
  overflow: hidden;
  border-radius: 4px;
  background: #f7f2eb;
  box-shadow: 0 8px 16px rgba(8,23,32,.16);
}

.book-card .book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-card h3 {
  margin: 14px 0 4px;
  text-align: center;
  font-size: 1.2rem;
}

.book-card > p {
  margin: 0 0 12px;
  text-align: center;
  color: rgba(255,248,237,.72);
  font-size: .9rem;
}

.card-specs {
  min-height: 72px;
  display: grid;
  gap: 5px;
  margin: 12px 0;
  padding: 12px;
  border: 1px solid rgba(199,149,63,.25);
  background: rgba(255,248,237,.04);
  font-size: .82rem;
}

.card-specs span {
  display: flex;
  gap: 4px;
}

.card-specs strong {
  color: var(--gold) !important;
}

.book-actions {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.book-actions .button,
.book-actions .buy-link {
  width: 100%;
  min-height: 38px;
  padding: 0 14px;
  font-size: .82rem;
}

/* RATING PAGE */

.rating-page,
.simple-page {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.75;
}

.rating-page h2,
.simple-page h1 {
  margin-top: 28px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.score-list p {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(199,149,63,.25);
}

/* SIMPLE ABOUT PAGE COMPATIBILITY */

.page-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(7,22,31,.98), rgba(15,34,48,.98)),
    var(--deep-navy);
}

.simple-page {
  padding: 56px 24px;
  color: var(--paper);
}

.simple-page p {
  color: rgba(255,248,237,.85);
}

/* FOOTER */

.site-footer {
  text-align: center;
  color: rgba(255,248,237,.72);
  background: var(--deep-navy);
  border-top: 1px solid rgba(199,149,63,.35);
  padding: 28px 24px;
  font-size: .92rem;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .hero-divider {
    display: none;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .homepage-grid,
  .about-panel {
    grid-template-columns: 1fr;
  }

  .about-art {
    min-height: 220px;
    border-left: none;
    border-top: 1px solid rgba(199,149,63,.28);
  }
}

@media (max-width: 760px) {
  .top-nav {
    grid-template-columns: 1fr;
    padding: 14px 18px;
    gap: 12px;
  }

  .nav-logo {
    margin: 0 auto;
  }

  nav {
    gap: 18px;
  }

  nav a {
    font-size: .85rem;
  }

  .hero-section {
    padding: 28px 18px;
  }

  .hero-logo {
    width: 330px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .featured-books {
    justify-content: flex-start;
  }

  .featured-books a {
    flex: 0 0 122px;
    width: 122px;
    height: 183px;
  }

  .current-review-card {
    grid-template-columns: 1fr;
  }

  .current-review-cover {
    width: min(220px, 100%);
    height: auto;
    justify-self: center;
  }

  .title-score-row {
    align-items: flex-start;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

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

  .book-grid {
    grid-template-columns: repeat(auto-fill, 170px);
  }

  .book-card {
    width: 170px;
  }
}


/* =========================================================
   REAL LOWER SECTION REBUILD — uses new concept-* classes
   This replaces the old homepage-grid/about-panel visual behavior.
   ========================================================= */

.concept-lower {
  max-width: 1180px;
  margin: 24px auto 0 !important;
  padding: 0 24px 0 !important;
  position: relative;
  z-index: 2;
}
.concept-top-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .85fr) !important;
  gap: 24px !important;
  align-items: stretch !important;
}

.concept-review-card,
.concept-rating-card,
.concept-about-strip {
  margin-top: 24px !important;
  min-height: 620px !important;
  display: block !important;
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(
      90deg,
      rgba(7,22,31,.92) 0%,
      rgba(7,22,31,.80) 45%,
      rgba(7,22,31,.45) 100%
    ),
    url("../images/assets/bookcase-asset.png") center right / contain no-repeat !important;

}

.concept-review-card {
  min-height: 0 !important;
  padding: 26px 28px !important;
  display: grid !important;
  grid-template-columns: 175px minmax(0, 1fr) !important;
  gap: 30px !important;
  align-items: center !important;
}

.concept-review-cover {
  width: 175px !important;
  height: 262px !important;
  object-fit: cover !important;
  border-radius: 4px !important;
  box-shadow: 0 14px 24px rgba(0,0,0,.45) !important;
}

.concept-review-copy h2 {
  margin: 0 0 6px !important;
  font-family: Georgia, "Times New Roman", serif !important;
  color: var(--paper) !important;
  font-size: clamp(2.1rem, 3vw, 3.1rem) !important;
  line-height: 1 !important;
}

.concept-review-copy .spec-list {
  margin-top: 18px !important;
}

.concept-review-copy .spec-row {
  grid-template-columns: 165px minmax(0, 1fr) !important;
  margin: 7px 0 !important;
}

.concept-review-copy .button-row {
  margin-top: 22px !important;
}

.concept-review-copy .button,
.concept-review-copy .button.secondary {
  min-height: 40px !important;
  padding: 0 20px !important;
}

.concept-rating-card {
  padding: 26px 26px !important;
}

.concept-rating-card h2 {
  margin: 0 0 18px !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid rgba(199,149,63,.35) !important;
  color: var(--gold) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 1.15rem !important;
  text-transform: uppercase !important;
  letter-spacing: .13em !important;
}

.concept-rating-card .rating-list {
  gap: 14px !important;
}

.concept-rating-card .rating-list div {
  grid-template-columns: 42px 1fr !important;
  gap: 12px !important;
}

.concept-rating-card .rating-list img {
  width: 38px !important;
  height: 38px !important;
}

.concept-rating-card .rating-list p {
  font-size: .88rem !important;
}

.concept-about-strip {
  margin-top: 24px !important;
  min-height: 255px !important;
  display: grid !important;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr) !important;
  overflow: hidden !important;
}

.concept-about-copy {
  padding: 28px 34px !important;
  position: relative !important;
  z-index: 2 !important;
}

.concept-about-copy h2 {
  margin: 0 0 16px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(199,149,63,.35) !important;
  color: var(--gold) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 1.25rem !important;
  text-transform: uppercase !important;
  letter-spacing: .13em !important;
}

.concept-about-copy p {
  max-width: 620px !important;
  margin: 0 0 11px !important;
  color: rgba(255,248,237,.88) !important;
  line-height: 1.55 !important;
  font-size: .9rem !important;
}

.concept-about-copy strong,
.concept-about-copy .about-tagline {
  color: var(--paper) !important;
}

.concept-about-copy .about-tagline {
  color: var(--gold) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
  margin-top: 14px !important;
}
.concept-desk-art {
  display: none !important;
}
.browse-wrap {
  margin-top: 26px !important;
}

@media (max-width: 950px) {
  .concept-top-row,
  .concept-about-strip {
    grid-template-columns: 1fr !important;
  }

  .concept-review-card {
    grid-template-columns: 150px minmax(0, 1fr) !important;
  }

  .concept-review-cover {
    width: 150px !important;
    height: 225px !important;
  }

.concept-desk-art {
  position: relative;
  min-height: 255px;
  background:
    linear-gradient(
      rgba(7,22,31,.55),
      rgba(7,22,31,.55)
    ),
    url("../images/assets/bookcase-asset.png") center / cover no-repeat;
  border-left: 1px solid rgba(199,149,63,.30);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 650px) {
  .concept-review-card {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .concept-review-cover {
    justify-self: center !important;
    width: min(220px, 80vw) !important;
    height: auto !important;
  }

  .concept-review-copy .title-score-row {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  .concept-review-copy .spec-row {
    grid-template-columns: 1fr !important;
  }

 .concept-about-copy {
  padding: 28px 34px !important;
  position: relative !important;
  z-index: 2 !important;
  max-width: 650px !important;
}
.bookcase-quote {
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
  color: #fff8ed;
  padding: 24px;
  background: rgba(7,22,31,.72);
  border: 1px solid rgba(199,149,63,.45);
}

.bookcase-quote h3 {
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 1.05;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.bookcase-quote p {
  font-size: .95rem;
  line-height: 1.55;
  margin: 0;
}
  }
}
.bookcase-quote {
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
  color: #fff8ed;
  padding: 24px;
  background: rgba(7,22,31,.72);
  border: 1px solid rgba(199,149,63,.45);
}

.bookcase-quote h3 {
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 1.05;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.bookcase-quote p {
  font-size: .95rem;
  line-height: 1.55;
  margin: 0;
}
.concept-review-card,
.concept-rating-card {
  margin-top: 0 !important;
  min-height: 0 !important;
  background: rgba(7,22,31,.90) !important;
  border: 1px solid rgba(199,149,63,.50) !important;
  box-shadow: 0 18px 36px rgba(0,0,0,.30) !important;
  color: var(--paper) !important;
}

.concept-rating-card {
  display: block !important;
}

.concept-rating-card h2 {
  display: block !important;
  width: 100% !important;
  margin: 0 0 22px !important;
}

.concept-rating-card .rating-list {
  display: grid !important;
  gap: 18px !important;
}

.concept-rating-card .rating-list div {
  display: grid !important;
  grid-template-columns: 52px 1fr !important;
  align-items: center !important;
  gap: 16px !important;
}

.concept-rating-card .text-link {
  display: inline-block !important;
  margin-top: 28px !important;
}
.concept-about-strip {
  background:
    linear-gradient(
      90deg,
      rgba(7,22,31,.96) 0%,
      rgba(7,22,31,.86) 42%,
      rgba(7,22,31,.35) 100%
    ),
    url("../images/assets/bookcase-asset.png") center right / contain no-repeat !important;
}

.concept-about-copy {
  max-width: 720px !important;
}
.compact-header {
  background: linear-gradient(180deg, var(--deep-navy), var(--navy)) !important;
  border-bottom: 2px solid var(--gold) !important;
  min-height: 92px !important;
  padding: 12px 46px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.compact-header .site-logo-img,
.compact-header .small-logo,
.compact-header .nav-logo {
  width: 190px !important;
  max-height: 72px !important;
  object-fit: contain !important;
}

.compact-header nav a {
  color: var(--paper) !important;
  text-shadow: 0 1px 4px rgba(0,0,0,.45) !important;
}

.compact-header nav a.active,
.compact-header nav a:hover {
  color: var(--gold) !important;
}
.page-hero {
  max-width: 1120px !important;
  margin: 28px auto 26px !important;
  padding: 38px 28px !important;
  background: rgba(7,22,31,.90) !important;
  color: var(--paper) !important;
  border: 1px solid rgba(199,149,63,.45) !important;
}

.page-hero h1 {
  color: var(--paper) !important;
}

.page-hero p {
  color: rgba(255,248,237,.86) !important;
}
.affiliate-note,
.copyright-note {
  max-width: 720px;
  margin: 8px auto;
  line-height: 1.45;
  font-size: .85rem;
  opacity: .85;
}
.buy-link {
  display: none !important;
}
.button.secondary {
  display: none !important;
}
form {
  max-width: 700px;
  margin-top: 30px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  margin-bottom: 18px;
  border: 1px solid rgba(199,149,63,.4);
  background: rgba(255,248,237,.95);
  border-radius: 6px;
}

button {
  padding: 12px 22px;
  border: none;
  cursor: pointer;
}
.contact-page,
.contact-page form {
  margin-left: auto !important;
  margin-right: auto !important;
}

.contact-page {
  max-width: 960px !important;
  text-align: center !important;
}