    :root {
      --primary: #5d4037;
      --accent: #d4a373;
      --dark: #121212;
      --light: #fdfdfd;
      --white: #ffffff;
      --gray: #f8f9fa;
      --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      --shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      color: var(--dark);
      background: #fff;
      overflow-x: hidden;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 25px;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
    }

    /* --- HEADER & NAV --- */
    header {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      padding: 10px 0;
      position: sticky;
      top: 0;
      z-index: 1100;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 60px;
    }

    .logo {
      display: flex;
      align-items: center;
      height: 100%;
      max-width: 60%;
    }

    .logo img {
      height: auto;
      max-height: 50px;
      width: auto;
      object-fit: contain;
      transition: var(--transition);
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 30px;
    }

    nav ul a {
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      color: rgba(0, 0, 0, 0.7);
      font-weight: 600;
    }

    nav ul a:hover {
      color: var(--accent);
    }

    .menu-toggle {
      display: none;
      font-size: 24px;
      color: var(--primary);
      background: none;
      border: none;
      cursor: pointer;
    }

    /* --- HERO --- */
    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
      padding: 80px 0;
    }

    .hero-text span {
      color: var(--accent);
      font-weight: 600;
      letter-spacing: 4px;
      font-size: 0.85rem;
      display: block;
      margin-bottom: 10px;
    }

    .hero-text h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      color: var(--primary);
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .hero-img img {
      width: 100%;
      height: 500px;
      border-radius: 30px;
      box-shadow: var(--shadow);
      object-fit: cover;
    }

    .btn {
      display: inline-block;
      padding: 16px 40px;
      background: var(--primary);
      color: var(--white);
      border-radius: 50px;
      font-weight: 600;
      box-shadow: 0 10px 20px rgba(93, 64, 55, 0.2);
    }

    .btn:hover {
      transform: translateY(-5px);
      filter: brightness(1.1);
    }

    /* --- SECTIONS --- */
    .section-head {
      text-align: center;
      margin: 80px 0 50px;
      width: 100%;
    }

    .section-head h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      color: var(--primary);
      margin-bottom: 10px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
    }

    /* --- CARDS --- */
    .card {
      background: var(--white);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid #eee;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }

    .card:hover {
      transform: translateY(-12px);
      box-shadow: var(--shadow);
    }

    .card-img-wrapper {
      height: 300px;
      overflow: hidden;
    }

    .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .card:hover img {
      transform: scale(1.1);
    }

    .card-body {
      padding: 30px;
      text-align: center;
      flex-grow: 1;
    }

    .card-body h3 {
      font-family: 'Playfair Display', serif;
      margin-bottom: 12px;
      font-size: 1.5rem;
      color: var(--dark);
    }

    .card-body p {
      font-size: 0.9rem;
      color: #666;
      margin-bottom: 20px;
    }

    /* --- GALLERY --- */
    .galeri-section {
      padding: 100px 0;
      background: var(--gray);
      margin-top: 80px;
    }

    .galeri-section .section-head {
      margin-bottom: 60px;
    }

    /* --- CONTACT --- */
    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 40px;
      margin: 60px 0 100px;
    }

    .contact-info-card {
      background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?auto=format&fit=crop&q=80&w=800') center/cover;
      color: var(--white);
      padding: 50px;
      border-radius: 30px;
    }

    .contact-info-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      margin-bottom: 40px;
      color: var(--accent);
    }

    .contact-method {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 30px;
    }

    .contact-method i {
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: var(--accent);
      font-size: 1.2rem;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      min-height: 450px;
      border-radius: 30px;
      border: none;
      box-shadow: var(--shadow);
    }

    /* --- PREMIUM FOOTER --- */

    .premium-footer {

      position: relative;

      background: #111 url("https://images.unsplash.com/photo-1540518614846-7eded433c457?auto=format&fit=crop&q=80&w=1200") center/cover no-repeat;

      padding: 100px 0 40px;

      color: #fff;

      overflow: hidden;

    }



    .footer-overlay {

      position: absolute;

      inset: 0;

      background: linear-gradient(to top, rgba(0, 0, 0, .9), rgba(0, 0, 0, .75));

      backdrop-filter: blur(6px);

    }



    .footer-content {

      position: relative;

      z-index: 2;

    }



    .footer-grid {

      display: grid;

      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;

      gap: 50px;

      margin-bottom: 60px;

    }



    .footer-brand img {

      height: 45px;

      margin-bottom: 20px;

    }



    .footer-brand p {

      font-size: .9rem;

      line-height: 1.7;

      color: #ccc;

    }

    .footer-links h4 {
      margin-bottom: 25px;
      font-family: 'Playfair Display';
      color: var(--accent);
    }

    .footer-links a {
      display: block;
      margin-bottom: 12px;
      color: #bbb;
      font-size: 0.9rem;
    }

    .footer-links a:hover {
      color: #fff;
      transform: translateX(5px);
    }

    .designer-card {
      background: rgba(255, 255, 255, .05);
      padding: 25px;
      border-radius: 20px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, .1);
    }

    .designer-card span {
      font-size: .7rem;
      letter-spacing: 2px;
      color: var(--accent);
    }

    .designer-card h3 {
      margin: 10px 0;
      font-family: 'Playfair Display', serif;
    }

    .designer-card p {
      font-size: .85rem;
      color: #ccc;
    }

    .designer-social {
      margin-top: 15px;
      display: flex;
      gap: 12px;
    }

    .designer-social a {
      width: 38px;
      height: 38px;
      background: #111;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: .3s;
    }

    .designer-social a:hover {
      background: var(--accent);
      transform: scale(1.1);
    }

    .socials {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .socials a {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.3s;
    }

    .socials a:hover {
      background: var(--accent);
      transform: translateY(-5px);
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 992px) {
      .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 0;
      }

      .hero-img {
        order: -1;
      }

      .hero-img img {
        height: 350px;
      }

      .menu-toggle {
        display: block;
      }

      nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }

      nav.active {
        display: block;
      }

      nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }

      .contact-wrapper {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .socials {
        justify-content: center;
      }

      .designer-social {
        justify-content: center;
      }

      .section-head h2 {
        font-size: 2rem;
      }
    }