/* ============================================================
   BLOG-SPECIFIC STYLES
============================================================ */
.blog-hero {
  padding: 160px 80px 100px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(122,159,168,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.blog-hero-inner { max-width: 660px; position: relative; }
.blog-hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 24px;
}
.blog-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 68px;
  line-height: 1.1;
  color: var(--deep);
  margin-bottom: 22px;
}
.blog-hero p {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-light);
  max-width: 520px;
}

/* ============================================================
   BLOG SEARCH
============================================================ */
.blog-search-section {
  padding: 0 80px 56px;
  background: var(--cream);
}
.blog-search-box {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
.blog-search-input {
  width: 100%;
  padding: 16px 48px 16px 22px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--deep);
  background: var(--warm-white);
  border: 1px solid var(--stone);
  border-radius: 30px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.blog-search-input::placeholder { color: var(--text-muted); }
.blog-search-input:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px var(--aqua-pale);
}
.blog-search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  pointer-events: none;
}
.blog-search-clear {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1;
  padding: 4px;
}
.blog-search-clear:hover { color: var(--aqua-deep); }
.blog-search-box.has-query .blog-search-icon { display: none; }
.blog-search-box.has-query .blog-search-clear { display: block; }
.blog-search-status {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--text-light);
}
.blog-search-no-results {
  display: none;
  text-align: center;
  padding: 48px 20px 64px;
  background: var(--warm-white);
}
.blog-search-no-results p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-light);
}
.search-hidden { display: none !important; }

/* ============================================================
   RECENT POSTS
============================================================ */
.blog-recent {
  padding: 100px 80px;
  background: var(--warm-white);
}
.blog-section-label {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 48px;
  display: block;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--warm-white);
  border: 1px solid var(--stone);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(58,46,36,0.08);
}
.blog-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.blog-card-date {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.blog-card-tag {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--aqua);
  background: var(--aqua-pale);
  padding: 3px 10px;
  border-radius: 20px;
}
.blog-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--deep);
  margin-bottom: 14px;
}
.post-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.post-title-link:hover { color: var(--aqua-deep); }
.blog-card p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-light);
  flex: 1;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aqua);
  text-decoration: none;
  transition: gap 0.25s;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}
.blog-card-link:hover { gap: 12px; }

/* ============================================================
   FULL POST EXPANDED (on same page)
============================================================ */
.blog-post-full {
  display: none;
  padding: 0 28px 32px;
  border-top: 1px solid var(--stone);
  margin-top: 0;
}
.blog-post-full.open { display: block; }
.blog-post-full p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-light);
  padding-top: 24px;
}
.blog-card-link.collapse-link { margin-top: 16px; }

/* ============================================================
   ARCHIVE / OLDER POSTS
============================================================ */
.blog-archive {
  padding: 80px 80px 100px;
  background: var(--sand);
}
.archive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 0;
}
.archive-card {
  background: var(--warm-white);
  border-radius: 3px;
  padding: 32px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.archive-card:hover {
  border-color: var(--aqua-light);
  box-shadow: 0 4px 20px rgba(91,173,168,0.08);
}
.archive-card-img {
  width: 88px;
  height: 88px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}
.archive-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.archive-card-body { flex: 1; }
.archive-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.archive-card-date {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.archive-card-tag {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--aqua);
  background: var(--aqua-pale);
  padding: 2px 8px;
  border-radius: 20px;
}
.archive-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--deep);
  margin-bottom: 8px;
}
.archive-card p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
}
.archive-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: gap 0.25s;
}
.archive-card-link:hover { gap: 10px; }

/* Archive expanded post */
.archive-post-full {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--stone);
}
.archive-post-full.open { display: block; }
.archive-post-full p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ============================================================
   BLOG CTA STRIP
