*{
    margin:0;
    padding:0;
}

/*UNIVERSAL*/

/* Ensure all main sections act as coordinates for the top-center marker */
#experties, #about, #testimonial {
  position: relative; 
}

/* --- Global Top Center Section Indicator --- */
.section-top-indicator {
  position: absolute;
  top: 40px;               /* Controls how close it floats to the upper border */
  left: 50%;               /* Shifts horizontally to the middle line */
  transform: translateX(-50%); /* Perfectly balances the text precisely dead-center */
  
  /* Typography keeping consistency with your gold/grey accent structure */
  font-size: 0.7rem;       /* Ultra-clean and compact minimalist label */
  letter-spacing: 0.2em;   /* Extra spacing for a spacious, high-end feel */
  text-transform: uppercase;
  color: #c8b89a;          /* Sophisticated muted grey tone */
  margin: 0;
  white-space: nowrap;     /* Keeps text tightly locked in a single solid line */
  pointer-events: none;    /* Prevents the text box from clicking or interfering with hover effects */
}


/* ── Utility ── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8b89a;
  margin-bottom: 16px;
}

.section-title {
  font-size:clamp(2.4rem, 5vw, 4rem);
  font-weight:400;
  line-height:1.1;
  color: white;
}

.section-title em {
  font-style:italic;
  color:#c8b89a;
}

.section-header {
  margin-bottom: 64px;
}

/*Navigation*/

/*Navigation*/
#nav-bar {
  position: relative;
}

#nav-bar nav {
  padding: 0.5em 5%;
  background: black;
  border-bottom: 1px solid black;
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.logo {
  margin-right: auto;
}

.logo img {
  width: 150px;
  height: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2em;
  margin-right: 30px;
}

.nav-links li a {
  position: relative;
  font-size: 1.05em;
  font-weight: 500;
  text-decoration: none;
  color: darkgray;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: white;
  text-shadow: 0 0 10px white;
}

/* Burger button */
.menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 16px;
  line-height: 0;
}

.menu-toggle img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  filter: invert(1);
}

/* Mobile dropdown */
.mobile-menu {
  background: rgba(0, 0, 0, 0.434);
  position: absolute;
  top: 100%;
  right: 0;
  width: 50%;
  box-sizing: border-box;
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}

.mobile-menu.open {
  max-height: 500px;
  
}

.mobile-menu ul {
  list-style: none;
  padding: 1.5em 5% 0 5%;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  text-align: right;
}

.mobile-menu ul li {
  border-bottom: 1px solid #1a1a1a;
}

.mobile-menu ul li a {
  display: block;
  padding: 0.85em 0;
  font-size: 1.05em;
  font-weight: 500;
  color: darkgray;
  text-decoration: none;
  transition: color 0.3s;
  text-align:right;
}

.mobile-menu ul li a:hover {
  color: white;
  text-shadow: 0 0 10px white;
}

.mobile-menu .btn {
  display: inline-block;
  margin: 1.5em 5%;
  float: right;
}

@media (min-width: 769px) {
  .mobile-menu {
    width: 15%;
  }
}

/* Responsive breakpoint */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .desktop-contact {
    display: none;
  }
  .mobile-menu {
    width: 35%;
  }
  /*.menu-toggle {
    display: block;
  }*/
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1em 2.5em;
  border-radius: 0px;
  font-weight: 900;
  font-size: 0.95em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  background: black;
  color: #ffffff;
  border: 1px solid gray;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transform: translateY(-1px);
}


/*------------------------------------------------------------------------------*/

#hero {
  background-color: #0a0a0a;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-title-wrapper {
  position: relative;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(120px, 20vw, 280px);
  color: rgba(255, 255, 255, 0.025);
  letter-spacing: 0.05em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8b89a;
  margin-bottom: 28px;
}

.hero-title {
  position: relative;
  z-index: 1;
  font-size: clamp(3.0rem, 9vw, 8rem);
  font-weight: 400;
  line-height: 1.0;
  color: white;
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: lightgray;
}

.hero-sub {
  font-size: clamp(2rem, 1.5vw, 1.2rem);
  font-weight: 500;
  color: lightgray;
  max-width: 500px;
  margin: 0 auto 48px;
  text-align: center;
}

