 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Poppins", sans-serif;
      line-height: 1.6;
      color: hsl(340, 20%, 14%);
      background-color: hsl(30, 43%, 97%);
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: "Playfair Display", serif;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    button {
      font-family: inherit;
    }

    /* ==================== HEADER / NAVBAR ==================== */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      transition: all 0.3s ease;
      background: transparent;
    }

  header.scrolled {
    background: rgb(94 92 89 / 90%);
    box-shadow: 0 1px 0 0 hsl(30, 25%, 87%);
    backdrop-filter: blur(10px);
}


    nav {
      display: flex;
      height: 5rem;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.625rem;
      text-decoration: none;
      color: inherit;
    }

    .logo-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 3rem;
      width: 3rem;
      border-radius: 50%;
      background: linear-gradient(135deg, hsl(38, 68%, 52%), hsl(338, 62%, 33%));
      color: white;
      font-family: "Playfair Display", serif;
      font-size: 1.125rem;
      font-weight: 600;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .logo-main {
      font-family: "Playfair Display", serif;
      font-size: 1.725rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: hsl(338deg 80.2% 76.14%)
    }

    .logo-sub {
      font-size: 0.965rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.35em;
      color: hsl(38, 68%, 52%);
    }

    .nav-menu {
      display: none;
      list-style: none;
      gap: 2.25rem;
    }

    .nav-menu a {
      font-size: 0.875rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      color: #fff;
      text-decoration: none;
      opacity: 0.8;
      transition: color 0.2s;
    }

    .nav-menu a:hover {
      color: hsl(338, 62%, 33%);
    }

    .nav-cta {
      display: none;
    }
     .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.625rem 1.5rem;
      font-size: 0.875rem;
      font-weight: 500;
      border: none;
      border-radius: 9999px;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
    }

    .btn-primary {
      background-color: hsl(338, 62%, 33%);
      color: hsl(30, 43%, 97%);
      box-shadow: 0 4px 12px rgba(216, 101, 131, 0.3);
    }

    .btn-primary:hover {
      background-color: hsl(338, 62%, 28%);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.05);
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.15);
    }

    .nav-toggle {
      display: inline-flex;
      height: 2.5rem;
      width: 2.5rem;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: none;
      background: transparent;
      cursor: pointer;
      font-size: 1.5rem;
    }

 /* ==================== HERO SECTION ==================== */
    section#home {
      position: relative;
      display: flex;
      align-items: center;
      min-height: 92vh;
      overflow: hidden;
      padding-top: 5rem;
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: -2;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to right, rgba(51, 39, 29, 0.85), rgba(51, 39, 29, 0.6), rgba(51, 39, 29, 0.3));
      z-index: -1;
    }

    .hero-content {
      position: relative;
    
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: 9999px;
      background: rgba(255, 255, 255, 0.1);
      padding: 0.375rem 1rem;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: white;
      backdrop-filter: blur(10px);
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: 2.25rem;
      font-weight: 600;
      line-height: 1.1;
      color: white;
      margin-bottom: 1.5rem;
    }
