:root {
  --brand: #f5ecd7;
  /* BG */
  --bg-body: var(--brand);
  --surface: #d4a373;
  --surface-red: #b80000;
  --surface-green: #036821;
  /* Text */
  --text-primary: black;
  --text-reverse: var(--brand);
  /* Number */
  --glb-pad: 1.5rem;
  --glb-col-gap: 1.5rem;
  --viewport-height: 100dvh;
}

html,
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  background-color: var(--bg-body);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

h1 {
  font-family: "Asap condensed", sans-serif;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

h2 {
  font-family: "Asap condensed", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
}

h1 {
  font-size: 7.5rem;
}

h2 {
  font-size: 2.5rem;
}

p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-primary);
}

a {
  font-size: 1rem;
  text-decoration: none;
  color: var(--text-primary);
  &:hover {
    color: var(--surface-red);
  }
}

i {
  font-size: 1.25rem;
}

img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}

section {
  width: 100%;
  padding: var(--glb-pad);
}

::selection {
  background-color: black;
  color: white;
}

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

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  outline: none;
  /* border: 1px solid #d6d6d6; */
}

.spacer {
  width: 100%;
  height: 15rem;
}

.btn-solid {
  background-color: black;
  color: var(--brand);
  padding: 1rem 1.5rem;
  border-radius: 10rem;
  &:hover {
    background-color: rgb(34, 34, 34);
    color: var(--brand);
  }
}

/* 404 */
.error-page {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: var(--viewport-height);
  gap: 2rem;
  padding: 1rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Progress bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  z-index: 9999;
  background: black;
  pointer-events: none;
}

/* Preload */
.preload {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: var(--viewport-height);
  position: fixed;
  z-index: 10;
  background: #181512;
}

.preload-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}

.preload-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 1;
  text-align: center;
}

.preload-content h1,
.preload-content .preload-title {
  font-family: "Asap condensed", sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8), 0 2px 6px rgba(0, 0, 0, 0.9);
  letter-spacing: 1.5px;
  font-size: 7.5rem;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}

.bg-circle {
  width: 150rem;
  height: 150rem;
  border-radius: 999rem;
  background: linear-gradient(
    90deg,
    #008c45 0%,
    #008c45 33.333%,
    #f7f8f7 33.333%,
    #f7f8f7 66.666%,
    #cd212a 66.666%,
    #cd212a 100%
  );
  position: absolute;
  z-index: 0;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.35);
}

/* Navmobile */
.navmobile-wrap {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: 10rem;
}

.navmobile {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 0.5rem;
  width: 100%;
  padding: 3rem 2rem 1.5rem 1.5rem;
  background-color: var(--surface);
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.3);
}

.navmobile a {
  &:hover {
    color: var(--text-reverse);
  }
}

.navmobile-wrap p {
  font-family: "Asap condensed", sans-serif;
  font-weight: 700;
  font-size: 1.65rem;
  line-height: 0.7;
  transform: translateX(20px);
  cursor: pointer;
  color: white;
}

/* Hero */
.hero {
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  align-items: center;
  height: var(--viewport-height);
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0,0,0,0.30) 15%, rgba(0,0,0,0.70) 90%);
  z-index: -1;
  pointer-events: none;
}

.hero p,
.hero a,
.hero h1,
.hero i,
.hero .menu-mobile {
  color: white;
}

.hero-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  width: 100%;
  align-self: start;
}

.navlink {
  color: white !important;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.2rem;
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
}

.navlink:hover {
  opacity: 1;
  transform: translateY(-3px) scale(1.05);
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.menu-mobile {
  display: none;
  color: white !important;
  font-size: 1.5rem;
  font-family: "Asap condensed", sans-serif;
  font-weight: 700;
  background-color: var(--surface-red);
  padding: 0.35rem 1rem;
  border-radius: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-mobile:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

.hero-tag {
  height: 12rem;
  width: auto;
  align-self: center;
  justify-self: center;
  margin-top: 25px;
}

.hero-mid {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  z-index: 20;
  margin-top: -15vh;
}

@media screen and (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    margin-top: -10vh;
  }
}

.hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: #b80000;
  color: #fff;
  border: 2px solid #b80000;
  box-shadow: 0 8px 20px rgba(184, 0, 0, 0.4);
}

