@font-face {
    font-family: 'Loubag';
    /* If you use the OTF file */
    src: url('asset/OTF/Loubag-Regular.otf') format('opentype'); 
    /* OR if you use the Webfont (better for performance) */
    /* src: url('asset/Webfont/Loubag-Regular.woff2') format('woff2'); */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Loubag-Bold';
    /* If you use the OTF file */
    src: url('asset/OTF/Loubag-Bold.otf') format('opentype'); 
    /* OR if you use the Webfont (better for performance) */
    /* src: url('asset/Webfont/Loubag-Regular.woff2') format('woff2'); */
    font-weight: 700;
    font-style: bold;
}
@font-face {
    font-family: 'Comfortaa';
    src: url('asset/OTF/Comfortaa-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


:root {
    --bg-color: #f7f3ed; /* The creamy off-white background */
    --text-color: #7a7a7a;
    --heading-color: #555;
    --accent-blue: #9eb8c7;
    --brand-blue: #608291; /* The blue from footer/washing */
    --nav-blue: #7ba7bc;   /* The specific muted blue from the nav text image */
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
}
nav {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 36px 60px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    
    /* Crucial: Explicitly set the font to match your production page */
    font-family: Arial, sans-serif;
    
    opacity: 1; 
    visibility: visible;
    pointer-events: all;
    transition:
        opacity    0.8s ease,
        visibility 0.8s ease,
        background-color 0.5s ease;
}

/* This class will be toggled by the JavaScript below */
nav { 
    opacity: 1; 
    visibility: visible;
    pointer-events: all;
}

/* Rest of your styling remains the same */
.nav-logo img {
    height: 30px;
    width: 60px;
    display: block;
    color: var(--brand-blue);
}
.nav-logo img { 
    filter: brightness(0) saturate(100%) invert(56%) sepia(13%) saturate(1039%) hue-rotate(162deg) brightness(91%) contrast(88%);
}

.nav-links {
    display: flex;
    gap: 44px;
}

.nav-links a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.22em;
    font-weight: 400;
    color: var(--brand-blue);
    transition: opacity 0.3s ease, color 0.5s ease;
}

.nav-links a:hover {
    opacity: 0.55;
}

nav {
    font-family: Arial, sans-serif;
}

nav .nav-links a {
    color: var(--brand-blue);
}

nav .nav-logo img { 
    filter: brightness(0) saturate(100%) invert(56%) sepia(13%) 
            saturate(1039%) hue-rotate(162deg) brightness(91%) contrast(88%);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }
}
@media (max-width: 900px) {
    nav { 
        padding: 28px 32px; 
    }
}
@media (max-width: 600px) {
    nav { 
        padding: 24px 20px; 
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
    }
}

/* ==========================================================
   MOBILE STYLES — up to 480px
   Append this block to the END of production.css
   ========================================================== */
@media (max-width: 480px) {

    /* ---- Nav ---- */
    nav {
        padding: 16px 18px;
    }

    .nav-logo img {
        height: 22px;
        width: 44px;
    }

    .nav-links {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nav-links a {
        font-size: 9px;
        letter-spacing: 0.12em;
    }
}


/* ==========================================================
   WHY WE EXIST SECTION STYLES
   ========================================================== */

.purpose-section {
    padding-top: 140px; /* Clears the fixed navigation bar */
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}

/* Image Grid Setup */
.image-gallery {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
    margin-bottom: 60px;
}

.image-wrapper {
    flex: 1;
    max-width: 400px; /* Keeps the layouts closely sized like the mockup */
    aspect-ratio: 3 / 4; /* Matches the vertical rectangle ratio */
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill their frames cleanly without warping */
    display: block;
}
.image-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Prevents cropping by fitting the whole video inside the container */
    background-color: transparent; /* Ensures no default black bars interrupt your creamy background */
}

