/*
Theme Name: Candidly So
Theme URI: https://candidlyso.com
Author: Ramona Anechite
Author URI: https://candidlyso.com
Description: A warm, editorial dark theme for Candidly So — culture, reflection, life.
Version: 3.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: candidlyso
Tags: blog, dark, editorial, minimal, responsive
*/

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --black: #080604;
  --dark: #0F0C0A;
  --dark-2: #161210;
  --dark-3: #1E1A17;
  --cream: #F2EBE0;
  --cream-muted: rgba(242,235,224,0.7);
  --cream-subtle: rgba(242,235,224,0.4);
  --gold: #C4A052;
  --gold-light: #D4B570;
  --burgundy: #7A1E2E;
  --burgundy-light: #9A2E40;
  --border: rgba(196,160,82,0.12);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Pinyon Script', cursive;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1400px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cream); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
ul, ol { list-style: none; padding: 0; margin: 0; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { font-size: 0.92rem; line-height: 1.9; color: var(--cream-muted); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
}

.script { font-family: var(--font-script); font-weight: 400; }

/* =============================================
   LAYOUT
   ============================================= */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 3rem; }

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.8rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(8,6,4,0.9) 0%, transparent 100%);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(8,6,4,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 3rem;
}
.site-header ul, .site-header li { list-style: none; padding: 0; margin: 0; }

.site-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--cream);
  text-transform: uppercase;
}
.site-logo img { height: 32px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-nav li { list-style: none; padding: 0; margin: 0; }
.nav-list { display: contents; list-style: none; padding: 0; margin: 0; }
.nav-list li { list-style: none; padding: 0; margin: 0; }
.site-nav a {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  transition: var(--transition);
}
.site-nav a:hover, .site-nav a.current-menu-item { color: var(--gold-light); }

.nav-instagram { color: var(--cream) !important; display: flex; align-items: center; }
.nav-instagram:hover { color: var(--gold-light) !important; }
.nav-instagram svg { display: block; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  z-index: 100;
  position: relative;
}
.menu-toggle span { display: block; width: 22px; height: 1px; background: var(--cream); transition: var(--transition); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-image { position: absolute; inset: 0; z-index: 0; }
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  filter: brightness(0.65);
}
.hero-image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #2A1A0A 0%, #1A100A 30%, #0F0A07 60%, #080604 100%);
}
.hero-image-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 65% 35%, rgba(80,40,15,0.45) 0%, transparent 65%);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(8,6,4,0.1) 0%, rgba(8,6,4,0) 20%, rgba(8,6,4,0) 50%, rgba(8,6,4,0.55) 78%, rgba(8,6,4,0.92) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 3rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.hero-left { max-width: 620px; }

.hero-eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 28px; height: 1px;
  background: var(--cream);
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.0;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-title .script-line {
  font-family: var(--font-script);
  font-size: clamp(4rem, 8vw, 7.5rem);
  color: var(--cream);
  display: block;
  line-height: 1.05;
  font-weight: 400;
}
.hero-subtitle {
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(242,235,224,0.65);
  max-width: 420px;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
  font-weight: 300;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(196,160,82,0.35);
  padding: 0.9rem 2rem;
  transition: var(--transition);
}
.hero-cta:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--black); }

