    /* ----- RESET & BASE ----- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
    }
    body {
      font-family: 'Instrument Sans', sans-serif;
      background: #FAF8F5;
      color: #1A1A1A;
      overflow-x: hidden;
      line-height: 1.5;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { display: block; max-width: 100%; height: auto; }
    .container {
      max-width: 1600px;
      margin: 0 auto;
      padding: 0 5rem;
    }
    @media (max-width: 1400px) {
      .container { padding: 0 4rem; }
    }
    @media (max-width: 1024px) {
      .container { padding: 0 3rem; }
    }
    @media (max-width: 768px) {
      .container { padding: 0 1.5rem; }
    }

    /* ----- UTILITY BAR ----- */
    .utility-bar {
      background: #222222;
      color: #B8945C;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.6rem 0;
      text-align: center;
      border-bottom: 1px solid #3A3A3A;
      font-weight: 400;
    }
    .utility-bar span { margin: 0 1.5rem; opacity: 0.9; }

    /* ----- HEADER / NAV (Light) ----- */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.3s;
      padding: 0.8rem 0;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(0,0,0,0.04);
    }
    header.scrolled {
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    }
    .nav-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      font-family: 'Bodoni Moda', serif;
      font-size: 1.8rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      color: #1A1A1A;
    }
    .logo span { color: #B8945C; }
    .nav-links {
      display: flex;
      gap: 2.5rem;
      font-weight: 400;
      font-size: 0.8rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #2C2C2C;
    }
    .nav-links a { transition: color 0.2s; position: relative; }
    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 1.5px;
      background: #B8945C;
      transition: width 0.3s;
    }
    .nav-links a:hover { color: #B8945C; }
    .nav-links a:hover::after { width: 100%; }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }
    .nav-actions svg { width: 20px; height: 20px; stroke: #1A1A1A; stroke-width: 1.5; fill: none; transition: stroke 0.2s; }
    .nav-actions a:hover svg { stroke: #B8945C; }
    .cart-badge {
      background: #B8945C;
      color: #FFFFFF;
      font-size: 0.6rem;
      border-radius: 50%;
      padding: 0.15rem 0.45rem;
      font-weight: 700;
      margin-left: -6px;
    }
    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: transparent;
      border: none;
      padding: 0.3rem;
    }
    .burger span {
      width: 28px;
      height: 2px;
      background: #1A1A1A;
      transition: 0.3s;
      display: block;
    }
    .burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .burger.active span:nth-child(2) { opacity: 0; }
    .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(16px);
      z-index: 999;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transform: translateX(100%);
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
      padding: 2rem;
    }
    .mobile-menu.open { transform: translateX(0); }
    .mobile-menu a {
      font-family: 'Bodoni Moda', serif;
      font-size: 2.8rem;
      font-weight: 400;
      color: #1A1A1A;
      margin: 0.4rem 0;
      letter-spacing: 0.04em;
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: #B8945C; }
    .mobile-menu .close-btn {
      position: absolute;
      top: 2rem;
      right: 2rem;
      background: none;
      border: none;
      color: #1A1A1A;
      font-size: 2.5rem;
      cursor: pointer;
    }

    /* ----- HERO (with increased left padding) ----- */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 80px;
      background: linear-gradient(145deg, #FAF8F5 0%, #EFE7DC 100%);
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgdmlld0JveD0iMCAwIDgwIDgwIj48cmVjdCB3aWR0aD0iODAiIGhlaWdodD0iODAiIGZpbGw9Im5vbmUiLz48cGF0aCBkPSJNMzAgMTBoMjB2MjBIMzB6IiBmaWxsPSIjYjA4YzYwIiBvcGFjaXR5PSIwLjAzIi8+PC9zdmc+');
      background-size: 60px;
      opacity: 0.3;
      pointer-events: none;
    }
    .hero .bg-circle {
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(184,148,92,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero .bg-circle.c1 { width: 600px; height: 600px; top: -20%; right: -10%; }
    .hero .bg-circle.c2 { width: 400px; height: 400px; bottom: -10%; left: -5%; }

    /* FIXED: Increased left padding on hero */
    .hero-content {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 42% 58%;
      gap: 8rem;
      align-items: center;
      width: 100%;
      padding: 4rem 0;
      padding-left: 7rem;
    }
    @media (max-width: 1024px) {
      .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-left: 3rem;
        padding-right: 3rem;
      }
    }
    @media (max-width: 768px) {
      .hero-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }
    }

    .hero-text {
      max-width: 540px;
    }
    .hero-text .pre-title {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #B8945C;
      margin-bottom: 1rem;
      font-weight: 500;
    }
    .hero-text h1 {
      font-family: 'Bodoni Moda', serif;
      font-size: 4.8rem;
      font-weight: 600;
      line-height: 1.05;
      letter-spacing: -0.02em;
      margin-bottom: 1.5rem;
      color: #1A1A1A;
    }
    .hero-text h1 span { color: #B8945C; }
    .hero-text .hero-description {
      font-size: 1.1rem;
      color: #4A4A4A;
      max-width: 480px;
      margin-bottom: 2.8rem;
      font-weight: 300;
      line-height: 1.8;
    }
    .hero-cta {
      display: flex;
      gap: 1.2rem;
      flex-wrap: wrap;
    }
    .btn {
      padding: 0.9rem 2.4rem;
      border-radius: 40px;
      font-weight: 500;
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
    }
    .btn-primary {
      background: #1A1A1A;
      color: #FFFFFF;
      box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 32px rgba(0,0,0,0.1);
      background: #2C2C2C;
    }
    .btn-outline {
      background: transparent;
      border: 1px solid #CBC3B8;
      color: #1A1A1A;
    }
    .btn-outline:hover {
      border-color: #B8945C;
      background: rgba(184, 148, 92, 0.04);
      transform: translateY(-3px);
    }
    .hero-image {
      position: relative;
      height: 75vh;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    }
    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      background: #EDEAE5;
    }
    .hero-image .floating-tag {
      position: absolute;
      bottom: 2rem;
      left: 2rem;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(12px);
      padding: 1.2rem 1.8rem;
      border-radius: 20px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.06);
      border: 1px solid rgba(255,255,255,0.3);
    }
    .hero-image .floating-tag .tag-label {
      font-size: 0.6rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #B8945C;
      font-weight: 600;
    }
    .hero-image .floating-tag .tag-title {
      font-family: 'Bodoni Moda', serif;
      font-size: 1.2rem;
      font-weight: 500;
      color: #1A1A1A;
    }
    .hero-image .floating-tag .tag-price {
      font-weight: 500;
      color: #4A4A4A;
    }

    /* ----- SECTION COMMON ----- */
    section {
      padding: 6rem 0;
      position: relative;
    }
    .section-title {
      font-family: 'Bodoni Moda', serif;
      font-size: 3.2rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1.5rem;
      color: #1A1A1A;
    }
    .section-title .gold { color: #B8945C; }
    .section-sub {
      color: #5A5A5A;
      font-weight: 300;
      max-width: 600px;
      margin-bottom: 3rem;
      font-size: 1.1rem;
      line-height: 1.7;
    }
    .bg-white { background: #FAF8F5; }
    .bg-soft { background: #F5F0EB; }
    .bg-warm { background: #EFE7DC; }
    .bg-dark { background: #1C1C1C; color: #EAEAEA; }
    .bg-dark .section-title { color: #EAEAEA; }

    /* ----- BRAND STORY BLOCK ----- */
    .story-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .story-image {
      border-radius: 32px;
      overflow: hidden;
      aspect-ratio: 4/5;
      background: #EDEAE5;
    }
    .story-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      background: #EDEAE5;
    }
    .story-text h2 {
      font-family: 'Bodoni Moda', serif;
      font-size: 3rem;
      font-weight: 400;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      color: #1A1A1A;
    }
    .story-text h2 span { color: #B8945C; }
    .story-text p {
      color: #4A4A4A;
      font-weight: 300;
      line-height: 1.9;
      font-size: 1.05rem;
      margin-bottom: 1.2rem;
      max-width: 480px;
    }

    /* ----- FULL WIDTH EDITORIAL BANNER ----- */
    .editorial-banner {
      width: 100%;
      aspect-ratio: 16/6;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 2rem 0 4rem;
      border-radius: 32px;
      position: relative;
      overflow: hidden;
      background: #EDEAE5;
    }
    .editorial-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      inset: 0;
    }
    .editorial-banner .overlay {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 3rem 5rem;
      background: rgba(255,255,255,0.75);
      backdrop-filter: blur(8px);
      border-radius: 12px;
    }
    .editorial-banner .overlay .label {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #B8945C;
      font-weight: 500;
    }
    .editorial-banner .overlay h2 {
      font-family: 'Bodoni Moda', serif;
      font-size: 4.5rem;
      font-weight: 400;
      color: #1A1A1A;
      line-height: 1.1;
    }
    .editorial-banner .overlay h2 span { color: #B8945C; }
    .editorial-banner .overlay p {
      color: #4A4A4A;
      font-size: 1rem;
      margin-top: 0.5rem;
      letter-spacing: 0.04em;
    }

    /* ----- COLLECTION CARDS ----- */
    .collection-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }
    .collection-card {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      aspect-ratio: 4/5;
      transition: 0.4s ease;
      cursor: pointer;
      background: #EDEAE5;
    }
    .collection-card:hover { transform: scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
    .collection-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .collection-card:hover img { transform: scale(1.04); }
    .collection-card .card-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 2.5rem 2rem;
      background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .collection-card .card-label {
      font-family: 'Bodoni Moda', serif;
      font-size: 1.8rem;
      color: #FFFFFF;
      text-shadow: 0 2px 20px rgba(0,0,0,0.2);
    }
    .collection-card .card-label small {
      display: block;
      font-size: 0.7rem;
      font-family: 'Instrument Sans', sans-serif;
      color: #F0EDE8;
      letter-spacing: 0.1em;
      margin-top: 0.3rem;
      text-transform: uppercase;
    }
    .collection-card .card-btn {
      margin-top: 1rem;
      color: #FFFFFF;
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-bottom: 1.5px solid rgba(255,255,255,0.5);
      padding-bottom: 0.2rem;
      transition: 0.3s;
    }
    .collection-card:hover .card-btn { border-color: #FFFFFF; }

    /* ----- PRODUCT CARDS ----- */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 2.5rem;
    }
    .product-card {
      background: transparent;
      transition: 0.3s ease;
      cursor: pointer;
    }
    .product-card:hover { transform: translateY(-8px); }
    .product-card .image {
      aspect-ratio: 1/1.2;
      background: #F4F2EF;
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      margin-bottom: 1rem;
    }
    .product-card .image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .product-card:hover .image img { transform: scale(1.03); }
    .product-card .image .badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: #1A1A1A;
      color: #FFFFFF;
      font-size: 0.6rem;
      padding: 0.2rem 0.8rem;
      border-radius: 40px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-weight: 500;
      z-index: 2;
    }
    .product-card .image .badge.sale { background: #B66A4D; }
    .product-card .image .badge.limited { background: #5B2E37; }
    .product-card .info h4 {
      font-weight: 500;
      font-size: 1rem;
      color: #1A1A1A;
    }
    .product-card .info .category {
      font-size: 0.75rem;
      color: #8A8A8A;
      font-weight: 300;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .product-card .info .material {
      font-size: 0.65rem;
      color: #B8945C;
      font-weight: 400;
      letter-spacing: 0.04em;
    }
    .product-card .info .price-row {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-top: 0.2rem;
    }
    .product-card .info .price {
      color: #B8945C;
      font-weight: 500;
    }
    .product-card .info .old { color: #A09A90; text-decoration: line-through; font-weight: 300; }
    .product-card .info .rating {
      color: #B8945C;
      font-size: 0.7rem;
      letter-spacing: 0.1em;
    }
    .product-card .info .sizes {
      display: flex;
      gap: 0.3rem;
      margin-top: 0.3rem;
      flex-wrap: wrap;
    }
    .product-card .info .sizes span {
      font-size: 0.6rem;
      color: #8A8A8A;
      border: 1px solid #E8E3DC;
      padding: 0.1rem 0.5rem;
      border-radius: 4px;
    }
    .product-card .hover-actions {
      margin-top: 0.8rem;
      display: flex;
      gap: 0.6rem;
      opacity: 0;
      transition: 0.3s;
    }
    .product-card:hover .hover-actions { opacity: 1; }
    .product-card .hover-actions .btn-small {
      padding: 0.4rem 1.2rem;
      border-radius: 40px;
      background: #1A1A1A;
      color: #FFFFFF;
      border: none;
      font-size: 0.65rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      cursor: pointer;
      transition: 0.2s;
    }
    .product-card .hover-actions .btn-small:hover { background: #2C2C2C; }
    .product-card .hover-actions .wishlist {
      background: transparent;
      border: 1px solid #D0CBC2;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: 0.2s;
    }
    .product-card .hover-actions .wishlist:hover { border-color: #B8945C; }

    /* ----- PHILOSOPHY ----- */
    .philosophy-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 2.5rem;
      margin-top: 2rem;
    }
    .philosophy-item {
      text-align: center;
      padding: 2rem 1.5rem;
      border-radius: 24px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      transition: 0.3s;
    }
    .philosophy-item:hover { background: rgba(184,148,92,0.06); }
    .philosophy-item .icon { font-size: 2.2rem; margin-bottom: 0.8rem; color: #B8945C; }
    .philosophy-item h4 { color: #EAEAEA; font-weight: 500; margin-bottom: 0.3rem; }
    .philosophy-item p { color: #9A9A9A; font-size: 0.9rem; line-height: 1.6; }

    /* ----- LIFESTYLE BANNER ----- */
    .lifestyle-banner {
      width: 100%;
      height: 700px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      margin: 2rem 0;
      border-radius: 32px;
      background: #EDEAE5;
    }
    .lifestyle-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      inset: 0;
    }
    .lifestyle-banner .quote {
      position: relative;
      z-index: 2;
      font-family: 'Bodoni Moda', serif;
      font-size: 5rem;
      font-weight: 400;
      color: #FFFFFF;
      text-shadow: 0 4px 40px rgba(0,0,0,0.3);
      text-align: center;
      line-height: 1.1;
      padding: 2rem 4rem;
      background: rgba(0,0,0,0.2);
      backdrop-filter: blur(4px);
      border-radius: 8px;
    }
    .lifestyle-banner .quote span { color: #B8945C; }

    /* ----- LOOKBOOK ----- */
    .lookbook-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1.5fr;
      gap: 1.5rem;
      margin-top: 2rem;
    }
    .lookbook-item {
      border-radius: 28px;
      overflow: hidden;
      background: #EDEAE5;
      transition: 0.4s;
      aspect-ratio: 3/4;
    }
    .lookbook-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .lookbook-item:hover img { transform: scale(1.03); }
    .lookbook-item:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
    .lookbook-item.wide { aspect-ratio: 4/3; }

    /* ----- TESTIMONIALS ----- */
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 2rem;
      margin-top: 2rem;
    }
    .testimonial-card {
      background: #FFFFFF;
      padding: 2.5rem;
      border-radius: 32px;
      border: 1px solid #F0EDE8;
    }
    .testimonial-card .quote-mark {
      font-family: 'Bodoni Moda', serif;
      font-size: 3rem;
      color: #B8945C;
      line-height: 0.8;
      margin-bottom: 0.5rem;
    }
    .testimonial-card .quote {
      font-family: 'Bodoni Moda', serif;
      font-size: 1.3rem;
      font-weight: 400;
      line-height: 1.5;
      color: #1A1A1A;
      margin-bottom: 1rem;
    }
    .testimonial-card .stars { color: #B8945C; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
    .testimonial-card .author { font-weight: 500; color: #2C2C2C; }
    .testimonial-card .role { font-size: 0.8rem; color: #8A8A8A; }

    /* ----- INSTAGRAM GRID ----- */
    .instagram-grid {
      display: grid;
      grid-template-columns: repeat(6,1fr);
      gap: 1rem;
      margin-top: 2rem;
    }
    .instagram-item {
      aspect-ratio: 1/1;
      border-radius: 20px;
      overflow: hidden;
      background: #EDEAE5;
      position: relative;
    }
    .instagram-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .instagram-item:hover img { transform: scale(1.05); }
    .instagram-item .insta-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: 0.3s;
      color: #FFFFFF;
      font-size: 0.8rem;
      letter-spacing: 0.05em;
      backdrop-filter: blur(2px);
    }
    .instagram-item:hover .insta-overlay { opacity: 1; }

    /* ----- NEWSLETTER ----- */
    .newsletter {
      background: #EFE7DC;
      padding: 5rem 3rem;
      border-radius: 40px;
      text-align: center;
      margin-top: 2rem;
      position: relative;
      overflow: hidden;
    }
    .newsletter::before {
      content: 'KIARA';
      position: absolute;
      font-family: 'Bodoni Moda', serif;
      font-size: 12rem;
      font-weight: 700;
      color: rgba(184,148,92,0.04);
      bottom: -2rem;
      right: -2rem;
      line-height: 1;
      pointer-events: none;
    }
    .newsletter h2 {
      font-family: 'Bodoni Moda', serif;
      font-size: 2.8rem;
      font-weight: 400;
      color: #1A1A1A;
      margin-bottom: 0.8rem;
      position: relative;
      z-index: 2;
    }
    .newsletter h2 span { color: #B8945C; }
    .newsletter p { color: #5A5A5A; margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; z-index: 2; }
    .newsletter .form {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      position: relative;
      z-index: 2;
    }
    .newsletter .form input {
      padding: 0.9rem 1.8rem;
      border-radius: 60px;
      border: 1px solid #D0CBC2;
      background: #FFFFFF;
      min-width: 300px;
      font-family: 'Instrument Sans', sans-serif;
      font-size: 0.9rem;
      outline: none;
      transition: 0.3s;
    }
    .newsletter .form input:focus { border-color: #B8945C; }

    /* ----- FOOTER (Dark) ----- */
    footer {
      background: #1C1C1C;
      color: #EAEAEA;
      padding: 4rem 0 2rem;
      border-top: 1px solid #3A3A3A;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 3rem;
    }
    .footer-grid h5 { color: #B8945C; font-weight: 500; margin-bottom: 1.2rem; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.7rem; }
    .footer-grid a, .footer-grid p { color: #B0B0B0; font-weight: 300; display: block; margin: 0.5rem 0; transition: 0.2s; font-size: 0.9rem; }
    .footer-grid a:hover { color: #B8945C; }
    .footer-icons { display: flex; gap: 1rem; margin-top: 1rem; }
    .footer-icons span { font-size: 1.5rem; color: #8A8A8A; }
    .copy {
      text-align: center;
      border-top: 1px solid #3A3A3A;
      padding-top: 2rem;
      margin-top: 3rem;
      color: #8A8A8A;
      font-size: 0.75rem;
      letter-spacing: 0.04em;
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    /* ----- RESPONSIVE ----- */
    @media (max-width: 1200px) {
      .story-grid { gap: 3rem; }
      .product-grid { grid-template-columns: repeat(3,1fr); }
    }
    @media (max-width: 1024px) {
      .hero-content { grid-template-columns: 1fr; gap: 2rem; }
      .hero-text h1 { font-size: 3.6rem; }
      .hero-image { height: 50vh; }
      .collection-grid { grid-template-columns: 1fr 1fr; }
      .product-grid { grid-template-columns: repeat(2,1fr); }
      .lookbook-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .testimonial-grid { grid-template-columns: 1fr 1fr; }
      .story-grid { grid-template-columns: 1fr; gap: 2rem; }
      .story-text p { max-width: 100%; }
      .philosophy-grid { grid-template-columns: 1fr 1fr; }
      .instagram-grid { grid-template-columns: repeat(3,1fr); }
      .editorial-banner .overlay h2 { font-size: 3rem; }
      .lifestyle-banner .quote { font-size: 3.5rem; padding: 1.5rem 2rem; }
    }
    @media (max-width: 768px) {
      .container { padding: 0 1.5rem; }
      .nav-links { display: none; }
      .burger { display: flex; }
      .hero-text h1 { font-size: 2.8rem; }
      .collection-grid { grid-template-columns: 1fr; }
      .product-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
      .philosophy-grid { grid-template-columns: 1fr; }
      .lookbook-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .testimonial-grid { grid-template-columns: 1fr; }
      .section-title { font-size: 2.4rem; }
      .story-text h2 { font-size: 2.4rem; }
      .editorial-banner .overlay { padding: 2rem; }
      .editorial-banner .overlay h2 { font-size: 2.4rem; }
      .instagram-grid { grid-template-columns: repeat(3,1fr); }
      .newsletter .form input { min-width: 200px; width: 100%; }
      .lifestyle-banner { height: 400px; }
      .lifestyle-banner .quote { font-size: 2.5rem; padding: 1rem 1.5rem; }
    }
    @media (max-width: 480px) {
      .hero-text h1 { font-size: 2.2rem; }
      .btn { padding: 0.7rem 1.6rem; font-size: 0.7rem; }
      .hero-image .floating-tag { padding: 0.8rem 1.2rem; }
      .hero-image .floating-tag .tag-title { font-size: 1rem; }
      .editorial-banner .overlay h2 { font-size: 1.8rem; }
      .lifestyle-banner .quote { font-size: 1.8rem; }
    }

    /* Loading state for images */
    .image-loading {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 200px;
      background: #EDEAE5;
      color: #8A8A8A;
      font-size: 0.9rem;
    }
  