@charset "utf-8";

@font-face {
	font-family: 'Avenir';
	src: url("../fonts/AvenirLTProLight.otf") format("opentype");
	font-style: normal;
	font-weight: normal;
	font-display: fallback;
}
@font-face {
	font-family: 'Avenir';
	src: url("../fonts/AvenirLTProHeavy.otf") format("opentype");
	font-style: bold;
	font-weight: 900;
	font-display: fallback;
}
@font-face {
  font-family: 'Signifier';
  src: url("../fonts/TestSignifier-Light.otf") format("opentype");
	font-style: normal;
	font-weight: normal;
	font-display: fallback;
}
@font-face {
  font-family: 'Signifier';
  src: url("../fonts/TestSignifier-LightItalic.otf") format("opentype");
	font-style: italic;
	font-weight: normal;
	font-display: fallback;
}
@font-face {
  font-family: 'Urbanist';
  src: url("../fonts/Urbanist-Italic-VariableFont_wght.ttf") format("truetype");
	font-style: italic;
	font-weight: normal;
	font-display: fallback;
}
@font-face {
  font-family: 'Urbanist';
  src: url("../fonts/Urbanist-Light.ttf") format("truetype");
	font-style: normal;
	font-weight: 300;
	font-display: fallback;
}
@font-face {
  font-family: 'Heavitas';
  src: url("../fonts/Heavitas.ttf") format("opentype");
	font-style: normal;
	font-weight: bold;
	font-display: fallback;
}
@font-face {
  font-family: 'Romelio';
  src: url("../fonts/Romelio.otf") format("opentype");
	font-style: normal;
	font-weight: normal;
	font-display: fallback;
}

/**** Global CSS ****/

:root {
	--logo-letters-bluegreen: rgb(56,100,113);
	--logo-letters-grey: rgb(158,158,158);
	--grad-bluegreen-lgt: rgb(125,191,205);
	--grad-bluegreen-drk: rgb(56,108,119);
	--grad-grey-lgt: rgb(208,208,208);
	--grad-grey-drk: rgb(118, 154, 168);
	--text-menu-bar-yellow: rgb(255,246,211);
	--text-menu-scroll-grey: rgba(150,150,150,1);
  --text-h1-h2-titles: rgba(60,60,60,1);
  --text-h1-h2-titles-lighter: rgba(80,80,80,1);
	--navbar-blue: rgb(0,0,61);
	--pure-white: rgb(255,255,255);
  --bullet-orange: rgba(255,97,0,1);
}

body, html {
    scroll-behavior: smooth;
    height: auto;        /* ← change from 100vh to auto */
    min-height: 100vh;   /* keeps full height when content is short */
    margin: 0;
    box-sizing: border-box;
    font: 300 18px/1.8 "Avenir", sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--pure-white);
}
body {
  display: flex;
  flex-direction: column;
}
section {
	width: 100vw;
}
hr.thin {
  height: 6px;
  width: 65%;
  margin: auto auto;
  border: none;
  border-radius: 4px;
  background: #e9e7e7;
  margin-top: 100px;
}
div.page-container {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	width: 100%;
	margin: 0;
}
.content-wrap {
	flex: 1;
	width: 100%;
}
span.bolded {
  font-style: bold;
  font-weight: 900;
}


/**************** Nav-menu (DEFAULT NAV BAR) ********/
/* header {
	display: inline; 
} */
nav {
  width: 100vw;
}
.navbar a i.fas {
  font-size: 25px;
  color: rgb(240, 240, 225);
  transition: color 0.1s ease;
}
.navbar a i.fas:hover {
  color: yellow;
}
/*************** Dropdown menu ******/
 /* Navbar container */
 #navbar-container {
	height: 150px;
	position: relative;
	z-index: 102;
 }
.navbar {
	display: flex;
	width: 100%;
	background-color: rgba(255,255,255,0);
	font-family: 'Century Gothic';
	height: 130px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	flex-direction: row;
	justify-content: right;
	align-items: center;
	z-index: 102;
	border-bottom: 2px solid rgba(224, 253, 253,0);
  	box-shadow: 0 5px 20px 7px rgba(80,80,80,0.0);
	transition: height 0.4s ease, padding 0.4s ease, background-color 0.5s ease-in-out;
}
body#services-page-content .navbar,
body#recent-work-page-content .navbar,
body#contact-us-page-content .navbar {
  background-color: rgba(0,0,0,0.06);
}
 .navbar.nav-menu-alt {
  background-color: white;
}
/* Links inside the navbar */
.navbar a {
  float: left;
  color: white;
  text-align: center;
  padding: 10px 6px;
  text-decoration: none;
  font-size: 1.2em;
  text-shadow: 0 0 1px rgba(80,80,80,1);
  transition: all 0.1s ease-in-out;
}
body#services-page-content .navbar a,
body#recent-work-page-content .navbar a,
body#contact-us-page-content .navbar a
 {
  text-shadow: 0 0 1px rgba(80,80,80,0.3);
}
.navbar a.btn.secondary {
  padding: 10px 20px;
}
.logo {
	position: absolute;
	top: 25px;
	left: 50px;
	z-index:103;
	margin-bottom: 10px;
	width: 405px;
	/* box-shadow: 1px 3px 5px rgba(30,30,30,0.8); */
	transition: all 0.4s ease-in-out;
}
body.at-top .logo {
    top: 100px;
}
.logo-nav-2 {
  width:85px;
  margin-top: 10px;
}
.logo img,
.logo-nav-2 img {
	width: 100%;
	z-index: 103;
}
.shrink {
	width: 300px;
	position: fixed;
	top: 15px;
	left: 25px;
}
.shrink-navbar,
body#services-page-content .shrink-navbar,
body#recent-work-page-content .shrink-navbar,
body#contact-us-page-content .shrink-navbar {
	top: 0;
	height: 90px;
	background-color: rgba(255,255,255,1);
	border-bottom: 2px solid rgba(224, 253, 253,1);
  box-shadow: 0 5px 20px 7px rgba(80,80,80,0.5);
}
.shrink-nav-text {
	font-size: 12px;
}
.fade-out {
  opacity: 0;
  pointer-events: none; /* Prevents interaction */
}
.small-logo {
  z-index: 104;
  position: fixed;
  top: 10px;
  left: 10px;
  width: 55vw; /* Adjust as needed */
  opacity: 0;
  margin-top: 16px;
  margin-left: 50px;
  transition: opacity 0.3s ease-in-out;
}
.show {
  opacity: 1;
  z-index: 20;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 45px;
  margin-right:12vw;
}
.nav-links .dropdown {
	display: inline;
}
#nav-links .dropdown .dropbtn {
	text-decoration: none;
	color: var(--text-menu-bar-yellow);
}
/* adjust navbar colors for SERVICES and RECENT WORK pages */
body#services-page-content #nav-links .dropdown .dropbtn,
body#recent-work-page-content #nav-links .dropdown .dropbtn,
body#contact-us-page-content #nav-links .dropdown .dropbtn {
  text-decoration: none;
  color: var(--grad-bluegreen-drk);
}
#nav-links .dropdown .dropbtn.color-navbar-text {
  color: var(--grad-bluegreen-drk);
	text-shadow: 0 0 0 rgba(255,255,255,0);
}

