/* ========================================
   Dr. Menna Abdelhafez — Luxury Aesthetic
======================================== */

/* ========================================
   Loader
======================================== */

.loading {
  display: none !important;
}

/* ========================================
   Variables
======================================== */

:root {
  --black: #0a0a0a;
  --charcoal: #121212;
  --charcoal-soft: #1a1a1a;
  --gold: #c5a059;
  --gold-soft: #d4b483;
  --gold-deep: #f6d6ae;
  --cream: #f3eee8;
  --cream-deep: #ebe4db;
  --white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --text-dark: #2a2420;
  --text-muted-dark: rgba(42, 36, 32, 0.72);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Montserrat", system-ui, sans-serif;
  --font-script: "Great Vibes", cursive;
  --font-ar: "Cairo", "Segoe UI", Tahoma, sans-serif;
  --radius: 18px;
  --transition: 0.35s ease;
  --pattern: url("../images/pattern.png");
}

* {
  box-sizing: border-box;
  &::before {
    box-sizing: border-box;
  }
  &::after {
    box-sizing: border-box;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition:
    color var(--transition),
    opacity var(--transition);
}

/* ========================================
   Section Helpers
======================================== */

.section-pad {
  padding: 110px 0;
}

.section-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  &.dark {
    background-image: var(--pattern);
    background-repeat: repeat;
    background-size: 420px auto;
    opacity: 0.045;
    mix-blend-mode: screen;
  }
  &.light {
    background-image: var(--pattern);
    background-repeat: no-repeat;
    background-size: 380px auto;
    opacity: 0.08;
    filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg);
  }
}

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.85rem;
  font-weight: 500;
  &.gold {
    color: var(--gold-soft);
  }
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.15;
  margin: 0;
  em {
    font-style: italic;
    color: var(--gold-soft);
  }
  &.dark {
    color: var(--text-dark);
  }
  &.light {
    color: var(--white);
  }
}

.section-lead {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  font-weight: 300;
  margin: 0;
}

/* ========================================
   Buttons
======================================== */

.btn {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  transition: all var(--transition);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-gold {
  background: linear-gradient(
    135deg,
    var(--gold-soft),
    var(--gold),
    var(--gold-deep)
  );
  color: var(--black);
  border-color: var(--gold);
  &:hover {
    background: var(--gold-soft);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(197, 160, 89, 0.28);
  }
}

/* ========================================
   Pill Buttons
======================================== */

.btn-gold-pill {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  color: #0d0d0d;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  padding: 0.65rem 0.65rem 0.65rem 1.6rem;
  min-height: 48px;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.25);
  &:hover {
    background: linear-gradient(135deg, #e4c68d, #d4b483, #b89347);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.4);
    .btn-icon-circle {
      &.dark {
        background: rgba(0, 0, 0, 0.35);
        transform: translateX(2px);
      }
    }
  }
}

.btn-outline-gold-pill {
  background: transparent;
  color: var(--gold-soft);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  padding: 0.55rem 0.55rem 0.55rem 1.35rem;
  min-height: 44px;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(197, 160, 89, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition);
  &:hover {
    border-color: var(--gold);
    color: #ffffff;
    background: rgba(197, 160, 89, 0.15);
    transform: translateY(-2px);
    .btn-icon-circle {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateX(2px);
    }
  }
}

/* ========================================
   Services
======================================== */

.services-section {
  .btn-outline-gold-pill {
    color: #0d0d0d;
    border-color: rgba(197, 160, 89, 0.65);
    .btn-icon-circle {
      color: #0d0d0d;
      border-color: rgba(197, 160, 89, 0.5);
    }
    &:hover {
      color: #0d0d0d;
      border-color: var(--gold);
      background: rgba(197, 160, 89, 0.22);
      .btn-icon-circle {
        color: #0d0d0d;
        border-color: var(--gold);
      }
    }
  }
  position: relative;
  background: #f4ede4;
  padding: 120px 0 100px;
  overflow: clip;
  .services-watermark {
    position: absolute;
    right: -40px;
    top: 10%;
    width: min(42vw, 520px);
    height: 80%;
    background-image: url("../images/pattern.png");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    opacity: 0.1;
    filter: invert(25%) sepia(20%) saturate(400%) hue-rotate(350deg);
    pointer-events: none;
    z-index: 0;
  }
  .services-header {
    position: relative;
    z-index: 2;
    margin-bottom: 2.75rem;
  }
  .services-label {
    font-size: 0.72rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold-soft);
    font-weight: 500;
    margin: 0 0 0.85rem;
  }
  .services-heading {
    font-family: var(--font-serif);
    font-size: clamp(2.3rem, 4.2vw, 3.45rem);
    font-weight: 500;
    line-height: 1.15;
    color: #1a1a1a;
    margin: 0;
    span {
      color: var(--gold-soft);
      font-style: italic;
    }
  }
  .services-intro {
    p {
      color: rgba(42, 36, 32, 0.72);
      font-size: 0.95rem;
      font-weight: 300;
      line-height: 1.7;
      margin: 0 0 1.15rem;
      max-width: 380px;
    }
  }
  .explore-link {
    margin-top: auto;
    font-size: 0.62rem;
    padding: 0.4rem 0.4rem 0.4rem 1rem;
    .btn-icon-circle {
      width: 26px;
      height: 26px;
      font-size: 0.8rem;
    }
  }
  .services-slider-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 28px;
  }
  .services-swiper {
    flex: 1;
    min-width: 0;
    padding: 34px 6px 12px;
    .swiper-wrapper {
      overflow: visible;
    }
    .swiper-slide {
      overflow: visible;
      height: 100%;
    }
  }
  .service-card {
    position: relative;
    padding-top: 0;
    height: 100%;
    &:hover {
      .service-card-inner {
        transform: translateY(-5px);
        box-shadow: 0 24px 48px rgba(70, 50, 30, 0.14);
      }
      .service-media {
        img {
          transform: scale(1.04);
        }
      }
    }
  }
  .service-card-inner {
    display: flex;
    width: 100%;
    height: 450px;
    background: linear-gradient(160deg, #efe5d8 0%, #e5d6c5 100%);
    border-radius: 140px 140px 18px 18px;
    overflow: hidden;
    transition:
      transform var(--transition),
      box-shadow var(--transition);
  }
  .service-icon {
    position: absolute;
    top: 0;
    left: 50%;
    width: 64px;
    height: 64px;
    margin: 0;
    border-radius: 50%;
    background: #111111;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 30;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    svg {
      width: 32px;
      height: 32px;
      display: block;
    }
  }
  .service-panel {
    width: 48%;
    display: flex;
    flex-direction: column;
    padding: 4.7rem 1.2rem 1.5rem 1.65rem;
    background: transparent;
    h3 {
      font-family: var(--font-serif);
      font-size: clamp(1.35rem, 1.7vw, 1.65rem);
      color: #1a1a1a;
      margin: 0 0 1rem;
      font-weight: 600;
      line-height: 1.15;
    }
    ul {
      list-style: none;
      padding: 0;
      margin: 0 0 1.35rem;
      flex: 1;
      li {
        color: #2a2420;
        font-size: 0.86rem;
        line-height: 1.55;
        padding: 0.18rem 0;
        font-weight: 400;
        &::before {
          content: "- ";
        }
      }
    }
  }
  .service-media {
    width: 52%;
    position: relative;
    overflow: hidden;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.65s ease;
    }
  }
  .slider-nav {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(197, 160, 89, 0.65);
    background: transparent;
    color: #0d0d0d;
    display: grid;
    place-items: center;
    font-size: 1.05rem;
    transition: all var(--transition);
    flex-shrink: 0;
    z-index: 5;
    cursor: pointer;
    &:hover {
      border-color: var(--gold);
      background: rgba(197, 160, 89, 0.22);
      color: #0d0d0d;
    }
  }
}

/* ========================================
   Videos
======================================== */

.videos-section {
  .btn-outline-gold-pill {
    color: #0d0d0d;
    border-color: rgba(197, 160, 89, 0.65);
    .btn-icon-circle {
      color: #0d0d0d;
      border-color: rgba(197, 160, 89, 0.5);
    }
    &:hover {
      color: #0d0d0d;
      border-color: var(--gold);
      background: rgba(197, 160, 89, 0.22);
      .btn-icon-circle {
        color: #0d0d0d;
        border-color: var(--gold);
      }
    }
  }
  background: var(--cream);
  overflow: hidden;
  .slider-nav {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(197, 160, 89, 0.65);
    background: transparent;
    color: #0d0d0d;
    display: grid;
    place-items: center;
    font-size: 1.05rem;
    transition: all var(--transition);
    flex-shrink: 0;
    z-index: 5;
    cursor: pointer;
    &:hover {
      border-color: var(--gold);
      background: rgba(197, 160, 89, 0.22);
      color: #0d0d0d;
    }
  }
  .videos-slider-wrap {
    position: relative;
    padding: 0 2.5rem;
    .slider-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      border-color: rgba(197, 160, 89, 0.65);
      color: #0d0d0d;
      background: transparent;
      &:hover {
        transform: translateY(-50%);
        background: rgba(197, 160, 89, 0.22);
        color: #0d0d0d;
        border-color: var(--gold);
      }
      &.prev {
        left: 0;
      }
      &.next {
        right: 0;
      }
    }
  }
  .video-card {
    display: block;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    border: 3px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 16px 36px rgba(42, 36, 32, 0.12);
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    &:hover {
      img {
        transform: scale(1.06);
      }
      .play-btn {
        i {
          background: var(--gold);
          transform: scale(1.05);
        }
      }
    }
  }
  .play-btn {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(10, 10, 10, 0.2);
    i {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.92);
      color: var(--black);
      display: grid;
      place-items: center;
      font-size: 1.4rem;
      padding-left: 3px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
      transition:
        transform var(--transition),
        background var(--transition);
    }
  }
}

