/*-- -------------------------- -->
<---        Core Styles         -->
<--- -------------------------- -*/

:root {
  --primary: #ffd338;          
  --primaryLight: #ffe27a;
  --secondary: #ffd338;
  --secondaryLight: #ffe27a;

  --headerColor: #f5f5f7;      
  --bodyTextColor: #b9bac1;    
  --bodyTextColorWhite: #fafbfc;


  /* 13px - 16px */
  --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
  /* 31px - 49px */
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --bodyFontSize: 1rem;
  /* 60px - 100px top and bottom */
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;

  /*Mine i added them*/
  --bg: #0d0d0f;               
  --panel: #16161a;            
  --panel-2: #1b1b20;          
  --text: #f5f5f7;             
  --muted: #b9bac1;
  /* yellow accent */
  --accent: #ffd338;          
  --accent-800: #b98e00; 

  --shadow: 0 10px 30px rgba(0, 0, 0, .35);
  --radius-xl: 18px;
  --radius-full: 999px;
  --gap: clamp(16px, 2.4vw, 28px);
  --maxw: 80rem;
  --card-radius: 18px;

  --buttonhover: #b98e00;
  --buttonText: #0d0d0f;

  --buttonGradient: linear-gradient(
    135deg,
    var(--primaryLight) 0%,
    var(--primary) 40%,
    var(--accent-800) 100%
  );
  --buttonGradientHover: linear-gradient(
    135deg,
    color-mix(in oklab, var(--primary), black 10%) 0%,
    color-mix(in oklab, var(--accent), black 8%) 45%,
    color-mix(in oklab, var(--accent-800), black 18%) 100%
  );

  --bg-gradient-1: linear-gradient(135deg, #0d0d0f 0%, #1a1a1f 100%);
  --bg-gradient-2: linear-gradient(135deg, #0d0d0f 0%, #23232b 100%);
  --bg-gradient-3: linear-gradient(135deg, #0d0d0f 0%, #2c2c36 100%);
  --bg-gradient-4: linear-gradient(135deg, #0d0d0f 0%, #1f1f27 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg-gradient-1);
}

*, *:before, *:after {
  /* prevents padding from affecting height and width */
  box-sizing: border-box;
}

.cs-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: .1em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  display: block;
}

.cs-title {
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}

.cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}

/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  body.cs-open {
    overflow: hidden;
  }

  #cs-navigation {
    width: 100%;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding: 0.75rem 1rem;
    background-color: transparent;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: fixed;
    z-index: 10000;
    transition: background-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease, padding .25s ease;
  }

  #cs-navigation.cs-active {
      background-color: #000;
  }

  /* after scrolling */
  #cs-navigation.cs-scrolled {
    background-color: var(--panel);
    padding: 0.3rem 1rem;
  }

  #cs-navigation:before {
    content: "";
    width: 100%;
    height: 0vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: -1100;
    transition: height 0.5s, opacity 0.5s;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  #cs-navigation.cs-active:before {
    height: 150vh;
    opacity: 1;
  }

  #cs-navigation.cs-active .cs-ul-wrapper {
    opacity: 1;
    transform: scaleY(1);
    transition-delay: 0.15s;
    
  }

  #cs-navigation.cs-active .cs-li {
    opacity: 1;
    transform: translateY(0);
  }

  #cs-navigation .cs-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  #cs-navigation .cs-logo {
    width: 40%;
    max-width: 9.125rem;
    height: 100%;
    margin: 0 auto 0 0;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
  }

  #cs-navigation .cs-logo img {
    width: 60%;
    height: 60%;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
  }

  #cs-navigation .cs-toggle {
    /* 44px - 48px */
    width: clamp(2.75rem, 6vw, 3rem);
    height: clamp(2.75rem, 6vw, 3rem);
    margin: 0 0 0 auto;
    background-color: transparent;
    border: none;
    border-radius: 0.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #cs-navigation .cs-active .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }

  #cs-navigation .cs-active .cs-line2 {
    top: 50%;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
    transform-origin: center;
  }

  #cs-navigation .cs-active .cs-line3 {
    opacity: 0;
    bottom: 100%;
  }

  #cs-navigation .cs-box {
    /* 24px - 28px */
    width: clamp(1.5rem, 2vw, 1.75rem);
    /* 14px - 16px */
    height: clamp(0.875rem, 1.5vw, 1rem);
    position: relative;
  }

  #cs-navigation .cs-line {
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  #cs-navigation .cs-line1 {
    top: 0;
    transition: transform 0.5s, top 0.3s, left 0.3s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
    transform-origin: center;
  }

  #cs-navigation .cs-line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top 0.3s, left 0.3s, transform 0.5s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
  }

  #cs-navigation .cs-line3 {
    bottom: 0;
    transition: bottom 0.3s, opacity 0.3s;
  }

  #cs-navigation .cs-ul-wrapper {
    width: 100%;
    height: auto;
    padding-bottom: 2.4em;
    background-color: var(--panel);
    box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    overflow: hidden;
    transform: scaleY(0);
    transition: transform 0.4s, opacity 0.3s;
    transform-origin: top;
  }

  #cs-navigation .cs-ul {
    width: 100%;
    height: auto;
    max-height: 65vh;
    margin: 0;
    padding: 3rem 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.25rem;

  }

  #cs-navigation .cs-li {
    text-align: center;
    list-style: none;
    width: 100%;
    margin-right: 0;
    opacity: 0;
    /* transition from these values */
    transform: translateY(-4.375rem);
    transition: transform 0.6s, opacity 0.9s;
  }

  #cs-navigation .cs-li:nth-of-type(1) {
    transition-delay: 0.05s;
  }

  #cs-navigation .cs-li:nth-of-type(2) {
    transition-delay: 0.1s;
  }

  #cs-navigation .cs-li:nth-of-type(3) {
    transition-delay: 0.15s;
  }

  #cs-navigation .cs-li:nth-of-type(4) {
    transition-delay: 0.2s;
  }

  #cs-navigation .cs-li:nth-of-type(5) {
    transition-delay: 0.25s;
  }

  #cs-navigation .cs-li:nth-of-type(6) {
    transition-delay: 0.3s;
  }

  #cs-navigation .cs-li:nth-of-type(7) {
    transition-delay: 0.35s;
  }

  #cs-navigation .cs-li:nth-of-type(8) {
    transition-delay: 0.4s;
  }

  #cs-navigation .cs-li:nth-of-type(9) {
    transition-delay: 0.45s;
  }

  #cs-navigation .cs-li:nth-of-type(10) {
    transition-delay: 0.5s;
  }

  #cs-navigation .cs-li:nth-of-type(11) {
    transition-delay: 0.55s;
  }

  #cs-navigation .cs-li:nth-of-type(12) {
    transition-delay: 0.6s;
  }

  #cs-navigation .cs-li:nth-of-type(13) {
    transition-delay: 0.65s;
  }

  #cs-navigation .cs-li-link {
    /* 16px - 24px */
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.2em;
    text-decoration: none;
    margin: 0;
    color: var(--text);
    display: inline-block;
    position: relative;
  }

  #cs-navigation .cs-li-link:before {
    /* active state underline */
    content: "";
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 1;
    display: none;
    position: absolute;
    bottom: -0.125rem;
    left: 0;
  }

  #cs-navigation .cs-li-link.cs-active:before {
    display: block;
  }

  #cs-navigation .cs-button-solid {
    display: none;
  }
  #cs-navigation .cs-button {
    display: none;
  }
}

