/* =================================================================
   Borrowed Winter — global stylesheet
   A Singapore guide to going cold.
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ink:        #1a1a1a;
  --ink-soft:   #4a4a4a;
  --ink-muted:  #767676;
  --paper:      #fbfaf7;
  --cream:      #f4f0e8;
  --rule:       #e6e1d6;
  --accent:     #b13a3a;
  --accent-soft:#faece9;
  --serif:      "Fraunces", Georgia, serif;
  --sans:       "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --max:        1240px;
  --shadow-sm:  0 2px 8px rgba(26, 26, 26, 0.04);
  --shadow:     0 8px 28px rgba(26, 26, 26, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); letter-spacing: -0.5px; line-height: 1.1; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
@media (max-width: 600px) { .wrap { padding: 0 18px; } }

/* ---------------- HEADER + MASTHEAD ---------------- */
header.site {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 22px 0 18px;
  position: relative;
}
.masthead {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
}
@media (max-width: 880px) {
  .masthead { grid-template-columns: auto 1fr auto; gap: 14px; }
}
.nav-left, .nav-right {
  display: flex; gap: 24px; font-size: 13px; font-weight: 500;
  letter-spacing: 0.3px; align-items: center;
}
.nav-right { justify-content: flex-end; }
.nav-left a, .nav-right a { text-decoration: none; color: var(--ink-soft); }
.nav-left a:hover, .nav-right a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: white !important;
  padding: 9px 16px; border-radius: 3px;
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.3px;
}
.nav-cta:hover { background: #c44848; }

@media (max-width: 880px) {
  .nav-left, .nav-right { display: none; }
  .nav-right.mobile-show { display: flex; }
  .nav-right.mobile-show a:not(.nav-cta) { display: none; }
}

/* burger */
.burger {
  display: none; background: none; border: none;
  font-size: 22px; cursor: pointer; color: var(--ink);
  padding: 4px 8px;
}
@media (max-width: 880px) { .burger { display: inline-block; } }

/* mobile menu drawer */
.mobile-menu {
  display: none; padding: 18px 0 22px; border-top: 1px solid var(--rule);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 28px;
  color: var(--ink); text-decoration: none;
  font-size: 15px; font-weight: 500;
  border-bottom: 1px solid var(--rule);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a.cta { color: var(--accent); font-weight: 600; }

/* ---------------- LOGO ---------------- */
.logo {
  font-family: var(--serif); font-weight: 800; font-size: 36px;
  letter-spacing: -1.5px; text-align: center;
  text-decoration: none; color: var(--ink); line-height: 1;
}
.logo .dot { color: var(--accent); }
.logo small {
  display: block; font-family: var(--sans);
  font-size: 11px; letter-spacing: 3px; font-weight: 500;
  color: var(--ink-muted); text-transform: uppercase;
  margin-top: 6px;
}
@media (max-width: 880px) { .logo { font-size: 26px; } .logo small { display: none; } }

/* ---------------- SECTION SUB-NAV ---------------- */
.sectionnav {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  padding: 12px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.sectionnav-inner {
  display: flex; gap: 28px; justify-content: center;
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase; white-space: nowrap;
}
.sectionnav-inner a {
  color: var(--ink-soft); text-decoration: none;
  padding-bottom: 4px; border-bottom: 2px solid transparent;
}
.sectionnav-inner a:hover, .sectionnav-inner a.active {
  color: var(--accent); border-bottom-color: var(--accent);
}

/* ---------------- HERO FEATURES ---------------- */
.hero-feature {
  padding: 50px 0 60px;
  border-bottom: 1px solid var(--rule);
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 50px; align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 30px; } }

.hero-img {
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: var(--cream);
}
.hero-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-img-caption {
  position: absolute; bottom: 18px; left: 18px;
  color: white; font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  background: rgba(0,0,0,0.4); padding: 6px 12px; border-radius: 3px;
  backdrop-filter: blur(6px); font-weight: 500;
}
.hero-meta {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 14px;
}
.hero-title {
  font-size: clamp(34px, 4.8vw, 56px); font-weight: 800;
  margin-bottom: 18px;
}
.hero-title a { text-decoration: none; }
.hero-title a:hover { color: var(--accent); }
.hero-dek {
  font-family: var(--serif); font-size: 19px; line-height: 1.45;
  color: var(--ink-soft); font-weight: 400; margin-bottom: 22px;
  max-width: 560px;
}
.byline {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--ink-muted);
}
.byline-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.byline strong { color: var(--ink); font-weight: 600; }

/* ---------------- TRUST BAND ---------------- */
.trustband {
  background: var(--cream); padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.trustband-inner {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-soft);
}
.trustband-inner span { display: inline-flex; align-items: center; gap: 8px; }
.trustband-inner em { color: var(--accent); font-style: normal; font-weight: 700; margin-right: 4px; }

/* ---------------- LATEST GRID ---------------- */
.latest { padding: 60px 0 40px; }
.section-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 36px; padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}
.section-head h2 {
  font-size: 28px; font-weight: 800; letter-spacing: -0.5px;
}
.section-head a {
  font-size: 13px; text-decoration: none; color: var(--accent);
  font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
}