/* ========================================
   Beauty Insights
======================================== */

.insights-section {
  .btn-outline-gold-pill {
    color: #0d0d0d;
    border-color: rgba(197, 160, 89, 0.65);
    .btn-icon-circle {
      color: #0d0d0d;
      border-color: rgba(197, 160, 89, 0.5);
    }
    &:hover {
      color: #0d0d0d;
      border-color: var(--gold);
      background: rgba(197, 160, 89, 0.22);
      .btn-icon-circle {
        color: #0d0d0d;
        border-color: var(--gold);
      }
    }
  }
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(4rem, 7vw, 6rem);
  background:
    radial-gradient(
      ellipse 55% 45% at 8% 18%,
      rgba(197, 160, 89, 0.12),
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 40% at 92% 78%,
      rgba(180, 140, 100, 0.1),
      transparent 55%
    ),
    linear-gradient(165deg, #f7f1ea 0%, #efe6db 48%, #f4ebe2 100%);
  color: var(--text-dark);
  .insights-decor {
    position: absolute;
    width: min(280px, 42vw);
    height: min(280px, 42vw);
    pointer-events: none;
    z-index: 0;
    opacity: 0.22;
    background-image: var(--pattern);
    background-size: contain;
    background-repeat: no-repeat;
    filter: sepia(0.45) saturate(0.7) brightness(0.85);
  }
  .insights-decor-tl {
    top: -4%;
    right: -2%;
    transform: rotate(12deg);
  }
  .insights-decor-br {
    bottom: -6%;
    left: -4%;
    transform: rotate(-18deg) scaleX(-1);
    opacity: 0.16;
  }
  .insights-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 90px;
    pointer-events: none;
    z-index: 0;
    background:
      radial-gradient(
        ellipse 70% 80% at 20% 100%,
        rgba(180, 145, 105, 0.12),
        transparent 70%
      ),
      radial-gradient(
        ellipse 60% 70% at 75% 100%,
        rgba(160, 130, 95, 0.1),
        transparent 70%
      );
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath d='M0 50 Q180 10 360 45 T720 40 T1080 55 T1440 30 V90 H0Z' fill='black'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath d='M0 50 Q180 10 360 45 T720 40 T1080 55 T1440 30 V90 H0Z' fill='black'/%3E%3C/svg%3E");
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
  }
  .container-fluid {
    z-index: 1;
  }
  .insights-intro {
    position: relative;
    z-index: 2;
    max-width: 360px;
    margin: 0;
    text-align: start;
    padding-inline: 0;
  }
  .insights-label {
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-soft);
    font-weight: 500;
    margin-bottom: 1rem;
  }
  .insights-heading {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(2.15rem, 3.6vw, 3.15rem);
    line-height: 1.18;
    color: #2a221c;
    margin-bottom: 1.15rem;
    em {
      font-style: italic;
      font-weight: 500;
      color: var(--gold-soft);
    }
  }
  .insights-dots {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    justify-content: flex-start;
    margin-bottom: 1.25rem;
    &::before {
      content: "";
      width: 28px;
      height: 1px;
      background: rgba(176, 141, 87, 0.55);
    }
    &::after {
      content: "";
      width: 28px;
      height: 1px;
      background: rgba(176, 141, 87, 0.55);
    }
    span {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #b08d57;
      opacity: 1;
      &:nth-child(2) {
        background: #8b6a42;
      }
    }
  }
  .insights-text {
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(42, 34, 28, 0.72);
    margin: 0 0 1.75rem;
    max-width: 32ch;
  }
  .insights-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.72rem 1.35rem;
    border-radius: 999px;
    background: #1a1612;
    color: #fff;
    border: 1px solid rgba(197, 160, 89, 0.55);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition:
      background var(--transition),
      border-color var(--transition),
      transform var(--transition);
    &:hover {
      background: #2a2420;
      border-color: var(--gold);
      color: #fff;
      transform: translateY(-1px);
    }
    .bi-stars {
      color: var(--gold-soft);
      font-size: 0.95rem;
    }
  }
  .insights-slider-wrap {
    position: relative;
    z-index: 1;
    padding: 0.35rem 2.6rem 2.25rem;
    overflow: hidden;
  }
  .insights-swiper {
    overflow: hidden;
    padding: 1.5rem 0 0.75rem;
    margin: 0 auto;
    .swiper-wrapper {
      align-items: stretch;
    }
    .swiper-slide {
      width: min(450px, 86vw);
      height: auto;
      transition: opacity 0.4s ease;
      opacity: 0.55;
      display: flex;
      justify-content: center;
      .insight-card {
        width: 100%;
      }
    }
    .swiper-slide-prev {
      opacity: 0.78;
    }
    .swiper-slide-next {
      opacity: 0.78;
    }
    .swiper-slide-active {
      opacity: 1;
      z-index: 3;
      .insight-card--image {
        box-shadow:
          0 22px 48px rgba(60, 40, 20, 0.16),
          0 0 0 1px rgba(197, 160, 89, 0.35);
      }
    }
  }
  .insight-card--image {
    position: relative;
    display: block;
    min-height: 0;
    height: auto;
    padding: 0;
    border: none;
    border-radius: 28px;
    background: transparent;
    box-shadow: 0 18px 40px rgba(60, 40, 20, 0.12);
    overflow: hidden;
    img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      border-radius: 28px;
    }
  }
  .insight-card {
    position: relative;
    display: flex;
    flex-direction: column;
    /* min-height: 520px; */
    height: 100%;
    /* padding: 2.2rem 1.8rem 2.4rem; */
    border-radius: 36px;
    background: linear-gradient(180deg, #fcf8f3 0%, #ecdcc9 100%);
    border: 1px solid #d2c5b4;
    box-shadow:
      0 20px 45px rgba(60, 40, 20, 0.08),
      0 6px 16px rgba(60, 40, 20, 0.03);
    overflow: hidden;
    color: #2a221c;
    transition:
      box-shadow 0.3s ease,
      border-color 0.3s ease;
    &:hover {
      .insight-illustration-circle {
        transform: scale(1.03);
      }
    }
  }
  .insight-card-corner-tl {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: #3d2e22;
    border-radius: 0 0 100% 0;
    z-index: 1;
    pointer-events: none;
  }
  .insight-card-corner-br {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: #3d2e22;
    border-radius: 100% 0 0 0;
    z-index: 1;
    pointer-events: none;
  }
  .insight-card-leaves {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 130px;
    height: 130px;
    color: #8b6a42;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
    svg {
      width: 100%;
      height: 100%;
    }
  }
  .insight-card-header {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.2rem;
    width: 100%;
  }
  .insight-card-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 0.9rem;
    img {
      height: 48px;
      width: auto;
      object-fit: contain;
      filter: brightness(0.2) sepia(0.2);
    }
  }
  .insight-card-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    h3 {
      font-family: var(--font-serif);
      font-size: 1.7rem;
      font-weight: 600;
      line-height: 1.15;
      color: #2a221c;
      margin: 0;
    }
  }
  .insight-num {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #3d2e22;
    color: #f3ebe2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
  }
  .insight-ar {
    font-family: var(--font-ar);
    font-size: 1rem;
    color: #8b6a42;
    margin: 0;
    line-height: 1.3;
    font-weight: 600;
  }
  .insight-card-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 1.1rem 0 0.5rem;
    width: 100%;
    position: relative;
    &::before {
      content: "";
      flex: 1;
      height: 1px;
      background: rgba(139, 106, 66, 0.22);
    }
    &::after {
      content: "";
      flex: 1;
      height: 1px;
      background: rgba(139, 106, 66, 0.22);
    }
    .dot {
      width: 5px;
      height: 5px;
      background: #8b6a42;
      border-radius: 50%;
      display: inline-block;
    }
  }
  .insight-card-body {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    flex: 1;
    align-items: center;
  }
  .insight-card--with-circle {
    .insight-card-left {
      width: 54%;
      padding-right: 0.5rem;
    }
    .insight-card-right {
      width: 46%;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  }
  .insight-card--center {
    .insight-card-left {
      width: 100%;
      display: flex;
      justify-content: center;
    }
    .insight-pills {
      width: 85%;
    }
  }
  .insight-pills {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    width: 100%;
    li {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 9px 12px;
      background: rgba(255, 255, 255, 0.42);
      border-radius: 20px;
      border: 1px solid rgba(139, 106, 66, 0.15);
      box-shadow: 0 4px 10px rgba(60, 40, 20, 0.02);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      transition:
        background-color 0.3s ease,
        border-color 0.3s ease;
      &:hover {
        background: rgba(255, 255, 255, 0.65);
        border-color: rgba(139, 106, 66, 0.3);
      }
    }
  }
  .insight-illustration-circle {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: 1.5px solid #d2c5b4;
    overflow: hidden;
    position: absolute;
    right: -32px;
    background: #ecdcc9;
    box-shadow:
      0 10px 24px rgba(60, 40, 20, 0.08),
      inset 0 0 10px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
  }
  .insight-page {
    display: none; /* Hide old absolute footer text */
  }
  .insight-card-footer {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding-top: 1.2rem;
    text-align: right;
    width: 100%;
  }
  .insight-page-num {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    color: rgba(42, 34, 28, 0.5);
    font-weight: 600;
  }
  .insights-nav {
    position: absolute;
    top: 46%;
    transform: translateY(-50%);
    z-index: 5;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(197, 160, 89, 0.65);
    background: transparent;
    color: #0d0d0d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    cursor: pointer;
    box-shadow: none;
    transition:
      background var(--transition),
      transform var(--transition),
      color var(--transition),
      border-color var(--transition);
    &:hover {
      background: rgba(197, 160, 89, 0.22);
      color: #0d0d0d;
      border-color: var(--gold);
      transform: translateY(-50%) scale(1.05);
    }
    &.prev {
      left: 0;
    }
    &.next {
      right: 0;
    }
  }
  .insights-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.5rem;
    .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
      margin: 0 !important;
      background: #d8d0c6;
      opacity: 1;
      border-radius: 50%;
      transition:
        background 0.3s ease,
        transform 0.3s ease;
    }
    .swiper-pagination-bullet-active {
      width: 8px;
      border-radius: 50%;
      background: #b08d57;
      transform: scale(1.05);
    }
  }
}

