/* Veltrio — Variant E Lifestyle Blog */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #fffdf9;
  --white:      #ffffff;
  --ink:        #3d3d3d;
  --soft-ink:   #5a5a5a;
  --muted:      #8a8a8a;
  --accent:     #b5838d;
  --accent-dark:#9b6872;
  --accent-pale:#f9f1f0;
  --warm-line:  #e8ddd8;
  --card-bg:    #ffffff;
  --radius:     3px;
  --shadow:     0 2px 12px rgba(60,30,30,0.07);
  --shadow-lg:  0 8px 28px rgba(60,30,30,0.12);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', Georgia, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.8;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-dark); text-decoration: none; }
a:hover { color: var(--accent); text-decoration: underline; }

/* ── SITE HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
  border-bottom: 1px solid var(--warm-line);
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: 0 2px 10px rgba(60,30,30,0.09); }
.nav-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-logo img { width: 34px; height: 34px; border-radius: 3px; object-fit: cover; }
.brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.5px;
}
.site-nav { display: flex; align-items: center; gap: 4px; list-style: none; }
.site-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--soft-ink);
  letter-spacing: 0.4px;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.site-nav a:hover { background: var(--accent-pale); color: var(--accent-dark); text-decoration: none; }

/* ── PAGE CONTAINER ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── HERO SECTION ── */
.hero-section { padding: 44px 0 36px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--card-bg);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image { position: relative; min-height: 400px; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 20px;
}
.hero-content {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 14px;
}
.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}
.hero-intro {
  font-size: 15px;
  color: var(--soft-ink);
  line-height: 1.75;
  margin-bottom: 24px;
}
.hero-byline { font-size: 12px; color: var(--muted); margin-bottom: 26px; }
.btn-main {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}
.btn-main:hover { background: var(--accent-dark); color: #fff; text-decoration: none; transform: translateY(-1px); }

/* ── SECTION DIVIDER ── */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 42px 0 24px;
}
.section-label::before,
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--warm-line); }
.section-label span {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  white-space: nowrap;
}

/* ── CARD GRID ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 52px;
}
.post-tile {
  background: var(--card-bg);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s;
}
.post-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tile-img { height: 210px; overflow: hidden; }
.tile-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.post-tile:hover .tile-img img { transform: scale(1.05); }
.tile-body { padding: 20px 22px 26px; }
.tile-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 9px;
}
.tile-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 10px;
}
.tile-title a { color: inherit; text-decoration: none; }
.tile-title a:hover { color: var(--accent-dark); }
.tile-excerpt { font-size: 13.5px; color: var(--soft-ink); line-height: 1.65; margin-bottom: 14px; }
.tile-meta { font-size: 11.5px; color: var(--muted); }
.read-link { font-size: 13px; font-weight: 600; color: var(--accent-dark); }
.read-link:hover { color: var(--accent); text-decoration: underline; }

/* ── ARTICLE PAGE ── */
.article-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 44px 24px 72px;
}
.article-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 14px;
}
.article-wrap h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 18px;
}
.article-meta {
  font-size: 13px;
  color: var(--muted);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--warm-line);
  margin-bottom: 22px;
}
.star-row { display: flex; align-items: center; gap: 10px; margin: 14px 0 20px; }
.stars { color: #c8972a; font-size: 22px; letter-spacing: 1px; }
.star-label { font-size: 14px; color: var(--muted); }

/* Disclosure */
.disclosure {
  background: var(--accent-pale);
  border-left: 3px solid var(--accent);
  border-radius: 3px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--soft-ink);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Article hero image */
.art-hero-img {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 32px;
}
.art-hero-img img { width: 100%; max-height: 440px; object-fit: cover; }

/* Article body */
.article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin: 38px 0 14px;
}
.article-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 28px 0 10px;
  font-style: italic;
}
.article-body p { font-size: 16px; line-height: 1.85; margin-bottom: 20px; color: var(--soft-ink); }
.article-body ul, .article-body ol { margin: 0 0 20px 22px; }
.article-body li { font-size: 15.5px; line-height: 1.75; margin-bottom: 9px; color: var(--soft-ink); }
.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 14px 22px;
  margin: 28px 0;
  background: var(--accent-pale);
  border-radius: 0 3px 3px 0;
}
.article-body blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--ink);
  margin: 0;
  line-height: 1.6;
}