.article-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 30px;
}
@media (max-width: 920px) { .article-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .article-grid { grid-template-columns: 1fr; } }

.card {
  cursor: pointer; text-decoration: none; color: inherit;
  display: block;
}
.card-img {
  aspect-ratio: 16/10;
  border-radius: 3px;
  margin-bottom: 16px;
  overflow: hidden;
  background: var(--cream);
}
.card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.card:hover .card-img img { transform: scale(1.03); }

.card-cat {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 8px;
}
.card-title {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  line-height: 1.2; letter-spacing: -0.4px; margin-bottom: 8px;
  color: var(--ink);
}
.card:hover .card-title { color: var(--accent); }
.card-dek {
  font-size: 14px; color: var(--ink-soft); line-height: 1.5;
  margin-bottom: 10px;
}
.card-meta {
  font-size: 12px; color: var(--ink-muted);
  display: flex; gap: 8px; align-items: center;
}
.card-meta::before { content: ""; width: 14px; height: 1px; background: var(--ink-muted); }

/* ---------------- PARTNER STRIP ---------------- */
.partnerstrip {
  margin: 60px 0;
  background: var(--ink);
  color: white;
  padding: 50px 30px;
  border-radius: 4px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center;
}
@media (max-width: 800px) { .partnerstrip { grid-template-columns: 1fr; padding: 32px 24px; } }
.partnerstrip h3 {
  font-size: 32px; line-height: 1.15; margin-bottom: 14px;
}
.partnerstrip p {
  color: #c8c2b0; font-size: 16px; margin-bottom: 22px;
  max-width: 480px;
}
.partnerstrip .btn {
  display: inline-block; background: var(--accent); color: white;
  padding: 14px 26px; border-radius: 3px;
  text-decoration: none; font-weight: 600; font-size: 14px;
  letter-spacing: 0.5px;
}
.partnerstrip .btn:hover { background: #c44848; }
.partnerstrip .meta {
  color: #888270; font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; margin-top: 14px;
}
.partnerstrip .kitcard {
  background: var(--paper); color: var(--ink);
  padding: 22px; border-radius: 3px;
}
.partnerstrip .kitcard small {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
}
.partnerstrip .kitcard h4 { font-size: 19px; margin: 6px 0 12px; }
.partnerstrip .kitcard ul { list-style: none; font-size: 14px; }
.partnerstrip .kitcard li {
  padding: 7px 0; border-bottom: 1px dashed var(--rule);
  display: flex; justify-content: space-between;
}
.partnerstrip .kitcard li:last-child { border-bottom: none; }
.partnerstrip .kitcard .price { color: var(--accent); font-weight: 700; }

/* ---------------- DESTINATIONS GRID ---------------- */
.destinations { padding: 30px 0 60px; }
.dest-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 920px) { .dest-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .dest-grid { grid-template-columns: 1fr; } }
.dest-tile {
  aspect-ratio: 1/1; border-radius: 4px;
  color: white; padding: 22px;
  display: flex; flex-direction: column; justify-content: space-between;
  cursor: pointer; position: relative; overflow: hidden;
  text-decoration: none;
}
.dest-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.dest-tile:hover img { transform: scale(1.05); }
.dest-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 40%, rgba(0,0,0,0.65) 100%);
}
.dest-tile > * { position: relative; z-index: 1; }
.dest-tile small {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.95;
}
.dest-tile h3 { font-size: 28px; line-height: 1.05; margin-bottom: 4px; }
.dest-tile .count { font-size: 12px; opacity: 0.95; }

