/* ---------------------------
   Global Reset & Variables
--------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Sacramento&display=swap');


main {
  background-color: var(--cream);
}

:root {
  /* Your palette */
  --forest: #4F7151;
  /* solid pine for borders/gradients/icons */
  --sage: #BFC3A0;
  --golden: #F2D79E;
  --peach: #EAB99B;
  --blush: #E8C7B2;
  --cream: #FAF2E2;
  --taupe: #A6825A;
  --umber: #59483C;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

h1,
h2,
h3,
h4,
a
 {
  font-family: "Poppins", sans-serif;
  color: var(--umber);
}

p {
  font-family: "Lora", serif;
  line-height: 1.7;
  color: var(--umber);
}

/* ---------------------------
     Header & Navigation
  --------------------------- */
header {
  background: linear-gradient(to bottom, var(--golden) 97%, var(--forest) 100%);
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
}

/* Topbar */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--forest);
  padding: 0.3rem 5.5rem;
}

.topbar a {
  color: var(--cream);
  font-weight: bold;
  transition: border-bottom 0.3s ease-out;
}

.topbar a:hover {
  border-bottom: 2px solid var(--umber);
}

/* Main nav container */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 90%;
  margin: 0 auto;
}

.nav-left,
.nav-right>ul {
  display: flex;
  align-items: center;
}

/* Left side (logo + heading) */
.nav-left {
  gap: 1rem;
}

.nav-left img {
  max-height: 5.9rem;
  display: block;
  margin: 0;
  padding: 0;

}

.nav-left {
  color: var(--umber);
  text-align: center;
}

/* Right side (menu links) */
.nav-right>ul {
  display: flex;
  gap: 3rem;
}

.nav-right li {
  position: relative;
}

.nav-right a {
  color: var(--umber);
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-right a:hover {
  color: var(--taupe);
}

/* ---------------------------
     Dropdown menu 
  --------------------------- */
.nav-right li .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.1rem);
  left: 0;
  background: var(--cream);
  min-width: 220px;
  border: 1px solid var(--umber);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  z-index: 20;
}

.nav-right li:hover .dropdown {
  display: block;
}

.nav-right .dropdown li {
  border-bottom: 1px solid var(--forest);
}

.nav-right .dropdown li:last-child {
  border-bottom: none;
}

.nav-right .dropdown a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--umber);
  font-weight: 600;
  transition: all 0.25s ease;
}

.nav-right .dropdown a:hover {
  background: var(--forest);
  color: var(--cream);
  padding-left: 1.4rem;
}

/* ---------------------------
     Dots Animation
  --------------------------- */
.dots {
  display: flex;
  gap: 0.2rem;
  padding-top: 0.1rem;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

.dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--umber);
}

nav a:hover .dots {
  opacity: 1;
  transform: scale(1);
  gap: 0.7rem;
}

nav a:hover .dots i {
  background: var(--taupe);
}

nav li.active .dots {
  opacity: 1;
  transform: scale(1);
  gap: 0.2rem;
}

/* ---------------------------
     Hero
  --------------------------- */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: -10% 0 0 0;
  height: 120%;
  background: url("assets/sunhero.jpg") center / cover no-repeat;
  will-change: transform;
  z-index: 0;
  top: -10%;
  left: -5%;
  width: 110%;
  height: 120%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
      rgba(0, 0, 0, 0.25) 0%,
      /* darkest at center */
      rgba(0, 0, 0, 0.15) 40%,
      /* smooth falloff */
      rgba(0, 0, 0, 0.05) 100%
      /* fades near edges */
    );
  z-index: 1;
}



.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 2;
  color: var(--cream);
  max-width: 700px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 2.5rem;
}

.hero-content h2 {
  font-size: 1.2rem;
  font-style: italic;
}

.hero-content .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--forest);
  color: var(--cream);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
  transition: all 0.3s ease;
}

.hero-content .btn:hover {
  background: var(--peach);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .18);
}

/* Desktop default: hide hamburger */
.nav-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--umber);
  cursor: pointer;
}

.full-text {
  display: inline;
}

.short-text {
  display: none;
}

