/* ==== Free Canela-Style Serif Font ==== */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&display=swap");

/* ===== Base ===== */
:root{
  --bg: #f7f5f1;
  --ink: #222222;
  --muted: #6b6b6b;
  --promo-bg: #efeee9;
  --underline: #111111;
  --ring: rgba(0,0,0,.08);

  --hdr-pad-y: 18px;
  --logo-size: 18px;
  --logo-track: .35em;
  --nav-gap: 36px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font:16px/1.6 "Cormorant Garamond", serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

/* =========================
   Header
   ========================= */
.smg-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--bg);
  transition: background .25s ease, box-shadow .25s ease;
}
.smg-wrap{
  max-width:1300px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap:24px;
  padding: var(--hdr-pad-y) 24px;
  transition: padding .24s cubic-bezier(.2,.7,.2,1);
}

/* shrink on scroll */
.smg-header.is-compact{
  --hdr-pad-y: 10px;
  --logo-size: 16px;
  --logo-track: .28em;
  --nav-gap: 28px;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.smg-header.is-compact .smg-wrap{ padding:0px 24px; }
.smg-wrap, .smg-logo, .smg-menu a, .smg-promo{ transition: all .18s ease; }

@media (prefers-reduced-motion: reduce){
  .smg-wrap, .smg-logo, .smg-menu, .smg-menu a, .smg-promo{ transition:none!important; }
}

.smg-logo img{
  display:block;
  /* height: 72px;            */
  width: 150px;
}

/* When header is compact (scroll) shrink logo slightly */
.smg-header.is-compact .smg-logo img{
  /* height: 72px; */
}



/* transparent only at very top */
.smg-header.smg-header--over-hero,
.smg-header.smg-header--over-hero.is-compact{
  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; opacity:.95; }
.smg-header.smg-header--over-hero .smg-promo{ background: rgba(255,255,255,.18); color:#fff; }
.smg-header.smg-header--over-hero .smg-promo-line2{ color: rgba(255,255,255,.85); }

/* brand + nav */
.smg-logo{
  font-weight:500;
  text-decoration:none;
  color:var(--ink);
  white-space:nowrap;
  font-size: var(--logo-size);
  letter-spacing: var(--logo-track);
}
.smg-nav{ margin-left:auto; display:flex; align-items:center; }
.smg-nav-toggle{
  display:none;
  position: relative;
  z-index: 130; /* stays tappable above menu sheet */
  appearance:none; border:0; background:transparent; padding:6px; cursor:pointer; color:var(--ink);
}
.smg-menu{
  margin:0; padding:0; list-style:none;
  display:flex; align-items:center;
  gap: var(--nav-gap);
  transition: gap .24s cubic-bezier(.2,.7,.2,1);
}
.smg-menu a{
  text-decoration:none;
  color:var(--ink);
  letter-spacing:.22em;
  font-size:12px;
  font-weight:500;
  text-transform:uppercase;
  padding:6px 0;
  display:inline-block;
  position:relative;
  transition: opacity .16s ease, color .16s ease;
}
.smg-menu a:hover{ opacity:.75; }
.smg-menu a[aria-current="page"]{ opacity:1; }
.smg-menu a[aria-current="page"]::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-6px; height:2px;
  background:var(--underline);
  transform-origin:left center;
  transform: scaleX(1);
  opacity:.9;
  transition: transform .22s ease, opacity .22s ease;
}

/* utilities */
.smg-utilities{ margin-left:36px; display:flex; align-items:center; gap:18px; }
.smg-search{ appearance:none; border:0; background:transparent; padding:6px; cursor:pointer; color:var(--ink); }
.smg-promo{
  display:inline-flex; flex-direction:column; justify-content:center; align-items:center;
  min-width:180px; height:48px; padding:6px 14px;
  background:var(--promo-bg); color:var(--ink); text-decoration:none;
}
.smg-promo-line1{ font-size:13px; letter-spacing:.12em; text-transform:uppercase; }
.smg-promo-line2{ display:block; margin-top:2px; font-size:10px; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); }