/* Typography Layout */
.purpose-content {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.purpose-content h2 {
    font-family: 'Comfortaa', Arial, sans-serif;
    font-size: 16px;
    letter-spacing: 0.15em;
    font-weight: normal;
    color: #2b2b2b; /* Dark neutral heading tint matching the image */
    margin-bottom: 28px;
    text-transform: uppercase;
}

.purpose-content p {
    font-family: 'Comfortaa', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.02em;
    color: #333333; /* Slightly darker body readability contrast */
    margin: 0;
    font-weight: 300;
}

/* Responsive adjustments for Tablets/Mobile */
@media (max-width: 768px) {
    .purpose-section {
        padding-top: 120px;
    }
    
    .image-gallery {
        gap: 20px;
    }
    
    .purpose-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .purpose-section {
        padding-top: 100px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .image-gallery {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .image-wrapper {
        width: 100%;
        max-width: 320px;
    }
}


/* ==========================================================
   OUR IMPACT SECTION STYLES
   ========================================================== */

.impact-section {
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-color);
    text-align: center;
    box-sizing: border-box;
}

/* Header & Styled Typographic Logo */
.impact-header {
    margin-bottom: 80px;
}

.impact-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Loubag', sans-serif; /* Utilizing your custom font */
    color: #4a5e5b; /* Muted slate/teal tone from the mockup logo */
    line-height: 0.85;
}

.impact-logo .logo-our {
    font-size: 38px;
    font-weight: normal;
}

.impact-logo .logo-impact {
    font-size: 52px;
    font-weight: normal;
    letter-spacing: -0.02em;
}

/* Impact Categories styling */
.impact-category h3 {
    font-family: 'Comfortaa', Arial, sans-serif;
    font-size: 22px;
    font-weight: 300;
    color: #555555;
    letter-spacing: 0.08em;
    margin-top: 0;
    margin-bottom: 35px;
}

/* Clean, bullet-less data metric lists */
.impact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.impact-list li {
    font-family: 'Comfortaa', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #333333;
    font-weight: 300;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

/* Divider styling */
.impact-divider {
    font-family: Arial, sans-serif;
    color: #2b2b2b;
    letter-spacing: 2px;
    font-size: 14px;
    margin: 65px 0;
    user-select: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .impact-section {
        padding: 70px 24px;
    }
    .impact-header {
        margin-bottom: 50px;
    }
    .impact-category h3 {
        font-size: 19px;
        margin-bottom: 25px;
    }
    .impact-list li {
        font-size: 14px;
    }
    .impact-divider {
        margin: 45px 0;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@0,400..700;1,400..700&display=swap');

.water-innovation-section {
  font-family: 'Inter', sans-serif;
  /* Image path handled in HTML; formatting kept here */
  background-repeat: no-repeat;  /* Fixed the property name here */
  background-position: center center;
  background-size: cover;        /* Changed from contain to cover to span full height */
  padding: 60px 20px;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  
  /* Added positioning context for the canvas background layer */
  position: relative; 
  overflow: hidden;
}

/* New CSS rule styling the animation canvas layout layer */
#rainCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Allows underlying grid links/clicks to pass through */
  z-index: 1;
}

.container {
  max-width: 900px;
  width: 100%;
  /* Elevates structural text content safely above canvas rain layers */
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header .subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 400;
  color: #333;
}

.section-header .intro-text {
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  font-weight: 300;
  margin-bottom: 35px;
}

.section-header .main-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  color: #4a7593;
  margin: 0;
}

/* Grid Layout */
.innovation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid #000000;
  border-left: 2px solid #000000;
}

.grid-card {
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  padding: 40px 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: rgba(255, 255, 255, 0.15); 
}

.grid-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.4;
}

.grid-card p {
  font-size: 13.5px;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 300;
  color: #111;
}

.grid-card p:last-child {
  margin-bottom: 0;
}

.grid-card .highlight {
  font-weight: 400;
  margin: 15px 0;
}

/* Responsive adjustments */
/* Responsive adjustments for mobile and tablets */
@media (max-width: 768px) {
  /* Switch grid to a single clean vertical column layout */
  .innovation-grid {
    grid-template-columns: 1fr;
    border-top: 2px solid #000000;
    border-left: 2px solid #000000;
    border-right: none; /* Let individual cards handle the outer borders cleanly */
  }

  .grid-card {
    padding: 35px 20px;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
  }
  
  /* Reduce header text scale slightly for perfect mobile readability */
  .section-header .main-title {
    font-size: 36px;
  }
  
  .section-header .intro-text {
    font-size: 14px;
    padding: 0 10px;
  }
}


/* Energy Efficiency */

/* Importing the exact classic serif font family that mirrors the refined tracking in the second image */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

.energy-efficiency-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000; /* Fallback background color */
}

.energy-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Forces the HTML image element to act like a full-bleed background */
.energy-bg-image {
  width: 100%;
  height: auto;
  min-height: 450px; /* Ensures a good aspect ratio on smaller viewports */
  object-fit: cover;
  display: block;
}

/* Positions the text perfectly over the sky layer of the image */
.energy-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding-top: 8%; /* Uses percentage padding so it scales dynamically with the image height */
  z-index: 2;
  box-sizing: border-box;
}