/* Mobile-only */
@media (max-width: 900px) {
  .topbar {
    justify-content: space-between;
    gap: 2rem;
    font-size: 0.7rem;
    padding: 0.3rem;
  }
  .full-text {
    display: none;
  }

  .short-text {
    display: inline;
  }

  .nav-left h2 {
    font-size: 1rem;
  }

  .nav-left {
    gap: 0;
  }

  .nav-toggle {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
  }

  #primary-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--cream);
    border-top: 1px solid rgba(0, 0, 0, .08);
    padding: .5rem 0;
    gap: .3rem;
    text-align: center;
  }

  #primary-menu.active {
    display: flex;
    justify-content: center;
  }

  #primary-menu>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1rem;
    font-size: 1.05rem;
  }

  .dots {
    pointer-events: none;
  }

  .nav-right li .dropdown {
    display: none !important;
  }

}


/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    transform: none !important;
  }
}


/* NRT Intro */
.nrt-intro {
  background-color: var(--cream);
}

.nrt-intro h2, .who h2, .c {
  text-align: center;
  font-size: 2rem;
  color: var(--umber);
  margin: 0 auto;
  padding-top: 2rem;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;          /* let it be full container width */
  max-width: 70%;       /* still keep it narrow overall */
  margin: 0.5rem auto;
  overflow: hidden;     /* safety: hides any accidental spill */
}

.line {
  flex: 1 1 auto;       /* allow shrinking */
  height: 2px;
  background-color: #4a2c23;
  opacity: 0.7;
  max-width: none;      /* remove fixed 50% cap */
}

.divider img {
  width: 50px;
  height: auto;
  flex-shrink: 0;       /* image stays same size, lines shrink instead */
}


.split-nrt {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 95%;
  margin: 1rem auto;
  align-items: start;
  padding-block: 2rem 0;
  background-color: var(--sage);
  padding: 3rem 4rem;
  border-radius: 15px;
}


.nrt-image {
  position: sticky;
  top: 13rem;
  height: 60vh;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .10);
}

.nrt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 5px solid var(--taupe);
}

.nrt-text {
  display: flex;
  flex-direction: column;
  gap: 9vh;   
}

.nrt-text h3 {
  padding-bottom: 0.5rem;
  text-align: center;
  color: var(--umber);
}

.nrt-text article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 20vh;         
  background: var(--cream);
  border-left: 6px solid var(--taupe);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
  color: var(--umber);
}



@media (max-width: 768px) {
  .nrt-text {
    display: flex;
    flex-direction: row;      
    gap: 1rem;
    overflow-x: auto;        
    scroll-snap-type: x mandatory; 
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch; 
  }

  .nrt-text h3 {
    font-size: 1rem;
  }

  .nrt-text article {
    flex: 0 0 90%;            
    scroll-snap-align: start;  
    text-align: center;
    padding: 0.5rem 0.3rem;
  }
  .card p {
    font-size: 0.9rem;
  }


  .nrt-text::-webkit-scrollbar {
    display: none;
  }


  .split-nrt {
    grid-template-columns: 1fr;
  }

  .nrt-image {
    position: static;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .divider {
    width: 50%;
    gap: 0.5rem;
  }

  .divider img {
    width: 40px;
  }
}

.who {
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
}

.who p {
  max-width: 1000px;
  margin: 0 auto;
}

.who-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5rem; /* smaller gap */
  margin: 2rem auto;
  max-width: 700px;
  padding-bottom: 2rem;
}

.who-cards article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
  background-color: var(--blush);
  border-radius: 15px;
  padding: 1rem 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(60, 46, 36, 0.06), 0 12px 24px rgba(218, 180, 140, 0.08);
  max-width: 400px;
  align-items: center;
  flex-wrap: wrap;



}

.who-cards article:hover{
  transform:translateY(-10px);
}

.who-cards img {
  border-radius: 20px;
  border: 7px double var(--taupe);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  width: 200px;
  transition: transform 0.3s ease;
}

.who-cards article a {
  color: var(--cream);
  width: fit-content;
  margin: 0 auto;
  padding: 0.25rem 2rem;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--taupe) 0%, #a0846b 100%);
  box-shadow: 0 3px 10px rgba(160, 132, 107, 0.25);
}

.who-cards article a:hover {
  background: var(--umber);
  box-shadow: 0 6px 16px rgba(60, 46, 36, 0.15);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .who-cards {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 100%;
  }

  .who-cards article {
    width: 90%;
    max-width: 350px;
  }

  .who-cards img {
    width: 180px;
  }

  .who p {
    padding: 0 1rem;
    font-size: 0.95rem;
  }
}