/* ========================================
   Booking
======================================== */

.booking-section {
  .btn-outline-gold-pill {
    color: #0d0d0d;
    border-color: rgba(197, 160, 89, 0.65);
    .btn-icon-circle {
      color: #0d0d0d;
      border-color: rgba(197, 160, 89, 0.5);
    }
    &:hover {
      color: #0d0d0d;
      border-color: var(--gold);
      background: rgba(197, 160, 89, 0.22);
      .btn-icon-circle {
        color: #0d0d0d;
        border-color: var(--gold);
      }
    }
  }
  .booking-card {
    .btn-outline-gold-pill {
      color: var(--gold-soft);
      .btn-icon-circle {
        color: var(--gold);
        border-color: rgba(197, 160, 89, 0.5);
      }
      &:hover {
        color: var(--gold-soft);
        .btn-icon-circle {
          color: var(--gold);
          border-color: var(--gold);
        }
      }
    }
  }
  position: relative;
  z-index: 20;
  margin-top: -110px;
  margin-bottom: -30px;
  .booking-card {
    background: linear-gradient(
      135deg,
      rgba(20, 22, 26, 0.96),
      rgba(12, 14, 17, 0.98)
    );
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 2.2rem 2.6rem;
    box-shadow:
      0 35px 80px rgba(0, 0, 0, 0.55),
      0 0 30px rgba(197, 160, 89, 0.05);
    position: relative;
    overflow: hidden;
    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: var(--pattern);
      background-size: 320px auto;
      opacity: 0.03;
      mix-blend-mode: screen;
      pointer-events: none;
    }
  }
  .booking-card-brand {
    position: relative;
    z-index: 1;
  }
  .booking-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 2.5vw, 2.3rem);
    font-weight: 500;
    color: var(--white);
    line-height: 1.15;
    margin: 0 0 0.5rem;
  }
  .script-gold-journey {
    font-family: var(--font-script);
    color: var(--gold-soft);
    font-size: 1.25em;
    font-weight: 400;
  }
  .flourish-svg {
    display: block;
    margin-top: 0.2rem;
  }
  .booking-form {
    position: relative;
    z-index: 1;
    .form-select {
      option {
        background: #121417;
        color: var(--white);
      }
    }
  }
  .input-icon-wrap {
    position: relative;
    width: 100%;
    .form-control {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.14);
      color: var(--white);
      border-radius: 999px;
      padding: 0.82rem 2.6rem 0.82rem 1.25rem;
      font-size: 0.85rem;
      letter-spacing: 0.02em;
      box-shadow: none;
      transition: all var(--transition);
      &::placeholder {
        color: rgba(255, 255, 255, 0.45);
        font-size: 0.82rem;
      }
      &:focus {
        background: rgba(255, 255, 255, 0.08);
        border-color: var(--gold);
        color: var(--white);
        box-shadow: 0 0 0 0.15rem rgba(197, 160, 89, 0.2);
      }
    }
    .form-select {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.14);
      color: var(--white);
      border-radius: 999px;
      padding: 0.82rem 2.6rem 0.82rem 1.25rem;
      font-size: 0.85rem;
      letter-spacing: 0.02em;
      box-shadow: none;
      transition: all var(--transition);
      &:focus {
        background: rgba(255, 255, 255, 0.08);
        border-color: var(--gold);
        color: var(--white);
        box-shadow: 0 0 0 0.15rem rgba(197, 160, 89, 0.2);
      }
    }
    .input-icon {
      position: absolute;
      right: 1.2rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--gold);
      pointer-events: none;
      font-size: 0.95rem;
    }
    &.select-wrap {
      .form-select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
      }
    }
  }
  .booking-secure {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
  }
}

/* ========================================
   Pill Buttons
======================================== */

.btn-dark-pill {
  background: rgba(15, 17, 20, 0.75);
  color: var(--white);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  padding: 0.65rem 0.65rem 0.65rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
  &:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(20, 22, 26, 0.95);
    transform: translateY(-2px);
    .btn-icon-circle {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateX(2px);
    }
  }
}

.btn-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(197, 160, 89, 0.5);
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: all var(--transition);
  &.dark {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #0d0d0d;
  }
}

/* ========================================
   Buttons
======================================== */

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  &:hover {
    background: var(--gold);
    color: var(--black);
  }
}

.btn-outline-light-gold {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  &:hover {
    border-color: var(--gold);
    color: var(--gold);
  }
}

.btn-outline-dark-gold {
  background: transparent;
  color: var(--text-dark);
  border-color: rgba(42, 36, 32, 0.35);
  &:hover {
    border-color: var(--gold);
    color: var(--gold-deep);
  }
}

.btn-sm-nav {
  padding: 0.7rem 1.15rem;
  font-size: 0.68rem;
}

/* ========================================
   Navbar
======================================== */

.site-navbar {
  padding: 1.25rem 0;
  transition:
    background var(--transition),
    backdrop-filter var(--transition),
    padding var(--transition);
  z-index: 1040;
  &.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.12);
  }
  .brand-logo {
    height: 72px;
    width: auto;
    object-fit: contain;
  }
  .nav-link {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0.5rem 0.5rem !important;
    position: relative;
    font-weight: 600;
    box-shadow: none !important;
    &::after {
      content: "";
      position: absolute;
      left: 0.5rem;
      right: 0.5rem;
      bottom: 0.15rem;
      height: 1.5px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform var(--transition);
    }
    &:hover {
      color: var(--gold) !important;
      &::after {
        transform: scaleX(1);
      }
    }
    &.active {
      color: var(--gold) !important;
      &::after {
        transform: scaleX(1);
      }
    }
  }
  .dropdown-toggle {
    &::after {
      margin-left: 0.4rem;
      vertical-align: 0.12em;
      border-top-color: currentColor;
    }
  }
  .gallery-dropdown {
    min-width: 11rem;
    box-shadow: none;
    margin-top: 0.65rem !important;
    padding: 0.45rem;
    border-radius: 14px;
    border: 1px solid rgba(197, 160, 89, 0.28);
    background: rgba(12, 12, 12, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: none;
    .dropdown-item {
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.8);
      border-radius: 0;
      padding: 0.7rem 0.95rem;
      position: relative;
      background: transparent;
      transition: color var(--transition);
      &::after {
        content: "";
        position: absolute;
        left: 0.95rem;
        right: 0.95rem;
        bottom: 0.35rem;
        height: 1.5px;
        background: var(--gold);
        transform: scaleX(0);
        transition: transform var(--transition);
      }
      &:hover {
        background: transparent;
        color: var(--gold);
        &::after {
          transform: scaleX(1);
        }
      }
      &:focus {
        background: transparent;
        color: var(--gold);
        &::after {
          transform: scaleX(1);
        }
      }
      &.active {
        background: transparent;
        color: var(--gold);
        &::after {
          transform: scaleX(1);
        }
      }
    }
  }
  .lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-width: 52px;
    height: 42px;
    padding: 0 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(197, 160, 89, 0.55);
    background: transparent;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition:
      background var(--transition),
      color var(--transition),
      border-color var(--transition);
    i {
      font-size: 0.95rem;
    }
    &:hover {
      background: var(--gold);
      color: #0d0d0d;
      border-color: var(--gold);
    }
  }
  .nav-cta-btn {
    padding: 0.4rem 0.4rem 0.4rem 1rem;
    font-size: 0.62rem;
    white-space: nowrap;
    .btn-icon-circle {
      width: 28px;
      height: 28px;
      font-size: 0.85rem;
    }
  }
  .navbar-toggler {
    padding: 0.35rem;
    &:focus {
      box-shadow: none;
    }
  }
}