============================================================ */
.blog-cta-strip {
  background: linear-gradient(to right, var(--aqua-deep), var(--aqua));
  padding: 64px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.blog-cta-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 42px;
  font-weight: 300;
  color: white;
  line-height: 1.2;
}
.blog-cta-strip p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-top: 8px;
  max-width: 460px;
}
.btn-white {
  background: white;
  color: var(--aqua-deep);
  padding: 16px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-white:hover { background: var(--aqua-pale); transform: translateY(-1px); }

/* ============================================================
   BLOG MODAL / LIGHTBOX
============================================================ */
.blog-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(40, 32, 24, 0.65);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 2000;
  padding: 48px 24px;
  overflow-y: auto;
}
.blog-modal-overlay.open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.blog-modal-box {
  background: var(--warm-white);
  max-width: 740px;
  width: 100%;
  border-radius: 3px;
  padding: 56px 64px 64px;
  position: relative;
  margin: auto;
}
.blog-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: var(--text-muted);
  padding: 6px 10px;
  transition: color 0.2s;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}
.blog-modal-close:hover { color: var(--deep); }
.blog-modal-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.blog-modal-date {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.blog-modal-tag {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--aqua);
  background: var(--aqua-pale);
  padding: 3px 10px;
  border-radius: 20px;
}
.blog-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 40px;
  line-height: 1.2;
  color: var(--deep);
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--stone);
}
.blog-modal-body p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--text-light);
  margin-bottom: 22px;
}
.blog-modal-body p:last-child { margin-bottom: 0; }

/* ============================================================
   RESPONSIVE — BLOG
============================================================ */
@media (max-width: 900px) {
  .blog-hero { padding: 140px 32px 72px; }
  .blog-hero h1 { font-size: 44px; }
  .blog-search-section { padding: 0 32px 40px; }
  .blog-recent { padding: 64px 32px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-archive { padding: 56px 32px 72px; }
  .archive-grid { grid-template-columns: 1fr; }
  .blog-cta-strip { padding: 48px 32px; flex-direction: column; align-items: flex-start; }
  .blog-modal-overlay { padding: 24px 16px; }
  .blog-modal-box { padding: 48px 28px 44px; }
  .blog-modal-title { font-size: 28px; }
}

/* ============================================================
   SINGLE BLOG POST PAGE (blog/<slug>.html)
============================================================ */
.post-page-hero {
  padding: 160px 80px 40px;
  background: var(--cream);
}
.post-page-hero-inner { max-width: 720px; margin: 0 auto; }
.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  text-decoration: none;
  margin-bottom: 32px;
}
.post-back-link:hover { color: var(--aqua); }
.post-page-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.post-page-date {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.post-page-tag {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--aqua);
  background: var(--aqua-pale);
  padding: 3px 10px;
  border-radius: 20px;
}
.post-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  color: var(--deep);
}
.post-page-image {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 80px;
}
.post-page-image img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.post-page-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 80px 100px;
  background: var(--warm-white);
}
.post-page-body p {
  font-size: 17.5px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--text-light);
  margin-bottom: 26px;
}
.post-page-body strong { color: var(--deep); font-weight: 500; }
.post-page-body .post-section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.3;
  color: var(--deep);
  margin: 44px 0 14px;
}
.post-faq {
  margin-top: 56px;
  padding-top: 8px;
  border-top: 1px solid var(--aqua-pale);
}
.post-faq h3 {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--deep);
  margin: 28px 0 8px;
}
.post-faq p { margin-bottom: 0; }
.post-page-byline {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--text-light);
}
.post-page-byline a { color: var(--aqua-deep); text-decoration: none; border-bottom: 1px solid var(--aqua-light); }
.post-author {
  margin-top: 56px;
  padding: 24px 28px;
  background: var(--aqua-pale);
  border-radius: 4px;
}
.post-author p { font-size: 15.5px; line-height: 1.8; margin-bottom: 0; }
.post-author .post-author-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  margin-bottom: 8px;
}
.post-author a { color: var(--aqua-deep); }
/* Must follow the base .post-page-* rules above, or they override these. */
@media (max-width: 900px) {
  .post-page-hero { padding: 140px 32px 32px; }
  .post-page-title { font-size: 34px; }
  .post-page-image { padding: 0 32px; }
  .post-page-body { padding: 40px 32px 72px; }
  .post-page-body .post-section-heading { font-size: 25px; margin-top: 36px; }
}
