@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&family=Inter:wght@300;400;500&display=swap');

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

:root {
  --bg: #FAFAF8;
  --text: #1A1A1A;
  --grey: #EEEEE8;
  --overlay-bg: #D5D6CB;
  --border: rgba(26, 26, 26, 0.1);

  --serif: 'Playfair Display', serif;
  --sans: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Custom Cursor */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 1px solid var(--text);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
  mix-blend-mode: difference;
  filter: invert(1);
}

.cursor.hover {
  width: 60px;
  height: 60px;
  background: rgba(26, 26, 26, 0.1);
}

/* Containers */
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6rem;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* Navigation */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 3rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

.main-nav.scrolled {
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(10px);
  padding: 2rem 6rem;
  border-bottom-color: var(--border);
}

.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.menu-toggle {
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 10000;
}

.menu-toggle span {
  width: 100%;
  height: 1px;
  background: var(--text);
  transition: all 0.4s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(11.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-11.5px) rotate(-45deg);
}

/* Full Screen Menu */
.full-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.full-menu.active {
  opacity: 1;
  visibility: visible;
}

.menu-inner {
  display: flex;
  gap: 12rem;
}

.menu-section h3 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  opacity: 0.5;
  margin-bottom: 2.5rem;
}

.menu-section a {
  display: block;
  font-family: var(--serif);
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s;
}

.menu-section a.small {
  font-family: var(--sans);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.full-menu.active .menu-section a {
  animation: slideUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: calc(attr(data-index) * 0.1s);
}

.menu-section a:hover {
  opacity: 0.5;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 4rem;
  color: white;
  background: rgba(0, 0, 0, 0.15);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  max-width: 900px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 3rem;
}

/* Hero Actions - Dual Buttons */
.hero-actions {
  position: absolute;
  bottom: 4rem;
  right: 4rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hero-btn {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.hero-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: white;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  transform: translateY(-2px);
}

.hero-btn-filled {
  background: white;
  color: var(--text);
  border: 1px solid white;
}

.hero-btn-filled:hover {
  background: var(--text);
  color: white;
  transform: translateY(-2px);
}

/* ================================
   CURATED PRODUCTS SECTION
   ================================ */

.curated-products {
  padding: 8rem 0;
  border-bottom: 1px solid var(--border);
}

.products-header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--text);
}

.products-heading {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 70%;
}

.view-all-link {
  font-size: 0.9rem;
  font-weight: 400;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.view-all-link:hover {
  opacity: 0.6;
}

.products-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.products-scroll-container:active {
  cursor: grabbing;
}

.products-scroll-container::-webkit-scrollbar {
  display: none;
}

/* Tablet Grid Layout */
@media (min-width: 768px) and (max-width: 1024px) {
  .curated-products.expanded .products-wrapper {
    grid-template-columns: repeat(3, 1fr);
    padding: 3rem 4rem;
    gap: 2.5rem;
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .curated-products.expanded .products-wrapper {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem;
    gap: 2rem;
  }
}

/* Hidden Products (for View All expand) */
.hidden-product {
  display: none;
}

.products-wrapper {
  display: flex;
  gap: 3rem;
  padding: 4rem 6rem 2rem;
}

/* Expanded Grid Layout (when View All is clicked) */
.curated-products.expanded .products-scroll-container {
  overflow: visible;
}

.curated-products.expanded .products-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

/* Product Item Card */
.product-item {
  flex-shrink: 0;
  width: 310px;
}

.product-item-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.product-item-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 1.5rem;
}

.product-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

.product-item:hover .product-item-image img {
  transform: scale(1.05);
}

.product-item-content {
  padding: 0 0.5rem;
}

.product-item-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  opacity: 0.5;
  margin-bottom: 0.75rem;
}

.product-item-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.product-item-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--grey);
  margin-bottom: 1rem;
}

.product-item-price {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.product-item-cta {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--text);
  transition: all 0.3s ease;
}

.product-item:hover .product-item-cta {
  padding-bottom: 0.5rem;
}

/* Horizontal Scroll Stories */
/* Editorial Banner - Kinfolk Style */
.editorial-banner {
  margin: 6rem 0;
  position: relative;
}

.editorial-overlay {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.editorial-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.editorial-background.active {
  opacity: 1;
}


.editorial-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 90%;
  max-width: 700px;
}

.editorial-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.editorial-title {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.editorial-description {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.editorial-description em {
  font-style: italic;
}

.editorial-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s ease;
  background: transparent;
  color: #fff;
}

.editorial-cta:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}


/* Feature Split (Text + Image) */
.feature-split {
  padding: 10rem 0;
}

.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.feature-split.reverse .split-content {
  direction: rtl;
}

.feature-split.reverse .split-text {
  direction: ltr;
}

.split-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-name {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.feature-desc {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.feature-meta {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.5;
  font-weight: 500;
}

/* Center Feature */
.feature-center {
  padding: 10rem 0;
  text-align: center;
}

.center-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.center-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.center-image {
  max-width: 450px;
  margin: 0 auto;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image Overlay Section */
.image-overlay-section {
  padding: 0;
}

.overlay-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.overlay-story {
  position: relative;
  cursor: pointer;
}

.overlay-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.overlay-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.overlay-story:hover .overlay-img img {
  transform: scale(1.08);
}

.overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
}

.overlay-content h3 {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.overlay-content p {
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.overlay-content span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.8;
}

/* Newsletter */
.newsletter {
  padding: 10rem 0;
  background: var(--grey);
  text-align: center;
}

.newsletter-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.6;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.newsletter-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.newsletter-text {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 3rem;
  opacity: 0.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border);
  background: white;
  font-family: var(--sans);
  font-size: 0.95rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--text);
}

.newsletter-form button {
  padding: 1.2rem 3rem;
  background: var(--text);
  color: white;
  border: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  font-weight: 500;
  transition: opacity 0.3s;
}

.newsletter-form button:hover {
  opacity: 0.8;
}

/* Footer */
.site-footer {
  padding: 6rem 6rem 4rem;
  border-top: 1px solid var(--border);
  max-width: 100%;
}

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 6rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-family: var(--serif);
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.footer-col p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.7;
  max-width: 350px;
}

.footer-col h5 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  opacity: 0.6;
  font-weight: 500;
}

.footer-col a {
  display: block;
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.5;
}

.footer-social {
  display: flex;
  gap: 2rem;
}

.footer-social a {
  font-size: 0.85rem;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.footer-social a:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .container-wide {
    padding: 0 4rem;
  }

  .split-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .overlay-pair {
    grid-template-columns: 1fr;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {

  .container-wide,
  .container-narrow {
    padding: 0 2rem;
  }

  .main-nav {
    padding: 2rem;
  }

  .main-nav.scrolled {
    padding: 1.5rem 2rem;
  }

  .hero-overlay {
    padding: 0 2rem;
  }

  .hero-title {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    bottom: 2rem;
    right: 2rem;
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-btn {
    font-size: 0.75rem;
    padding: 0.85rem 1.5rem;
  }


  .products-wrapper {
    padding: 2rem;
    gap: 2rem;
  }

  .product-item {
    flex-direction: column;
    gap: 4rem;
  }

  .h-scroll-wrapper {
    padding: 0 2rem;
  }

  .menu-inner {
    flex-direction: column;
    gap: 4rem;
  }

  .menu-section a {
    font-size: 2.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .site-footer {
    padding: 4rem 2rem 3rem;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}