/* ========================= */
/* SERVICES HERO ENHANCEMENTS */
/* ========================= */

.services-hero-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.services-gold-divider {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #b09b61 60%, #fffbe6 100%);
  border-radius: 2px;
  margin: 16px auto 22px auto;
}

.services-hero-desc {
  font-size: 20px;
  color: #7a6a3a;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0;
}
/* ========================= */
/* ABOUT PAGE ENHANCEMENTS   */
/* ========================= */

.about-page {
  background: linear-gradient(120deg, #f9f7f3 80%, #f5e9d6 100%);
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(176,155,97,0.04);
  padding-bottom: 30px;
}

.about-decorative-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.about-gold-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #b09b61 60%, #fffbe6 100%);
  border-radius: 2px;
  margin: 18px auto 28px auto;
}

.about-quote-box {
  background: #fffbe6;
  border-left: 6px solid #b09b61;
  border-radius: 10px;
  padding: 28px 32px 18px 32px;
  margin: 36px auto 0 auto;
  max-width: 520px;
  box-shadow: 0 2px 16px rgba(176,155,97,0.07);
  position: relative;
  text-align: left;
}
.about-quote-mark {
  font-size: 38px;
  color: #b09b61;
  font-family: 'Cormorant Garamond', serif;
  position: absolute;
  left: 18px;
  top: 10px;
}
.about-quote-text {
  display: block;
  font-size: 20px;
  color: #7a6a3a;
  margin-left: 32px;
  font-style: italic;
}
.about-quote-author {
  display: block;
  margin-top: 12px;
  margin-left: 32px;
  color: #b09b61;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
}

/* Fade-in animation for mission cards */
.mission-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
}
.mission-card:nth-child(1) { animation-delay: 0.1s; }
.mission-card:nth-child(2) { animation-delay: 0.3s; }
.mission-card:nth-child(3) { animation-delay: 0.5s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}
/* Hide about page image */
.about-page-image {
  display: none;
}
/* ABOUT PAGE IMAGE SIZE */
.about-page-image img {
  width: 80%;
  max-width: 400px;
  display: block;
  border-radius: 8px;
  margin: 30px auto 30px auto;
}

/* FOUNDER VALUES & QUOTE */
.founder-values {
  padding: 100px 8%;
  text-align: center;
}