/* Hide the menu toggle button on large screens */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  padding: 0 20px;
  min-width: 44px; /* Apple's recommended touch target */
  min-height: 44px;
  z-index:120;
  transition: all 0.2s ease-in-out;
}
.menu-toggle:hover, 
.menu-toggle:focus-within,
.menu-toggle:active {
	color: red;
}
.shrink-navbar #menu-toggle {
  max-height: 90px;
  margin: -1em 0;
}
.hamb-color {
	color: var(--text-menu-scroll-grey);
}
/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
  font-family: 'Heavitas';
}
/* Dropdown button */
.dropdown .dropbtn {
  border: none;
  border-radius: 1px;
  outline: none;
  /* text-shadow: 0 0 3px black; */
  padding: 2px 15px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
/*  background-color: transparent;*/
  transition: all 0.3s ease-in-out;
}
/* Add a red background color to navbar links on hover */
.dropdown:hover .dropbtn,
.dropdown:focus-within .dropbtn,
.dropdown:active .dropbtn {
  background-color: var(--baby-blue-cfc);
}
.navbar .dropbtn a:hover,
.navbar .dropbtn a:focus-within,
.navbar .dropbtn a:active {
	color: rgb(248, 223, 154);
}
/* Dropdown content (hidden by default) */
.dropdown .dropdown-content {
  visibility: hidden;
  position: absolute;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 10;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:active .dropdown-content {
	visibility: visible;
	background-color: white;
}
/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  transition: background-color 650ms ease;
}
/* grey to white on hover of dropdown items */
.dropdown-content a:hover {
  background-color: #ddd;
}
.dropdown-content a:active {
	background-color: white;
}
.navbar .nav-links .dropdown button:first-child {
	border-left: 2px solid grey;
}	
.navbar .dropbtn a {
  font-family: 'Heavitas';
  color: var(--text-light-orange);
}
.cta-buttons  {
  right: 50px;
  position: absolute;
}
.navbar .cta-buttons ul:nth-child(n+2) li {
  border:1px solid rgb(246,179,0);
  border-radius: 5px;
}
.navbar .cta-buttons .search-icon li {
  border: none;
}
.menu .btn{
  background-color: rgb(1, 170, 248);
  transition: 0.2s all ease-in-out;
}
.menu .btn:hover {
  background-color: rgb(252, 182, 51);
}
.btn-slide {
    padding: 15px 30px;
    font-size: 18px;
    color: white;
    border: 2px solid #00ffcc;
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .btn-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #00ffcc;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: -1;
  }
  .btn-slide:hover::before {
    transform: translateX(0);
  }
  .btn-slide:hover {
    color: black;
  }

/*************** HOMEPAGE ************/
  .card-sheen {
    background: rgba(251,251,251,1);
    border-radius: 2px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),
      /*top glow*/ 0 4px 6px rgba(0, 0, 0, 0.12); /*bottom-drop*/
    transition: 0.2s ease;
  }
  /* add hover effect */
  .card-sheen:hover {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),
      0 10px 20px rgba(0, 0, 0, 0.16);
    transform: translateY(-2px);
  }
  #front-page-2 {
    position: relative;
  }
  #front-page-2::before {
    content: "";
    position: absolute;
    inset: 0;
    margin-top:-9px;
    background-image: 
      linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1)), 
      url('assets/images/textures/beige-textured-background-03.png');
    background-size: 100% auto;
    background-position: center top;
    background-attachment: scroll;
    background-repeat: repeat-y;
    height: 1000px;
    filter: opacity(46%);
    z-index: 0;
  }
  #cta-breakout {
    position: relative;
    padding: 50px;
    z-index: 1;
    flex-direction: column;
    top: 50px;
    left: 50%;
    width: 1000px;
    transform: translateX(-50%);
    text-align: center;
    background-color: white;
    border-radius: 2px 2px 0 0;
    transition: all 0.2s ease-in-out;
    transition: top 1s ease-in-out;
  } 
  #cta-breakout .breakout-membrane {
    padding: 0 100px;
  }
  #cta-breakout figcaption {
    display: block;
    width: 80%;
    margin: 0 auto;
    font-size: var(--size-l);
    padding-top: 24px;
  }
  #cta-breakout figcaption.fig-mobile {
    display: none;
  }
  #cta-breakout .cta-phrase {
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  #cta-breakout figure img {
    width: 60%;
    border-radius: 3px;
    box-shadow: 3px 8px 10px 4px rgba(200,200,200,1);
  }
  #cta-breakout.unfix-position {
    top: -150px;
  }
  #cta-breakout .cta-phrase h1 {
    text-align: center;
    margin: 0;
    font-family: 'Romelio';
    text-shadow: none;
    font-size: 2.4rem;
    font-family: 'Romelio';
    color: var(--text-h1-h2-titles-lighter);
  }   
  #cta-breakout .cta-phrase span {
    font-size: 1.3rem;
    color: var(--grad-bluegreen-lgt);
    vertical-align: middle;
  }
  #cta-breakout .cta-phrase h2 {
    font-size: 2.1rem;
    text-align: center;
    color: var(--grad-grey-drk);
    margin: 25px 35px;
    padding: 0 7%;
    font-family: 'Romelio';
  }
  #cta-breakout picture img {
    border: solid 1px rgba(100,100,100,0.1);
  }
  .cta-phrase-subtext {
    display: block;
    margin: 20px 20% 30px;
  }
  .cta-phrase-subtext p {
    font-size: 1.2rem;
  }
  /*******.     Slideshows ********/
  #slide-test {
    position: relative;
    top: 0;
    width: 100vw;
    margin-top: -150px;
  }
  #slide-test,
  #slide-test-interior,
  #slide-test-exterior,
  #slide-test-cabinetry,
  #slide-test-wood-staining {
      height: 100%;
  }
  .part-one-slideshow-container {
    max-width: 100vw;
    position: sticky;
    margin: auto;
    width: 100vw;
  }
  .slideshow-container-interior-painting,
  .slideshow-container-exterior-painting,
  .slideshow-container-cabinetry-refinishing,
  .slideshow-container-wood-staining {
      /* max-width: 100vw; */
      position: relative;
      display: flex; /* flex with flex-direction: column, or inline-block */
      flex-direction: column;
      width: 100%;
  }
  /* Hide the images by default */
  .mySlides {
    display: none;
  }
  .mySlides img {
      border-radius: 2px;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),-4px 6px 15px rgb(200, 200, 200);
      transition: all 0.2s ease;
  }
  .mySlides img:hover {
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),-3px 4px 11px rgb(170,170,170);
  }
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 28px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }

  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }

  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }

  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 20px;
    padding: 8px 12px;
    /*  position: absolute;*/
    bottom: 8px;
    width: 100%;
    text-align: center;
    margin-top: -45px;
    display: none;
  }

  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    display: none;
  }

  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;padding:0 10%;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .active,
  .dot:hover {
    background-color: var(--pure-white);
  }

  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 2.5s;
  }

  @keyframes fade {
    from {
      opacity: 0.2;
    }
    to {
      opacity: 1;
    }
  }
  /* Horizontal Rule (Line Break) */
  hr {
    height: 6px;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 16px;
    border: none;
    border-radius: 4px;
    background: #e9e7e7;
  }
  hr.gradient {
    background: linear-gradient(148deg, rgb(242, 242, 242) 0%, rgb(224, 224, 224) 100%);
  }
  hr.thin {
    height: 4px;
  }
  hr.thick {
    height: 10px;
  }
  hr.narrow {
    width: 40%;
  }
  hr.wide {
    width: 90%;
  }

  /*** SVG... ***/
  #our-story {
    position: relative;
    margin-bottom: 70px;
    margin-top: -110px;
  }
  .blink {
    animation-name: blink;
  }
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
  }

  #svg-container {
    position: absolute;
    width: 400px;
    height: 400px;
    top: 50%;
    left: 48%;
    transform: translate(-50%, -50%);
  }
  .logo-svg, .logo-svg div {
    margin: 0;
    padding: 0;
    line-height: 0;
  }