.text-gradient {
      background: linear-gradient(90deg, hsl(38, 68%, 45%), hsl(49.85deg 93.01% 48.38%), hsl(38, 68%, 45%));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-desc {
      font-size: 1rem;
      line-height: 1.625;
      color: rgba(255, 255, 255, 0.75);
      margin-bottom: 2.25rem;
      max-width: 28rem;
    }
     .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 3rem;
    }

    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 2.5rem;
      row-gap: 1rem;
    }

    .stat {
      display: flex;
      flex-direction: column;
    }

    .stat-value {
      font-family: "Playfair Display", serif;
      font-size: 1.875rem;
      font-weight: 600;
      color: white;
    }

     .stat-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: rgba(255, 255, 255, 0.6);
    }

    /* ==================== ABOUT SECTION ==================== */
    section#about {
      padding: 6rem 0;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3.5rem;
      align-items: center;
    }
     .about-images {
      position: relative;
    }

    .about-images::before {
      content: "";
      position: absolute;
      top: -1.5rem;
      left: -1.5rem;
      height: 7rem;
      width: 7rem;
      border-radius: 50%;
      background: hsla(38, 68%, 52%, 0.2);
      filter: blur(64px);
    }

    .about-grid-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .about-images img {
      height: 16rem;
      width: 100%;
      border-radius: 1rem;
      object-fit: cover;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .about-images img:first-child {
      margin-top: 2rem;
    }

    .about-content h2 {
      font-size: 1.875rem;
      font-weight: 600;
      color: hsl(340, 20%, 14%);
      margin-bottom: 1.5rem;
    }

     .section-label {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: hsl(338, 62%, 33%);
      margin-bottom: 0.75rem;
    }

    .about-content p {
      color: hsl(340, 20%, 50%);
      margin-bottom: 1.75rem;
    }

    .about-list {
      list-style: none;
      margin-top: 1.75rem;
    }

    .about-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 1rem;
      font-size: 0.875rem;
      color: rgba(52, 32, 28, 0.8);
    }

    .about-list li::before {
      content: "✓";
      flex-shrink: 0;
      display: flex;
      height: 1.25rem;
      width: 1.25rem;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: hsla(338, 62%, 33%, 0.1);
      color: hsl(338, 62%, 33%);
      font-size: 0.875rem;
      margin-top: 0.125rem;
    }

    /* ==================== SERVICES SECTION ==================== */
    section#services {
      background-color: hsla(24, 45%, 90%, 0.5);
      padding: 6rem 0;
    }

      .section-center {
      text-align: center;
      max-width: 42rem;
      margin: 0 auto 4rem;
    }

    .section-center h2 {
      font-size: 1.875rem;
      font-weight: 600;
      color: #8840a1;
      margin-bottom: 1rem;
    }
     .section-center p {
      color: hsl(340, 20%, 50%);
      font-size: 0.9rem;
    }

    .services-grid {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: 1fr;
    }
     .service-card {
      border-radius: 1rem;
      border: 1px solid hsl(30, 25%, 87%);
      background: white;
      padding: 1.75rem;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 25px rgba(216, 101, 131, 0.1);
    }

    .service-icon {
      display: flex;
      height: 3rem;
      width: 3rem;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: hsla(338, 62%, 33%, 0.1);
      color: hsl(338, 62%, 33%);
      font-size: 1.25rem;
      transition: all 0.2s;
    }

    .service-card:hover .service-icon {
      background-color: hsl(338, 62%, 33%);
      color: hsl(30, 43%, 97%);
    }

    .service-card h3 {
      font-size: 1.125rem;
      font-weight: 600;
      color: hsl(340, 20%, 14%);
      margin-top: 1.25rem;
    }

    .service-card p {
      font-size: 0.875rem;
      color: hsl(340, 20%, 50%);
      margin-top: 0.625rem;
      line-height: 1.5;
    }

    .service-price {
      font-size: 0.875rem;
      font-weight: 600;
      color: hsl(38, 68%, 52%);
      margin-top: 1.25rem;
    }

    /* ==================== GALLERY SECTION ==================== */
    section#gallery {
      padding: 6rem 0;
    }

     .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin-top: 4rem;
    }
 .gallery-item {
      overflow: hidden;
      border-radius: 0.75rem;
      aspect-ratio: 3 / 4;
      cursor: pointer;
    }

    /* .gallery-item:nth-child(5n + 1) {
      grid-column: span 2;
      aspect-ratio: 1 / 1;
    } */
 .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-cta {
      margin-top: 2.5rem;
      text-align: center;
    }

    .gallery-cta a {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1.875rem;
      font-weight: 500;
      color: hsl(338, 62%, 33%);
      text-decoration: none;
      transition: color 0.2s;
    }

    .gallery-cta a:hover {
      text-decoration: underline;
    }

    /* ==================== TESTIMONIALS SECTION ==================== */
    section#testimonials {
      background-color: hsl(340, 30%, 10%);
      color: white;
      padding: 6rem 0;
    }