.ready {
  max-width: 90%;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.ready-inner {
  border: 7px double var(--umber);
}


.cta-top {
  display: flex;
  width: 100%;
  height: auto;
  max-height: 40vh;
  justify-content: center !important;
  gap: 3rem;
  text-align: center;
  background: url("assets/wheatbackground.jpg") no-repeat center / cover;

}

.cta-left {
  flex: 1.5;
  padding: 1rem;
}

.cta-right {
  flex: 1;
  padding: 2rem 3rem;
}

.cta-left img {
  display: block;
 object-fit: cover;
 width: 100%;
 height: 100%;
}

.cta-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.cta-right a {
  background-color: var(--peach);
  padding: 0.5rem 4rem;
  border-radius: 5px;
  font-weight: 550;
  
}

.cta-right a:hover {
  background-color: var(--blush);
}

.cta-bottom {
  display: flex;
  text-align: center;
  min-height: 30vh;
  background-color: var(--peach);
  justify-content: center;
  gap: 3rem;
  padding: 0 2rem;
}

.cta-bottom h3 {
  font-size: 1.7rem;
}

.bottom-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
  gap: 0.5rem;
}

.bottom-left em {
  font-size: 1.3rem;
  color: var(--umber);
  font-weight: 500;
}
.bottom-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}



.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 0 auto;
}


.input-group { 
  background-color: var(--cream);
  border-radius: 5px;
 
}

/* Inputs */
.input-group input {
  width: 15rem;
  height: 2.25rem;      
  font-size: 1rem;
  padding: 0 .6rem;
  border: 2px solid var(--umber);
  border-radius: 5px;
}

/* Textarea */
.input-group textarea {
  width: 15rem;
  min-height: 6rem;     
  font-size: 1rem;
  padding: 0.6rem;
  border: 2px solid var(--umber);
  border-radius: 5px;
  resize: none;         
  overflow: auto;       
  display: block;
}


.sub {
  background: var(--cream);
  color: var(--umber);
  border: 2px solid var(--umber);
  border-radius: 5px;
  padding: 0.5rem 2.5rem;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;  
  font-size: 1rem;  
  margin: 0 auto;
}

.sub:hover { background: var(--umber); color: var(--cream); }

.bottom-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


/* ===== MOBILE FRIENDLY (simple stack + spacing) ===== */
@media (max-width: 1000px) {

  .cta-top {
    flex-direction: column;
    max-height: none;
    gap: 1.5rem;
    padding: 1rem;
  }

  .cta-left,
  .cta-right {
    flex: 1;
    padding: 0.5rem 1rem;
  }

  .cta-right a {
    padding: 0.6rem 2rem;
  }

  .cta-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .bottom-left {
    max-width: 100%;
    align-items: center;
  }

  .bottom-left h3 {
    font-size: 1.4rem;
  }

  .bottom-left em {
    font-size: 1.1rem;
  }

  .inquiry-form {
    width: 100%;
    padding: 1rem;
    align-items: center;
  }

  .input-group input,
  .input-group textarea {
    width: 100%;
    max-width: 320px;
  }

  .sub {
    width: 100%;
    max-width: 320px;
  }
}

footer {
  background-color:var(--forest);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: 1rem;
}
.footer-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}

.footer-left img {
  width: 11rem;
}

footer h2 {
  text-align: center;
  color: var(--golden);

}
.footer-center ul {
  display: flex;
  gap: 1rem;
  border-top: 2px var(--golden) solid;
  border-bottom: 2px var(--golden) solid;
  padding: 1rem 0;
  margin-top: 0.5rem;
  font-size: 1.3rem;
}

.footer-center a:hover {
  background-color: var(--golden);
  color: var(--umber);
  padding: 0.3rem;
  border-radius: 5px;
  text-decoration: underline;
  transition: all 0.3s ease;
}
footer a {
  color: var(--cream);
}
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-right a:hover {
  text-decoration: underline;
}

.cta-footer {
  background-color: var(--golden);
  color: var(--umber);
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
  padding: 0.25rem 0;
}

