@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&display=swap');


* { box-sizing: border-box; margin: 0; padding: 0; }
body 
{ 
  
  /* min-height: 1000px; */
  font-family: 'Geologica', sans-serif; color: #fff; line-height: 1.5; background: #ffffff; 
}



.container
{ 
  width: 90%; max-width: 1200px; margin: 0 auto; 
}

#header
{
  position:fixed;
  top:0;left:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:40px 100px;
  z-index:1000;
  transition:padding .3s, background .3s, box-shadow .3s;
  background:transparent;
}

#header.sticky
{
  padding:5px 100px;
  background:#fff;
  box-shadow:0 1px 4px rgba(255, 0, 0, 0.08);
}

#header.sticky .logo
{
  color: #944c70;
}
#header.sticky .nav-list li a
{
  color:#000;
}
#header.sticky .submenu 
{
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
#header.sticky .submenu a 
{
  color: #000;
}


#header .logo
{
  font-weight:700;
  color:#fff;
  text-decoration:none;
  font-size:2em;
  letter-spacing:2px;
  transition:color .3s;
}


#header .nav-list
{
  position:static;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:0;
  margin:0;
  padding:0;
  list-style:none;
  visibility:visible;
  opacity:1;
  max-height:none;
  background:none;
}

#header .nav-list li
{
  position: relative;
  list-style:none;
  margin:0;
  padding:0;
}

#header .nav-list li a
{
  margin:0 15px;
  text-decoration:none;
  color:#fff;
  letter-spacing:2px;
  font-weight:300;
  transition:color .3s;
  display:inline-block;
  padding:.25rem 0;
}
#header .toggle
{
  display:none
}

#header .submenu 
{
  background: rgba(15, 14, 14, 0.1);
  box-shadow: none;
}

.submenu
{
  text-align: center;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: none;
  min-width: 12rem;
  z-index: 10;
}
.submenu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #002d3d;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}
.submenu li a:hover {
  background: #f0f0f0;
}

@media (hover: hover) 
{
  .has-submenu:hover > .submenu 
  {
    display: block;
  }
}

.has-submenu.open > .submenu {
  display: block;
}

.submenu-toggle .arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1);
  vertical-align: middle;
}
.has-submenu.open .submenu-toggle .arrow {
  transform: rotate(180deg);
}

#header.sticky .submenu-toggle .arrow svg polyline {
  color: #000;
  }
  #header:not(.sticky) .submenu-toggle .arrow svg polyline {
    color: #fff;
  }