/* ---------------- ARTICLE PAGE ---------------- */
.article-feature {
  background: white;
  padding: 60px 0 80px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.article-inner { max-width: 760px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 600px) { .article-inner { padding: 0 18px; } }

.article-eyebrow {
  text-align: center; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 14px;
}
.article-h1 {
  text-align: center; font-size: clamp(30px, 4vw, 46px); font-weight: 800;
  margin-bottom: 18px;
}
.article-dek {
  text-align: center; font-family: var(--serif); font-size: 20px; line-height: 1.4;
  color: var(--ink-soft); margin-bottom: 28px; font-weight: 400;
  max-width: 640px; margin-left: auto; margin-right: auto;
}
.article-byline {
  text-align: center; font-size: 13px; color: var(--ink-muted);
  padding-bottom: 28px; border-bottom: 1px solid var(--rule);
  margin-bottom: 36px;
}
.article-byline strong { color: var(--ink); font-weight: 600; }

.article-hero-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: 4px; margin-bottom: 8px;
}
.article-hero-caption {
  font-size: 12px; color: var(--ink-muted);
  margin-bottom: 36px; text-align: center; font-style: italic;
}

.article-body p,
.article-body h2,
.article-body h3,
.article-body ul,
.article-body ol,
.article-body .pullquote,
.article-body .gearbox {
  margin-bottom: 24px;
}
.article-body p {
  font-family: var(--serif); font-size: 19px; line-height: 1.65;
  color: var(--ink);
}
.article-body p strong { font-weight: 600; }
.article-body p em { font-style: italic; }
.article-body h2 {
  font-size: 28px; font-weight: 800;
  margin-top: 40px; margin-bottom: 16px;
}
.article-body h3 {
  font-size: 22px; font-weight: 600;
  margin-top: 30px; margin-bottom: 12px;
}
.article-body ul, .article-body ol {
  padding-left: 22px; font-family: var(--serif); font-size: 18px;
}
.article-body ul li, .article-body ol li { margin-bottom: 8px; line-height: 1.6; }
.article-body a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-body a:hover { text-decoration-thickness: 2px; }

.pullquote {
  font-family: var(--serif); font-size: 26px; line-height: 1.3;
  color: var(--ink); font-weight: 400; font-style: italic;
  border-left: 3px solid var(--accent);
  padding: 8px 0 8px 24px;
  margin: 32px 0 !important;
}

/* ---------------- GEAR BOX ---------------- */
.gearbox {
  background: var(--cream);
  border-radius: 4px;
  padding: 28px;
  border-left: 4px solid var(--accent);
  margin: 32px 0 !important;
}
.gearbox-tag {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.gearbox-tag::before { content: "★"; }
.gearbox h4 {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  margin-bottom: 14px; letter-spacing: -0.3px;
}
.gearbox-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px;
  list-style: none; padding: 0 !important; font-family: var(--sans) !important;
  font-size: 14px !important; margin-bottom: 20px !important;
}
@media (max-width: 600px) { .gearbox-list { grid-template-columns: 1fr; } }
.gearbox-list li {
  padding: 8px 0; border-bottom: 1px dashed #d8d2c2;
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0 !important;
}
.gearbox-list .price { color: var(--accent); font-weight: 700; font-size: 13px; }
.gearbox-cta {
  display: inline-block; background: var(--ink); color: white !important;
  padding: 12px 22px; border-radius: 3px;
  text-decoration: none !important; font-weight: 600; font-size: 14px;
  font-family: var(--sans);
}
.gearbox-cta:hover { background: var(--accent); }
.gearbox-fineprint {
  font-size: 11px !important; color: var(--ink-muted) !important;
  margin-top: 12px !important; font-family: var(--sans) !important;
  line-height: 1.5 !important;
}
.gearbox-body {
  font-family: var(--sans) !important;
  font-size: 15px !important;
  margin-bottom: 16px !important;
  color: var(--ink-soft);
}

