







/* =========================
   GLOBAL & TYPOGRAPHY
   ========================= */
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  color: #333;
  background-color: #fff8e6; /* soft cream background */
}






html, body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}
.grid-container {
  max-width: 100%;
  overflow-x: hidden;
}

/**
body::after {
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  width: 10px;
  height: 100vh;
  background: red;
  z-index: 9999;
}
****/







h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
}

/* =========================
   HEADER
   ========================= */
.header {
  padding: 20px;
  background-color: #352828; /* Deep teal */
  color: white;
  text-align: center;
}

.header h1 {
  margin: 0 auto;
  font-size: 2.5em;
  text-transform: uppercase;
}

/* =========================
   NAVIGATION
   ========================= */
nav {
  position: relative;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav ul li a {
  color: #cc3333;
  font-weight: 400;
  text-transform: none;
  padding: 25px 16px;
  font-size: 0.9em;
  display: inline-block;
  letter-spacing: 0.75px;
  text-decoration: none;
  line-height: 1.2;
}

nav ul li a:hover {
  border-radius: 4px;
}

/* Hamburger menu for mobile */
.hamburger {
  display: none;
 
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  transition: 0.4s;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background-color: #1F6F6F;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 20px;
    z-index: 1000;
  }

  nav ul.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}



















/* =========================
   TESTIMONIALS SECTION
   ========================= */
.section-testimonials {
  background-color: #f7f7f7;
  padding: 4rem 2rem;
}

.section-testimonials h2,
.section-testimonials p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  color: #333;
}




.section-testimonials .card {
  background: #fff9ed; /* warm cream to match other cards */
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}


.section-testimonials .author {
  font-weight: bold;
  color: #222;
}

/* =========================
   FULL-WIDTH SECTION WRAPPER
   ========================= */
.full-width-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 4rem 0;
}

/* Overlay for content above background video */
.section-overlay {
  /*background-color: rgba(255, 248, 230, 0.85);   soft cream tint */
  padding: 4rem 0;
}

.section-overlay {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  max-width: 100%;
  overflow-x: hidden;
}



/* Wide grid container for cards */
.grid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}









/* Card-level striped placeholder */
.card .image-placeholder {
  background-image: repeating-linear-gradient(
    45deg,
    #e0d9c9,
    #e0d9c9 10px,
    #fff8e6 10px,
    #fff8e6 20px
  );
  border-radius: 8px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c785c;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  padding: 1rem;
  position: static; /* stays inside the card */
}





/* Section-level striped fallback background */
.section-bg-placeholder {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    #e0d9c9,
    #e0d9c9 10px,
    #fff8e6 10px,
    #fff8e6 20px
  );
  opacity: 0.3;
  z-index: 0;
}







/* =========================
   IMAGE PLACEHOLDER
   ========================= */
/* For card-level placeholders */
.card .image-placeholder {
  background-image: repeating-linear-gradient(
    45deg,
    #e0d9c9,
    #e0d9c9 10px,
    #fff8e6 10px,
    #fff8e6 20px
  );
  border-radius: 8px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c785c;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  padding: 1rem;
  position: static; /* stays inside the card */
}


/* =========================
   HERO SECTION
   ========================= */
.hero {
  position: relative;
  text-align: center;
  padding: 100px 20px;
}

.hero .image-placeholder {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.3;
}

.hero h2,
.hero p,
.hero .cta-button {
  position: relative;
  z-index: 1;
}




















/* =========================
   GRID & CARDS
   ========================= */
.grid {
  display: flex;              /* use flexbox for centering */
  flex-wrap: wrap;            /* allow wrapping on smaller screens */
  justify-content: center;    /* centers the row of cards */
  align-items: stretch;       /* makes all cards equal height */
  gap: 20px;
  margin-top: 20px;
}


.grid-container {
  max-width: 1200px;          /* keeps the grid from stretching too wide */
  margin: 0 auto;             /* centers the container itself */
  padding: 0 20px;
  text-align: center;
}

.card {
  flex: 0 1 280px;            /* natural card width, responsive shrink/grow */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* balances content vertically */
  background-color: #fffcf5;  /* keep your card styling */
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  background-color: #fff9ed;
}

/* Responsive tweaks */
@media (min-width: 900px) {
  .card {
    flex: 0 1 300px;          /* slightly wider cards on larger screens */
  }
}

@media (min-width: 1200px) {
  .card {
    flex: 0 1 320px;          /* even wider cards on very large screens */
  }
}






/* =========================
   CTA BUTTONS
   ========================= */
.cta-button {
  display: block;
  max-width: 250px;
  margin: 30px auto;
  padding: 16px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.1em;
  transition: all 0.3s ease;
  color: white;
  border: none;
  cursor: pointer;
  background-color: #1F6F6F; /* default teal */
}