.btn-primary:hover {
  background-color: #fff !important;
  color: #b80000 !important;
}

.btn-primary:hover i {
  color: #b80000 !important;
}

.btn-swiggy {
  background-color: #fff !important;
  color: #fc8019 !important;
  border: 2px solid #fc8019 !important;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-swiggy i {
  font-size: 1.2rem;
  color: #fc8019 !important;
}

.btn-swiggy:hover {
  background-color: #fc8019 !important;
  color: #fff !important;
  border-color: #fc8019 !important;
  box-shadow: 0 8px 20px rgba(252, 128, 25, 0.4);
}

.btn-swiggy:hover i {
  color: #fff !important;
}

.hero-bottom {
  position: absolute;
  bottom: -1px; /* Prevent sub-pixel gap */
  left: 0;
  width: 100%;
  z-index: 10;
}

.hero-features-banner {
  background-color: rgba(15, 15, 15, 0.75);
  backdrop-filter: blur(10px);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 4rem 5vw 2rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  clip-path: polygon(0% 10%, 2% 8%, 4% 12%, 6% 7%, 8% 11%, 10% 6%, 12% 10%, 14% 5%, 16% 12%, 18% 8%, 20% 11%, 22% 6%, 24% 12%, 26% 7%, 28% 11%, 30% 5%, 32% 10%, 34% 6%, 36% 12%, 38% 7%, 40% 11%, 42% 5%, 44% 10%, 46% 6%, 48% 12%, 50% 7%, 52% 11%, 54% 5%, 56% 10%, 58% 6%, 60% 12%, 62% 7%, 64% 11%, 66% 5%, 68% 10%, 70% 6%, 72% 12%, 74% 7%, 76% 11%, 78% 5%, 80% 10%, 82% 6%, 84% 12%, 86% 7%, 88% 11%, 90% 5%, 92% 10%, 94% 6%, 96% 12%, 98% 7%, 100% 11%, 100% 100%, 0% 100%);
}

.carousel-container {
  position: relative;
  width: 33vw;
  padding: 0 3rem;
  box-sizing: border-box;
}

.carousel-track {
  display: flex;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  gap: 1vw;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background-color: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0.5rem;
}

.carousel-btn:hover {
  color: #fff;
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

.feature-spacer {
  width: 22vw;
  flex-shrink: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 0 calc(50% - 0.5vw);
  scroll-snap-align: start;
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  border: 2px solid transparent;
}

.feature-icon-red {
  border-color: #b80000;
  color: #b80000;
  background-color: rgba(184, 0, 0, 0.1);
}

.feature-icon-green {
  border-color: #036821;
  color: #036821;
  background-color: rgba(3, 104, 33, 0.1);
}

.feature-icon-grey {
  border-color: #888;
  color: #ddd;
  background-color: rgba(136, 136, 136, 0.1);
}

.feature-text h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: #fff;
  letter-spacing: 1px;
}

.feature-text p {
  font-size: 0.8rem;
  color: #aaa;
  line-height: 1.3;
}

.feature-link {
  color: #ccc;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.feature-link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-img-wrap {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  gap: 0;
  padding-bottom: 2rem;
}

.hero-subtext {
  color: #fff;
  font-family: 'Asap Condensed', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 5px;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  margin-top: -5.5rem;
}

.italian-lines {
  display: flex;
  width: 90%;
  max-width: 400px;
  height: 3px;
  margin-top: 0.2rem;
  gap: 6px;
}

.italian-lines > div {
  flex: 1;
  height: 100%;
}

.scroll-text-container {
  position: absolute;
  top: -5vw;
  left: 50%;
  transform: translateX(-50%);
  width: 24vw;
  z-index: 11;
  pointer-events: none;
}