/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-navigation {
    width: 100%;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding: 1rem 1rem;
    background-color: transparent;
    box-shadow: 0 8px 24px rgba(149, 157, 165, 0);
    position: fixed;
    z-index: 10000;
    transition: background-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease, padding .25s ease;
  }

  /* after scrolling */
  #cs-navigation.cs-scrolled {
    background-color: var(--panel);
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    padding: 0 1rem;
  }

  #cs-navigation .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
  }

  #cs-navigation .cs-toggle {
    display: none;
  }

  #cs-navigation .cs-logo {
    width: 18.4%;
    max-width: 21.875rem;
    height: 4.0625rem;
    /* margin-right auto pushes everything away from it to the right */
    margin: 0 auto 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
  }

  #cs-navigation .cs-logo img {
    width: 100%;
    height: 100%;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
  }

  #cs-navigation .cs-ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* 20px - 36px */
    gap: clamp(1.25rem, 2.6vw, 2.25rem);
  }

  #cs-navigation .cs-li {
    list-style: none;
    padding: 2rem 0;
    /* prevent flexbox from squishing it */
    flex: none;
  }

  #cs-navigation .cs-li-link {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1vw, 1rem);
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--text);
    display: block;
    position: relative;
    transition: color 0.3s;
  }

  #cs-navigation .cs-li-link:hover{
    color: var(--accent);
  }

  #cs-navigation .cs-li-link:hover:before {
    width: 100%;
  }

  #cs-navigation .cs-li-link.cs-active:before {
    width: 100%;
  }

  #cs-navigation .cs-li-link:before { 
    /* active state underline */
    content: "";
    width: 0%;
    height: 2px;
    background: var(--primary);
    opacity: 1;
    display: block;
    position: absolute;
    bottom: 0rem;
    left: 0;
    transition: width 0.3s;
  }

  #cs-navigation .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 1.5rem;
    color: var(--buttonText);
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;


    
  }

  #cs-navigation .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background:  var(--buttonhover);
    opacity: 1;
    border-radius: 0.25rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }

  #cs-navigation .cs-button-solid:hover:before {
    width: 100%;
  }
}