.hero-scroll {
  font-size: 0.53rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(242,235,224,0.6);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.5rem;
}
.hero-scroll::after {
  content: '';
  display: block; width: 1px; height: 55px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* =============================================
   MARQUEE
   ============================================= */
.marquee-wrap { background: var(--burgundy); padding: 0.85rem 0; overflow: hidden; }
.marquee-track {
  display: flex; gap: 2.5rem;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
}
.marquee-track span { font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(242,235,224,0.6); flex-shrink: 0; }
.marquee-track .dot { color: var(--gold-light); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================
   ABOUT STRIP
   ============================================= */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; min-height: 75vh; }
.about-strip-image { position: relative; overflow: hidden; background: var(--dark-2); }
.about-strip-image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8); transition: transform 0.8s ease; }
.about-strip-image:hover img { transform: scale(1.03); }
.about-strip-image-placeholder {
  width: 100%; height: 100%; min-height: 500px;
  background: linear-gradient(135deg, #2A1A10 0%, #1A100A 60%, #0F0806 100%);
  position: relative;
}
.about-strip-image-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 40%, rgba(100,50,15,0.3) 0%, transparent 70%);
}
.about-strip-content {
  background: var(--dark-2);
  padding: 6rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.about-strip-content .eyebrow { margin-bottom: 2rem; }
.about-strip-content h2 { color: var(--cream); margin-bottom: 1.5rem; font-weight: 300; line-height: 1.2; }
.about-strip-content h2 .script { font-size: 1.3em; display: block; line-height: 1.1; color: var(--cream); }
.about-strip-content p { margin-bottom: 2rem; font-size: 0.9rem; line-height: 1.95; color: var(--cream-muted); }
.about-values { display: flex; gap: 2.5rem; margin-bottom: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(196,160,82,0.25); }
.about-value { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(242,235,224,0.6); }

/* =============================================
   BUTTONS
   ============================================= */
.btn { display: inline-block; font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; padding: 1rem 2.2rem; transition: var(--transition); cursor: pointer; border: none; font-weight: 300; }
.btn-primary { background: var(--burgundy); color: var(--cream); }
.btn-primary:hover { background: var(--burgundy-light); color: var(--cream); }
.btn-outline { background: transparent; color: var(--cream); border: 1px solid rgba(242,235,224,0.4); display: inline-block; }
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-ghost { background: transparent; color: var(--cream-subtle); border-bottom: 1px solid rgba(242,235,224,0.18); padding: 0 0 0.3rem; letter-spacing: 0.2em; font-size: 0.6rem; text-transform: uppercase; display: inline-block; }
.btn-ghost:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header { display: flex; align-items: center; gap: 2rem; margin-bottom: 3.5rem; }
.section-header h2 { font-size: 0.6rem; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold-light); font-family: var(--font-body); font-weight: 400; white-space: nowrap; }
.section-header::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* =============================================
   POSTS SECTION
   ============================================= */
.posts-section { padding: 6rem 0; background: var(--black); }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.post-card { background: var(--dark-2); overflow: hidden; }
.post-card-image { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.post-card-image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.72); transition: transform 0.7s ease, filter 0.7s ease; }
.post-card:hover .post-card-image img { transform: scale(1.05); filter: brightness(0.82); }
.post-card-image-placeholder { width: 100%; height: 100%; background: linear-gradient(160deg, #2A1A10 0%, #1A1005 100%); }
.post-card-content { padding: 1.8rem 1.6rem; background: var(--dark-2); border-top: 2px solid var(--burgundy); }
.post-card-category { font-size: 0.53rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.65rem; }
.post-card-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; color: var(--cream); line-height: 1.3; margin-bottom: 0.5rem; transition: var(--transition); }
.post-card:hover .post-card-title { color: var(--gold-light); }
.post-card-date { font-size: 0.58rem; letter-spacing: 0.15em; color: var(--cream-subtle); }
.post-card a { text-decoration: none; }
.posts-footer { text-align: center; margin-top: 4rem; }

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-section { background: var(--burgundy); padding: 6rem 3rem; text-align: center; }
.newsletter-inner { max-width: 520px; margin: 0 auto; }
.newsletter-section .eyebrow { color: rgba(242,235,224,0.45); margin-bottom: 1rem; }
.newsletter-section h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 300; color: var(--cream); margin-bottom: 0.75rem; line-height: 1.15; }
.newsletter-section h2 .script { font-size: 1.25em; line-height: 1; }
.newsletter-section p { color: rgba(242,235,224,0.55); margin-bottom: 2.5rem; font-size: 0.85rem; }
.newsletter-form { display: flex; max-width: 400px; margin: 0 auto; }
.newsletter-form input[type="email"] { flex: 1; padding: 1rem 1.5rem; background: rgba(242,235,224,0.1); border: 1px solid rgba(242,235,224,0.2); border-right: none; color: var(--cream); font-family: var(--font-body); font-size: 0.82rem; font-weight: 300; outline: none; }
.newsletter-form input::placeholder { color: rgba(242,235,224,0.3); font-size: 0.75rem; }
.newsletter-form button { padding: 1rem 1.8rem; background: var(--gold-light); color: var(--black); font-family: var(--font-body); font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase; border: none; cursor: pointer; font-weight: 400; transition: background 0.3s; }
.newsletter-form button:hover { background: var(--gold); }

