:root {
  --h1-color: #7a2222;
  --black-text-color: #191919;
  --white-text-color: #fff;
  --hover-color: #818c7c;
  --body-font-family: 'Lato', sans-serif;
  --header-font-family: 'Cormorant Garamond', serif;
  --h1-font-weight: extrabold;
  --h2-font-weight: bold;
  --h1-font-size: 37px;
  --h2-font-size: 28px;
  --body-font-size: 17px;
  --button-font-size: 15px;
  --button-background-color: #7a2222;
  --button-text-style: uppercase;
  --bg-color: #becdaf;
  --light-green-color: #f5faf4;
  --light-blue-color: rgb(167, 230, 255);
}

* {
  box-sizing: border-box;
}

.temp img {
  width:100%;
  margin: 0 auto;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  min-height: 100%;
  max-width: 1500px;
  margin: 0 auto;
  scroll-behavior: smooth;
}

body { 
  -ms-overflow-style: none;  /* Int.expl. and Edge */
  scrollbar-width: none;  /* Firefox */
}

body::-webkit-scrollbar {
  display: none;
}

html {
  /*background-color: #f6faf5; this is the lighter green at top*/
  background-color: #dfeed9;
}

.topbar {
  position: relative;
  width: 100%;
  max-width: 1440px;
}

.navbar {
  padding: 30px 0 0 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: left;
  box-sizing: border-box;
  background-color: transparent;
  justify-content: left;
  align-items:center;
  z-index: 2000;
  margin-left: 5%;
}

.logo img {
  height: 110px; 
  width: auto;
  display: block;
  transition: transform 0.3s ease;
  padding: 0 0 20px 0;
  margin-right: 0;
  background-color: transparent;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  padding-top:15px;
  border-radius: 8px;
  gap: 50px;
  margin: 0 auto;
  margin: 30px 0 0 10px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--h1-color);
  font-weight:bolder;
  font-size: 20px;
  font-family: var(--header-font-family);
  text-transform: var(--button-text-style);
}

.nav-links a:hover, 
.buttons a:hover,
.social-text a:hover,
.footer-right a:hover {
  color: var(--hover-color);
}

.nav-links li {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: none;
  width: 160px;
  padding:0;
  text-align: center;
  z-index: 2000;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 10px;
  color: var(--h1-color);
  text-decoration: none;
  font-family: var(--body-font-family);
  font-size: 12px;
  border-bottom: .1px solid #000;
  font-weight:normal;
}

.logo img:hover,
.logo-footer img:hover {
    filter: brightness(1.5);
    transform: translateY(-5px);
}

/* Desktop active nav underline */
.nav-links a.active-page {
  border-bottom: 3px solid var(--h1-color);
  padding-bottom: 4px;
}



/*----------------------------------------- throughout -----------------------------------------*/

#container-about,
#container-sterling,
#container-home,
#container-wooden-type {
  max-width: 1500px;
  background-color: transparent;
  margin: 0 auto;
}

#container-wooden-type {
  padding-bottom: 50px;
}

h1 {
  text-align: center;      
  font-family: var(--header-font-family);
  color: var(--h1-color);
  font-size: var(--h1-font-size);
  font-weight:bold;
  padding-bottom: 40px;
}

.wooden-description h1 {
  color: var(--h1-color);
}

h2 {
  font-family: var(--header-font-family);
  color: var(--h1-color);
  font-size: var(--h2-font-size);
  font-weight:bold;
  text-align: center;
  margin: 30px auto;
  width: 100%;
  padding: 20px 0 20px 0;
}

h3 {
  text-align: center;      
  font-family: var(--body-font-family);
  color: var(--black-text-color);
  font-size: 18px;
  padding-bottom: 30px;
}

p {
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  color: var(--black-text-color);
}

/*----------------------------------------- hero graphics & hero video -----------------------------------------*/

.hero,
.hero2 {
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 auto;
    position: relative;
    width: 100%;    
    max-width: 1500px;
    z-index: 1;
    pointer-events: none;
 }

 .hero img {
  margin-top: -200px;
  width: 100%;
 }

 .hero2 img {
  margin-top: -80px;
  width: 100%;
 }