/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-82 {
    /* Centers button */
    text-align: center;
    /* 144px - 300px - leaving extra space for the navigation */
    padding: clamp(9rem, 25.95vw, 18.75rem) 1rem 0;
    /* 130px - 200px */
    padding-bottom: clamp(8.125rem, 12.5vw, 25em);
    position: relative;
    z-index: 1;
  }

  #hero-82 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }

  #hero-82 .cs-background:before {
    /* Overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    /* prevents the cursor from interacting with it */
    pointer-events: none;
  }

  #hero-82 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  #hero-82 .cs-container {
    width: 100%;
    max-width: 67.5rem;
    margin: auto;
  }

  #hero-82 .cs-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    max-width: 51.8125rem;
    /* 16px - 24px */
    margin: 0 auto clamp(1rem, 4vw, 1.5rem);
    color: var(--headerColor);
    position: relative;
  }

  #hero-82 .cs-title:after {
    /* Divider Line */
    content: "";
    width: 6.25rem;
    height: 0.5rem;
    /* 16px - 24px */
    margin: clamp(1rem, 4vw, 1.5rem) auto clamp(1rem, 4vw, 1.5rem);
    background: var(--buttonGradient);
    opacity: 1;
    position: relative;
    display: block;
  }

  #hero-82 .cs-text {
    /* 16px - 25px */
    font-size: clamp(1rem, 1.95vw, 1.5625rem);
    line-height: 1.5em;
    text-align: center;
    width: 100%;
    /* 464px - 800px */
    max-width: clamp(29rem, 60vw, 50rem);
    margin: 0 auto;
    /* 40px - 48px */
    margin-bottom: clamp(2.5rem, 4vw, 3rem);
    color: var(--bodyTextColorWhite);
  }

  #hero-82 .cs-button-solid {
    font-size: 1rem;
    line-height: 3.5rem;
    text-decoration: none;
    font-weight: 700;
    margin: auto;
    color: var(--buttonText);
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-flex;
    align-items: center;
    position: relative;
    gap: 0.5rem;
    z-index: 1;
  }

  #hero-82 .cs-button-solid .cs-icon {
    width: 1.5rem;
    height: auto;
  }

  #hero-82 .cs-button-solid:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 0%;
    background: var(--buttonhover);
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }

  #hero-82 .cs-button-solid:hover:before {
    width: 100%;
  }
}