/* MailPoet form override */
.newsletter-section .mailpoet_form { max-width: 400px; margin: 0 auto; }
.newsletter-section .mailpoet_form .mailpoet_text { flex: 1; padding: 1rem 1.5rem; background: rgba(242,235,224,0.1) !important; border: 1px solid rgba(242,235,224,0.2) !important; border-right: none !important; color: var(--cream) !important; font-family: var(--font-body); font-size: 0.82rem; outline: none; border-radius: 0 !important; }
.newsletter-section .mailpoet_submit { padding: 1rem 1.8rem !important; background: var(--gold-light) !important; color: var(--black) !important; font-family: var(--font-body); font-size: 0.58rem !important; letter-spacing: 0.25em; text-transform: uppercase; border: none !important; cursor: pointer; font-weight: 400; border-radius: 0 !important; }
.newsletter-section .mailpoet_form_loading { color: var(--cream); }

/* Mailchimp MC4WP form override */
.newsletter-section .mc4wp-form { max-width: 400px; margin: 0 auto; }
.newsletter-section .mc4wp-form p { margin: 0; }
.newsletter-section .mc4wp-form label { display: none; }
.newsletter-section .mc4wp-form-fields { display: block; }
.newsletter-section .mc4wp-row { display: flex; flex-wrap: nowrap; align-items: stretch; }
.newsletter-section .mc4wp-form input[type="email"] { flex: 1; min-width: 0; padding: 1rem 1.5rem; background: rgba(242,235,224,0.1); border: 1px solid rgba(242,235,224,0.2); border-right: none; color: var(--cream); font-family: var(--font-body); font-size: 0.82rem; font-weight: 300; outline: none; border-radius: 0; -webkit-appearance: none; }
.newsletter-section .mc4wp-form input[type="email"]::placeholder { color: rgba(242,235,224,0.3); font-size: 0.75rem; }
.newsletter-section .mc4wp-form input[type="submit"] { flex-shrink: 0; padding: 1rem 1.8rem; background: var(--gold-light); color: var(--black); font-family: var(--font-body); font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase; border: none; cursor: pointer; font-weight: 400; border-radius: 0; transition: background 0.3s; -webkit-appearance: none; }
.newsletter-section .mc4wp-form input[type="submit"]:hover { background: var(--gold); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: #050403; padding: 4rem 3rem 2rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; margin-bottom: 2rem; border-bottom: 1px solid rgba(196,160,82,0.08); }
.footer-brand .site-logo { display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.78rem; color: var(--cream-subtle); line-height: 1.8; max-width: 270px; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.5rem; font-weight: 400; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { font-size: 0.8rem; color: var(--cream-subtle); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.58rem; letter-spacing: 0.15em; color: rgba(242,235,224,0.18); }

/* =============================================
   BLOG PAGE
   ============================================= */
.blog-header { padding: 9rem 3rem 0; background: var(--dark-3); }
.blog-header-inner { max-width: var(--max-width); margin: 0 auto; padding-bottom: 0; }
.blog-header .eyebrow { margin-bottom: 1rem; }
.blog-header h1 { color: var(--cream); font-weight: 300; margin-bottom: 0.5rem; }
.blog-header p { font-size: 0.85rem; color: var(--cream-muted); margin-bottom: 0; }

/* Category tabs */
.blog-categories { display: flex; gap: 0; margin-top: 2.5rem; border-top: 1px solid var(--border); }
.blog-categories a { font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cream-subtle); padding: 1rem 2rem; border-bottom: 2px solid transparent; transition: var(--transition); text-decoration: none; }
.blog-categories a:hover, .blog-categories a.active { color: var(--gold-light); border-bottom-color: var(--gold-light); }

/* Featured post — first post gets large treatment */
.blog-featured { background: var(--dark-3); padding: 0 3rem; }
.blog-featured-inner { max-width: var(--max-width); margin: 0 auto; padding: 3rem 0 2px; }

.featured-post { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; background: var(--dark-2); overflow: hidden; }
.featured-post-image { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.featured-post-image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.72); transition: transform 0.7s ease; }
.featured-post:hover .featured-post-image img { transform: scale(1.03); }
.featured-post-image-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #2A1A10 0%, #1A0A08 60%, #0F0806 100%); }