.hero-container {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  padding: 130px 0 0 0;
  margin-top: -140px;
  margin-bottom: 50px;
}


.slideshow {
  position: relative;
  width: 50%;   
  height: 600px;     
  overflow: hidden;
  margin-top: -225px;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active { opacity: 1; }

.wooden-description {
  width: 65%;
  margin: 0 auto;
  margin-top: -35px;
  padding: 0 20px 0 40px;
  border-radius: 8px;
  padding: 20px 30px 0 30px;
}

.wooden-description p {
  font-size: var(--body-font-size);
   font-family: var(--body-font-family);
}

/*----------------------------------------- carousel intro -----------------------------------------*/

.carousel-wrapper,
.carousel-wrapper-reverse {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
}

.carousel-wrapper {
justify-content: right;
}

.carousel-wrapper-reverse {
  justify-content: left;
}

.carousel-viewport {
  overflow:hidden;
  width: 420px;
}

.carousel-track {
  display: flex;
  gap: 0;
  transition: transform 0.4s ease;
  height: 100%;
}

.carousel-track img {
  height: 500px;
  width: auto;
  flex-shrink: 0;
  object-fit: cover;
}

/* Arrows */
.carousel-btn {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #232323;
}

.carousel-btn:hover {
  color: var(--hover-color);
}

.carousel-btn.prev {
  margin-right: 10px;
}

.carousel-btn.next {
  margin-left: 10px;
}


/*----------------------------------------- dif. types wooden jewelry -----------------------------------------*/


.wooden-type,
.wooden-type-reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  column-gap: 0px;
}

.wooden-image img,
.wooden-image-reverse img {
  width: 100%;
  max-width: 420px;
  height: auto;
}

.wooden-image {
  grid-column: 1;
  justify-self: end;
}

.wooden-text,
.wooden-text-reverse {
  grid-column: 2;
  width: 80%;
  background-color: transparent;
  border-radius: 8px;
}

.wooden-text {
  padding: 20px 30px 0 40px;
}

.wooden-text-reverse {
  padding: 20px 30px 0 40px;
  text-align: right;
  justify-self: right;
}

.wooden-text-reverse,
 .wooden-text-reverse {
  grid-column: 1;
}

.wooden-image-reverse {
  grid-column: 2;
  justify-self: start;
}

/*----------------------------------------- process section -----------------------------------------*/

.process-wooden-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 auto;
  padding: 20px 0 40px 0;
  gap: 20px;
  max-width: 1000px;
}

.process-wooden-image {
  max-width: 550px;
  margin: 0 auto;
  flex: 1;
  display:flex;
  justify-content: flex-end;
}

.process-wooden-image img {
  width:100%;
  height: auto;
  border-radius: 8px;
}

.process-wooden-text {
  max-width: 500px;
  margin: 0;
  flex: 1;
  justify-content: flex-start;
  padding: 20px 30px 0 40px;
   background-color: transparent;
   border-radius: 8px;
}

.process-wooden-text p {
  font-size: var(--body-font-size);
  font-family: var(--body-font-family);
}

/*----------------------------------------- ABOUT -----------------------------------------*/

.faq-container {
  margin: 0 auto;
  padding: 20px 20% 20px 20%;
}


/*----------------------------------------- where to buy -----------------------------------------*/

.wheretobuy {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 0 0 40px 0;
  max-width: 1500px;
}

.wheretobuy-text {
  background-color: transparent;
  justify-content: left;
  padding-top: 30px;
  width: 60%;
}

.wheretobuy-image p {
  justify-content: center;
}

.wheretobuy-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/*----------------------------------------- sterling silver and lapidary -----------------------------------------*/

.sterling-hero img {
  width: 100%;
  height: auto;
  z-index: 1;
  margin: 0 auto;
  margin-top: -400px;
}

.sterling-hero p {
  width: 65%;
  margin: 0 auto;
  padding-bottom: 90px;
}

.process-sterling-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 auto;
  padding: 20px 0 40px 0;
  gap: 30px;
  max-width: 1200px;
}