.cta-footer:hover {
  text-decoration: none !important;
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.copyright {
  display: flex;
text-align: center;
padding-top: 1rem;
justify-content: space-between;
align-items: center;
}

.copyright p, .copyright a {
  color: var(--cream);
  font-style: italic;
  font-size: 0.9rem;
  font-weight: 400;
  font-family:'Lora',sans-serif;
}

@media (max-width: 1200px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
  }

  .footer-left img {
    width: 8rem;
  }

  .footer-center ul {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    border-top: 2px solid var(--golden);
    border-bottom: 2px solid var(--golden);
    width: 90%;
    margin: 0 auto;
    padding: 1rem 0;
  }

  .footer-right {
    align-items: center;
    gap: 0.75rem;
  }

  .cta-footer {
    width: 90%;
    padding: 0.6rem 1rem;
    font-size: 1rem;
  }

  .copyright {
    padding-top: 1rem;
    flex-direction: column;
  }

  .copyright p, .copyright a {
    font-size: 0.9rem;
  }
}

.mission, .founder{
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2.5rem;
}




.mission {
  padding-top: 11rem;
}

.m-left, .f-right {
  flex: 1 1 50%;
  text-align: center;
}

.m-left p , .f-right p{
  text-align: left !important;
}

.m-right, .f-left{
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
}

.m-right img, .f-left img {
  width: 90%;
  height: auto;
  object-fit: cover;
  border-radius:  58% 42% 70% 30% / 38% 60% 40% 62%; /* organic shape */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  display: block;
}

.m-right img:hover, .f-left img:hover {
  transform: scale(1.05);
}


.spacer {
  padding: 0.5rem 0;
}

.founder {
  padding-bottom: 3rem !important;
}

.f-left .cap {
  font-family: "Great Vibes", "Sacramento", cursive;
  font-size: 1.5rem;
  color: var(--umber);
  font-weight: 500;
  text-align: center;
  margin-top: 0.6rem;
  letter-spacing: 0.5px;
  opacity: 0.9;
  padding-left: 5rem;
}

.f-left {
  display: flex;
  flex-direction: column;
}

.f-left .cap::before {
  content: "— ";
  color: var(--taupe);
}


@media (max-width: 1124px) {
  .mission, .founder{
    gap: 2rem;
  }

  .mission {padding: 10rem 5% 0;}
  .founder{padding: 1rem 5% 0;}
  .m-left, .f-right { flex: 1 1 55%; }
  .m-right, .f-left { flex: 1 1 40%; }
  .m-left h1 , .f-right h1 { font-size: 1.9rem; }
  .m-right img, .f-left img { width: 95%; }
}

/* ====== Tablets ====== */
@media (max-width: 900px) {
  .mission, .founder {
    flex-direction: column-reverse;  /* image above text looks nice too; reverse if you prefer */
    align-items: center;
    text-align: center;
  }

  .mission { padding: 7.5rem 6% 0;}
  .founder {padding: 1rem 6% 0;}
  .m-left, .m-right, .f-left, .f-right {
    flex: 1 1 100%;
    max-width: 680px;               /* keeps line length comfortable */
  }
  .m-left h1, .f-right h1 {
    font-size: 1.8rem;
    border-bottom-width: 2px;
    padding: 0 .75rem;
  }
  .m-right img , .f-left img{
    width: 80%;
    max-width: 520px;
    margin: 0 auto 1.25rem;
  }

  .f-left img {
    width: 95% !important;
  }
}

/* ====== Phones ====== */
@media (max-width: 600px) {
  .mission, .founder , .people {
    gap: 1.25rem;
  }

  .mission { padding: 11rem 5% 0;}
  .founder, .people { padding: 1rem 5% 0;}
  .m-left h1, .f-right h1 {
    font-size: clamp(1.45rem, 5vw, 1.7rem);
    padding: 0 .5rem;
  }
  .m-left p, .f-right p {
    font-size: 1rem;
  }
  .m-right img, .f-left img {
    width: 88%;
    box-shadow: 0 12px 28px rgba(0,0,0,.12);
    /* slightly calmer blob on small screens */
    border-radius: 68% 32% 55% 45% / 42% 60% 38% 58%;
  }
}

/* Motion-friendly hover (nice to have) */
@media (prefers-reduced-motion: reduce) {
  .m-right img, .f-left img{ transition: none; }
  .m-right img:hover, .f-right img:hover { transform: none; }
}

.core {
  text-align: center;
  background-color: var(--cream);
  padding: 5rem 8%;
}

.core h1, .m-left h1, .f-right h1 {
  color: var(--taupe);
  font-size: 2.2rem;
  border-bottom: 3px solid var(--golden);
  display: inline-block;
  padding: 0 1rem;
  margin-bottom: 1rem;
}