@media(max-width:790px){
  .hero-sub{
    font-size:1.5rem;
  }
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: darkgray;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, lightgray, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}



/*Ribbon motion*/
/*
.ribbon{
    overflow:hidden;
    background:rgba(0,0,0,0.8);
    border-top:1px solid rgba(255,255,255,0.06);
    border-bottom:1px solid rgba(255,255,255,0.06);
    padding:18px 0;
}

.ribbon-track{
    display:flex;
    gap:32;
    width:max-content;
    animation:marqueeScroll 28s linear infinite;
}

.ribbon-track span{
    font-size:0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform:uppercase;
    color:#999999;
    white-space: nowrap;
}
*/


/*-------------------------------------------------------------------------*/


/*****RIBBON********/


.ribbon {
  overflow: hidden;
  width: 100%;
  background: #1e1e1e;
  padding: 20px 0;
  display: flex;
}

.ribbon-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  
  /* THE FIX: Changed to 45s for a smoother, slower drift */
  animation: endlessScroll 60s linear infinite !important;
}

.ribbon-track span {
  font-size: 0.75rem;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  padding: 0 30px; 
}

.ribbon-track span.hyphen {
  color: #c8b89a; 
  padding: 0 10px; 
}

/* THE INFINITE LOOP ENGINE */
@keyframes endlessScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    /* THE FIX: Moves exactly half-way (the length of one full set) and loops perfectly */
    transform: translate3d(-50%, 0, 0); 
  }
}

/*------------------------------------------------------------------*/

/*Modern client LOGO BUBBLE section*/

.bubble-logo-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #0a0a0a; /* Light background to make bubbles pop */
  border-top: 0.5px solid #c8b89a;
  border-bottom: 0.5px solid #c8b89a;
}
.bubble-logo-section h2{
  color:#c8b89a /* Light background to make bubbles pop */
}

.bubble-logo-grid {
  display: grid;
  /* Increased the minimum size on desktop so they naturally want to be larger */
  grid-template-columns: repeat((5, 1fr));
  max-width: 1200px; /* Slightly wider layout to accommodate bigger bubbles */
  margin: 0 auto;
  gap: 20px; /* Increased gap to give big bubbles breathing room */
  align-items: center;
  justify-items: center;
}

/* Restrict to exactly max 4 columns on larger displays */
@media (min-width: 769px) {
  .bubble-logo-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}


/* The Bubble Container */
.logo-bubble {
  width: min(200px, 16vw);
  height: min(200px, 16vw);
  border-radius: 50%;
  margin-top:50px;
  /* CHANGE: Changed to a dark/black background so the black image merges into it */
  background: #111111; 
  
  display: flex;
  align-items: center;
  justify-content: center; 
  overflow: hidden;
  transition:transform 0.3s ease;
}

/* The Logo Image Inside */
.logo-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: normal;
}

/* Hover effect makes them bounce slightly like a real bubble */
.logo-bubble:hover {
  transform: translateY(-12px) scale(1.08);
}


.logo-bubble:hover img {
  filter: grayscale(0%);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .bubble-logo-grid {
    grid-template-columns: repeat(3, 1fr); /* 2 per row on small phones */
    gap: 10px;
  }
  .logo-bubble {
    width: min(110px , 28vw);
    height: min(110px , 28vw);
    transform: none !important; /* Remove offsets on mobile to prevent clipping */
  }
}




