/* ─── Reset & Variables ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #f5f0e8;
  --cream-dark:  #ede7d9;
  --cream-mid:   #e5ddd0;
  --ink:         #1c1a17;
  --ink-mid:     #4a4640;
  --ink-light:   #7a7168;
  --accent:      #7c6a52;
  --accent-hover:#5e4f3c;
  --white:       #ffffff;
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --nav-h: 358px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 300;
}

/* ─── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 700; line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
p  { color: var(--ink-mid); }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }
strong { font-weight: 600; color: var(--ink); }

/* ─── Utilities ─────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
section { padding: 5.5rem 0; }
.section-label {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.75rem; display: block;
}
.eyebrow { @extend .section-label; }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block; background: var(--ink); color: var(--cream);
  font-family: var(--sans); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.06em; padding: 0.9rem 2.2rem;
  border: 2px solid var(--ink); cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--ink);
  font-family: var(--sans); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.06em; padding: 0.9rem 2.2rem;
  border: 2px solid var(--ink); cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-accent {
  display: inline-block; background: var(--accent); color: var(--white);
  font-family: var(--sans); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.06em; padding: 0.9rem 2.2rem;
  border: 2px solid var(--accent); cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

/* ─── Navigation ────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--cream);
}
.nav-logo-bar {
  text-align: center;
  padding: 0.6rem 2rem;
  background: #000;
  border-bottom: none;
}
.nav-logo img { height: 290px; width: auto; }
.nav-logo span {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--ink);
}
.nav-links-bar {
  border-bottom: 1px solid var(--cream-dark);
}
.nav-links-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  height: 48px; display: flex; align-items: center; justify-content: space-between;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.97rem; font-weight: 400; letter-spacing: 0.04em;
  color: var(--ink-mid); transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links .nav-cta { font-weight: 400; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); transition: all 0.3s; }
.mobile-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 199; flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--serif); font-size: 1.6rem; color: var(--ink); }
.mobile-nav .nav-cta { font-family: var(--sans); font-size: 0.9rem; }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 4rem) 0 5rem;
  border-bottom: 1px solid var(--cream-dark);
}
.hero-inner { max-width: 820px; margin: 0 auto; padding: 0 2rem; text-align: center; }
.hero-eyebrow {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 1.25rem; display: block;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero-sub {
  font-size: 1.1rem; max-width: 600px; margin: 0 auto 2.5rem;
  color: var(--ink-mid);
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Trust Bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--ink); padding: 0;
}
.trust-bar-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 2rem 1.5rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 700;
  color: var(--cream); display: block; line-height: 1;
}
.trust-label { font-size: 0.78rem; color: var(--ink-light); margin-top: 0.4rem; letter-spacing: 0.05em; }

/* ─── About ─────────────────────────────────────────────────── */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 380px 1fr; gap: 5rem; align-items: start;
}
.about-photo img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 18%;
  display: block;
}
.about-text p { margin-bottom: 1rem; }
.about-text p:last-of-type { margin-bottom: 1.5rem; }
.about-credentials {
  display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.5rem;
  padding-top: 1.5rem; border-top: 1px solid var(--cream-dark);
}
.credential {
  display: flex; align-items: flex-start; gap: 0.75rem;
  color: var(--ink-mid);
}
.credential-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  flex-shrink: 0; margin-top: 0.6rem;
}

/* ─── Services Overview ─────────────────────────────────────── */
.services { background: var(--cream); }
.services-intro { max-width: 560px; margin-bottom: 3.5rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.service-card {
  background: var(--white); padding: 2rem 1.5rem;
  border-top: 3px solid var(--ink);
}
.service-icon {
  font-size: 1.5rem; margin-bottom: 1rem; display: block;
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: var(--ink-mid); margin-bottom: 1rem; }
.service-card a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em;
  color: var(--accent); text-transform: uppercase;
  border-bottom: 1px solid var(--accent); padding-bottom: 2px;
}

