/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
html {
  scroll-behavior: smooth;
}
::-webkit-scrollbar {
  width: 6px; height: 6px;
}
::-webkit-scrollbar-track{
  background: transparent;
}
::-webkit-slider-thumb{
      background-color: rgba(209, 208, 205, 0.22); 
      border-radius: 4px; 
}
::-webkit-slider-thumb:hover{
  background-color: rgba(206, 201, 188, 0.22); 
}
*{
      scrollbar-width: thin; 
      scrollbar-color: rgba(206, 201, 188, 0.22)  transparent; /* thumb and track */

}

body {
  font-family: 'Inter', sans-serif;
  background: #F6F4F1;
  color: #2E2E2E;
  line-height: 1.6;

  scroll-snap-type: y mandatory;
  overflow-y: scroll;
}
 
section {
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  padding: 0 8%;
}
/* NAVIGATION */
.nav {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 25px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s ease;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}


.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: #000;
  font-weight: bold;
}
.nav.scrolled .logo { 
  font-size: 22px;
  color: #2E2E2E;
  font-weight: normal;
}

.nav a {
  text-decoration: none;
  color: #444242;
  margin-left: 30px;
  transition: opacity 0.3s ease;
}

.nav a:hover {
  opacity: 0.6;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  padding: 0 8%;
  /* background: url('hero01.png') right center / 60% auto no-repeat #F6F4F1 fixed; */

  position: relative;  
  background: #F6F4F1;
  overflow: hidden; 
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero-link {
  font-size: 16px;
  color: #444;
  text-decoration: none;
  border-bottom: 1px solid #aaa;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.hero-link:hover {
  opacity: 0.6;
}
.hero-image {
  flex: 1;
  height: 500px;
  
}
.hero-video {
  position: absolute;
  right: 0%;
  top: 0%;
 
  width: 100%;
 z-index:0;
  min-width: 720px;
  pointer-events: none;
  object-fit: contain; /* VERY IMPORTANT */
}

/* SECTION */
.section {
  padding: 120px 8%;
}

.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
.section02 {
  position: relative;
  background: #E7E3DA;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 8%;
}
 
.section02::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('section02.png') left center / cover no-repeat fixed;
  filter: blur(8px);
  /*  transform: scale(1.05);prevents blur edge cropping */
  opacity: 0.3;
  z-index: 0;
}

.section02 .image {
  flex: 1;
  height: 60vh;
  background: url('section02.png') left center  no-repeat #d5d1c6;
  transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1);
  background-size:cover;
  position: relative; 
} 

.section02 .text {
  flex: 1;
  max-width: 500px;
  position: relative;
}
 
.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  margin-bottom: 30px;
  line-height: 1.3;
}

.section p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #555;
}

/* HOW IT WORKS */
.centered {
  text-align: center;
}

.steps {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  max-width: 1000px;
  margin: auto;
}

.step {
  flex: 1;
  text-align: center;
}

.icon {
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 14px;
}


.step h3 {
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 15px;
}
.how-section {
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
}

.how-header {
  text-align: center;
  margin-bottom: 80px;
  margin-top: 80px;
}
.color-header {
  text-align: center; 
}.color-header h2 {
  text-align: center;
  margin-bottom: 10px;
}

.how-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 60px);
  margin-bottom: 10px;
}

.how-header p {
  color: #777;
  font-size: 18px;
}

.how-step {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
}

.how-step.reverse {
  flex-direction: row-reverse;
}

.how-image {
  flex: 1;
  height: 57vh; 
  max-height: 550px;
  transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1);
  background-size: auto 110%;
  background-position: center;
  border-radius: 20px;
  transform: scale(1);
  box-shadow: 0 0 0px 0px rgba(0,0,0,0.04);
}
.how-step:hover .how-image {
  transform: scale(1.05);
  background-size: auto 100%;
  box-shadow: 10px 10px 25px 30px rgba(0,0,0,0.09);
}
.how-text {
  flex: 1;
  max-width: 500px;
}

.step-number {
  font-size: 14px;
  letter-spacing: 2px;
  color: #aaa;
  display: block;
  margin-bottom: 20px;
}

.how-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.how-text p {
  font-size: 18px;
  color: #555;
}

.choose-img {
  background-image: url('step01.png');
}

.express-img {
  background-image: url('step02.png');
}

.interact-img {
  background-image: url('step03.png');
}
/* COLORS */
.colors-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #F6F4F1;
  text-align: center;
  padding: 0 8%;
  background: #fdfdfd;
}

/* Band Image Area */
.band-display {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
}

.band-display img {
  max-height: 100%;
  transition: opacity 0.4s ease;
}

/* Color List */
.color-selector {
  display: flex;
  gap: 60px;
  margin-bottom: 30px;
}

.color-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  cursor: pointer;
  color: #777;
  transition: color 0.3s ease;
  position: relative;
}

.color-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #222;
  transition: width 0.3s ease;
  opacity: 0.3;
}

.color-item:hover,
.color-item.active {
  color: #222;
}
.color-item[data-color="red"]:after {
  background: #972626;
}
.color-item[data-color="yellow"]:after {
  background: #dabf47;
}
.color-item[data-color="blue"]:after {
  background: #0bafcc;
}
.color-item[data-color="black"]:after {
  background: #0c0c0c;
} 
.color-item.active::after {
  width: 100%;
  opacity: 0.3;
}

/* Description */
.color-description {
  max-width: 500px;
  font-size: 18px;
  color: #555;
  transition: opacity 0.3s ease;
  min-height: 70px;
}


/* QUOTE */
.quote {
  justify-content: center;
  text-align: center;
  padding: 0 15%; 
  flex:1;
  display: flex;
  align-items: center;
}

.quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 400;
}
.quote blockquote::before {
  content: "“";
  display: block;
  font-size: 100px;
  color: rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

/* FOOTER */
.footer {
  display: flex;
  justify-content: space-between;
  padding: 80px 8%;
  font-size: 14px;
  border-top: 1px solid #e5e5e5;
}

.footer h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  margin-bottom: 10px;
}

.footer a {
  display: block;
  text-decoration: none;
  color: #555;
  margin-bottom: 10px;
  transition: opacity 0.3s ease;
}
.footer-social a i { margin-right: 8px; }
.footer a:hover {
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 1000px) {

  .split,
  .steps,
  .color-grid,
  .footer {
    flex-direction: column;
    text-align: center;
  }

  section {
    padding: 0 8%;
  }

  .section02 .image {
    height: 40vh;
    margin-bottom: 40px;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(60px);
  filter: blur(8px);
  transition: 
    opacity 1.2s cubic-bezier(.16,1,.3,1),
    transform 1.2s cubic-bezier(.16,1,.3,1),
    filter 1.2s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}