/* ========================================
   Hero
======================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  background: var(--black);
  display: flex;
  flex-direction: column;
  .hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    .swiper-wrapper {
      height: 100% !important;
    }
    .swiper-slide {
      &.hero-slide {
        width: 100%;
        height: 100% !important;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        picture,
        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center center;
          display: block;
        }
      }
    }
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        95deg,
        rgba(8, 8, 8, 0.75) 0%,
        rgba(8, 8, 8, 0.42) 50%,
        rgba(8, 8, 8, 0.15) 100%
      ),
      linear-gradient(to top, rgba(8, 8, 8, 0.65) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
  }
  .hero-pattern {
    position: absolute;
    inset: 0;
    background-image: var(--pattern);
    background-repeat: repeat;
    background-size: 480px auto;
    opacity: 0.04;
    mix-blend-mode: screen;
    z-index: 2;
    pointer-events: none;
  }
  .hero-content {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 6.5rem;
    padding-bottom: 10.5rem;
  }
  .hero-eyebrow {
    color: var(--gold-soft);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.35rem;
  }
  .hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5.5vw, 4.6rem);
    font-weight: 500;
    line-height: 1.12;
    margin-bottom: 1.5rem;
    color: var(--white);
    .text-gold-serif {
      font-family: var(--font-serif);
      color: var(--gold-soft);
      font-style: normal;
    }
    .script-accent {
      font-family: var(--font-script);
      font-size: 0.85em;
      color: var(--gold-soft);
      letter-spacing: 0.02em;
      font-weight: 400;
    }
  }
  .hero-text {
    max-width: 480px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 300;
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 2.2rem;
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.1rem;
  }
  .hero-pagination-vertical {
    position: absolute;
    right: 3rem;
    top: 46%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .hero-page-v {
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.45);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    min-width: 48px;
    min-height: 44px;
    padding: 0.45rem 0.4rem;
    cursor: pointer;
    transition: all var(--transition);
    .dash-line {
      color: var(--gold);
      font-weight: 700;
    }
    &.active {
      color: var(--gold);
      transform: translateX(-3px);
    }
    &:hover {
      color: var(--gold);
      transform: translateX(-3px);
    }
  }
  .scroll-discover-left {
    position: absolute;
    left: 3rem;
    bottom: 8rem;
    z-index: 12;
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    color: rgba(212, 180, 131, 0.88);
    text-decoration: none;
    line-height: 1;
    &:hover {
      color: var(--gold);
    }
  }
  .scroll-label {
    font-size: 0.62rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
  }
  .mouse {
    width: 18px;
    height: 28px;
    border: 1.5px solid rgba(197, 160, 89, 0.75);
    border-radius: 12px;
    position: relative;
    flex-shrink: 0;
    .wheel {
      width: 3px;
      height: 5px;
      background: var(--gold);
      border-radius: 2px;
      position: absolute;
      left: 50%;
      top: 5px;
      transform: translateX(-50%);
      animation: wheel 1.6s infinite;
    }
  }
  .hero-bottom-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background: radial-gradient(
      100% 180% at 50% 100%,
      transparent 60%,
      rgba(243, 238, 232, 0.08) 100%
    );
    pointer-events: none;
    z-index: 3;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  }
  .hero-eyebrow {
    &.reveal {
      animation-delay: 0.15s;
    }
  }
  .hero-title {
    &.reveal {
      animation-delay: 0.3s;
    }
  }
  .hero-text {
    &.reveal {
      animation-delay: 0.45s;
    }
  }
  .hero-actions {
    &.reveal {
      animation-delay: 0.6s;
    }
  }
}

@keyframes wheel {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 8px);
  }
}

/* ========================================
   Services Page
======================================== */

.services-page-section {
  .service-card {
    position: relative;
    padding-top: 0;
    height: 100%;
    &:hover {
      .service-card-inner {
        transform: translateY(-5px);
        box-shadow: 0 24px 48px rgba(70, 50, 30, 0.14);
      }
      .service-media {
        img {
          transform: scale(1.04);
        }
      }
    }
  }
  .service-card-inner {
    display: flex;
    width: 100%;
    height: 450px;
    background: linear-gradient(160deg, #efe5d8 0%, #e5d6c5 100%);
    border-radius: 140px 140px 18px 18px;
    overflow: hidden;
    transition:
      transform var(--transition),
      box-shadow var(--transition);
  }
  .service-icon {
    position: absolute;
    top: 0;
    left: 50%;
    width: 64px;
    height: 64px;
    margin: 0;
    border-radius: 50%;
    background: #111111;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 30;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    svg {
      width: 32px;
      height: 32px;
      display: block;
    }
  }
  .service-panel {
    width: 48%;
    display: flex;
    flex-direction: column;
    padding: 4.7rem 1.2rem 1.5rem 1.65rem;
    background: transparent;
    h3 {
      font-family: var(--font-serif);
      font-size: clamp(1.35rem, 1.7vw, 1.65rem);
      color: #1a1a1a;
      margin: 0 0 1rem;
      font-weight: 600;
      line-height: 1.15;
    }
    ul {
      list-style: none;
      padding: 0;
      margin: 0 0 1.35rem;
      flex: 1;
      li {
        color: #2a2420;
        font-size: 0.86rem;
        line-height: 1.55;
        padding: 0.18rem 0;
        font-weight: 400;
        &::before {
          content: "- ";
        }
      }
    }
  }
  .service-media {
    width: 52%;
    position: relative;
    overflow: hidden;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.65s ease;
    }
  }
  background: var(--cream);
  .service-card-inner {
    min-height: 320px;
  }
  .btn-outline-gold-pill {
    color: #0d0d0d;
    border-color: rgba(197, 160, 89, 0.65);
    .btn-icon-circle {
      color: #0d0d0d;
      border-color: rgba(197, 160, 89, 0.5);
    }
  }
}

/* ========================================
   Related Services
======================================== */

.related-services {
  .service-card {
    position: relative;
    padding-top: 0;
    height: 100%;
    &:hover {
      .service-card-inner {
        transform: translateY(-5px);
        box-shadow: 0 24px 48px rgba(70, 50, 30, 0.14);
      }
      .service-media {
        img {
          transform: scale(1.04);
        }
      }
    }
  }
  .service-card-inner {
    display: flex;
    width: 100%;
    height: 450px;
    background: linear-gradient(160deg, #efe5d8 0%, #e5d6c5 100%);
    border-radius: 140px 140px 18px 18px;
    overflow: hidden;
    transition:
      transform var(--transition),
      box-shadow var(--transition);
  }
  .service-icon {
    position: absolute;
    top: 0;
    left: 50%;
    width: 64px;
    height: 64px;
    margin: 0;
    border-radius: 50%;
    background: #111111;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 30;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    svg {
      width: 32px;
      height: 32px;
      display: block;
    }
  }
  .service-panel {
    width: 48%;
    display: flex;
    flex-direction: column;
    padding: 4.7rem 1.2rem 1.5rem 1.65rem;
    background: transparent;
    h3 {
      font-family: var(--font-serif);
      font-size: clamp(1.35rem, 1.7vw, 1.65rem);
      color: #1a1a1a;
      margin: 0 0 1rem;
      font-weight: 600;
      line-height: 1.15;
    }
    ul {
      list-style: none;
      padding: 0;
      margin: 0 0 1.35rem;
      flex: 1;
      li {
        color: #2a2420;
        font-size: 0.86rem;
        line-height: 1.55;
        padding: 0.18rem 0;
        font-weight: 400;
        &::before {
          content: "- ";
        }
      }
    }
  }
  .service-media {
    width: 52%;
    position: relative;
    overflow: hidden;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.65s ease;
    }
  }
  background: var(--cream);
  .service-card-inner {
    min-height: 320px;
    min-height: 280px;
  }
  .btn-outline-gold-pill {
    color: #0d0d0d;
    border-color: rgba(197, 160, 89, 0.65);
    .btn-icon-circle {
      color: #0d0d0d;
      border-color: rgba(197, 160, 89, 0.5);
    }
  }
}

/* ========================================
   Service Detail
======================================== */

