:root {
    /* Color Variables */
    --bg: #1f1f1f;
    --fg: #fafafa;
    --card: #292929;
    --border: #3d3d3d;
    --accent: #d4af37;
    --muted: #a1a1a1;
    --secondary: #242424;
  
    /* Fonts */
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
    --font-mono: "Monaco", "Courier New", monospace;
  
    /* Spacing */
    --container-max: 1280px;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-sans);
    background-color: var(--bg);
    color: var(--fg);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  /* Scrollbar Styling */
  ::-webkit-scrollbar {
    width: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--bg);
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #e0bd47;
  }
  
  /* Container */
  .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
  }
  
  @media (max-width: 767px) {
    .container {
      padding: 0 var(--spacing-md);
    }
  }
  
  /* Navigation */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background-color: transparent;
  }
  
  .navbar.scrolled {
    background-color: rgba(31, 31, 31, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
  }
  
  .navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--fg);
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
  }
  
  .logo:hover {
    color: var(--accent);
  }
  
  .nav-links-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .nav-links-desktop {
      display: flex;
    }
  }
  
  .nav-links-desktop a {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .nav-links-desktop a:hover {
    color: var(--fg);
  }
  
  .instagram-link {
    color: var(--muted);
  }
  
  .instagram-link:hover {
    color: var(--accent);
  }
  
  .instagram-link svg {
    width: 20px;
    height: 20px;
  }
  
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg);
  }
  
  @media (min-width: 768px) {
    .menu-toggle {
      display: none;
    }
  }
  
  .menu-icon {
    width: 24px;
    height: 24px;
  }
  
  .nav-links-mobile {
    display: none;
    flex-direction: column;
    gap: var(--spacing-md);
    background-color: var(--bg);
    border-top: 1px solid var(--border);
    padding: var(--spacing-lg) var(--spacing-lg);
  }
  
  .nav-links-mobile.active {
    display: flex;
  }
  
  .nav-links-mobile a {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
  }
  
  .nav-links-mobile a:hover {
    color: var(--fg);
  }
  
  .icon {
    width: 20px;
    height: 20px;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
  }
  
  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(31, 31, 31, 0.5), rgba(31, 31, 31, 0.3), rgba(31, 31, 31, 1));
  }
  
  .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: var(--spacing-lg);
    animation: fadeInUp 1s ease-out;
  }
  
  .hero-title {
    font-size: clamp(3rem, 8vw, 9rem);
    font-weight: bold;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
  }
  
  .accent-text {
    color: var(--accent);
  }
  
  .hero-description {
    font-size: 1.125rem;
    color: var(--muted);
    max-width: 32rem;
    margin: 0 auto var(--spacing-3xl);
    line-height: 1.8;
  }
  
  @media (max-width: 767px) {
    .hero-description {
      font-size: 1rem;
      margin-bottom: var(--spacing-2xl);
      padding: 0 var(--spacing-md);
    }
  }
  
  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--fg);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
  }
  
  .hero-cta:hover {
    color: var(--accent);
  }
  
  .hero-cta:hover .cta-icon {
    transform: translateY(4px);
  }
  
  .cta-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  
  .scroll-dot {
    width: 24px;
    height: 40px;
    border: 2px solid var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
    position: relative;
  }
  
  .scroll-dot::after {
    content: "";
    width: 4px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 2px;
    animation: scroll 2s infinite;
  }
  
  @keyframes scroll {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(12px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
  /* Section Styling */
  .section {
    padding: var(--spacing-3xl) 0;
  }
  
  @media (max-width: 767px) {
    .section {
      padding: var(--spacing-2xl) 0;
    }
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  @media (max-width: 767px) {
    .section-header {
      margin-bottom: 2rem;
    }
  }
  
  .section-header h2 {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: bold;
    letter-spacing: -0.01em;
    margin-bottom: var(--spacing-lg);
  }
  
  .section-header p {
    font-size: 1.125rem;
    color: var(--muted);
    max-width: 32rem;
    margin: 0 auto;
  }
  
  /* Brand Story Section */
  .brand-story {
    background-color: var(--bg);
  }
  
  .story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  @media (min-width: 768px) {
    .story-grid {
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
    }
  }
  
  .story-text h2 {
    font-size: clamp(1.875rem, 4vw, 3.75rem);
    font-weight: bold;
    letter-spacing: -0.01em;
    margin-bottom: var(--spacing-2xl);
    line-height: 1.2;
  }
  
  .story-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .story-content p {
    font-size: 1.125rem;
    color: var(--muted);
    line-height: 1.8;
  }
  
  .story-content strong {
    color: var(--fg);
  }
  
  .story-image {
    opacity: 0;
    animation: slideInRight 1s ease-out 0.2s forwards;
  }
  
  .story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 3 / 4;
    transition: transform 0.7s ease;
  }
  
  .story-image:hover img {
    transform: scale(1.05);
  }
  
  /* Collections Section */
  .collections {
    background-color: rgba(36, 36, 36, 0.3);
  }
  
  .carousel-wrapper {
    position: relative;
    width: 100%;
  }
  
  .carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  
  .carousel {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
  }
  
  .carousel-slide {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
    box-sizing: border-box;
  }
  
  .collection-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
    min-height: 0;
    padding: 0 var(--spacing-lg);
    box-sizing: border-box;
  }
  
  @media (min-width: 768px) {
    .collection-grid {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      max-width: 96rem;
      margin: 0 auto;
      padding: 0;
    }
  }
  
  .collection-image {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    max-height: 600px;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  @media (max-width: 767px) {
    .collection-image {
      max-height: 500px;
    }
  }
  
  .collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
    max-width: 100%;
    display: block;
  }
  
  .collection-image:hover img {
    transform: scale(1.05);
  }
  
  .collection-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: var(--spacing-2xl);
    min-height: 0;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .collection-info h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: bold;
    letter-spacing: -0.01em;
  }
  
  .collection-info p {
    font-size: 1.125rem;
    color: var(--muted);
    line-height: 1.8;
  }
  
  @media (max-width: 767px) {
    .collection-info {
      padding: var(--spacing-lg);
    }
    
    .collection-info p {
      font-size: 1rem;
    }
  }
  
  .cta-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    width: fit-content;
    padding: 0.75rem 1.5rem;
    background-color: var(--accent);
    color: var(--bg);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
  }
  
  @media (max-width: 767px) {
    .cta-link {
      padding: 0.625rem 1.25rem;
      font-size: 0.875rem;
    }
  }
  
  .cta-link:hover {
    background-color: #e0bd47;
  }
  
  .cta-link:hover .icon-small {
    transform: translateX(4px);
  }
  
  .icon-small {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
  }
  
  /* Carousel Controls */
  .carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .carousel-btn {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--fg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .carousel-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
  }
  
  .carousel-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .carousel-dots {
    display: flex;
    gap: 0.5rem;
  }
  
  .carousel-dot {
    width: 8px;
    height: 8px;
    background-color: var(--muted);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .carousel-dot.active {
    width: 32px;
    background-color: var(--accent);
    border-radius: 4px;
  }
  
  /* Gallery Section */
  .gallery {
    background-color: var(--bg);
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  @media (min-width: 768px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .gallery-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .gallery-item {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    opacity: 0;
    transform: translateY(48px);
    animation: fadeInUp 1s ease-out forwards;
  }
  
  .gallery-item:nth-child(1) {
    animation-delay: 0ms;
  }
  .gallery-item:nth-child(2) {
    animation-delay: 100ms;
  }
  .gallery-item:nth-child(3) {
    animation-delay: 200ms;
  }
  .gallery-item:nth-child(4) {
    animation-delay: 300ms;
  }
  .gallery-item:nth-child(5) {
    animation-delay: 400ms;
  }
  .gallery-item:nth-child(6) {
    animation-delay: 500ms;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(31, 31, 31, 0.8), rgba(31, 31, 31, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-lg);
  }
  
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
  
  .gallery-overlay p {
    color: var(--fg);
    font-weight: 500;
    font-size: 1.125rem;
  }
  
  /* Custom Experience Section */
  .custom-experience {
    background-color: rgba(36, 36, 36, 0.3);
  }
  
  .custom-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .custom-icon {
    display: inline-flex;
    margin-bottom: var(--spacing-lg);
    color: var(--accent);
  }
  
  .custom-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .custom-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-bottom: var(--spacing-lg);
  }
  
  .custom-header h2 {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: bold;
    margin-bottom: var(--spacing-lg);
  }
  
  .custom-header p {
    font-size: 1.125rem;
    color: var(--muted);
    max-width: 32rem;
    margin: 0 auto;
  }
  
  /* CTA Boxes */
  .cta-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  @media (min-width: 768px) {
    .cta-boxes {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .cta-box {
    padding: 2rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
  }
  
  @media (max-width: 767px) {
    .cta-box {
      padding: 1.5rem;
    }
    
    .cta-box h3 {
      font-size: 1.125rem;
    }
    
    .cta-box p {
      font-size: 0.9375rem;
    }
  }
  
  .cta-box:hover {
    border-color: var(--accent);
  }
  
  .cta-box-icon {
    width: 40px;
    height: 40px;
    color: var(--accent);
    margin-bottom: var(--spacing-lg);
    transition: transform 0.3s ease;
  }
  
  .cta-box:hover .cta-box-icon {
    transform: scale(1.1);
  }
  
  .cta-box h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .cta-box p {
    color: var(--muted);
    margin-bottom: var(--spacing-md);
  }
  
  .cta-link-text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    font-weight: 600;
  }
  
  /* Contact Form */
  .contact-form {
    background-color: var(--card);
    border: 1px solid var(--border);
    padding: 2rem;
    max-width: 64rem;
    margin: 0 auto;
  }
  
  @media (max-width: 767px) {
    .contact-form {
      padding: 1.5rem;
    }
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  @media (min-width: 768px) {
    .form-row {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .form-group label {
    font-size: 0.875rem;
    font-weight: 500;
  }
  
  .form-group input,
  .form-group textarea {
    background-color: var(--bg);
    border: 1px solid var(--border);
    color: var(--fg);
    padding: 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
  }
  
  .form-group textarea {
    resize: none;
  }
  
  .btn-submit {
    background-color: var(--accent);
    color: var(--bg);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: var(--spacing-md);
    width: 100%;
  }
  
  @media (min-width: 768px) {
    .btn-submit {
      width: auto;
    }
  }
  
  .btn-submit:hover {
    background-color: #e0bd47;
  }
  
  /* Instagram Section */
  .instagram-feed {
    background-color: var(--bg);
  }
  
  .instagram-icon {
    display: inline-flex;
    margin-bottom: var(--spacing-lg);
    color: var(--accent);
  }
  
  .instagram-icon img {
    width: 24px;
    height: 24px;
  }
  
  .instagram-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-bottom: var(--spacing-lg);
  }
  
  .btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    background-color: var(--accent);
    color: var(--bg);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: var(--spacing-lg);
  }
  
  @media (max-width: 767px) {
    .btn-instagram {
      padding: 0.625rem 1.25rem;
      font-size: 0.875rem;
    }
  }
  
  .btn-instagram:hover {
    background-color: #e0bd47;
  }
  
  .btn-instagram svg {
    width: 20px;
    height: 20px;
  }
  
  .instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  @media (min-width: 768px) {
    .instagram-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .instagram-grid {
      grid-template-columns: repeat(6, 1fr);
    }
  }
  
  .instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
  }
  
  .instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }
  
  .instagram-item:hover img {
    transform: scale(1.1);
  }
  
  .instagram-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(212, 175, 55, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .instagram-item:hover .instagram-overlay {
    opacity: 1;
  }
  
  .instagram-overlay img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
  }
  
  /* Footer */
  .footer {
    background-color: rgba(36, 36, 36, 0.3);
    padding: 3rem 0;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
  }
  
  @media (min-width: 768px) {
    .footer-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .footer-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .footer-col h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
  }
  
  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-col a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
  }
  
  .footer-col a:hover {
    color: var(--accent);
  }
  
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: var(--spacing-md);
  }
  
  .footer-col p {
    color: var(--muted);
    line-height: 1.6;
  }
  
  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
  
  @media (min-width: 768px) {
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
    }
  }
  
  .footer-bottom p {
    font-size: 0.875rem;
    color: var(--muted);
  }
  
  .footer-links {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
  }
  
  @media (min-width: 768px) {
    .footer-links {
      justify-content: flex-end;
    }
  }
  
  .footer-links a {
    font-size: 0.875rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: var(--fg);
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-48px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(48px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Utility Classes */
  .group {
    position: relative;
  }
  
  .group:hover {
    color: var(--accent);
  }
  