/*Old client section

#clients {
  position:relative;
  padding: 160px 0; 
  background: #0a0a0a; 
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;   
}


.clients-scatter-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px; 
  gap: 20px;
  align-items: center;
  justify-items: center;
  position: relative;
  min-height: 600px; 
}


.client-bubble {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}


.bubble-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%; 
  background: #141414; 
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  

  padding: 0; 
  overflow: hidden; 
  
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transition: border-color 0.3s ease, background 0.3s ease;
}


.bubble-logo img {
  width: 100%;
  height: 100%;
  
  
  object-fit: cover; 
  object-position: center;
  
  filter: grayscale(100%) opacity(40%); 
  transition: filter 0.3s ease;
}


.client-bubble:hover {
  transform: scale(1.08) translateY(-5px);
  z-index: 10;
}

.client-bubble:hover .bubble-logo {
  border-color: #c8b89a; 
  background: #1e1e1e;
}

.client-bubble:hover img {
  filter: grayscale(0%) opacity(100%); 
}

.bubble-1 { grid-column: 1 / span 2; grid-row: 1; width: 140px; height: 140px; }
.bubble-2 { grid-column: 4 / span 2; grid-row: 2; width: 110px; height: 110px; transform: translateY(-20px); }
.bubble-3 { grid-column: 7 / span 2; grid-row: 1; width: 160px; height: 160px; }
.bubble-4 { grid-column: 10 / span 2; grid-row: 2; width: 130px; height: 130px; }

.bubble-5 { grid-column: 2 / span 2; grid-row: 4; width: 150px; height: 150px; transform: translateX(20px); }
.bubble-6 { grid-column: 5 / span 2; grid-row: 3; width: 120px; height: 120px; }
.bubble-7 { grid-column: 8 / span 2; grid-row: 4; width: 140px; height: 140px; transform: translateY(30px); }

.bubble-8 { grid-column: 3 / span 2; grid-row: 6; width: 110px; height: 110px; }
.bubble-9 { grid-column: 6 / span 2; grid-row: 6; width: 160px; height: 160px; transform: translateY(-40px); }
.bubble-10 { grid-column: 10 / span 2; grid-row: 5; width: 135px; height: 135px; }


@media (max-width: 992px) {
  .clients-scatter-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    grid-auto-rows: auto;
    gap: 40px;
    padding: 40px 20px;
  }
  

  .client-bubble {
    grid-column: auto !important;
    grid-row: auto !important;
    transform: none !important;
    width: 130px !important;
    height: 130px !important;
  }
}

*/


.scroller {
  height: 300px;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

.scroller section {
  scroll-snap-align: start;
}

/*About*/
#about {
  padding: 120px 0;
  background: #0a0a0a;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text {
  color: #999999;
  margin-bottom: 20px;
  font-size: 1.05rem;
}



.about-stats {
  display: flex;
  justify-content:flex-start;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-num {
  display: block;
  font-size: 4rem;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555555;
}

.about-left .section-title {
  font-size: 3.5rem; /* Adjust to match your original design size */
  line-height: 1.2;
  font-weight: 400;
  max-width: 500px; /* Forces a natural, structured bounding box on desktop */
}


/*Vision*/


/*
#testimonial {
  padding: 100px 0;
  background: #141414;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.testimonial {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-quote {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: white;
  line-height: 1.4;
  margin-bottom: 40px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-weight: 500;
  color: white;
  font-size: 0.9rem;
}

.author-role {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555555;
}
*/


/* ==========================================================================
   Vision & Testimonial Section
   ========================================================================== */

#testimonial {
  padding: 120px 0;
  background: #141414;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* --- Vision Header Layout --- */
#vision-header {
  text-align: left;
  margin-bottom: 60px; /* Clean block gap before the centered blockquote starts below */
  color: white;
}

/* Typography styles matching your premium branding tokens */
.vision-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #c8b89a;      /* Your signature gold accent */
  margin-bottom: 12px;
  text-transform: uppercase;
}

.vision-title {
  font-size: 3.5rem;
  line-height:1.2;
  font-weight: 400;
  max-width:500;
  color: white;
  margin: 0;
}

/* --- Your Isolated Blockquote Styles (Completely Unaltered Layout) --- */
.section-inner1 {
  max-width: 800px;
  margin: 0 auto;      
  padding: 0 40px;     
}

.testimonial {
  text-align: justify;
  text-align-last: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-quote {
  font-size: clamp(1.4rem, 3vw, 2.2rem); 
  font-weight: 400;
  font-style: italic;
  color: white;
  line-height: 1.4;
  margin-bottom: 40px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-weight: 500;
  color: white;
  font-size: 0.9rem;
}

.author-role {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555555;      
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  #testimonial {
    padding-top: 180px; /* Gives space for the absolute header on small screens */
  }
  #vision-header {
    top: 60px;
    left: 40px;
    text-align:center;
  }
}