/* ─── Pricing ───────────────────────────────────────────────── */
.pricing { background: var(--cream-dark); }
.pricing-subtitle { max-width: 500px; margin-bottom: 3rem; }
.pricing-section-title {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 600;
  color: var(--ink); margin: 3rem 0 1.5rem;
  padding-bottom: 0.75rem; border-bottom: 2px solid var(--ink);
}
.pricing-section-title:first-of-type { margin-top: 0; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.price-card {
  background: var(--white); padding: 2rem;
  position: relative;
  display: flex; flex-direction: column;
}
.price-card.featured {
  background: var(--ink); color: var(--cream);
}
.price-badge {
  position: absolute; top: -1px; right: 2rem;
  background: var(--accent); color: var(--white);
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.3rem 0.8rem;
}
.price-card-label {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.5rem; display: block;
}
.price-card.featured .price-card-label { color: rgba(245,240,232,0.6); }
.price-card h3 {
  font-size: 1.15rem; margin-bottom: 0.25rem; color: var(--ink);
}
.price-card.featured h3 { color: var(--cream); }
.price-card-for {
  font-size: 0.8rem; color: var(--ink-light); margin-bottom: 1.25rem;
  line-height: 1.4;
}
.price-card.featured .price-card-for { color: rgba(245,240,232,0.6); }
.price-amount {
  font-family: var(--serif); font-size: 2rem; font-weight: 700;
  color: var(--ink); line-height: 1; margin-bottom: 0.25rem;
}
.price-card.featured .price-amount { color: var(--cream); }
.price-note {
  font-size: 0.75rem; color: var(--ink-light); margin-bottom: 1.5rem;
}
.price-card.featured .price-note { color: rgba(245,240,232,0.5); }
.price-features {
  display: flex; flex-direction: column; gap: 0.6rem;
  margin-bottom: 1.5rem; padding-top: 1.25rem;
  border-top: 1px solid var(--cream-dark);
}
.price-card.featured .price-features { border-top-color: rgba(255,255,255,0.15); }
.price-feature {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.85rem; color: var(--ink-mid); line-height: 1.4;
}
.price-card.featured .price-feature { color: rgba(245,240,232,0.8); }
.price-check { color: var(--accent); flex-shrink: 0; }
.price-card.featured .price-check { color: rgba(245,240,232,0.7); }
.price-card .btn, .price-card .btn-outline {
  width: 100%; text-align: center; display: block;
  margin-top: auto;
}
.price-card.featured .btn {
  background: var(--cream); color: var(--ink); border-color: var(--cream);
}
.price-card.featured .btn:hover {
  background: transparent; color: var(--cream);
}

/* Individual rates */
.rates-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.rates-table th, .rates-table td {
  text-align: left; padding: 0.85rem 1.25rem;
  font-size: 0.9rem; border-bottom: 1px solid var(--cream-dark);
}
.rates-table th {
  font-weight: 500; font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-light);
  background: var(--cream-mid);
}
.rates-table td:last-child { font-weight: 600; color: var(--ink); }
.rates-table tr:last-child td { border-bottom: none; }

/* ─── DEDICATED / Reverse Recruitment ──────────────────────── */
.dedicated { background: var(--ink); color: var(--cream); }
.dedicated .section-label { color: rgba(245,240,232,0.5); }
.dedicated h2 { color: var(--cream); max-width: 600px; }
.dedicated-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
  margin-top: 3.5rem;
}
.dedicated-text p { color: rgba(245,240,232,0.75); margin-bottom: 1rem; }
.dedicated-text p em { color: rgba(245,240,232,0.6); font-style: italic; }
.dedicated-includes h3 {
  color: var(--cream); font-size: 1rem; margin-bottom: 1.25rem;
  padding-bottom: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.15);
}
.dedicated-feature {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 1rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dedicated-feature:last-child { border-bottom: none; margin-bottom: 0; }
.dedicated-feature-icon {
  color: var(--accent); flex-shrink: 0; font-size: 0.9rem;
  margin-top: 0.3rem;
}
.dedicated-feature-text strong { color: rgba(245,240,232,0.95); display: block; font-size: 0.9rem; margin-bottom: 0.15rem; }
.dedicated-feature-text span { font-size: 0.82rem; color: rgba(245,240,232,0.55); }
.dedicated-price-box {
  margin-top: 2.5rem; padding: 2rem;
  border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.05);
}
.dedicated-price-box .price-amount { color: var(--cream); font-size: 2.8rem; }
.dedicated-price-box .price-note { color: rgba(245,240,232,0.5); }
.dedicated-price-box .staged {
  font-size: 0.82rem; color: rgba(245,240,232,0.55); margin: 0.5rem 0 1.5rem;
}
.dedicated-price-box .btn-accent { width: 100%; text-align: center; display: block; }

/* ─── 50+ Section ───────────────────────────────────────────── */
.fifty-plus { background: var(--white); }
.fifty-plus-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.fifty-plus-text p { margin-bottom: 1rem; }
.fifty-plus-features { display: flex; flex-direction: column; gap: 1rem; }
.fp-feature { padding: 1.25rem 1.5rem; background: var(--cream); }
.fp-feature h4 { font-size: 0.95rem; margin-bottom: 0.35rem; }
.fp-feature p { font-size: 0.85rem; color: var(--ink-mid); }