.process-sterling-image {
  margin: 0 auto;
  display:flex;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.process-sterling-image img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.process-sterling-text {
  max-width: 500px;
  margin: 0 auto;
  flex: 1;
  justify-content: flex-start;
     background-color: transparent;
   border-radius: 8px;
}

.process-sterling-text p {
  font-size: var(--body-font-size);
  font-family: var(--body-font-family);
  margin:0;
}

      .history-img {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        gap: 10px;
        }

        .history-img figcaption {
        font-size: var(--body-font-size);
        color: var(--black-text-color);
        font-family: var(--body-font-family);
        text-align: center;
        padding-top: 15px;
        }

        .history-text {
        display: flex;
        flex-direction: column;
        font-size: 25px;
        width: 80%;
        color: var(--black-text-color);
        margin: 0 auto;
        box-sizing: border-box;
        padding: 0 100px 0 100px;
      }

/*----------------------------------------- footer -----------------------------------------*/

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: top;
  text-align: center;
  padding-bottom: 30px;
}

.footer-middle,
.footer-right,
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-end;
  z-index: 2;
  margin: 0 auto;
}

.footer-middle {
  margin-bottom: -10px;
}

.footer-middle p,
.footer-right p {
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  color: var(--black-text-color);
}

.wpsu-video {
padding-top:20px;
}

.logo-footer {
  display: flex;
  align-items: center;
  width: 100%;
}

.logo-footer img {
  width: 290px;
  height:auto;
  transition: transform 0.3s ease;
} 

.hero3 {
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 auto;
    position: relative;
    width: 100%;    
    max-width: 1500px;
    z-index: 1;
    pointer-events: none;
 }

  .hero3 img {
  margin-top: -40px;
  margin-bottom: -140px;
  width: 100%;
 }

.social {
  display: flex;
  flex-direction: row;
}

.social img {
  width: 40px;
  margin: 0 8px;
  padding-top: 10px;
}

.social-text, 
.social-icons {
  display: flex;
  flex-direction: column;
}

.social-text p {
  margin: 0;
  padding: 20px 0 0 10px;
}

.social-text a {
  text-decoration: none;
}

.footer-right a {
  text-decoration: none;
  color: var(--black-text-color);
}

.hamburger {
  display: none;
}

#hamburger-btn {
  display: none;
}

/* --- desktop --- */
.desktop-nav { display: block; }
.mobile-nav, #hamburger-btn { display: none; }

/* ============================================================
   STICKY SCROLL HEADER
   Slides down from the top when user scrolls past the navbar.
   Logo on the left, nav items centered, paler-green bg,
   darker-green drop shadow.
============================================================ */

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1500px;
  background-color: var(--light-green-color); /* paler green #f5faf4 */
  box-shadow: 0 4px 14px rgba(129, 140, 124, 0.5); /* darker green #818c7c */
  z-index: 5000;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
    
}

.sticky-header.show {
  transform: translateY(0);
  
}

.sticky-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  width: 100%;
  padding: 0 5%;
}

/* --- Logo (left) --- */
.sticky-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 2;
}

.sticky-logo img {
  height: 55px;
  width: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.sticky-logo:hover img {
  filter: brightness(1.5);
  transform: translateY(-3px);
}

/* --- Nav (centered) --- */
.sticky-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.sticky-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 45px;
  align-items: center;
}

.sticky-nav li {
  position: relative;
}

.sticky-nav a {
  text-decoration: none;
  color: var(--h1-color);
  font-family: var(--header-font-family);
  font-weight: bolder;
  font-size: 18px;
  text-transform: uppercase;
  white-space: nowrap;
}

.sticky-nav a:hover {
  color: var(--hover-color);
}

.sticky-nav a.active-page {
  border-bottom: 3px solid var(--h1-color);
  padding-bottom: 4px;
}

/* --- Sticky dropdown --- */
.sticky-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: none;
  width: 220px;
  padding: 0;
  margin-top: 12px;
  text-align: center;
  list-style: none;
  z-index: 6000;
  box-shadow: 0 3px 10px rgba(129, 140, 124, 0.4);
flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.sticky-dropdown:hover .sticky-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
}

.sticky-nav .sticky-dropdown ul {
  gap: 0;
}