.scroll-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.hero-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18vw;
  position: relative;
  z-index: 12;
  aspect-ratio: 1 / 1;
}

.hero-h1 {
  font-size: 6.5rem;
  align-self: center;
  text-align: center;
}

#bmCircle {
  width: 80%;
}

#bmMain {
  position: absolute;
  width: 65%;
}

.hero-b1 {
  align-self: end;
  justify-self: start;
}

.hero-b2 {
  text-align: center;
  width: 25rem;
  align-self: center;
  justify-self: center;
}

.hero-b3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  align-self: end;
  justify-self: end;
}

#heroIcon {
  font-size: 1rem;
}

/* Fixed menu */
.fixed-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.5rem 0 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 8;
  transform: translateX(150%);
  transition: ease 0.2s;
  cursor: pointer;
}

.on-desktop {
  display: flex;
}

.fixed-menu.is-appear {
  transform: translateX(0);
  transition: ease 0.2s;
}

/* Evolution */
.evolution-wrap {
  display: flex;
  justify-content: center;
  align-items: start;
  width: 100%;
  height: 300vh;
  background-color: #9AECDB;
}

.evo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
}

.evolution {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}

.evo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  width: min(45rem, 100%);
  position: relative;
  z-index: 1;
}

.evo-wrap h1,
.evo-wrap h2 {
  text-align: center;
  font-size: 7.5rem;
  font-family: "Asap condensed", sans-serif;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}

.evo-wrap p {
  text-align: center;
  width: min(20rem, 100%);
}

.evo-imgs {
  position: absolute;
  width: 100%;
  height: var(--viewport-height);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(3, auto);
  gap: var(--glb-col-gap);
  padding: var(--glb-pad);
  z-index: 0;
}

.evo-img-wrap:nth-child(1) {
  grid-column-start: 1;
  grid-row-start: 2;
  width: 14rem;
  aspect-ratio: 2/3;
}

.evo-img-wrap:nth-child(2) {
  grid-column-start: 4;
  align-self: center;
  justify-self: end;
  width: 10rem;
  aspect-ratio: 1/1;
}

.evo-img-wrap:nth-child(3) {
  grid-column-start: 7;
  grid-column-end: 9;
  align-self: start;
  width: 14rem;
  aspect-ratio: 4/3;
}

.evo-img-wrap:nth-child(4) {
  grid-column-start: 12;
  grid-row-start: 2;
  align-self: center;
  justify-self: end;
  width: 14rem;
  aspect-ratio: 2/3;
}

.evo-img-wrap:nth-child(5) {
  grid-column-start: 9;
  grid-row-start: 3;
  align-self: start;
  justify-self: end;
  width: 10rem;
  aspect-ratio: 1/1;
}

.evo-img-wrap:nth-child(6) {
  grid-column-start: 5;
  grid-column-end: 7;
  grid-row-start: 3;
  align-self: end;
  justify-self: end;
  width: 14rem;
  aspect-ratio: 4/3;
}

/* Milestone */
#msTop {
  position: absolute;
  z-index: 2;
}

.milestone {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  gap: 5rem;
  background-color: var(--surface);
}

.ms-sticky {
  position: sticky;
  top: 0;
}

.ms-content {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 100%;
  justify-content: space-between;
  gap: 2.5rem;
}

.ms-header {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  width: min(25rem, 100%);
  gap: 0.5rem;
}

.ms-img-wrap-border {
  width: 50%;
  height: 100%;
  border: 0.8rem solid var(--brand);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.ms-img-wrap-border img {
  height: 100%;
  object-fit: cover;
}

.row-reverse {
  flex-direction: row-reverse;
}

/* Gallery / Instagram Feed */
.gallery-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 6rem var(--glb-pad);
  background-color: var(--surface-secondary, transparent);
  position: relative;
  z-index: 1;
}

.gallery-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  max-width: 48rem;
}

.gallery-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--surface-red);
  background: rgba(184, 0, 0, 0.08);
  padding: 0.35rem 1rem;
  border-radius: 50px;
}

