:root {
      --gold: hsl(42, 45%, 58%);
      --gold-light: hsl(42, 50%, 75%);
      --gold-dark: hsl(42, 55%, 42%);
      --black: hsl(0, 0%, 4%);
      --black-light: hsl(0, 0%, 10%);
      --gray-dark: hsl(0, 0%, 18%);
      --gray: hsl(0, 0%, 29%);
      --gray-light: hsl(0, 0%, 54%);
      --white: hsl(0, 0%, 100%);
      --off-white: hsl(40, 20%, 97%);
      --font-display: 'Cormorant Garamond', serif;
      --font-body: 'Montserrat', sans-serif;
      --section-padding: 120px;
      --container-width: 1400px;
      --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
      --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    html { scroll-behavior: smooth; }
    
    body {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.7;
      color: var(--gray-light);
      background-color: var(--black);
      overflow-x: hidden;
    }

    .container {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 40px;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-display);
      font-weight: 400;
      color: var(--white);
      line-height: 1.2;
    }

    p { color: var(--gray-light); }
    a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
    img { max-width: 100%; height: auto; display: block; }

    .section-label {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: inline-block;
    }

    .section-title {
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 300;
      margin-bottom: 30px;
    }

    .section-title span { color: var(--gold); font-style: italic; }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 18px 40px;
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: var(--transition-smooth);
    }

    .btn-primary {
      background: var(--gold);
      color: var(--black);
    }

    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 20px 40px hsla(42, 45%, 58%, 0.3);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1px solid var(--white);
    }

    .btn-outline:hover {
      background: var(--white);
      color: var(--black);
    }

    /* Hero Section */
    .service-hero {
      position: relative;
      height: 80vh;
      min-height: 600px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .service-hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, hsla(0,0%,0%,0.7), hsla(0,0%,0%,0.5)),
        url('salon-images/hair-styling.jpg');
      background-size: cover;
      background-position: center;
    }

    .service-hero-content {
      position: relative;
      z-index: 1;
      max-width: 700px;
    }

    .service-hero h1 {
      font-size: clamp(48px, 8vw, 90px);
      font-weight: 300;
      margin-bottom: 30px;
      line-height: 1.1;
    }

    .service-hero h1 span {
      color: var(--gold);
      font-style: italic;
    }

    .service-hero p {
      font-size: 18px;
      line-height: 1.9;
      margin-bottom: 40px;
      max-width: 550px;
    }

    .breadcrumb {
      margin-bottom: 30px;
      font-size: 14px;
    }

    .breadcrumb a {
      color: var(--gold);
    }

    .breadcrumb a:hover {
      text-decoration: underline;
    }

    /* Overview Section */
    .overview {
      padding: var(--section-padding) 0;
      background: var(--black);
    }

    .overview-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }

    .overview-content h2 {
      font-size: clamp(36px, 4vw, 50px);
    }

    .overview-content p {
      margin-bottom: 20px;
      line-height: 1.9;
    }

    .overview-content p:first-of-type {
      font-size: 18px;
      color: var(--off-white);
    }

    .overview-image {
      position: relative;
    }

    .overview-image img {
      width: 100%;
      height: 500px;
      object-fit: cover;
    }

    .overview-image::before {
      content: '';
      position: absolute;
      top: -20px;
      right: -20px;
      width: 100%;
      height: 100%;
      border: 1px solid var(--gold);
      z-index: -1;
    }

    /* Services List */
    .services-list {
      padding: var(--section-padding) 0;
      background: var(--black-light);
    }

    .services-list-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 80px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .service-item {
      background: var(--black);
      border: 1px solid var(--gray-dark);
      padding: 40px;
      transition: var(--transition-smooth);
      position: relative;
      overflow: hidden;
    }

    .service-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: var(--transition-smooth);
    }

    .service-item:hover {
      border-color: var(--gold);
      transform: translateY(-5px);
    }

    .service-item:hover::before {
      transform: scaleX(1);
    }

    .service-item-icon {
      width: 60px;
      height: 60px;
      border: 1px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      margin-bottom: 25px;
      transition: var(--transition-smooth);
    }

    .service-item:hover .service-item-icon {
      background: var(--gold);
      color: var(--black);
    }

    .service-item-icon svg {
      width: 28px;
      height: 28px;
    }

    .service-item h3 {
      font-size: 24px;
      margin-bottom: 15px;
    }

    .service-item p {
      font-size: 14px;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .service-price {
      font-family: var(--font-display);
      font-size: 28px;
      color: var(--gold);
    }

    .service-price small {
      font-size: 14px;
      color: var(--gray-light);
      font-family: var(--font-body);
    }

    /* Process Section */
    .process {
      padding: var(--section-padding) 0;
      background: var(--black);
    }

    .process-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 80px;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      position: relative;
    }

    .process-grid::before {
      content: '';
      position: absolute;
      top: 50px;
      left: 12.5%;
      right: 12.5%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
    }

    .process-step {
      text-align: center;
      position: relative;
    }

    .process-number {
      width: 100px;
      height: 100px;
      margin: 0 auto 30px;
      background: var(--black-light);
      border: 1px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 36px;
      color: var(--gold);
      position: relative;
      z-index: 1;
    }

    .process-step h4 {
      font-size: 22px;
      margin-bottom: 15px;
    }

    .process-step p {
      font-size: 14px;
      line-height: 1.7;
    }

    /* Gallery Section */
    .gallery {
      padding: var(--section-padding) 0;
      background: var(--black-light);
    }

    .gallery-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 80px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .gallery-item {
      position: relative;
      height: 300px;
      overflow: hidden;
      cursor: pointer;
    }

    .gallery-item:nth-child(1) {
      grid-column: span 2;
      grid-row: span 2;
      height: 620px;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform var(--transition-smooth);
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, hsla(0,0%,0%,0.8), transparent);
      opacity: 0;
      transition: var(--transition-smooth);
      display: flex;
      align-items: flex-end;
      padding: 20px;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-overlay span {
      color: var(--white);
      font-size: 14px;
      font-weight: 500;
    }

    /* Booking Section */
    .booking {
      padding: var(--section-padding) 0;
      background: var(--black);
    }

    .booking-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .booking-content h2 {
      font-size: clamp(36px, 4vw, 50px);
      margin-bottom: 20px;
    }

    .booking-content p {
      font-size: 18px;
      line-height: 1.8;
      margin-bottom: 30px;
    }

    .booking-features {
      margin-bottom: 40px;
    }

    .booking-feature {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
    }

    .booking-feature-icon {
      width: 40px;
      height: 40px;
      background: hsla(42, 45%, 58%, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      flex-shrink: 0;
    }

    .booking-feature-icon svg {
      width: 20px;
      height: 20px;
    }

    .booking-feature span {
      font-size: 15px;
      color: var(--off-white);
    }

    .booking-image img {
      width: 100%;
      height: 500px;
      object-fit: cover;
    }

    /* CTA Section */
    .cta {
      padding: var(--section-padding) 0;
      background: var(--black-light);
      text-align: center;
    }

    .cta h2 {
      font-size: clamp(36px, 5vw, 56px);
      margin-bottom: 20px;
    }

    .cta p {
      font-size: 18px;
      max-width: 600px;
      margin: 0 auto 40px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .overview-grid,
      .booking-grid { grid-template-columns: 1fr; gap: 60px; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .process-grid { grid-template-columns: repeat(2, 1fr); gap: 50px; }
      .process-grid::before { display: none; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-item:nth-child(1) { height: 400px; }
    }

    @media (max-width: 768px) {
      .container { padding: 0 20px; }
      :root { --section-padding: 80px; }
      .services-grid,
      .process-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-item,
      .gallery-item:nth-child(1) { height: 250px; grid-column: span 1; grid-row: span 1; }
      .overview-image::before { display: none; }
    }