.sticky-dropdown-menu a {
  display: block;
  padding: 11px 5px;
  color: var(--h1-color);
  text-decoration: none;
  font-family: var(--body-font-family);
  font-size: 12px;
  font-weight: normal;
  text-transform: none;
  white-space: normal;
}

/* --- Sticky hamburger button (mobile only) --- */
.sticky-hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.sticky-hamburger-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--h1-color);
  border-radius: 2px;
  transition: all 0.3s ease;
  margin: 2.5px auto;
}

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

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

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


/* ======================================== responsive and mobile ======================================== */

/* ========================================
   RESPONSIVE MEDIA QUERIES
======================================== */



@media (max-width: 1425px) {

  .nav-links a {
    font-size: 18px;
  }

  .dropdown-menu a {
  font-size: 12px;
}

 #container-home h2 img {
    max-height: 43px;
  }

  #container-wheretobuy h2 img {
    max-height: 45px;
  }

}

/* Remove video curve below 1335px and align with h1 */
@media (max-width: 1370px) {
  
  .hero-container {
    margin-top: 20px;
  }

  .nav-links  {
    gap:50px;
  }

}



/* =======================================Show hamburger menu at 1270px */
@media (max-width: 1270px) {

  /* Navigation */

  /* --- Sticky header on tablet/mobile: hide centered nav, show hamburger --- */
  .sticky-nav {
    display: none;
  }

  .sticky-hamburger-btn {
    display: flex;
  }

  .sticky-header-inner {
    height: 65px;
    padding: 0 25px;
  }

  .sticky-logo img {
    height: 45px;
  }

  .desktop-nav {
    display: none !important;
  }

  #hamburger-btn,
  #hamburger-btn .hamburger {
    display: block;
  }

  .mobile-submenu a {
    font-size: 10px;
  }

  .navbar {
    padding-top: 75px;
    margin: 0;
    position: relative;
    z-index: 3000;
  }

  .logo {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3000;
  }

  .logo img {
    width: 70%;
    height: auto;
    margin: 0 auto;
  }

  #hamburger-btn {
    margin-top: 0;
    padding-top: 0;
    position: absolute;
    top: 120px;
    right: 50px;
    z-index: 4000;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    background: #fff;
    border-radius: 8px;
    border: 0;
    padding: 10px 5px 5px 15px;
    z-index: 4000;
    position: relative;
    margin: 20px 20px 0 0;
  }

  .hamburger-box {
    width: 50px;
    height: 50px;
    display: inline-block;
    position: relative;
  }

  .hamburger-inner,
  .hamburger-inner::before,
  .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: var(--h1-color);
    border-radius: 4px;
    position: absolute;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
  }

  .hamburger-inner::before,
  .hamburger-inner::after {
    content: "";
    display: block;
  }

  .hamburger-inner::before {
    top: -10px;
  }

  .hamburger-inner::after {
    bottom: -10px;
  }

  .hamburger.is-active .hamburger-inner {
    transform: rotate(45deg);
  }

  .hamburger.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
  }

  .hamburger.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
  }

  .mobile-nav {
    position: fixed;
    margin-top: 0;
    right: -100%;
    width: 300px;
    max-height: 57vh;
    border-radius: 8px;
    transition: right 0.3s ease;
    z-index: 3000;
    overflow-y: auto;
    display: block;
  }

  .mobile-nav.show {
    right: 0;
  }

  .mobile-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
  }

  .mobile-links > li {
    border-bottom: 1px solid #eee;
    display: block;
    background: white;
  }

  .mobile-links > li a,
  .mobile-links > li button {
    display: block;
    padding: 15px 20px;
    color: var(--h1-color);
    text-decoration: none;
    font-family: var(--header-font-family);
    font-weight: var(--h2-font-weight);
    font-size: 14px;
    text-transform: uppercase;
  }

  .mobile-dropdown-toggle {
    width: 100%;
    padding: 15px 20px;
    background: none;
    border: none;
    text-align: left;
    color: var(--h1-color);
    font-family: var(--body-font-family);
    font-weight: var(--h2-font-weight);
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .toggle-symbol {
    font-size: 20px;
    font-weight: normal;
  }

  .mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f7fdf7;
    display: block;
  }

  .mobile-submenu.show {
    max-height: 500px;
  }

  .mobile-submenu li {
    display: block;
  }

  .mobile-submenu a {
    padding: 12px 20px 12px 40px;
    font-size: 13px;
    display: block;
    font-family: var(--body-font-family);
    font-weight: lighter;
  }

  .mobile-submenu li a {
    font-family: var(--body-font-family);
    font-weight:inherit;
  }

  .secondary-nav-links {
    display: none;
  }

  /* Hero */

  .hero {
    position: relative;
    margin-top: 0;
  }

  .hero img {
    margin-top: -100px;
    display: block;
  }

  .hero2 img {
    margin-top: -60px;
  }

  .hero3 img {
    margin-top: -20px;
    margin-bottom: -115px;
  }

  /* Hero container — keep side by side, just tighten */

  .hero-container {
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    position: static;
    max-width: 100%;
    padding: 100px 20px 0 20px;
    margin-top: -100px;
    margin-left: 0;
    margin-right: 0;
    gap: 20px;
  }

  .wooden-description {
    width: 55%;
    padding: 20px 20px 0 20px;
    margin-top: 0;
  }

  .wooden-description h1 {
    font-size: 30px;
  }

  .slideshow {
    width: 40%;
    height: 500px;
    margin-top: -90px;
  }

  /* h2 — flanking images stay proportional */

  h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 90%;
    font-size: 1.6rem;
    text-wrap: nowrap;
  }

  h2 img {
    flex: 1;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    white-space: nowrap;
  }

  /* Wooden types — stack vertically */

  .wooden-type,
  .wooden-type-reverse {
    display: flex;
    flex-direction: column;
    width: 90%;
    gap: 30px;
  }

  .wooden-image,
  .wooden-image-reverse {
    width: 100%;
    order: 1;
  }

  .wooden-text,
  .wooden-text-reverse {
    width: 100%;
    padding: 0 20px;
    text-align: left;
    order: 2;
  }

  /* Carousel — natural aspect ratio, no height cropping */

  .carousel-viewport {
    width: 400px;
  }

  .carousel-track img {
    width: 400px;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .carousel-wrapper,
  .carousel-wrapper-reverse {
    justify-content: center;
    max-width: 100%;
  }

  /* Wooden process — stack vertically */

  .process-wooden-wrapper {
    flex-direction: column;
    gap: 20px;
    padding: 20px 20px 40px 20px;
  }

  .process-wooden-image {
    max-width: 100%;
    justify-content: center;
  }

  .process-wooden-text {
    width: 75%;
  }

  /* Sterling —  */

  .process-sterling-image {
  justify-content: center;
}

.history-img {
  flex-direction: column;
  align-items: center;
  padding: 0 15px;
}

.history-img img {
  max-width: 100%;
  height: auto;
}

  .process-sterling-wrapper {
    flex-direction: column;
    padding: 15px 20px 30px 20px;
    gap: 15px;
    max-width: 100%;
  }

  .process-sterling-image {
    flex: none;
    width: 70%;
    margin: 0;
    justify-content: flex-start;
  }

  .process-sterling-image img {
    width: 60%;
  }

  .process-sterling-text {
    max-width: 70%;
    margin: 0;
  }

  

  /* Footer */

  footer {
    padding: 0;
    background-color: var(--light-green-color);
  }

}