.cta-button:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .cta-button {
    width: 100%;
    max-width: none;
    padding: 18px;
    font-size: 1.2em;
  }
}

/* =========================
   POPUP
   ========================= */
.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.popup-content {
  background: #fff8e6;
  margin: 15% auto;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  text-align: center;
}

.close {
  float: right;
  font-size: 24px;
  cursor: pointer;
}










/* =========================
   FOOTER
   ========================= */
.footer {
  background-color: #352828;
  color: #FDF6E3;
  text-align: center;
  padding: 40px 20px;
}

.footer p {
  color: #f05253;
  margin: 5px 0;
}














/* =========================
   TESTIMONIALS — RESTORED LOOK
   ========================= */

.section-testimonials {
  position: relative;
  padding: 4rem 0;
  background-color: #f7f7f7;
  overflow: hidden;
}

/* Remove dark overlay */
.section-testimonials .section-overlay {
  background: none;
  padding: 4rem 0;
}

/* Title */
.section-testimonials .section-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: none;
  color: #333;
  text-align: center;
  margin-bottom: 1rem;
}

/* Subtitle */
.section-testimonials .section-content > p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.55;
  color: #333;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

/* Cards */
.section-testimonials .card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  color: #201818;
}

/* Quotes */
.section-testimonials blockquote {
  font-style: italic;
  color: #444;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Author */
.section-testimonials .author {
  font-weight: 600;
  color: #222;
}

/* CTA */
.section-testimonials .cta-button {
  margin-top: 2rem;
}





































/* =========================
   GLOBAL CARD CLEANUP
   ========================= */
.card {
  flex: 0 1 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fffcf5;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  background-color: #fff9ed;
}

 


/* ====

.section-testimonials .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
 */


/* =========================
  TESTIMONIALS OVERRIDE
   ========================= */

.section-testimonials .grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin-top: 20px;
}
 




.section-testimonials .card {
  flex: 0 1 280px;
  justify-content: flex-start;
  background-color: #fff9ed;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

















.card p {
  margin: 0;
  padding: 10px 0 20px 0;
  line-height: 1.4;
}






 
.section-finishes .card p { padding-bottom: 28px; }
.section-home .card p { padding-bottom: 28px; }
.section-contact .card p { padding-bottom: 32px; }




/* =========================
   GLOBAL HEADING POLISH
   ========================= */
 


.card h3 {
  font-size: 1.25rem;       /* consistent heading size */
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.75rem;   /* slightly more breathing room above copy */
  color: #1F1F1F;           /* darker tone for clarity */
}

/* =========================
   GLOBAL CARD HEIGHT
   ========================= */
.card {
  min-height: 320px;        /* ensures rows feel balanced */
}

/* Responsive adjustments */
@media (min-width: 900px) {
  .card {
    min-height: 340px;
  }
}

@media (min-width: 1200px) {
  .card {
    min-height: 360px;
  }
}














/* =========================
   IMAGE PLACEHOLDER POLISH
   ========================= */
.card .image-placeholder {
  margin-top: auto;            /* pushes placeholder to bottom of card */
  margin-bottom: 0;            /* removes extra gap */
  padding: 1rem;
  border-radius: 8px;
  background-image: repeating-linear-gradient(
    45deg,
    #e0d9c9,
    #e0d9c9 10px,
    #fff8e6 10px,
    #fff8e6 20px
  );
  color: #7c785c;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
}

/* =========================
   SECTION RHYTHM
   ========================= */
.full-width-section {
  padding: 0rem 0;      /*slightly more vertical breathing room */
}









 

.section-testimonials blockquote::before {
  content: "“";
  font-size: 1.5rem;
  color: #c49a6c;
  margin-right: 6px;
  vertical-align: baseline;
}

.section-testimonials blockquote::after {
  content: "”";
  font-size: 1.5rem;       /* smaller so it doesn’t stretch the line */
  color: #c49a6c;
  margin-left: 4px;
  vertical-align: baseline; /* keeps it inline with text */
  line-height: 0;           /* prevents it from expanding the line box */
}




.section-testimonials blockquote {
  font-style: italic;
  color: #444;
  margin: 0 0 1rem 0;
  line-height: 1.5;
  display: inline-block;
  position: relative;
}

.section-testimonials blockquote::before {
  content: "“";
  font-size: 1.5rem;
  color: #c49a6c;
  margin-right: 6px;
  vertical-align: baseline;
  position: relative;
  top: -2px;
}



















































/* =========================
   GLOBAL TYPOGRAPHY
   ========================= */
p, li {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.5;
}

.section-content p {
  font-size: 0.95rem;
}

/* =========================
   TITLES ACROSS FULL-WIDTH SECTIONS
   ========================= */
.full-width-section h2,
.hero h2,
.section-company h2,
.section-solved h2,
.section-promise h2,
.section-finishes h2,
.section-models h2 {

  font-size: 0.2rem;
  font-weight: 700;
  letter-spacing: 2px;
 /* text-transform: uppercase;*/
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 0 3px 8px rgba(0,0,0,0.85), 0 6px 16px rgba(0,0,0,0.75);
}

.full-width-section h2,
.hero h2,
.section-company h2,
.section-solved h2,
.section-promise h2,
.section-finishes h2,
.section-models h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.full-width-section h1,
.full-width-section h2,
.full-width-section h3,
.hero h1,
.hero h2,
.hero h3,
.section-company h2,
.section-solved h2,
.section-promise h2,
.section-finishes h2,
.section-models h2 {
  font-family: 'Playfair Display', serif;
}

/* Hero-specific tuning */
.hero h2 {
  max-width: 1100px;
  margin: 0 auto 1rem;
  line-height: 1.3;
  padding: 0 1rem;
}

/* =========================
   DEFAULT SUBTITLES
   ========================= */
.full-width-section .section-content > p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #fdfdfd;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  /*text-shadow: 0 4px 10px rgba(0,0,0,0.9), 0 6px 18px rgba(0,0,0,0.85);*/
text-shadow: 0 2px 4px rgba(0,0,0,0.35);

}

