/* ===========================================
   sandbiscuit.com – Main Stylesheet
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ---- Variables ---- */
:root {
  --red:       #b77933;
  --red-dark:  #8f5a20;
  --navy:      #20303a;
  --dark:      #1a1a1a;
  --mid:       #555555;
  --light:     #f5f5f5;
  --border:    #e2e2e2;
  --white:     #ffffff;
  --serif:     'Playfair Display', Georgia, serif;
  --sans:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:    6px;
  --shadow:    0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,.12);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }
ul { list-style: none; }

/* ---- Container ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  letter-spacing: .03em;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.top-bar-left { display: flex; align-items: center; gap: 16px; }
.top-bar-edition { font-weight: 600; color: #fff; }
.top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar-right a { color: rgba(255,255,255,.75); transition: color .2s; }
.top-bar-right a:hover { color: #fff; }
.top-bar-subscribe {
  background: var(--red);
  color: #fff !important;
  padding: 4px 14px;
  border-radius: 4px;
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background .2s;
}
.top-bar-subscribe:hover { background: var(--red-dark) !important; }

/* ========== HEADER / LOGO ========== */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  padding: 18px 0 16px;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-logo { display: flex; flex-direction: column; }
.site-logo-name {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -.02em;
}
.site-logo-name span { color: var(--red); }
.site-logo-tagline {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 4px;
}
.header-ad-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  border: 1px dashed #ccc;
  width: 320px;
  height: 60px;
  border-radius: var(--radius);
  color: #aaa;
  font-size: .75rem;
  flex-shrink: 0;
}

/* ========== PRIMARY NAV ========== */
.primary-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.primary-nav .container {
  display: flex;
  align-items: center;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-menu a {
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 18px;
  display: block;
  border-bottom: 3px solid transparent;
  transition: all .2s;
}
.nav-menu a:hover, .nav-menu a.active {
  color: #fff;
  border-bottom-color: var(--red);
  background: rgba(255,255,255,.05);
}
.nav-menu a.nav-home { border-bottom-color: var(--red); color: #fff; }

/* ========== TICKER ========== */
.ticker {
  background: var(--red);
  color: #fff;
  padding: 8px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.ticker-label {
  background: var(--navy);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 16px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 16px;
}
.ticker-track {
  display: flex;
  animation: ticker-scroll 45s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-size: .82rem;
  font-weight: 500;
  padding-right: 60px;
}
.ticker-item::after { content: '·'; padding-left: 60px; opacity: .5; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== HERO SECTION ========== */
.hero-section { padding: 36px 0 28px; background: var(--white); }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}
.hero-main a { display: block; }
.hero-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.hero-category {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 12px;
  transition: color .2s;
}
.hero-main a:hover .hero-title { color: var(--red); }
.hero-excerpt {
  color: var(--mid);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.hero-meta {
  font-size: .78rem;
  color: #888;
  display: flex;
  gap: 14px;
  align-items: center;
}
.hero-meta span { display: flex; align-items: center; gap: 5px; }

/* Hero sidebar */
.hero-sidebar { display: flex; flex-direction: column; gap: 0; }
.sidebar-story {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-story:last-child { border-bottom: none; }
.sidebar-story a { display: flex; gap: 14px; align-items: flex-start; }
.sidebar-story img {
  width: 90px;
  height: 68px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.sidebar-story-cat {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
}
.sidebar-story-title {
  font-family: var(--serif);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--dark);
  transition: color .2s;
}
.sidebar-story a:hover .sidebar-story-title { color: var(--red); }
.sidebar-story-meta {
  font-size: .72rem;
  color: #888;
  margin-top: 5px;
}

/* ========== SECTION DIVIDER ========== */
.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--red);
}
.section-header h2 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}
.section-header a.see-all {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
  margin-left: auto;
}
.section-header a.see-all:hover { text-decoration: underline; }

/* ========== ARTICLE CARDS ========== */
.articles-section { padding: 36px 0; }
.articles-section + .articles-section { padding-top: 0; }
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card a { display: flex; flex-direction: column; height: 100%; }
.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.card-category {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.card-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--dark);
  margin-bottom: 10px;
  transition: color .2s;
  flex: 1;
}
.card a:hover .card-title { color: var(--red); }
.card-excerpt {
  font-size: .84rem;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta {
  font-size: .72rem;
  color: #999;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.card-meta-dot { opacity: .4; }

/* Featured card (larger) */
.card-featured .card-image { height: 280px; }
.card-featured .card-title { font-size: 1.3rem; }

/* ========== FULL-WIDTH PROMO STRIP ========== */
.promo-strip {
  background: var(--navy);
  color: #fff;
  padding: 40px 0;
  text-align: center;
  margin: 10px 0;
}
.promo-strip h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.promo-strip p {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin: 0 auto 24px;
}
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .2s;
  border: none;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); color: #fff; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: #eee; }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
  margin-left: 12px;
}
.btn-outline:hover { border-color: #fff; }

/* ========== ARTICLE PAGE ========== */
.article-page { padding: 36px 0 60px; }
.article-page-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.article-breadcrumb {
  font-size: .78rem;
  color: #888;
  margin-bottom: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.article-breadcrumb a { color: var(--red); }
.article-breadcrumb a:hover { text-decoration: underline; }
.article-breadcrumb-sep { opacity: .5; }

.article-category-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 14px;
}

.article-title {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .8rem;
  color: #888;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.article-author { font-weight: 600; color: var(--mid); }
.meta-dot { opacity: .4; }

.article-hero-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 8px;
}
.article-hero-caption {
  font-size: .72rem;
  color: #aaa;
  margin-bottom: 28px;
}

.article-body { font-size: 1.05rem; line-height: 1.85; color: #333; }
.article-body p { margin-bottom: 20px; }
.article-body h2 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--dark);
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}
.article-body h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin: 28px 0 12px;
}
.article-body ul, .article-body ol {
  margin: 0 0 20px 24px;
  list-style: disc;
}
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  border-left: 4px solid var(--red);
  padding: 12px 20px;
  margin: 28px 0;
  background: #fdf5f6;
  border-radius: 0 4px 4px 0;
  font-style: italic;
  color: var(--mid);
  font-size: 1.1rem;
}
.article-body strong { color: var(--dark); font-weight: 600; }