.service-detail-section {
  .service-icon {
    position: absolute;
    top: 0;
    left: 50%;
    width: 64px;
    height: 64px;
    margin: 0;
    border-radius: 50%;
    background: #111111;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 30;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    svg {
      width: 32px;
      height: 32px;
      display: block;
    }
  }
  background: var(--cream);
  .service-detail-media {
    border-radius: 28px 28px 18px 18px;
    aspect-ratio: 4 / 5;
    background: #1c1c1c;
    @media (min-width: 992px) {
      position: sticky;
      top: 110px;
    }
    img {
      object-fit: cover;
    }
  }
  .service-detail-panel {
    h2 {
      font-family: var(--font-serif);
      font-weight: 500;
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      color: var(--text-dark);
      margin: 0 0 1rem;
    }
    .service-icon {
      position: relative;
      top: auto;
      left: auto;
      transform: none;
      margin-bottom: 1rem;
    }
    p {
      color: var(--text-muted-dark);
      font-weight: 300;
      margin-bottom: 1.25rem;
    }
  }
  .related-services-panel {
    background: linear-gradient(160deg, #efe5d8 0%, #e5d6c5 100%);
    border-radius: 28px;
    padding: 2rem 1.75rem 1.75rem;
    border: 1px solid rgba(197, 160, 89, 0.22);
  }
  .related-services-panel__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.35rem;
  }
  .related-services-panel__title {
    font-family: var(--font-serif);
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    font-weight: 500;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
    span {
      color: var(--gold);
      font-style: italic;
    }
  }
  .related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
  }
  .related-service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 58px;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(197, 160, 89, 0.32);
    border-radius: 14px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.3;
    transition:
      background var(--transition),
      color var(--transition),
      border-color var(--transition),
      transform var(--transition);
    i {
      color: var(--gold);
      flex-shrink: 0;
      font-size: 0.95rem;
    }
    &:hover {
      background: #111;
      border-color: #111;
      color: #fff;
      transform: translateY(-2px);
      i {
        color: var(--gold);
      }
    }
  }
  .btn-outline-gold-pill {
    color: #0d0d0d;
    border-color: rgba(197, 160, 89, 0.65);
    .btn-icon-circle {
      color: #0d0d0d;
      border-color: rgba(197, 160, 89, 0.5);
    }
  }
}

.services-slider-wrap > .slider-nav {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(197, 160, 89, 0.65);
  background: transparent;
  color: #0d0d0d;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
  z-index: 5;
  cursor: pointer;
  transition: all var(--transition);
}

.services-slider-wrap > .slider-nav:hover {
  background: rgba(197, 160, 89, 0.22);
  color: #0d0d0d;
  border-color: var(--gold);
}

/* ========================================
   About
======================================== */

.about-section {
  background: var(--charcoal);
  overflow: hidden;
  .about-text {
    color: var(--text-muted);
    font-weight: 300;
    margin: 1.25rem 0 1.5rem;
    max-width: 420px;
  }
  .signature {
    font-family: var(--font-script);
    font-size: 2.6rem;
    color: var(--gold);
    margin: 0 0 1.25rem;
    line-height: 1;
  }
  .about-portrait {
    position: relative;
    max-width: 380px;
    margin: 0 auto;
    aspect-ratio: 3 / 4.2;
  }
  .arch-frame {
    position: absolute;
    inset: -10px -10px -4px;
    border: 1px solid var(--gold);
    border-radius: 999px 999px 28px 28px;
    opacity: 0.85;
  }
  .arch-image {
    position: absolute;
    inset: 0;
    border-radius: 999px 999px 24px 24px;
    overflow: hidden;
    background: #1c1c1c;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }
  }
  .about-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    li {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }
    h3 {
      font-family: var(--font-serif);
      font-size: 1.2rem;
      margin: 0 0 0.2rem;
      color: var(--white);
      font-weight: 500;
    }
    p {
      margin: 0;
      color: var(--text-muted);
      font-size: 0.85rem;
      font-weight: 300;
    }
  }
  .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.7);
    display: grid;
    place-items: center;
    color: var(--gold);
    flex-shrink: 0;
  }
}

/* ========================================
   Service Benefits
======================================== */

.service-benefits {
  .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.7);
    display: grid;
    place-items: center;
    color: var(--gold);
    flex-shrink: 0;
  }
  background: var(--charcoal);
  .benefit-card {
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(197, 160, 89, 0.22);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    transition:
      border-color var(--transition),
      transform var(--transition);
    &:hover {
      border-color: rgba(197, 160, 89, 0.55);
      transform: translateY(-3px);
    }
    h3 {
      font-family: var(--font-serif);
      font-size: 1.35rem;
      font-weight: 500;
      margin: 0 0 0.45rem;
      color: var(--white);
    }
    p {
      margin: 0;
      color: var(--text-muted);
      font-weight: 300;
      font-size: 0.9rem;
    }
  }
}

/* ========================================
   About Values
======================================== */

.about-values {
  .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.7);
    display: grid;
    place-items: center;
    color: var(--gold);
    flex-shrink: 0;
  }
  background: var(--charcoal);
}

/* ========================================
   Videos Page
======================================== */

.videos-page-section {
  .video-card {
    display: block;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    border: 3px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 16px 36px rgba(42, 36, 32, 0.12);
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    &:hover {
      img {
        transform: scale(1.06);
      }
      .play-btn {
        i {
          background: var(--gold);
          transform: scale(1.05);
        }
      }
    }
  }
  .play-btn {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(10, 10, 10, 0.2);
    i {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.92);
      color: var(--black);
      display: grid;
      place-items: center;
      font-size: 1.4rem;
      padding-left: 3px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
      transition:
        transform var(--transition),
        background var(--transition);
    }
  }
  background: var(--cream);
  .video-card {
    aspect-ratio: 9 / 14;
    display: block;
  }
  .btn-outline-gold-pill {
    color: #0d0d0d;
    border-color: rgba(197, 160, 89, 0.65);
    .btn-icon-circle {
      color: #0d0d0d;
      border-color: rgba(197, 160, 89, 0.5);
    }
  }
}

/* ========================================
   Artistry Quote
======================================== */

.quote-section {
  &.artistry-section {
    background: #0a0705;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: clamp(520px, 78vh, 760px);
    display: flex;
    align-items: center;
  }
}

/* ========================================
   Artistry
======================================== */

.artistry-section {
  .artistry-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
  }
  .artistry-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(
        90deg,
        rgba(8, 5, 3, 0.72) 0%,
        rgba(8, 5, 3, 0.35) 38%,
        rgba(8, 5, 3, 0.15) 55%,
        rgba(8, 5, 3, 0.45) 100%
      ),
      linear-gradient(
        180deg,
        rgba(8, 5, 3, 0.25) 0%,
        transparent 30%,
        transparent 70%,
        rgba(8, 5, 3, 0.35) 100%
      );
  }
  .container-fluid {
    z-index: 2;
    width: 100%;
    padding-top: clamp(4rem, 8vw, 6.5rem);
    padding-bottom: clamp(4rem, 8vw, 6.5rem);
  }
  .artistry-row {
    min-height: clamp(420px, 58vh, 620px);
  }
  .artistry-glass {
    position: relative;
    max-width: 520px;
    padding: clamp(2.75rem, 5vw, 4rem) clamp(2rem, 4vw, 3.25rem)
      clamp(2.75rem, 5vw, 3.75rem);
    color: var(--white);
    isolation: isolate;
    &::before {
      content: "";
      position: absolute;
      z-index: -1;
      top: -12%;
      left: -22%;
      right: -28%;
      bottom: -14%;
      /* background:
      radial-gradient(ellipse 75% 70% at 35% 48%, rgba(14, 9, 6, 0.82) 0%, rgba(10, 7, 5, 0.62) 42%, rgba(8, 5, 3, 0.28) 68%, transparent 82%); */
      /* border-radius: 62% 38% 44% 56% / 48% 62% 38% 52%; */
      /* backdrop-filter: blur(16px); */
      -webkit-backdrop-filter: blur(16px);
      box-shadow:
        inset 0 0 80px rgba(255, 210, 150, 0.035),
        0 24px 70px rgba(0, 0, 0, 0.28);
    }
  }
  .artistry-eyebrow {
    margin: 0 0 1.1rem;
    color: var(--gold-soft);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
  }
  .artistry-title {
    margin: 0 0 1.15rem;
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(2.8rem, 5.5vw, 4.35rem);
    line-height: 1.05;
    color: #fff;
    letter-spacing: 0.01em;
  }
  .artistry-script {
    display: inline-block;
    font-family: var(--font-script);
    font-size: 1.08em;
    font-weight: 400;
    color: var(--gold-soft);
    letter-spacing: 0.01em;
    margin-left: 0.12em;
    line-height: 1;
    transform: translateY(0.06em);
  }
  .artistry-text {
    margin: 0 0 1.85rem;
    max-width: 360px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.7;
  }
  .artistry-cta {
    background: transparent;
    color: #c48a4e;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.85rem 1.65rem;
    border-radius: 999px;
    border: 1px solid rgba(196, 138, 78, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    transition: all var(--transition);
    span {
      font-size: 1rem;
      line-height: 1;
      transition: transform var(--transition);
    }
    &:hover {
      color: #fff;
      border-color: #c48a4e;
      background: rgba(196, 138, 78, 0.14);
      transform: translateY(-2px);
      span {
        transform: translateX(3px);
      }
    }
  }
  .artistry-features {
    list-style: none;
    padding: 40px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.65rem;
    max-width: 340px;
    margin-left: auto;
    background: radial-gradient(
      ellipse 75% 70% at 35% 48%,
      rgba(14, 9, 6, 0.82) 0%,
      rgba(10, 7, 5, 0.62) 42%,
      rgba(8, 5, 3, 0.28) 68%,
      transparent 82%
    );
    border-radius: 30px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
      inset 0 0 80px rgba(255, 210, 150, 0.035),
      0 24px 70px rgba(0, 0, 0, 0.28);
    li {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    h3 {
      margin: 0.15rem 0 0.2rem;
      font-family: var(--font-sans);
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--gold-soft);
      letter-spacing: 0.01em;
    }
    p {
      margin: 0;
      color: rgba(255, 255, 255, 0.88);
      font-size: 0.8rem;
      font-weight: 300;
      line-height: 1.45;
      max-width: 240px;
    }
  }
  .artistry-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(212, 180, 131, 0.85);
    display: grid;
    place-items: center;
    color: var(--gold-soft);
    flex-shrink: 0;
    svg {
      width: 22px;
      height: 22px;
    }
  }
}