.founder-values h3 {
  font-size: 58px;
  color: #102a5c;
  margin: 15px 0 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.value-card {
  background: white;
  padding: 45px;
  border: 1px solid #ddd;
  transition: 0.4s;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.value-card h4 {
  font-size: 30px;
  color: #102a5c;
  margin-bottom: 15px;
}

.value-card p {
  line-height: 1.8;
}

/* FOUNDER QUOTE */
.founder-quote {
  padding: 0 8% 100px;
}

.quote-box {
  background: #102a5c;
  padding: 80px;
  text-align: center;
  border-radius: 32px;
  box-shadow: 0 0 0 8px rgba(176,155,97,0.10), 0 0 32px 8px #b09b6133, 0 0 80px 0px #fffbe6aa;
  position: relative;
  z-index: 1;
}

.quote-box h2 {
  color: white;
  font-size: 52px;
  line-height: 1.4;
  margin-bottom: 25px;
}

.quote-box p {
  color: #d7d7d7;
  letter-spacing: 2px;
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .founder-values, .founder-quote {
    padding: 60px 4%;
  }
  .founder-values h3 {
    font-size: 42px;
  }
  .quote-box h2 {
    font-size: 36px;
  }
}

/* Ensure reveal sections are always visible */
.reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* TESTIMONIALS */

.testimonials{
  padding:100px 8%;
  text-align:center;
  background:white;
  border:1px solid #eee;
  box-shadow:0 4px 24px rgba(0,0,0,0.04);
  border-radius:18px;
  margin:40px 8%;
}

.testimonials h3{
  font-size:58px;
  color:#102a5c;
  margin:15px 0 50px;
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.testimonial-card{
  background:white;
  padding:45px;
  border:1px solid #ddd;
  transition:0.4s;
}

.testimonial-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.testimonial-card p{
  line-height:1.9;
  margin-bottom:20px;
}

.testimonial-card h4{
  color:#102a5c;
}

/* STATS */

.stats{
  padding:80px 8%;
  background:#102a5c;

  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;

  text-align:center;
}

.stat-box h2{
  color:white;
  font-size:58px;
  margin-bottom:10px;
}

.stat-box p{
  color:#d7d7d7;
  letter-spacing:1px;
}

/* INSTAGRAM */

.instagram-section{
  padding:100px 8%;
  text-align:center;
}

.instagram-section h3{
  font-size:54px;
  color:#102a5c;
  margin:15px 0 50px;
}

.instagram-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.instagram-grid img{
  height:320px;
  object-fit:cover;
  transition:0.4s;
}

.instagram-grid img:hover{
  transform:scale(1.03);
}

/* FLOATING CONTACT */

.floating-contact{
  position:fixed;
  bottom:30px;
  right:30px;

  width:65px;
  height:65px;

  background:#102a5c;
  color:white;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  text-decoration:none;

  font-size:28px;

  box-shadow:0 10px 30px rgba(0,0,0,0.2);

  z-index:999;

  transition:0.3s;
}

.floating-contact:hover{
  transform:translateY(-5px);
}

/* DARK LUXURY FOOTER */

.footer{
  background:#08162f;
  color:white;
  border:none;
}

.footer .footer-box p {
  color: #222;
}

.footer h2,
.footer h4{
  color:white;
}

.footer a{
  color:#d7d7d7;
}

.copyright{
  background:#050d1c;
}

/* RESPONSIVE */

@media(max-width:1000px){

  .testimonial-grid,
  .stats,
  .instagram-grid{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:700px){

  .testimonial-grid,
  .stats,
  .instagram-grid{
    grid-template-columns:1fr;
  }

  .testimonials h3,
  .instagram-section h3{
    font-size:42px;
  }

}
html{
  scroll-behavior:smooth;
}
/* style.css */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Montserrat', sans-serif;
  background:#f9f7f3;
  color:#1f1f1f;
}

h1,h2,h3,h4{
  font-family:'Cormorant Garamond', serif;
}

img{
  width:100%;
  display:block;
  border-radius:4px;
}

.navbar{
  width:100%;
  padding:25px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:white;
  border-bottom:1px solid #ddd;
}

.logo h1{
  color:#102a5c;
  font-size:38px;
}

.logo span{
  font-size:12px;
  letter-spacing:5px;
}

nav{
  display:flex;
  gap:30px;
}

nav a{
  text-decoration:none;
  color:#222;
  font-size:14px;
  font-weight:500;
}

.btn-outline{
  padding:12px 24px;
  border:1px solid #102a5c;
  background:transparent;
  color:#102a5c;
  cursor:pointer;
  font-weight:600;
}

.btn-primary{
  padding:14px 26px;
  background:#0d2c67;
  color:white;
  border:none;
  cursor:pointer;
  font-weight:600;
}

.hero{
  padding:80px 8%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.hero h2{
  font-size:72px;
  color:#102a5c;
  margin:20px 0;
  line-height:0.95;
}

.hero p{
  line-height:1.8;
  margin-bottom:25px;
}

.mini-text{
  color:#b09b61;
  letter-spacing:2px;
  font-size:12px;
  font-weight:600;
}

.about{
  padding:80px 8%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.about h3{
  font-size:52px;
  color:#102a5c;
  margin:15px 0;
}

.line{
  width:70px;
  height:2px;
  background:#b09b61;
  margin:20px 0;
}

.about p{
  margin-bottom:20px;
  line-height:1.8;
}

.services{
  padding:80px 8%;
  text-align:center;
}

.services h3{
  font-size:54px;
  color:#102a5c;
  margin-top:10px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:15px;
  margin-top:40px;
}

.service-card{
  background:white;
  border:1px solid #ddd;
  padding:30px 20px;
}

.service-card.active{
  background:#0d2c67;
  color:white;
}

.service-card h4{
  font-family:'Montserrat', sans-serif;
  font-size:14px;
}

.services-text{
  margin-top:30px;
  max-width:700px;
  margin-inline:auto;
  line-height:1.8;
}

.gallery{
  padding:80px 8% 40px 8%;
  text-align:center;
}

.gallery h3{
  font-size:54px;
  color:#102a5c;
  margin-top:10px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
  margin-top:40px;
}

.gallery-grid img{
  height:240px;
  object-fit:cover;
}

.center-btn{
  margin-top:35px;
}


.cta{
  margin:40px 8% 80px 8%;
  background:white;
  padding:50px;
  display:flex;
  align-items:center;
  border:1px solid #ddd;
  gap:40px;
}

.cta a, .cta button {
  margin-top: 0;
}

.cta a {
  margin-left: 40px;
}

.cta .btn-primary {
  margin-top: 0;
  min-width: 180px;
  font-size: 20px;
  padding: 18px 36px;
}

.cta h3{
  font-size:46px;
  color:#102a5c;
}

.cta p{
  margin-top:10px;
}

.footer{
  padding:70px 8%;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
  background:white;
  border-top:1px solid #ddd;
}

.footer h2{
  color:#102a5c;
  font-size:40px;
}

.footer h4{
  font-family:'Montserrat', sans-serif;
  margin-bottom:20px;
  color:#102a5c;
}

.footer p{
  line-height:1.8;
  margin-bottom:10px;
}

.footer a{
  display:block;
  margin-bottom:12px;
  text-decoration:none;
  color:#222;
}

.copyright{
  background:#0d2c67;
  color:white;
  text-align:center;
  padding:20px;
  font-size:14px;
}

@media(max-width:1000px){


  .hero,
  .about,
  .cta,
  .footer{
    grid-template-columns:1fr;
    flex-direction:column;
  }

  .cta{
    flex-direction:column;
    align-items:center;
    gap:30px;
  }
  .cta a {
    margin-left: 0;
    margin-top: 20px;
  }
  .cta .btn-primary {
    width: 100%;
    min-width: 0;
    font-size: 18px;
    padding: 16px 0;
  }

  .service-grid,
  .gallery-grid{
    grid-template-columns:1fr 1fr;
  }

  nav{
    display:none;
  }

  .hero h2{
    font-size:52px;
  }

  .about h3,
  .services h3,
  .gallery h3,
  .cta h3{
    font-size:40px;
  }
}
/* PAGE HERO */

.page-hero{
  padding:120px 8%;
  text-align:center;
  background:#f5f2eb;
}

.page-hero h2{
  font-size:68px;
  color:#102a5c;
  margin-bottom:20px;
}

.page-hero p{
  max-width:700px;
  margin:auto;
  line-height:1.8;
}

.about-page-text h3{
  font-size:54px;
  color:#102a5c;
  margin-bottom:20px;
  text-align:center;
}

.about-page-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 80px;
  gap: 18px;
}

.about-page-text p{
  margin-bottom:20px;
  line-height:1.9;
  max-width: 700px;
  text-align: center;
}

.mission-boxes{
  padding:0 8% 100px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px 30px;
  row-gap: 50px;
}

.mission-card{
  background:white;
  padding:48px 32px;
  border:1px solid #ddd;
  text-align:center;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.mission-card h4{
  font-size:26px;
  margin-bottom:15px;
  color:#102a5c;
}

.mission-card p{
  line-height:1.7;
}

@media(max-width:900px){

  .about-page{
    grid-template-columns:1fr;
  }

  .mission-boxes{
    grid-template-columns:1fr;
  }

  .page-hero h2{
    font-size:46px;
  }

}
/* SERVICES PAGE */

.services-page{
  padding:100px 8%;
}

.service-row{
  display:flex;
  align-items:center;
  gap:40px;
  padding:40px;
  border:1px solid #ddd;
  background:white;
  margin-bottom:25px;
}

.service-icon{
  font-size:42px;
  min-width:80px;
  text-align:center;
}

.service-content h3{
  font-size:42px;
  color:#102a5c;
  margin-bottom:15px;
}

.service-content p{
  line-height:1.9;
}

.services-cta{
  padding:100px 8%;
  text-align:center;
  background:#f5f2eb;
}

.services-cta h2{
  font-size:58px;
  color:#102a5c;
  margin-bottom:20px;
}

.services-cta p{
  margin-bottom:30px;
  line-height:1.8;
}

@media(max-width:900px){

  .service-row{
    flex-direction:column;
    text-align:center;
  }

  .services-cta h2{
    font-size:42px;
  }

}
/* GALLERY PAGE */

.gallery-filter-section{
  padding:100px 8%;
}

.filter-buttons{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:15px;
  margin-bottom:50px;
}

.filter-btn{
  padding:14px 28px;
  border:1px solid #d7d7d7;
  background:white;
  cursor:pointer;
  font-weight:600;
  transition:0.3s;
}

.filter-btn.active,
.filter-btn:hover{
  background:#0d2c67;
  color:white;
}

.gallery-page-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.gallery-item{
  overflow:hidden;
  transition:0.4s;
}

.gallery-item img{
  width:100%;
  height:320px;
  object-fit:cover;
  transition:0.4s;
}

.gallery-item:hover img{
  transform:scale(1.08);
}

.hide{
  display:none;
}

@media(max-width:1000px){

  .gallery-page-grid{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:700px){

  .gallery-page-grid{
    grid-template-columns:1fr;
  }

}
/* MOBILE NAVIGATION */

.hamburger{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.hamburger span{
  width:30px;
  height:3px;
  background:#102a5c;
  transition:0.3s;
}

.mobile-btn{
  display:none;
}

.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:white;
}

/* ACTIVE HAMBURGER */

.hamburger.active span:nth-child(1){
  transform:rotate(45deg) translateY(12px);
}

.hamburger.active span:nth-child(2){
  opacity:0;
}

.hamburger.active span:nth-child(3){
  transform:rotate(-45deg) translateY(-12px);
}

/* MOBILE MENU */

@media(max-width:1000px){

  .hamburger{
    display:flex;
  }

  .desktop-btn{
    display:none;
  }

  .mobile-btn{
    display:block;
    margin-top:20px;
    color:white !important;
    background:#0d2c67;
    padding:14px 20px;
    text-align:center;
  }

  .nav-menu{
    position:fixed;
    top:90px;
    right:-100%;
    width:100%;
    height:calc(100vh - 90px);
    background:#102a5c;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    gap:35px;

    transition:0.4s;
  }

  .nav-menu a{
    color:white;
    font-size:22px;
  }

  .nav-menu.active{
    right:0;
  }

}
/* SCROLL ANIMATIONS */

.reveal{
  opacity:0;
  transform:translateY(80px);
  transition:all 1s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* LUXURY HOVER EFFECTS */

.service-row,
.mission-card,
.gallery-item,
.cta,
.service-card{
  transition:0.4s ease;
}

.service-row:hover,
.mission-card:hover,
.cta:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* BUTTON EFFECTS */

.btn-primary,
.btn-outline{
  transition:0.3s ease;
}

.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(13,44,103,0.25);
}

.btn-outline:hover{
  background:#102a5c;
  color:white;
}

/* IMAGE OVERLAY EFFECT */

.gallery-item{
  position:relative;
}

.gallery-item::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.15);
  opacity:0;
  transition:0.4s;
}

.gallery-item:hover::after{
  opacity:1;
}
/* INQUIRY PAGE */

.inquiry-section{
  padding:100px 8%;
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:70px;
  align-items:start;
}

.inquiry-info h3{
  font-size:58px;
  color:#102a5c;
  margin:20px 0;
}

.inquiry-info p{
  line-height:1.9;
  margin-bottom:20px;
}

.inquiry-form{
  background:white;
  padding:50px;
  border:1px solid #ddd;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
}

.form-group{
  display:flex;
  flex-direction:column;
}

.form-group label{
  margin-bottom:10px;
  font-weight:600;
}

.form-group input,
.form-group select,
.form-group textarea{
  padding:16px;
  border:1px solid #d7d7d7;
  font-family:'Montserrat', sans-serif;
  font-size:15px;
  outline:none;
}

.form-group textarea{
  height:180px;
  resize:none;
}

.full-width{
  grid-column:1 / -1;
}

.submit-btn{
  width:fit-content;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:#102a5c;
}

@media(max-width:1000px){

  .inquiry-section{
    grid-template-columns:1fr;
  }

  .inquiry-form{
    grid-template-columns:1fr;
  }

  .inquiry-info h3{
    font-size:42px;
  }

}
/* LOADER */

.loader{
  position:fixed;
  inset:0;
  background:#08162f;

  display:flex;
  align-items:center;
  justify-content:center;

  z-index:99999;

  transition:1s ease;
}

.loader.hidden{
  opacity:0;
  visibility:hidden;
}

.loader-content{
  text-align:center;
  color:white;
}

.loader-content h1{
  font-size:72px;
}

.loader-content span{
  letter-spacing:8px;
}

/* HERO SLIDER */

.hero-slider{
  position:relative;
  width:100%;
  height:650px;
  overflow:hidden;
}

.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:1s ease;
}

.slide.active{
  opacity:1;
}

.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* LIGHTBOX */

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.9);

  display:flex;
  align-items:center;
  justify-content:center;

  opacity:0;
  visibility:hidden;

  transition:0.4s;

  z-index:9999;
}

.lightbox.active{
  opacity:1;
  visibility:visible;
}

.lightbox-image{
  width:80%;
  max-width:1000px;
  max-height:80vh;
  object-fit:cover;
}

.close-lightbox{
  position:absolute;
  top:30px;
  right:40px;

  color:white;
  font-size:50px;
  cursor:pointer;
}

/* FOUNDER PAGE */

.founder-section{
  padding:100px 8%;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.founder-image img{
  width:100%;
  max-width:360px;
  height:auto;
  border-radius:20px;
  object-fit:cover;
  box-shadow:0 20px 40px rgba(0,0,0,0.14);
}

.founder-content h3{
  font-size:58px;
  color:#102a5c;
  margin:20px 0;
}

.founder-content p{
  line-height:1.9;
  margin-bottom:20px;
}

/* CONTACT PAGE */

.contact-section{
  padding:100px 8%;

  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.contact-box{
  background:white;
  padding:50px;
  border:1px solid #ddd;
  text-align:center;
}

.contact-box h3{
  font-size:36px;
  color:#102a5c;
  margin-bottom:20px;
}

/* CUSTOM CURSOR */

.custom-cursor{
  width:20px;
  height:20px;

  border:2px solid #102a5c;
  border-radius:50%;

  position:fixed;
  transform:translate(-50%, -50%);

  pointer-events:none;

  z-index:999999;

  transition:transform 0.15s ease;
}

/* RESPONSIVE */

@media(max-width:1000px){

  .founder-section,
  .contact-section{
    grid-template-columns:1fr;
  }

  .hero-slider{
    height:450px;
  }

}
/* FOUNDER VALUES */

.founder-values{
  padding:100px 8%;
  text-align:center;
}

.founder-values h3{
  font-size:58px;
  color:#102a5c;
  margin:15px 0 50px;
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.value-card{
  background:white;
  padding:45px;
  border:1px solid #ddd;
  transition:0.4s;
}

.value-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.value-card h4{
  font-size:30px;
  color:#102a5c;
  margin-bottom:15px;
}

.value-card p{
  line-height:1.8;
}

/* FOUNDER QUOTE */

.founder-quote{
  padding:0 8% 100px;
}

.quote-box{
  background:#102a5c;
  padding:80px;
  text-align:center;
}

.quote-box h2{
  color:white;
  font-size:52px;
  line-height:1.4;
  margin-bottom:25px;
}

.quote-box p{
  color:#d7d7d7;
  letter-spacing:2px;
}

/* CONTACT EXTRA */

.contact-extra{
  padding:80px 8% 80px;
  display:flex;
  flex-direction:row;
  gap:40px;
  align-items:stretch;
  max-width:1200px;
  margin:80px auto;
}

.contact-extra-content{
  background:white;
  padding:40px 32px;
  border:1px solid #ddd;
  min-width:0;
  box-sizing:border-box;
  border-radius:16px;
  box-shadow:0 4px 24px rgba(0,0,0,0.04);
  flex:1 1 0;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height: 420px;
}

.contact-extra-content h3{
  font-size:58px;
  color:#102a5c;
  margin:20px 0;
}

.contact-extra-content p{
  line-height:1.9;
  margin-bottom:30px;
}

.contact-hours{
  background:#102a5c;
  color:white;
  padding:40px 32px;
  min-width:0;
  box-sizing:border-box;
  border-radius:16px;
  box-shadow:0 4px 24px rgba(0,0,0,0.04);
  flex:1 1 0;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height: 420px;
}

.contact-hours h4{
  font-size:36px;
  margin-bottom:20px;
}

.hours-row{
  display:flex;
  justify-content:space-between;
  margin-bottom:18px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(255,255,255,0.15);
  text-align:center;
}
.hours-row:first-of-type {
  margin-top:30px;
}

/* RESPONSIVE */

@media(max-width:1000px){

  .values-grid,
  .contact-extra{
    flex-direction:column;
    gap:30px;
    max-width:98vw;
    margin:40px auto;
    display:flex;
  }
  .contact-extra-content,
  .contact-hours{
    padding:28px 10px;
    min-height:unset;
  }

  .founder-values h3,
  .contact-extra-content h3{
    font-size:42px;
  }

  .quote-box h2{
    font-size:36px;
  }

}