/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-578 {
    background: var(--bg-gradient-1);
  }

  #sbs-578 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 7vw, 4rem);
  }

  #sbs-578 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 32.625rem;
    /* moved section padding to the .cs-content so we can have the cs-picture be full width on mobile without the padding preventing it from doing so */
    padding: var(--sectionPadding);
    padding-top: 0;
    /* prevents padding from affecting width and height */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }

  #sbs-578 .cs-text {
    margin-bottom: 1rem;
  }

  #sbs-578 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }

  #sbs-578 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }

  #sbs-578 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }

  #sbs-578 .cs-button-solid:hover:before {
    width: 100%;
  }

  #sbs-578 .cs-picture {
    display: block;
    position: relative;
    width: 100%;
    height: 18.75rem;
  }

  #sbs-578 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sbs-578 {
    padding: var(--sectionPadding);
  }

  #sbs-578 .cs-container {
    flex-direction: row;
    justify-content: flex-start;
    /* 60px - 128px */
    gap: clamp(3.75rem, 10vw, 8rem);
  }

  #sbs-578 .cs-content {
    width: 53%;
    /* reset the padding, add the section padding back to the section container */
    padding: 0;
  }

  #sbs-578 .cs-picture {
    width: 47vw;
    max-width: 30.875rem;
    /* 518px - 700px */
    height: clamp(32.375rem, 63vw, 43.75rem);
    /* 16px - 28px, added margin left and bottom to cs-picture so it pushes away by the same amount the yellow box element overlaps it left and bottom. This maintains consistent spacing left and bottom */
    margin: 0 0 clamp(1rem, 2.4vw, 1.75rem) clamp(1rem, 2.4vw, 1.75rem);
    position: relative;
  }

  #sbs-578 .cs-picture:before {
    /* yellow box */
    content: "";
    width: 50%;
    height: 60%;
    background: var(--buttonGradient);
    opacity: 1;
    display: block;
    position: absolute;
    /* 16px - 28px, wrapped in calc function to multiple by negative 1 and get a negative clamp value */
    bottom: calc(clamp(1rem, 2.4vw, 1.75rem) * -1);
    left: calc(clamp(1rem, 2.4vw, 1.75rem) * -1);
  }
}

/*-- -------------------------- -->
<---          Pricing           -->
<--- -------------------------- -*/
/* buttons */
.price-2 {
  padding: var(--sectionPadding);
  background: radial-gradient(circle at top left, #1a1a1f, #0d0d0f);
}

.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  /*padding: clamp(20px, 3.2vw, 40px);*/
}

.tabs {
  margin: 36px auto 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tab-btn {
  position: relative;
  border: 0;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  background: var(--panel);
  color: var(--muted);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  font-size: 1rem;
  
}

.tab-btn:hover{
  background: var(--panel-2);
}

.tab-btn[data-active="true"] {
  background: var(--buttonGradient);
  color: black;
}

.tab-btn:focus-visible {
  outline: 3px solid var(--accent-800);
  outline-offset: 2px;
}

.tab-btn:active {
  transform: translateY(1px) scale(.99);
}

/* ---------- GRID ---------- */
.grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}

/* ---------- CARD ---------- */
.card {
  position: relative;
  background: var(--panel);
  border-radius: var(--radius-xl);
  padding: 22px 22px 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .04);
  transition: transform .25s ease, background .2s ease, border-color .2s ease;
}

.card:hover {
  background: var(--panel-2);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .08);
}

.price {
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--accent);
  font-weight: 700;
}

.icon-wrap {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #101014;
  border: 1px solid rgba(255, 255, 255, .06);
  color: var(--accent);
  box-shadow: inset 0 0 0 2px rgba(255, 211, 56, .08);
}

.icon-wrap svg {
  width: 22px;
  height: 22px;
}

.card h3 {
  margin: 14px 0 6px;
  font-size: 1.25rem;
  letter-spacing: -.01em;
}

.card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}

.meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.meta svg {
  width: 18px;
  height: 18px;
}


/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #gallery-1446 {
    padding: var(--sectionPadding);
    background: var(--bg-gradient-4);

  }

  #gallery-1446 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
  }

  #gallery-1446 .cs-content {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
  }

  #gallery-1446 .cs-title {
    margin: 0;
  }

  #gallery-1446 .cs-gallery {
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(19.0625rem, 1fr));
    /* 16px - 20px */
    gap: clamp(1rem, 1.5vw, 1.25rem);
    position: relative;
  }

  #gallery-1446 .cs-image {
    /* 260px - 360px */
    min-height: clamp(16.25rem, 60vw, 20rem);
    border-radius: 1rem;
    /* clips the image corners */
    overflow: hidden;
    display: block;
    position: relative;
  }

  #gallery-1446 .cs-image img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* makes it act like a background image */
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  #gallery-1446 .cs-image:hover img {
    transform: scale(1.1);
    /* zoom in slightly */
  }
}