/* ========================================
   Footer
======================================== */

.site-footer {
  .footer-top-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 48px;
    margin-bottom: 48px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.18);
    position: relative;
    z-index: 1;
  }
  .footer-cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2.1rem, 4.2vw, 3.25rem);
    font-weight: 500;
    line-height: 1.12;
    max-width: 560px;
    margin: 0;
    color: #fff;
    .script-accent {
      font-family: var(--font-script);
      font-size: 1.15em;
      color: var(--gold-soft);
      font-weight: 400;
    }
  }
  .footer-cta-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .footer-cta-note {
    margin: 0;
    max-width: 260px;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 300;
  }
  .footer-grid {
    margin-bottom: 0.5rem;
  }
  background: #0d0d0d;
  padding: 90px 0 0;
  position: relative;
  border-top: 1px solid rgba(197, 160, 89, 0.1);
  .footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1.1rem;
  }
  .footer-about {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 300;
    margin-bottom: 1.25rem;
  }
  .footer-social {
    display: flex;
    gap: 0.75rem;
    a {
      width: 38px;
      height: 38px;
      border: 1px solid rgba(197, 160, 89, 0.35);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--gold);
      &:hover {
        background: var(--gold);
        color: var(--black);
      }
    }
  }
  h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 1.15rem;
    color: var(--white);
    font-weight: 500;
  }
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    li {
      margin-bottom: 0.65rem;
    }
    a {
      color: var(--text-muted);
      font-size: 0.88rem;
      font-weight: 300;
      &:hover {
        color: var(--gold);
      }
    }
  }
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    li {
      margin-bottom: 0.65rem;
      color: var(--text-muted);
      font-size: 0.88rem;
      font-weight: 300;
      display: flex;
      gap: 0.55rem;
      align-items: flex-start;
    }
    a {
      color: var(--text-muted);
      font-size: 0.88rem;
      font-weight: 300;
      &:hover {
        color: var(--gold);
      }
    }
    i {
      color: var(--gold);
      margin-top: 0.15rem;
    }
  }
  .footer-cta-text {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 300;
    margin-bottom: 1rem;
  }
  .footer-bottom {
    margin-top: 3.5rem;
    padding: 1.35rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    p {
      margin: 0;
      color: rgba(255, 255, 255, 0.4);
      font-size: 0.8rem;
    }
  }
}

/* ========================================
   Floating Socials
======================================== */

.float-socials {
  position: fixed;
  left: 1.25rem;
  right: auto;
  bottom: 1.5rem;
  z-index: 1045;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.float-social {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  background: transparent;
  color: var(--gold-soft);
  border: 1px solid rgba(197, 160, 89, 0.65);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
  &.call {
    background: transparent;
    color: var(--gold-soft);
    border-color: rgba(197, 160, 89, 0.65);
    &:hover {
      color: #fff;
      border-color: var(--gold);
      background: rgba(197, 160, 89, 0.15);
      transform: translateY(-3px) scale(1.05);
    }
  }
  &.wa {
    background: transparent;
    color: var(--gold-soft);
    border-color: rgba(197, 160, 89, 0.65);
    &:hover {
      color: #fff;
      border-color: var(--gold);
      background: rgba(197, 160, 89, 0.15);
      transform: translateY(-3px) scale(1.05);
    }
  }
  &:hover {
    color: #fff;
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.15);
    transform: translateY(-3px) scale(1.05);
  }
}

/* ========================================
   Back To Top
======================================== */

.back-to-top {
  position: fixed;
  right: 1.25rem;
  left: auto;
  bottom: 1.5rem;
  z-index: 1045;
  background: transparent;
  color: var(--gold-soft);
  border: 1px solid rgba(197, 160, 89, 0.65);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity var(--transition),
    visibility var(--transition),
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
  &.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  &:hover {
    color: #fff;
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.15);
    transform: translateY(-3px) scale(1.05);
  }
}

html[dir="rtl"] .float-socials {
  left: auto;
  right: 1.25rem;
}

html[dir="rtl"] .back-to-top {
  right: auto;
  left: 1.25rem;
}

/* ========================================
   Mobile Sticky CTA
======================================== */

.mobile-sticky-cta {
  display: none;
}

/* ========================================
   Instagram
======================================== */

.instagram-section {
  background: var(--charcoal);
  padding: 80px 0 70px;
  position: relative;
  .instagram-header {
    margin-bottom: 2rem;
    i {
      font-size: 1.5rem;
      color: var(--gold);
      display: block;
      margin-bottom: 0.75rem;
    }
    h3 {
      font-family: var(--font-serif);
      font-size: 1.6rem;
      letter-spacing: 0.08em;
      margin-bottom: 0.5rem;
    }
    p {
      color: var(--text-muted);
      font-size: 0.9rem;
      font-weight: 300;
      margin: 0;
    }
  }
  .instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
  }
  .ig-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border-radius: 6px;
    &.tall {
      aspect-ratio: 3 / 4;
      grid-row: span 1;
    }
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.55s ease;
    }
    &:hover {
      img {
        transform: scale(1.08);
      }
    }
  }
}

/* ========================================
   Insight Pills
======================================== */

.pill-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: #fff;
  border: 1px solid rgba(139, 106, 66, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b6a42;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.03);
  svg {
    width: 24px;
    height: 24px;
    display: block;
  }
}

.pill-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  strong {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: #2a221c;
    letter-spacing: 0.01em;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .insight-ar {
    font-size: 0.88rem;
    color: #8b6a42;
    font-weight: 500;
    line-height: 1.3;
  }
}

/* ========================================
   Reveal Animations
======================================== */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: revealUp 0.9s ease forwards;
}

.will-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  &.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

.will-reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  &.is-visible {
    opacity: 1;
    transform: translateX(0);
  }
}

.will-reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  &.is-visible {
    opacity: 1;
    transform: translateX(0);
  }
}

.will-reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  &.is-visible {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Inner Pages
======================================== */

.page-inner {
  .site-navbar {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.12);
  }
}

/* ========================================
   Page Hero
======================================== */

.page-hero {
  min-height: 48vh;
  padding: 8.5rem 0 4.5rem;
  background: var(--black);
  .page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
  }
  .page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        95deg,
        rgba(8, 8, 8, 0.88) 0%,
        rgba(8, 8, 8, 0.55) 55%,
        rgba(8, 8, 8, 0.35) 100%
      ),
      linear-gradient(to top, rgba(8, 8, 8, 0.75) 0%, transparent 55%);
    z-index: 1;
  }
  .page-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: var(--pattern);
    background-repeat: repeat;
    background-size: 420px auto;
    opacity: 0.045;
    mix-blend-mode: screen;
    z-index: 2;
    pointer-events: none;
  }
  .container {
    position: relative;
    z-index: 3;
  }
  .container-fluid {
    position: relative;
    z-index: 3;
  }
  .page-breadcrumb {
    margin-bottom: 1.35rem;
    padding: 0.45rem 0.85rem 0.45rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(197, 160, 89, 0.35);
    background: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(8px);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    column-gap: 0.55rem;
    row-gap: 0.35rem;
    a {
      color: rgba(255, 255, 255, 0.7);
      transition: color var(--transition);
      i {
        font-size: 0.85rem;
        color: var(--gold-soft);
      }
      &:hover {
        color: var(--gold-soft);
      }
    }
    .sep {
      color: rgba(197, 160, 89, 0.45);
      font-size: 0.7rem;
      line-height: 1;
      i {
        font-size: 0.62rem;
      }
    }
    .current {
      color: var(--gold-soft);
      font-weight: 600;
    }
  }
  .page-hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 0.85rem;
    font-weight: 500;
  }
  .page-hero-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 1.12;
    margin: 0;
    color: var(--white);
    width: 100%;
    em {
      font-style: italic;
      color: var(--gold-soft);
    }
    .script-accent {
      font-style: italic;
      color: var(--gold-soft);
      font-family: var(--font-script);
      font-style: normal;
      font-weight: 400;
      font-size: 1.15em;
    }
  }
}