/* =========================
   COMPANY + MODELS OVERRIDES
   ========================= */
.section-models.full-width-section,
.company-section {
 
  color: #424035;
}

 

/* SECTION MODELS */
.section-models.full-width-section .section-content > p,
.section-models.full-width-section .section-content li {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #424035;
  text-align: left;
  max-width: 800px;
  margin: 0 auto 1rem auto;
  text-shadow: none;
}

/* COMPANY SECTION */
.company-section .section-content > p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #424035;
  text-align: left;
  max-width: 800px;
  margin: 0 auto 1rem auto;
  text-shadow: none;
}

/* =========================
   PROJECTS SECTION (your custom override)
   ========================= */
#projects .section-content > h2 {
  color: #addabf;
}

#projects .section-content > p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #addabf;
  /*text-shadow: 0 1px 2px rgba(0,0,0,0.4);*/
  font-family: inherit;
  max-width: 800px;
  margin: 0 auto 1rem auto;
}

/* =========================
   BACKGROUND CLEANUP
   ========================= */
.full-width-section > .section-bg-placeholder,
.full-width-section > .image-placeholder,
.section-models.full-width-section > .section-bg-placeholder,
.section-models.full-width-section > .image-placeholder,
.company-section > .section-bg-placeholder,
.company-section > .image-placeholder {
  background: none !important;
}

/* =========================
   WHY ADUs SECTION
   ========================= */
.section-why-adus {
  background-color: #f3f0e4;
  color: #424035;
  padding: 3rem 2rem;
  border-top: 1px solid #d6d2c4;
}

.section-why-adus h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 2.4rem;
  font-weight: 700;
  /*text-transform: uppercase;*/
  color: #424035;
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: none;
}

.section-why-adus .section-content > p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #424035;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
  text-shadow: none;
}

/* Cards */
.section-why-adus .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.section-why-adus .card {
  background-color: #fffdf8;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  box-shadow: none;
  font-size: 0.9rem;
  line-height: 1.4;
}


 











/**************************************************
 **************************************************
 **************************************************
 *****************************************************
pausing on doing anything above this until below this is repaired. 
 **************************************************
 **************************************************
 **************************************************
 **************************************************
 **************************************************
 **************************************************/







/*************Send 1*************/


/* =========================
   OVERFLOW FIXES
   ========================= */
.section-overlay {
  background: rgba(0,0,0,0.2);
  max-width: 100%;
  overflow-x: hidden;
}

.section-overlay > * {
  min-width: 0;
}

.grid-container,
.card {
  max-width: 100%;
  min-width: 0;
}






/* =========================
   COMPANY LAYOUT
   ========================= */
.company-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  padding: 4rem 2rem;
}

.company-text,
.company-visuals {
  min-width: 0;
}

.company-text {
  flex: 1 1 55%;
  max-width: 420px;
  padding: 0 20px;
  text-align: left;
}

.company-visuals {
  flex: 1 1 40%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* =========================
   BUTTONS
   ========================= */
.button,
.cta-button,
.section-content button {
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1;
}


/*************End send 1*************/


.subheading .dimmed {
  opacity: 0.45;        /* quiet but readable */
  color: inherit;       /* keeps your authored palette */
}



 










/*************hero gradiant
.hero-video-first {
  position: relative;
  padding: 5rem 1.5rem 4rem;
  color: #f5f3ee;
  background: radial-gradient(circle at top, #352828 0%, #352828 80%, #3e6451 15%);
}




*************/









/* =========================
   HERO VIDEO-FIRST (LEGACY)
   ========================= */
.hero {
  position: relative;
  text-align: center;
  padding: 100px 20px;
  
}

.hero .hero-bg {
  height: 100%;
}





.hero-video-first .hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-video-first .hero-copy h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  margin: 0 0 1rem;
  font-weight: 600;

}