/*-- -------------------------- -->
<---          Reviews           -->
<--- -------------------------- -*/
.wrap-review {
  max-width: var(--maxw);
  margin-inline: auto;
  /*padding: clamp(20px, 3.2vw, 40px);*/
  padding: var(--sectionPadding);
  
}

.underline {
  display: inline-block;
  width: 88px;
  height: 4px;
  background: var(--buttonGradient);
  border-radius: 4px;
  margin: 6px 0 24px
}

.carousel-review {
  position: relative;
  margin-top: 10px;
  user-select: none
}

.carousel-review .viewport {
  overflow: hidden;
  padding: 6px
}

.carousel-review .viewport .track {
  display: flex;
  gap: 24px;
  will-change: transform;
  transition: transform .6s cubic-bezier(.22, .61, .36, 1);
  padding: 6px
}

.card-review {
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-muted) 100%);
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--card-radius);
  flex: 0 0 100%;
  /* full width at mobile */
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  isolation: isolate;
  transition: transform .25s ease, background .2s ease, border-color .2s ease;
}

.card-review:hover{
  background: var(--panel-2);
  transform: translateY(-2px);
}

@media (min-width:700px) {
  .card-review {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (min-width:1024px) {
  .card-review {
    flex: 0 0 calc(33.333% - 16px);
  }
}

.stars {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: #f7c948;
}

blockquote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--muted);
}

.meta {
  margin-top: 22px
}

.name {
  font-weight: 700
}

.source {
  color: var(--muted);
  font-size: .95rem
}

.card-review::after {
  content: "\201C\201D";
  position: absolute;
  right: 18px;
  top: -10px;
  font-size: 140px;
  line-height: .75;
  color: var(--accent);
  opacity: .16;
  font-weight: 900;
  pointer-events: none;
  transform: rotate(180deg)
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .16);
  background: #111216;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: .2s ease;
  z-index: 5;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .35)
}

.arrow:hover {
  background: #17181d;
  border-color: rgba(255, 255, 255, .28)
}

.arrow svg {
  width: 18px;
  height: 18px;
  fill: #fff
}

.prev {
  left: -6px
}

.next {
  right: -6px
}

@media (min-width:1200px) {
  .prev {
    left: -20px
  }

  .next {
    right: -20px
  }
}

.dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #393a42;
  opacity: .7;
  transition: .2s;
  border: none;
}

.dot.active {
  opacity: 1;
  background: #d0a700
}
/*-- -------------------------- -->
<---          call to action    -->
<--- -------------------------- -*/

/* CTA Layout */
.cs-cta {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(255, 211, 56, 0.08), transparent 60%),
    radial-gradient(900px 500px at -10% 120%, rgba(255, 226, 122, 0.08), transparent 55%),
    linear-gradient(0deg, var(--panel-2), var(--panel));
  padding: var(--sectionPadding);
}

.cs-cta__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: var(--gap);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 3vw, 2rem);
  position: relative;
  overflow: hidden;
}

/* Subtle dot texture */
.cs-cta__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 14px 14px;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  pointer-events: none;
}

/* Barber stripe accent */
.cs-cta__stripe {
  position: absolute;
  left: -2px;
  top: -2px;
  bottom: -2px;
  width: 10px;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  background:
    repeating-linear-gradient(135deg,
      #e54b4b 0 10px,
      var(--accent) 10px 20px,
      #3aa6ff 20px 30px,
      var(--accent) 30px 40px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset;
}

.cs-cta__content {
  z-index: 1;
}

.cs-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(0.75rem, 1.8vw, 1rem);
}