.featured-post-content { padding: 3.5rem; display: flex; flex-direction: column; justify-content: center; }
.featured-badge { display: inline-block; font-size: 0.5rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream); background: var(--burgundy); padding: 0.35rem 0.9rem; margin-bottom: 0.75rem; width: fit-content; }
.featured-cat { font-size: 0.53rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; display: block; }
.featured-title { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 400; color: var(--cream); line-height: 1.2; margin-bottom: 1rem; transition: var(--transition); }
.featured-post:hover .featured-title { color: var(--gold-light); }
.featured-excerpt { font-size: 0.88rem; line-height: 1.9; color: var(--cream-muted); margin-bottom: 1.5rem; }
.featured-read { font-size: 0.57rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cream-subtle); border-bottom: 1px solid rgba(242,235,224,0.18); padding-bottom: 0.2rem; display: inline-block; transition: var(--transition); text-decoration: none; }
.featured-post:hover .featured-read, .featured-read:hover { color: var(--gold-light); border-color: var(--gold-light); }
.featured-date { font-size: 0.57rem; letter-spacing: 0.12em; color: var(--cream-subtle); margin-top: auto; padding-top: 1.5rem; border-top: 1px solid var(--border); }

/* Post list below featured */
.blog-posts-grid { background: var(--dark-3); padding: 0 3rem 6rem; }
.blog-posts-grid-inner { max-width: var(--max-width); margin: 0 auto; }

.post-row { display: grid; grid-template-columns: 28% 1fr; gap: 2.5rem; padding: 2.5rem 0; border-bottom: 1px solid rgba(196,160,82,0.08); align-items: center; }
.post-row-image { aspect-ratio: 4/3; overflow: hidden; }
.post-row-image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.75); transition: transform 0.6s ease; }
.post-row:hover .post-row-image img { transform: scale(1.04); }
.post-row-image-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #2A1A10 0%, #1A1005 100%); }
.post-row-meta { font-size: 0.57rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.65rem; }
.post-row-title { font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 400; color: var(--cream); line-height: 1.2; margin-bottom: 0.65rem; transition: var(--transition); }
.post-row:hover .post-row-title { color: var(--gold-light); }
.post-row-excerpt { font-size: 0.85rem; color: var(--cream-muted); line-height: 1.88; margin-bottom: 1.2rem; }
.post-row-read { font-size: 0.57rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cream-subtle); border-bottom: 1px solid rgba(242,235,224,0.15); padding-bottom: 0.2rem; display: inline-block; transition: var(--transition); }
.post-row:hover .post-row-read { color: var(--gold-light); border-color: var(--gold-light); }

/* =============================================
   PAGINATION
   ============================================= */
.posts-pagination { padding: 3rem 0; text-align: center; }
.posts-pagination .page-numbers { display: inline-block; padding: 0.5rem 0.9rem; font-size: 0.72rem; letter-spacing: 0.1em; color: var(--cream-subtle); border: 1px solid transparent; transition: var(--transition); margin: 0 0.2rem; }
.posts-pagination .page-numbers:hover, .posts-pagination .page-numbers.current { border-color: var(--gold-light); color: var(--gold-light); }

/* =============================================
   CATEGORY / ARCHIVE PAGE
   ============================================= */
.archive-header { padding: 9rem 3rem 0; background: var(--dark-3); border-bottom: 1px solid var(--border); }
.archive-header-inner { max-width: var(--max-width); margin: 0 auto; padding-bottom: 0; }
.archive-header .eyebrow { margin-bottom: 1rem; }
.archive-header h1 { color: var(--cream); font-weight: 300; margin-bottom: 0.5rem; }

/* =============================================
   SINGLE POST
   ============================================= */