.hero-video-first .hero-copy p {
  margin: 0 0 1.75rem;
  line-height: 1.6;
  color: #fff;
}

.hero-video-first .hero-cta {
  border: 1px solid #f5f3ee;
  background: transparent;
  color: #f5f3ee;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.hero-video-first .hero-cta:hover {
  background: #f5f3ee;
  color: #15141b;
}

.hero-video-first .hero-frame {
  display: flex;
  justify-content: center;
}

.hero-video-first .hero-screen {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  border: 1px solid rgba(245, 243, 238, 0.35);
  background: linear-gradient(145deg, #352828, #9fffcf);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-video-first .hero-screen-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}

.hero-video-first .hero-screen-title {
  font-size: 1.05rem;
  line-height: 1.4;
  max-width: 16rem;
  margin: auto 0;
}

.hero-video-first .hero-screen-bar {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #9fffcf, rgba(245, 243, 238, 0.1));
}

@media (max-width: 768px) {
  .hero-video-first .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }


  .hero-video-first .hero-frame {
    order: -1;
  }
}

/* =========================
   SUBSISTENCE SYSTEM
   ========================= */
#subsistence-system .system-content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: left;
}

#subsistence-system .system-bullets {
  list-style: disc;
  margin: 0 0 2rem 1.5rem;
  padding: 0;
}

#subsistence-system .system-bullets li {
  color: #000;
  font-size: 1.4rem;
  line-height: 1.35;
  margin-bottom: 1.1rem;
}

#subsistence-system .system-caption {
  color: #201818;
  font-size: 1rem;
  line-height: 1.55;
  max-width: 32rem;
}

.system-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}


/*************end of send 2*************/





















/*************send 3*************/


/* =========================
   SYSTEM SECTION
   ========================= */
.system-section {
  background: #9fffcf;
  padding: 5rem 0;
}

.system-section .system-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================
   SECTION TITLE + INTRO
   ========================= */
.section-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  /*text-shadow: 0 1px 3px rgba(0,0,0,0.5);*/
  margin-bottom: 0.5rem;
}

.section-content p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
  /*text-shadow: 0 1px 2px rgba(0,0,0,0.4);*/
}

 



/* =========================
   RESTORE SECTION-CONTENT CENTERING
   ========================= */

.section-content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}


















/********** the way its made start**********/


/* =========================
   RESTORE COMPANY SECTION CLEAN LAYOUT
   ========================= */

.company-section-clean {
  position: relative;
  width: 100%;
  padding: 6rem 0;
  background-color: #f5f2e9;
  overflow: visible;
}

.company-section-clean .company-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}

.company-section-clean .company-left {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.company-section-clean .company-right {
  position: relative;
  width: 300px;
  height: 340px;
  flex-shrink: 0;
}





.company-section-clean h1,
.company-section-clean h2,
.company-section-clean .company-heading {
  color: #c7c0b3 !important;
  text-shadow: none !important;
}




.company-section-clean .company-right {
  position: relative;
  width: 300px;
  height: 340px;
  flex-shrink: 0;
}

.company-section-clean .shape-rect {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 120px;
  background: #d8d2c5;
  border-radius: 8px;
}

.company-section-clean .shape-circle {
  position: absolute;
  top: calc(10% + 120px + 20px);
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  background: #c7c0b3;
  border-radius: 50%;
}



/********** the way its made end**********/














/* =========================
   CAPSTONE
   ========================= */
.section-overlay .series-capstone {
  max-width: 520px;
  margin: 1.25rem auto 2.25rem;
  text-align: center;
  padding: 0;
  color: rgba(255,255,255,0.92);
}

.section-overlay .series-capstone h4 {
  font-size: 2rem;
  font-weight: 650;
  letter-spacing: 0.6px;
  color: rgba(255,255,255,0.95);
/**  text-shadow: 0 2px 4px rgba(0,0,0,0.55);**/
}

.section-overlay .series-capstone p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #fdfdfd;
/*  text-shadow: 0 4px 10px rgba(0,0,0,0.9),
               0 6px 18px rgba(0,0,0,0.85);**/
}


/*************end of send 3*************/



/* =========================
   FIX: ANY SECTION WITH A BACKGROUND VIDEO
   ========================= */

section .background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
 
  pointer-events: none;
}

