/* ZO Beauty by Olga — Main Stylesheet */

/* ============================================================
       DESIGN TOKENS
    ============================================================ */
    :root {
      --blush-bg:    #fdf4f2;
      --blush-light: #f9e8e4;
      --blush-mid:   #e8b8b2;
      --rose:        #c47070;
      --rose-dark:   #a84f55;
      --maroon:      #7a2030;
      --maroon-deep: #5c1525;
      --gold:        #c9a870;
      --gold-light:  #f5ead8;
      --white:       #ffffff;
      --text:        #3d1a20;
      --text-muted:  #8a5a60;
      --border:      #eac8c4;

      --font-heading: 'Cormorant Garamond', Georgia, serif;
      --font-body:    'Jost', system-ui, sans-serif;

      --radius:    8px;
      --radius-lg: 16px;
      --shadow:    0 4px 24px rgba(122, 32, 48, 0.08);
      --shadow-lg: 0 12px 48px rgba(122, 32, 48, 0.14);
      --transition: 0.3s ease;

      --max-w: 1140px;
      --section-py: 96px;
    }

    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      font-weight: 300;
      background: var(--blush-bg);
      color: var(--text);
      line-height: 1.7;
      font-size: 17px;
    }
    img { display: block; max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }

    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 28px;
    }

    /* ============================================================
       TYPOGRAPHY HELPERS
    ============================================================ */
    .section-label {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 13px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .section-label::before,
    .section-label::after {
      content: '';
      display: inline-block;
      width: 28px;
      height: 1px;
      background: var(--gold);
      opacity: 0.6;
      flex-shrink: 0;
    }
    .section-label-plain { /* for centered labels — no lines */
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 13px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }
    .section-title {
      font-family: var(--font-heading);
      font-weight: 300;
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      line-height: 1.12;
      color: var(--maroon);
      margin-bottom: 20px;
    }
    .section-title em {
      font-style: italic;
      color: var(--rose-dark);
    }
    .section-subtitle {
      font-size: 17px;
      color: var(--text-muted);
      max-width: 540px;
      line-height: 1.75;
    }

    /* Ornamental divider */
    .ornament {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin: 12px 0;
      color: var(--gold);
      font-size: 18px;
      line-height: 1;
      opacity: 0.7;
    }
    .ornament::before,
    .ornament::after {
      content: '';
      width: 60px;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold));
    }
    .ornament::after {
      background: linear-gradient(to left, transparent, var(--gold));
    }

    /* ============================================================
       NAV
    ============================================================ */
    #nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(253, 244, 242, 0.94);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow var(--transition);
    }
    #nav.scrolled { box-shadow: var(--shadow); }

    .nav-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 28px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-brand {
      display: flex;
      flex-direction: row;
      line-height: 1.15;
        align-items: center;
        gap: 5px;
    }
    .nav-brand-content {
        display: flex;
        flex-direction: column;
    }
    .nav-brand-logo {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid rgba(201,168,112,0.35);
    }
    .nav-brand-name {
      font-family: var(--font-heading);
      font-weight: 500;
      font-size: 1.35rem;
      color: var(--maroon);
      letter-spacing: 0.04em;
    }
    .nav-brand-sub {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 40px;
      align-items: center;
    }
    .nav-links a {
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-muted);
      transition: color var(--transition);
    }
    .nav-links a:hover { color: var(--maroon); }

    .nav-cta {
      display: inline-block;
      background: var(--maroon) !important;
      color: var(--white) !important;
      padding: 11px 26px !important;
      border-radius: 50px;
      font-size: 13px !important;
      font-weight: 400 !important;
      letter-spacing: 0.14em !important;
      transition: background var(--transition), box-shadow var(--transition) !important;
    }
    .nav-cta:hover {
      background: var(--maroon-deep) !important;
      box-shadow: 0 4px 18px rgba(122, 32, 48, 0.3) !important;
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }
    .nav-toggle span {
      width: 24px;
      height: 2px;
      background: var(--maroon);
      transition: var(--transition);
    }

    /* ============================================================
       HERO
    ============================================================ */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      padding-top: 72px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('../images/studio-interior.jpg');
      background-size: cover;
      background-position: center 30%;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(20, 5, 10, 0.85) 0%, rgba(20, 5, 10, 0.60) 60%, rgba(20, 5, 10, 0.38) 100%);
    }

    /* Subtle animated glimmer lines */
    .hero-glimmer {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .hero-glimmer::before,
    .hero-glimmer::after {
      content: '';
      position: absolute;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(201,168,112,0.3), transparent);
      animation: shimmerLine 6s ease-in-out infinite;
    }
    .hero-glimmer::before { height: 55%; top: 15%; left: 18%; animation-delay: 0s; }
    .hero-glimmer::after  { height: 40%; top: 25%; right: 22%; animation-delay: 2.5s; }
    @keyframes shimmerLine {
      0%, 100% { opacity: 0; }
      40%, 60% { opacity: 1; }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 28px;
      max-width: 760px;
    }

    .hero-eyebrow {
      font-size: 13px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 32px;
    }

    /* Logo in hero — shown in a frosted circle */
    .hero-logo-wrap {
      width: 190px;
      height: 190px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(201,168,112,0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 36px;
      box-shadow: 0 0 60px rgba(201,168,112,0.15), 0 0 0 6px rgba(201,168,112,0.08);
      overflow: hidden;
    }
    .hero-logo {
      width: 170px;
      height: 170px;
      border-radius: 50%;
      object-fit: cover;
    }

    .hero-ornament {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 24px;
      color: var(--gold);
      opacity: 0.7;
    }
    .hero-ornament span {
      display: block;
      width: 50px;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold));
    }
    .hero-ornament span:last-child {
      background: linear-gradient(to left, transparent, var(--gold));
    }
    .hero-ornament svg { flex-shrink: 0; }

    .hero-title {
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: clamp(3rem, 6.5vw, 5.5rem);
      line-height: 1.08;
      color: var(--white);
      margin-bottom: 22px;
    }
    .hero-title em {
      font-style: italic;
      color: var(--blush-mid);
      display: block;
    }

    .hero-desc {
      font-size: 21px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.75);
      max-width: 500px;
      margin-bottom: 44px;
      line-height: 1.85;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      color: var(--maroon);
      padding: 16px 36px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
    }
    .btn-primary:hover {
      background: var(--gold-light);
      box-shadow: 0 8px 28px rgba(0,0,0,0.22);
      transform: translateY(-2px);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--white);
      padding: 16px 36px;
      border-radius: 50px;
      border: 1.5px solid rgba(201,168,112,0.6);
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: border-color var(--transition), background var(--transition), transform var(--transition);
    }
    .btn-ghost:hover {
      border-color: var(--gold);
      background: rgba(201,168,112,0.1);
      transform: translateY(-2px);
    }

    .hero-scroll {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.4);
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }
    .hero-scroll-line {
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, rgba(201,168,112,0.6), transparent);
      animation: scrollPulse 2.2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; }
      50% { opacity: 1; }
    }

    /* ============================================================
       STRIP — feature bar
    ============================================================ */
    .strip {
      background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 100%);
      padding: 20px 0;
      border-top: 1px solid rgba(201,168,112,0.2);
    }
    .strip-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 28px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 44px;
      flex-wrap: wrap;
    }
    .strip-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.85);
      font-size: 13px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
    .strip-item svg { color: var(--gold); opacity: 0.85; flex-shrink: 0; }
    .strip-divider {
      width: 1px;
      height: 22px;
      background: rgba(201,168,112,0.3);
    }

    /* ============================================================
       ABOUT
    ============================================================ */
    #about {
      padding: var(--section-py) 0;
      position: relative;
      overflow: hidden;
    }
    #about::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -180px;
      width: 540px;
      height: 540px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,112,0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 5fr 6fr;
      gap: 80px;
      align-items: center;
    }

    .about-image-wrap {
      position: relative;
    }
    .about-img-frame {
      position: relative;
    }
    .about-img-frame::before {
      content: '';
      position: absolute;
      inset: -10px -10px auto auto;
      width: 100px;
      height: 100px;
      border-top: 2px solid var(--gold);
      border-right: 2px solid var(--gold);
      opacity: 0.5;
      z-index: 1;
      pointer-events: none;
    }
    .about-img-frame::after {
      content: '';
      position: absolute;
      inset: auto auto -10px -10px;
      width: 100px;
      height: 100px;
      border-bottom: 2px solid var(--gold);
      border-left: 2px solid var(--gold);
      opacity: 0.5;
      z-index: 1;
      pointer-events: none;
    }
    .about-img {
      width: 100%;
      height: 580px;
      object-fit: cover;
      object-position: center top;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      display: block;
    }

    .about-badge {
      position: absolute;
      bottom: -24px;
      right: -24px;
      background: linear-gradient(135deg, var(--maroon), var(--rose-dark));
      border-radius: var(--radius-lg);
      padding: 20px 26px;
      box-shadow: var(--shadow-lg);
      text-align: center;
      z-index: 2;
    }
    .about-badge-num {
      font-family: var(--font-heading);
      font-size: 2.8rem;
      font-weight: 300;
      color: var(--white);
      line-height: 1;
    }
    .about-badge-label {
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      margin-top: 4px;
    }

    .about-text {
      font-size: 17px;
      color: var(--text-muted);
      margin-bottom: 18px;
      line-height: 1.9;
    }

    .about-quote {
      position: relative;
      padding: 22px 28px 22px 36px;
      margin: 32px 0;
      background: linear-gradient(135deg, var(--blush-light), var(--gold-light));
      border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
      border-left: 3px solid var(--gold);
    }
    .about-quote::before {
      content: '\201C';
      position: absolute;
      top: -10px;
      left: 12px;
      font-family: var(--font-heading);
      font-size: 5rem;
      color: var(--gold);
      opacity: 0.35;
      line-height: 1;
    }
    .about-quote p {
      font-family: var(--font-heading);
      font-style: italic;
      font-size: 1.3rem;
      color: var(--maroon);
      line-height: 1.55;
    }

    .about-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 30px;
    }
    .about-tag {
      display: inline-block;
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text-muted);
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 8px 18px;
      border-radius: 50px;
      transition: border-color var(--transition), color var(--transition);
    }
    .about-tag:hover {
      border-color: var(--gold);
      color: var(--maroon);
    }

    /* ============================================================
       SERVICES
    ============================================================ */
    #services {
      padding: var(--section-py) 0;
      background: var(--white);
      position: relative;
    }
    #services::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a870' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }

    .services-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .services-header .section-label-plain { display: block; }
    .services-header .section-subtitle { margin: 0 auto; }

    .service-tabs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 52px;
    }
    .service-tab {
      background: none;
      border: 1.5px solid var(--border);
      color: var(--text-muted);
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 11px 24px;
      border-radius: 50px;
      cursor: pointer;
      transition: all var(--transition);
    }
    .service-tab:hover {
      border-color: var(--gold);
      color: var(--maroon);
    }
    .service-tab.active {
      background: var(--maroon);
      border-color: var(--maroon);
      color: var(--white);
    }

    /* Panel with category headers when "All" is active */
    .service-panel { display: none; animation: fadeIn 0.35s ease; }
    .service-panel.active { display: block; }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .price-category-heading {
      font-family: var(--font-heading);
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--maroon);
      margin: 36px 0 16px;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .price-category-heading::after {
      content: none;
    }
    .price-category-heading:first-child { margin-top: 0; }

    .price-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 16px;
    }

    .price-card {
      background: var(--blush-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 22px 26px;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 16px;
      transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
    }
    .price-card:hover {
      box-shadow: var(--shadow);
      border-color: var(--blush-mid);
      transform: translateY(-2px);
    }

    .price-card-info { flex: 1; }
    .price-card-name {
      font-family: var(--font-heading);
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--maroon);
      margin-bottom: 3px;
    }
    .price-card-duration {
      font-size: 14px;
      color: var(--text-muted);
      letter-spacing: 0.04em;
    }
    .price-card-note {
      font-size: 14px;
      color: var(--text-muted);
      margin-top: 6px;
      line-height: 1.45;
    }

    .price-tag-wrap {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 4px;
      flex-shrink: 0;
    }
    .price-tag {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--maroon);
      white-space: nowrap;
    }
    .price-tag-alt {
      font-family: var(--font-heading);
      font-size: 1.05rem;
      font-weight: 300;
      color: var(--text-muted);
      white-space: nowrap;
    }

    /* Featured / gold cards — same appearance as standard cards */

    .service-note {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: var(--gold-light);
      border: 1px solid rgba(201,168,112,0.4);
      border-radius: var(--radius);
      padding: 16px 22px;
      margin-bottom: 24px;
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.6;
    }
    .service-note svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }

    /* ============================================================
       REVIEWS SLIDER
    ============================================================ */
    #reviews {
      padding: var(--section-py) 0;
      background: var(--blush-bg);
      position: relative;
    }
    #reviews .section-eyebrow,
    #reviews .section-title { text-align: center; }

    .reviews-slider {
      position: relative;
      max-width: 780px;
      margin: 0 auto;
    }

    .reviews-track-clip {
      overflow: hidden;
    }

    .reviews-track {
      display: flex;
      transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }

    .review-card {
      min-width: 100%;
      padding: 40px 60px;
      display: flex;
      flex-direction: column;
      gap: 28px;
      box-sizing: border-box;
    }

    .review-stars {
      display: flex;
      gap: 4px;
    }
    .review-stars svg {
      width: 20px;
      height: 20px;
      color: var(--gold);
    }

    .review-text {
      font-family: var(--font-heading);
      font-size: clamp(1.15rem, 2.2vw, 1.45rem);
      font-weight: 300;
      font-style: italic;
      color: var(--maroon);
      line-height: 1.65;
      margin: 0;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .review-author-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(122,32,48,0.08);
      border: 1px solid rgba(201,168,112,0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-heading);
      font-size: 1.1rem;
      color: var(--maroon);
      flex-shrink: 0;
    }
    .review-author-name {
      font-size: 15px;
      font-weight: 500;
      color: var(--maroon);
      letter-spacing: 0.04em;
    }
    .review-author-detail {
      font-size: 13px;
      color: var(--text-muted);
      letter-spacing: 0.05em;
      margin-top: 2px;
    }

    .reviews-arrow {
      position: absolute;
      top: 42%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(122,32,48,0.2);
      background: rgba(122,32,48,0.05);
      color: var(--maroon);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background var(--transition), border-color var(--transition);
      z-index: 5;
    }
    .reviews-arrow:hover {
      background: rgba(122,32,48,0.1);
      border-color: var(--maroon);
    }
    .reviews-arrow.prev { left: -26px; }
    .reviews-arrow.next { right: -26px; }

    .reviews-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 32px;
    }
    .reviews-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(122,32,48,0.18);
      cursor: pointer;
      transition: background var(--transition), transform var(--transition);
    }
    .reviews-dot.active {
      background: var(--maroon);
      transform: scale(1.3);
    }

    @media (max-width: 860px) {
      .review-card { padding: 32px 36px; }
      .reviews-arrow.prev { left: -18px; }
      .reviews-arrow.next { right: -18px; }
    }
    @media (max-width: 640px) {
      .reviews-arrow { display: none; }
    }

    /* ============================================================
       GALLERY
    ============================================================ */
    #gallery {
      padding: var(--section-py) 0;
      background: var(--maroon-deep);
      position: relative;
      overflow: hidden;
    }
    #gallery::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 80% 20%, rgba(201,168,112,0.08) 0%, transparent 55%),
                  radial-gradient(ellipse at 20% 80%, rgba(196,112,112,0.06) 0%, transparent 50%);
      pointer-events: none;
    }

    .gallery-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .gallery-header .section-label-plain { color: var(--gold); display: block; }
    .gallery-header .section-title { color: var(--white); }
    .gallery-header .section-title em { color: var(--blush-mid); }
    .gallery-header .section-subtitle { color: rgba(255,255,255,0.55); margin: 0 auto; }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 12px;
    }

    .gallery-item {
      overflow: hidden;
      border-radius: var(--radius);
      cursor: pointer;
      position: relative;
    }
    .gallery-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(92, 21, 37, 0);
      transition: background var(--transition);
    }
    .gallery-item:hover::after {
      background: rgba(92, 21, 37, 0.25);
    }
    /* Zoom icon on hover */
    .gallery-item::before {
      content: '+';
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      color: var(--white);
      font-size: 2.5rem;
      font-weight: 200;
      opacity: 0;
      transition: opacity var(--transition);
    }
    .gallery-item:hover::before { opacity: 1; }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .gallery-item:hover img { transform: scale(1.06); }

    .gallery-item:nth-child(1) { grid-column: span 7; height: 390px; }
    .gallery-item:nth-child(2) { grid-column: span 5; height: 390px; }
    .gallery-item:nth-child(3) { grid-column: span 4; height: 290px; }
    .gallery-item:nth-child(4) { grid-column: span 4; height: 290px; }
    .gallery-item:nth-child(5) { grid-column: span 4; height: 290px; }

    /* ============================================================
       LIGHTBOX SLIDER
    ============================================================ */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(10, 2, 6, 0.95);
      align-items: center;
      justify-content: center;
    }
    .lightbox.open { display: flex; }

    .lightbox-img-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 88vw;
      max-height: 88vh;
    }
    .lightbox-img-wrap img {
      max-width: 88vw;
      max-height: 84vh;
      object-fit: contain;
      border-radius: var(--radius);
      box-shadow: 0 24px 80px rgba(0,0,0,0.6);
      user-select: none;
    }

    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 24px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: var(--white);
      font-size: 22px;
      cursor: pointer;
      line-height: 1;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition);
    }
    .lightbox-close:hover { background: rgba(255,255,255,0.2); }

    .lightbox-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: var(--white);
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background var(--transition), transform var(--transition);
      z-index: 10;
      flex-shrink: 0;
    }
    .lightbox-arrow:hover { background: rgba(255,255,255,0.22); }
    .lightbox-arrow.prev { left: 24px; }
    .lightbox-arrow.next { right: 24px; }
    .lightbox-arrow:hover.prev { transform: translateY(-50%) translateX(-2px); }
    .lightbox-arrow:hover.next { transform: translateY(-50%) translateX(2px); }

    .lightbox-counter {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 14px;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.1em;
    }

    .lightbox-dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
    }
    .lightbox-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      cursor: pointer;
      transition: background var(--transition), transform var(--transition);
    }
    .lightbox-dot.active {
      background: var(--gold);
      transform: scale(1.3);
    }

    /* ============================================================
       CONTACT
    ============================================================ */
    #contact {
      padding: var(--section-py) 0;
      background: var(--white);
      position: relative;
    }
    #contact::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      opacity: 0.4;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .contact-cards {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 36px;
    }
    .contact-card {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 20px 26px;
      background: var(--blush-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      transition: box-shadow var(--transition), border-color var(--transition);
    }
    .contact-card:hover {
      box-shadow: var(--shadow);
      border-color: var(--blush-mid);
    }
    .contact-card-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--maroon), var(--rose-dark));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--white);
    }
    .contact-card-label {
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 3px;
    }
    .contact-card-value {
      font-family: var(--font-heading);
      font-size: 1.15rem;
      color: var(--maroon);
    }
    .contact-card-value a {
      color: inherit;
      transition: color var(--transition);
    }
    .contact-card-value a:hover { color: var(--rose-dark); }

    .hours-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-top: 32px;
    }
    .hours-item {
      background: var(--blush-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 16px 20px;
    }
    .hours-day {
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 4px;
    }
    .hours-time {
      font-family: var(--font-heading);
      font-size: 1.1rem;
      color: var(--maroon);
    }

    .contact-map {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      height: 300px;
      margin-top: 32px;
    }
    .contact-map iframe {
      width: 100%;
      height: 100%;
      border: 0;
      filter: saturate(0.65) hue-rotate(-5deg);
    }
    .contact-location-header {
      font-family: var(--font-heading);
      font-size: 1.6rem;
      color: var(--maroon);
      margin-bottom: 8px;
    }
    .contact-location-address {
      font-size: 17px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      background: var(--maroon-deep);
      padding: 56px 0 28px;
      position: relative;
    }
    footer::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      opacity: 0.5;
    }

    .footer-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 28px;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 48px;
      flex-wrap: wrap;
      margin-bottom: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .footer-brand { display: flex; flex-direction: column; gap: 16px; max-width: 300px; }
    .footer-logo {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(201,168,112,0.35);
    }
    .footer-brand-name {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      color: var(--white);
      font-weight: 300;
    }
    .footer-brand-sub {
      font-size: 12px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: -12px;
    }
    .footer-tagline {
      font-size: 15px;
      color: rgba(255,255,255,0.5);
      line-height: 1.7;
    }

    .footer-links h4 {
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
      opacity: 0.85;
    }
    .footer-links ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px;
    }
    .footer-links li a {
      font-size: 15px;
      color: rgba(255,255,255,0.65);
      transition: color var(--transition);
    }
    .footer-links li a:hover { color: var(--blush-mid); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }

    .footer-social { display: flex; gap: 12px; }
    .footer-social a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.6);
      transition: background var(--transition), color var(--transition), border-color var(--transition);
    }
    .footer-social a:hover {
      background: rgba(201,168,112,0.2);
      border-color: rgba(201,168,112,0.4);
      color: var(--gold);
    }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 900px) {
      :root { --section-py: 68px; }

      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0; right: 0;
        background: rgba(253, 244, 242, 0.98);
        border-bottom: 1px solid var(--border);
        padding: 24px 28px;
        gap: 20px;
        backdrop-filter: blur(16px);
        z-index: 99;
      }
      .nav-toggle { display: flex; }

      .about-grid { grid-template-columns: 1fr; gap: 48px; }
      .about-img  { height: 420px; }
      .about-badge { right: 0; bottom: -20px; }

      .contact-grid { grid-template-columns: 1fr; gap: 52px; }

      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-item:nth-child(n) { grid-column: span 1; height: 200px; }
      .gallery-item:nth-child(1) { grid-column: span 2; height: 270px; }

      .lightbox-arrow.prev { left: 14px; }
      .lightbox-arrow.next { right: 14px; }

      .footer-top { flex-direction: column; gap: 36px; }
    }

    @media (max-width: 640px) {
      .hero-title { font-size: 2.6rem; }
      .hero-logo-wrap { width: 150px; height: 150px; }
      .hero-logo { width: 134px; height: 134px; }
      .price-grid { grid-template-columns: 1fr; }
      .service-tabs { gap: 8px; }
      .strip-divider { display: none; }
      .lightbox-arrow { display: none; }
      .lightbox-img-wrap { max-width: 95vw; }
      .lightbox-img-wrap img { max-width: 95vw; max-height: 80vh; }
    }