/* search panel */
.smg-search-panel{ border-top:1px solid var(--ring); }
.smg-search-form{
  max-width:1200px; margin:0 auto; padding:10px 24px;
  display:flex; gap:10px;
}
.smg-search-form input{
  flex:1; padding:10px 12px; border:1px solid #dad7d2; border-radius:10px; font-size:15px; background:#fff;
}
.smg-search-form button{
  padding:10px 14px; border-radius:10px; border:1px solid #111; background:#111; color:#fff; cursor:pointer;
}


/* =========================
   Mobile (<= 980px)
   ========================= */
@media (max-width: 980px){
  .smg-nav-toggle{ display:inline-flex; }
  .smg-menu{
    position:fixed;
    left:0; right:0;
    top:64px; /* dropdown just below header */
    background:var(--bg);
    flex-direction:column;
    gap:18px;
    padding:18px 24px 28px;
    display:none;
    border-top:1px solid var(--ring);
    z-index:120;
  }
  .smg-menu[data-open="true"]{ display:flex; }

  .smg-utilities{ margin-left:8px; }
  .smg-promo{ display:none; }
  

  @keyframes smgMenuIn{ to{ opacity:1; transform:none; } }

  /* readable links on solid sheet */
  .smg-menu[data-open="true"] a{ color:var(--ink) !important; }

  /* ensure header is solid while menu open (for contrast with burger/logo) */
  body.nav-open .smg-header{
    background: var(--bg) !important;
    box-shadow: 0 1px 8px rgba(0,0,0,.06);
  }

}



/* Image at hero */
/* ===== Services Hero ===== */
.services-hero{
  position: relative;
  isolation: isolate;
  height: min(92vh, 820px);
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

/* Invisible marker used for the intersection check */
.over-hero-sentinel{
  position:absolute; top:0; left:0; width:1px; height:1px;
  pointer-events:none;
}

/* Transparent header ONLY when overlapping the 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;
}

/* Make sure the default (non-over-hero) state is solid */
.smg-header{ background: var(--bg); }


/* background image */
.services-hero__bg{
  position: absolute; inset: 0;
}
.services-hero__bg img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;  /* adjust if you want the subject kept in frame */
  transform: none;
}

/* bottom gradient for white text readability */
.services-hero__shade{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(0,0,0,.55) 90%);
  z-index: 0;
}

/* large lead paragraph */
.services-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;
}


/* mobile: give more bottom padding so text doesn’t hit the edge */
@media (max-width: 680px){
  .services-hero__content{ padding-bottom: 56px; }
}
/* ===== Header over-hero state (transparent on top) ===== */
.smg-header.smg-header--over-hero{
  background: transparent;
  box-shadow: none;
}

/* make nav items white when over the hero */
.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: #ffffff;
}

/* underline color for active item when over the hero */
.smg-header.smg-header--over-hero .smg-menu a[aria-current="page"]::after{
  background: #ffffff;
  opacity: .95;
}

/* promo tile adjusted for dark bg */
.smg-header.smg-header--over-hero .smg-promo{
  background: rgba(255,255,255,.18);
  color: #ffffff;
}
.smg-header.smg-header--over-hero .smg-promo-line2{ color: rgba(255,255,255,.85); }


/* when we leave the hero, the compact state forces solid bg */
.smg-header.is-compact{
  background: var(--bg) !important;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}

/* Transparent ONLY at the very top */
.smg-header.smg-header--over-hero,
.smg-header.smg-header--over-hero.is-compact{
  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; }