section {
  position: relative;
  overflow: hidden;
}
.hero .background-video {
  opacity: 100 !important;
}

section .background-video {
  opacity: 1 !important;
}




/* =========================
   ALT-LANE FIX — HEADINGS, BUTTON, PARAGRAPH
   ========================= */

/* 1. Alt-lane heading color + spacing */
#projects .section-content.alt-lane .alt-heading {
  color: #c7c0b3 !important; /* matches your circle color */
  line-height: 1.2 !important;
  text-shadow: none !important;
}

/* 2. Secondary button — subtle outline, soft background */
#projects .section-content.alt-lane .cta-button.secondary {
  background-color: rgba(255,255,255,0.12) !important;
  border: 2px solid rgba(255,255,255,0.35) !important;
  color: rgba(255,255,255,0.85) !important;
  backdrop-filter: blur(2px);
}

/* 3. Paragraph — override the mint-green project rule */
#projects .section-content.alt-lane > p {
  color: rgba(255,255,255,0.85) !important;
  /**text-shadow: 0 1px 2px rgba(0,0,0,0.4) !important;**/
  font-size: 1rem;
  line-height: 1.5;
}
/* =========================
   PROJECTS SECTION — PRIMARY CTA (RED)
   ========================= */

#projects .section-content .cta-button.primary,
#projects .section-content .cta-button:first-of-type {
  background-color: #cc3333 !important;
  color: #ffffff !important;
  border: none !important;
  opacity: 1;
}
 



















/* =========================
   GLOBAL CTA — PILL STANDARD
   ========================= */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.75rem 1.5rem;
  border-radius: 9999px;

  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
  line-height: 1;

  cursor: pointer;
  border: none;
  text-decoration: none;

  margin: 0;          /* remove global centering */
  max-width: none;    /* remove global width limit */
  background: #1F6F6F; /* temporary default */
  color: #fff;
}
















.section-content {
  color: inherit !important;
}

.section-content p {
  color: #fff !important;
}
.section-content p {
  color: inherit !important;
}





/*************send 4*************/


/* =========================
   TESTIMONIALS — FIX COLOR
   ========================= */
.section-testimonials .section-overlay {
  background: none !important;
}

.section-testimonials .section-content h2,
.section-testimonials .section-content > p {
  color: #fff !important;
}

/* =========================
   GLOBAL TYPOGRAPHY BASE
.section-content p {
  color: #201818;
}

   ========================= */
body {
  font-family: 'Open Sans', sans-serif;
  color: #201818;
}

p, li {
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 1rem 0;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  /*color: #201818;*/
  margin: 0 0 0.75rem 0;
  letter-spacing: 0.5px;
  line-height: 0.80;
}

.section-content p {
  font-size: 1rem;
  line-height: 1.5;
 
}
.full-width-section .section-content > p {
  color: #fff !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.35);
}

/* =========================
   FULL-WIDTH SECTION TITLES
   ========================= */
.full-width-section h2,
.hero h2,
.section-company h2,
.section-solved h2,
.section-promise h2,
.section-finishes h2,
.section-models h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
  /**text-shadow: 0 3px 8px rgba(0,0,0,0.85),
               0 6px 16px rgba(0,0,0,0.75);**/
}

/* =========================
   MODELS + COMPANY TEXT
   ========================= */
.section-models.full-width-section,
.company-section {
  color: #424035;
}

.section-models.full-width-section h2,
.company-section h2 {
  color: #424035;
  text-shadow: none;
}

.section-models.full-width-section .section-content > p,
.section-models.full-width-section .section-content li,
.company-section .section-content > p {
  font-size: 1rem;
  line-height: 1.55;
  color: #424035;
}

/* =========================
   WHY ADUs TEXT
   ========================= */
.section-why-adus {
  color: #424035;
}

.section-why-adus h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #424035;
  text-shadow: none;
}

.section-why-adus .section-content > p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #424035;
}

/* =========================
   CARD TEXT
   ========================= */
.card {
  color: #201818;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2a2422;
}

.card p {
  font-size: 1rem;
  line-height: 1.45;
  color: #201818;
}

/* =========================
   TESTIMONIALS TEXT
   ========================= */
.section-testimonials h2,
.section-testimonials p {
  color: #333;
}

.section-testimonials .author {
  font-weight: bold;
  color: #222;
}

.section-testimonials blockquote {
  font-style: italic;
  color: #444;
  line-height: 1.5;
}

.section-testimonials blockquote::before,
.section-testimonials blockquote::after {
  color: #c49a6c;
}

/* =========================
   CAPSTONE TEXT
   ========================= */
.section-overlay .series-capstone h4 {
  font-size: 5rem;
  font-weight: 650;
  color: rgba(255,255,255,0.95);
  /**text-shadow: 0 2px 4px rgba(0,0,0,0.55);**/
}