/* ---------------- INLINE SHARE ---------------- */
.share-row {
  display: flex; gap: 14px; padding: 24px 0;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  margin: 40px 0 30px; align-items: center;
  font-size: 13px; color: var(--ink-muted);
}

/* ---------------- RELATED ---------------- */
.related { padding: 60px 0 80px; background: var(--paper); }
.related h3 {
  font-size: 22px; font-weight: 800;
  margin-bottom: 28px; padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
  letter-spacing: -0.3px;
}

/* ---------------- HUB PAGES ---------------- */
.hub-hero {
  padding: 70px 0;
  background: var(--paper);
  position: relative; overflow: hidden;
}
.hub-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
@media (max-width: 900px) { .hub-hero-grid { grid-template-columns: 1fr; gap: 32px; } }
.hub-hero-img {
  aspect-ratio: 4/3; border-radius: 4px; overflow: hidden;
}
.hub-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hub-hero h1 {
  font-size: clamp(38px, 5.5vw, 64px); font-weight: 800;
  margin-bottom: 18px; line-height: 1.05;
}
.hub-hero p {
  font-family: var(--serif); font-size: 19px; line-height: 1.6;
  color: var(--ink-soft); max-width: 520px;
  margin-bottom: 14px;
}
.hub-hero .meta {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 14px;
}
.hub-intro { padding: 40px 0 30px; }
.hub-intro-inner { max-width: 760px; margin: 0 auto; }
.hub-intro p {
  font-family: var(--serif); font-size: 19px; line-height: 1.65;
  margin-bottom: 22px;
}

/* ---------------- NEWSLETTER ---------------- */
.newsletter {
  padding: 70px 0;
  background: var(--cream);
  text-align: center;
}
.newsletter h2 {
  font-size: clamp(28px, 4vw, 38px); font-weight: 800;
  margin-bottom: 12px; max-width: 620px; margin-left: auto; margin-right: auto;
}
.newsletter > .wrap > p, .newsletter p.intro {
  color: var(--ink-soft); margin-bottom: 28px;
  max-width: 520px; margin-left: auto; margin-right: auto;
  font-family: var(--serif); font-size: 18px;
}
.nl-form {
  max-width: 520px; margin: 0 auto;
  display: flex; gap: 10px;
}
@media (max-width: 600px) { .nl-form { flex-direction: column; } }
.nl-form input {
  flex: 1; padding: 16px 20px;
  border: 1.5px solid var(--rule); border-radius: 3px;
  font-family: var(--sans); font-size: 15px;
  background: white;
}
.nl-form input:focus { outline: none; border-color: var(--accent); }
.nl-form button {
  padding: 16px 28px; border-radius: 3px;
  background: var(--ink); color: white; border: none;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  letter-spacing: 0.5px; cursor: pointer; white-space: nowrap;
}
.nl-form button:hover { background: var(--accent); }
.nl-fineprint { font-size: 12px !important; color: var(--ink-muted); margin-top: 14px !important; font-family: var(--sans) !important; }