.gallery-tag i {
  font-size: 1.15rem;
}

.gallery-header h2 {
  font-size: 3rem;
  color: var(--text-primary);
  line-height: 1.15;
}

.gallery-header p {
  font-size: 1.15rem;
  color: #555;
}

.gallery-feed-wrap {
  width: 100%;
  max-width: 80rem;
  min-height: 20rem;
}

.gallery-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.instagram-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 2rem;
  background-color: var(--surface-red);
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  border: 2px solid var(--surface-red);
  box-shadow: 0 6px 16px rgba(184, 0, 0, 0.25);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.instagram-follow-btn i {
  font-size: 1.1rem;
  color: #ffffff;
}

.instagram-follow-btn:hover {
  background-color: #ffffff !important;
  color: var(--surface-red) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(184, 0, 0, 0.35);
}

.instagram-follow-btn:hover i {
  color: var(--surface-red) !important;
}

/* Fillings */
.fl-wrapper {
  display: flex;
  justify-content: center;
  align-items: start;
  width: 100%;
  height: 300vh;
}

.fl-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: var(--viewport-height);
  position: sticky;
  top: 0;
}

.fillings {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: var(--viewport-height);
  overflow: hidden;
}

.fillings-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 95vw;
}

.fillings-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  width: auto;
  max-width: 100%;
}

.fillings-content h1,
.fillings-content h2,
.fillings-content .fl-heading {
  font-size: clamp(1.85rem, 6.2vw, 6.5rem);
  font-family: "Asap condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  margin: 0;
}

.fillings-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(2.4rem, 5.2vw, 5rem);
  aspect-ratio: 16 / 9;
  padding: 0.25rem;
  background-color: var(--surface-green);
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.fillings-bg img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
}

/* Carousel */
.fl-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: var(--viewport-height);
  padding: 0;
  overflow: hidden;
  position: absolute;
}

.fl-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.fl-wrap p {
  font-size: 1rem;
  text-align: center;
  width: min(26rem, 100%);
  padding: 0 1rem;
}

.fl-slide-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  position: relative;
}

.fl-slide {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 40rem;
}

.fl-img {
  display: flex;
  flex: none;
  width: 30rem;
  height: 100%;
  aspect-ratio: 2 / 3;
}

#curveTop {
  width: 100%;
  position: absolute;
  top: -2px;
  z-index: 1;
}

#curveBottom {
  width: 100%;
  position: absolute;
  bottom: -2px;
  z-index: 1;
}

.fl-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-top: 0.25rem;
}

.fl-menu-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.fl-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.75rem;
  background-color: var(--surface-red);
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  border: 2px solid var(--surface-red);
  box-shadow: 0 6px 16px rgba(184, 0, 0, 0.3);
  transition: all 0.25s ease;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.fl-menu-btn i {
  font-size: 1rem;
  color: #ffffff;
}

.fl-menu-btn:hover {
  background-color: #ffffff !important;
  color: var(--surface-red) !important;
  box-shadow: 0 10px 24px rgba(184, 0, 0, 0.4);
  transform: translateY(-2px);
}

.fl-menu-btn:hover i {
  color: var(--surface-red) !important;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 99rem;
  background-color: var(--surface);
  cursor: pointer;
  color: var(--text-primary);
  &:hover {
    background-color: #b48b61;
    transition: ease 0.2s;
  }
}

.btn i {
  font-size: 1.5rem;
}

/* Location & Hours */
.location-hours {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 6rem var(--glb-pad);
}

.lh-wrap {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 4rem;
  width: min(80rem, 100%);
}

.lh-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 45%;
}