/* our-story grid sub-section */
  section#our-story .our-story-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 130px 1fr 1fr 200px;
    grid-gap: 20px;
    place-content: center;
    max-width: 1100px;
    padding: 0 10vw;
    margin: 0 auto;
  }
  section#our-story .our-story-grid h2.title {
    font-size: 2.4rem;
    font-family: 'Romelio';
    color: rgba(80,80,80,1);
    width: 80vw;
  }
  section#our-story .our-story-grid h2.title {
    grid-area: title;
  }
  section#our-story .our-story-grid p.desc {
    grid-area: desc;
    margin-top: 15px;
  }
  section#our-story .our-story-grid picture.image {
    grid-area: image;
    margin-top: 18px;
  }
  .img-hover {
      position: relative;   
      margin: 0; 
  }
  .img-hover::before {
    content: "";
    position: absolute;
    inset: 0;             /* shorthand for top/right/bottom/left: 0 */
    background-color: rgba(255, 255, 255, 0);
    transition: background-color 0.3s ease;
    pointer-events: none;
  }

  .img-hover:hover::before {
    background-color: rgba(255, 255, 255, 0.3);  /* or whatever your effect is */
  }
  section#our-story .our-story-grid div.ribbon {
    grid-area: ribbon;
    gap: 10px;
    /* flex-direction: row; */
    justify-content: flex-end;
    overflow: hidden;
  }
  section#our-story .our-story-grid div.ribbon figure {
    flex: 1;
    margin: 0;
    aspect-ratio: 3 / 2;   /* every figure gets the same shape */
    overflow: hidden;
  }
  section#our-story .our-story-grid div.ribbon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  section#our-story #grid-lefthand-image.our-story-grid {
    margin-top: 100px;
  }
  section#our-story #grid-righthand-image.our-story-grid {
    grid-template-areas: 
    "title title title title"
    "desc desc image image"
    "desc desc image image"
    "ribbon ribbon ribbon ribbon";
  }
  section#our-story #grid-lefthand-image.our-story-grid {
    grid-template-areas: 
    "title title title title"
    "image desc desc desc"
    "image desc desc desc"
    "ribbon ribbon ribbon ribbon";
  }
  section#reach-out-bottom-cta {
    margin-top: 150px;
    margin-bottom: 100px;

  }
  section#reach-out-bottom-cta div.container-m {
    border-radius: 1px;
    background: #dedede;
    background: linear-gradient(138deg,rgba(222, 222, 222, 1) 0%, rgba(240, 240, 240, 1) 38%, rgba(242, 242, 242, 1) 100%);
  }
  /* grey button */
  .grey-button {
    margin-left: 20px;
    border-radius: 2px;
    background-color: var(--grad-grey-lgt);
    color: var(--text-h1-h2-titles);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 4px 6px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
  }
  .grey-button:hover {
    background-color: var(--grad-bluegreen-drk);
    color: var(--pure-white);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 10px 20px rgba(0, 0, 0, 0.16);
    transform: translateY(-2px);
  }
  .dark-button {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 4px 6px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
  }
  .dark-button:hover {
    background-color: rgba(20,20,20,1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 10px 20px rgba(0, 0, 0, 0.16);
    transform: translateY(-2px);
  }
  section#reach-out-bottom-cta {
    margin-top: 140px;
  }
    section#reach-out-bottom-cta .stack ul {
      text-align: center;
      list-style-type: none;
      text-decoration: none;
      padding: 0;
    }
  section#reach-out-bottom-cta .stack ul:nth-child(1) {
    text-align: center; 
    font-family: 'Romelio'; 
    font-size: 1.8rem;
    list-style-type: none;
    text-decoration: none;
    padding: 0;
    margin: 0 auto;
  }
  section#reach-out-bottom-cta figure {
    width: 400px;
    text-align: center;
    margin: 0 auto;
  }
  /*** Testimonials ***/
  section#our-testimonials {
    margin-top: 200px;
  }
  section#our-testimonials h3 {
    text-align: center;
    font-size: 2.4rem;
    font-family: 'Romelio';
    color: rgba(80,80,80,1);
  }
  section#our-testimonials div.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    padding: 0 100px;
  }
  section#our-testimonials div.grid article.abs-pos-membrane figcaption {
    margin-top: 0;
    padding-top: 0;
  }