/* ================================Mobile landscape and smaller tablets (768px) */
@media (max-width: 1180px) {

.sterling-hero img {
  width: 100%;
  height: auto;
  z-index: 1;
  margin: 0 auto;
  margin-top: -300px;
}


}

/* ================================Mobile landscape and smaller tablets (768px) */
@media (max-width: 900px) {

.sterling-hero img {
  width: 100%;
  height: auto;
  z-index: 1;
  margin: 0 auto;
  margin-top: -200px;
}

#container-sterling h2 {
  margin-top:0;
  padding-top: 0;
  }

}

/* ================================Mobile landscape and smaller tablets (768px) */
@media (max-width: 768px) {

  .mobile-top-block {
    display: block;
    width: 100vw;
    height: 90px;
    background-color: #f5faf4;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    z-index: 5;
  }

  .topbar {
    max-width: none;
    position: relative;
    z-index: 3000;
  }

  .navbar {
    padding: 20px 0 0 0;
    margin-left: 20px;
    position: relative;
    z-index: 3000;
  }

  .logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3000;
  }

  .logo img {
    height: 120px;
    width: auto;
    padding: 0 0 10px 0;
  }

  #hamburger-btn {
    margin-top: 0;
    position: absolute;
    top: -70px;
    right: 50px;
    z-index: 4000;
  }

  .hamburger {
    background: transparent;
  }

  .hero {
    position: relative;
    margin-top: -31px;
    z-index: 10;
  }

  .hero img {
    margin-top: 10px;
    display: block;
    position: relative;
    z-index: 10;
  }

  /* Hero container — stack vertically, slideshow ABOVE text */

  .hero-container {
    flex-direction: column;
    align-items: center;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 10px 0 0 0;
    margin-top: -120px;
    margin-bottom: 20px;
    gap: 0;
  }

  /* Slideshow above via order, proportional height, no cropping */

  .slideshow {
    order: -1;
    width: 80%;
    height: 100vw;
    max-height: 500px;
    margin-top: -10px;
  }

  .slide {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  /* Text below slideshow */

  .wooden-description {
    order: 1;
    width: 90%;
    max-width: 600px;
    padding: 20px 20px 10px 20px;
    margin-top: 10px;
  }

  .wooden-description h1 {
    text-align: center;
    font-size: 28px;
  }

  /* Typography */

  h1 {
    font-size: 32px;
    padding-bottom: 30px;
  }

  h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.5rem;
    width: 100%;
    padding: 20px 0;
  }

  h2 img {
    flex: 1;
    height: auto;
    max-height: 50px;
    object-fit: contain;
  }

  h3 {
    font-size: 16px;
    padding-bottom: 20px;
  }

  p {
    font-size: 15px;
  }

  /* Containers */

  #container-about,
  #container-otherwork,
  #container-wooden,
  #container-home {
    padding: 0 20px 30px 20px;
  }

  /* Carousel — natural aspect ratio */

  .carousel-viewport {
    width: 70vw;
    max-width: 360px;
  }

  .carousel-track img {
    width: 70vw;
    max-width: 360px;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .carousel-btn {
    font-size: 24px;
  }

  /* Wooden types */

  .wooden-type,
  .wooden-type-reverse {
    display: flex;
    flex-direction: column;
    width: 95%;
    gap: 25px;
  }

  .wooden-image,
  .wooden-image-reverse {
    width: 100%;
    order: 1;
  }

  .wooden-text,
  .wooden-text-reverse {
    width: 100%;
    padding: 0 20px;
    text-align: left;
    order: 2;
  }

  /* About & FAQ */

  .faq-container {
    padding: 20px 8% 20px 8%;
  }

  /* Where to buy */

  .wheretobuy-text {
    width: 85%;
  }

  /* Sterling */

  #container-sterling {
    max-width: 90%;
  } 

  .process-sterling-image img {
    width: 60%;
  }