.energy-header .energy-title {
  font-family: 'Lora', serif;
  font-size: 4.5vw; /* Uses viewport-width scaling so the font shrinks/grows with the section width */
  min-size: 38px;  /* Safety constraint for smaller screens */
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.04em; /* Maintains the tight letter tracking from design #2 */
  
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Desktop optimization to lock maximum font growth */
@media (min-width: 1440px) {
  .energy-header .energy-title {
    font-size: 64px;
    letter-spacing: -2.5px;
  }
  .energy-header {
    padding-top: 110px;
  }
}

/* Mobile fine-tuning */
@media (max-width: 768px) {
  .energy-bg-image {
    min-height: 300px;
  }
  
  .energy-header {
    padding-top: 50px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .energy-header .energy-title {
    font-size: 38px;
    letter-spacing: -1.5px;
  }
}


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

.energy-grid-section {
  font-family: 'Inter', sans-serif;
  background-color: #5b7e93; /* Slate blue background matching the image */
  padding: 260px 20px;
  color: #ffffff; /* All text is white */
  display: flex;
  justify-content: center;
  align-items: center;
}

.energy-grid-container {
  max-width: 730px;
  width: 100%;
}

/* 2x2 Grid Layout with thin white borders mimicking the image */
.energy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
}

.energy-card {
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  padding: 50px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.energy-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

.energy-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9); /* Slightly soft white for body text readability */
}

/* Specific styling for the 35% performance metric */
.energy-card .energy-highlight {
  margin-top: 25px;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
}

/* Clean single-column mobile collapse matching your previous style specifications */
@media (max-width: 768px) {
  .energy-grid {
    grid-template-columns: 1fr;
    border-right: none;
  }
  
  .energy-card {
    padding: 40px 25px;
    border-right: 2px solid #ffffff;
  }
}



/* circular */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;500&display=swap');