.section-overlay .series-capstone p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #fdfdfd;
  /**text-shadow: 0 4px 10px rgba(0,0,0,0.9),
               0 6px 18px rgba(0,0,0,0.85);**/
}




/*************end of send 4*************/

























/*************send 5*************/

/* =========================
   UNIVERSAL HERO STACK
   ========================= */

.hero {
  position: relative;
  overflow: hidden;
}

/* Shared video layer */
.hero .background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  z-index: -3;
  pointer-events: none;
}

/* Shared gradient layer */
.hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(
    circle at top,
    rgba(53, 40, 40, 0.45) 0%,
    rgba(53, 40, 40, 0.45) 15%,
    rgba(62, 100, 81, 0.45) 80%
  );
}

/* Shared content layer */
.hero .hero-inner,
.hero .hero-frame {
  position: relative;
  z-index: 1;
}

/* =========================
   RESET HERO — ISOLATED
   ========================= */

.reset-hero {
  position: relative;
  background: none !important;
  z-index: 0;
}

.reset-hero .background-video {
  z-index: -3;
  opacity: 0.22;
}

.reset-hero .hero-bg {
  z-index: -2;
  background: radial-gradient(
    circle at top,
    rgba(53, 40, 40, 0.45) 0%,
    rgba(53, 40, 40, 0.45) 15%,
    rgba(62, 100, 81, 0.45) 80%
  );
}

.reset-hero .hero-inner,
.reset-hero .hero-frame {
  z-index: 1;
}

/* Prevent global overlays from interfering */
.reset-hero h2::before,
.reset-hero .section-overlay,
.reset-hero .image-placeholder {
  background: none !important;
}

/*************end of send 5*************/

























/************* send 6*************/

/* =========================
   PER-HERO GRADIENT PLATES
   (tune colors later as needed)
   ========================= */

/* Steel Tied — dusk iron + green */
.hero.steeltied-hero .hero-bg {
  background: radial-gradient(
    circle at top,
    rgba(53, 40, 40, 0.45) 0%,
    rgba(53, 40, 40, 0.45) 15%,
    rgba(62, 100, 81, 0.45) 80%
  );
}

/* Refuge — softer dusk, more green */
.hero.refuge-hero .hero-bg {
  background: radial-gradient(
    circle at top,
    rgba(47, 36, 36, 0.50) 0%,
    rgba(47, 36, 36, 0.45) 20%,
    rgba(80, 118, 96, 0.50) 80%
  );
}

/* Reset — warmer dusk */
.hero.reset-hero .hero-bg {
  background: radial-gradient(
    circle at top,
    rgba(60, 38, 34, 0.55) 0%,
    rgba(60, 38, 34, 0.50) 25%,
    rgba(90, 70, 54, 0.45) 80%
  );
}

/* Rigs — darker, industrial */
.hero.rigs-hero .hero-bg {
  background: radial-gradient(
    circle at top,
    rgba(30, 24, 24, 0.60) 0%,
    rgba(30, 24, 24, 0.55) 25%,
    rgba(70, 90, 80, 0.50) 80%
  );
}

/* Rack — brighter equipment lane */
.hero.rack-hero .hero-bg {
  background: radial-gradient(
    circle at top,
    rgba(45, 32, 32, 0.55) 0%,
    rgba(45, 32, 32, 0.50) 20%,
    rgba(96, 124, 102, 0.50) 80%
  );
}

/* Ridge — high altitude dusk */
.hero.ridge-hero .hero-bg {
  background: radial-gradient(
    circle at top,
    rgba(40, 30, 30, 0.50) 0%,
    rgba(40, 30, 30, 0.45) 20%,
    rgba(110, 140, 120, 0.50) 80%
  );
}

/* Request — neutral dusk */
.hero.request-hero .hero-bg {
  background: radial-gradient(
    circle at top,
    rgba(45, 35, 35, 0.50) 0%,
    rgba(45, 35, 35, 0.45) 20%,
    rgba(80, 100, 90, 0.45) 80%
  );
}
/*************end of send 6*************/

















.section-orientation h1,
.section-orientation h2,
.section-orientation p {
  text-shadow: none !important;
  filter: none !important;
}

.hero-inner .hero-copy .refuge-hero h1 {
  font-size: clamp(3rem, 8vw, 7rem) !important;
}

.hero-inner .hero-copy .refuge-hero h1 .push {
  display: inline-block;
  margin-left: 0.21em; /* adjust this value to taste */
}


.hero-note {
  padding-top: 15px;
  color: #ffffff;
  font-size: 0.9rem;
  opacity: 0.85;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}
 
 

.section-finishes.full-width-section .str-intro h2 {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: none;
}