.post-hero { height: 65vh; min-height: 480px; position: relative; overflow: hidden; }
.post-hero img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55); }
.post-hero-bg { position: absolute; inset: 0; z-index: 0; background: linear-gradient(160deg, #2A1A10 0%, #1A0A08 40%, #0F0806 70%, #080604 100%); }
.post-hero-bg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 35%, rgba(100,50,15,0.35) 0%, transparent 65%); }
.post-hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(8,6,4,0.92) 0%, rgba(8,6,4,0.3) 50%, rgba(8,6,4,0.1) 100%); }
.post-hero-content { position: absolute; bottom: 0; left: 50%; right: auto; transform: translateX(-50%); width: 100%; padding: 3rem; max-width: 900px; z-index: 2; }
.post-hero-content .eyebrow { margin-bottom: 1rem; }
.post-hero-content h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; color: var(--cream); line-height: 1.15; margin-bottom: 1rem; }
.post-meta-bar { display: flex; align-items: center; gap: 1.5rem; font-size: 0.6rem; letter-spacing: 0.15em; color: var(--cream-subtle); }

/* Post body */
.post-body-wrap { max-width: 680px; margin: 0 auto; padding: 5rem 3rem; background: var(--black); }
.post-body-wrap .entry-content { font-size: 1.05rem; line-height: 2.05; color: rgba(242,235,224,0.78); }
.post-body-wrap .entry-content p { margin-bottom: 1.75rem; font-size: 1.05rem; line-height: 2; color: rgba(242,235,224,0.75); }
.post-body-wrap .entry-content p:last-child { margin-bottom: 0; }
.post-body-wrap .entry-content h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; color: var(--cream); margin: 3rem 0 1.2rem; }
.post-body-wrap .entry-content h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--cream); margin: 2.5rem 0 1rem; }
.post-body-wrap .entry-content a { color: var(--gold-light); border-bottom: 1px solid rgba(212,181,112,0.3); }
.post-body-wrap .entry-content a:hover { color: var(--gold); border-color: var(--gold); }
.post-body-wrap .entry-content blockquote { border-left: 3px solid var(--burgundy); padding: 1.5rem 2rem; margin: 3rem 0; background: var(--dark-2); }
.post-body-wrap .entry-content blockquote p { font-family: var(--font-display); font-size: 1.4rem; font-style: italic; color: var(--cream); line-height: 1.65; margin-bottom: 0; }
.post-body-wrap .entry-content ul, .post-body-wrap .entry-content ol { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.75rem; color: rgba(242,235,224,0.75); font-size: 1.05rem; line-height: 2; }
.post-body-wrap .entry-content img { max-width: 100%; height: auto; margin: 2rem 0; }

/* Post footer */
.post-footer-wrap { max-width: 680px; margin: 0 auto; padding: 0 3rem 4rem; background: var(--black); }
.post-tags { display: flex; gap: 0.75rem; padding: 2rem 0; border-top: 1px solid var(--border); flex-wrap: wrap; }
.post-tag { font-size: 0.53rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-light); border: 1px solid rgba(196,160,82,0.3); padding: 0.4rem 1rem; text-decoration: none; transition: var(--transition); }
.post-tag:hover { background: var(--burgundy); border-color: var(--burgundy); color: var(--cream); }

/* Post nav */
.post-nav-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 2rem; }
.post-nav-item { background: var(--dark-2); padding: 2rem; text-decoration: none; transition: background 0.3s; display: block; }
.post-nav-item:hover { background: var(--dark-3); }
.post-nav-item.next { text-align: right; }
.post-nav-label { font-size: 0.52rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.6rem; display: block; }
.post-nav-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--cream); line-height: 1.3; }

/* More posts */
.more-posts-section { background: var(--dark-3); padding: 5rem 3rem; }
.more-posts-inner { max-width: var(--max-width); margin: 0 auto; }
.more-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.more-post-card { background: var(--dark-2); overflow: hidden; text-decoration: none; display: block; }
.more-post-img { aspect-ratio: 4/3; overflow: hidden; }
.more-post-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.72); transition: transform 0.6s ease; }
.more-post-card:hover .more-post-img img { transform: scale(1.05); }
.more-post-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #2A1A10 0%, #1A1005 100%); }
.more-post-body { padding: 1.5rem; border-top: 2px solid var(--burgundy); }
.more-post-cat { font-size: 0.52rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.5rem; }
.more-post-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 400; color: var(--cream); line-height: 1.3; transition: var(--transition); }
.more-post-card:hover .more-post-title { color: var(--gold-light); }

