/* ================================================
   PrintLogReviews.online — Global Stylesheet
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* ── TOKENS ── */
:root {
  --ink:        #13100a;
  --paper:      #faf7f1;
  --warm:       #f3ede2;
  --warm2:      #ede5d8;
  --accent:     #c13120;
  --accent2:    #e04a1a;
  --gold:       #a67c1f;
  --gold-lt:    #c9a03a;
  --mid:        #5e4f3b;
  --muted:      #8c7a63;
  --rule:       #d8cdb8;
  --dark:       #0d0b08;
  --serif:      'Playfair Display', Georgia, serif;
  --body:       'Lora', Georgia, serif;
  --radius:     3px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.8;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── HEADER ── */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 2px 16px rgba(19,16,10,.06);
  position: sticky;
  top: 0;
  z-index: 300;
}
.header-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 46px; height: 46px;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -.4px;
  line-height: 1;
  color: var(--ink);
}
.logo-name span { color: var(--accent); }
.logo-tag {
  display: block;
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: .2rem;
}
.site-nav a {
  font-family: var(--body);
  font-size: .78rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mid);
  padding: .38rem .85rem;
  border-radius: var(--radius);
  transition: color .18s, background .18s;
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--accent);
  background: rgba(193,49,32,.07);
}
.site-nav .btn-contact {
  background: var(--accent);
  color: #fff;
  margin-left: .4rem;
  padding: .42rem 1.1rem;
}
.site-nav .btn-contact:hover {
  background: var(--accent2);
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── MASTHEAD (home hero) ── */
.masthead {
  background: var(--warm);
  border-bottom: 3px double var(--rule);
  padding: 5.5rem 2rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.masthead::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 31px, rgba(193,149,80,.13) 31px, rgba(193,149,80,.13) 32px);
  pointer-events: none;
}
.masthead::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,235,200,.3), transparent 70%);
  pointer-events: none;
}
.masthead-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 36px; height: 1px;
  background: var(--gold-lt);
}
.masthead h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.5px;
  margin-bottom: 1.2rem;
}
.masthead h1 em { font-style: italic; color: var(--accent); }
.masthead p {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-style: italic;
  line-height: 1.8;
}
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  color: var(--gold-lt);
}
.ornament::before, .ornament::after {
  content: '';
  width: 60px; height: 1px;
  background: currentColor;
}