/* Paywall */
.paywall-wrapper {
  position: relative;
  overflow: hidden;
  max-height: 300px;
}
.paywall-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(transparent, var(--white));
}
.paywall-gate {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  margin-top: -1px;
  box-shadow: var(--shadow-md);
}
.paywall-gate h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.paywall-gate p { color: var(--mid); margin-bottom: 20px; font-size: .95rem; }
.paywall-plans {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.paywall-plan {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  min-width: 160px;
  text-align: center;
  transition: border-color .2s;
}
.paywall-plan:hover { border-color: var(--red); }
.paywall-plan.featured { border-color: var(--red); background: #fff8f9; }
.paywall-plan-name { font-size: .78rem; font-weight: 700; text-transform: uppercase; color: var(--mid); margin-bottom: 6px; }
.paywall-plan-price { font-family: var(--serif); font-size: 1.6rem; font-weight: 800; color: var(--dark); }
.paywall-plan-per { font-size: .75rem; color: #aaa; }
.paywall-sign-in { font-size: .82rem; color: #888; }
.paywall-sign-in a { color: var(--red); font-weight: 600; }

/* Sidebar */
.article-sidebar { position: sticky; top: 80px; }
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.sidebar-widget-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}
.sidebar-links li { border-bottom: 1px solid var(--border); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
  display: block;
  padding: 10px 0;
  font-size: .88rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.4;
  transition: color .2s;
}
.sidebar-links a:hover { color: var(--red); }
.sidebar-links .sidebar-link-cat {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--red);
  display: block;
  margin-bottom: 2px;
}
.sidebar-subscribe {
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.sidebar-subscribe .sidebar-widget-title { color: #fff; border-color: var(--red); }
.sidebar-subscribe p { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 16px; line-height: 1.6; }
.sidebar-subscribe .btn-red { width: 100%; text-align: center; }

/* ========== INNER PAGE ========== */
.inner-page { padding: 56px 0 80px; }
.inner-page-narrow { max-width: 780px; margin: 0 auto; }
.page-title {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.page-subtitle { color: var(--mid); font-size: 1.05rem; margin-bottom: 40px; }
.content-block { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.content-block h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin: 32px 0 14px;
}
.content-block h2:first-child { margin-top: 0; }
.content-block p { color: var(--mid); line-height: 1.8; margin-bottom: 16px; font-size: .97rem; }
.content-block ul { margin: 0 0 16px 22px; list-style: disc; }
.content-block li { color: var(--mid); line-height: 1.8; margin-bottom: 6px; font-size: .97rem; }

/* ========== SUBSCRIPTION PAGE ========== */
.subscription-hero {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 64px 20px;
}
.subscription-hero h1 {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.subscription-hero p { font-size: 1.05rem; color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto; }
.plans-section { padding: 56px 0; }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.plan-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  position: relative;
}
.plan-card.popular {
  border-color: var(--red);
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}
.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--mid); margin-bottom: 10px; }
.plan-price {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price sup { font-size: 1.1rem; vertical-align: super; font-weight: 600; }
.plan-period { font-size: .8rem; color: #aaa; margin-bottom: 24px; }
.plan-features { list-style: none; margin: 0 0 28px; }
.plan-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before { content: '✓'; color: var(--red); font-weight: 700; }
.plan-cta { width: 100%; text-align: center; padding: 13px; font-size: .9rem; }

/* Form */
.form-section { padding: 48px 0; background: var(--light); }
.form-card { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); max-width: 560px; margin: 0 auto; }
.form-card h2 { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; margin-bottom: 6px; }
.form-card p { color: var(--mid); font-size: .9rem; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--mid); margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--dark);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,16,46,.1); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 13px; font-size: 1rem; margin-top: 8px; }
.form-note { font-size: .78rem; color: #aaa; text-align: center; margin-top: 12px; }
.form-note a { color: var(--red); }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 52px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 180px;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .site-logo-name { font-size: 1.7rem; color: #fff; }
.footer-brand .site-logo-name span { color: var(--red); }
.footer-brand p { font-size: .84rem; line-height: 1.7; margin-top: 12px; }
.footer-contact { margin-top: 16px; font-size: .82rem; line-height: 1.9; }
.footer-contact strong { color: rgba(255,255,255,.9); }

.footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .78rem; }
.footer-bottom-links {
  display: flex;
  gap: 16px;
}
.footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.5); }
.footer-bottom-links a:hover { color: #fff; }

/* ========== ABOUT PAGE - TEAM ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  text-align: center;
}
.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 14px;
}
.team-name { font-family: var(--serif); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: .8rem; color: var(--red); font-weight: 600; }
.team-bio { font-size: .82rem; color: var(--mid); margin-top: 10px; line-height: 1.6; }

/* ========== UTILITY ========== */
.bg-white { background: var(--white); }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center; }
.text-red { color: var(--red); }
.divider { height: 1px; background: var(--border); margin: 32px 0; }
.tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 3px 9px;
  border-radius: 3px;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: .03em;
}
.read-more::after { content: '→'; }
.read-more:hover { text-decoration: underline; }