.core p {
  max-width: 750px;
  margin: 0.5rem auto 3rem;
  line-height: 1.7;
}

.core-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
}

.core-icon {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 350px;
  border-left: 5px solid var(--sage);
  max-height: 300px;
}

.core-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* === ICON STYLING === */
.custom-icon {
  font-size: 2.8rem;      /* Adjust icon size */
  color: var(--forest);   /* Use your palette color */
  margin-bottom: 1rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.core-icon:hover .custom-icon {
  transform: scale(1.1);
  color: var(--golden) !important;   
}

.core-icon:hover {
  border-left: 5px solid var(--golden);
}

.core-icon h2 {
  color: var(--umber);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.core-icon p {
  font-size: 1rem;
  line-height: 1.6;
}

/* === Mobile Responsive === */

@media (max-width: 768px) {
  .core {
    padding: 3.5rem 6%;
  }
  .custom-icon {
    font-size: 2.3rem;

  }
}

@media (max-width: 1000px) {
  .core-icons {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .core-icons {
    grid-template-columns: 1fr;
  }
}

.nrt-intro-s {
  background-color: var(--peach);
  margin-bottom: 2rem;
}
.nrt-intro-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 9rem;
}


.nrt-intro-l img {

  height: auto;
  max-height: 75vh;
  object-fit: cover;
  border-radius: 7px;
  border:7px double var(--cream);
  margin: 2rem;
  transition: all 0.3s ease;
}

.nrt-intro-r h1 {
  margin-bottom: 0.5rem;
  text-align: center;
  border-bottom: 2px solid var(--cream);
  padding-bottom: 0.3rem;
}

.nrt-intro-r p {
  max-width: 650px;
}

.nrt-intro-r p:first-of-type {
  padding-top: 1rem;
}

.nrt-buttons {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  margin: 1.5rem 2rem 3rem;
}

.nrt-buttons a {
  background-color: var(--cream);
  padding: 0.5rem 3rem;
  border-radius: 7px;
  transition: all 0.3s ease;
  border: 2px solid var(--umber);
  box-shadow: 0 6px 18px rgba(89, 72, 60, 0.4);
}

.nrt-buttons a:hover {
  color: var(--cream);
  background-color: var(--umber);
}

.nrt-intro-l img:hover {
  border-color: var(--umber);
}

.process-human {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  max-width: 95%;
  margin: 1rem auto;
  align-items: start;
  padding-block: 2rem 0; 
  padding: 3rem 4rem;
  border-radius: 15px;
}

.process-image {
  position: sticky;
  top: 13rem;
  height: 60vh;
  border-radius: 14px;
  overflow: hidden;
}

.process-image h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
}

.process-wrapper {
  display: flex;
  flex-direction: column;
  gap: 9vh;
}

.process-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
}



.num-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--cream);
  color: var(--taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 1rem;
  border: var(--taupe) 3px solid;
  
}

.process-text h3 {
  text-align: center;
  padding-bottom: 0.5rem;
  color: var(--taupe);
}

.process-card {
  background-color: var(--sage);
  padding: 0.5rem 2rem;
  border-radius: 9px;
  transition: all 0.3s ease;
}

.process-card:hover {
  transform: scale(1.05);
}

.people, .pets {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 1rem;
}

/* ====== Tablets & down (≤ 1024px) ====== */
@media (max-width: 1024px) {
  .nrt-intro-wrapper {
    padding-top: 7rem;
    gap: 2rem;
  }

  .nrt-intro-l img {
    max-height: 55vh;
    margin: 1rem;
  }

  .process-human {
    grid-template-columns: 1fr; /* collapse the 2-col layout */
    padding: 2rem 1.25rem;
    gap: 2rem;
  }

  .process-image {
    position: static;   /* disable sticky on smaller screens */
    height: auto;
  }

  .process-wrapper {
    gap: 4rem;          /* reduce tall gaps between cards */
  }
}