/* ── TOPIC BAR ── */
.topic-bar {
  background: var(--dark);
  padding: 1rem 0;
}
.topic-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.topic-label {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 700;
  flex-shrink: 0;
}
.topic-links { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.topic-links a {
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(250,247,241,.6);
  transition: color .18s;
}
.topic-links a:hover { color: var(--paper); }

/* ── SHARED LAYOUT ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-label {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}
.section-label::after {
  content: '';
  flex: 1; height: 1px;
  background: var(--rule);
}

/* ── CATEGORY PILLS ── */
.pill {
  display: inline-block;
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 3px 11px 2px;
  border-radius: var(--radius);
  color: #fff;
  margin-bottom: .9rem;
}
.pill-error   { background: var(--accent); }
.pill-ink     { background: var(--gold); }
.pill-paper   { background: #4a6840; }
.pill-wifi    { background: #2a5f8e; }
.pill-driver  { background: #4e3e7a; }
.pill-quality { background: #3e6470; }
.pill-maint   { background: #7a4e3e; }
.pill-buying  { background: #3e5040; }

/* ── META ── */
.meta {
  font-size: .74rem;
  letter-spacing: .04em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .8rem;
}
.meta-dot { color: var(--rule); }

/* ── READ MORE LINK ── */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1.5px solid rgba(193,49,32,.4);
  padding-bottom: 1px;
  transition: gap .2s, border-color .2s;
}
.read-more:hover { gap: .85rem; border-color: var(--accent); }

/* ── FEATURED SECTION ── */
.featured-section {
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--rule);
}
.featured-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.hero-card { padding-right: 2rem; border-right: 1px solid var(--rule); }
.hero-card h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -.3px;
}
.hero-card h2 a:hover { color: var(--accent); transition: color .18s; }
.hero-card .excerpt {
  font-size: .97rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}
.hero-card .meta { margin-bottom: 1.6rem; }

/* Side list */
.side-list { display: flex; flex-direction: column; }
.side-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
}
.side-item:first-child { border-top: 1px solid var(--rule); }
.side-tag {
  display: block;
  font-size: .58rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: .35rem;
}
.side-item h3 {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: .3rem;
}
.side-item h3 a:hover { color: var(--accent); transition: color .18s; }
.side-item .meta { font-size: .7rem; }

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 3.5rem 0;
  margin: 3.5rem 0;
  text-align: center;
}
.intro-strip-inner {
  max-width: 700px;
  margin: 0 auto;
}
.intro-strip h2 {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: .85rem;
}
.intro-strip p {
  color: var(--mid);
  font-style: italic;
  line-height: 1.85;
  font-size: .97rem;
}
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  font-size: .65rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}
.badge svg { color: var(--gold); }

/* ── BLOG GRID ── */
.blogs-section { padding: 4rem 0 5rem; }
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem 2rem;
}
.blog-card {
  border-top: 2px solid var(--ink);
  padding-top: 1.2rem;
  transition: transform .2s;
}
.blog-card:hover { transform: translateY(-3px); }
.blog-card h3 {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: .65rem;
}
.blog-card h3 a:hover { color: var(--accent); transition: color .18s; }
.blog-card .excerpt {
  font-size: .88rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: .9rem;
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: var(--warm);
  border-bottom: 3px double var(--rule);
  padding: 4.5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 31px, rgba(193,149,80,.1) 31px, rgba(193,149,80,.1) 32px);
  pointer-events: none;
}
.page-header-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}
.page-header .eyebrow { margin-bottom: 1.2rem; }
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.4px;
  margin-bottom: .9rem;
}
.page-header h1 em { font-style: italic; color: var(--accent); }
.page-header .deck {
  font-size: 1rem;
  color: var(--mid);
  font-style: italic;
  max-width: 580px;
  line-height: 1.8;
}

/* ── BLOG POST LAYOUT ── */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 5rem;
  padding: 4rem 0 5rem;
  align-items: start;
}
.post-body h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 .75rem;
  color: var(--ink);
}
.post-body h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2rem 0 .6rem;
  color: var(--ink);
}
.post-body p {
  color: var(--mid);
  margin-bottom: 1.3rem;
  line-height: 1.85;
  font-size: .97rem;
}
.post-body p:first-of-type { font-size: 1.05rem; color: var(--ink); }
.post-body ul, .post-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.4rem;
  color: var(--mid);
}
.post-body li { margin-bottom: .4rem; line-height: 1.75; font-size: .95rem; }
.post-body a { color: var(--accent); border-bottom: 1px solid rgba(193,49,32,.3); transition: border-color .18s; }
.post-body a:hover { border-color: var(--accent); }

/* Steps */
.steps { list-style: none; padding: 0; counter-reset: step; }
.steps li {
  counter-increment: step;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}
.steps li::before {
  content: counter(step);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--serif);
  font-size: .78rem;
  font-weight: 700;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .15rem;
}

