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

    :root {
      --bg: #0a0a0a;
      --bg2: #111111;
      --bg3: #161616;
      --gold: #c9a96e;
      --gold-light: #e8c98a;
      --gold-dim: rgba(201,169,110,0.15);
      --text: #e8e2d9;
      --text-dim: #9a9080;
      --text-muted: #5a5248;
      --border: rgba(201,169,110,0.2);
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'Outfit', sans-serif;
      --max: 1200px;
      --radius: 4px;
    }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-weight: 300;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Grain Texture Overlay */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
      opacity: 0.03;
      pointer-events: none;
      z-index: 9999;
    }

    h1, h2, h3, .section-eyebrow { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em; }
    a { text-decoration: none; color: inherit; transition: 0.3s; }
    ul { list-style: none; }
    img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }

    /* Layout Containers */
    .container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
    section { padding: 100px 0; border-bottom: 1px solid var(--border); }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      height: 80px;
      display: flex;
      align-items: center;
      background: rgba(10,10,10,0.85);
      backdrop-filter: blur(10px);
      z-index: 1000;
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }
    .logo { font-size: 1.5rem; font-family: var(--font-display); font-weight: 600; color: var(--gold); }
    .nav-links { display: flex; gap: 2.5rem; }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta { background: var(--gold); color: var(--bg); padding: 0.6rem 1.4rem; border-radius: var(--radius); font-weight: 500; font-size: 0.9rem; }

    /* Hero */
    .hero {
      padding-top: 180px;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 4rem;
      align-items: center;
      padding-bottom: 60px;
    }
    .section-eyebrow { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; display: block; }
    .hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; margin-bottom: 1.5rem; }
    .hero p { color: var(--text-dim); font-size: 1.1rem; max-width: 500px; margin-bottom: 2.5rem; }
    .hero-btns { display: flex; gap: 1.5rem; flex-wrap: wrap; }
    .btn-primary { background: var(--gold); color: var(--bg); padding: 1rem 2rem; border-radius: var(--radius); font-weight: 500; }
    .btn-secondary { border: 1px solid var(--border); padding: 1rem 2rem; border-radius: var(--radius); }

    /* About Section */
    .about-layout {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 5rem;
      align-items: start;
      padding-top: 60px;
      padding-bottom: 40px;
    }
    .about-image-container {
      position: relative;
      border: 1px solid var(--border);
      padding: 10px;
      background: var(--bg2);
    }
    .about-image-container img {
      width: 100%;
      height: auto;
      filter: grayscale(1);
      transition: filter 0.5s ease;
    }
    .about-image-container:hover img { filter: grayscale(0.2); }
    .about-content h2 { font-size: 2.8rem; line-height: 1.2; margin-bottom: 2rem; }
    .about-content p { color: var(--text-dim); margin-bottom: 1.5rem; font-size: 1.05rem; }
    .partner-label {
      margin-top: 2.5rem;
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      padding: 0.75rem 1.5rem;
      background: var(--gold-dim);
      border-left: 3px solid var(--gold);
      color: var(--gold);
      font-family: var(--font-display);
      text-transform: uppercase;
      font-size: 0.9rem;
      letter-spacing: 0.1em;
    }

    /* Services Grid & Icons */
    .services-grid { 
        display: grid; 
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
        gap: 2rem;
        padding-bottom: 30px;
    }
    .service-card { 
        padding: 2.5rem; 
        background: var(--bg2); 
        border: 1px solid var(--border); 
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, border-color 0.3s ease;
    }
    .service-card:hover {
        transform: translateY(-5px);
        border-color: var(--gold);
    }
    .service-card .icon-wrapper { 
        width: 48px;
        height: 48px;
        margin-bottom: 1.5rem;
    }
    .service-card .icon-wrapper svg {
        width: 100%;
        height: 100%;
        fill: none;
        stroke: var(--gold);
        stroke-width: 1.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    /* Icon Animations */
    .animate-float { animation: float 3s ease-in-out infinite; }
    .animate-pulse-slow { animation: pulse-slow 4s ease-in-out infinite; }
    
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }
    @keyframes pulse-slow {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.7; transform: scale(0.95); }
    }

    .service-card h3 { margin-bottom: 1.25rem; color: var(--gold); font-size: 1.4rem; }
    .service-card ul { color: var(--text-dim); font-size: 0.95rem; }
    .service-card li { margin-bottom: 0.75rem; position: relative; padding-left: 1.5rem; }
    .service-card li::before { 
        content: '→'; 
        position: absolute; 
        left: 0; 
        color: var(--gold); 
    }

    /* Gallery Section */
    .section-header { text-align: center; margin-bottom: 4rem; }
    .section-header h2 { font-size: 2.5rem; color: var(--gold); }
    .section-header p { color: var(--text-dim); margin-top: 10px; max-width: 600px; margin-left: auto; margin-right: auto; }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
      gap: 1.5rem;
      padding-bottom: 30px;
    }
    .gallery-item {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4/3;
      border: 1px solid var(--border);
      background: #ffffff;
      border-radius: var(--radius);
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      filter: grayscale(40%);
    }
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.85);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.5rem;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .gallery-item:hover img { transform: scale(1.05); filter: grayscale(0%); }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-title { color: var(--gold); font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 5px; }
    .gallery-desc { font-size: 0.85rem; color: var(--text-dim); }

    /* Contact Form */
    .contact-container { max-width: 800px; margin: 0 auto; background: var(--bg2); padding: 3rem; border: 1px solid var(--border); }
    .form-group { margin-bottom: 1.5rem; }
    .form-label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--gold); }
    .form-input, .form-textarea {
      width: 100%;
      background: var(--bg3);
      border: 1px solid var(--border);
      color: var(--text);
      padding: 1rem;
      font-family: inherit;
    }
    .form-submit {
      width: 100%;
      background: var(--gold);
      border: none;
      padding: 1rem;
      cursor: pointer;
      font-weight: 500;
      transition: 0.3s;
    }
    .form-submit:hover { background: var(--gold-light); }
    .form-submit:disabled { opacity: 0.7; cursor: not-allowed; }

    /* FAQ */
    .faq-container { max-width: 800px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid var(--border); padding: 1.5rem 0; cursor: pointer; }
    .faq-question { display: flex; justify-content: space-between; align-items: center; font-weight: 500; }
    .faq-answer { height: 0; overflow: hidden; transition: 0.3s ease; color: var(--text-dim); padding-top: 0; }
    .faq-item.active .faq-answer { height: auto; padding-top: 1rem; }
    .faq-item.active .icon { transform: rotate(45deg); }
    .icon { transition: transform 0.3s; color: var(--gold); }

    /* Mobile Responsive */
    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; text-align: center; padding-top: 140px; }
      .about-layout { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
      .about-image-container { max-width: 400px; margin: 0 auto; }
      .hero-btns { justify-content: center; }
      .hero p { margin: 0 auto 2.5rem; }
      .services-grid { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .hamburger { display: block; cursor: pointer; font-size: 1.5rem; color: var(--gold); }
    }

    footer { padding: 4rem 0; text-align: center; color: var(--text-muted); font-size: 0.9rem; }

    /* Animations */
    .reveal { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
    .reveal.active { opacity: 1; transform: translateY(0); padding-top: 30px;}

    .footer-socials { display: flex; justify-content: center; gap: 1.5rem; margin-top: 1.5rem; }
    .footer-socials a:hover { color: var(--gold); }
    
    @media (max-width: 700px){
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
      padding-bottom: 30px;
      object-fit: cover !important;
      }     

    .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    transition: transform 0.5s ease;
    filter: grayscale(40%);
}
    }