.section-finishes.full-width-section .str-intro p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #fff;
  max-width: 720px;
  margin: 0 auto 2rem auto;
  text-shadow: none;
}
.str-intro {
  margin-bottom: 3rem;
  color: #fff;
  letter-spacing: 0.5px;

}






/* 1. Background belongs to the section, not the padding box */
.system-section {
   /* background-color: #f8f8f8; or whatever your section bg is */
  padding: 0; /* ensure no padding lives here */
  margin: 0;  /* reset any inherited margins */
}

/* 2. Refuge keeps its breathing room */
#subsistence-system .system-inner {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* 3. All other system sections get tight spacing */
.system-section:not(#subsistence-system) .system-inner {
  padding-top: 0;
  padding-bottom: 0;
}

/* 4. Controlled spacing BETWEEN sections */
.system-section + .system-section {
 
}



/* Additional STR Forms — FINAL CLEAN VERSION */

/* Center everything + guaranteed breathing room */
.additional-forms-section {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
  text-align: center;
}

/* Title: big + brown */
.additional-forms-title {
  font-size: 2.5rem;
  color: #2f1110;         /* your brown */
  margin-bottom: 1rem;
}

/* Copy centered and spaced */
.additional-forms-copy {
  max-width: 600px;
  margin: 0 auto 2rem auto;
  line-height: 1.5;
}

/* Button: pill, red-orange, no underline */
.additional-forms-button {
  display: inline-block;
  background-color: #cc3a2c; /* your red-orange */
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 9999px;     /* pill shape */
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background-color 0.2s ease;
}

/* Hover state */
.additional-forms-button:hover {
  background-color: #b53226;
}










.models-btn {
  background: var(--mint);   /* solid mint */
  color: #fff;               /* white text */
  border: none;              /* no outline */
  font-weight: 600;          /* slightly stronger */
}
























/********new hero************/
/********************/
/********************/
/********************/
/********************/
/********************/ 
.refuge-hero.full-width-section h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 3px 8px rgba(0,0,0,0.85);
  margin-bottom: 1rem;
}

.refuge-hero .hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #fdfdfd;
  max-width: 800px;
  margin: 0 auto 2rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.35);
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.hero-cta-group .cta-button.primary {
  background-color: #cc3333;
}
 



/****refuge hero only****************/

/* Refuge hero — force left alignment without affecting other pages */
.refuge-hero .hero-content,
.refuge-hero h1,
.refuge-hero .hero-subtitle,
.refuge-hero .hero-cta-group {
  text-align: left !important;
}

.refuge-hero .hero-subtitle {
  margin: 0 0 2rem !important; /* remove auto-centering */
}

.refuge-hero .hero-cta-group {
  justify-content: flex-start !important; /* left-align buttons */
}
.cta-button {
  text-decoration: none !important;
}
/* Refuge hero — restore centered layout */
.refuge-hero .hero-content,
.refuge-hero h1,
.refuge-hero .hero-subtitle,
.refuge-hero .hero-cta-group {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  justify-content: center !important;
}




/* --- Refuge Hero Fixes --- */

/* Remove underlines */
.cta-button {
  text-decoration: none !important;
}

/* Center everything in the Refuge hero only */
.refuge-hero .hero-content,
.refuge-hero h1,
.refuge-hero .hero-subtitle,
.refuge-hero .hero-cta-group {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  justify-content: center !important;
}

/* Improve third button contrast */
.hero-cta-group .cta-button.secondary {
  background-color: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.95);
}
 
/******** REFUGE HERO — FORCE DARK THIRD BUTTON ********/
.refuge-hero .hero-cta-group .cta-button.secondary {
  background-color: #000 !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  color: #fff !important;
}

.section-content {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

 
 

 

 


/******** REFUGE HERO — QUIET H1 + SUBTITLE ********/

/* Quiet the H1 */
.refuge-hero .section-content h1 {
  color: rgba(255,255,255,0.85) !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25) !important;
}

/* Quiet the subtitle */
.refuge-hero .section-content .hero-subtitle {
  color: rgba(255,255,255,0.80) !important;
  text-shadow: 0 1px 1px rgba(0,0,0,0.20) !important;
}



/********************/
/********************/
/********************/
/********************/
/********************/









/************new explanation********/
/********************/
.refuge-explanation {
  background-color: #f5f2e9;
  padding: 4rem 1.5rem;
}

.refuge-explainer {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #352828;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}


/********************/
/********************/











/********************/
/********************/


.refuge-outcomes {
  background-color: #f5f2e9;
  padding: 4rem 1.5rem;
}

.refuge-outcomes-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.refuge-outcomes h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #352828;
  margin-bottom: 0.5rem;
  text-shadow: none;
}