.testimonials-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 4rem;
    }
     .testimonial-card {
      border-radius: 1rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.05);
      padding: 1.75rem;
      backdrop-filter: blur(10px);
    }

    .quote-icon {
      font-size: 1.5rem;
      color: hsl(38, 68%, 52%);
    }

    .testimonial-card p {
      margin-top: 1rem;
      font-size: 0.875rem;
      line-height: 1.625;
      color: rgba(255, 255, 255, 0.8);
    }

    .stars {
      display: flex;
      gap: 0.25rem;
      margin-top: 1.5rem;
    }

    .star {
      color: hsl(38, 68%, 52%);
      font-size: 0.875rem;
    }

    .testimonial-card h4 {
      margin-top: 1.5rem;
      font-family: "Playfair Display", serif;
      font-size: 1rem;
      font-weight: 600;
    }

    .testimonial-card .role {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 0.25rem;
    }

    /* ==================== CONTACT SECTION ==================== */
    section#contact {
      padding: 6rem 0;
    }
 .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3.5rem;
    }
     .contact-info-item {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.25rem;
    }

    .contact-icon {
      display: flex;
      height: 2.75rem;
      width: 2.75rem;
      flex-shrink: 0;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: hsla(338, 62%, 33%, 0.1);
      color: hsl(338, 62%, 33%);
      font-size: 1.125rem;
    }

    .contact-info-item p {
      font-size: 0.875rem;
      color: hsl(340, 20%, 50%);
    }

    .contact-info-item strong {
      display: block;
      color: hsl(340, 20%, 14%);
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    .contact-form {
      border-radius: 1rem;
      border: 1px solid hsl(30, 25%, 87%);
      background: white;
      padding: 2rem;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .form-group {
      margin-bottom: 1.25rem;
    }

    .form-group label {
      display: block;
      font-size: 0.875rem;
      font-weight: 500;
      color: hsl(340, 20%, 14%);
      margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 0.625rem 0.75rem;
      border: 1px solid hsl(30, 25%, 87%);
      border-radius: 0.5rem;
      font-family: inherit;
      font-size: 0.875rem;
      color: hsl(340, 20%, 14%);
      transition: border-color 0.2s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: hsl(338, 62%, 33%);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 110px;
    }

    .contact-form button {
      width: 100%;
      padding: 0.75rem 1.5rem;
      background-color: hsl(338, 62%, 33%);
      color: hsl(30, 43%, 97%);
      font-weight: 500;
      border: none;
      border-radius: 9999px;
      cursor: pointer;
      transition: background-color 0.2s;
    }

    .contact-form button:hover {
      background-color: hsl(338, 62%, 28%);
    }

    /* ==================== FOOTER ==================== */
    footer {
      background-color: hsl(340, 30%, 10%);
      color: rgba(255, 255, 255, 0.8);
      padding: 4rem 0 1.5rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      margin-bottom: 4rem;
    }

     .footer-col h4 {
      font-family: "Playfair Display", serif;
      font-size: 1rem;
      font-weight: 600;
      color: white;
      margin-bottom: 1rem;
    }

    .footer-col p {
      font-size: 0.875rem;
      line-height: 1.625;
      color: rgba(255, 255, 255, 0.6);
      max-width: 20rem;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col li {
      font-size: 0.875rem;
      margin-bottom: 0.75rem;
    }

    .footer-col a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: hsl(38, 68%, 52%);
    }

    .social-links {
      display: flex;
      gap: 0.75rem;
      margin-top: 1.25rem;
    }

    .social-links a {
      display: flex;
      height: 2.25rem;
      width: 2.25rem;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      color: white;
      transition: all 0.2s;
      background-color: #fff;
    }

    .social-links a:hover {
      border-color: hsl(38, 68%, 52%);
      color: hsl(38, 68%, 52%);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 1.5rem;
      text-align: center;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.45);
    }

    /* ==================== MOBILE MENU ==================== */
    .mobile-menu {
      display: none;
      border-top: 1px solid hsl(30, 25%, 87%);
      background: rgba(250, 248, 245, 0.95);
      backdrop-filter: blur(10px);
    }

    .mobile-menu.active {
      display: block;
    }

    .mobile-menu-content {
      padding: 1rem 0;
    }

    .mobile-menu-content a {
      display: block;
      padding: 0.75rem 0.5rem;
      font-size: 1rem;
      font-weight: 500;
      color: rgba(52, 32, 28, 0.85);
      text-decoration: none;
      border-radius: 0.375rem;
      transition: all 0.2s;
    }

    .mobile-menu-content a:hover {
      background-color: hsla(24, 45%, 90%, 0.5);
      color: hsl(338, 62%, 33%);
    }

    .mobile-menu-content .btn {
      width: 100%;
      justify-content: center;
      margin-top: 0.5rem;
    }