/* ========================================
   Photos Page
======================================== */

.photos-page-section {
  background: var(--cream);
  .insight-article {
    background: #fff;
    border-radius: 22px;
    border: 1px solid rgba(197, 160, 89, 0.18);
    min-height: 240px;
    transition:
      transform var(--transition),
      box-shadow var(--transition);
    &:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 40px rgba(42, 36, 32, 0.1);
    }
  }
  .insight-article--image {
    min-height: 320px;
    background-color: #1c1c1c;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .photo-card {
    display: block;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
aspect-ratio: 3/4;

    border: 1px solid rgba(197, 160, 89, 0.18);
    box-shadow: 0 12px 28px rgba(42, 36, 32, 0.08);
    transition:
      transform var(--transition),
      box-shadow var(--transition);
    img { 
      width: 100%;
      height: 100%;
      object-fit: cover;
     
      transition: transform 0.6s ease;
    }
    &::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(10, 10, 10, 0.08);
      opacity: 0;
      transition: opacity var(--transition);
    }
    &:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 40px rgba(42, 36, 32, 0.12);
      img {
        transform: scale(1.06);
      }
      &::after {
        opacity: 1;
      }
    }
  }
  .insight-article-media {
    min-height: 100%;
    background: #1c1c1c;
    img {
      object-fit: cover;
    }
  }
  .insight-article-body {
    padding: 1.6rem 1.5rem;
    .tag {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.65rem;
      font-weight: 600;
    }
    h3 {
      font-family: var(--font-serif);
      font-size: 1.55rem;
      font-weight: 500;
      color: var(--text-dark);
      margin: 0 0 0.65rem;
    }
    p {
      color: var(--text-muted-dark);
      font-weight: 300;
      font-size: 0.9rem;
      margin: 0 0 1rem;
    }
  }
  .btn-outline-gold-pill {
    color: #0d0d0d;
    border-color: rgba(197, 160, 89, 0.65);
    .btn-icon-circle {
      color: #0d0d0d;
      border-color: rgba(197, 160, 89, 0.5);
    }
  }
}

/* ========================================
   Contact Page
======================================== */

.contact-page-section {
  background: var(--cream);
  .contact-info-card {
    background: var(--charcoal);
    border-radius: 24px;
    padding: 2.25rem 2rem;
    .section-pattern {
      opacity: 0.06;
    }
    h2 {
      font-family: var(--font-serif);
      font-size: clamp(1.9rem, 3vw, 2.4rem);
      font-weight: 500;
      color: var(--white);
      margin: 0 0 1rem;
      position: relative;
    }
  }
  .contact-list {
    margin-bottom: 0;
    i {
      color: var(--gold);
      font-size: 1.15rem;
      margin-top: 0.15rem;
    }
    strong {
      display: block;
      font-family: var(--font-serif);
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 0.15rem;
    }
    span {
      color: var(--text-muted);
      font-weight: 300;
      font-size: 0.92rem;
    }
    a {
      color: var(--text-muted);
      font-weight: 300;
      font-size: 0.92rem;
      &:hover {
        color: var(--gold-soft);
      }
    }
  }
  .contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.25rem 2rem;
    border: 1px solid rgba(197, 160, 89, 0.2);
    h3 {
      font-family: var(--font-serif);
      font-size: 1.8rem;
      font-weight: 500;
      color: var(--text-dark);
      margin: 0 0 0.35rem;
    }
    .lead-text {
      color: var(--text-muted-dark);
      font-weight: 300;
      margin-bottom: 1.5rem;
    }
    .form-control {
      background: var(--cream);
      border: 1px solid rgba(197, 160, 89, 0.25);
      border-radius: 999px;
      padding: 0.85rem 1.15rem;
      color: var(--text-dark);
      font-size: 0.9rem;
      min-height: 52px;
      &:focus {
        border-color: var(--gold);
        box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
      }
    }
    .form-select {
      background: var(--cream);
      border: 1px solid rgba(197, 160, 89, 0.25);
      border-radius: 999px;
      padding: 0.85rem 1.15rem;
      color: var(--text-dark);
      font-size: 0.9rem;
      min-height: 52px;
      &:focus {
        border-color: var(--gold);
        box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
      }
    }
    textarea {
      &.form-control {
        border-radius: 18px;
        min-height: 130px;
        resize: vertical;
      }
    }
  }
  .contact-map {
    border-radius: 22px;
    height: 450px;
    /* background: #1c1c1c; */
    border: 1px solid rgba(197, 160, 89, 0.2);
    iframe {
      width: 100%;
      height: 100%;
      border: 0;
      filter: grayscale(0.35) contrast(1.05);
    }
  }
  .btn-outline-gold-pill {
    color: #0d0d0d;
    border-color: rgba(197, 160, 89, 0.65);
    .btn-icon-circle {
      color: #0d0d0d;
      border-color: rgba(197, 160, 89, 0.5);
    }
  }
}

.contact-info-card > p {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.75rem;
  position: relative;
}

/* ========================================
   About Story
======================================== */

.about-story {
  background: var(--cream);
  .btn-outline-gold-pill {
    color: #0d0d0d;
    border-color: rgba(197, 160, 89, 0.65);
    .btn-icon-circle {
      color: #0d0d0d;
      border-color: rgba(197, 160, 89, 0.5);
    }
  }
  .about-story-text {
    color: var(--text-muted-dark);
    font-weight: 300;
    font-size: 1rem;
    max-width: 58ch;
    p {
      margin-bottom: 1rem;
      &:last-child {
        margin-bottom: 0;
      }
    }
  }
}

/* ========================================
   Vision & Mission
======================================== */

.about-vision-mission {
  .btn-outline-gold-pill {
    color: #0d0d0d;
    border-color: rgba(197, 160, 89, 0.65);
    .btn-icon-circle {
      color: #0d0d0d;
      border-color: rgba(197, 160, 89, 0.5);
    }
  }
  background: var(--cream);
  .vm-card {
    padding: 2.4rem 2rem 2.1rem;
    border-radius: 24px;
    border: 1px solid rgba(197, 160, 89, 0.28);
    background: #fff;
    transition:
      transform var(--transition),
      box-shadow var(--transition),
      border-color var(--transition);
    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(
        90deg,
        var(--gold-soft),
        var(--gold),
        transparent
      );
    }
    &:hover {
      transform: translateY(-4px);
      border-color: rgba(197, 160, 89, 0.55);
      box-shadow: 0 18px 40px rgba(42, 36, 32, 0.08);
    }
    .vm-label {
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 0.55rem;
    }
    h3 {
      font-family: var(--font-serif);
      font-size: clamp(1.7rem, 2.5vw, 2.15rem);
      font-weight: 500;
      color: var(--text-dark);
      margin: 0 0 0.9rem;
      line-height: 1.2;
      em {
        font-style: italic;
        color: var(--gold);
      }
    }
    p {
      margin: 0;
      color: var(--text-muted-dark);
      font-weight: 300;
      font-size: 0.95rem;
      line-height: 1.7;
    }
  }
  .vm-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.55);
    color: var(--gold);
    font-size: 1.35rem;
    background: rgba(197, 160, 89, 0.08);
  }
}

.about-story-text + .about-story-text {
  margin-top: 1rem;
}

.service-panel h3 a,
.service-detail-list li a {
  color: inherit;
  text-decoration: none;
}

.service-panel h3 a:hover,
.service-detail-list li a:hover {
  color: var(--gold);
}

.service-panel .explore-link {
  margin-top: auto;
}

html[dir="rtl"] body {
  font-family: 'Cairo', sans-serif;
}

html[dir="rtl"] .related-service-item i {
  transform: scaleX(-1);
}

html[dir="rtl"] .hero-text,
html[dir="rtl"] .about-text,
html[dir="rtl"] p,
html[dir="rtl"] .nav-link,
html[dir="rtl"] .btn {
  font-family: 'Cairo', sans-serif;
}


/* ========================================
   Responsive (from media.css)
======================================== */

/* ========================================
   Responsive
======================================== */

@media (min-width: 992px) {
  .site-navbar .nav-item.dropdown:hover > .dropdown-menu,
  .site-navbar .nav-item.dropdown:focus-within > .dropdown-menu {
    display: block;
    margin-top: 0 !important;
    top: 100%;
  }

  .site-navbar .nav-item.dropdown > .dropdown-toggle::after {
    transition: transform var(--transition);
  }

  .site-navbar .nav-item.dropdown:hover > .dropdown-toggle::after,
  .site-navbar .nav-item.dropdown:focus-within > .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  /* Keep open while moving into the menu */
  .site-navbar .nav-item.dropdown > .dropdown-menu {
    margin-top: 0 !important;
    padding-top: 0.75rem;
  }

  .site-navbar .gallery-dropdown {
    margin-top: 0 !important;
  }
}

@media (max-width: 991.98px) {
  .site-navbar .gallery-dropdown {
    margin-top: 0.35rem !important;
    border: 1px solid rgba(197, 160, 89, 0.2);
  }
}