/* =============================================
   PAGE TEMPLATE
   ============================================= */
.page-content-wrap { background: var(--dark-3); min-height: 60vh; }
.page-content { padding: 9rem 3rem 6rem; max-width: 860px; margin: 0 auto; }
.page-content h1 { font-family: var(--font-display); color: var(--cream); font-weight: 300; margin-bottom: 2rem; }
.page-content .entry-content { font-size: 1.02rem; line-height: 2; color: var(--cream-muted); }
.page-content .entry-content p { margin-bottom: 1.75rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .about-strip { grid-template-columns: 1fr; }
  .about-strip-content { padding: 4rem 3rem; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-post-image { aspect-ratio: 16/9; }
  .more-posts-grid { grid-template-columns: repeat(2, 1fr); }
  .post-row-image { max-height: 260px; }
}
@media (max-width: 768px) {
  .site-header { padding: 1.2rem 1.5rem; }
  .site-nav { display: none; }
  .site-nav.open { display: flex; flex-direction: column; position: fixed; inset: 0; background: rgba(8,6,4,0.98); justify-content: center; align-items: center; gap: 2.5rem; z-index: 99; }
  .site-nav.open .nav-list { display: flex; flex-direction: column; align-items: center; gap: 2.5rem; }
  .site-nav.open a { font-size: 0.9rem; letter-spacing: 0.3em; }
  .menu-toggle { display: flex; }
  .container { padding: 0 1.5rem; }
  .hero-content { padding: 0 1.5rem 4rem; flex-direction: column; align-items: flex-start; gap: 2rem; }
  .hero-scroll { display: none; }
  .posts-grid { grid-template-columns: 1fr; }
  .post-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .post-row-image { max-height: 220px; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .blog-header { padding: 7rem 1.5rem 0; }
  .blog-featured { padding: 0 1.5rem; }
  .blog-posts-grid { padding: 0 1.5rem 4rem; }
  .about-strip-content { padding: 3rem 1.5rem; }
  .newsletter-section { padding: 4rem 1.5rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid rgba(242,235,224,0.2); border-bottom: 1px solid rgba(242,235,224,0.1); }
  .post-body-wrap { padding: 3rem 1.5rem; }
  .post-footer-wrap { padding: 0 1.5rem 3rem; }
  .post-nav-grid { grid-template-columns: 1fr; }
  .more-posts-section { padding: 4rem 1.5rem; }
  .more-posts-grid { grid-template-columns: 1fr; }
  .site-footer { padding: 3rem 1.5rem 1.5rem; }
  .page-content { padding: 7rem 1.5rem 4rem; }
  .blog-categories a { padding: 0.85rem 1.2rem; }
  .post-hero-content { padding: 2rem 1.5rem; }
}

/* =============================================
   v3.1 ADDITIONS — Slideshow, Banner, Shop, Product, Cart
   ============================================= */

/* ── PROMO BANNER ── */
.promo-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--burgundy);
  color: var(--cream);
  text-align: center;
  padding: 0.6rem 3rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-banner a, .promo-banner span { color: var(--cream); }
.promo-banner a:hover { color: var(--gold-light); }
.promo-banner-close {
  position: absolute;
  right: 1.5rem;
  background: none; border: none;
  color: var(--cream);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.promo-banner-close:hover { opacity: 1; }
/* push header down when banner present */
.site-header.has-banner { top: 32px; }
body:not(.banner-dismissed) .promo-banner ~ .hero { /* hero stays full height, banner overlays */ }

/* ── HERO SLIDESHOW (swipe, no zoom) ── */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.62);
}
.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.75rem;
}
.hero-dot {
  width: 22px; height: 3px;
  background: rgba(242,235,224,0.3);
  border: none; padding: 0;
  cursor: pointer;
  transition: all 0.4s ease;
}
.hero-dot.active { background: var(--gold-light); width: 38px; }
.hero-dot:hover { background: rgba(242,235,224,0.6); }