/*-----------------------------------------------------------------------------*/

/*MODERN SLIDER*/

/* MODERN HERO SLIDER */

#hero-work {
  padding: 40px 0;
  background: #0a0a0a;
  height: 95vh;
  min-height: 750px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.section-heading {
  text-align: center;
  color: #c8b89a;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0;
  width: 100%;
  padding-top: 20px;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* THE SPLIT HERO LAYOUT FIX */

.slide {
  width: 100%;             /* Force it to match the width container */
  min-width: 100%;         /* Strictly demand it stretches to full width */
  flex-shrink: 0;          /* CRITICAL FIX: Stops slides from compressing or spilling over */
  
  position: relative;
  display: flex;            
  align-items: center;
  justify-content: space-between;
  gap: 5%;                  
  padding: 0 5%;            
  box-sizing: border-box;  /* Forces the 5% padding to stay INSIDE the 100% width calculation */
}

/* Column 1: Your Text & Description Box */
.slide-caption {
  flex: 1;
  max-width: 550px;
  display: flex;
  flex-direction: column;   /* Stacks tag -> title -> client vertically */
  align-items: flex-start;  /* Aligns everything perfectly to the left */
  gap: 20px;
  padding: 0;               /* Stripped your old margins so it acts as a clean hero column */
}

.slide-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c8b89a;
  border: 1px solid #c8b89a;
  padding: 6px 14px;
  border-radius: 0px;       /* Keeps your sharp geometric corners */
}

.slide-title {
  font-size: clamp(2.5rem, 4.5vw, 3.8rem); /* Fluid typography: massive on desktop, fits on mobile */
  font-weight: 900;         /* Matches your requested ultra-bold look */
  color: white;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.02em;  /* Tighter tracking looks incredibly premium on large bold headers */
}

.slide-client {
  font-size: 0.85rem;
  color: #777777;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: 0;           /* Resets the old auto-left margin */
}

/* Column 2: Your Image Box */
/* Column 2: Your Image Box */
.slide-img-wrap {
  flex: 1.2;                
  height: 55vh;             /* CHANGED from 65vh: Makes the box shorter so the image zooms out */
  max-height: 480px;        /* Keeps it elegantly proportional */
  overflow: hidden;
  border: 10px solid #c8b89a40; 
}

.slide-img-wrap img {
  width: 100% !important;   
  height: 100% !important;  
  object-fit: fill !important; 
  object-position: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}



/* Controls (Positioned cleanly under the hero layout) */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Aligns controls with your text column */
  gap: 16px;
  padding: 40px 5% 0;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0px;       /* Sharp rectangular control frames */
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.slider-btn svg {
  width: 18px;
  height: 18px;
}

.slider-btn:hover {
  background: white;
  color: black;
  border-color: white;
}

.slider-dots {
  display: flex;
  gap: 8px;                    /* Spacing between the individual dots */
  align-items: center;
}

/* THE MINI ROUND DOTS FIX */
.dot-btn {
  width: 8px;                  /* Small uniform width */
  height: 8px;                 /* Small uniform height */
  border-radius: 50%;          /* Forces them into perfect circles */
  background: #444444;         /* Muted gray for inactive dots */
  border: none;
  cursor: pointer;
  padding: 0;                  /* Strips default button padding */
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}

/* Active Dot State */
.dot-btn.active {
  background: #c8b89a;         /* Your signature premium gold hue */
  transform: scale(1.3);       /* Slightly swells the active dot smoothly instead of stretching it wide */
}


/*------------------------------------------------------------------------*/

/*CONTACT*/

/* --- CONTACT SECTION BASE --- */
#contact {
  background: #0a0a0a;
  padding: 100px 5%;
  width: 100%;
  box-sizing: border-box;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

/* --- LEFT SIDE: TYPOGRAPHY --- */
.contact-header {
  flex: 1;
}