/*======= VIDEO BANNER =======*/
.banner
{
  position: relative;
  width: 100%;
  min-height: 90vh;
  background: url(/images/IMG_5623_20.jpg);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner h2
{
  color: #fff;
  font-size: 40px;
  text-align: center;
}



/* --------- about --------- */

.about-us-start 
{
  background: #ffffff8f;
  padding: 5rem 0;
  color: #000000;
}

.about-us-start-grid
{
  max-width: 1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 2fr 500px;         
  grid-template-areas:
    "copy  card"
    "image card";                          
  gap: 1rem 3rem;
}
.about-us-start-copy   
{ 
  grid-area: copy; 
}
.about-us-start-image  
{ 
  grid-area: image; 
}
.about-us-start-pop
{ 
  grid-area: card; 
}

.about-us-start-copy h2 
{
  font-size: clamp(2.3rem, 5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.75rem;
}
.about-us-start-copy .accent 
{ 
  color: #22c0f3; 
}
.about-us-start-copy p 
{
  color: #000;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.about-us-start-image
{
  position: relative;
}
.about-us-start-image img 
{
  width: 100%;
  border-radius: 0rem 0rem 0rem 3rem;
  display: block;
}
.about-us-start-pop
{
  background:#944c70;
  color:#fff;
  border-radius: 0rem 3rem 0rem 3rem;
  padding:2.5rem 2rem;
  display:flex;
  flex-direction:column;
  gap:1.5rem;
  align-self:start;
}
.about-us-start-pop-img
{
  width: 100%;
  border-radius: 1rem;
  display: block;
}


/*about us*/
.profile-container
{
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.profile-section {
  padding: 50px;
  background: #f6f8f7;
  color: #000000;
}

.profile-container::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: calc(300px + 2rem);
  right: 0;
  height: 2px;
  background: #000000;
}

.profile-bio {
  position: relative;
  flex: 1 1 400px;
  padding-top: 1.5rem;
}

.profile-image {
  flex: 0 0 300px;
}
.profile-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.triangle-deco {
  position: absolute;
  top: -0,5rem;
  left: 0;
  width: 40px; height: 40px;
  background-image: radial-gradient(#000000 1px, transparent 1px);
  background-size: 4px 4px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.profile-bio h2 {
  color: #944c70;
  margin: 3rem 0;
  font-size: 2rem;
}
.profile-bio h3 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
}
.profile-bio p {
  line-height: 1.6;
  margin-bottom: 2rem;
}

.profile-details {
  flex: 0 0 300px;
}
.profile-details h4 {
  padding-top: 3rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}
.profile-details ul {
  list-style: disc inside;
  margin-bottom: 1.5rem;
}
.profile-details ul:last-of-type {
  margin-bottom: 0;
}
.profile-card 
{
  position: relative;
  display: inline-block;      
  border-radius: 1rem;        
  overflow: hidden;         
}


.profile-card::before
{
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 0;
  background: #944c702f;
  transition: height 0.4s ease-out;
  z-index: 1;
}
.profile-card:hover::before {
  height: 100%;
}

.overlay-icons {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 1rem;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
}
.profile-card:hover .overlay-icons {
  opacity: 1;
}
.overlay-icons img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.profile-banner
{
  position: absolute;
  bottom: 0;
  max-width: 300px;
  left: 0;
  right: 0;
  transform:  translateY(-50%);
  background: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  white-space: nowrap; 
  z-index: 3;
  color: #002d3d;
  font-size: 1rem;
  line-height: 1.2;
}


/*second doc*/
.profile-container2 
{
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}


.profile-section2 {
  padding: 50px;
  background: #f6f8f7;
  color: #000000;
}

.profile-container2::before 
{
  content: "";
  position: absolute;
  top: 0.7rem;
  left: calc(300px + 2rem);
  right: 0;
  height: 2px;
  background: #000000;
}
.triangle-deco2
{
  position: absolute;
  top: -0,5rem;
  left: 0;
  width: 40px; height: 40px;
  background-image: radial-gradient(#000000 1px, transparent 1px);
  background-size: 4px 4px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.profile-bio2 {
  position: relative;
  flex: 1 1 400px;
  padding-top: 1.5rem;
}

.profile-image2 {
  flex: 0 0 300px;
}
.profile-image2 img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}


.profile-bio2 h2 {
  color: #3d2672;
  margin: 3rem 0;
  font-size: 2rem;
}
.profile-bio2 h3 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
}
.profile-bio2 p {
  line-height: 1.6;
  margin-bottom: 2rem;
}

.profile-details2 {
  flex: 0 0 300px;
}
.profile-details2 h4 {
  padding-top: 3rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}
.profile-details2 ul {
  list-style: disc inside;
  margin-bottom: 1.5rem;
}
.profile-details2 ul:last-of-type 
{
  margin-bottom: 0;
}

.profile-card2
{
  position: relative;
  display: inline-block; 
  border-radius: 1rem;       
  overflow: hidden;          
}

.profile-card2::before 
{
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 0;
  background: #3d267221;
  transition: height 0.4s ease-out;
  z-index: 1;
}
.profile-card2:hover::before 
{
  height: 100%;
}

.overlay-icons2 
{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 1rem;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
}
.profile-card2:hover .overlay-icons2 
{
  opacity: 1;
}
.overlay-icons2 img 
{
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.profile-banner2
{
  position: absolute;
  bottom: 0;
  max-width: 300px;
  left: 0;
  right: 0;
  transform:  translateY(-50%);
  background: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  white-space: nowrap; 
  color: #002d3d;
  font-size: 1rem;
  line-height: 1.2;
  z-index: 3;
}

/* ^^^^^ about ^^^^^^^^^ */

/*way of work*/
.work-flow{
  background:#f6f8f7;
  padding:5rem 1rem;
  text-align:center;
}

.work-intro h5
{
  font-size:clamp(1rem,4vw,2rem);
  color:#22c0f3;
  margin-bottom:1.5rem;
}
.work-intro h2
{
  color:#615d5d;
  font-size:clamp(1.9rem,4vw,3rem);
  margin-bottom:4rem;
}

.work-grid
{
  display:flex;                 
  gap:3rem;                     
  overflow-x:auto;               
  scroll-snap-type:x mandatory; 
  justify-content: center;
  padding-bottom:1rem;      
}

.work-grid h3
{
  color: #22c0f3;
  margin:2rem 0 1rem;
  font-size:1.25rem;
}

.work-card
{
  scroll-snap-align:center;
  min-width:280px;
  max-width:320px
}

.work-card
{
  position:relative;
  padding:0 1rem;
  display:flex;
  flex-direction:column;
  align-items:center;
  min-height:420px;
}
.icon-btn
{
  border:none;
  background:#a8a6a3;
  width:110px;
  height:110px;
  border-radius:50%;
  display:grid;
  place-items:center;
  cursor:pointer;
  transition:background .3s,transform .3s;
}
.icon-btn img
{
  width:42px;
  height:42px;
  filter: brightness(0) invert(1);
}
.icon-btn:hover
{
  background:#d3c8be;
}
.text-wrapper
{
  overflow:hidden;
  max-height:0;
  width:100%;
  transition:max-height .45s ease;
}
.text-wrapper p
{
  opacity:0;
  transform:translateY(-12px);
  transition:opacity .45s ease,transform .45s ease;
  font-size:.95rem;
  line-height:1.6;
  color:#000000;
  margin:0 auto;max-width:35ch
}
.work-card.open .text-wrapper
{
  max-height:250px;
}
.work-card.open .text-wrapper p
{
  opacity:1;
  transform:none;
}


/* hours*/

.split-section {
  display: flex;
  min-height: 500px;
  width: 100%;
  background: #ffffff;
}

.split-content 
{
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4vw 4rem 8vw;
  color: #fff;
  background: transparent;
}

.split-content .subheading 
{
  color: #22c0f3;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: block;
}

.split-content .divider
{
  width: 3rem;
  height: 3px;
  background: #222;
  margin-bottom: 2rem;
}

.split-content h2 
{
  font-size: 2.7rem;
  line-height: 1.15;
  margin: 0 0 1.2rem 0;
  color: #8d8c8c;
  font-weight: bold;
  text-shadow: 0 6px 9px #2222;
}

.split-content p 
{
  color: #000000;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.hours-list
{
  list-style: none;
  padding: 0;
  margin: 0;
  color: #585858;
}

.hours-list li 
{
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  border-bottom: 1px solid #00000022;
  padding: 1rem 0;
  font-size: 1.08rem;
}
.hours-list li:last-child 
{ 
  border-bottom: none; 
}

.split-image 
{
  flex: 1 1 50%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 480px;

  transition: opacity 0.8s ease-in-out;
}


/*gallery*/

.gallery-section 
{
  background: #ffffff;
  padding: 80px 0 40px 0;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-header
{
  text-align: center;
  margin-bottom: 1.5rem;
}

.gallery-subtitle 
{
  display: block;
  color: #944c70;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.gallery-title 
{
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  margin: 0 0 1.5rem 0;
  color: #111;
}
.gallery-title em {
  font-style: italic;
}

.gallery-grid 
{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.6rem;
  max-width: 1700px;
  margin: 0 auto;
}

.gallery-item 
{
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

.gallery-item img 
{
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  border-radius: 0.3rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  background: #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}
.gallery-item:hover img,
.gallery-item:focus img {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.gallery-item:active img {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.gallery-caption {
  color: #944c70;
  font-size: 1rem;
  text-align: center;
  margin-top: 1rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
}









/* fade-in */
.fade-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}
.fade-item.visible {
  opacity: 1;
  transform: translateY(0);
}


/*=== FOOTER ===*/
.site-footer {
  background: #deebe4;
  color: #000000;
  font-size: 0. ninerem;
  line-height: 1.5;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 1rem;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-brand .footer-logo {
  margin-left: -76px;
  border-radius: 10px;
  width: 250px;
}
.footer-brand h4 {
  font-size: 1.1rem;
}
.social-icons a {
  display: inline-block;
  margin-right: 0.75rem;
}
.social-icons img {
  width: 24px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #944c70;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.footer-contact .icon {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  fill: #000000;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li,
.footer-services li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #000000;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #66dbff;
}

.footer-copyright
{
  border-top: 1px solid rgb(110, 83, 83);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.footer-copyright a {
  color: #ffd966;
  text-decoration: none;
}
.icon {
  width: 20px;
  height: auto;
}


/* === Fade-in animation === */
.fade-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.fly-in-left {
  opacity: 0;
  transform: translateX(-300px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fly-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}


@media (max-width: 800px) 
{
  #primaryNav { 
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s, visibility .3s;
  }
  header.active #primaryNav {
    visibility: visible;
    opacity: 1;
  }
  .submenu-toggle::after {
    float: right;
    transition: transform .3s;
  }
  #header .submenu 
  {
    background: #22bff300;
    box-shadow: none;
  }
  .has-submenu.open .submenu-toggle::after {
    transform: rotate(180deg);
  }
  .has-submenu {
    width: 100%;
  }
  .submenu {
    position: static;
    display: none;       
    width: 100%;
    background: #615e5e;
    box-shadow: none;
    margin: 0; padding: 0;
  }
  .has-submenu.open > .submenu {
    display: block;
  }
  .submenu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    background-color: #22bff350;
    color: #fff;
    font-weight: 400;
  }
  .submenu li:first-child a {
    border-top: none;
  }
  #header,
  #header.sticky
  {
    padding:.75rem 1.25rem;
    background:#fff;
    box-shadow:0 1px 4px rgba(0,0,0,.1);
  }

  #header .logo
  {
    color:#000;
    font-size:1.75rem;
  }

  #header .toggle
  {
    display:block;
    position:relative;
    width:32px;
    height:22px;
    cursor:pointer;
    border:none;
    background:none;
    padding:0;
  }
  #header .toggle::before,
  #header .toggle::after,
  #header .toggle span
  {
    content:"";
    position:absolute;
    left:0;
    width:100%;
    height:2px;
    background:#000;
    transition:transform .3s, opacity .3s;
  }
  #header .toggle::before
  {
    top:0;
  }
  #header .toggle::after
  {
    bottom:0;
  }
  #header .toggle span
  {
    top:10px;
  } 

  #header.active .toggle::before
  {
    transform:translateY(10px) rotate(45deg);
  }
  #header.active .toggle::after
  {
    transform:translateY(-10px) rotate(-45deg);
  }
  #header.active .toggle span
  {
    opacity:0;
  }

  #header .nav-list
  {
    position:absolute;
    top:100%;left:0;
    width:100%;
    margin:0;
    padding:0;
    list-style:none;
    background:#fff;
    visibility:hidden;
    opacity:0;
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease, opacity .25s ease, visibility 0s linear .25s;
    display:block;
    text-align:center;
  }

  #header.active .nav-list
  {
    visibility:visible;
    opacity:1;
    max-height:calc(100vh - var(--hdrH,60px));
    transition:max-height .35s ease, opacity .25s ease;
  }

  #header .nav-list li
  {
    margin:0;
    border-bottom:1px solid rgba(0,0,0,.08);
  }
  #header .nav-list li:last-child
  {
    border-bottom:none;
  }

  #header .nav-list li a{
    display:block;
    padding:1rem 0;
    margin:0;
    font-size:1.25rem;
    color:#000;
    letter-spacing:1px;
    font-weight:500;
  }
  #header.sticky .submenu-toggle .arrow svg polyline 
  {
  color: #000
  }
  #header:not(.sticky) .submenu-toggle .arrow svg polyline 
  {
    color: #000;
  }

  .banner
  {
    margin-top: 60px;
    background-position: center;
    width: 100%;
    min-height: 48vh;
    background-size: 155%;

  }
  .banner h2
  {
    font-size: 30px;
    padding: 0 50px;
  }

  .profile-container
  {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .profile-bio .triangle-deco 
  {
    display: none;
  }

  .profile-bio h2
  {
    margin-top: -20px;
    margin-bottom: 20px;
  }
  .profile-bio p 
  {
    margin-bottom: -20px;
  }
  .profile-details ul 
  {
    margin-bottom: 0px;
    padding-left: 0;
    list-style: none;
  }
  .profile-details li::before 
  {
    content: '•';
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    color: #fff;
  }

  .profile-container2
  {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .profile-bio2 .triangle-deco2
  {
    display: none;
  }

  .profile-bio2 h2
  {
    margin-top: -20px;
    margin-bottom: 20px;
  }
  .profile-bio2 p 
  {
    margin-bottom: -20px;
  }
  .profile-details2 ul 
  {
    margin-bottom: 0px;
    padding-left: 0;
    list-style: none;
  }
  .profile-details2 li::before 
  {
    content: '•';
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    color: #fff;
  }

  .work-flow h5
  {
    font-size: 2.4rem;
  }
  .work-flow h2
  {
    margin-top: 50px;
    font-size: 1.2rem;
  }

  .work-card
  {
    margin-bottom: -100px;
  }




  .services-overview-container
  {
    gap: 0rem;
  }
  .services-overview-image {
    transform: translateY(0);
  }
  .services-overview-copy h2
  {
    padding: 0.5rem;
  }
  .services-overview-copy p 
  {
    max-width: none;
    padding: 1rem;
  }

  .services-overview-image 
  {
    padding: 1rem;
  }
  .card-img
  {
    width: 100%;
  }
  .footer-container 
  {
    flex-direction: column;
    text-align: center;
  }
  .footer-col {
    flex: 1 1 100%;
  }
  .footer-contact li,
  .footer-links li,
  .footer-services li {
    justify-content: center;
  }

  .work-grid
  {
    flex-direction:column;
    overflow-x:visible;
    gap:3rem;
  }
  .work-card
  {
    max-width:none;
  }
  .split-section 
  {
    flex-direction: column;
    min-height: 600px;
  }
  .split-content, .split-image {
    flex: none;
    width: 100%;
    min-height: 200px;
    padding: 2rem 7vw;
  }
  .split-content 
  { 
    order: 2; 
  }
  .hours-list li
  { 
    font-size: 0.8rem;
  }
  .split-content .straight
  { 
    display: none;
  }
  .split-content h2
  { 
   font-size: 2.4rem;
  }
  .split-image 
  { 
    order: 1;
    min-height: 250px; 
  }
  .gallery-title 
  { 
    font-size: 2rem; 
  }
  .gallery-grid 
  {
    max-width: 90%;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-us-start-grid 
  {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "image"
      "card";
    gap: 1.5rem;
  }

  .about-us-start-copy 
  {
    grid-area: copy;
    padding: 0 1rem;
  }
  .about-us-start-image 
  {
    grid-area: image;
    padding: 0 1rem;
  }
  .about-us-start-pop 
  {
    grid-area: card;
    padding: 1.5rem;
    margin: 0 1rem;
  }
  .about-us-start-image img
  {
    width: 100%;
    border-radius: 1rem;
  }
  .footer-brand .footer-logo 
  {
  margin-left: 0px;
  }
}