/* ── SHOP STRIP (homepage) ── */
.shop-strip { background: var(--dark-3); }
.shop-strip-inner {
  padding: 5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  border-top: 1px solid var(--border);
}
.shop-image-col { position: relative; overflow: hidden; }
.shop-img { width: 100%; aspect-ratio: 5/4; overflow: hidden; background: var(--dark-2); }
.shop-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.shop-img:hover img { transform: scale(1.03); }
.shop-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #2A1A10, #1A100A); }
.shop-badge {
  position: absolute; bottom: 0; left: 0;
  background: var(--burgundy);
  padding: 0.4rem 1.1rem;
  font-size: 0.5rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--cream);
}
.shop-text .eyebrow { margin-bottom: 1.5rem; display: block; }
.shop-text h2 { font-weight: 300; line-height: 1.05; margin-bottom: 1.2rem; }
.shop-tagline { font-family: var(--font-display); font-style: italic; font-size: 1rem; line-height: 1.8; color: var(--cream-muted); margin-bottom: 2rem; }
.shop-meta { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2.2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.shop-price { font-family: var(--font-display); font-size: 2rem; color: var(--cream); }
.shop-avail { font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-subtle); display: flex; align-items: center; gap: 0.5rem; }
.avail-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--burgundy); display: inline-block; flex-shrink: 0; }
.shop-cta {
  display: inline-block; padding: 1rem 2.2rem;
  background: transparent; border: 1px solid rgba(242,235,224,0.4);
  color: var(--cream); font-family: var(--font-body);
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  transition: var(--transition);
}
.shop-cta:hover { background: var(--burgundy); border-color: var(--burgundy); color: var(--cream); }