.circular-production-section {
  font-family: 'Inter', sans-serif;
  background-color: #f7f4f0; 
  padding: 80px 40px; /* Margins expanded for widescreen presentation comfort */
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circular-container {
  max-width: 1600px; /* Adjusted container to support your widescreen choice */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Shifts container alignment context to the left side */
}

/* Badge Alignment styling */
.circular-badge-wrapper {
  margin-bottom: 50px;
  display: flex;
  justify-content: flex-start; /* Forces the SVG wrap layout alignment to the left */
  width: 100%;
}

.circular-badge {
  display: block;
}

/* Content Text Layout Styling */
.circular-content {
  width: 100%;
  text-align: left;
  margin-bottom: 50px;
}

.content-block {
  margin-bottom: 40px;
  max-width: 800px; /* Optional cap: Keeps line lengths crisp and legible at 1600px wide */
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block h3 {
  font-size: 18px; /* Slightly scaled up text to match upscale container hierarchy */
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}

.content-block p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  color: #222222;
  margin: 0;
}

/* Bottom Showcase Feature Video Layout */
.circular-image-wrapper {
  width: 100%;
  overflow: hidden;
}

.circular-display-img {
  width: 100%;
  height: auto;
  min-height: 450px; /* Proportionally stretched height for wide 1600px aspect limits */
  display: block;
  object-fit: cover;
}

/* Mobile fine-tuning */
@media (max-width: 768px) {
  .circular-production-section {
    padding: 60px 20px;
  }
  
  .circular-badge-wrapper {
    margin-bottom: 40px;
  }
  
  .content-block h3 {
    font-size: 15px;
  }

  .content-block p {
    font-size: 14px;
  }

  .circular-display-img {
    min-height: 300px;
  }
}

/*  */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

.partnership-section {
  font-family: 'Inter', sans-serif;
  background-color: #f7f4f0; 
  /* Changed padding: removed the side padding so full-bleed elements can touch the screen edge */
  padding: 80px 0 0 0; 
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center; 
}

.partnership-container {
  max-width: 1600px; 
  width: 100%;
  /* Added specific side paddings here so your text remains cleanly aligned away from the edges */
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center; 
}

/* Header Text Alignments */
.partnership-header {
  text-align: center;
  width: 100%;
  margin-bottom: 60px;
}

.partnership-subtitle {
  font-size: 16px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 25px;
  letter-spacing: -0.1px;
}

.partnership-intro {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
  color: #111111;
  max-width: 750px; 
  margin: 0 auto;
}

/* Icon / Logo Layout Slot */
.partner-logo-wrapper {
  margin-bottom: 70px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.partner-logo-img {
  height: auto;
  width: auto;
  max-width: 240px; 
  display: block;
}

/* Bottom Feature Media Slot - Spans exactly edge-to-edge now */
.partnership-media-wrapper {
  width: 100%;
  overflow: hidden;
}

.partnership-display-media {
  width: 100%;
  height: auto;
  min-height: 450px; 
  display: block;
  object-fit: cover;
}

/* Mobile Layout Fine-Tuning */
@media (max-width: 768px) {
  .partnership-section {
    padding-top: 60px;
  }
  
  .partnership-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .partnership-header {
    margin-bottom: 40px;
  }
  
  .partnership-subtitle {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .partnership-intro {
    font-size: 14px;
    padding: 0;
  }

  .partner-logo-wrapper {
    margin-bottom: 50px;
  }

  .partner-logo-img {
    max-width: 180px; 
  }

  .partnership-display-media {
    min-height: 320px;
  }
}


/*  */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

.harvest-section {
  font-family: 'Inter', sans-serif;
  background-color: #f7f4f0; /* Warm sand off-white background matching the previous blocks */
  padding: 250px 40px;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.harvest-container {
  max-width: 1600px; /* Aligned with your standard widescreen preference */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers all internal block elements */
}

/* Icon / Logo Center Slot */
.harvest-logo-wrapper {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.harvest-logo-img {
  height: auto;
  width: auto;
  max-width: 180px; /* Limits graphic size scale nicely on big screens */
  display: block;
}

/* Header Text Alignments and Hierarchy */
.harvest-header {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.harvest-subtitle {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0;
  margin-bottom: 45px;
  color: #333333;
}

.harvest-intro {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  color: #111111;
  max-width: 680px; /* Constrains sentence lines for clean reading geometry */
  margin: 0 auto 40px auto;
}

.harvest-tagline {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  color: #000000;
  margin: 0 auto;
}

/* Mobile Layout Fine-Tuning */
@media (max-width: 768px) {
  .harvest-section {
    padding: 70px 20px;
  }
  
  .harvest-logo-wrapper {
    margin-bottom: 40px;
  }

  .harvest-logo-img {
    max-width: 140px; /* Scales down smoothly for smartphone viewports */
  }
  
  .harvest-subtitle {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .harvest-intro {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .harvest-tagline {
    font-size: 14px;
  }
}


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

.looking-ahead-section {
  font-family: 'Inter', sans-serif;
  background-color: #f7f4f0; /* Matches the consistent warm sand off-white background background */
  padding: 400px 40px; /* Increased padding for an elegant, open breathing space closure layout */
  color: #333333; /* Soft dark grey text to match the clean presentation weight */
  display: flex;
  justify-content: center;
  align-items: center;
}

.ahead-container {
  max-width: 1600px; /* Aligned with your 1600px widescreen preference layout */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ahead-header {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ahead-subtitle {
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0;
  margin-bottom: 60px; /* Deliberate spacing hierarchy matching the screenshot */
  color: #444444;
}

.ahead-body-text {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 400;
  text-transform: uppercase; /* Text blocks explicitly formatted uppercase per screenshot */
  letter-spacing: 0.8px;
  max-width: 820px; /* Comfortable max-width container to balance clean text paragraph blocks */
  margin: 0 auto 35px auto;
}

.ahead-body-text:nth-of-type(2) {
  margin-bottom: 80px; /* Extra separation before the final brand core punchline statement */
}

.ahead-tagline {
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #000000; /* Crisp pure black focus contrast for the ending phrase */
  margin: 0 auto;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .looking-ahead-section {
    padding: 80px 20px;
  }
  
  .ahead-subtitle {
    font-size: 13px;
    margin-bottom: 40px;
  }

  .ahead-body-text {
    font-size: 12.5px;
    line-height: 1.7;
    margin-bottom: 25px;
    padding: 0 5px;
  }

  .ahead-body-text:nth-of-type(2) {
    margin-bottom: 50px;
  }

  .ahead-tagline {
    font-size: 13px;
    line-height: 1.5;
  }
}


/* footer */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

.site-footer {
  font-family: 'Inter', sans-serif;
  background-color: #5b7e93; /* Matches the solid signature slate-blue tone */
  padding: 100px 60px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-container {
  max-width: 1600px; /* Locked seamlessly to your layout width configuration */
  width: 100%;
  display: flex;
  justify-content: space-between; /* Pushes contact left and connect right */
  align-items: flex-start;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-family: 'Lora', serif;
  font-size: 36px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 40px;
  letter-spacing: -1px;
}

/* Contact List Architecture */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}

.contact-list li:last-child {
  margin-bottom: 0;
}

.contact-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #ffffff;
}

/* Native CSS Inline Vector Graphics mimicking image wireframe icons */
.contact-icon {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.9;
}

/* Pure CSS SVG Icon Embeds */
.address-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23fff' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}
.phone-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23fff' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}
.email-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23fff' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E");
}

/* Social Connection Icons Matrix */
.social-links {
  display: flex;
  gap: 15px;
}

.social-icon-box {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-icon-box:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.social-icon-box svg {
  width: 20px;
  height: 20px;
}

/* Mobile & Tablet Breakdown */
@media (max-width: 768px) {
  .site-footer {
    padding: 60px 30px;
  }

  .footer-container {
    flex-direction: column;
    gap: 60px; /* Separates the column clusters cleanly when stacked */
  }

  .footer-heading {
    font-size: 30px;
    margin-bottom: 25px;
  }
}