/* Inline images */
.fig-inline { margin: 30px 0; border-radius: 5px; overflow: hidden; }
.fig-inline img { width: 100%; max-height: 360px; object-fit: cover; }
.fig-inline figcaption { font-size: 12px; color: var(--muted); padding: 7px 0 0; font-style: italic; }

/* Pros/Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 30px 0; }
.pc-box {
  background: var(--card-bg);
  border-radius: 5px;
  padding: 20px 22px;
  box-shadow: var(--shadow);
}
.pc-box.pros { border-top: 3px solid #6daa6d; }
.pc-box.cons { border-top: 3px solid var(--accent); }
.pc-box h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.pc-box.pros h4 { color: #6daa6d; }
.pc-box.cons h4 { color: var(--accent); }
.pc-box ul { list-style: none; padding: 0; margin: 0; }
.pc-box li { font-size: 14px; padding: 6px 0; border-bottom: 1px solid var(--warm-line); }
.pc-box li:last-child { border: none; }
.pc-box.pros li::before { content: "✓  "; color: #6daa6d; font-weight: 700; }
.pc-box.cons li::before { content: "—  "; color: var(--accent); font-weight: 700; }

/* CTA Box */
.cta-wrap {
  background: linear-gradient(135deg, #3d3d3d 0%, #5a4a4a 100%);
  color: #fff;
  border-radius: 6px;
  padding: 36px 40px;
  text-align: center;
  margin: 40px 0;
}
.cta-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.cta-wrap p { font-size: 15px; color: rgba(255,255,255,0.75); margin-bottom: 24px; line-height: 1.7; }
.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 34px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-cta:hover { background: var(--accent-dark); color: #fff; text-decoration: none; }

/* Helpful box */
.helpful {
  background: var(--card-bg);
  border-radius: 5px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  margin-top: 40px;
}
.helpful p { font-size: 15px; font-weight: 500; margin-bottom: 14px; }
.helpful-btns { display: flex; justify-content: center; gap: 12px; }
.helpful-btns button {
  background: var(--cream);
  border: 1px solid var(--warm-line);
  border-radius: 20px;
  padding: 8px 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.helpful-btns button:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ── FOOTER ── */
.site-footer {
  background: #2e2020;
  color: rgba(255,250,248,0.7);
  margin-top: 40px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 44px 24px 32px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .brand-name { color: rgba(255,250,248,0.95); margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 13px; line-height: 1.7; }
.footer-col h5 {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,250,248,0.9);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 13px; color: rgba(255,250,248,0.55); text-decoration: none; }
.footer-col a:hover { color: rgba(255,250,248,0.9); }
.footer-base {
  border-top: 1px solid rgba(255,250,248,0.08);
  padding: 16px 24px;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,250,248,0.35);
}

/* ── STATIC PAGES ── */
.static-page { max-width: 820px; margin: 0 auto; padding: 44px 24px 68px; }
.static-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.page-sub { font-size: 15px; color: var(--muted); padding-bottom: 22px; border-bottom: 1px solid var(--warm-line); margin-bottom: 28px; }
.static-page h2 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; margin: 26px 0 10px; color: var(--ink); }
.static-page p { font-size: 15px; line-height: 1.85; margin-bottom: 16px; color: var(--soft-ink); }
.static-page ul { margin: 0 0 18px 22px; }
.static-page li { font-size: 15px; line-height: 1.75; margin-bottom: 8px; color: var(--soft-ink); }

/* ── RESPONSIVE ── */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { min-height: 260px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .article-wrap h1 { font-size: 30px; }
  .hero-content { padding: 28px 22px; }
  .hero-title { font-size: 26px; }
  .footer-inner { grid-template-columns: 1fr; gap: 22px; }
  .cta-wrap { padding: 28px 22px; }
}