/* ---------------- FOOTER ---------------- */
footer {
  background: var(--ink);
  color: #c8c2b0;
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-logo {
  color: white; font-family: var(--serif); font-weight: 800;
  font-size: 28px; margin-bottom: 12px; letter-spacing: -1px;
}
.footer-logo .dot { color: var(--accent); }
footer p { font-size: 14px; line-height: 1.6; max-width: 280px; }
footer h5 {
  color: white; font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 700; margin-bottom: 14px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; font-size: 14px; }
footer ul li a { color: #c8c2b0; text-decoration: none; }
footer ul li a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid #3a3a3a;
  margin-top: 40px; padding-top: 24px;
  text-align: center; font-size: 12px;
}
.footer-bottom .partner {
  color: var(--accent); text-decoration: none; font-weight: 600;
}

/* ---------------- UTILITY PAGES (about, sponsor, etc) ---------------- */
.page {
  padding: 70px 0 90px;
  max-width: 760px; margin: 0 auto;
}
.page h1 {
  font-size: clamp(34px, 5vw, 52px); font-weight: 800;
  margin-bottom: 16px;
}
.page .lead {
  font-family: var(--serif); font-size: 22px; line-height: 1.45;
  color: var(--ink-soft); margin-bottom: 30px;
}
.page p {
  font-family: var(--serif); font-size: 18px; line-height: 1.65;
  margin-bottom: 22px;
}
.page h2 {
  font-size: 24px; font-weight: 800;
  margin-top: 36px; margin-bottom: 14px;
}
.page ul {
  font-family: var(--serif); font-size: 18px; padding-left: 22px;
  margin-bottom: 22px;
}
.page ul li { margin-bottom: 8px; line-height: 1.6; }

/* ---------------- 404 ---------------- */
.fourohfour {
  padding: 90px 0; text-align: center; max-width: 600px; margin: 0 auto;
}
.fourohfour h1 {
  font-size: clamp(60px, 10vw, 110px); font-weight: 800;
  color: var(--accent); line-height: 1; margin-bottom: 14px;
}
.fourohfour p { font-family: var(--serif); font-size: 20px; color: var(--ink-soft); margin-bottom: 24px; }
.fourohfour a {
  display: inline-block; padding: 12px 24px;
  background: var(--ink); color: white; text-decoration: none;
  border-radius: 3px; font-weight: 600; font-size: 14px;
}

/* ---------------- TRIP BUILDER PROMO BANNER ---------------- */
.builder-promo {
  background: linear-gradient(135deg, var(--accent), #8a2828);
  color: white;
  padding: 50px 30px;
  border-radius: 4px;
  margin: 50px 0;
  display: grid; grid-template-columns: 2fr 1fr; gap: 30px; align-items: center;
}
@media (max-width: 800px) { .builder-promo { grid-template-columns: 1fr; padding: 32px 22px; } }
.builder-promo h3 {
  font-size: 28px; line-height: 1.15; margin-bottom: 12px;
}
.builder-promo p { color: rgba(255,255,255,0.92); font-size: 16px; margin-bottom: 0; max-width: 440px; }
.builder-promo a {
  display: inline-block; background: white; color: var(--accent);
  padding: 14px 26px; border-radius: 3px;
  text-decoration: none; font-weight: 700; font-size: 15px;
  letter-spacing: 0.3px; white-space: nowrap;
}
.builder-promo a:hover { background: var(--paper); }

/* ---------------- HUB SIDEBAR ---------------- */
.with-sidebar {
  display: grid; grid-template-columns: 1fr 320px; gap: 50px;
  padding: 40px 0 80px;
}
@media (max-width: 980px) { .with-sidebar { grid-template-columns: 1fr; } }
.sidebar {
  background: var(--cream); padding: 28px;
  border-radius: 4px; height: fit-content;
  position: sticky; top: 20px;
}
.sidebar small {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
}
.sidebar h4 {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  margin: 8px 0 14px;
}
.sidebar p { font-size: 14px; color: var(--ink-soft); margin-bottom: 20px; line-height: 1.6; }
.sidebar a.btn {
  display: inline-block; background: var(--ink); color: white;
  padding: 12px 22px; border-radius: 3px;
  text-decoration: none; font-weight: 600; font-size: 14px;
}
.sidebar a.btn:hover { background: var(--accent); }

/* ---------------- HELPERS ---------------- */
.center { text-align: center; }
.muted { color: var(--ink-muted); }
.hidden { display: none !important; }