.smg-header.smg-header--over-hero .smg-promo{ background: rgba(255,255,255,.18); color:#fff; }

/* Hero fills viewport; content padded so text isn’t under the header */
.services-hero{ height: min(92vh, 820px); min-height: 520px; position: relative; }
.services-hero__content{ margin-bottom: 150px;}


/* ===== Hero Video (unchanged) ===== */
.hero-video { width: 100%; background: #000; overflow: hidden; }
.hero-video-wrap { position: relative; width: 100%; aspect-ratio: 16/9; }
.hero-video-el { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 980px){
  .page-hero__wrap { padding: 36px 16px 16px; }
}

/* ===== About Intro (after hero video) ===== */
.about-intro{
  background: var(--bg);
}

.about-intro__wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 24px 36px; /* top/side/bottom */
}

.about-intro__text{
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  /* font-weight: 800; */
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.1;
  color: #2a2a2a;
  /* max-width: 1050px; */
  letter-spacing: 0.01em;
  word-spacing: 0.02em;
}

/* tighter spacing when header is compact and section is at the top */
.smg-header.is-compact + .page-hero + .hero-video + .about-intro .about-intro__wrap{
  padding-top: 40px;
}

@media (max-width: 980px){
  .about-intro__wrap{ padding: 40px 16px 48px; }
  .about-intro__text{ font-size: clamp(22px, 5.2vw, 32px); line-height: 1.3; }
}

/* ===== Mission Section (Image Left / Text Right) ===== */
.about-mission{
  background: #605c534a;
  padding: 36px 0;
}

.about-mission__inner{
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Image */
.about-mission__media img{
  width: 70%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}

/* Text */
.about-mission__title{
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 5vw, 46px);
  line-height: 1.25;
  color: #2a2a2a;
  font-weight: 300;[]
}

.about-mission__content p{
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.65;
  color: #333;
  max-width: 580px;
  font-family:"Cormorant Garamond", serif;
  font-weight: 500;
}

/* Mobile */
@media (max-width: 940px){
  .about-mission__inner{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-mission__content{
    max-width: 100%;
  }
  .about-mission__media img{
    width: 100%;
  }
}

.nvz-services{
  position: relative;
  background: #b8ae98;
  padding: 40px 20px 60px;
  font-family: "Cormorant Garamond", serif;
}

.nvz-topbar{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  /* max-width: 1300px; */
  margin: 0 auto 50px;
  padding: 0 20px;
}
.nvz-left-wrap{
  display:flex;
  align-items:center;
  gap:20px;
  position:relative;
}

.nvz-top-center{
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

/* Right */
.nvz-top-right{
  display: flex;
  justify-content: flex-end;
}
/* Pills */
.nvz-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid #cfe0d3;
  background: #ffffff;
  color: #57803a;
  font-weight: 400; /* no bold */
  font-size: 14px;
}
.nvz-pill-left{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 20px;
  background:#57803a;       /* green pill color */
  color:#ffffff;
  border-radius:999px;
  border:none;
  font-weight:400;
  font-size:15px;
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease;
}
.nvz-pill-dot{
  width:8px;
  height:8px;
  background:#ffffff;
  border-radius:50%;
  display:inline-block;
}

/* Our Services pill (matches screenshot) */
.nvz-pill--cta{
  display:inline-flex;
  align-items:center;
  gap:14px;
  padding:14px 18px 14px 22px;
  border:1.5px solid #57803a;           /* thin green outline */
  border-radius:999px;                   /* pill */
  background:#ffffff;                    /* light backdrop */
  color:#57803a;                         /* green text */
  font:400 16px/1.1 ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Inter,Helvetica,Arial;
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
}

.nvz-pill__label{ white-space:nowrap; }

.nvz-pill__action{
  width:32px;
  height:32px;
  border-radius:50%;
  background:#57803a;                    /* solid green circle */
  color:#ffffff;                         /* white arrow */
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 32px;
  transition:transform .25s ease, background-color .25s ease;
}

.nvz-pill__arrow{
  width:34px;
  height:34px;
  display:block;
}
.nvz-pill-left:hover{
  transform:scale(1.06);
  box-shadow:0 6px 14px rgba(0,0,0,.15);
}

/* Decorative cross lines */
.nvz-lines{
  /* position:relative; */
  /* width:10px; */
  height:160px;
}

.nvz-line-h{
  position:absolute;
  top:20%;
  left:0;
  width:100%;
  height:1px;
  background:#bcc3c0;   /* light grey line */
}

.nvz-line-v{
  position:absolute;
  left:80%;
  top:0;
  width:1px;
  height:100%;
  background:#bcc3c0;
}

/* Hover / focus (subtle, premium) */
.nvz-pill--cta:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 18px rgba(22,44,25,.12);
  border-color:#57803a;
}
.nvz-pill--cta:hover .nvz-pill__action{
  transform:scale(1.06);
  background:#57803a;
}

.nvz-pill--cta:focus-visible{
  outline:3px solid rgba(90,135,68,.35);
  outline-offset:2px;
}
.nvz-pill--sm{
  padding:10px 14px 10px 16px;
  font-size:14px;
}
.nvz-pill--sm .nvz-pill__action{
  width:28px; height:28px;
}


/* Header */
.nvz-head{
  max-width: 980px;
  margin: 0 auto 36px;
  text-align: center;
}
.nvz-title{
  margin: 54px 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: #1d2b22;
}
.nvz-title-accent{ color: #669344; }
.nvz-sub{
  color: #5c6b63;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.2;
  max-width: 920px;
  margin: 0 auto;   
}


/* Responsive */
@media (max-width: 1100px){
  .nvz-rail--right{ display:none; }
}
@media (max-width: 900px){
  .nvz-topbar{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 22px;
  }
  .nvz-top-left,
  .nvz-top-right{
    justify-content: center;
  }
  .nvz-rail-line{ display:none; }
  .nvz-lines{ display: none;}
}

@media (max-width: 640px){
  .nvz-rail{ display:none; }
  .nvz-head{ text-align:left; padding:0 4px; }
}

/* ===== Numbered Steps (replaces card grid) ===== */
.nvz-steps{
  max-width: 1300px;
  margin: 30px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.nvz-step{
  position: relative;
  border-radius: 18px;
  border: 1px solid #e6ece8;
  background: #ffffff;
  padding: 28px 28px 32px;
  overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease;
}

.nvz-step:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(8,21,14,.10);
  border-color: #d7e6da;
}

/* Big ghost number */
.nvz-step__num{
  font-weight: 800;
  font-size: clamp(68px, 9vw, 120px);
  line-height: .85;
  color: #dfe5ea;            /* soft grey like screenshot */
  letter-spacing: .02em;
  user-select: none;
}

/* Title + text */
.nvz-step__title{
  margin: 14px 0 8px;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.1;
  font-weight: 700;
  color: #0e2842;            /* deep blue-ish as in your image */
}

.nvz-step__text{
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: #5a6b79;
  max-width: 36ch;
}

/* Rounded corners like screenshot */
.nvz-step{ border-radius: 20px; }
.nvz-step::before, .nvz-step::after{ border-radius: 20px; }

/* Responsive */
@media (max-width: 1100px){
  .nvz-steps{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .nvz-steps{ grid-template-columns: 1fr; }
}

/* Image reveal for ALL steps */
.nvz-step::before{
  content: "";
  position: absolute; inset: 0;
  border-radius: 20px;
  background-image: var(--nvz-img);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .28s ease, transform .28s ease;
  pointer-events: none;
}

.nvz-step::after{
  content: "";
  position: absolute; inset: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.55));
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}

.nvz-step > *{
  position: relative; z-index: 1;
  transition: color .28s ease;
}

.nvz-step:hover::before{ opacity: 1; transform: scale(1.01); }
.nvz-step:hover::after{  opacity: 1; }
.nvz-step:hover .nvz-step__title,
.nvz-step:hover .nvz-step__text{ color: #fff; }
.nvz-step:hover .nvz-step__num{ color: rgba(255,255,255,.75); }

/* ===== About Split with Image Stack ===== */
.nvz-about-block{
  background: var(--bg);
  padding: 56px 0;
}

.nvz-about-inner{
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 60px;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
}

/* === Image stack: true overlap layout === */
.nvz-about-media{
  position: relative;
  aspect-ratio: 16 / 13;
  min-height: 520px;
  isolation: isolate;        /* contain z-index inside this column */
  overflow: visible;
}

.nvz-about-img{
  position: absolute;
  inset: 5;                  /* we control size via width/height below */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  background: #ddd;          /* fallback while image loads */
}

.nvz-about-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Top card (towards top-left) */
.nvz-about-img--top{
  top: 0;
  left: 0;
  width: 90%;
  height: 80%;
  border-radius: 20px;
}

/* Bottom card (offset to the right, overlapping) */
.nvz-about-img--bottom{
  bottom: 0;
  left: 45%;
  width: 62%;
  height: 56%;
  border-radius: 20px;;
}

/* ensure right column always paints above, even if images touch the gutter */
.nvz-about-content{ position: relative; z-index: 1; }

.nvz-about-inner{ gap: 64px; }  /* increase/decrease to taste */


/* Vertical badge on the right edge of the TOP image */
.nvz-badge-vertical{
  position: absolute;
  top: 50%;
  right: -30px;              /* pulls it outside the card like the reference */
  transform: translateY(-50%);
  padding: 10px 8px;
  background: #0e2842;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  writing-mode: vertical-rl;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
}

/* Tighter feel so the right column title lines up visually with the top card */
.nvz-about-inner{
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Responsive: stack images normally on small screens */
@media (max-width: 980px){
  .nvz-about-media{
    aspect-ratio: auto;
    min-height: 0;
  }
  .nvz-about-img{ position: relative; box-shadow: 0 12px 28px rgba(0,0,0,.14); }
  .nvz-about-img--top,
  .nvz-about-img--bottom{
    position: relative;
    width: 100%;
    height: auto;
    inset: auto;
    margin: 0 0 20px 0;
  }
  .nvz-badge-vertical{ right: 10px; }
}

/* Right column polish */
.nvz-about-title{
  margin-top: 6px;
}

.nvz-about-list{
  margin: 18px 0 22px;
}
.nvz-about-list li{
  padding-left: 26px;
  margin-bottom: 8px;
}
.nvz-about-list li::before{
  left: 0;
  top: 1px;
}

/* Contact split line like screenshot */
.nvz-about-contact{
  /* margin-top: 26px; */
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}

/* Text side */
.nvz-about-tag{
  background: #57803a;
  border-radius: 999px;
  padding: 6px 18px;
  border: none;
  color: white;
  font-size: 14px;
  margin-bottom: 14px;
}

.nvz-about-title{
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.15;
  margin: 0 0 20px;
  font-family: "Cormorant Garamond", serif;

}
.nvz-about-title1{
  font-size: clamp(18px, 2.5vw, 20px);
  line-height: 1.15;
  margin: 0 0 20px;
  font-family: "Cormorant Garamond", serif;
}
.nvz-about-title span{ color: #669344; }

/* Text */
.nvz-about-content p{
  color: #44524b;
  margin-bottom: 14px;
  line-height: 1.6;
  font-size: 16px;
}

/* List */
.nvz-about-list{
  margin: 22px 0;
  padding: 0;
  list-style: none;
}
.nvz-about-list li{
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
}
.nvz-about-list li::before{
  content:"✔";
  color: #57803a;
  position:absolute;
  left:0; top:0;
}

/* Contact box */
.nvz-contact-phone{
  margin: 0 0 10px;
}
.nvz-contact-person{
  display: flex;
  align-items: center;
  gap: 12px;
}
.nvz-contact-person img{
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

@media(max-width: 980px){
  .nvz-about-inner{ grid-template-columns: 1fr; }
  .nvz-about-img--bottom{ margin-left: 0; }
}

/* Side-by-side list + contact with vertical divider */
.nvz-about-features{
  display: grid;
  grid-template-columns: 1fr minmax(280px, 1fr);
  gap: 28px 28px;
  align-items: start;
  margin-top: 18px;
}

/* left list */
.nvz-about-list{
  margin: 0;
  padding: 0;
  list-style: none;
}
.nvz-about-list li{
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
  color: #2f3b35;
  font-size: 16px;
}
.nvz-about-list li::before{
  content: "✔";
  position: absolute; left: 0; top: 0;
  color: #57803a;
  font-weight: 700;
}

/* right contact with vertical divider */
.nvz-about-contact{
  padding-left: 22px;
  border-left: 1px solid #d8d8d8;
}

.nvz-contact-row{
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.nvz-contact-ic{
  width: 30px; height: 30px;
  color: #57803a;
}

.nvz-contact-avatar{
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; display: block;
}

.nvz-contact-label{
  font-size: 16px;font-weight: bold; color: #6a756f; margin-bottom: 2px;
}
.nvz-contact-phone{
  font-weight: 600; color: #0c1f2f; font-size: 16px;
}

.nvz-contact-name{
  font-size: 16px; font-weight: 700; color: #0c1f2f; line-height: 1.1;
}
.nvz-contact-role{
  font-size: 16px;font-weight: bold; color: #6a756f;
}

/* responsive: stack with divider turning into top border */
@media (max-width: 780px){
  .nvz-about-features{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .nvz-about-contact{
    border-left: 0;
    border-top: 1px solid #e5e5e5;
    padding-left: 0;
    padding-top: 16px;
  }
}



.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:#669344; }

/* 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; }
}