.contact-header .section-label {
  color: #c8b89a; /* Your design accent gold */
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-title {
  color: white;
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 400;
}

.contact-title em {
  font-style: italic;
  font-family: serif; /* Gives the word "together" a premium, high-end architecture look */
}

/* --- RIGHT SIDE: DETAILS --- */
.contact-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 35px; /* Aligns visually with the baseline of the title text */
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.item-label {
  color: darkgray;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  font-weight: 500;
}

.item-link {
  color: white;
  font-size: 1.8rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
  width: max-content;
}

/* Subtle hover interaction for links */
.item-link:hover {
  color: #c8b89a;
  transform: translateX(5px);
}


/* --- MOBILE RESPONSIVE ADAPTATION --- */
@media (max-width: 992px) {
  #contact {
    padding: 80px 5%;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
  }

  .contact-header {
    width: 100%;
  }

  .contact-title {
    font-size: 2.6rem;
  }
  
  .contact-title br {
    display: none; /* Allows text to wrap naturally on smaller screens */
  }

  .contact-details {
    width: 100%;
    align-items: center;
    padding-top: 0;
    gap: 35px;
  }

  .item-link {
    font-size: 1.4rem;
    width: auto;
  }

  .item-link:hover {
    transform: none; /* Disables lateral slide on mobile hover */
  }
}

/*FOOOTER*/

/* ------------------------------------------------------------------*/



#footer {
  background-color: #141414;
  color: #e2e8f0;
  font-family: inherit;
  padding: 3rem 2rem 1.5rem;
  
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 0.5px solid #2d3748;
  padding-top: 2rem;
  display:flex;
  flex-direction: column;
}


/* ── Grid ── */
.footer-top {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr;
  align-items: start;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* ── Column label ── */
.footer-col-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8b89a;
  margin: 0 0 1rem;
}

/* ── Brand ── */
.footer-logo {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  color: #c8b89a;
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 13px;
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

/* ── Nav ── */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav a {
  font-size: 16px;
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

/* ── Contact ── */
#footer address {
  font-style: normal;
  margin:0;
  padding:0;
}



.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.65rem;
}

.footer-contact-item img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  filter: brightness(0) invert(0.4);
}

.footer-contact-item span {
  font-size: 16px;
  color: #a0aec0;
  line-height: 1.5;
  text-align: left;
}

#footer .contact-item:last-child {
  margin-bottom: 0;
}


.footer-contact-item a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: #ffffff;
}



/* ── Socials ── */
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.social-link img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(0.6);
  transition: filter 0.2s ease;
}

.social-link:hover img {
  filter: brightness(0) invert(1);
}



.social-link:hover {
  color: #ffffff;
}

.social-link i {
  font-size: 17px;
}

/* ── Divider ── */
.footer-divider {
  border: none;
  border-top:0.5px solid #2d3748;
  margin: 0 0 1.25rem;
}

/* ── Bottom ── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-top: 0.5px solid #2d3748;
  margin-top: 2rem;
  padding-top: 1.25rem;
}

.footer-bottom p {
  font-size: 12px;
  color: #4a5568;
  margin: 0;
}

/* ── Responsive Footer ── */

@media (max-width: 790px) {
  #footer {
    padding: 2rem 1.5rem 1.25rem;
  }

  .footer-inner {
    width: 100%;
    max-width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 2rem;
  }

  .footer-col-label {
    text-align: left;
  }

  .footer-nav,
  .footer-contact,
  .footer-socials {
    align-items: flex-start;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .footer-contact-item,
  .social-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  .footer-contact-item img,
  .social-link img {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    min-width: 18px;
    flex-shrink: 0;
    object-fit: contain;
  }

  .footer-contact-item span,
  .social-link span {
    text-align: left;
    font-size: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-top: 0.5rem;
  }
}
  






/*--------------------------------------------------------------------*/

/*NOT FOOTER*/

/* Responsive Mobile Layout Override */
@media (max-width: 992px) {
  /* THE FIX: Add this block right here to adjust the background wrapper */
  #hero-work {
    height: auto;             
    min-height: unset;        
    padding: 60px 0 60px; 
    gap:20px;    
  }

  .section-heading {
    padding-top: 0;
  }

  .slide {
    flex-direction: column-reverse; /* Stacks image on top, text below on mobile */
    gap: 40px;
    padding-top: 40px;
  }

  .slide-img-wrap {
    width: 90%;
    height: 40vh;
    margin: 0 auto;
  }

  .slide-caption {
    max-width: 100%;
    align-items: center;    /* Center aligns text for a clean mobile read */
    text-align: center;
  }

  .slider-controls {
    justify-content: center; /* Center controls on mobile screen */
    padding: 30px 5% 0;      /* THE FIX: Keeps the arrows/dots tucked safely in the black zone */
  }


