/* ===== Page hero (full-bleed) ===== */
.contact-hero{
  position: relative;
  height: min(92vh, 820px);
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color:#fff;
}
.contact-hero .page-hero__bg{ position:absolute; inset:0; z-index:0; }
.contact-hero .page-hero__bg img{
  width:100%; height:100%; object-fit:cover; object-position:center;
  display:block;
}
.page-hero__shade{ position:absolute; inset:0; z-index:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 28%, rgba(0,0,0,.55) 90%);
}
.page-hero__content{ position:relative; z-index:1; width:min(1200px,94vw); margin:0 auto; padding:22px 24px 58px; margin-bottom: 150px; }
.page-hero__title{
  margin: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;
}
.over-hero-sentinel{ position:absolute; top:0; left:0; width:1px; height:1px; pointer-events:none; }

/* ===== Layout ===== */
.contact-main{ background: var(--bg); }
.contact-wrap{ width:min(1200px, 94vw); margin:0 auto; padding:0 8px; }

/* Intro */
.contact-intro{ padding: clamp(32px, 6vw, 56px) 0 0; }
.contact-h1{
  margin:0 0 10px;
  font-family:"Cormorant Garamond", serif; font-weight:500; color:#19241d;
  font-size: clamp(28px, 4.5vw, 40px); line-height:1.15;
}
.contact-intro-text{
  margin:0; color:#2f3b35; font-size:16px; line-height:1.6;
  max-width: 56ch;
}
/* Make the burger visible over the hero when header is transparent */
.smg-header.smg-header--over-hero .smg-nav-toggle { color: #fff; }


/* Form section wrapper — tightened spacing */
.contact-form-section{ padding: 12px 0 60px; }
.contact-section{
  margin-top: 26px;        /* reduced from large gaps */
}
.contact-rule{
  border:0; border-top:1px solid #e7e3dc; margin: 24px 0;   /* tight rules */
}

/* Headings */
.contact-h2{
  display:flex; align-items:center; gap:.5ch;
  margin: 0 0 14px;
  font-family:"Cormorant Garamond", serif; font-weight:500; color:#19241d;
  font-size: clamp(20px, 3vw, 32px); line-height:1.2;
}
.contact-h2 span{ color:#19241d; opacity:.9;font-size: clamp(20px, 3vw, 32px); }

/* Fields */
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 14px; }
.field{ display:block; margin-bottom: 14px; }
.label{
  display:block; font-size:12px; letter-spacing:.12em; text-transform:uppercase;
  color:#5b675f; margin-bottom:6px;
}
.input, .select, .textarea{
  width:100%;
  background:#fff;
  border:1px solid #e8e3db;
  border-radius:8px;
  padding:12px 14px;
  font-size:15px; color:#1d231f;
  font-family: inherit;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.textarea{ resize: vertical; }
.input:focus, .select:focus, .textarea:focus{
  outline:0; border-color:#111; box-shadow:0 0 0 3px rgba(0,0,0,.06);
}
.-select select.select{ appearance:auto; }

.microcopy{ margin:6px 0 10px; color:#6a756f; font-size:13px; }
.microcopy a{ color:#1f1f1f; }

/* Actions */
.form-actions{ margin-top: 18px; }
.btn-outline{
  appearance:none; background:transparent; color:#111; border:1px solid #111;
  border-radius:8px; padding:12px 18px; font-size:13px; letter-spacing:.12em; text-transform:uppercase;
  cursor:pointer; transition: background .2s, color .2s;
}
.btn-outline:hover{ background:#111; color:#fff; }

/* Responsive */
@media (max-width: 880px){
  .form-row{ grid-template-columns: 1fr; }
}

/* Two-column grid */
.contact-two{ padding: clamp(28px, 5vw, 48px) 0 64px; background: var(--bg); }
.contact-two__grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;   /* left details / right form */
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

/* LEFT details */
.contact-details{ padding: 6px 4px; }
.cd-title{
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(34px, 5.5vw, 56px);
  line-height: 1.1;
  color: #111;
}
.cd-lead{
  margin: 0 0 18px;
  color: #2e3a33;
  font-size: 16px;
  line-height: 1.6;
  max-width: 44ch;
}
.cd-list{
  list-style: none; margin: 18px 0 0; padding: 0;
  display: grid; gap: 14px;
}
.cd-list li{
  display: grid; grid-template-columns: auto 24px 1fr; gap: 10px;
  align-items: center;
  font-size: 16px; color: #1d231f;
}
.cd-label{
  font-weight: 700; color: #669344;  /* green label like screenshot */
  min-width: 70px;
}
.cd-ic svg{ width: 18px; height: 18px; color: #669344; display: block; }
.cd-value{ color: #1d231f; text-decoration: none; }

/* RIGHT form panel = your existing form styles with tighter spacing */
.contact-form-panel .contact-h1{ margin: 0 0 8px; }
.contact-form-panel .contact-intro-text{ margin: 0 0 12px; }

.contact-form-panel .contact-section{ margin-top: 20px; }
.contact-form-panel .contact-rule{ margin: 18px 0; }
.form-row{ gap: 16px; margin-bottom: 12px; }
.field{ margin-bottom: 12px; }

/* Responsive: stack on small screens */
@media (max-width: 900px){
  .contact-two__grid{ grid-template-columns: 1fr; }
  .cd-title{ font-size: clamp(30px, 7vw, 42px); }
}


/* Footer */

.nvz-footer{
  background:#eee9e2;                /* soft beige */
  color:#1b231c;
  padding:40px 18px;
}
.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; }
}