/* ─── Book a Call / Calendly ────────────────────────────────── */
.book { background: var(--cream-dark); }
.book-intro { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.book-intro h2 { margin-bottom: 1rem; }
.book-intro p { color: var(--ink-mid); }
.calendly-wrap {
  background: var(--white);
  min-height: 700px; /* Calendly needs height */
}
.calendly-placeholder {
  /* Shown until Calendly URL is set */
  background: var(--cream); border: 2px dashed var(--cream-mid);
  padding: 4rem 2rem; text-align: center; color: var(--ink-light);
}

/* ─── Newsletter ────────────────────────────────────────────── */
.newsletter {
  background: var(--accent); color: var(--white); padding: 4rem 0;
}
.newsletter-inner {
  max-width: 700px; margin: 0 auto; text-align: center; padding: 0 2rem;
}
.newsletter h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }
.newsletter p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }
.newsletter-form {
  display: flex; gap: 0; max-width: 480px; margin: 0 auto;
}
.newsletter-form input {
  flex: 1; border: none; padding: 0.9rem 1.25rem;
  font-family: var(--sans); font-size: 0.95rem;
  color: var(--ink); background: var(--white);
  outline: none;
}
.newsletter-form button {
  background: var(--ink); color: var(--cream);
  border: none; padding: 0.9rem 1.5rem;
  font-family: var(--sans); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.06em; cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: #000; }
.newsletter-note { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 0.75rem; }

/* ─── Shop Preview ──────────────────────────────────────────── */
.shop-preview { background: var(--cream); }
.shop-intro { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.product-card { background: var(--white); }
.product-img {
  height: 180px; background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.product-body { padding: 1.5rem; }
.product-type {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; display: block;
}
.product-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.product-card p { font-size: 0.85rem; color: var(--ink-mid); margin-bottom: 1.25rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--ink); }
.product-buy {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--white); background: var(--ink); padding: 0.5rem 1.25rem;
  border: 2px solid var(--ink); transition: background 0.2s, color 0.2s;
}
.product-buy:hover { background: transparent; color: var(--ink); }

/* ─── Blog Preview ──────────────────────────────────────────── */
.blog-preview { background: var(--white); }
.blog-intro { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.article-card { background: var(--cream); }
.article-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.75rem;
}
.article-card-body { padding: 1.5rem; }
.article-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.article-card p { font-size: 0.85rem; color: var(--ink-mid); margin-bottom: 1rem; }
.article-meta { font-size: 0.75rem; color: var(--ink-light); }
.article-read-more {
  display: inline-block; margin-top: 0.75rem;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em;
  color: var(--accent); border-bottom: 1px solid var(--accent);
}

/* ─── Client Reviews ───────────────────────────────────────── */
.reviews-section { background: var(--cream); padding: 5rem 0; }
.reviews-section h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-top: 0.5rem; margin-bottom: 2.5rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 3.5rem; }
.reviews-empty { color: var(--ink-mid); font-style: italic; font-size: 0.95rem; }
.review-card { background: var(--white); padding: 1.75rem; border-left: 3px solid var(--accent); }
.review-card-text { font-size: 0.95rem; color: var(--ink); line-height: 1.7; margin-bottom: 1.25rem; }
.review-card-text::before { content: '\201C'; }
.review-card-text::after { content: '\201D'; }
.review-card-author { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em; color: var(--ink-mid); text-transform: uppercase; }

.review-submit-wrap { border-top: 1px solid rgba(0,0,0,0.1); padding-top: 3rem; max-width: 680px; }
.review-submit-wrap h3 { font-family: var(--serif); font-size: 1.35rem; margin-bottom: 0.4rem; }
.review-submit-note { font-size: 0.85rem; color: var(--ink-mid); margin-bottom: 1.75rem; }
.review-form { display: flex; flex-direction: column; gap: 1.25rem; }
.review-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.review-form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.review-form-group label { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mid); }
.review-form-group input,
.review-form-group textarea { border: 1px solid rgba(0,0,0,0.18); padding: 0.75rem 1rem; font-family: var(--sans); font-size: 0.95rem; color: var(--ink); background: var(--white); resize: vertical; }
.review-form-group input:focus,
.review-form-group textarea:focus { outline: 2px solid var(--accent); border-color: transparent; }
.review-submit-btn { align-self: flex-start; background: var(--ink); color: var(--cream); padding: 0.75rem 2rem; font-family: var(--sans); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.06em; border: 2px solid var(--ink); cursor: pointer; transition: background 0.2s, color 0.2s; }
.review-submit-btn:hover { background: transparent; color: var(--ink); }