/* ========== CONTACT DETAILS ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff0f2;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail h4 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #888; margin-bottom: 4px; }
.contact-detail p { font-size: .9rem; color: var(--dark); line-height: 1.6; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 280px; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .plan-card.popular { transform: scale(1); }
  .article-page-grid { grid-template-columns: 1fr 280px; }
}

@media (max-width: 768px) {
  .top-bar .container { flex-direction: column; gap: 6px; text-align: center; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { height: 280px; }
  .hero-sidebar { display: none; }
  .article-page-grid { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .article-grid { grid-template-columns: 1fr; }
  .article-grid-4 { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.5rem; }
  .article-title { font-size: 1.7rem; }
  .page-title { font-size: 1.9rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .nav-menu { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .nav-menu a { padding: 12px 14px; font-size: .75rem; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .header-ad-slot { display: none; }
  .site-logo-name { font-size: 1.9rem; }
}

@media (max-width: 480px) {
  .plans-grid { grid-template-columns: 1fr; }
  .paywall-plans { flex-direction: column; align-items: center; }
  .promo-strip h2 { font-size: 1.4rem; }
}

.hero-badge-note{display:inline-block;margin-top:12px;font-size:.74rem;color:#7a6b57;letter-spacing:.04em;text-transform:uppercase;}
