body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  margin: 0;
  background: #f9fafb;
  color: #1b1a1a;
}




/* The main wrapper for everything: */
.container_1 {

  margin: 0 auto;
  padding: 0 7vw;
}

/* Hide nav-logo on mobile */
@media (max-width: 600px) {
  .nav {
text-align: right;
padding-top: 25px;
  }
}

/* NAVIGATION */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9fafb;
  min-height: 70px;
  /* No padding here! All padding is in .site-container */
}

@media (max-width: 600px) {
  .nav {
    flex-direction: column;
    align-items: flex-start; /* keep the logo aligned left */
    gap: 8px;
    width: 100%;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-end;  /* push links to the right */
  }
}



.nav-logo {
  font-weight: 200;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

/* Hide nav-logo on mobile */
@media (max-width: 600px) {
  .nav-logo {
    display: none;
  }
}

/* Nav links row, compact gap */
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Nav links styling */
.nav-link {
  color: #484343;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s, border-bottom 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-link.active,
.nav-link:focus {
  font-weight: 600;
  border-bottom: 2px solid #1b1a1a;
}

.nav-link:hover {
  border-bottom: 2px solid #bbb;
}

/* MAIN CONTENT */
.main-content {
  /* No extra padding or max-width here! Only on .site-container */
}




.main-heading {
  font-family: 'Playfair Display', serif;
  font-size: 7vw;
  font-weight: 400;
  line-height: 1.08;
  color: #181818;
  letter-spacing: -3.7px;
  margin: 18px 0 24px 0;
}

@media (max-width: 800px) {
  .main-heading {
    font-size: 2.2rem;
    margin-top: 20px;
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .main-heading {
    font-size: 2.7rem;
  }
  .info-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .read-more-btn {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}


@media (max-width: 600px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .main-heading {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 14px 0 16px;
    word-break: keep-all;
  }
  .info-section > div {
    max-width: 100%;
  }
  
  .hero-image {
    min-height: 210px;
    object-fit: cover;
  }
  .nav-links {
    gap: 12px;
  }
}





/* Ultra thin for hero/paragraph text */
.info-section p,
.photo-content p,
.photo-story,
.clients-subtitle,
.hero-desc, /* add your class names here */
p {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-weight: 200 !important;  /* 200 is Extra Light, 300 is Light */

}




.hero-image-container {
  width: 100%;
  margin-bottom: 20px;
}

.hero-image {
  width: 100%;
  display: block;
  border-radius: 0;
  object-fit: cover;
}

/* INFO SECTION */
.info-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Align items to the top (not bottom!) */
  gap: 2vw;
  font-weight: 200;
  background: #f9fafb;
  margin-top: 0;
  padding: 32px 0;
}

/* Mobile: 1 column */
@media (max-width: 600px) {
  .info-section {
    gap: 5vw;
    padding:7px 0;
  }

}


.info-section p {
  font-size: 1.08rem;
  margin: 0;
  color: #111;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.3px;  
  max-width: 900px; /* Controls paragraph width on left */
}

.read-more-btn {
  display: inline-block;
  border: 1px solid #111;
  background: #111;
  color: #f9fafb;
  padding: 13px 32px;
  font-size: 1.08rem;
  font-weight: 7400;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin: 0 16px 0 40px; /* space between btn & paragraph */
  align-self: flex-start; /* <--- ensures it's top-aligned in flex row */
  white-space: nowrap;
}

.read-more-btn:hover {
  background: #fff;
  color: #111;
}

/* === Mobile-specific tweaks (place at end of file) === */
@media (max-width: 600px) {
  .main-heading {
    /* Make the hero title readable on small screens */
    font-size: clamp(1.8rem, 9vw, 2.4rem);
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 14px 0 16px;
    word-break: keep-all;
  }

  .read-more-btn {
    /* 70% of the screen width, centered */
    width: min(70vw, 520px);
    align-self: center;      /* center within the column flex */
    margin: 0 auto;          /* ensure horizontal centering */
    text-align: center;
    margin-bottom: 70px;
  }
}











.video-section {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  justify-content: space-between;
  background: #efede9;  /* Or #f9fafb to match the rest of your site */
  padding: 100px;
}

.video-content {
  flex: 1 1 0;
  min-width: 280px;
  max-width: 540px;
}

.video-content h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 26px;
  margin-top: 0;
}

.video-story {
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 10px 0;
}

.video-sample {
  flex: 1 1 0;
  min-width: 280px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.video-preview {
  width: 4140px;
  max-width: 100%;
  border-radius: 0;
  box-shadow: 0 4px 24px rgba(60,60,60,0.08);
  background: #000;
}

/* Responsive: stack on mobile/tablet */
@media (max-width: 900px) {
  .video-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 32px 3vw;
  }
  .video-preview {
    width: 100%;
    max-width: 100%;
  }
}









.container_3 {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #f9fafb;; /* Or your preferred background */
  padding-bottom: 70px;
}

.photo-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 0 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.photo-content {
  width: 100%;
  max-width: 700px;
  margin-bottom: 40px;
  text-align: center;
}

.photo-content h1 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.photo-story {
  font-size: 1.24rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.photo-gallery {
  display: flex;
  gap: 32px;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 30px;
}

.photo-preview {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 0;
  box-shadow: 0 4px 24px rgba(60,60,60,0.08);
  background: #000;
  object-fit: cover;
  display: block;
}

/* Responsive for tablet/mobile */
@media (max-width: 1000px) {
  .photo-gallery {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .photo-preview {
    max-width: 100%;
  }
  .photo-section {
    padding: 38px 0 24px 0;
  }
}

@media (max-width: 600px) {
  .about-content h1 {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  .about-story {
    font-size: 1.04rem;
  }
  .photo-section {
    padding: 24px 0 10px 0;
  }
}


.see-more-row {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.see-more-btn {
  display: inline-block;
  padding: 13px 38px;
  border: 1px solid #1b1a1a;
  background: #fff;
  color: #1b1a1a;
  font-weight: 700;
  font-size: 1.07rem;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.see-more-btn:hover {
  background: #111;
  color: #fff;
}









.clients-section {
  background: #f8f7f3;
  padding: 70px 0 170px 0;
  text-align: center;
}

.clients-title {
  font-family: 'Georgia', serif;
  font-size: 3rem;
  font-weight: 500;
  color: #6b6562;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.clients-subtitle {
  font-size: 1.1rem;
  color: #827d7d;
  margin-bottom: 52px;
  font-family: 'Inter', Arial, sans-serif;
}

.clients-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 per row */
  gap: 34px 4px;
  max-width: 900px;
  margin: 0 auto;
}

.client-logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.client-logo {
  max-width: 190px;
  max-height: 120px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.15);
  width: 100%;
  height: auto;
}

/* Tablet: 2 columns */
@media (max-width: 950px) {
  .clients-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 18px;
  }
  .client-logo {
    max-width: 130px;
    max-height: 90px;
  }
}

/* Mobile: 1 column */
@media (max-width: 600px) {
  .clients-logos {
    grid-template-columns: 1fr;
    gap: 32px 0;
  }
  .clients-title {
    font-size: 2.1rem;
  }
  .clients-subtitle {
    font-size: 1.09rem;
  }
  .client-logo {
    max-width: 110px;
    max-height: 70px;
  }
}





.footer {
  background: #232323;
  color: #fff;
  padding: 60px 0 60px 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.footer-grid {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
  gap: 60px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1 1 300px;
}

.footer-logo {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 36px;
}

.footer-contact-block p {
  margin: 0 0 10px 0;
  font-size: 1.08rem;
}



.footer-right {
  flex: 2 1 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
}

.footer-socials {
  display: flex;
  gap: 18px;
  margin-bottom: 10px;
}
.footer-socials img {
  width: 36px;
  height: 36px;
  transition: opacity 0.2s;
}
.footer-socials a:hover img {
  opacity: 0.7;
}

.footer-links {
  display: flex;

  gap: 26px;
  margin-bottom: 10px;
}
.footer-links a {
  color: #fff;
  color: #5a5555;
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.8;
}
.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}



.footer-copy {
  font-size: 1rem;
  color: #5a5555;
  opacity: 0.8;
  text-align: right;
}

/* Responsive styles */
@media (max-width: 900px) {
  .footer-grid {
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
    padding: 0 6vw;
  }
  .footer-right {
    align-items: flex-start;
    text-align: left;
  }
  .footer-address,
  .footer-copy {
    text-align: left;
  }
}






/* Mobile hero image ~50% screen height */
@media (max-width: 600px) {

  .hero-image {
    display: none !important;
  }
}

.hero-mobile { display: none; }

@media (max-width: 600px) {
  .hero-image { display: none; }
  .hero-mobile { display: block; }
}





/* Make hero image full-bleed on mobile (ignore container padding) */
@media (max-width: 600px) {
  .hero-image-container {
    margin-left: calc(-7vw);
    margin-right: calc(-7vw);
    width: calc(100% + 14vw);
  }

  /* keep the mobile hero tall and nicely cropped */
  .hero-mobile {
    display: block !important;
    width: 100%;
    height: 50vh;           /* or keep 65vh if you like it taller */
    object-fit: cover;
    object-position: center;
  }

  .hero-image { display: none !important; }
}
@media (max-width: 600px) {
  .main-heading {
    margin-top: 6px;   /* reduce space before the heading */
    margin-bottom: 14px; /* keep a little breathing room below */
  }
}

@media (max-width: 600px) {
  .video-preview {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}
