@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  .material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  }
  body {
    background-color: #FEFCFA;
    color: #2C2522;
  }
}

:root {
      --red: #C0392B;
      --red-deep: #922B21;
      --red-soft: #F5CEC7;
      --red-blush: #FDF0EE;
      --cream: #FBF7F3;
      --warm-white: #FEFCFA;
      --charcoal: #2C2522;
      --charcoal-mid: #5C4A44;
      --stone: #9E8B84;
      --border: rgba(192, 57, 43, 0.12);
      --border-strong: rgba(192, 57, 43, 0.25);
      --gold: #C9A96E;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--warm-white);
      color: var(--charcoal);
      overflow-x: hidden;
    }

    .serif {
      font-family: 'Cormorant Garamond', serif;
    }

    .section {
      padding: 64px 0;
      scroll-margin-top: 80px;
    }

    .section-sm {
      padding: 64px 0;
      scroll-margin-top: 80px;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }


    /* LANG TOGGLE */
    .lang-switch {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: 12px;
    }

    .lang-label {
      font-size: 11px;
      font-weight: 500;
      color: var(--stone);
      transition: color 0.2s;
    }

    .lang-label.active {
      color: var(--red);
    }

    .switch {
      position: relative;
      display: inline-block;
      width: 36px;
      height: 20px;
    }

    .switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: var(--border-strong);
      transition: .4s;
      border-radius: 20px;
    }

    .slider:before {
      position: absolute;
      content: "";
      height: 14px;
      width: 14px;
      left: 3px;
      bottom: 3px;
      background-color: white;
      transition: .4s;
      border-radius: 50%;
    }

    input:checked+.slider {
      background-color: var(--border-strong);
    }

    input:checked+.slider:before {
      transform: translateX(16px);
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 999;
      background: rgba(254, 252, 250, 0.96);
      backdrop-filter: blur(12px);
      border-bottom: 0.5px solid var(--border);
      padding: 0 40px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: box-shadow 0.3s;
    }

    nav.scrolled {
      box-shadow: 0 2px 32px rgba(44, 37, 34, 0.06);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .nav-logo img {
  height: 150px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  display: block;
}

    .nav-links {
      display: flex;
      align-items: center;
      gap: 30px;
      list-style: none;
    }

    .nav-links a {
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--charcoal-mid);
      text-decoration: none;
      transition: color 0.2s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--red);
      transform: scaleX(0);
      transition: transform 0.3s;
      transform-origin: left;
    }

    .nav-links a:hover {
      color: var(--red);
    }

    .nav-links a:hover::after {
      transform: scaleX(1);
    }

    .nav-links a.active {
      color: var(--red);
    }

    .nav-links a.active::after {
      transform: scaleX(1);
    }

    .nav-cta {
      background: var(--red) !important;
      color: #fff !important;
      padding: 10px 22px;
      border-radius: 2px;
      font-weight: 500 !important;
      transition: background 0.2s !important;
    }

    .nav-cta::after {
      display: none !important;
    }

    .nav-cta:hover {
      background: var(--red-deep) !important;
    }

    .hamburger {
      display: none;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 1.5px;
      background: var(--charcoal);
      margin: 5px 0;
      transition: all 0.3s;
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: flex-start;
      position: relative;
      overflow: hidden;
      padding-top: clamp(130px, 18vh, 180px);
      padding-bottom: 80px;
      background: var(--charcoal);
    }

    .hero-fabric-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .hero-fabric-bg::before {
      content: '';
      position: absolute;
      inset: -20%;
      background: repeating-linear-gradient(-55deg, rgba(192, 57, 43, 0.04) 0px, rgba(192, 57, 43, 0.04) 1px, transparent 1px, transparent 40px), repeating-linear-gradient(35deg, rgba(201, 169, 110, 0.03) 0px, rgba(201, 169, 110, 0.03) 1px, transparent 1px, transparent 60px);
      animation: fabricDrift 20s linear infinite;
    }

    @keyframes fabricDrift {
      from {
        transform: translate(0, 0);
      }

      to {
        transform: translate(40px, 40px);
      }
    }

    .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
    }

    .hero-orb-1 {
      width: 600px;
      height: 600px;
      top: -10%;
      right: -5%;
      background: radial-gradient(circle, rgba(192, 57, 43, 0.18) 0%, transparent 70%);
      animation: orbFloat 8s ease-in-out infinite;
    }

    .hero-orb-2 {
      width: 400px;
      height: 400px;
      bottom: 5%;
      left: 10%;
      background: radial-gradient(circle, rgba(201, 169, 110, 0.12) 0%, transparent 70%);
      animation: orbFloat 12s ease-in-out infinite reverse;
    }

    @keyframes orbFloat {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      50% {
        transform: translate(20px, -20px) scale(1.05);
      }
    }

    .hero-slide-panel {
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 40%;
      overflow: hidden;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 1.2s ease;
    }

    .hero-slide.active {
      opacity: 1;
    }

    .hero-slide-card {
      width: 78%;
      max-width: 340px;
      border-radius: 4px;
      overflow: hidden;
      border: 0.5px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.03);
    }

    .hero-slide-visual {
      aspect-ratio: 3/4;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
.hero-slide-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.75) 0%,
      rgba(0,0,0,0.45) 30%,
      rgba(0,0,0,0.08) 60%,
      rgba(0,0,0,0) 100%
    );
  z-index: 2;
  pointer-events: none;
}
    .slide-fabric-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

   .slide-product-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  z-index: 5;
}

    .slide-product-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 300;
      color: #fff;
      font-style: italic;
      text-shadow: 0 2px 10px rgba(0,0,0,0.35);
    }

    .slide-product-fabric {
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 4px;
      text-shadow: 0 1px 8px rgba(0,0,0,0.30);
    }

    .hero-slide-dots {
      position: absolute;
      bottom: 32px;
      right: 0;
      width: 40%;
      display: flex;
      justify-content: center;
      gap: 8px;
      z-index: 10;
    }

    .hero-dot {
      width: 20px;
      height: 2px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 1px;
      cursor: pointer;
      transition: background 0.3s, width 0.3s;
      border: none;
    }

    .hero-dot.active {
      background: var(--red);
      width: 36px;
    }

    .hero-content {
      position: relative;
      z-index: 5;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 40%;
      align-items: center;
    }

    .hero-text {
      padding-right: 60px;
    }

    .hero-eyebrow {
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--red);
      font-weight: 500;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .hero-eyebrow::before {
      content: '';
      width: 32px;
      height: 1px;
      background: var(--red);
    }

    .hero-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(48px, 5vw, 76px);
      font-weight: 300;
      line-height: 1.1;
      color: #fff;
      margin-bottom: 20px;
      letter-spacing: -0.01em;
    }

    .hero-headline em {
      font-style: italic;
      color: var(--red-soft);
    }

    .hero-moment {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(18px, 1.8vw, 23px);
      font-style: italic;
      font-weight: 300;
      color: var(--gold);
      margin-bottom: 24px;
      line-height: 1.5;
      padding-left: 20px;
      border-left: 2px solid var(--gold);
    }

    .hero-sub {
      font-size: 15px;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.5);
      max-width: 440px;
      margin-bottom: 48px;
      font-weight: 300;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--red);
      color: #fff;
      padding: 16px 36px;
      font-size: 13px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 500;
      text-decoration: none;
      border-radius: 2px;
      transition: background 0.2s, transform 0.2s;
      display: inline-block;
    }

    .btn-primary:hover {
      background: var(--red-deep);
      transform: translateY(-1px);
    }

    .btn-ghost {
      color: rgba(255, 255, 255, 0.55);
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 400;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color 0.2s;
    }

    .btn-ghost:hover {
      color: #fff;
    }

    .btn-ghost .arrow {
      transition: transform 0.2s;
    }

    .btn-ghost:hover .arrow {
      transform: translateX(4px);
    }

    /* FILTER BAR */
    .filter-bar {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 48px;
    }

    .filter-btn {
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 8px 18px;
      border: 1px solid var(--border-strong);
      border-radius: 2px;
      background: #fff;
      color: var(--stone);
      cursor: pointer;
      transition: all 0.2s;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
    }

    .filter-btn:hover {
      border-color: var(--red);
      color: var(--red);
    }

    .filter-btn.active {
      background: var(--red);
      border-color: var(--red);
      color: #fff;
    }

    .product-card {
      transition: transform 0.35s, box-shadow 0.35s, opacity 0.35s;
    }

    .product-card.hidden {
      opacity: 0;
      transform: scale(0.95);
      pointer-events: none;
      height: 0;
      overflow: hidden;
      margin: 0;
      padding: 0;
    }

    /* BACK TO TOP */
    .back-top {
      position: fixed;
      bottom: 32px;
      right: 32px;
      width: 44px;
      height: 44px;
      background: var(--red);
      border: none;
      border-radius: 50%;
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.3s, transform 0.3s;
      z-index: 900;
      box-shadow: 0 4px 20px rgba(192, 57, 43, 0.35);
    }

    .back-top.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .back-top:hover {
      background: var(--red-deep);
    }

    /* PRODUCT CARD COUNT */
    .collections-meta {
      text-align: center;
      margin-bottom: 20px;
      font-size: 13px;
      color: var(--stone);
      letter-spacing: 0.06em;
    }

    /* MARQUEE */
    @keyframes marquee {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    .marquee-section {
        width: 100%;
        overflow: hidden;
        position: relative;
    }
    
    .marquee-track {
      display: flex;
      animation: marquee 35s linear infinite;
      white-space: nowrap;
    }

    .marquee-item {
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.9);
      font-weight: 400;
      padding: 0 40px;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .marquee-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      display: inline-block;
    }

    /* SECTION ELEMENTS */
    .section-label {
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--red);
      font-weight: 500;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .section-label::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--red);
    }

    .section-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 3.5vw, 52px);
      font-weight: 300;
      line-height: 1.2;
      color: var(--charcoal);
      margin-bottom: 28px;
    }

    .section-headline em {
      font-style: italic;
      color: var(--red);
    }

    .body-text {
      font-size: 16px;
      line-height: 1.85;
      color: var(--charcoal-mid);
      font-weight: 300;
      margin-bottom: 20px;
    }

    /* STORY */
    .story-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }

    .story-visual-inner {
      background: var(--red-blush);
      border: 1px solid var(--border-strong);
      border-radius: 4px;
      padding: 60px 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .story-visual-inner::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 180px;
      height: 180px;
      border: 1px solid var(--border-strong);
      border-radius: 50%;
    }

    .story-logo {
  width: 225px;
  height: auto;
  display: block;
  margin: 0 auto 24px auto;
  object-fit: contain;
}
    .story-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-style: italic;
      color: var(--charcoal-mid);
      line-height: 1.6;
    }

    .story-accent {
      margin-top: 32px;
      padding: 24px 28px;
      background: #fff;
      border-left: 2px solid var(--red);
      font-family: 'Cormorant Garamond', serif;
      font-size: 19px;
      font-style: italic;
      color: var(--charcoal);
      line-height: 1.6;
    }

    /* COLLECTIONS */
    .collections-bg {
      background: var(--cream);
    }

    .collections-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .product-card {
      background: #fff;
      border: 0.5px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
      transition: transform 0.35s, box-shadow 0.35s;
      cursor: default;
    }

    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(44, 37, 34, 0.1);
    }

    .product-thumb {
      aspect-ratio: 3/4;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .product-thumb .product-icon {
      font-size: 72px;
      opacity: 0.15;
      color: var(--red);
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 300;
    }

    .product-thumb-overlay {
      position: absolute;
      inset: 0;
      background: rgba(44, 37, 34, 0.72);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .product-card:hover .product-thumb-overlay {
      opacity: 1;
    }

    .product-thumb-overlay span {
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.9);
      font-weight: 500;
      text-align: center;
      padding: 0 20px;
    }

    .product-thumb-bg-1 {
      background: #FDF0EE;
    }

    .product-thumb-bg-2 {
      background: #F0EBF5;
    }

    .product-thumb-bg-3 {
      background: #EEF4F0;
    }

    .product-thumb-bg-4 {
      background: #FBF5E8;
    }

    .product-thumb-bg-5 {
      background: #EAF0F8;
    }

    .product-body {
      padding: 24px;
    }

    .product-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 400;
      color: var(--charcoal);
      margin-bottom: 8px;
    }

    .product-desc {
      font-size: 13px;
      color: var(--stone);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .product-fabrics {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }

    .fabric-tag {
      font-size: 10px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: var(--red-blush);
      color: var(--red-deep);
      padding: 4px 10px;
      border-radius: 2px;
      font-weight: 500;
    }

    /* PILLARS */
    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      background: var(--border);
      border: 0.5px solid var(--border);
    }

    .pillar {
      background: #fff;
      padding: 48px 36px;
      transition: background 0.3s;
    }

    .pillar:hover {
      background: var(--red-blush);
    }

    .pillar-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 56px;
      font-weight: 300;
      color: var(--border-strong);
      line-height: 1;
      margin-bottom: 20px;
      transition: color 0.3s;
    }

    .pillar:hover .pillar-num {
      color: var(--red-soft);
    }

    .pillar-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 400;
      color: var(--charcoal);
      margin-bottom: 12px;
    }

    .pillar-text {
      font-size: 13px;
      color: var(--stone);
      line-height: 1.7;
    }

    .pillar-accent {
      width: 24px;
      height: 2px;
      background: var(--red);
      margin-bottom: 20px;
      transition: width 0.3s;
    }

    .pillar:hover .pillar-accent {
      width: 40px;
    }

    /* FABRICS DARK */
    .fabrics-bg {
      background: var(--charcoal);
    }

    .fabrics-bg .section-label {
      color: var(--gold);
    }

    .fabrics-bg .section-label::before {
      background: var(--gold);
    }

    .fabrics-bg .section-headline {
      color: #fff;
    }

    .fabrics-bg .section-headline em {
      color: var(--gold);
    }

    .fabrics-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, 0.08);
    }

    .fabric-card {
      background: var(--charcoal);
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
    }

    .fabric-card:hover {
      background: #3a2f2a;
    }

    .fabric-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 80px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.04);
      position: absolute;
      top: 12px;
      right: 20px;
      line-height: 1;
    }

    .fabric-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 300;
      color: #fff;
      margin-bottom: 12px;
    }

    .fabric-desc {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.7;
    }

    .fabric-bar {
      width: 32px;
      height: 1px;
      background: var(--gold);
      margin-bottom: 20px;
      transition: width 0.3s;
    }

    .fabric-card:hover .fabric-bar {
      width: 56px;
    }

    /* FIND US — REDESIGNED (no instructions) */
    .find-bg {
      background: var(--cream);
    }

    .find-full {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border: 0.5px solid var(--border-strong);
      border-radius: 4px;
      overflow: hidden;
    }

    .find-left {
      background: var(--red);
      padding: 80px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .find-left .section-label {
      color: rgba(255, 255, 255, 0.6);
    }

    .find-left .section-label::before {
      background: rgba(255, 255, 255, 0.4);
    }

    .find-left .section-headline {
      color: #fff;
      font-size: clamp(32px, 3vw, 46px);
      margin-bottom: 20px;
    }

    .find-left .section-headline em {
      color: var(--gold);
      font-style: italic;
    }

    .find-right {
      background: #fff;
      padding: 80px 60px;
    }

    .find-presence-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 36px;
    }

    .find-presence-card {
      padding: 28px 20px;
      background: var(--red-blush);
      border: 0.5px solid var(--border-strong);
      border-radius: 2px;
      text-align: center;
    }

    .find-presence-card .pres-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 44px;
      font-weight: 300;
      color: var(--red);
      line-height: 1;
      margin-bottom: 6px;
    }

    .find-presence-card .pres-label {
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--stone);
    }

    .find-cta-strip {
      margin-top: 36px;
      padding: 24px 28px;
      background: var(--charcoal);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .find-cta-strip p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 19px;
      font-style: italic;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.4;
    }

    .find-cta-strip a {
      background: var(--red);
      color: #fff;
      padding: 12px 22px;
      border-radius: 2px;
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 500;
      text-decoration: none;
      white-space: nowrap;
      transition: background 0.2s;
    }

    .find-cta-strip a:hover {
      background: var(--red-deep);
    }

    /* TESTIMONIALS */
    .testi-bg {
      background: var(--charcoal);
    }

    .testi-bg .section-label {
      color: var(--gold);
    }

    .testi-bg .section-label::before {
      background: var(--gold);
    }

    .testi-bg .section-headline {
      color: #fff;
    }

    .testi-bg .section-headline em {
      color: var(--gold);
    }

    .testi-slider {
      position: relative;
      overflow: hidden;
    }

    .testi-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .testi-slide {
      min-width: 100%;
      padding: 0 80px;
    }

    .testi-inner {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
    }

    .testi-stars {
      display: flex;
      justify-content: center;
      gap: 4px;
      margin-bottom: 28px;
    }

    .star {
      color: var(--gold);
      font-size: 18px;
    }

    .testi-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(21px, 2.4vw, 31px);
      font-weight: 300;
      font-style: italic;
      color: rgba(255, 255, 255, 0.88);
      line-height: 1.65;
      margin-bottom: 36px;
    }

    .testi-quote::before {
      content: '\201C';
      color: var(--red);
    }

    .testi-quote::after {
      content: '\201D';
      color: var(--red);
    }

    .testi-author {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }

    .author-divider {
      width: 32px;
      height: 1px;
      background: var(--gold);
      margin-bottom: 4px;
    }

    .author-name {
      font-size: 14px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
      letter-spacing: 0.06em;
    }

    .author-detail {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.35);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .testi-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-top: 56px;
    }

    .testi-btn {
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background: none;
      border-radius: 50%;
      color: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }

    .testi-btn:hover {
      border-color: var(--red);
      color: var(--red);
    }

    .testi-dots-row {
      display: flex;
      gap: 8px;
    }

    .testi-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      cursor: pointer;
      transition: background 0.3s;
      border: none;
    }

    .testi-dot.active {
      background: var(--red);
    }

    .testi-upload {
      margin-top: 64px;
      text-align: center;
      padding: 36px;
      border: 1px dashed rgba(255, 255, 255, 0.12);
      border-radius: 4px;
    }

    .testi-upload p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.3);
      margin-bottom: 16px;
    }

    .testi-upload a {
      display: inline-block;
      padding: 12px 28px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      text-decoration: none;
      border-radius: 2px;
      transition: all 0.2s;
    }

    .testi-upload a:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* INSTAGRAM */
    .insta-strip {
      background: var(--red);
      padding: 60px 0;
      text-align: center;
    }

    .insta-strip .serif {
      font-size: clamp(28px, 3.5vw, 48px);
      font-weight: 300;
      color: #fff;
      font-style: italic;
      margin-bottom: 8px;
    }

    .insta-strip .sub {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.7);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 32px;
    }

    .insta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      color: var(--red);
      padding: 14px 32px;
      font-size: 13px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 500;
      text-decoration: none;
      border-radius: 2px;
      transition: background 0.2s, transform 0.2s;
    }

    .insta-btn:hover {
      background: var(--red-blush);
      transform: translateY(-2px);
    }

    /* CONTACT PAGE */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: start;
    }

    .contact-channels {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .channel {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px 24px;
      background: var(--red-blush);
      border: 0.5px solid var(--border-strong);
      border-radius: 2px;
      text-decoration: none;
      color: inherit;
      transition: background 0.2s;
    }

    .channel:hover {
      background: var(--red-soft);
    }

    .channel-icon {
      width: 36px;
      height: 36px;
      background: var(--red);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .channel-icon svg {
      width: 18px;
      height: 18px;
      color: #fff;
    }

    .channel-label {
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--stone);
      margin-bottom: 2px;
    }

    .channel-val {
      font-size: 15px;
      font-weight: 400;
      color: var(--charcoal);
    }

    .contact-form-wrap {
      background: var(--cream);
      border: 0.5px solid var(--border-strong);
      border-radius: 4px;
      padding: 48px 40px;
    }

    .form-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 300;
      color: var(--charcoal);
      margin-bottom: 8px;
    }

    .form-sub {
      font-size: 13px;
      color: var(--stone);
      margin-bottom: 32px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--stone);
      margin-bottom: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      font-size: 14px;
      font-family: 'DM Sans', sans-serif;
      background: #fff;
      border: 0.5px solid var(--border-strong);
      border-radius: 2px;
      color: var(--charcoal);
      outline: none;
      transition: border-color 0.2s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--red);
    }

    .form-group textarea {
      height: 100px;
      resize: none;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .submit-btn {
      width: 100%;
      background: var(--red);
      color: #fff;
      padding: 14px;
      font-size: 13px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 500;
      border: none;
      border-radius: 2px;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      transition: background 0.2s;
      margin-top: 8px;
    }

    .submit-btn:hover {
      background: var(--red-deep);
    }

    /* FAQ */
    .faq-bg {
      background: var(--cream);
    }

    .faq-wrap {
      max-width: 760px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 0.5px solid var(--border-strong);
    }

    .faq-q {
      width: 100%;
      text-align: left;
      padding: 24px 0;
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 400;
      color: var(--charcoal);
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      transition: color 0.2s;
    }

    .faq-q:hover {
      color: var(--red);
    }

    .faq-q .faq-icon {
      width: 24px;
      height: 24px;
      border: 1px solid var(--border-strong);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s, border-color 0.2s;
    }

    .faq-q .faq-icon svg {
      width: 12px;
      height: 12px;
      transition: transform 0.3s;
    }

    .faq-q.open .faq-icon {
      background: var(--red);
      border-color: var(--red);
    }

    .faq-q.open .faq-icon svg {
      transform: rotate(45deg);
    }

    .faq-q.open .faq-icon svg path {
      stroke: #fff;
    }

    .faq-a {
      display: none;
      padding: 0 0 24px;
      font-size: 15px;
      color: var(--charcoal-mid);
      line-height: 1.75;
    }

    .faq-a.open {
      display: block;
    }

    /* FOOTER */
    footer {
      background: var(--charcoal);
      color: rgba(255, 255, 255, 0.6);
      padding: 80px 0 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }

    .footer-brand img {
      height: 200px;
      width: auto;
      margin-top: -65px;
      margin-bottom: -50px;
      filter: brightness(0) invert(1);
      opacity: 0.8;
    }

    .footer-brand p {
      font-size: 13px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.45);
      max-width: 280px;
    }

    .footer-col-title {
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 20px;
      font-weight: 500;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col ul li {
      margin-bottom: 10px;
    }

    .footer-col ul li a {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-col ul li a:hover {
      color: #fff;
    }

    .footer-bottom {
      border-top: 0.5px solid rgba(255, 255, 255, 0.08);
      padding-top: 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.3);
    }

    .footer-bottom a {
      color: rgba(255, 255, 255, 0.3);
      text-decoration: none;
    }

    .footer-bottom a:hover {
      color: rgba(255, 255, 255, 0.6);
    }

    .footer-reg {
      color: var(--gold);
      opacity: 0.7;
    }

    .page {
      display: none;
    }

    .page.active {
      display: block;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(32px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes marquee {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    .animate-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .animate-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .delay-1 {
      transition-delay: 0.1s;
    }

    .delay-2 {
      transition-delay: 0.2s;
    }

    .delay-3 {
      transition-delay: 0.3s;
    }

    .notify {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 9999;
      background: var(--charcoal);
      color: #fff;
      padding: 16px 24px;
      border-radius: 4px;
      font-size: 14px;
      max-width: 320px;
      transform: translateY(120%);
      opacity: 0;
      transition: transform 0.4s, opacity 0.4s;
      border-left: 3px solid var(--red);
    }

    .notify.show {
      transform: translateY(0);
      opacity: 1;
    }

    @media(max-width:900px) {
      .container {
        padding: 0 24px;
      }

      nav {
        padding: 0 24px;
      }

      .nav-links {
        display: none;
      }

      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(254, 252, 250, 0.98);
        backdrop-filter: blur(12px);
        padding: 32px 24px;
        gap: 24px;
        border-bottom: 0.5px solid var(--border);
        z-index: 998;
      }

      .hamburger{
          display:block !important;
          position:relative;
          z-index:999999;
      }

      .hero-content {
        grid-template-columns: 1fr;
      }

      .hero-slide-panel,
      .hero-slide-dots {
        display: none;
      }

      .hero-text {
        padding-right: 0;
      }

      .story-grid,
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .products-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .pillars-grid {
        grid-template-columns: 1fr 1fr;
      }

      .fabrics-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }

      .find-full {
        grid-template-columns: 1fr;
      }

      .find-cta-strip {
        flex-direction: column;
        text-align: center;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 40px 0;
        scroll-margin-top: 80px;
      }

      .testi-slide {
        padding: 0 24px;
      }
    }

    @media(max-width:600px) {
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .pillars-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .find-left,
      .find-right {
        padding: 48px 28px;
      }
    }