/* Tip / Warning / Info boxes */
.tip-box, .warning-box, .info-box {
  border-left: 3px solid;
  padding: 1.1rem 1.4rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .91rem;
}
.tip-box     { border-color: #4a6840; background: rgba(74,104,64,.07); }
.warning-box { border-color: var(--accent); background: rgba(193,49,32,.06); }
.info-box    { border-color: var(--gold); background: rgba(166,124,31,.07); }
.tip-box p, .warning-box p, .info-box p { margin: 0; color: var(--mid); }
.box-label {
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: .4rem;
  display: block;
}
.tip-box .box-label     { color: #4a6840; }
.warning-box .box-label { color: var(--accent); }
.info-box .box-label    { color: var(--gold); }

/* Sidebar */
.post-sidebar { position: sticky; top: 100px; }
.sidebar-block {
  background: var(--warm);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--ink);
  padding: 1.6rem;
  margin-bottom: 1.8rem;
}
.sidebar-block h4 {
  font-family: var(--serif);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--rule);
}
.toc-list { list-style: none; padding: 0; }
.toc-list li { margin-bottom: .4rem; }
.toc-list a {
  font-size: .83rem;
  color: var(--mid);
  transition: color .18s;
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.toc-list a::before {
  content: '—';
  color: var(--rule);
  font-size: .7rem;
  flex-shrink: 0;
}
.toc-list a:hover { color: var(--accent); }
.related-list { list-style: none; padding: 0; }
.related-list li { border-bottom: 1px solid var(--rule); padding: .55rem 0; }
.related-list li:last-child { border-bottom: none; }
.related-list a { font-size: .83rem; color: var(--mid); line-height: 1.4; transition: color .18s; }
.related-list a:hover { color: var(--accent); }

/* ── ABOUT PAGE ── */
.about-intro {
  max-width: 740px;
  padding: 4rem 0 3rem;
}
.about-intro p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 1.3rem;
}
.about-intro p:first-of-type { font-size: 1.1rem; color: var(--ink); }
.team-section { padding: 3rem 0 5rem; border-top: 1px solid var(--rule); }
.team-section h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card {
  background: var(--warm);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--ink);
  padding: 2rem 1.5rem;
  text-align: center;
}
.team-avatar {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.team-card h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .25rem;
}
.team-card .role {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: .6rem;
}
.team-card p { font-size: .84rem; color: var(--muted); line-height: 1.7; }

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: 4rem 0 5rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-info p {
  font-size: .96rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 1.3rem;
}
.contact-cards { display: grid; gap: 1.4rem; }
.contact-card {
  background: var(--warm);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--accent);
  padding: 1.6rem 1.8rem;
}
.contact-card h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.contact-card h4 svg { color: var(--accent); flex-shrink: 0; }
.contact-card p { font-size: .86rem; color: var(--mid); line-height: 1.7; margin: 0; }
.contact-card .email-link {
  display: inline-block;
  margin-top: .7rem;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 1.5px solid rgba(193,49,32,.4);
  transition: border-color .18s;
}
.contact-card .email-link:hover { border-color: var(--accent); }

/* ── LEGAL PAGES ── */
.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}
.legal-body h2 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  margin: 2.8rem 0 .7rem;
  color: var(--ink);
}
.legal-body p {
  font-size: .94rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.legal-body ul {
  padding-left: 1.4rem;
  margin-bottom: 1.2rem;
  color: var(--mid);
}
.legal-body li { margin-bottom: .35rem; font-size: .93rem; line-height: 1.75; }
.legal-last-updated {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--warm);
  border: 1px solid var(--rule);
  padding: .35rem .9rem;
  margin-bottom: 2rem;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  color: rgba(250,247,241,.5);
  padding: 4rem 0 2rem;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.8rem;
  border-bottom: 1px solid rgba(250,247,241,.08);
  margin-bottom: 1.8rem;
}
.footer-brand .logo-name { color: var(--paper); font-size: 1.3rem; display: block; margin-bottom: .85rem; }
.footer-brand p { font-size: .84rem; line-height: 1.75; color: rgba(250,247,241,.4); max-width: 280px; }
.footer-col h4 {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a { font-size: .84rem; color: rgba(250,247,241,.5); transition: color .18s; }
.footer-col ul a:hover { color: var(--paper); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .74rem;
  color: rgba(250,247,241,.3);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom a { color: rgba(250,247,241,.35); transition: color .18s; }
.footer-bottom a:hover { color: var(--paper); }

/* ── RESPONSIVE ── */
@media (max-width: 1060px) {
  .blogs-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .post-layout { grid-template-columns: 1fr; gap: 3rem; }
  .post-sidebar { position: static; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 780px) {
  .featured-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-card { padding-right: 0; border-right: none; border-bottom: 1px solid var(--rule); padding-bottom: 2.5rem; margin-bottom: 0; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 640px) {
  html { font-size: 16px; }
  .header-wrap { padding: 0 1.25rem; }
  .site-nav {
    display: none;
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    gap: .1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; padding: .6rem .5rem; }
  .hamburger { display: flex; }
  .masthead { padding: 3.5rem 1.25rem 3rem; }
  .container { padding: 0 1.25rem; }
  .blogs-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .8rem; text-align: center; }
  .trust-badges { gap: 1.8rem; }
}
