       * {
           margin: 0;
           padding: 0;
           box-sizing: border-box;
       }

       html {
           scroll-behavior: smooth;
       }

       body {
           font-family: "Inter", sans-serif;
           background: #080b10;
           color: #fff;
           overflow-x: hidden;
       }

       a {
           text-decoration: none;
           color: inherit;
       }

       img {
           width: 100%;
           display: block;
       }

       button,
       input,
       select,
       textarea {
           font-family: inherit;
       }

       ::selection {
           background: #8fd8ff;
           color: #080b10;
       }


       :root {
           --bg: #080b10;
           --bg2: #0d1219;
           --card: #111820;
           --card2: #151d26;
           --white: #ffffff;
           --muted: #9ba5b2;
           --blue: #7dd3fc;
           --blue2: #38bdf8;
           --line: rgba(255, 255, 255, 0.10);
           --shadow: 0 25px 70px rgba(0, 0, 0, .45);
       }


       .loader {
           position: fixed;
           inset: 0;
           background: #05070a;
           z-index: 9999;
           display: flex;
           align-items: center;
           justify-content: center;
           flex-direction: column;
           transition: .8s ease;
       }

       .loader.hide {
           opacity: 0;
           visibility: hidden;
       }

       .loader-logo {
           font-family: "Playfair Display", serif;
           font-size: 55px;
           letter-spacing: 8px;
           color: white;
       }

       .loader-sub {
           margin-top: 10px;
           letter-spacing: 8px;
           color: var(--blue);
           font-size: 11px;
       }

       .loader-line {
           width: 160px;
           height: 2px;
           background: #202833;
           margin-top: 30px;
           overflow: hidden;
       }

       .loader-line span {
           display: block;
           width: 0;
           height: 100%;
           background: var(--blue);
           animation: load 1.8s forwards;
       }

       @keyframes load {
           to {
               width: 100%;
           }
       }

       header {
           position: fixed;
           top: 0;
           left: 0;
           width: 100%;
           z-index: 1000;
           padding: 18px 5%;
           transition: .4s;
       }

       header.scrolled {
           background: rgba(8, 11, 16, .88);
           backdrop-filter: blur(18px);
           border-bottom: 1px solid var(--line);
       }

       .navbar {
           max-width: 1250px;
           margin: auto;
           display: flex;
           align-items: center;
           justify-content: space-between;
       }

       .logo {
           display: flex;
           flex-direction: column;
       }

       .logo-main {
           font-family: "Playfair Display", serif;
           font-size: 27px;
           font-weight: 700;
           letter-spacing: 4px;
       }

       .logo-small {
           color: var(--blue);
           font-size: 9px;
           letter-spacing: 5px;
           margin-top: -2px;
       }

       .nav-links {
           display: flex;
           gap: 28px;
           align-items: center;
       }

       .nav-links a {
           font-size: 13px;
           color: #d6dce3;
           transition: .3s;
       }

       .nav-links a:hover {
           color: var(--blue);
       }

       .nav-btn {
           border: 1px solid rgba(125, 211, 252, .5);
           padding: 11px 19px;
           border-radius: 30px;
           color: var(--blue) !important;
       }

       .nav-btn:hover {
           background: var(--blue);
           color: #061018 !important;
       }

       .menu-btn {
           display: none;
           border: 0;
           background: none;
           color: white;
           font-size: 25px;
           cursor: pointer;
       }


       .hero {
           min-height: 100vh;
           position: relative;
           display: flex;
           align-items: center;
           overflow: hidden;
           background:
               linear-gradient(90deg, rgba(4, 7, 11, .96) 0%, rgba(4, 7, 11, .80) 45%, rgba(4, 7, 11, .35) 100%),
               url("salon.jpeg") center/cover no-repeat;
       }

       .hero::after {
           content: "";
           position: absolute;
           inset: auto 0 0 0;
           height: 220px;
           background: linear-gradient(transparent, var(--bg));
       }

       .hero-content {
           width: min(1250px, 90%);
           margin: auto;
           position: relative;
           z-index: 2;
           padding-top: 80px;
       }

       .eyebrow {
           color: var(--blue);
           letter-spacing: 5px;
           text-transform: uppercase;
           font-size: 11px;
           margin-bottom: 20px;
       }

       .hero h1 {
           font-family: "Playfair Display", serif;
           font-size: clamp(55px, 8vw, 105px);
           line-height: .92;
           max-width: 800px;
       }

       .hero h1 span {
           color: var(--blue);
           font-style: italic;
       }

       .hero-text {
           max-width: 560px;
           color: #c5cbd2;
           line-height: 1.8;
           margin-top: 25px;
           font-size: 15px;
       }

       .hero-actions {
           display: flex;
           gap: 15px;
           margin-top: 35px;
           flex-wrap: wrap;
       }

       .btn {
           padding: 14px 25px;
           border-radius: 40px;
           border: 1px solid rgba(255, 255, 255, .15);
           display: inline-flex;
           align-items: center;
           justify-content: center;
           gap: 9px;
           font-size: 13px;
           transition: .3s;
           cursor: pointer;
       }

       .btn-primary {
           background: var(--blue);
           color: #061018;
           border-color: var(--blue);
           font-weight: 700;
       }

       .btn-primary:hover {
           transform: translateY(-3px);
           box-shadow: 0 15px 35px rgba(56, 189, 248, .25);
       }

       .btn-outline {
           background: rgba(255, 255, 255, .04);
           color: white;
           backdrop-filter: blur(10px);
       }

       .btn-outline:hover {
           background: white;
           color: #111;
       }

       .rating-box {
           margin-top: 50px;
           display: flex;
           align-items: center;
           gap: 20px;
       }

       .rating-number {
           font-size: 28px;
           font-weight: 700;
       }

       .stars {
           color: #facc15;
           letter-spacing: 2px;
       }

       .rating-text {
           color: var(--muted);
           font-size: 12px;
       }


       section {
           padding: 110px 5%;
           position: relative;
       }

       .container {
           max-width: 1250px;
           margin: auto;
       }

       .section-head {
           max-width: 700px;
           margin-bottom: 55px;
       }

       .section-label {
           color: var(--blue);
           font-size: 11px;
           letter-spacing: 5px;
           text-transform: uppercase;
           margin-bottom: 15px;
       }

       .section-title {
           font-family: "Playfair Display", serif;
           font-size: clamp(40px, 5vw, 65px);
           line-height: 1;
       }

       .section-description {
           color: var(--muted);
           line-height: 1.8;
           margin-top: 20px;
       }


       .about {
           background: var(--bg);
       }

       .about-grid {
           display: grid;
           grid-template-columns: 1fr 1fr;
           gap: 70px;
           align-items: center;
       }

       .about-image {
           position: relative;
       }

       .about-image img {
           height: 600px;
           object-fit: cover;
           border-radius: 4px;
           filter: brightness(.82);
       }

       .image-frame {
           position: absolute;
           inset: 20px -20px -20px 20px;
           border: 1px solid rgba(125, 211, 252, .25);
           z-index: -1;
       }

       .about-content p {
           color: var(--muted);
           line-height: 1.9;
           margin-bottom: 25px;
       }

       .features {
           display: grid;
           grid-template-columns: repeat(2, 1fr);
           gap: 15px;
           margin-top: 35px;
       }

       .feature {
           border: 1px solid var(--line);
           background: rgba(255, 255, 255, .025);
           padding: 20px;
           transition: .3s;
       }

       .feature:hover {
           transform: translateY(-5px);
           border-color: rgba(125, 211, 252, .4);
       }

       .feature-icon {
           font-size: 25px;
           margin-bottom: 12px;
       }

       .feature h4 {
           font-size: 14px;
           margin-bottom: 7px;
       }

       .feature p {
           font-size: 12px;
           margin: 0;
       }


       .services {
           background: #0b1016;
       }

       .services-grid {
           display: grid;
           grid-template-columns: repeat(3, 1fr);
           gap: 20px;
       }

       .service-card {
           background: linear-gradient(145deg, #121a23, #0d131b);
           border: 1px solid var(--line);
           padding: 35px 30px;
           min-height: 320px;
           position: relative;
           overflow: hidden;
           transition: .4s;
       }

       .service-card::before {
           content: "";
           position: absolute;
           width: 150px;
           height: 150px;
           background: var(--blue);
           filter: blur(100px);
           opacity: .05;
           right: -50px;
           top: -50px;
       }

       .service-card:hover {
           transform: translateY(-8px);
           border-color: rgba(125, 211, 252, .35);
       }

       .service-number {
           color: var(--blue);
           font-size: 11px;
           letter-spacing: 3px;
       }

       .service-card h3 {
           font-family: "Playfair Display", serif;
           font-size: 32px;
           margin: 45px 0 15px;
       }

       .service-card p {
           color: var(--muted);
           line-height: 1.7;
           font-size: 13px;
       }

       .service-list {
           margin-top: 25px;
           display: flex;
           flex-wrap: wrap;
           gap: 8px;
       }

       .service-list span {
           border: 1px solid var(--line);
           padding: 7px 10px;
           font-size: 10px;
           color: #c7ced6;
       }


       .gallery-grid {
           display: grid;
           grid-template-columns: 1.3fr 1fr 1fr;
           grid-auto-rows: 260px;
           gap: 12px;
       }

       .gallery-item {
           overflow: hidden;
           position: relative;
       }

       .gallery-item:first-child {
           grid-row: span 2;
       }

       .gallery-item img {
           height: 100%;
           object-fit: cover;
           transition: .6s;
           filter: brightness(.8);
       }

       .gallery-item:hover img {
           transform: scale(1.08);
           filter: brightness(1);
       }

       .gallery-overlay {
           position: absolute;
           inset: 0;
           background: linear-gradient(transparent, rgba(0, 0, 0, .7));
           display: flex;
           align-items: flex-end;
           padding: 22px;
           opacity: 0;
           transition: .3s;
       }

       .gallery-item:hover .gallery-overlay {
           opacity: 1;
       }

       .gallery-overlay span {
           font-family: "Playfair Display", serif;
           font-size: 20px;
       }


       .reviews {
           background: #0b1016;
       }

       .reviews-top {
           display: flex;
           justify-content: space-between;
           align-items: end;
           gap: 30px;
       }

       .big-rating {
           text-align: right;
       }

       .big-rating strong {
           display: block;
           font-size: 55px;
           font-family: "Playfair Display", serif;
       }

       .review-grid {
           display: grid;
           grid-template-columns: repeat(3, 1fr);
           gap: 18px;
           margin-top: 40px;
       }

       .review-card {
           padding: 30px;
           background: #111820;
           border: 1px solid var(--line);
       }

       .review-stars {
           color: #facc15;
           letter-spacing: 2px;
           margin-bottom: 20px;
       }

       .review-card p {
           color: #c2c9d0;
           line-height: 1.8;
           font-size: 14px;
       }

       .review-author {
           margin-top: 25px;
           color: white;
           font-weight: 600;
           font-size: 13px;
       }

       .review-author small {
           display: block;
           color: var(--muted);
           margin-top: 5px;
           font-weight: 400;
       }


       .booking {
           background:
               radial-gradient(circle at 90% 20%, rgba(56, 189, 248, .08), transparent 30%),
               var(--bg);
       }

       .booking-grid {
           display: grid;
           grid-template-columns: .8fr 1.2fr;
           gap: 60px;
           align-items: start;
       }

       .booking-info h2 {
           font-family: "Playfair Display", serif;
           font-size: 55px;
           line-height: 1;
       }

       .booking-info p {
           color: var(--muted);
           line-height: 1.8;
           margin: 20px 0 30px;
       }

       .hours {
           border-top: 1px solid var(--line);
           border-bottom: 1px solid var(--line);
           padding: 20px 0;
       }

       .hours-row {
           display: flex;
           justify-content: space-between;
           padding: 8px 0;
           font-size: 13px;
       }

       .hours-row span:last-child {
           color: var(--blue);
       }

       .booking-form {
           background: #101720;
           border: 1px solid var(--line);
           padding: 35px;
       }

       .form-title {
           font-family: "Playfair Display", serif;
           font-size: 30px;
           margin-bottom: 25px;
       }

       .form-grid {
           display: grid;
           grid-template-columns: 1fr 1fr;
           gap: 15px;
       }

       .field {
           margin-bottom: 15px;
       }

       .field.full {
           grid-column: 1/-1;
       }

       .field label {
           display: block;
           font-size: 11px;
           color: #aab4bf;
           margin-bottom: 8px;
       }

       .field input,
       .field select,
       .field textarea {
           width: 100%;
           background: #080d13;
           color: white;
           border: 1px solid var(--line);
           outline: none;
           padding: 14px;
           border-radius: 2px;
       }

       .field textarea {
           height: 100px;
           resize: none;
       }

       .field input:focus,
       .field select:focus,
       .field textarea:focus {
           border-color: var(--blue);
       }

       .submit-btn {
           width: 100%;
           border: 0;
           padding: 15px;
           background: var(--blue);
           color: #061018;
           font-weight: 700;
           cursor: pointer;
           transition: .3s;
       }

       .submit-btn:hover {
           box-shadow: 0 15px 35px rgba(56, 189, 248, .2);
       }

       .location {
           padding-top: 40px;
       }

       .location-box {
           display: grid;
           grid-template-columns: 1fr 1fr;
           min-height: 420px;
           background: #101720;
           border: 1px solid var(--line);
       }

       .location-info {
           padding: 50px;
           display: flex;
           flex-direction: column;
           justify-content: center;
       }

       .location-info h2 {
           font-family: "Playfair Display", serif;
           font-size: 45px;
       }

       .location-info p {
           color: var(--muted);
           line-height: 1.8;
           margin: 20px 0;
       }

       .map-area {
           min-height: 420px;
           background:
               linear-gradient(rgba(10, 15, 20, .45), rgba(10, 15, 20, .45)),
               url("salon.jpg") center/cover;
           display: flex;
           align-items: center;
           justify-content: center;
       }

       .map-button {
           background: rgba(8, 11, 16, .9);
           padding: 18px 25px;
           border: 1px solid rgba(125, 211, 252, .5);
           color: var(--blue);
           backdrop-filter: blur(10px);
           transition: .3s;
       }

       .map-button:hover {
           background: var(--blue);
           color: #061018;
       }


       .cta {
           padding: 120px 5%;
           text-align: center;
       }

       .cta-inner {
           max-width: 850px;
           margin: auto;
       }

       .cta h2 {
           font-family: "Playfair Display", serif;
           font-size: clamp(45px, 6vw, 75px);
           line-height: 1;
       }

       .cta p {
           color: var(--muted);
           margin: 20px auto 30px;
           max-width: 600px;
           line-height: 1.8;
       }

       footer {
           border-top: 1px solid var(--line);
           padding: 50px 5% 100px;
       }

       .footer-inner {
           max-width: 1250px;
           margin: auto;
           display: flex;
           justify-content: space-between;
           gap: 30px;
           align-items: center;
       }

       .footer-text {
           color: var(--muted);
           font-size: 12px;
           line-height: 1.8;
       }

       .socials {
           display: flex;
           gap: 10px;
       }

       .socials a {
           width: 40px;
           height: 40px;
           border: 1px solid var(--line);
           display: grid;
           place-items: center;
           transition: .3s;
       }

       .socials a:hover {
           background: var(--blue);
           color: #061018;
       }


       .socials a svg {
           width: 20px;
           height: 20px;
           display: block;
       }


       .mobile-bar {
           display: none;
           position: fixed;
           bottom: 0;
           left: 0;
           width: 100%;
           background: rgba(8, 11, 16, .94);
           backdrop-filter: blur(15px);
           border-top: 1px solid var(--line);
           z-index: 2000;
           grid-template-columns: repeat(4, 1fr);
       }

       .mobile-bar a {
           padding: 13px 5px;
           text-align: center;
           font-size: 10px;
           color: #cdd4db;
       }

       .mobile-bar span {
           display: block;
           font-size: 18px;
           margin-bottom: 4px;
       }



       .reveal {
           opacity: 0;
           transform: translateY(35px);
           transition: 1s ease;
       }

       .reveal.active {
           opacity: 1;
           transform: translateY(0);
       }


       @media(max-width: 900px) {

           .nav-links {
               position: fixed;
               top: 72px;
               right: -100%;
               width: 80%;
               max-width: 320px;
               background: rgba(8, 11, 16, .98);
               border: 1px solid var(--line);
               padding: 30px;
               display: flex;
               flex-direction: column;
               align-items: flex-start;
               transition: .4s;
           }

           .nav-links.open {
               right: 20px;
           }

           .menu-btn {
               display: block;
           }

           .about-grid,
           .booking-grid,
           .location-box {
               grid-template-columns: 1fr;
           }

           .services-grid,
           .review-grid {
               grid-template-columns: 1fr 1fr;
           }

           .about-image img {
               height: 500px;
           }

           .location-box {
               display: grid;
           }

           .map-area {
               min-height: 300px;
           }
       }

       @media(max-width: 600px) {

           body {
               padding-bottom: 60px;
           }

           header {
               padding: 15px 5%;
           }

           .hero {
               min-height: 95vh;
               background:
                   linear-gradient(90deg, rgba(4, 7, 11, .88), rgba(4, 7, 11, .48)),
                   url("salon.jpg") center/cover no-repeat;
           }

           .hero-content {
               padding-top: 60px;
           }

           .hero h1 {
               font-size: 58px;
           }

           .hero-text {
               font-size: 13px;
           }

           section {
               padding: 80px 5%;
           }

           .services-grid,
           .review-grid,
           .features,
           .form-grid {
               grid-template-columns: 1fr;
           }

           .gallery-grid {
               grid-template-columns: 1fr 1fr;
               grid-auto-rows: 190px;
           }

           .gallery-item:first-child {
               grid-column: span 2;
               grid-row: span 2;
           }

           .reviews-top {
               display: block;
           }

           .big-rating {
               text-align: left;
               margin-top: 25px;
           }

           .booking-info h2 {
               font-size: 45px;
           }

           .booking-form {
               padding: 22px;
           }

           .location-info {
               padding: 35px 25px;
           }

           .location-info h2 {
               font-size: 40px;
           }

           .footer-inner {
               flex-direction: column;
               align-items: flex-start;
           }

           .mobile-bar {
               display: grid;
           }

           .nav-btn {
               display: none;
           }
       }