/* Blog hero reuses the same over-hero behavior as Services */

/* Full-bleed hero */
.page-hero{
  position: relative;
  isolation: isolate;
  height: min(92vh, 820px);
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

/* background image */
.page-hero__bg{ position:absolute; inset:0; }
.page-hero__bg img{
  width:100%; height:100%; display:block; object-fit:cover; object-position:center;
}

/* readability shade */
.page-hero__shade{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(0,0,0,.55) 90%);
}

/* content */
.page-hero__content{
  position:relative; z-index:1;
  width:min(1200px,94vw);
  margin:0 auto;
  padding:clamp(18px,2.2vw,28px) 24px 42px;
  color:#fff;
  margin-bottom: 150px;
}
.page-hero__title{
  margin:0 0 .2em 0;
  font-family:"Cormorant Garamond", serif;
  font-weight:300;
  font-size:clamp(36px, 6.6vw, 64px);
  line-height:1.08;
}
.page-hero__lead{
  margin:.4em 0 0 0;
  font-family:"Cormorant Garamond", serif;
  font-weight:300;
  font-size:22px;
  line-height:1.6;
  max-width:72ch;
}

/* sentinel for IntersectionObserver */
.over-hero-sentinel{
  position:absolute; top:0; left:0; width:1px; height:1px; pointer-events:none;
}

/* transparent header when over hero */
.smg-header.smg-header--over-hero{
  background:transparent !important;
  box-shadow:none !important;
}
.smg-header.smg-header--over-hero .smg-logo,
.smg-header.smg-header--over-hero .smg-menu a,
.smg-header.smg-header--over-hero .smg-search{ color:#fff; }
.smg-header.smg-header--over-hero .smg-menu a[aria-current="page"]::after{ background:#fff; }


/* Blog Post */

.blog-posts {
  width: min(1200px, 92vw);
  margin: 90px auto;
  display: grid;
  gap: 90px;
}

/* Each post row */
.blog-post {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 48px;
}

/* Reverse order every second post */
.blog-post--reverse {
  grid-template-columns: 1fr 1.15fr;
}

.blog-post--reverse .blog-post__img { order: 2; }
.blog-post--reverse .blog-post__content { order: 1; }

/* Image */
.blog-post__img img {
  width: 100%;
  height: 100%;
  display:block;
  object-fit: cover;
  border-radius: 12px;
}

/* Content area */
.blog-post__content {
  color: #333;
}

.blog-post__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  margin: 0 0 .4em 0;
  line-height: 1.12;
}

.blog-post__excerpt {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 60ch;
  color: #50504f;
}

.blog-post__link {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .15em;
  text-decoration: none;
  color: #111;
  border-bottom: 1px solid #111;
  padding-bottom: 4px;
  transition: opacity .2s;
}

.blog-post__link:hover { opacity:.65; }

/* Responsive */
@media(max-width: 820px){
  .blog-post {
    grid-template-columns: 1fr;
  }
  .blog-post--reverse .blog-post__img,
  .blog-post--reverse .blog-post__content {
    order: unset;
  }
}


/* Footer */

.nvz-footer{
  background:#eee9e2;                /* soft beige */
  color:#1b231c;
  padding:40px 18px;
  font-family: ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Inter,Helvetica,Arial;
}
.nvz-footer__inner{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap:36px;
}

/* Headings (no bold) */
.nvz-foot-h{
  font-weight:700;
  font-size:22px;
  margin:0 0 14px 0;
  color:#1d2b22;
}

/* Body copy */
.nvz-foot-p{
  margin:0 0 18px 0;
  color:#404a42;
  line-height:1.75;
  font-size:15.5px;
}

/* Link columns */
.nvz-foot-links ul{ list-style:none; margin:0; padding:0; }
.nvz-foot-links li{ margin:10px 0; }
.nvz-foot-links a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#252d26;
  text-decoration:none;
  font-size:15px;
}
.nvz-foot-links a .chev{ color:#5b6a61; }
.nvz-foot-links a:hover{ color:#6d8f50; }

/* Contact block */
.nvz-phone{
  display:inline-block;
  color:#57803a;
  text-decoration:none;
  font-size:30px;
  font-weight: 700;
  line-height:1.2;
  margin-bottom:6px;
}
.nvz-phone-underline{
  display:block;
  height:2px;
  width:100%;
  background:#1d2b22;                 /* dark underline */
  margin:8px 0 14px 0;
  opacity:.5;
}
.nvz-email{
  display:inline-block;
  color:#0f1e16;
  text-decoration:none;
  font-size:18px;
  font-weight: 700;
  margin-bottom:14px;
}
.nvz-email:hover{ text-decoration:underline; }

/* Socials */
.nvz-social{ display:flex; gap:16px; margin-top:10px; }
.nvz-social__btn{
  /* width:36px; height:36px; */
  /* border-radius:8px; */
  display:flex; align-items:center; justify-content:center;
  color:#0f1e16;
  /* background:#fff; */
  /* border:1px solid #d8d2c9; */
  text-decoration:none;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.nvz-social__btn svg{ width:32px; height:32px; fill:currentColor; }
.nvz-social__btn:hover{
  transform:translateY(-2px);
  color:#c9c2b7;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
}

/* CTA pill (left) */
.nvz-cta{
  display:inline-flex;
  align-items:center;
  gap:14px;
  padding:14px 18px 14px 22px;
  border:1.5px solid #57803a;
  border-radius:999px;
  background:#ffffff;
  color:#57803a;
  font-weight:400;
  font-size:16px;
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
}
.nvz-cta__circle{
  width:32px; height:32px; border-radius:50%;
  background:#57803a; color:#ffffff;
  display:inline-flex; align-items:center; justify-content:center;
  flex:0 0 32px;
  transition:transform .25s ease, background-color .25s ease;
}
.nvz-cta__arrow{ width:32px; height:32px; display:block; }
.nvz-cta:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 18px rgba(22,44,25,.12);
  border-color:#57803a;
}
.nvz-cta:hover .nvz-cta__circle{
  transform:scale(1.06);
  background:#57803a;
}

/* Responsive */
@media (max-width: 1000px){
  .nvz-footer__inner{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px){
  .nvz-footer__inner{
    grid-template-columns: 1fr;
  }
  .nvz-phone{ font-size:22px; }
}