/* MOBILE ABOUT SECTION OPTIMIZATION */

  
  /* 1. Break the grid system and turn it into a centered vertical stack */
  .about-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 40px !important; /* Healthy breathing room between title and text */
    padding: 60px 5% !important;
  }

  /* 2. Center-align the top wrapper (Label + Main Title) */
  .about-left {
    text-align: center !important;
    width: 100% !important;
  }

  /* Fixes the desktop <br /> tags so the heading flows smoothly on small screens */
  .about-left .section-title {
    font-size: 2.4rem !important;
    text-align: center !important;
    max-width: 100% !important; /* Lets text utilize full mobile screen width */
    line-height: 1.3 !important;
  }

  /* KILLS the extra break before "intention" on mobile so it doesn't look too jagged */
  .break-desktop::before {
    content: none !important;
  }

  /* KEEPS the break before "made visible" on mobile so the punchline drops beautifully */
  .break-always::before {
    content: "\A" !important;
    white-space: pre !important;
  }

  
  .about-left .section-title br {
    display: none !important; /* Removes harsh line breaks on small devices */
  }

  /* 3. Center-align the right wrapper (Paragraphs + Stats) */
  .about-right {
    text-align: center !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  /* 4. Format the paragraphs to look clean, professional, and centered */
  .about-text {
    text-align: center !important;
    max-width: 600px !important; /* Keeps the text block from looking too wide */
    margin: 0 auto 20px !important; /* Centers the paragraph block itself */
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
  }

  /* 5. Center up your stats containers below the text */
  .about-stats {
    display: flex !important;
    justify-content: center !important;
    gap: 40px !important; /* Gives the two stats nice breathing room side-by-side */
    margin-top: 20px !important;
    width: 100% !important;
  }

  .stat {
    text-align: center !important;
  }
}

/*----------------------------------------------------------------*/

/* STAFF Member PAGE  */

/* Section wrapper */
.staff-section {
  padding: 80px 40px;
  background-color: #0a0a0a;
  min-height: 100vh;
}

/* Header */
.staff-header {
  text-align: center;
  margin-bottom: 60px;
}

.staff-header h2 {
  color: #c8b89a;
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}

.staff-subtitle {
  color: #666;
  font-size: 1rem;
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* Grid — 3 columns by default, fluid */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Individual card */
.staff-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Bubble — matches your .logo-bubble style */
.staff-bubble {
  width: min(160px, 22vw);
  height: min(160px, 22vw);
  border-radius: 50%;
  background: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
  border: 2px solid #1e1e1e;
  transition: transform 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
}

.staff-bubble:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: #c8b89a;
}

/* Photo inside bubble */
.staff-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Initials fallback (shown when no image is set) */
.staff-initials {
  font-size: min(2rem, 5vw);
  font-weight: 600;
  color: #c8b89a;
  letter-spacing: 0.05em;
  user-select: none;
}

/* Text below the bubble */
.staff-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.staff-name {
  color: #e8e0d4;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.02em;
}

.staff-position {
  color: #c8b89a;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.staff-description {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 6px 0 0;
  max-width: 200px;
}

/* ---- Responsive ---- */

/* Tablet: 2 columns */
@media (max-width: 768px) {
  .staff-section {
    padding: 60px 24px;
  }

  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
}

/* Mobile: 1 column, card goes horizontal */
@media (max-width: 480px) {
  .staff-section {
    padding: 40px 20px;
  }

  .staff-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .staff-card {
    flex-direction: row;
    text-align: left;
    gap: 20px;
    align-items: flex-start;
  }

  .staff-bubble {
    width: 80px;
    height: 80px;
    min-width: 80px; /* prevent shrinking */
    margin-bottom: 0;
  }

  .staff-initials {
    font-size: 1.3rem;
  }

  .staff-info {
    align-items: flex-start;
  }

  .staff-description {
    max-width: 100%;
  }
}