.process-sterling-wrapper {
    align-items: center;
  }

  .sterling-hero p {
    width: 90%;
  }

  .history-text {
    padding: 0 30px;
    width: 100%;
  }

  /* Footer */

  footer {
    flex-direction: column;
    gap: 30px;
    padding-bottom: 20px;
    background-color: var(--light-green-color);
  }

  .logo-footer img {
    width: 190px;
    margin-top: -40px;
  }

  .footer-middle p,
  .footer-right p,
   .footer-left p {
    font-size: 14px;
  }

  .hero3 img {
    margin-top: -20px;
    margin-bottom: 0;
  }

}

/* ==========================================Small mobile (700px) */
@media (max-width: 700px) {
  
  /* --- Sticky header on small mobile --- */
  .sticky-header-inner {
    height: 60px;
    padding: 0 18px;
  }

  .sticky-logo img {
    height: 40px;
  }

  .logo img {
    height: 100px;
    width: auto;
    padding: 0 0 10px 0;
    background-color: transparent !important;
  }
  
  .navbar {
    margin-left: 15px;
  }
  
  #hamburger-btn {
    margin-right: 20px;
  }

  /* Hero */

  .hero {
    position: relative;
    margin-top: -30px;
  }

  .hero img {
    display: block;
    margin-top: 0;
  }

  .hero2 img {
    margin-top: -60px;
    margin-bottom: -50px;
  }

  /* Hero container */

  .slideshow {
    height: 60vw;
    max-height: 340px;
  }

  .wooden-description {
    width: 95%;
  }

  /* Typography */

  h1 {
    font-size: 26px;
    padding-bottom: 20px;
  }

  h2 {
    font-size: 20px;
    gap: 6px;
    padding: 15px 0;
    width: 100%;
  }

  h2 img {
    max-height: 50px;
  }

  p {
    font-size: 14px;
  }

  .navbar {
    padding: 20px 0 0 0;
    margin-left: 20px;
  }
  
  /* Containers */

  #container-about,
  #container-otherwork,
  #container-wooden,
  #container-home {
    padding: 0 15px 20px 15px;
  }
  
  /* Carousel */

  .carousel-viewport {
    width: 70%;
  }
  
  .carousel-track img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }
  
  .carousel-btn {
    font-size: 20px;
    padding: 5px;
  }
  
  .carousel-btn.prev {
    margin-right: 5px;
  }
  
  .carousel-btn.next {
    margin-left: 5px;
  }
  
  /* Wooden types */

  .wooden-type,
  .wooden-type-reverse {
    width: 100%;
    gap: 20px;
  }
  
  .wooden-text,
  .wooden-text-reverse {
    padding: 0 15px;
  }
  
  /* Wooden process */

  .process-wooden-wrapper {
    padding: 15px 10px 30px 10px;
  }

  .process-wooden-text {
    width: 85%;
    padding: 0;
  }

  /* Footer */

  .logo-footer img {
    width: 170px;
  }
  
  .social img {
    width: 35px;
  }
  
  footer {
    background-color: var(--light-green-color);
    padding-top: 0px;
    gap: 5px;
  }
  
  .hero3 img {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .footer-left,
  .footer-middle,
  .footer-right {
    font-size: 12px;
    padding-bottom: 0;
  }

}