@media (min-width: 992px) {
  .footer-top-cta {
    flex-direction: row;
    align-items: flex-end;
  }
}

@media (min-width: 992px) {
  .footer-cta-action {
    align-items: flex-end;
  }
}

@media (min-width: 992px) {
  .footer-cta-note {
    text-align: right;
  }
}

@media (max-width: 991.98px) {
  .insights-intro {
    max-width: none;
    text-align: center;
    margin: 0 auto 0.5rem;
  }

  .insights-dots {
    justify-content: center;
  }

  .insights-text {
    max-width: 42ch;
    margin-left: auto;
    margin-right: auto;
  }

  .insights-slider-wrap {
    padding: 0.25rem 2.4rem 2rem;
  }
}

@media (max-width: 575.98px) {
  .insights-section {
    padding: 3.5rem 0 3.25rem;
  }

  .insights-slider-wrap {
    padding: 0 2rem 1.5rem;
  }

  .insights-swiper .swiper-slide {
    width: min(340px, 86vw);
  }

  .insight-card {
    min-height: 480px;

    border-radius: 28px;
  }

  .insight-card--image {
    min-height: 0;
    padding: 0;
    border-radius: 22px;
  }

  .insight-card--image img {
    border-radius: 22px;
  }

  .insight-card-corner-tl {
    width: 60px;
    height: 60px;
  }

  .insight-card-corner-br {
    width: 60px;
    height: 60px;
  }

  .insight-card-leaves {
    width: 90px;
    height: 90px;
  }

  .insight-card-logo img {
    height: 38px;
  }

  .insight-card-title h3 {
    font-size: 1.4rem;
  }

  .insight-num {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }

  .insight-card--with-circle .insight-card-body {
    flex-direction: column;
    align-items: center;
  }

  .insight-card--with-circle .insight-card-left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 1.2rem;
  }

  .insight-card--with-circle .insight-card-right {
    width: 100%;
    height: 180px;
  }

  .insight-illustration-circle {
    width: 180px;
    height: 180px;
    position: relative;
    right: 0;
    margin: 0 auto;
  }

  .insight-pills {
    gap: 0.75rem;
  }

  .insight-pills li {
    padding: 8px 10px;
    border-radius: 16px;
  }

  .pill-icon {
    width: 36px;
    height: 36px;
  }

  .pill-icon svg {
    width: 18px;
    height: 18px;
  }

  .pill-text strong {
    font-size: 0.88rem;
  }

  .pill-text .insight-ar {
    font-size: 0.8rem;
  }

  .insights-nav {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }

  .insights-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .will-reveal,
  .will-reveal-left,
  .will-reveal-right,
  .will-reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1199.98px) {
  .booking-submit {
    min-width: 100%;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card-inner {
    min-height: 330px;
    border-radius: 120px 120px 16px 16px;
  }

  .hero-pagination-vertical {
    right: 1.25rem;
  }
}

@media (max-width: 991.98px) {
  .site-navbar {
    background: rgba(10, 10, 10, 0.95);
    padding: 0.85rem 0;
  }

  .brand-logo {
    height: 52px;
  }

  .navbar-collapse {
    background: rgba(10, 10, 10, 0.98);
    padding: 1rem;
    border-radius: 14px;
    margin-top: 0.75rem;
    border: 1px solid rgba(197, 160, 89, 0.15);
  }

  .hero-pagination-vertical {
    display: none;
  }

  .hero-section {
    height: auto;
    min-height: 100svh;
  }

  .hero-content {
    padding-top: 6.5rem;
    padding-bottom: 8rem;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .scroll-discover-left {
    left: 1.25rem;
    bottom: 5.5rem;
  }

  .booking-section {
    margin-top: -50px;
    margin-bottom: 0;
  }

  .about-portrait {
    max-width: 320px;
    margin: 0 auto 1rem;
  }

  .section-pad {
    padding: 80px 0;
  }

  .services-section {
    padding: 90px 0 80px;
  }

  .service-card {
    padding-top: 28px;
  }

  .service-card .service-card-inner {
    flex-direction: column-reverse;
    height: auto;
    min-height: 0;
    border-radius: 90px 90px 16px 16px;
  }

  .service-card .service-panel {
    width: 100%;
    padding: 1.15rem 1.25rem 1.35rem;
    align-items: center;
    text-align: center;
  }

  .service-card .service-panel h3 {
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
  }

  .service-card .service-panel .explore-link {
    margin-top: 0;
  }

  .service-card .service-media {
    width: 100%;
    height: auto;
    min-height: 210px;
    aspect-ratio: 4 / 3;
  }

  .service-card .service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .services-intro p {
    max-width: none;
  }

  .footer-top-cta {
    padding-bottom: 32px;
    margin-bottom: 32px;
  }

  .footer-cta-action {
    width: 100%;
  }

  .footer-cta-action .btn-gold-pill {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .float-socials {
    display: none;
  }

  .back-to-top {
    bottom: calc(4.75rem + env(safe-area-inset-bottom));
    right: 1rem;
    left: auto;
  }

  html[dir="rtl"] .back-to-top {
    right: auto;
    left: 1rem;
  }

  .mobile-sticky-cta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(197, 160, 89, 0.25);
    padding: 0.55rem 0.65rem calc(0.55rem + env(safe-area-inset-bottom));
    gap: 0.45rem;
  }

  .mobile-sticky-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.45rem 0.35rem;
    border-radius: 999px;
    border: 1px solid rgba(197, 160, 89, 0.65);
    background: transparent;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-soft);
    transition:
      background var(--transition),
      color var(--transition),
      border-color var(--transition);
  }

  .mobile-sticky-btn i {
    font-size: 1.05rem;
  }

  .mobile-sticky-btn.book,
  .mobile-sticky-btn.call,
  .mobile-sticky-btn.wa {
    background: transparent;
    color: var(--gold-soft);
  }

  .mobile-sticky-btn.book:hover,
  .mobile-sticky-btn.call:hover,
  .mobile-sticky-btn.wa:hover {
    color: #fff;
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.15);
  }

  .site-footer {
    padding-bottom: 4.5rem;
  }
}

@media (max-width: 767.98px) {
  .brand-logo {
    height: 44px;
  }

  .nav-cta-btn {
    padding: 0.35rem 0.35rem 0.35rem 0.85rem;
    font-size: 0.58rem;
  }

  .nav-cta-btn .btn-icon-circle {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .hero-text {
    font-size: 0.92rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: space-between;
  }

  .hero-content {
    padding-top: 5.5rem;
    padding-bottom: 6.5rem;
  }

  .booking-card {
    padding: 1.4rem 1.2rem;
    border-radius: 22px;
  }

  .booking-title {
    text-align: center;
  }

  .flourish-svg {
    margin-left: auto;
    margin-right: auto;
  }

  .booking-form .btn-gold-pill {
    width: 100%;
  }

  .videos-slider-wrap {
    padding: 0 1.8rem;
  }

  .services-slider-wrap {
    gap: 0.35rem;
    padding-top: 20px;
  }

  .services-slider-wrap > .slider-nav,
  .slider-nav {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .service-icon {
    width: 54px;
    height: 54px;
  }

  .service-icon svg {
    width: 26px;
    height: 26px;
  }

  .service-card .service-card-inner {
    border-radius: 72px 72px 14px 14px;
  }

  .service-card .service-panel {
    padding: 1rem 1.1rem 1.2rem;
  }

  .service-card .service-media {
    min-height: 190px;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scroll-discover-left {
    display: none;
  }

  .quote-section.artistry-section {
    min-height: auto;
  }

  .artistry-section .container-fluid {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .artistry-glass {
    max-width: 100%;
    padding: 2.25rem 1.25rem 2rem;
  }

  .artistry-glass::before {
    top: -4%;
    left: -8%;
    right: -8%;
    bottom: -6%;
    border-radius: 42% 48% 40% 50% / 36% 44% 48% 54%;
  }

  .artistry-features {
    margin: 0.75rem 0 0;
    max-width: none;
  }

  .artistry-row {
    min-height: 0;
  }

  .footer-logo {
    height: 72px;
  }

  .site-footer {
    padding-top: 70px;
  }
}

@media (max-width: 575.98px) {
  .lang-switch {
    min-width: 44px;
    height: 38px;
    padding: 0 0.55rem;
    font-size: 0.65rem;
    gap: 0.2rem;
  }

  .lang-switch i {
    font-size: 0.85rem;
  }

  .artistry-title {
    font-size: 2.3rem;
  }

  .artistry-eyebrow {
    letter-spacing: 0.18em;
    font-size: 0.62rem;
  }

  .artistry-features {
    gap: 1.25rem;
  }

  .artistry-cta {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 767.98px) {
  .insight-article-media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
}

@media (max-width: 991.98px) {
  .page-hero {
    min-height: 42vh;
    padding: 7.5rem 0 3.5rem;
  }
}

@media (max-width: 575.98px) {
  .contact-form-card,
  .contact-info-card {
    padding: 1.6rem 1.25rem;
  }
}