.cs-cta__badges {
  list-style: none;
  padding: 0;
  margin: clamp(0.75rem, 1.8vw, 1.25rem) 0 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.cs-cta__badge {
  padding: 6px 10px;
  border-radius: var(--radius-full);
  border: 1px dashed rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(2px);
}

.cs-cta__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
}

/* Decorative art */
.cs-cta__art {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
}

.cs-cta__svg {
  width: 100%;
  max-width: 380px;
  height: auto;
  color: var(--primaryLight);
  opacity: 0.9;
}

.cs-cta__svg rect {
  fill: var(--primary);
  opacity: 0.25;
}

/* Buttons */
.cs-button {
  --_bg: transparent;
  --_fg: var(--headerColor);
  --_ring: rgba(255, 211, 56, 0.45);

  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.14);
  background: var(--buttonGradient);
  color: var(--_fg);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 120ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
  will-change: transform;

  -webkit-appearance: none;
  appearance: none;
  font-size: var(--bodyFontSize);
}

.cs-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--_ring);
}

.cs-button:hover {
  transform: translateY(-1px);
}

.cs-button__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

.cs-button--primary {
  --_bg: linear-gradient(180deg, var(--accent) 0%, var(--primaryLight) 100%);
  --_fg: var(--buttonText);
  border: none;
  font-family: inherit;
  
}

.cs-button--primary:hover {
  background: var(--buttonGradientHover);
}

.cs-button--ghost {
  background: rgba(255,255,255,0.02);
}

.cs-button--ghost:hover {
  border-color: rgba(255,255,255,0.32);
}

/* Typography alignment tweak for this block only */
#cs-cta .cs-title,
#cs-cta .cs-topper,
#cs-cta .cs-text {
  text-align: left;
}

/* Responsive */
@media (max-width: 900px) {
  .cs-cta__inner {
    grid-template-columns: 1fr;
  }
  .cs-cta__art {
    order: -1;
    min-height: 160px;
  }
}

/* Motion preferences */
@media (prefers-reduced-motion: reduce) {
  .cs-button,
  .cs-cta__inner {
    transition: none !important;
  }
}

/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cs-footer-272 {
    padding: var(--sectionPadding);
    background: var(--bg);
    /* Navigation Links */
    /* Contact Links */
  }

  #cs-footer-272 .cs-container {
    width: 100%;
    /* reset on tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    column-gap: 5.5rem;
    row-gap: 2rem;
  }

  #cs-footer-272 .cs-logo-group {
    /* takes up all the space, lets the other ul's wrap below it */
    width: 100%;
    position: relative;
  }

  #cs-footer-272 .cs-logo {
    /* 210px - 240px */
    width: clamp(13.125rem, 8vw, 15rem);
    height: auto;
    display: block;
    /* 28px - 44px */
    margin-bottom: clamp(1.75rem, 4.17vw, 2.75rem);
  }

  #cs-footer-272 .cs-logo-img {
    width: 100%;
    height: auto;
  }

  #cs-footer-272 .cs-logo-img.dark {
    display: none;
  }

  #cs-footer-272 .cs-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    line-height: 1.5em;
    margin: 0;
    margin-bottom: 2rem;
    width: 78%;
    /* changes to 305px at desktop */
    max-width: 33.75rem;
    color: var(--bodyTextColor);
  }

  #cs-footer-272 .cs-social {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.75rem;
    position: absolute;
    top: 0;
    right: 0;
  }

  #cs-footer-272 .cs-social-link {
    width: 1.5rem;
    height: 1.5rem;
    background-color: #4e4b66;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition:
      transform 0.3s,
      background-color 0.3s;
  }

  #cs-footer-272 .cs-social-link:hover {
    background-color: #1a1a1a;
    transform: translateY(-0.1875rem);
  }

  #cs-footer-272 .cs-social-img {
    height: 0.8125rem;
    width: auto;
    display: block;
  }

  #cs-footer-272 .cs-nav {
    padding: 0;
    margin: 0;
  }

  #cs-footer-272 .cs-nav-li {
    list-style: none;
    margin-bottom: 1rem;
  }

  #cs-footer-272 .cs-nav-li:last-of-type {
    margin-bottom: 0;
  }

  #cs-footer-272 .cs-header {
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: 700;
    color: var(--bodyTextColor);
    position: relative;
  }

  #cs-footer-272 .cs-header:after {
    content: "";
    width: 2rem;
    height: 0.25rem;
    margin: 1rem auto 1.5rem 0;
    background: var(--primary);
    opacity: 1;
    position: relative;
    display: block;
  }

  #cs-footer-272 .cs-nav-link {
    font-size: 1rem;
    text-decoration: none;
    line-height: 1.5em;
    color: var(--bodyTextColor);
    position: relative;
  }

  #cs-footer-272 .cs-nav-link:before {
    /* underline */
    content: "";
    width: 0%;
    height: 0.125rem;
    background: var(--bodyTextColor);
    opacity: 1;
    position: absolute;
    display: block;
    bottom: -0.125rem;
    left: 0;
    transition: width 0.3s;
  }

  #cs-footer-272 .cs-nav-link:hover:before {
    width: 100%;
  }

  #cs-footer-272 .cs-contact {
    margin: 0;
    padding: 0;
    width: 35%;
  }

  #cs-footer-272 .cs-contact-li {
    list-style: none;
    margin-bottom: 0rem;
  }

  #cs-footer-272 .cs-contact-li:last-of-type {
    margin-bottom: 0;
  }

  #cs-footer-272 .cs-contact-link {
    font-size: 1rem;
    text-decoration: none;
    line-height: 1.5em;
    text-align: left;
    color: var(--bodyTextColor);
    display: inline-block;
  }

  #cs-footer-272 .cs-contact-link:hover {
    text-decoration: underline;
  }

  #cs-footer-272 .cs-address {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cs-footer-272 .cs-container {
    max-width: 80rem;
    row-gap: 0;
  }

  #cs-footer-272 .cs-contact {
    flex-direction: row;
    justify-content: space-between;
    border-top: none;
  }

  #cs-footer-272 .cs-contact-li {
    margin: 0;
  }
}