/************** SERVICES PAGE *************/
  section#our-services {
      margin: 40px 0 200px;
      padding-top: 30px;
      padding-left: 15px;
  }
  section#our-services h2 {
      text-align: center;
      font-family: 'Romelio';
      font-size: 1.8rem;
      margin-top: 26px;
      color: var(--text-h1-h2-titles-lighter);
      z-index: 1;
  }
  section#our-services div article.services-details-membrane span {
      font-weight: bold;
      color: var(--text-h1-h2-titles-lighter);
  }
  section#our-services div article.services-details-membrane .what-we-do-block span:nth-child(1) {
      color: var(--bullet-orange);
  }
  section#our-services div article.services-details-membrane ul > li::marker {
      color: var(--bullet-orange);
  }
  section#our-services #services-cta-grid {
      margin-bottom: 100px;
  }
  section#our-services h1 {
      text-align: center;
      font-size: 2.3rem;
      font-family: 'Romelio';
      margin-bottom: 100px;
      color: var(--text-h1-h2-titles-lighter);
  }
  section#our-services #services-cta-grid.grid {
      grid-template-columns: 500px 1fr;
      grid-template-rows: auto;
      padding: 0 36px;
  }
  section#our-services #additional-services-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
  }
  section#our-services div article.services-details-membrane {
      background-image: url('../graphics/beige-texture-with-yellow-gradient.jpg');
      background-size: 100% auto;
      background-position: center top;
      background-attachment: scroll;
      padding: 30px;
      color: #646464;
      box-shadow: 0 2px 3px 2px rgba(190,190,190,1);
      }
  /* Establish grid container */
  section#our-services .grid article.abs-pos-membrane,
  section#our-testimonials article.abs-pos-membrane {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: 1fr;
      margin: 0 auto;
      text-align: center;
      padding: 42px;
      margin-bottom: 120px;
  }
  section#our-testimonials article.abs-pos-membrane {
    padding: 0;
    margin-bottom: 0;
  }
  section#our-services .grid article.abs-pos-membrane .background-element,
  section#our-testimonials article.abs-pos-membrane .background-element {
      grid-area: 1 / 1;
      text-align: center;
      margin-top: 70px;
      opacity: 1;
      position: relative;
      margin: 0;
  }
  section#our-testimonials article.abs-pos-membrane .background-element {
    width: 26vw;
    background-color: beige;
    background: linear-gradient(139deg, #f5f5dc, #f5f5dc, #f5f5dc, #f5f5dc);
    padding: 50px 50px 100px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),
    /*top glow*/ 0 4px 6px rgba(0, 0, 0, 0.12); /*bottom-drop*/
    transition: 0.2s ease;
    font-style: italic;
    font-size: 1.1rem;
    font-weight: lighter;
  }
  section#our-testimonials article.abs-pos-membrane .background-element:hover {
    background: linear-gradient(39deg, #f5f5dc, #f5f5dc, #eddcf5, #f5eddc);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),
    /*top glow*/ 0 8px 8px rgba(0, 0, 0, 0.22); /*bottom-drop*/
  }
  section#our-testimonials article.abs-pos-membrane .background-element:hover picture.overlay-element img {
    transform: scale(1.1);
    filter: brightness(80%);
  }
  section#our-testimonials article.abs-pos-membrane .background-element span {
    font-weight: bold;
    color: rgba(10,10,10,1);
  }
  /* placement of torn paper, overlaid on top of image */
  section#our-services #services-cta-grid article.abs-pos-membrane .overlay-element,
  section#our-services #additional-services-grid article.abs-pos-membrane .overlay-element {
      position: relative;                   
      grid-area: 1 / 1;
      place-self: end;
      width: 500px;
      z-index: 2;
      transform: translate(10%,45%);
      filter: hue-rotate(0deg);
      transition: all 0.2s ease;
  }
  /* adjust torn paper placement for rest of grid */
  section#our-services #additional-services-grid article.abs-pos-membrane .overlay-element {
      transform: translate(10%,45%);
  }
  /* overlay-element for testimonials section */
  section#our-testimonials article.abs-pos-membrane .overlay-element {
    transform: translate(12%, -20%);
  }
  section#our-testimonials article.abs-pos-membrane .overlay-element img {
    max-width: 300px;
    border-radius: 2px;
    box-shadow: 1px 1px 1px 1px rgba(130,130,130,1);
    transform: scale(1);
    filter: brightness(100%);
    transition: all 0.2s ease-in-out;
  }
  section#our-testimonials article.abs-pos-membrane:hover .overlay-element > img {
    transform: scale(1.02);
    filter: brightness(85%);
  }
  section#our-services #services-cta-grid article.abs-pos-membrane .overlay-element h2.service-type,
  section#our-services #additional-services-grid article.abs-pos-membrane .overlay-element h2.service-type {
      position: absolute;
      text-align: center;
      color: var(--text-h1-h2-titles);
      left: 50%;
      transform: translate(-45%,24%);
      font-family: 'Romelio';
      z-index: 1;
      font-size: 1.6rem;
      margin-top: 0;
      text-decoration: underline 2px;
      text-decoration-color: var(--bullet-orange);
  }
  section#our-services #services-cta-grid article.abs-pos-membrane .overlay-element h2.service-type {
      margin-top: 26px;
  }
  section#our-services #additional-services-grid article.abs-pos-membrane .overlay-element h2#deck-staining.service-type {
      margin-top: 26px;
  }
  section#our-services .grid article.abs-pos-membrane:hover header.overlay-element img {
      filter: hue-rotate(146deg) saturate(300%);
  }
  section#our-services .grid article.abs-pos-membrane picture.background-element {
      position: relative; /* anchor for ::before */
      display: block;
      width: fit-content; /*shrinks to width of image */
      height: fit-content;
      margin: 0 auto;
      overflow: hidden;
      box-shadow: 0 1px 3px 2px rgba(150,150,150,1);
  }
  section#our-services .grid article.abs-pos-membrane picture.background-element:hover {
      box-shadow: 0 2px 3px 2px rgba(100,100,100,1);
  }
  /* hover effect for images */
  section#our-services .grid article.abs-pos-membrane picture.background-element::before {
      content:"";
      position: absolute;
      inset: 0; /* shorthand for top/right/bottom/left: 0 */
      background-color: rgba(255, 255, 255, 0);
      transform: scale(1);
      transition: all 0.3s ease;
      pointer-events: none;
      z-index: 1;
  }
  section#our-services .grid article.abs-pos-membrane:hover picture.background-element::before {
      background-color: rgba(255, 0, 0, 0.15);
      transform: scale(1.1);
  }
  section#our-services .grid article.abs-pos-membrane picture.background-element img {
      display: block;
      transition: all 0.3s ease;
  }
  section#our-services .grid article.abs-pos-membrane:hover picture.background-element img {
      transform: scale(1.05);
  }
  section#our-services .grid article.abs-pos-membrane .service-img {
      box-shadow: 0 2px 3px 2px rgba(150,150,150,1);
  }
  section#our-services .grid article.abs-pos-membrane p.service-description {
      margin-top: 60px;
      text-align: left;
      padding: 0 18%;
  }
  section#our-services #additional-services-grid article.abs-pos-membrane p.service-description {
      margin-top: 50px;
      padding:0 10%;
  }
  section#our-services #additional-services-grid article.abs-pos-membrane p.service-description-mobile {
      display: none;
  }
  /** Buttons **/
  section#our-story .button-membrane button {
      background-color: var(--grad-bluegreen-drk);
      color: var(--pure-white);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),
      /*top glow*/ 0 4px 6px rgba(0, 0, 0, 0.12); /*bottom-drop*/
      transition: all 0.3s ease;
  }
  section#our-story .button-membrane:hover button {
      background-color: var(--pure-white);
      color: var(--text-h1-h2-titles-lighter);
      border: 1px solid grey;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),
      0 10px 20px rgba(0, 0, 0, 0.16);
      transform: translateY(-2px);
  }
  section#our-services .grid article div.button-membrane {
      margin-top: -40px;
      text-align: left;
      padding: 0 18%;
  }
  section#our-services #additional-services-grid article div.button-membrane {
      margin-top:0;
      padding: 0 18%;
      text-align: left;
      border-radius: 1px;
  }
  button.expand-btn {
border-radius: 2px;
  box-shadow: 1px 1px 1px 1px rgba(130,130,130,1);
}
  button.expand-btn:hover {
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),
      0 10px 20px rgba(0, 0, 0, 0.16);
      transform: translateY(-2px); 
  }
  div.button-membrane button {
      background-color: var(--grad-grey-lgt);
      color: var(--text-h1-h2-titles);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),
      /*top glow*/ 0 4px 6px rgba(0, 0, 0, 0.12); /*bottom-drop*/
      transition: 0.2s ease;
      transition: all 0.3s ease;
  }
  div.button-membrane button:hover {
      background-color: var(--grad-bluegreen-drk);
      color: var(--pure-white);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),
      0 10px 20px rgba(0, 0, 0, 0.16);
      transform: translateY(-2px);
  }
  section.bottom-of-page-cta {
      margin-top: -20px;
      margin-bottom: 160px;
  }
  section.bottom-of-page-cta .grid {
      grid-template-columns: 320px 3fr;
      grid-template-rows: auto;
      min-width: 40vw;
      gap: 50px;
      width: 55vw;
      margin: 0 auto;
  }
  section.bottom-of-page-cta .grid header h3,
  section.bottom-of-page-cta .grid header h4 {
      font-family:'Romelio';
  }
  section.bottom-of-page-cta .grid header h3 {
      font-size: 1.6rem;
  }
  section.bottom-of-page-cta .grid header h4 {
      font-size: 1.3rem;
  }
  /******* PHOTO RIBBON ***********/
  section#photo-ribbon {
    position: relative;
    margin-top: 180px;
  }
  .photo-ribbon {
    width: 100vw;
    margin-bottom: 5px;
  }
  .photo-ribbon img {
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  /*** FOOTER ***/
  footer {
    width: 100vw;
  }
  .footer-envelope {
    width: 100%;
    min-height: 170px;
    margin: 0 auto;
    background-color: rgb(244,244,244);
    text-align: center;
    color: var(--navbar-blue);
    font-size: 1.4rem;
    font-family: 'Romelio';
    }
  .footer-envelope #footer-business-name {
    margin-bottom: 20px;
    padding-top: 36px;
  }
  .footer-envelope .tagline,
  #contact-info .tagline {
    font-family: 'Signifier';
    font-size: var(--size-xs);
    font-style: italic;
    color: var(--navbar-blue);
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .footer-envelope .tagline.cb {
    font-style: normal;
    font-size: 0.8rem;
    font-family: 'Avenir';
    padding-bottom: 18px;
    padding-top: 14px;
  }
  .footer-envelope .tagline.cb a {
    color: rgba(165,165,165,1);
    text-decoration: none;
  }
  .footer-envelope .tagline.cb a:hover {
    color: rgb(242, 204, 143);
  }
  #menu-dropdown-section,
  #about-section{
    scroll-margin-top: 280px;
  }
  #contact-info {
    scroll-margin-top: 320px;
  }
  .underline-accent {
    text-decoration: underline var(--text-light-orange) 2px;
  }
  /******  Recent Work Page  ******/
  main#main-recent-work-content .logo-container {
                padding-top: 20px;
                padding-left: 20px;
                width: 100vw;
                max-width: 100vw;
  }
  main#main-recent-work-content .logo-container a {
      font-size: 2rem;
      letter-spacing: 1.3rem;
      width: 100vw;
      color: rgba(200,200,200,1);
      background: linear-gradient(270deg, #e4f0f2, #d0d4d3, #f3e4f4, #d9f4f0, #ecf2f2);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shine 20s ease infinite;
      text-decoration: none;
  }
  @keyframes shine {
      to {
          background-position: 200% center;
      }
  }
  main#main-recent-work-content section .container-xl h2 {
      font-family: 'Romelio';
      /* font-style: italic; */
      font-size: 1.9rem;
      text-align: center;
      color: var(--text-h1-h2-titles);
      font-weight: 900;
  }
  main#main-recent-work-content section .container-xl h2 mark {
      padding: 7px 10px;
  }
  main#main-recent-work-content section .container-xl h2 span {
      font-size: 1.7rem;
      font-weight: 200;
      color: rgb(90,90,90);
  }
  main#main-recent-work-content section p.details-paragraph {
      line-height: 1.55rem;
      padding-bottom: 13px;
      font-weight: 200;
  }
  main#main-recent-work-content section p.details-paragraph span {
      font-weight: bold;
      color: rgb(70,70,70);
  }
  main#main-recent-work-content section p.details-paragraph a:hover {
      color: rgb(150,150,150);
  }
  main#main-recent-work-content section .checklist-title {
      padding-top: 85px;
      text-align: center;
      font-size: 1.3rem;
      font-family: 'Romelio';
  }
  main#main-recent-work-content section .checklist-title h3 {
      font-family: 'Romelio';
      color: var(--text-h1-h2-titles-lighter);
  }
  main#main-recent-work-content section .touchpoint-checklist ul {
      list-style: none;
  }
  main#main-recent-work-content section .touchpoint-checklist ul li::before {
      content:"\2705 ";
  }
  main#main-recent-work-content section .touchpoint-checklist .callout {
      margin-bottom: 3px;
      text-align: left;
      font-size: 1rem;
      background-color: rgb(252,252,252);
      border-color: rgb(235,235,235);
  }
  main#main-recent-work-content section .touchpoint-checklist .callout span {
      font-weight: bold;
  }
  main#main-recent-work-content section .cluster {
      margin-top: 50px;
  }
  main#main-recent-work-content section .cluster .btn {
      padding: 10px 15px;
      text-align: center;
      background-color: white;
      transition: all 0.3s ease;
  }
  main#main-recent-work-content section .cluster .btn:hover {
      background-color: var(--background-color-hover);
  }
  /****** Contact Us Page *******/
  main#main-contact-us-content section#contact-page {
    margin: 40px 0 200px;
    padding-top: 30px;
  }
  main#main-contact-us-content section#contact-page p {
    text-align: center;
    font-family: 'Romelio';
    font-size: 1.4rem;
    list-style-type: none;
  }
  main#main-contact-us-content section#contact-page .grid {
    padding: 30px 50px;
    background-color: rgba(244,244,244,1);
    border-radius: 2px;
    border: 1px solid rgba(200,200,200,0.6);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),
      /*top glow*/ 0 4px 6px rgba(0, 0, 0, 0.12); /*bottom-drop*/
    transition: 0.3s ease;
  }
  main#main-contact-us-content section#contact-page .grid:hover {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 10px 20px rgba(0, 0, 0, 0.16);
    transform: translateY(-1px);
  }
  main#main-contact-us-content section#contact-page h1 {
    text-align: center;
    font-size: 2.3rem;
    font-family: 'Romelio';
    margin-bottom: 100px;
    color: var(--text-h1-h2-titles-lighter);
  }
  main#main-contact-us-content picture#reach-out-bottom-cta {
    margin-bottom: 100px;

  }
  main#main-contact-us-content picture#reach-out-bottom-cta .stack ul {
    text-align: center;
    list-style-type: none;
    text-decoration: none;
    padding: 0;
  }
  main#main-contact-us-content picture#reach-out-bottom-cta .stack ul:nth-child(1) {
    text-align: center; 
    font-family: 'Romelio'; 
    font-size: 1.8rem;
    list-style-type: none;
    text-decoration: none;
    padding: 0;
    margin: 0 auto;
  }
  main#main-contact-us-content section#contact-page .grid {
    grid-template-columns: 320px 3fr;
    grid-template-rows: auto;
    min-width: 40vw;
    gap: 50px;
    width: 65vw;
    margin: 0 auto;
  }
  /******* @layer Queries ************/
  @layer components {
    .logo-container {
      width: 100%;
      min-width: 100%;
      max-width: 100%;
    }
  }
  /*** @media rules ***/
  @media screen and (max-width: 1550px) {
    .navbar a {
      font-size: 1rem;
    }
  }
  @media screen and (max-width: 1300px) {
    .menu-toggle {
      display: block;
      font-size: 55px;
      z-index: 11;
    }
    #cta-breakout .cta-phrase h2 {
      font-size: 1.9rem;
    }
    body.at-top .logo {
      top: 25px;
    }
    #primary-nav .nav-links {
      display: none;
      }
    #primary-nav .nav-links {
      display: none;
      }
      #navbar-container {
        height: 150px;
    }
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 75px;
      left: 0;
      width: 100%;
      background-color: var(--pure-white);
      padding: 25px 0;
      text-align: center;
      transition: all 0.3s ease-in-out;
      opacity: 0;
      pointer-events: none;
      min-height: 100vh;
      }
    .nav-links.active {
      display:flex !important;
      opacity: 1;
      pointer-events: auto;
      padding-top: 225px;
    }
    #nav-links .dropdown .dropbtn {
      text-decoration: none;
      color: var(--grad-bluegreen-drk);
      text-shadow: none;
    }
    .nav-links ul li {
      display: block;
      text-align: center;
      padding: 10px 0;
      }
    div.dropdown {
      margin: 0 auto;
    }
    .dropdown-content {
      width: 100%;
    }
    .dropdown:hover .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:active .dropdown-content {
      position: relative;
    }
    .dropdown-content a {
      text-align: center;
    }
    .cta-phrase-subtext {
      margin: 20px 0;
      padding: 0 100px;
    }
    section#our-story .our-story-grid {
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 130px 1fr 1fr 200px;
    }
    section#our-story #grid-righthand-image.our-story-grid {
      grid-template-areas: 
      "title title title"
      "desc desc image"
      "desc desc desc"
      "ribbon ribbon ribbon";
    }
    section#our-story #grid-lefthand-image.our-story-grid {
      grid-template-areas: 
      "title title title"
      "image desc desc"
      "desc desc desc"
      "ribbon ribbon ribbon";
    }
  }
  @media screen and (max-width: 1200px) {
      section#our-services #services-cta-grid.grid {
          grid-template-columns: 400px 1fr;
      }
      section#our-services div article.services-details-membrane {
          font-size: 0.8rem;
          padding: 5px;
      }
      section#our-services .grid article.abs-pos-membrane picture.background-element {
          width: 35vw;
      }
      section#our-services #services-cta-grid article.abs-pos-membrane .overlay-element {
          width: 400px;
          transform: translate(-15%,52%);
      }
      section#our-services #services-cta-grid article.abs-pos-membrane .overlay-element h2.service-type {
          width: 100%;
      }
      section.bottom-of-page-cta .grid {
        grid-template-columns: 300px 1fr;
        width: 75vw;
      }
   }
  @media screen and (max-width: 1100px) {
    /** Homepage & Our Story **/
    #our-story {
      margin-top: -60px;
    }
    section#our-story #grid-lefthand-image.our-story-grid {
      margin-top: 60px;
    }
    .blank-filler-section {
      height: 450px;
    }
    #cta-breakout {
      top: 20px;
    }
    #cta-breakout.unfix-position {
      top: -75px;
    }
    section#our-testimonials div.grid {
      padding: 0 5px;
      display: block;
    }
    section#our-testimonials div.grid article.abs-pos-membrane {
      display: flex;
      margin-bottom: 60px;
      padding: 50px 25px 25px;
      min-height: 120px;
      max-height: 280px;
    }
    section#our-testimonials article.abs-pos-membrane .background-element {
      width: 90vw;
    }
    section#our-testimonials article.abs-pos-membrane .overlay-element {
    transform: translate(-10%, 8%);
    }
    section#our-testimonials article.abs-pos-membrane .overlay-element img {
      width: 250px;
    }
    section#our-services .grid article div.button-membrane {
        margin-top: 0;
    }
    section#our-services #services-cta-grid.grid {
        padding: 0;
    }
    section#our-services #additional-services-grid {
        gap: 0;
        padding: 0 50px;
    }
    /*** additional-services-grid ***/
    section#our-services #additional-services-grid article.abs-pos-membrane picture.background-element {
        width: 40vw;
    }
    section#our-services #additional-services-grid article.abs-pos-membrane {
        padding:0;
    }
    section#our-services #additional-services-grid article.abs-pos-membrane .overlay-element {
        width: 400px;
        transform: translate(3%,45%);
    }
    section#our-services #services-cta-grid article.abs-pos-membrane .overlay-element h2.service-type {
        margin-top: 20px;
        font-size: 1.3rem;
    }
    section#our-services #additional-services-grid article.abs-pos-membrane .overlay-element h2.service-type {
        width: 100%;
        font-size: 1.3rem;
        margin-top: 15px;
    }
    section#our-services #additional-services-grid article div.button-membrane {
        padding: 0 28px;
      }
    /** Contact Us **/
    main#main-contact-us-content section#contact-page .grid {
      width: 85vw;
    }
  }
  @media screen and (max-width: 1050px) {
    .small-logo {
      width: 100px;
      left: 0;
      }
      .block {
        width: 90vw;
      }
      #cta-breakout .cta-phrase h2 {
        font-size: 1.3rem;
      }
    }
  @media screen and (max-width: 950px) {
    /** photo-ribbon **/
    .photo-ribbon .fullscreen {
      display: none;
    }
    /** Nav bar **/
    nav div .logo {
      position: fixed;
      z-index: 103;
      width: 270px;
      margin: auto;
      text-align: center;
      left: 0;
      right: 0;
    }
    .logo.shrink {
      width: 325px;
    }
    .logo-container,
    .logo-alt-container{
      width: 100%;
    }
    #menu-toggle span {
      position: absolute;
      right: 30px;
      transition: color 500ms ease;
      top: 0px;
    }
    #menu-toggle span:hover {
      color:red;
    }
    .small-logo {
      left: 0;
      position: fixed;
      margin: 0 auto;
      right: 0;
      top: 25px;
    }
    /** Our Story **/
    section#our-story .our-story-grid {
      grid-template-columns: 1fr 1fr 200px;
      grid-template-rows: 130px repeat(4, 1fr);
    }
    section#our-story #grid-righthand-image.our-story-grid {
      grid-template-areas: 
      "title title title"
      "desc desc image"
      "desc desc ribbon"
      "desc desc ribbon"
      "desc desc ribbon";
    }
    section#our-story #grid-lefthand-image.our-story-grid {
      grid-template-columns: 300px 1fr 1fr 1fr;
      grid-template-rows: 130px 1fr 1fr 275px;
      grid-template-areas: 
      "title title title title"
      "image image desc desc"
      "image image desc desc"
      "ribbon ribon ribbon ribbon";
    }
    section#our-story .our-story-grid div.ribbon {
      flex-direction: column;
      justify-content: center;
    }
    section#our-story #grid-lefthand-image.our-story-grid div.ribbon {
      flex-direction: row;
    }
    section#our-story .our-story-grid div.ribbon img.hide {
      display: none;
    }
    section#our-services {
      padding-left: 0;
    }
    /** Our Services **/
    section#our-services .grid .services-details-membrane {
        display: none;
    }
    section#our-services .grid article div.button-membrane {
        padding-left: 28px;
    }
    section#our-services #services-cta-grid.grid {
        display: block;
        padding: 0
    }
    section#our-services .grid article.abs-pos-membrane {
      display: grid;
      padding: 0;
    }
    section#our-services .grid article.abs-pos-membrane p.service-description,
    section#our-services #additional-services-grid article.abs-pos-membrane p.service-description {
      /* padding: 0 28px; */
      margin-top: 95px;
    }
    section#our-services #additional-services-grid article.abs-pos-membrane .overlay-element h2.service-type {
      transform: translate(-45%,40%);
    }
    section#our-services .grid article.abs-pos-membrane picture.background-element {
      display: flex;
      width: 80vw;
    }
    section#our-services #services-cta-grid article.abs-pos-membrane .overlay-element,
    section#our-services #additional-services-grid article.abs-pos-membrane .overlay-element {
      width: 90vw;
      transform: translate(3%,50%);
    }
    section#our-services #services-cta-grid article.abs-pos-membrane .overlay-element h2.service-type,
    section#our-services #additional-services-grid article.abs-pos-membrane .overlay-element h2.service-type {
      font-size: 1.7rem;
      margin-top: 30px;
    }
    /*** additonal-services-grid ***/
    section#our-services #additional-services-grid {
      display: block;
    }
    section#our-services #additional-services-grid article.abs-pos-membrane picture.background-element {
      display: flex;
      width: 80vw;
    }
    section#our-services #additional-services-grid article.abs-pos-membrane div.button-membrane {
      padding: 0 10%;
    }
  }
  @media screen and (max-width: 900px) {
    #navbar-container {
      height: 130px;
    }
  }
  @media screen and (max-width: 850px) {
    main#main-contact-us-content section#contact-page .grid {
      grid-template-columns: 1fr;
    }
    main#main-contact-us-content section#contact-page .grid div {
      order: -1;
    }
    main#main-contact-us-content picture#reach-out-bottom-cta {
      width: 480px;
      margin: 0 auto;
    }
    main#main-contact-us-content section#contact-page {
      margin-top: 10px;
      padding-top: 10px;
    }
    main#main-contact-us-content section#contact-page h1 {
      margin-bottom: 25px;
    }
  }
  @media screen and (max-width: 800px) {
    section.bottom-of-page-cta .grid {
      grid-template-columns: 205px 1fr;
      width: 90vw;
      gap: 20px;
    }
    #cta-breakout {
      width: 100vw;
    }
    #cta-breakout .breakout-membrane {
      padding: 0 10px;
    }
    #cta-breakout figcaption {
      display: none;
    }
    #cta-breakout figcaption.fig-mobile {
      display: block;
      font-size: 1rem;
    }
    #cta-breakout.unfix-position {
      top: -50px;
    }
    .cta-phrase-subtext {
      padding: 0 10px;
    }
    .cta-phrase-subtext p {
      font-size: 1rem;
    }
    #slide-test {
      margin-top: -15px;
    }
    section#our-testimonials article.abs-pos-membrane p.background-element {
      font-size: 1rem;
      padding: 50px;
    }
      section#our-testimonials div.grid article.abs-pos-membrane {
      min-height: 200px;
      max-height: 380px;
    }
  }
  @media screen and (max-width: 750px) {
    .blank-filler-section {
      height: 300px;
    }
    .cta-phrase-subtext {
      display: block;
      margin: 25px 5px;
      padding: 0;
    }
    #cta-breakout {
      padding: 0 8px 0 8px;
    }
    #cta-breakout.unfix-position {
      padding-top: 30px;
    }
    .cta-phrase-subtext p {
      font-size: 0.9rem;
    }
    section#our-story .our-story-grid {
      display: block;
    }
    section#our-story .our-story-grid div.ribbon {
      flex-direction: row;
      height: 150px;
      justify-content: left;
      overflow: hidden;
    }
    section#our-story .our-story-grid picture.image,
    section#our-story .our-story-grid picture.image img {
      width: 100vw;
    }
  }
  @media screen and (max-width: 650px) {
    #menu-toggle {
      color: var(--grad-grey-drk);
    }
    .navbar {
      background: var(--pure-white);
    }
    #slide-test {
      margin-top:0;
    }
    #cta-breakout .breakout-membrane {
      padding: 0 10px;
    }
    #cta-breakout figcaption.fig-mobile {
      font-size: 0.9rem;
    }
    section#our-testimonials div.grid article.abs-pos-membrane {
      display: block;
      margin-bottom: 230px;
    }
    section#our-testimonials article.abs-pos-membrane .background-element:hover picture.overlay-element img {
      transform: scale(1);
      transform: translate(0%, -8%);
    }
    section#our-testimonials article.abs-pos-membrane .overlay-element img {
      transform: translate(0%, -8%);
    }
    section#reach-out-bottom-cta {
      margin-top: 300px;
    }
    main#main-contact-us-content picture#reach-out-bottom-cta {
      margin-top: 0px;
      width: 300;
    }
    main#main-contact-us-content section#contact-page .grid {
      width: 95vw;
      }
    main#main-contact-us-content picture#reach-out-bottom-cta {
      width: 280px;
      margin: 0 auto;
      text-align: center;
    }
    main#main-contact-us-content section#contact-page .grid {
      padding: 30px 8px;
    }
  }
  @media screen and (max-width: 600px) {
    #svg-container {
      width: 200px;
      height: 200px;
      left: 50%;
    }
    #cta-breakout .cta-phrase h1 {
      font-size: 1.7rem;
    }
  }
  @media screen and (max-width: 550px) {
    .navbar {
      height: 100px;
    }
    .shrink-navbar {
      height: 80px;
    }
    .footer-envelope p {
      font-size: 1.2rem;
    }
    .footer-envelope .tagline {
      font-size: 1rem;
    }
    #menu-dropdown-section #menu-items div p {
      padding-left: 25px;
      padding-right: 25px;
    }
    nav div .logo {
      width: 250px;
    }
    .logo.shrink {
      margin: 0;
      left: 14px;
      width: 230px;
    }
    #cta-breakout .cta-phrase h1 {
      font-size: 1.3rem;
    }
    #cta-breakout.unfix-position {
      top: -25px;
    }
    section#reach-out-bottom-cta .stack ul:nth-child(1) {
      font-size: 1.5rem;
      margin-top: 65px;
    }
    section#reach-out-bottom-cta .stack figure {
      width: 300px;
    }
    section#photo-ribbon {
      display: none;
    }
    section#our-story .our-story-grid h2.title {
      padding-top: 25px;
    }
    section#our-story #grid-lefthand-image.our-story-grid {
      margin-top: 20px;
    }
    section.bottom-of-page-cta .grid {
      display: flex;
      width: 80vw;
    }
    section#our-services #services-cta-grid article.abs-pos-membrane .overlay-element h2.service-type,
    section#our-services #additional-services-grid article.abs-pos-membrane .overlay-element h2.service-type {
      font-size: 1.4rem;
    }
    section#our-services #additional-services-grid {
      padding: 0;
    }
    section#our-services .grid article.abs-pos-membrane picture.background-element,
    section#our-services #additional-services-grid article.abs-pos-membrane picture.background-element{
      width: 90vw;
    }
    section#our-services #services-cta-grid article.abs-pos-membrane .overlay-element,
    section#our-services #additional-services-grid article.abs-pos-membrane .overlay-element {
      width: 88vw;
      transform: translate(1%,55%);
    }
    section#our-services #services-cta-grid article.abs-pos-membrane p.service-description,
    section#our-services #additional-services-grid article.abs-pos-membrane p.service-description {
      padding: 0 16px;
    }
    main#main-contact-us-content picture#reach-out-bottom-cta .stack ul:nth-child(1) {
      font-size: 1.5rem;
      margin-top: 65px;
    }
    main#main-contact-us-content picture#reach-out-bottom-cta .stack figure {
      width: 300px;
    }
  }
  @media screen and (max-width: 500px) {
    section#our-services #services-cta-grid article.abs-pos-membrane .overlay-element {
      transform: translate(-3%,55%);
    }
    section#our-services #additional-services-grid article.abs-pos-membrane .overlay-element {
      transform: translate(-3%,55%);
    }
    section#our-services #services-cta-grid article.abs-pos-membrane .overlay-element h2.service-type,
    section#our-services #additional-services-grid article.abs-pos-membrane .overlay-element h2.service-type {
      font-size: 1.2rem;
      margin-top: 15px;
      width: 100%;
    }
    section#our-services .grid article.abs-pos-membrane p.service-description, 
    section#our-services #additional-services-grid article.abs-pos-membrane p.service-description {
      margin-top: 75px;
    }
    section#our-services #additional-services-grid {
        padding: 0 5px;
    }
    section#our-services {
        padding: 0;
    }
  }
  @media screen and (max-width: 450px) {
    #menu-toggle span {
      right: 15px;
    }
    section#reach-out-bottom-cta .stack ul:nth-child(1) {
      margin-top: 145px;
    }
    main#main-contact-us-content picture#reach-out-bottom-cta .stack ul:nth-child(1) {
      margin-top: 145px;
    }
  }
  @media screen and (max-width: 400px) {
    section#our-services #services-cta-grid article.abs-pos-membrane .overlay-element h2.service-type,
    section#our-services #additional-services-grid article.abs-pos-membrane .overlay-element h2.service-type {
      width: 55vw;
      transform: translate(-45%,10%);
      margin-top: 10px;
      font-size: 1.1rem;
    }
  }
  @media screen and (max-width: 350px) {
    nav div .logo {
      margin: 0;
      left: 14px;
    }
  }

  /*** @media rules bottom-to-top order ***/
  @media only screen and (min-width: 320px) {
    main#main-recent-work-content section {
      margin: 0 0 100px;
    }
    main#main-recent-work-content section#our-recent-work {
      margin: 0px 0 50px;
      padding-top: 10px;
    }
    main#main-recent-work-content section#our-recent-work h1 {
      text-align: center;
      font-size: 2.3rem;
      font-family: 'Romelio';
      margin-bottom: 100px;
      color: var(--text-h1-h2-titles-lighter);
    }
    main#main-recent-work-content section .grid {
      display: flex;
      flex-direction: column;
    }
    body#recent-work-page-content header .logo-container {
      text-align: center;
    }
    body#recent-work-page-content header .logo-container a {
      font-size: 1.3rem;
      letter-spacing: 0.85rem;
    }
    main#main-recent-work-content section .item-third {
      margin-top: -70px;
    }
    section .cluster {
      display: none;
    }
    main#main-recent-work-content section .checklist-title {
      padding-top: 5px;
    }
    section #exterior-painting h2,
    section #wood-staining h2 {
      text-align: center;
    }
    main#main-recent-work-content section p.details-paragraph {
      display: none;
    }
    main#main-recent-work-content section p.details-paragraph-mobile {
      display: block;
    }
    main#main-recent-work-content section .container-xl h2 span {
      font-size: 1.5rem;
      line-height: 2rem;
    }
    main#main-recent-work-content section .container-xl h2 mark {
      font-size: 1.6rem;
    }
  }
  /* 400px */
  @media only screen and (min-width: 400px) {
    main#main-recent-work-content .logo-container a {
      font-size: 2rem;
    }
    main#main-recent-work-content section#reach-out-bottom-cta {
      margin-top: -200px;
    }
  }
  /*** 650px ***/
  @media only screen and (min-width: 650px) {
    section p.details-paragraph {
      display: block;
    }
    section p.details-paragraph-mobile {
      display: none;
    }
  }
  @media screen and (max-width: 650px) {
    body#recent-work-page-content section#reach-out-bottom-cta {
      margin-top: -100px;
    }
  }
  /* medium screens 950px */
  @media only screen and (min-width: 950px) {
    main#main-recent-work-content section {
      margin: 100px 0 200px;
    }
    /* section {
        margin-top: 100px;
    } */
    main#main-recent-work-content section .grid {
      display: grid;
    }
    body#recent-work-page-content header .logo-container {
      text-align: left;
    }
    body#recent-work-page-content #interior-painting .grid #slide-test-interior,
    body#recent-work-page-content #cabinetry-refinishing .grid #slide-test-cabinetry {
      order: -1;
    }
    main#main-recent-work-content section .cluster {
      display: block;
    }
    main#main-recent-work-content section .checklist-title {
      padding-top: 85px;
    }
    section #exterior-painting h2,
    section #wood-staining h2 {
      text-align: left;
    }
    section#our-recent-work {
      margin: 40px 0 200px;
      padding-top: 30px;
    }
  }  