@media (max-width: 600px) {
  .review-form-row { grid-template-columns: 1fr; }
}

/* ─── Contact ───────────────────────────────────────────────── */
.contact { background: var(--cream-dark); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start;
}
.contact-text p:not(.section-label) { margin-top: 0.75rem; font-size: 0.95rem; }
.contact-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.contact-detail { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--ink-mid); }
.contact-detail a:hover { color: var(--accent); }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.05em; color: var(--ink); }
input, select, textarea {
  font-family: var(--sans); font-size: 0.95rem; font-weight: 300;
  color: var(--ink); background: var(--white);
  border: 1px solid #d4ccc0; padding: 0.75rem 1rem;
  outline: none; transition: border-color 0.2s; width: 100%; appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--ink-light); }
input:focus, select:focus, textarea:focus { border-color: var(--ink); }
textarea { resize: vertical; }

/* ─── Footer ────────────────────────────────────────────────── */
footer {
  background: var(--ink); color: rgba(245,240,232,0.45); padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-left span { font-family: var(--serif); font-size: 1rem; color: var(--cream); display: block; margin-bottom: 0.25rem; }
.footer-left p { font-size: 0.92rem; line-height: 1.6; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.92rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1100px; margin: 1.5rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center; font-size: 0.88rem;
}
.footer-langs {
  display: flex; gap: 0.5rem; align-items: center; margin-top: 0.5rem; flex-wrap: wrap;
}
.lang-tag {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2); color: rgba(245,240,232,0.55);
  padding: 0.2rem 0.6rem;
}

/* ─── Blog Post Page ────────────────────────────────────────── */
.post-hero {
  padding: calc(var(--nav-h) + 4rem) 0 3rem;
  background: var(--white); border-bottom: 1px solid var(--cream-dark);
}
.post-hero-inner { max-width: 780px; margin: 0 auto; padding: 0 2rem; }
.post-meta { font-size: 0.8rem; color: var(--ink-light); margin-top: 1.25rem; }
.post-body {
  max-width: 780px; margin: 0 auto; padding: 4rem 2rem 6rem;
}
.post-body p { margin-bottom: 1.5rem; color: var(--ink-mid); }
.post-body h2 { margin-top: 3rem; margin-bottom: 1rem; font-size: 1.7rem; }
.post-body h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.post-body ul { margin-bottom: 1.5rem; padding-left: 1.5rem; }
.post-body ul li {
  color: var(--ink-mid); margin-bottom: 0.5rem;
  padding-left: 1rem; position: relative;
}
.post-body ul li::before {
  content: '—'; position: absolute; left: -0.5rem; color: var(--accent);
}
.post-body blockquote {
  border-left: 3px solid var(--accent); padding: 1rem 1.5rem;
  background: var(--cream-dark); margin: 2rem 0; font-style: italic;
  color: var(--ink-mid);
}
.post-cta {
  background: var(--ink); padding: 3rem 2rem; text-align: center; margin-top: 4rem;
}
.post-cta h3 { color: var(--cream); margin-bottom: 0.75rem; }
.post-cta p { color: rgba(245,240,232,0.7); margin-bottom: 1.5rem; font-size: 0.95rem; }
.back-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--accent); margin-bottom: 1rem;
}
.back-link:hover { color: var(--accent-hover); }

/* ─── Blog Index Page ───────────────────────────────────────── */
.blog-hero { padding: calc(var(--nav-h) + 4rem) 0 1rem; background: var(--white); border-bottom: 1px solid var(--cream-dark); }
.blog-list { padding: 2rem 0; }
.blog-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* ─── Shop Page ─────────────────────────────────────────────── */
.shop-hero { padding: calc(var(--nav-h) + 4rem) 0 3.5rem; background: var(--white); border-bottom: 1px solid var(--cream-dark); }
.shop-body { padding: 5rem 0; }
.shop-body-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.product-card-full .product-img { height: 220px; font-size: 3rem; }
.product-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.product-tag {
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--cream-dark); color: var(--ink-mid); padding: 0.2rem 0.6rem;
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
  .dedicated-grid { grid-template-columns: 1fr; gap: 3rem; }
  .fifty-plus-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo { max-width: 340px; }
  .shop-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .blog-list-grid, .shop-body-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .shop-grid, .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .blog-list-grid, .shop-body-grid { grid-template-columns: 1fr; }
  section { padding: 4rem 0; }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .trust-item:nth-child(2) { border-right: none; }
}