/* ====== Large phones & small tablets (≤ 768px) ====== */
@media (max-width: 768px) {
  /* Intro block stacks image over text */
  .nrt-intro-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 4.5rem;
  }

  .nrt-intro-l img {
    width: min(520px, 92vw);
    max-height: 48vh;
    border-width: 5px;  /* slightly thinner double border */
  }

  .nrt-intro-r h1 {
    font-size: clamp(1.6rem, 4.5vw, 2.1rem);
    margin: 0 1rem 0.75rem;
  }

  .nrt-intro-r p {
    max-width: 92vw;
    margin-inline: auto;
    line-height: 1.65;
    font-size: 1rem;
  }

  .nrt-buttons {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .nrt-buttons a {
    width: clamp(220px, 44vw, 320px);
    text-align: center;
    padding: 0.65rem 1.25rem;
  }

  /* Process cards */
  .num-circle {
    width: 56px;
    height: 56px;
    font-size: 1.1rem;
    margin-top: 0.25rem;
    border-width: 2px;
  }

  .process-card {
    padding: 1rem 1.25rem;
    gap: 0.85rem;
  }

  .process-text h3 {
    font-size: 1.05rem;
  }
}

/* ====== Phones (≤ 480px) ====== */
@media (max-width: 480px) {
  .nrt-intro-s {
    margin-bottom: 1.25rem;
  }

  .nrt-intro-wrapper {
    padding-top: 11rem;
    flex-direction: column-reverse;
  }

  .nrt-intro-l img {
    width: 94vw;
    margin: 0.75rem 0;
    border-width: 4px;
    border-radius: 6px;
  }

  .nrt-buttons a {
    width: 100%;
    max-width: 420px;
    box-shadow: 0 4px 12px rgba(89,72,60,0.28); /* soften */
    padding: 0.7rem 1rem;
  }

  .process-human {
    max-width: 100%;
    padding: 1.25rem 1rem;
    border-radius: 10px;
  }

  .process-card {
    flex-direction: row; /* keep circle left, text right */
    box-shadow: 0 8px 18px rgba(0,0,0,.08);
  }

  .process-text h3 {
    text-align: left;   /* better readability on mobile */
  }

  .people {
    padding-top: 0.5rem;
    margin-inline: 1rem;
  }
}

/* ====== Motion safety ====== */
@media (prefers-reduced-motion: reduce) {
  .nrt-intro-l img,
  .nrt-buttons a,
  .process-card {
    transition: none;
  }
}

.nrt-improve {
  background-color: var(--cream);
  padding: 5rem 2rem;
  text-align: center;
}

.nrt-improve h2 {
  font-size: 2rem;
  color: var(--taupe);
  margin-bottom: 1rem;
}

.nrt-intro-text {
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  color: var(--umber);
}

.nrt-improve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.improve-card {
  background-color: var(--peach);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 320px;
}

.improve-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  background-color: var(--golden);
}

.improve-card i {
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.improve-card h3 {
  font-size: 1.2rem;
  color: var(--umber);
  margin-bottom: 0.5rem;
}

.improve-card p {
  font-size: 0.95rem;
  color: var(--umber);
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nrt-improve {
    padding: 3rem 1rem;
  }

  .improve-card {
    padding: 1.5rem;
  }
}

.nrt-faq {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
}

.nrt-faq h2 {
  text-align: center;
  color: var(--taupe);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
  letter-spacing: 0.3px;
}

/* FAQ container */
.faq-item {
  background-color: var(--cream);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 1rem;
  overflow: hidden;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

/* Question button */
.faq-question {
  width: 100%;
  background: var(--sage);
  border: none;
  outline: none;
  text-align: left;
  padding: 1.2rem 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--umber);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--taupe);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--taupe);
}

/* Answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background-color: var(--cream);
  transition: all 0.4s ease;
  padding: 0 1rem;
}

.faq-answer p {
  color: var(--umber);
  line-height: 1.6;
  font-size: 1rem;
  padding: 1rem 0;
}

/* Active/open state */
.faq-item.active {
  border-left-color: var(--taupe);
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.faq-item.active .faq-answer {
  max-height: 400px;
  opacity: 1;
  padding: 0 1rem 1rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* CTA section */
.faq-cta {
  text-align: center;
  padding-bottom: 3rem;

}

.faq-cta p {
  font-size: 1.1rem;
  color: var(--taupe);
  margin-bottom: 1.5rem;
}

.faq-button {
  background-color: var(--forest);
  color: #FFF;
  padding: 0.6rem 1.8rem;
  border-radius: 7px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.faq-button:hover {
  background-color: var(--sage);
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .faq-question {
    font-size: 1rem;
  }
  .faq-answer p {
    font-size: 0.95rem;
  }
}

.nrt-disclaimer {
  font-size: 0.8rem;
  color: var(--taupe);
  opacity: 0.8;
  max-width: 800px;
  margin: 2rem auto 0;
  text-align: center;
  line-height: 1.5;
}

#human, #pets { scroll-margin-top: 200px; }

/* Wrapper */
.contact-section {
  background: url("assets/wheatbackground.jpg") no-repeat center / cover;
  padding: 11rem 1.5rem 5rem;
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* left a touch wider for copy */
  gap: 2.5rem;
  align-items: start;
}

/* Left column */
.contact-intro {
  background: linear-gradient(180deg, #ffffff80 0%, transparent 100%);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.contact-intro h2 {
  color: var(--taupe);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-bottom: .75rem;
  text-align: center;
}

.contact-intro p {
  color: var(--umber);
  line-height: 1.7;
  font-size: 1.05rem;
}

.c-image img {
  display: block;
  max-height: 40vh;
  object-fit: cover;
  margin: 0 auto;
  padding-top: 1rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  margin: 1.25rem 0;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .75rem;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
  padding: .9rem 1rem;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .3s ease, border-color .2s ease;
  color: var(--taupe);
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  border-color: rgba(0,0,0,.12);
}
.contact-card i {
  font-size: 1.15rem;
  color: var(--umber);
}
.contact-card strong { display: block; color: var(--taupe); }
.contact-card span { color: var(--umber); opacity: .9; }

.contact-note {
  margin-top: .5rem;
  font-size: .7srem;
  color: var(--taupe);
  opacity: .9;
  text-align: center;
}

/* Decorative leaf/plant (optional) */
.contact-illustration {
  position: absolute;
  left: 4rem;
  top: 2rem;
  width: 70px;
  pointer-events: none;
}

/* Right column (form) */
.contact-form {
  background: var(--sage);
  border: 2px solid #e9e3d8;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.contact-form h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--taupe);
  font-size: 1.4rem;
  text-align: center;
}

.form-group { margin-bottom: 1.1rem; }
label {
  display: inline-block;
  margin-bottom: .45rem;
  color: var(--taupe);
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  padding: .8rem 1rem;
  border-radius: 10px;
  border: 2px solid var(--cream);
  background: #fff;
  color: var(--umber);
  font-size: 1rem;
  font-family: inherit;
  transition: all .2s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--umber);
  box-shadow: 0 0 0 3px rgba(89,72,60,.15);
  outline: none;
}

.contact-button {
  background: var(--umber);
  color: var(--cream);
  border: none;
  border-radius: 10px;
  padding: 1rem ;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 8px 18px rgba(89,72,60,.22);
  display: inline-block;
  display: block;
  margin: 0 auto;
  width: 100%;
  font-size: 0.9rem;
}
.contact-button:hover {
  background: var(--taupe);
  transform: translateY(-2px);
}
.privacy-hint {
  margin-top: .6rem;
  font-size: .85rem;
  color: var(--taupe);
  opacity: .85;
  text-align: center;
}

/* ---- mobile & tablet tweaks ---- */
@media (max-width: 900px) {
  .contact-section {
    /* keep image readable */
    background:
      linear-gradient(to bottom, rgba(255,255,255,.75), rgba(255,255,255,.35)),
      url("assets/wheatbackground.jpg") center/cover no-repeat;
    padding: 11rem 1rem 3.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;   /* stack */
    gap: 1.5rem;
  }

  .contact-intro,
  .contact-form {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .contact-intro h2 {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }

  .contact-intro p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .c-image img {
    max-height: 28vh;
    padding-top: .5rem;
  }

  .contact-illustration { display: none; } /* reduce clutter on small screens */

  .contact-form h3 {
    font-size: 1.25rem;
    margin-bottom: .75rem;
  }

  input, select, textarea {
    padding: .75rem .9rem;
    font-size: 1rem;
  }

  .contact-button {
    width: 100%;
    padding: .9rem 1rem;
    font-size: 1rem;
    box-shadow: 0 6px 14px rgba(89,72,60,.18);
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 11rem .85rem 3rem;
    background:
      linear-gradient(to bottom, rgba(255,255,255,.82), rgba(255,255,255,.45)),
      url("assets/wheatbackground.jpg") center/cover no-repeat;
  }

  .contact-card {
    grid-template-columns: 1.6rem 1fr; /* icon column slightly wider */
    padding: .8rem .9rem;
  }

  .contact-card i { font-size: 1.2rem; }
  .contact-note { font-size: .8rem; } /* fixed .7srem typo */

  .privacy-hint {
    font-size: .8rem;
    margin-top: .5rem;
  }
}

/* motion-safe hover lift */
@media (hover: hover) and (pointer: fine) {
  .contact-card:hover { transform: translateY(-2px); }
  .contact-button:hover { transform: translateY(-2px); }
}

/* prefers-reduced-motion: remove transitions for accessibility */
@media (prefers-reduced-motion: reduce) {
  .contact-card,
  .contact-button,
  input, select, textarea { transition: none !important; }
}

.thank-you-page {
  background: radial-gradient(
    circle at 50% 30%,       /* soft sun glow near the top */
    #FFF6E8 0%,              /* pale morning light */
    #FFD9B3 25%,             /* warm peach */
    #FFBFA0 50%,             /* soft orange-pink midtone */
    #F9A3A6 75%,             /* muted rose edge */
    #F4B2A0 100%             /* subtle blush fade */
  );
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.thank-you {
  text-align: center;
  width: fit-content;
  padding: 5rem 9rem;
  color: var(--taupe);
  background: var(--cream);
  margin: 0 auto;
  border: 2px solid var(--umber);
  border-radius: 5px;
}
.thank-you h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.thank-you p {
  font-size: 1.3rem;
  max-width: 500px;
  margin: 0 auto 2rem;
  color: var(--forest);
}
.thank-you .button {
  background: var(--forest);
  color: var(--cream);
  padding: 0.8rem 3rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(89,72,60,.25);
}
.thank-you .button:hover {
  background: var(--taupe);
}


.f {
  max-width: 900px;
  padding-top: 0.5rem;
  margin: 0 auto;
  text-align: center;
}

/* Page-scoped styles.
   Assumes your global site.css already defines the color vars:
   --forest, --sage, --golden, --peach, --blush, --cream, --taupe, --umber,
   and fonts for headings/body. */

   main { background-color: var(--cream); }

   /* space under fixed header; adjust to your header height */
   .tc-wrap {
     max-width: 980px;
     margin: 0 auto 2rem;
     padding: 11rem 1rem 3rem;
   }
   
   .tc-head {
     text-align: center;
     margin-bottom: 1rem;
   }
   
   .tc-head h1 {
     color: var(--taupe);
     font-size: clamp(1.8rem, 3.5vw, 2.4rem);
     border-bottom: 3px solid var(--golden);
     display: inline-block;
     padding: 0 .75rem;
   }
   
   .tc-meta {
     color: var(--umber);
     opacity: .9;
     margin-top: .4rem;
     font-size: .95rem;
   }
   
   /* card */
   .tc-card {
     background: #fff;
     border: 7px double var(--taupe);
     border-radius: 12px;
     padding: 1.25rem 1.25rem;
     box-shadow: 0 10px 24px rgba(0,0,0,.08);
   }
   
   .tc-card section { margin: 1rem 0; }
   
   .tc-card h2 {
     font-size: 1.1rem;
     color: var(--umber);
     margin-bottom: .35rem;
   }
   
   .tc-card p { line-height: 1.7; }
   
   .tc-list { margin-left: 1.25rem; }
   .tc-list li { list-style: disc; margin: .35rem 0; color: var(--umber); font-size: 1.1rem; }
   
   /* disclaimer highlight */
   .tc-disclaimer {
     background: var(--sage);
     border-left: 6px solid var(--taupe);
     border-radius: 10px;
     padding: 1rem 1rem;
     box-shadow: 0 6px 14px rgba(0,0,0,.06);
     margin: .75rem 0 1rem;
   }
   
   .tc-disclaimer h2 { margin-bottom: .25rem; }
   
   .tc-note {
     font-size: .9rem;
     color: var(--taupe);
     opacity: .95;
     margin-top: .5rem;
   }
   
   /* footer stub (uses your site footer colors) */
   .site-footer {
     background-color: var(--forest);
     margin-top: 2rem;
     padding: 1rem 0;
   }
   
   .site-footer p {
     color: var(--cream);
     font-style: italic;
     font-size: .9rem;
     text-align: center;
   }
   
   /* responsive tweaks */
   @media (max-width: 680px) {
     .tc-wrap { margin-top: 7.5rem; }
     .tc-card { padding: 1rem .9rem; }
   }
   