/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-footer-272 .cs-container {
    /* pushes all flex children to the top */
    align-items: flex-start;
    justify-content: flex-end;
  }

  #cs-footer-272 .cs-logo-group {
    /* pushes everything to the right of it as far as possible in a flexbox */
    margin-right: auto;
    width: auto;
    max-width: 19.0625rem;
  }

  #cs-footer-272 .cs-text {
    width: 100%;
  }

  #cs-footer-272 .cs-social {
    flex-direction: row;
    position: relative;
    top: auto;
    right: auto;
  }

  #cs-footer-272 .cs-contact {
    width: auto;
  }
}


/*testing */



/* Footer: Opening Hours */
#cs-footer-272 .cs-hours {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  max-width: 28rem;
}

#cs-footer-272 .cs-hours .cs-header {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bodyTextColor);
  position: relative;
}

#cs-footer-272 .cs-hours .cs-header::after {
  content: "";
  width: 2rem;
  height: .25rem;
  background: var(--primary);
  display: block;
  margin: 1rem 0 1.25rem;
}

#cs-footer-272 .cs-hours-status .pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .95rem;
  padding: .35rem .6rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-full);
  background: #101014;
}

#cs-footer-272 .cs-hours-status .pill::before {
  content: "";
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  background: #888;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .06) inset;
}

/* Hours table */
#cs-footer-272 .cs-hours-table dl {
  margin: .75rem 0 0;
}

#cs-footer-272 .cs-hours-table .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: .5rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .08);
}

#cs-footer-272 .cs-hours-table dt {
  color: var(--bodyTextColor);
}

#cs-footer-272 .cs-hours-table dd {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

/* Highlight today */
#cs-footer-272 .cs-hours-table .row.is-today dt,
#cs-footer-272 .cs-hours-table .row.is-today dd {
  color: var(--accent);
}

/* Status color states */
#cs-footer-272 .cs-hours-status .pill.is-open::before {
  background: #2ecc71;
}

#cs-footer-272 .cs-hours-status .pill.is-closed::before {
  background: #e74c3c;
}

/* Layout tweaks: place next to other footer columns on wide screens */
@media (min-width: 64rem) {
  #cs-footer-272 .cs-hours {
    width: auto;
  }
}