/* ── PRODUCT PAGE ── */
.tote-page { padding-top: 6rem; }
.breadcrumb { padding: 1.2rem 0; font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream-subtle); }
.breadcrumb a { color: var(--cream-subtle); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }
.product-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; padding-top: 2rem; padding-bottom: 5rem; }
.product-images { position: sticky; top: 100px; }
.main-img { width: 100%; aspect-ratio: 4/5; background: var(--dark-2); overflow: hidden; }
.main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.main-img:hover img { transform: scale(1.03); }
.main-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #2A1A10, #1A100A); display: flex; align-items: center; justify-content: center; }
.main-img-placeholder span { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream-subtle); padding: 2rem; text-align: center; }
.thumb-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; margin-top: 4px; }
.thumb { aspect-ratio: 1; background: var(--dark-2); overflow: hidden; cursor: pointer; border: 1px solid transparent; transition: border-color 0.3s; }
.thumb img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); transition: filter 0.3s; }
.thumb:hover img, .thumb.active img { filter: brightness(1); }
.thumb.active { border-color: var(--gold-light); }
.product-info .eyebrow { display: block; margin-bottom: 1.2rem; }
.product-title { font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 300; margin-bottom: 0.5rem; }
.product-divider { width: 36px; height: 1px; background: var(--gold-light); opacity: 0.5; margin: 1.8rem 0; }
.price-main { font-family: var(--font-display); font-size: 2.2rem; color: var(--cream); }
.avail-row { display: flex; align-items: center; gap: 0.6rem; margin: 1.6rem 0; font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-subtle); }
.avail-pip { width: 5px; height: 5px; border-radius: 50%; background: var(--burgundy); flex-shrink: 0; }
.btn-buy {
  display: block; width: 100%; padding: 1.1rem 2rem;
  background: var(--burgundy); color: var(--cream);
  font-family: var(--font-body); font-size: 0.62rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  text-align: center; transition: var(--transition); margin-bottom: 2rem;
}
.btn-buy:hover { background: var(--burgundy-light); color: var(--cream); }
.story-block { border-left: 2px solid var(--burgundy); padding: 1.5rem 2rem; background: rgba(122,30,46,0.06); margin-bottom: 2rem; }
.story-block p { font-family: var(--font-display); font-style: italic; font-size: 1rem; line-height: 1.75; color: var(--cream-muted); }
.accordion { border-top: 1px solid var(--border); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger { width: 100%; background: none; border: none; padding: 1.2rem 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; color: var(--cream); }
.accordion-trigger h3 { font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 400; color: var(--cream-subtle); }
.accordion-icon { color: var(--gold-light); font-size: 1rem; transition: transform 0.3s; display: inline-block; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { font-size: 0.88rem; line-height: 1.85; color: var(--cream-subtle); font-family: var(--font-display); padding-bottom: 1.2rem; display: none; }
.accordion-item.open .accordion-body { display: block; }
.product-extra { margin-top: 2rem; }
.editorial-footer { background: var(--dark-3); padding: 5rem 3rem; text-align: center; border-top: 1px solid var(--border); }
.editorial-footer h2 { font-weight: 300; margin-bottom: 0.75rem; }
.editorial-footer p { font-size: 0.78rem; color: var(--cream-subtle); max-width: 420px; margin: 0 auto; }

/* ── CART PAGE ── */
.cart-page { padding-top: 6rem; }
.cart-header { padding: 2.5rem 3rem 0; }
.cart-header .eyebrow { display: block; margin-bottom: 1rem; }
.cart-header h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 300; }
.cart-layout { padding: 2.5rem 3rem 6rem; display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start; }
.cart-items-header { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.cart-items-header span { font-size: 0.55rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--cream-subtle); }
.cart-items-header span:not(:first-child) { text-align: center; }
.cart-item { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 1.5rem; padding: 2rem 0; border-bottom: 1px solid var(--border); align-items: center; }
.cart-item-product { display: flex; gap: 1.2rem; align-items: center; }
.cart-item-img { width: 80px; height: 80px; background: var(--dark-2); overflow: hidden; flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #2A1A10, #1A100A); }
.cart-item-name { font-family: var(--font-display); font-size: 1.05rem; color: var(--cream); margin-bottom: 0.2rem; }
.cart-item-sub { font-size: 0.6rem; letter-spacing: 0.12em; color: var(--cream-subtle); text-transform: uppercase; }
.qty-control { display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); width: fit-content; margin: 0 auto; }
.qty-num { width: 44px; text-align: center; font-size: 0.82rem; color: var(--cream); height: 32px; display: flex; align-items: center; justify-content: center; }
.cart-item-price, .cart-item-total { text-align: center; font-family: var(--font-display); font-size: 1.05rem; color: var(--cream); }
.cart-continue { padding-top: 1.5rem; }
.cart-continue a { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-subtle); border-bottom: 1px solid rgba(242,235,224,0.15); padding-bottom: 2px; }
.cart-continue a:hover { color: var(--gold-light); border-color: var(--gold-light); }
.order-summary { background: var(--dark-2); padding: 2.5rem; position: sticky; top: 100px; }
.order-summary .eyebrow { display: block; margin-bottom: 1.5rem; }
.summary-line { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 0; border-bottom: 1px solid var(--border); font-size: 0.82rem; color: var(--cream-muted); }
.summary-line.total { font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); border-top: 1px solid var(--border); border-bottom: none; padding-top: 1.2rem; margin-top: 0.5rem; }
.checkout-btn { display: block; width: 100%; padding: 1.1rem 2rem; background: var(--burgundy); color: var(--cream); font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; text-align: center; margin-top: 1.5rem; transition: var(--transition); }
.checkout-btn:hover { background: var(--burgundy-light); color: var(--cream); }
.security-note { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.2rem; font-size: 0.58rem; letter-spacing: 0.1em; color: var(--cream-subtle); justify-content: center; }
.cart-note { font-size: 0.7rem; color: var(--cream-subtle); text-align: center; margin-top: 1.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .promo-banner { font-size: 0.55rem; padding: 0.6rem 2.5rem; letter-spacing: 0.1em; }
  .shop-strip-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 1.5rem; }
  .product-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-images { position: static; }
  .cart-layout { grid-template-columns: 1fr; gap: 2.5rem; padding: 2rem 1.5rem 4rem; }
  .order-summary { position: static; }
  .cart-header { padding: 2rem 1.5rem 0; }
  .editorial-footer { padding: 3.5rem 1.5rem; }
}
