/* GENERAL */

@font-face {
  font-family: "Quiselle";
  src: url("/src/fonts/quiselle-regular-webfont.woff2") format("woff2"),
       url("/src/fonts/quiselle-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NotoSansRegular';
  src: url('/src/fonts/Noto-Sans-regular.woff2') format('woff2'),
       url('/src/fonts/Noto-Sans-regular.woff') format('woff'),
       url('/src/fonts/Noto-Sans-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NotoSansSemibold';
  src: url('/src/fonts/NotoSans-SemiBold.woff2') format('woff2'),
       url('/src/fonts/NotoSans-SemiBold.woff') format('woff'),
       url('/src/fonts/NotoSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NotoSansBold';
  src: url('/src/fonts/Noto-Sans-700.woff2') format('woff2'),
       url('/src/fonts/Noto-Sans-700.woff') format('woff'),
       url('/src/fonts/Noto-Sans-700.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CormorantGaramond";
  src: url("/src/fonts/CormorantGaramond-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

*{
    margin: 0;
    padding:0;
    box-sizing: border-box;  
}

body{
    font-family: 'NotoSansRegular';
    background-color: #E4E0D5;
    color: #2C1A0E;
}

.logo { 
    font-synthesis: none; 
    
}

/* EFFECTS */
/* --- General reveal --- */
.reveal {
  opacity: 0;
  transition:
    opacity 0.7s cubic-bezier(.4,0,.2,1) var(--reveal-delay, 0s),
    transform 0.7s cubic-bezier(.4,0,.2,1) var(--reveal-delay, 0s);
  will-change: opacity, transform;
  /* default: slide up */
  transform: translateY(40px);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* --- Feature cards reveal --- */
.feature-card-reveal {
  opacity: 0;
  transform: translateX(80px);
  will-change: opacity, transform;
}
.feature-card-reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* COOKIE BANNER */

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #E4E0D5;
  color: #2c1a0e;
  box-shadow: 0 -2px 16px rgba(75,45,23,0.18);
  font-family: 'NotoSansRegular', sans-serif;
  z-index: 5000;
  padding: 0;
}
.cookie-banner-main {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 18px 16px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cookie-banner-text {
  max-width: 640px;
  font-size: 1em;
}
.cookie-banner-link {
  display: inline-block;
  margin-top: 7px;
  color: #794E34;
  text-decoration: underline;
  font-size: 1em;
}
.cookie-banner-actions {
  display: flex;
  gap: 13px;
}
.cookie-btn {
  font-family: inherit;
  font-size: 1.02em;
  border: none;
  border-radius: 33px;
  padding: 10px 19px;
  cursor: pointer;
  transition: background 0.17s, color 0.14s;
}
.cookie-btn.accept  { background: #BCAAAD; color: #2C1A0E; border: 1px solid #2C1A0E;}
.cookie-btn.accept:hover  { background: #794E34; }
.cookie-btn.reject  { background: #d3cbcc; color: #2C1A0E; }
.cookie-btn.reject:hover { background: #794E34; }
.cookie-btn.manage  { background: #BCAAAD; color: #2C1A0E;}
.cookie-btn.manage:hover { background: #794E34; }

.cookie-manage-panel {
  padding: 18px 18px 10px 18px;
  border-top: 1px solid #ece4d4;
  background: #fffaf5;
  margin: 0;
  animation: fadeIn .26s;
}
@keyframes fadeIn {
  from { opacity: 0 }
  to { opacity: 1 }
}
.cookie-category {
  margin-bottom: 14px;
}
.cookie-category-header {
  display: flex;
  gap: 13px;
  align-items: center;
  font-weight: bold;
  font-size: 1.07em;
}
.cookie-category-name { color: #442000;}
.cookie-category-status {
  color: #b9906f;
  font-size: .93em;
  font-weight: normal;
  margin-left: 13px;
}
.cookie-category-desc {
  font-size: 0.98em;
  margin-left: 40px;
  color: #795e3a;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
}
.cookie-switch input { opacity:0; width:0; height:0; }
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #e4e0d5;
  border-radius: 24px;
  transition: .3s;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 17px; width: 17px; left: 3px; bottom: 2.5px;
  background-color: #bc8e65;
  border-radius: 50%;
  transition: .23s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #dfcfbd;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(15px);
}

.cookie-manage-panel-actions {
  margin-top: 18px;
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}

@media (max-width: 700px) {
  .cookie-banner-main { flex-direction: column; align-items: flex-start; padding: 18px 7vw 8px 6vw;}
  .cookie-banner-link { font-size: .95em; }
  .cookie-banner-actions { width: 100%; flex-wrap: wrap; gap: 10px; }
  .cookie-btn { font-size: 0.97em; width: 100%; }
  .cookie-manage-panel { padding-left: 6vw; padding-right: 6vw; }
}

/* PRELOADER */

.preloader {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  z-index: 9999;
  background: #E4E0D5;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s cubic-bezier(.56,0,.13,1);
}

.preloader-lines {
  display: flex;
  gap: 40px;
}

.preloader-line {
  width: 7.48px;
  height: 63px;
  background: #2C1A0E;
  transform: scaleY(0);
  transform-origin: bottom;
  animation: preloader-grow 0.6s cubic-bezier(.55,0,.1,1) forwards;
}

.preloader-line:nth-child(1) { animation-delay: 0s; }
.preloader-line:nth-child(2) { animation-delay: 0.25s; }
.preloader-line:nth-child(3) { animation-delay: 0.5s; }
.preloader-line:nth-child(4) { animation-delay: 0.75s; }
.preloader-line:nth-child(5) { animation-delay: 1s; }
.preloader-line:nth-child(6) { animation-delay: 1.25s; }

@keyframes preloader-grow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

/* OVERLAY */

/* When modal is open, apply blur to the page content */
body.is-overlay-open .siteToBlur {
  filter: blur(8px);
  transform: translateZ(0); /* helps avoid some blur jitter */
}

/* Prevent scrolling behind modal */
body.is-overlay-open {
  overflow: hidden;
}

/* Overlay base */
.promoOverlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 220ms ease, visibility 0s linear 220ms;
}

.promoOverlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 220ms ease, visibility 0s;
}

.promoOverlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Optional: subtle pop-in */
.promoOverlay__modal {
  transform: translateY(8px) scale(0.99);
  transition: transform 220ms ease;
}
.promoOverlay.is-open .promoOverlay__modal {
  transform: translateY(0) scale(1);
}

/* Modal shell */
.promoOverlay__modal {
  position: relative;
  width: min(980px, 100%);
  border-radius: 22px;
  background: #E4E0D5;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.55);
  padding: clamp(18px, 3vw, 34px);
}

/* Close button (X) */
.promoOverlay__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #794E34;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.promoOverlay__top {
  text-align: center;
  padding-top: 8px;
}

.promoOverlay__marks img{
  width: 120px;
}

.promoOverlay__title {
  margin: 5px 0 0 0;
  font-size: clamp(28px, 4vw, 50px);
  letter-spacing: 2px;
  color: #2C1A0E;
  font-family: 'NotoSansSemibold';
  /* font-size: 36px; */
  line-height: normal;
  letter-spacing: 1.8px;
}

.promoOverlay__subtitle {
  margin: 8px 0 0;
  font-size: clamp(35px, 2.3vw, 45px);
  color: #2C1A0E;
  font-family: 'CormorantGaramond';
}

/* Cards layout */
.promoOverlay__cards {
  margin-top: clamp(16px, 2.2vw, 26px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 22px);
}

.promoCard {
  border-radius: 12px;
  padding: clamp(15px, 1.5vw, 20px);
  color: #eee7de;
  min-height: 240px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.promoCard--dark {
  background: #2C1A0E;
}

.promoCard--brown {
  background: #794E34;
}

.promoCard__heading {
  margin: 0;
  font-size: clamp(20px, 2.5vw, 22px);
  color: #E4E0D5;
  text-align: center;
  font-family: "CormorantGaramond";
  line-height: normal;
  letter-spacing: 0.5px;
}

.promoCard__date {
  margin: 0;
  opacity: 0.95;
  color: #E4E0D5;
  text-align: center;
  font-family: 'NotoSansSemibold';
  font-size: 17px;
  font-style: italic;
  letter-spacing: 0.75px;
}

.promoCard__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  margin: 4px 0 8px;
}

.promoCard__body {
  margin: 0;
  text-align: center;
  opacity: 0.9;
  color: #E4E0D5;
  font-weight: 300;
  line-height: normal;
}

/* CTA looks like a button */
.promoCard__cta {
  font-family: 'NotoSansBold';
  justify-self: center;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  background: #c8b9b4;
  color: #2C1A0E;
  text-align: center;
  letter-spacing: 0.7px;
  transition: background 0.2s, color 0.2s;
}

.promoCard__cta:hover {
  background: #E4E0D5;
  color: #2C1A0E;
}

/* Responsive: stack cards on small screens */
@media (max-width: 720px) {
  .promoOverlay__cards {
    grid-template-columns: 1fr;
  }
}

/* HERO */

.hero-container {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}
.hero-video {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    pointer-events: none;
    z-index: -1; 
}
.hero-nav, .hero-content {
    position: fixed;
    width: 100vw;
    left: 0;
}
.hero-nav {
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 5;
    transition: transform 0.45s cubic-bezier(.77,0,.18,1), opacity 0.2s;
    transform: translateY(0);
    opacity: 1;
    background-color: transparent;
}
.hero-content {
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    pointer-events: none;
    z-index: -1; 
}
.hero-nav.hidden {
    transform: translateY(-120%);  
    opacity: 0; 
    pointer-events: none;
}
.nav-left a, .nav-right .cta-btn {
    text-decoration: none;
    font-family: 'NotoSansBold';
    color: #2C1A0E;
    font-size: 1.15em;
}
.nav-left a{
    margin-right: 18px;
}
.nav-left a:hover{
    color: #794E34;
}
.nav-right .cta-btn {
    background: rgba(44,44,44,0.1);
    border: 1.5px solid #2C1A0E;
    padding: 12px 40px;
    border-radius: 200px;
    transition: background 0.2s, color 0.2s;
}
.nav-right .cta-btn:hover {
    background: #794E34;
}
.logo {
    font-family: 'Quiselle';
    font-size: 20vw;
    line-height: 0.55em;
    color: #E4E0D5;
}
.subtitle {
    font-family: 'CormorantGaramond';
    font-size: 4vw;
    color: #E4E0D5;
}

/* ABOUT SECTION */

.about-section {
    background: #e4e0d5;
    position: relative;
    z-index: 3;
    padding: 11vh 8vw;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.about-inner{
    width: 60%;
}
.section-label{
    font-size: 1em;
    color: #794E34;
    font-family: 'NotoSansBold';
    margin-bottom: 35px;
}
.about-isotype{
    width: 8vw;
    margin-bottom: 25px;
    margin-left: 3px;
}
.about-title{
    font-size: 4.1vw;
    color: #2C1A0E;
    font-family: 'NotoSansSemibold';
    line-height: 1.2em;
    margin-bottom: 40px;
}
.about-lead, .about-lead-2{
    margin-bottom: 18px;
}
.about-lead-2{
    margin-bottom: 45px;
}
.about-btn{
    text-decoration: none;
    font-family: 'NotoSansSemibold';
    letter-spacing: 0.05em;
    font-size: 1.2em;
    color: #2C1A0E;
    border: 1.5px solid #2C1A0E;
    box-shadow: 0 2px 2px 0 #9e9e9e inset;
    padding: 9px 50px;
    border-radius: 200px;
    margin-top: 30px;
    transition:
    background 0.32s cubic-bezier(.4,0,.2,1),
    opacity 0.7s cubic-bezier(.4,0,.2,1) var(--feature-delay, 0s),
    transform 0.7s cubic-bezier(.4,0,.2,1) var(--feature-delay, 0s);  
}
.about-btn:hover{
    background: #794E34;
    box-shadow: 0 2px 2px 0 #975c35 inset;
}

/* FEATURES SECTION*/

.photo-section-features {
  background: url('/src/files/PilatesReformerWomen.webp') center/cover no-repeat;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 80vh;
  width: 100%;
  min-height: 500px;
  padding: 6vh 0;
}
.feature-cards {
  display: flex;
  gap: 3vw;
}
.feature-card {
  background: rgba(44,27,17,0.12);
  border: 1.5px solid #E4E0D5;
  border-radius: 20px;
  padding: 28px 20px 48px 20px;
  width: 22vw;
  min-width: 300px;
  max-width: 340px;
  color: #E4E0D5;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.2);
  backdrop-filter: blur(8px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 19vh;
  transition:
    background 0.32s cubic-bezier(.4,0,.2,1),
    opacity 0.7s cubic-bezier(.4,0,.2,1) var(--feature-delay, 0s),
    transform 0.7s cubic-bezier(.4,0,.2,1) var(--feature-delay, 0s);
}
.feature-card:hover {
  background: rgba(44,27,17,0.7);
}
.feature-card-icon{
    width: 60px;
}
.feature-card h3 {
  font-family: 'CormorantGaramond', serif;
  font-size: 2em; 
  margin: 0 0 12px 0;
}
.feature-card p {
  font-family: 'NotoSansRegular', sans-serif;
  font-size: 1em;
  opacity: 0.96;
  max-height: 50px;
}
/* SCHEDULE SECTION */
.schedule-section{
    height: auto;
    background-color: #E4E0D5;
    padding: 11vh 8vw;
}
.schedule-title{
    font-family: 'NotoSansSemibold';
    font-size: 3vw;
    margin-bottom: 40px;
}
.schedule-section .section-label, .schedule-section .schedule-title{
    text-align: center;
}
.packages-section {
  display: flex;
  flex-direction: row;
  gap: 1.5vw;
  justify-content: center;
  align-items: flex-start;
  justify-content: space-between;
  font-family: 'NotoSansRegular', sans-serif;
  width: 100%;
  padding: 2vh 5vw 1vh 5vw;
  min-height: 340px;
}
.package-category {
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.package-title {
  color: #794E34;
  font-family: 'NotoSansBold', sans-serif;
  font-size: 1.1em;
  margin-bottom: 30px;
}
.package-title span {
  font-weight: normal;
}
.package-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 5px;
  align-items: flex-start;
}
.package-pill {
  border: 1.5px solid #2C1A0E;
  background-color: #ECEAE3;
  border-radius: 200px;
  padding: 6px 12px;
  color: #2C1A0E;
  font-size: 0.9em;
  margin-bottom: 0;

  appearance: none;
  cursor: pointer;
  text-align: left;
  font-family: 'NotoSansRegular', sans-serif;

  display: inline-flex;
  align-items: center;
  justify-content: flex-start; /* IMPORTANT: don’t space-between by default */
  gap: 12px;

  white-space: nowrap;

  /* IMPORTANT: prevent stretching */
  width: fit-content;
  max-width: 100%;
  flex: 0 0 auto;

  transition:
    background-color .25s ease,
    color .25s ease,
    border-color .25s ease,
    padding .25s ease,
    border-radius .25s ease,
    transform .2s ease;
  transform-origin: center;
}

.package-pill:focus { outline: none; }

.package-pill:focus-visible{
  outline: 2px solid #794E34;
  outline-offset: 2px;
}

.package-pill .pill-name{
  line-height: 1.2;
}

/* Hover (desktop vibe) */
.package-pill:hover{
  background-color: #794E34;
  color: #ECEAE3;
}

/* Active / expanded */
.package-pill.is-active{
  background-color: #2C1A0E;
  color: #ECEAE3;
  border-color: #2C1A0E;

  border-radius: 24px;
  padding: 10px 14px;
  white-space: normal;

  transform: scale(1.02);

  /* Now we want name left + extra content to the right */
  justify-content: space-between;
}

/* Always respect the hidden attribute */
.package-pill [hidden]{
  display: none !important;
}

/* Smooth open/close area */
.package-pill .pill-extra{
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  transition:
    max-height .28s ease,
    opacity .22s ease,
    transform .22s ease;
}

.package-pill.is-active .pill-extra{
  max-height: 50px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.package-pill.is-active .pill-price{
  font-family: 'NotoSansBold', sans-serif;
  letter-spacing: 0.2px;
}

/* CTA */
.package-pill .pill-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 6px 10px;
  border-radius: 999px;

  background: #ECEAE3;
  color: #794E34;
  border: 1px solid #ECEAE3;

  text-decoration: none;
  font-family: 'NotoSansBold', sans-serif;
  font-size: 0.85em;

  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.package-pill .pill-cta:hover{
  background: #794E34;
  color: #ECEAE3;
  border-color: #ECEAE3;
}

/* Active pill takes a whole row in the wrap layout */
.package-list{
  align-items: flex-start;
}

.package-list .package-pill.is-active{
  flex: 0 0 100%;   /* full row */
  width: 100%;      /* helps in some browsers */
  max-width: 100%;
  transform-origin: left center; /* optional: "grow from left" feel */
}

/* When it becomes full width, space-between makes sense */
.package-list .package-pill.is-active{
  justify-content: space-between;
}

/* PRODUCT SECTION */
.products-section {
  background: #794E34;
  padding: 7vh 7vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'NotoSansRegular', sans-serif;
  height: 80vh;
  min-height: 750px;
}
.product-label {
  color: #E4E0D5;
  font-family: 'NotoSansBold', sans-serif;
  font-size: 1.12em;
  margin-bottom: 26px;
  letter-spacing: 0.03em;
  align-self: flex-start;
}
.products-gallery {
  position: relative;
  width: 96vw;
  padding: 4vh 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products-scroll {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 12px 0 12px 0;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
}
.product-card {
  border-radius: 16px;
  min-width: 250px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 18px 14px 18px;
  scroll-snap-align: start;
  margin-bottom: 2px;
}
.product-card img {
  width: 250px;
  height: 300px;
  border-radius: 11px;
  object-fit: cover;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.05);
  margin-bottom: 18px;
}
.product-title {
  font-family: 'NotoSansBold', sans-serif;
  color: #2C1A0E;
  margin-bottom: 4px;
  font-size: 1em;
  line-height: 1.22em;
  letter-spacing: 0.02em;
  height: 40px;
}
.product-price {
  font-size: 0.9em;
  color: #E4E0D5;
  font-family: inherit;
  margin-bottom: 0px;
}
.product-cta-btn {
  display: inline-block;
  padding: 13px 48px;
  font-size: 1em;
  font-family: 'NotoSansSemibold', sans-serif;
  border-radius: 999px;
  background: #794E34;
  color: #E4E0D5;
  border: 1.5px solid #E4E0D5;
  box-shadow: 0 2px 2px 0 #432816 inset;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    background 0.32s cubic-bezier(.4,0,.2,1),
    opacity 0.7s cubic-bezier(.4,0,.2,1) var(--feature-delay, 0s),
    transform 0.7s cubic-bezier(.4,0,.2,1) var(--feature-delay, 0s); 
}
.product-cta-btn:hover {
  background: #2C1A0E;
  box-shadow: 0 2px 2px 0 #794E34 inset;
  color: #fff;
}
.scroll-arrow {
  background: transparent;
  border: none;
  color: #2C1A0E;
  font-size: 3em;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding: 0 16px;
  border-radius: 100px;
}
.scroll-arrow.left { left: 0px; top: 170px;}
.scroll-arrow.right { right: 0px; top: 170px; }
.products-scroll::-webkit-scrollbar {
  height: 8px;
  background: #2C1A0E;
}
.products-scroll::-webkit-scrollbar-thumb {
  background: #2C1A0E;
  border-radius: 99px;
}
.split-image-animate-section {
  background: #E4E0D5;
  display: flex;
  justify-content: center;
  width: 100%;
}
.split-image-animate {
  display: flex;
  width: 100%;
  height: 400px;
  overflow: hidden;
  gap: 0;
  position: relative;
  border-radius: 8px;
}
.split-img {
  object-fit: cover;
  transition:
    width 1.1s cubic-bezier(.7,0,.19,1),
    height 1.1s cubic-bezier(.7,0,.19,1);
  height: 100%;
}
.split-left {
  width: 46%;
  z-index: 2;
}
.split-right {
  width: 54%;
  z-index: 1;
}
.split-image-animate.animated {
  height: 650px;
}
.split-image-animate.animated .split-left {
  width: 28%;
}
.split-image-animate.animated .split-right {
  width: 72%;
}
/* REVIEWS AND GIFT CARD SECTION */
.reviews-giftcard-section {
    background: #E4E0D5;
    padding: 11vh 8vw;
    display: flex;
    flex-direction: row;
    color: #2C1A0E;
    gap: 2vw;
}
.review-container,
.giftcard-container {
  flex: 1 1 0;
  min-width: 0;
}
#momence-plugin-reviews,
#momence-plugin-reviews > div {
    max-height: 500px;
    overflow-y: auto;
    padding: 0;
    margin: 0;
}
.giftcard-inner{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.giftcard-title{
    font-size: 2em;
    color: #2C1A0E;
    font-family: 'NotoSansBold';
}
.giftcard-image{
    width: 100%;
    max-width: 340px;
    display: block;
    box-shadow: 0 4px 18px 0 rgba(0,0,0,0.05);
}
.giftcard-btn{
    text-decoration: none;
    font-family: 'NotoSansSemibold';
    letter-spacing: 0.05em;
    font-size: 1.2em;
    color: #2C1A0E;
    border: 1.5px solid #2C1A0E;
    box-shadow: 0 2px 2px 0 #9e9e9e inset;
    padding: 9px 20px;
    border-radius: 200px;
    transition: background 0.2s, color 0.2s;
    width: 45%;
    text-align: center;
    margin-top: 10px;
}
.giftcard-btn:hover{
    background: #794E34;
    box-shadow: 0 2px 2px 0 #975c35 inset;
}
/* FOOTER */
.footer-section {
    background: #2C1A0E;
    color: #E4E0D5;
    padding: 10px 3vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    height: 100vh;
    min-height: 840px;
    overflow: hidden;
}
.footer-logo{
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 95vw;
    opacity: 0.25;
}
.footer-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.footer-isotype{
    width: 1.2vw;
}
.footer-title{
    font-family: 'NotoSansBold';
    font-size: 3.5vw;
    color: #794E34;
    text-align: center;
    line-height: 1.2em;
    margin-bottom: 20px;
}
.footer-title span{
    font-family: 'cormorantGaramond', serif;
    font-size: 5.8vw;
}
.footer-box{
    z-index: 6;
    background-color: #794E34;
    padding: 8px 18px;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 420px;
    min-height: 400px;
    width: 750px;
}
.footer-box-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80%;
    width: 40%;
    padding-left: 5px;
}
iframe{
    border: none;
    width: 430px;
    height: 380px;
    border-radius: 12px;
}
.footer-box-icon{
    width: 100px;
    margin-bottom: 12px;
}
.footer-box-label{
  font-family: "NotoSansBold";
  font-size: 1.2em;
  margin-bottom: 6.5px;
}
.footer-box-link{
    text-decoration: underline;
    font-size: 1em;
    color: #E4E0D5;
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}
.footer-box-link:hover{
    color: #2C1A0E;
}
.footer-icon-link .default,
.footer-icon-link .hover {
  transition: opacity 0.25s;
  position: absolute;
  left: 0;
  top: 0;
}
.footer-icon-link {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 6px;
}
.footer-icon-link .hover {
  opacity: 0;
}
.footer-icon-link:hover .default {
  opacity: 0;
}
.footer-icon-link:hover .hover {
  opacity: 1;
  display: inline-block;
}
.footer-txt{
    font-size: 0.75em;
    opacity: 0.8;
}
.footer-txt a{
    color: #E4E0D5;
}
.footer-bottom-txt{
  font-family: 'NotoSansRegular', sans-serif;
  font-size: 0.7em;
  opacity: 0.55;
  width: 60%;
  text-align: center;
}
.footer-bottom-txt a{
  color: #E4E0D5;
}
.footer-txt a:hover{
  color: #2C1A0E;
}
/* Large Screens */
@media (min-width: 1501px) {
}

/* Extra Large devices (desktops) */
@media (min-width: 1300px) and (max-width: 1500px)  {
  .footer-title{
    font-size: 4vw;
}
}

/* Large devices (desktops) */
@media (min-width: 993px) and (max-width: 1299px) {
.packages-section {
    gap: 1.5vw;
    padding: 2vh 3vw;
}
.package-pill:hover{
    transform: translateY(-1px);
}
.footer-title{
    font-size: 4vw;
}
.footer-isotype{
    width: 1.2vw;
}
.footer-title{
    font-size: 4.5vw;
}
.footer-title span{
    font-size: 6.5vw;
}
.footer-bottom-txt{
  font-size: 0.7em;
  width: 70%;
}
.giftcard-btn{
    width: 60%;
}
}
@media (min-width: 769px) and (max-width: 992px) {
  .section-label{
    font-size: 1.2em;
}
.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-inner{
    width: 90%;
}
.about-isotype{
    width: 15vw;
    margin-left: 4px;
}
.about-title{
    font-size: 5.6vw;
    margin-bottom: 35px;
}
.photo-section-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  min-height: 800px;
  padding: 2vh 5vw;
}
.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.feature-card {
  padding: 24px 20px;
  width: 90%;
  min-width: 400px;
  max-width: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 2vh;
}
.packages-section {
  gap: 1.7vw;
  justify-content: space-between;
  padding: 2vh 0vw;
}
.package-list {
  gap: 7px 4px;
}
.package-pill {
  padding: 5px 8px;
  font-size: 0.85em;
}
.package-pill:hover{
  transform: translateY(-1px);
}
.scroll-arrow.left { left: -13px; top: 170px;}
.scroll-arrow.right { right: -13px; top: 170px; }
.reviews-giftcard-section {
    padding: 8vh 4vw;
    gap: 4vw;
}
.giftcard-inner .section-label{
    margin-bottom: 20px;
}
.giftcard-title{
    font-size: 1.8em;
}
.giftcard-image{
    max-width: 300px;
}
.giftcard-btn{
    width: 70%;
}
.footer-inner{
    gap: 50px;
}
.footer-isotype{
    width: 1.8vw;
}
.footer-title{
    font-size: 5.5vw;
}
.footer-title span{
    font-size: 6.8vw;
}
.footer-icon-link {
  margin-right: 10px;
}
.footer-bottom-txt{
  width: 80%;
}
}

/* Small screens (Mobile) */
@media (max-width: 769px) {
  .hero-nav {
    background-color: #E4E0D5;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.2);
    padding: 15px 15px;
}
.nav-left a, .nav-right .cta-btn {
    font-size: 1em;
}
.nav-left a{
  font-size: 0.9em;
  margin-right: 16px;
}
.nav-right .cta-btn {
    background: rgba(44,44,44,0.1);
    border: 1.5px solid #2C1A0E;
    padding: 7px 26px;
}
  .logo {
    font-size: 30vw;
    line-height: 0.65em;
}
.subtitle {
    font-size: 7.5vw;
}
  .section-label{
    font-size: 1em;
    margin-bottom: 30px;
}
.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10vh 8vw;
}
.about-inner{
    width: 95%;
}
.about-isotype{
    width: 22vw;
    margin-left: 3.5px;
    margin-bottom: 20px;
}
.about-title{
    font-size: 6.5vw;
    margin-bottom: 35px;
}
.photo-section-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  min-height: 800px;
  padding: 2vh 5vw;
}
.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 3vw;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.feature-card {
  padding: 14px 20px 35px 20px;
  width: 90%;
  min-width: 250px;
  max-width: 500px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 2vh;
}
.packages-section {
  flex-direction: column;
  gap: 1.7vw;
  padding: 0.5vh 0vw;
  margin-top: 40px;
}
.package-category {
  max-width: 400px;
  margin-bottom: 40px;
}
.package-title {
  margin-bottom: 16px;
}
.package-list {
  gap: 6.5px 5px;
}
.package-pill {
  padding: 5px 10px;
  font-size: 0.9em;
}
.package-pill.is-active{
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.package-pill.is-active .pill-extra{
  width: 100%;
  justify-content: space-between;
}
 .products-gallery {
  width: 90vw;
  padding: 4vh 6vw;
}
.scroll-arrow.left { left: -18px; top: 170px;}
.scroll-arrow.right { right: -18px; top: 170px; }
.split-image-animate.animated .split-left {
  width: 32%;
}
.split-image-animate.animated .split-right {
  width: 68%;
}
.reviews-giftcard-section {
    padding: 8vh 8vw;
    gap: 60px;
    flex-direction: column;
}
.giftcard-inner .section-label{
    margin-bottom: 0px;
}
.giftcard-title{
    font-size: 1.8em;
}
.giftcard-image{
    max-width: 300px;
}
.giftcard-btn{
    width: 75%;
}
.footer-inner{
    gap: 10px;
}
.footer-isotype{
    width: 3.5vw;
}
.footer-title{
    font-size: 7vw;
}
.footer-title span{
    font-size: 11vw;
}
.footer-box{
  flex-direction: column;
    padding: 25px 18px;
    border-radius: 12px;
    gap: 12px;
    height: 540px;
    min-height: 400px;
    width: 94%;
}
.footer-box-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80%;
    width: 100%;
    padding-left: 5px;
}
iframe{
    border: none;
    width: 100%;
    height: 340px;
    border-radius: 12px;
}
.footer-box-icon{
    width: 70px;
    margin-bottom: 0px;
}
.footer-box-label{
  font-size: 1.1em;
  margin-bottom: 5px;
}
.footer-icon-link {
  margin-right: 10px;
}
.footer-bottom-txt{
  width: 97%;
}

}




/* ABOUT PAGE */
.about-body{
  background-color: #2C1A0E;
  color: #E4E0D5;
}
.nav-left-about a{
  color: #E4E0D5;
}
.nav-right-about .cta-btn{
  color: #E4E0D5;
  border: 1.5px solid #E4E0D5;
}
.about-hero-section{
  display: flex;
  flex-direction: column;
  padding: 200px 2vw 50px 2vw;
  height: 100vh;
  min-height: 700px;
}
.about-hero-content{
  display: flex;
  flex-direction: row;
  align-items:flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}
.about-hero-content h1{
  font-family: 'NotoSansBold';
  font-size: 4.5em;
  line-height: 1em;
  width: 40%;
}
.about-hero-content p{
  margin-top: 8px;
  font-family: 'NotoSansRegular';
  font-size: 1.5em;
  line-height: 1.4em;
  width: 40%;
}
.about-hero-img{
  object-fit: cover;
  height: 500px;
}
/* OUR STORY */
.about-story{
  min-height: 800px;
  padding: 100px 20vw;
  display: flex;
  flex-direction: row;
  gap: 7%;
  align-items: center;
}
.story-img, .about-story-content{
  flex: 1 1 0;
}
.story-img img{
  object-fit: cover;
  width: 80%;
}
.about-story-content p{
  font-size: 1.2em;
}
.about-story-content h3{
  margin-top: 40px;
  font-size: 2em;
  color: #794E34;
}
.founder-desc{
  color: #794E34;
  font-size: 1.15em;
}
/* SCULPT METHOD */
.sculpt-method-section {
  display: flex;
  align-items: stretch;
  flex-direction: row;
  background: #794E34;
  padding: 0;
  min-height: 890px;
  height: 900px;
}
.sculpt-method-images {
  display: flex;
  gap: 0px;
  width: 45%; /* or desired width */
  max-width: 60vw;
  margin: 0 auto;
  margin-left: 90px;
}
.sculpt-image-loop {
  flex: 1 1 0;
  overflow: hidden;
  height: 100%;      /* set this as you like */
  position: relative;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.loop-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  animation: scroll-up 40s linear infinite;
}
.loop-down .loop-inner {
  animation: scroll-down 40s linear infinite;
}
.sculpt-image-loop img {
  width: 90%;
  height: 450px; /* Adjust height to fit column, must be the same for all images! */
  object-fit: cover;
  margin-bottom: 20px;
}
@keyframes scroll-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@keyframes scroll-down {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}
.sculpt-method-description {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  padding: 68px 7vw 67px 7vw;
  justify-content: center;
  position: relative;
}
.sculpt-method-title {
  font-family: 'CormorantGaramond', serif;
  font-size: 6em;
  font-weight: 600;
  margin: 0px 0px 80px 35px;
  position: absolute;
  top: 95px;
  left: 75px;
}
.sculpt-method-title span {
  font-family: 'Quiselle';
}
.method-line-bg{
  background-color: #E4E0D5;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 60px;
}
.sculpt-method-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  height: 450px;
  position: absolute;
  left: 50px;
  top: 300px;
}
.sculpt-method-list-item {
  color: #E4E0D5;
  font-size: 1.4em;
  font-family: 'NotoSansRegular', sans-serif;
}
.method-circle{
  width: 20px;
  margin-right: 16px;
}



/* Large Screens */
/* @media (min-width: 1501px) {
} */
/* Extra Large devices (desktops) */
@media (min-width: 1501px) and (max-width: 1650px)  {
.about-story{
  padding: 100px 14vw;
  gap: 4%;
}
.sculpt-method-title {
  font-size: 5em;
  top: 95px;
  left: 65px;
}
.sculpt-method-list-item {
  font-size: 1.3em;
}
}
/* Extra Large devices (desktops) */
@media (min-width: 1300px) and (max-width: 1500px)  {
.about-hero-content h1{
  font-size: 4em;
  width: 45%;
}
.about-hero-content p{
  font-size: 1.4em;
  width: 40%;
}
.about-story{
  padding: 100px 12vw;
  gap: 1%;
}
.story-img img{
  object-fit: cover;
  width: 75%;
}
.about-story-content p{
  font-size: 1.1em;
}
.about-story-content h3{
  margin-top: 35px;
  font-size: 1.9em;
  color: #794E34;
}
.sculpt-method-images {
  margin-left: 30px;
}
.sculpt-method-title {
  font-size: 4.7em;
  top: 95px;
  left: 50px;
}
.sculpt-method-list-item {
  font-size: 1.25em;
}
}
/* Large devices (desktops) */
@media (min-width: 993px) and (max-width: 1299px) {
.about-hero-content h1{
  font-size: 3.4em;
  width: 45%;
}
.about-hero-content p{
  margin-top: 10px;
  font-size: 1.2em;
  width: 40%;
}
.about-story{
  padding: 100px 10vw;
  gap: 0;
}
.story-img img{
  width: 75%;
}
.about-story-content p{
  font-size: 1.05em;
}
.about-story-content h3{
  margin-top: 35px;
  font-size: 1.7em;
}
.sculpt-method-images {
  width: 55%;
  max-width: 60vw;
  margin-left: 00px;
}
.method-line-bg{
  left: 20px;
}
.sculpt-method-list {
  left: 10px;
  top: 250px;
}
.sculpt-method-title {
  font-size: 3.7em;
  top: 95px;
  left: 0px;
}
.sculpt-method-list-item {
  font-size: 1.25em;
}
}
@media (min-width: 769px) and (max-width: 992px) {
.about-hero-content h1{
  font-size: 3em;
  width: 50%;
}
.about-hero-content p{
  margin-top: 8px;
  font-size: 1em;
  width: 42%;
}
.about-story{
  padding: 100px 8vw;
  gap: 0;
}
.story-img img{
  width: 85%;
}
.about-story-content p{
  font-size: 1em;
}
.about-story-content h3{
  margin-top: 25px;
  font-size: 1.4em;
}
.sculpt-method-section {
  min-height: 600px;
  height: 650px;
}
.sculpt-method-images {
  width: 55%;
  max-width: 60vw;
  margin-left: 0px;
}
.sculpt-image-loop img {
  width: 95%;
  height: 350px; 
  margin-bottom: 10px;
}
.method-line-bg{
  left: 30px;
}
.sculpt-method-list {
  top: 230px;
  left: 20px;
  min-height: 300px;
  height: 300px;
}
.sculpt-method-title {
  font-size: 2.7em;
  top: 95px;
  left: 5px;
}
.sculpt-method-list-item {
  font-size: 1em;
}
}
/* Small screens (Mobile) */
@media (max-width: 769px) {
.about-body .hero-nav {
    background-color: #2C1A0E;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.2);
    padding: 15px 15px;
}
  .about-hero-section{
  padding: 100px 2.5vw 50px 2.5vw;
}
.about-hero-content{
  display: flex;
  flex-direction: column;
  align-items:flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
}
.about-hero-content h1{
  font-size: 2.8em;
  line-height: 1.1em;
  width: 95%;
  margin-bottom: 8px;
}
.about-hero-content p{
  margin-top: 8px;
  font-size: 1.1em;
  width: 95%;
}
.about-story{
  flex-direction: column-reverse;
  padding: 80px 8vw;
  gap: 30px;
}
.story-img img{
  width: 100%;
}
.about-story-content p{
  font-size: 1em;
}
.about-story-content h3{
  margin-top: 25px;
  font-size: 1.4em;
}
.sculpt-method-section {
  flex-direction: column-reverse;
  min-height: 890px;
  height: 1200px;
}
.sculpt-method-images {
  display: flex;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  height: 650px;
}
.loop-inner {
  width: 95%;
  animation: scroll-up 50s linear infinite;
  margin: 0 auto;
}
.loop-down .loop-inner {
  animation: scroll-down 50s linear infinite;
}
.sculpt-image-loop img {
  width: 100%;
  height: 300px;
  margin: 0 auto 15px auto;
}
.method-line-bg{
  left: 30px;
}
.sculpt-method-list {
  top: 190px;
  left: 20px;
  min-height: 260px;
  height: 280px;
}
.sculpt-method-title {
  font-size: 3em;
  top: 65px;
  left: 10px;
}
.sculpt-method-list-item {
  font-size: 1.1em;
}
}