/* ==========================================Small mobile (620px) */
@media (max-width: 620px) {

  .hamburger-box {
    width: 20px;
    height: 20px;
  }

  #hamburger-btn {
    margin-top: -35px;
    margin-right: -10px;
  }

  .hero {
    margin-top: -50px;
    width: 100%;
  }

  .mobile-top-block {
    background-color: #f5faf4;
    height: 100px;
    width: 100%;
  }

  .logo img {
    width: 90%;
    height: auto;
    margin-right: 40px;
    margin-top: -60px;
  }

  /* Hero container */

  .slideshow {
    height: 65vw;
    max-height: 280px;
    margin-top: 50px;
  }

  .wooden-description h1 {
    font-size: 22px;
  }

  /* Typography */

  h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 1.4rem;
    gap: 5px;
    width: 100%;
    padding: 20px 0;
    text-wrap: unset;
    z-index: 200;
  }

  h2 img:first-child {
    width: 150%;
    max-height: none;
    height: auto;
    margin: 0 auto;
    padding-right: 30%;
  }

  h2 img:last-child {
    display: none;
  }

  #container-wooden-type {
    padding-bottom: 0;
  }

  /* Sterling */

  #container-sterling {
    width: 90%;
  }

  .sterling-hero img {
    width: 100%;
    height: auto;
    z-index: 1;
    margin: 0 auto;
    margin-top: -100px;
  }

  .sterling-hero p {
    width: 95%;
    padding-bottom: 40px;
  }

  .process-sterling-wrapper {
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .process-sterling-image {
    justify-content: center;
  }

  .process-sterling-image img {
    width: 85%;
  }

  .process-sterling-text p {
    font-size: 14px;
  }

  /* History / slag */

  .history-img {
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
  }

  .history-img img {
    max-width: 100%;
    height: auto;
  }

  .history-text {
    width: 80%;
    padding: 0 15px;
  }

}