.lh-info h2 {
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.lh-hours-title {
  margin-top: 2rem !important;
}

.lh-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.lh-address i {
  font-size: 1.25rem;
  color: var(--surface-red);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.lh-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.75rem;
  background-color: var(--surface-red);
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  border: 2px solid var(--surface-red);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  width: fit-content;
  margin-top: 0.5rem;
}

.lh-directions-btn i {
  font-size: 1rem;
  color: #ffffff;
}

.lh-directions-btn:hover {
  background-color: #ffffff !important;
  color: var(--surface-red) !important;
  transform: translateY(-2px);
}

.lh-directions-btn:hover i {
  color: var(--surface-red) !important;
}

.lh-hours-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 22rem;
}

.lh-hours-table td {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.lh-hours-table td:first-child {
  font-weight: 700;
  width: 45%;
  color: var(--text-primary);
}

.lh-hours-table td:last-child {
  color: #444;
}

.lh-map {
  display: flex;
  width: 55%;
  min-height: 28rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.lh-map iframe {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  border: 0;
  display: block;
  flex: 1;
}

/* Site Footer */
.site-footer {
  width: 100%;
  background-color: #181512;
  color: #f5f0eb;
  padding: 4.5rem var(--glb-pad) 2.5rem var(--glb-pad);
  border-top: 2px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 22rem;
}

.footer-logo {
  height: 4rem;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #a89f91;
  line-height: 1.4;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.footer-links a {
  color: #f5f0eb;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--surface-red, #b80000);
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #f5f0eb;
  font-size: 1.35rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: var(--surface-red, #b80000);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: #8c8275;
}

.footer-copy {
  color: #8c8275;
}

.footer-copy a {
  color: #d1c7ba;
  text-decoration: none;
  font-weight: 600;
}

.footer-copy a:hover {
  text-decoration: underline;
  color: #ffffff;
}

.footer-dev {
  color: #8c8275;
}

.footer-dev a {
  color: #e28b24;
  font-weight: 600;
  text-decoration: none;
}

.footer-dev a:hover {
  text-decoration: underline;
}

.footer-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #f5f0eb !important;
  text-decoration: none !important;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.45rem 1.15rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.footer-top-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Responsive */
@media screen and (max-width: 1800px) {
  html,
  body {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.4;
  }

  h1 {
    font-size: 7rem;
  }

  h2 {
    font-size: 2rem;
  }

  i {
    font-size: 1rem;
  }

  .hero-h1 {
    font-size: 8rem;
  }
}

@media screen and (max-width: 1439px) {
  .evo-img-wrap:nth-child(1) {
    width: 10rem;
  }

  .evo-img-wrap:nth-child(2) {
    width: 9rem;
  }

  .evo-img-wrap:nth-child(3) {
    width: 12rem;
  }

  .evo-img-wrap:nth-child(4) {
    width: 10rem;
  }

  .evo-img-wrap:nth-child(5) {
    width: 9rem;
  }

  .evo-img-wrap:nth-child(6) {
    width: 12rem;
  }

  .pre-img {
    width: 40%;
  }

  .fl-slide {
    height: 32rem;
  }
}

@media screen and (max-width: 1366px) {
  h1 {
    font-size: 6rem;
  }

  .hero-h1 {
    font-size: 5.5rem;
  }

  .evo-wrap {
    width: min(40rem, 100%);
  }
}

@media screen and (max-width: 1024px) {
  .location-hours {
    padding: 4rem var(--glb-pad);
  }

  .lh-wrap {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .lh-info {
    width: 100%;
    max-width: 32rem;
    align-items: center;
    text-align: center;
  }

  .lh-info h2 {
    text-align: center;
  }

  .lh-address {
    justify-content: center;
    text-align: center;
  }

  .lh-directions-btn {
    align-self: center;
    margin: 0.5rem auto 0 auto;
  }

  .lh-hours-title {
    text-align: center;
  }

  .lh-hours-table {
    margin: 0 auto;
    width: 100%;
    max-width: 22rem;
  }

  .lh-map {
    width: 100%;
    max-width: 36rem;
    min-height: 22rem;
    height: 22rem;
    margin: 0 auto;
  }

  .lh-map iframe {
    min-height: 22rem;
  }
}

@media screen and (max-width: 991px) {
  .spacer {
    height: 10rem;
  }

  .hero-h1 {
    font-size: 7rem;
  }

  .navmobile-wrap {
    width: 11.5rem;
  }

  .navmobile a {
    font-size: 1.25rem;
    &:hover {
      color: unset;
    }
  }

  .hero-mid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }

  .hero-img {
    width: 50%;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 1rem;
  }

  .hero-b1 {
    align-self: center;
    justify-self: center;
    grid-row-start: 2;
  }

  .hero-b2 {
    width: min(25rem, 100%);
  }

  .hero-b3 {
    justify-self: center;
  }

  .evo-img-wrap:nth-child(1),
  .evo-img-wrap:nth-child(4) {
    width: 12rem;
  }

  .evo-img-wrap:nth-child(2),
  .evo-img-wrap:nth-child(5) {
    width: 10rem;
  }

  .evo-img-wrap:nth-child(3),
  .evo-img-wrap:nth-child(6) {
    width: 12rem;
  }

  .milestone {
    flex-direction: column;
    height: 100vh;
    gap: 2.5rem;
  }

  .ms-sticky {
    position: relative;
  }

  .ms-content {
    width: 100%;
    height: auto;
    gap: 2.5rem;
  }

  .ms-content img {
    width: 60%;
  }

  .ms-img-wrap-border {
    width: 100%;
    height: 100%;
    border: 0.5rem solid var(--brand);
  }

  #msTop .ms-img-wrap-border {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 5rem;
  }

  .bg-circle {
    width: 100rem;
    height: 100rem;
  }

  .navlink {
    display: flex;
  }

  .evo-img-wrap:nth-child(1),
  .evo-img-wrap:nth-child(4) {
    width: 10rem;
  }

  .evo-img-wrap:nth-child(2),
  .evo-img-wrap:nth-child(5) {
    width: 8rem;
  }

  .evo-img-wrap:nth-child(3),
  .evo-img-wrap:nth-child(6) {
    width: 10rem;
  }

  .evo-wrap {
    width: min(32rem, 100%);
  }

  .fl-wrap {
    gap: 1rem;
  }

  .fillings-wrap {
    gap: 0.9rem;
  }

  .fillings-content {
    gap: 0.85rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 4rem;
  }

  .hero-img {
    width: 65%;
  }

  .hero-top {
    display: flex;
    justify-content: space-between;
  }

  .hero-bottom {
    gap: 0.5rem;
  }

  .navlink {
    display: none;
  }

  .menu-mobile {
    display: flex;
  }

  .evo-wrap {
    width: min(28rem, 100%);
  }

  .evo-imgs {
    display: none;
  }

  .ms-content {
    justify-content: center;
  }

  .ms-content img {
    width: 100%;
  }

  .fillings-wrap {
    gap: 0.75rem;
  }

  .fillings-content {
    gap: 0.6rem;
  }
}

@media screen and (max-width: 540px) {
  h2 {
    font-size: 1.65rem;
  }

  .hero-h1 {
    font-size: 5.5rem;
  }

  .fl-img {
    width: 20rem;
  }

  .fillings-wrap {
    gap: 0.6rem;
  }

  .fillings-content {
    gap: 0.45rem;
  }
}

@media screen and (max-width: 991px) {
  .hero-features-banner {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 2rem;
    padding: 1.75rem 1rem 1.25rem 1rem;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hero-features-banner::-webkit-scrollbar {
    display: none;
  }
  .carousel-container, .carousel-track {
    display: contents;
  }
  .carousel-btn {
    display: none;
  }
  .feature-spacer {
    display: none;
  }
  .feature-item {
    flex: 0 0 calc(50vw - 2rem);
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    scroll-snap-align: start;
  }
  .feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2rem;
  }
  .feature-text h3 {
    font-size: 0.8rem;
  }
  .feature-text p {
    font-size: 0.7rem;
  }
  .hero-img-wrap {
    display: none !important;
  }
  .hero-tag {
    height: 7rem;
  }
}