.refuge-outcomes p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #352828;
  margin: 0;
}

/********************/
/********************/















/********************/
/********************/


.refuge-made {
  background-color: #f5f2e9;
  padding: 5rem 1.5rem;
}

.refuge-made h2 {
  color: #352828;
  text-shadow: none;
  margin-bottom: 1.5rem;
}

.made-intro {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #352828;
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.made-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.made-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #352828;
  margin-bottom: 0.5rem;
}

.made-item p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #352828;
  margin: 0;
}


.refuge-card {
  background: #fdfbf7; /* warm dossier tone */
}
.refuge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.refuge-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.refuge-card .image-placeholder {
  height: 200px; /* match Safe & Sound */
  background: #eee;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: #444;
}

.refuge-card p {
  flex-grow: 1;
}

/********************/
/********************/



 






 














/********************/
/********************/
.site-footer {
  background-color: #1a1a1a;
  color: #e5e5e5;
  padding: 3rem 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #e5e5e5;
  text-decoration: none;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #b5b5b5;
}
/********************/
/********************/










/*********************/
/*********************/


.sasc-catalog {
  background-color: #f5f2e9;
  padding: 5rem 1.5rem;
}

.sasc-catalog h2 {
  color: #352828;
  margin-bottom: 1rem;
}

.catalog-intro {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #352828;
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
}

.design-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #352828;
  margin-bottom: 0.5rem;
}

.design-card p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #352828;
  margin-bottom: 1rem;
}

.image-placeholder {
  background-color: #d8d2c4;
  height: 160px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #352828;
  font-size: 1rem;
}

.catalog-return {
  text-align: center;
}

.return-link {
  color: #352828;
  text-decoration: none;
  font-size: 1.1rem;
}







.catalog-reveal {
  text-align: center;
  margin-top: 2rem;
}

.reveal-button {
  background: none;
  border: none;
  color: #352828;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0.8;
}

.reveal-button:hover {
  opacity: 1;
}

.brother-heading {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.4rem;
  color: #352828;
}

.brother-intro {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: #352828;
}

















.hidden-block {
  display: none !important;
}




.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.catalog-grid .design-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.catalog-grid .design-card p {
  flex-grow: 1;
}

.catalog-grid .image-placeholder {
  height: 180px;
  background: #eee;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}














.reveal-button {
  padding: 0.75rem 1.5rem;
  border: 1px solid #333;
  border-radius: 4px;
  background: transparent;
  font-size: 1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.reveal-button:hover {
  background: #333;
  color: #fff;
}
.catalog-reveal {
  margin-top: 3rem;
  text-align: center;
}

 


.design-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.4rem;

  background: #222;          /* dark field */
  color: #f5f5f5;            /* light text */
  border: none;

  border-radius: 9999px;     /* full pill */
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;

  text-decoration: none;
  cursor: pointer;

  transition: background 0.2s ease, color 0.2s ease;
}

.design-button:hover {
  background: #444;          /* subtle lift */
  color: #fff;
}

/*********************/
/*********************/


/***********************/
/**********************/

.refuge-designs {
  background-color: #f5f2e9;
  padding: 5rem 1.5rem;
}

.refuge-designs h2 {
  color: #352828;
  margin-bottom: 1rem;
}

.refuge-designs-intro {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #352828;
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.refuge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
}

.design-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #352828;
  margin-bottom: 0.5rem;
}

.design-card p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #352828;
  margin-bottom: 1rem;
}

.image-placeholder {
  background-color: #d8d2c4;
  height: 160px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #352828;
  font-size: 1rem;
}

.refuge-series {
  text-align: center;
  margin-top: 3rem;
}

.refuge-series h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #352828;
}

.series-tagline {
  font-size: 1.1rem;
  color: #352828;
  line-height: 1.5;
}

.catalog-link {
  text-align: center;
  margin-top: 2rem;
}

.quiet-link {
  color: #352828;
  text-decoration: none;
  font-size: 1.05rem;
  opacity: 0.8;
}
/*******************/
/*****************/




.refuge-title {
  color: #4a3f35; /* your iron-brown */
  font-weight: 700;
}
.refuge-title {
  letter-spacing: 0.5px;
}
.system-section {
  background: #f4f1ec; /* warm off‑white, structural */
}
.system-section {
  background: #e9e4dd; /* warm stone */
}
.system-inner {
  max-width: 720px; /* or 680px if you want it tighter */
  margin: 0 auto;
}

.refuge-value,
.refuge-outcomes {
 max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}
.refuge-title {
  max-width: 45ch;
  margin-left: auto;
  margin-right: auto;
  text-align: left; /* or center if you want it centered */
  color: #4a3f35; /* your iron-brown */
  font-weight: 700;
  letter-spacing: 0.5px;
}



















