.aux-resp.aux-s-fhd .aux-fold {
    width: auto;
    max-width: 100%;
}

.aux-fold, .aux-fold-padding, .aux-boxed-container > .aux-container {
    padding-right: 0px;
    padding-left: 0px;
}

.aux-content-top-margin .aux-primary {
    padding-top: 10px;
}

.aux-master-menu.aux-vertical.aux-skin-classic .aux-submenu > .aux-menu-item > .aux-item-content, .aux-master-menu.aux-horizontal.aux-skin-classic .aux-submenu > .aux-menu-item > .aux-item-content {
    position: relative;
    display: block;
    padding: 15px;
    margin: 0 10px;
    min-width: 0px;
    line-height: 150%;
    text-align: left;
}

.elementor-element {
    /* --widgets-spacing: 0px; */
    --widgets-spacing-row: 0px;
    
}
  
.fg-item-title {
    font-family: 'Cormorant Garamond' !important;
}


/* Cookie icon color */
.cookieadmin_re_consent {

    background: linear-gradient(to left, #c4a55c 0%, #c4a55c 100%);

}

.cookieadmin_preference_title {
    font-size: 22px;
    font-family: 'Cormorant Garamond';
}

input:checked+.cookieadmin_slider, input:disabled+.cookieadmin_slider {
    background-color: #c4a55c !important;
}

/* ═══════════════════════════════════════════════════════════════
   ROBERT LEO — GLOBAL STYLES
   Unified CSS for entire website (Portfolio, Pricing, About, Contact)
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&amp;family=Montserrat:wght@300;400;500;600&amp;display=swap');

/* ═══════════════════════════════════════════════════════════════
   1. CSS VARIABLES
   ═══════════════════════════════════════════════════════════════ */
:root {
  --rl-green: #25291e;
  --rl-gold: #B8973E;
  --rl-gold-light: #d4b266;
  --rl-cream: #F5EFE0;
  --rl-cream-dark: #ebe6d8;
  --rl-text: #1a1a1a;
  --rl-text-light: #6b6b6b;
  --rl-white: #ffffff;
}

/* ═══════════════════════════════════════════════════════════════
   2. GLOBAL STYLES
   ═══════════════════════════════════════════════════════════════ */

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

* {
  scroll-margin-top: 20px;
}

/* Reset for all Robert Leo components */
.rl-portfolio *, 
.rl-pricing *,
.rl-about *,
.rl-contact * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.rl-portfolio,
.rl-pricing,
.rl-about,
.rl-contact {
  font-family: 'Montserrat', sans-serif;
  background: var(--rl-green);
  color: var(--rl-text);
  overflow-x: hidden;
}

/* Base animations */
@keyframes rlFadeIn {
  from { 
    opacity: 0;
    transform: translateY(20px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rlMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════
   3. SHARED COMPONENTS (используются на всех страницах)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Shared Booking Banner ─── */
.rl-shared-booking-banner {
  background: var(--rl-gold);
  padding: 80px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.rl-shared-booking-banner__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-green);
  margin-bottom: 12px;
}
.rl-shared-booking-banner__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--rl-green);
  line-height: 1.1;
}
.rl-shared-booking-banner__title em { font-style: italic; }
.rl-shared-booking-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--rl-green);
  color: var(--rl-white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 22px 48px;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rl-shared-booking-banner__btn:hover { 
  background: #1a1d16; 
  color: var(--rl-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.rl-shared-booking-banner__btn::after { content: '→'; font-size: 14px; }

/* ═══════════════════════════════════════════════════════════════
   4. PORTFOLIO PAGE STYLES
   ═══════════════════════════════════════════════════════════════ */

/* ─── Portfolio Hero ─── */
.rl-portfolio-hero {
  height: 100vh;
  max-height: 800px;
  background: var(--rl-green);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  animation: rlFadeIn 0.8s ease-out;
}

.rl-portfolio-hero__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 300;
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.rl-portfolio-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 100px;
  max-width: 700px;
}

.rl-portfolio-hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.rl-portfolio-hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--rl-gold);
}

.rl-portfolio-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 7vw, 100px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--rl-white);
  margin-bottom: 32px;
}
.rl-portfolio-hero__title em {
  font-style: italic;
  color: var(--rl-gold-light);
}

.rl-portfolio-hero__desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.45);
  max-width: 420px;
  margin-bottom: 48px;
}

.rl-portfolio-hero__stats {
  display: flex;
  gap: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
}
.rl-portfolio-hero__stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--rl-gold);
  line-height: 1;
}
.rl-portfolio-hero__stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
}

.rl-portfolio-hero__floating {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 8px;
  width: 420px;
  height: 560px;
}
.rl-portfolio-hero__float-img {
  border-radius: 0;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rl-portfolio-hero__float-img:hover {
  transform: translateY(-6px);
  z-index: 2;
}
.rl-portfolio-hero__float-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.85);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rl-portfolio-hero__float-img:hover img {
  filter: brightness(0.85) saturate(1);
  transform: scale(1.05);
}
.rl-portfolio-hero__float-img:nth-child(1) { grid-row: 1 / 3; }
.rl-portfolio-hero__float-img:nth-child(4) { grid-column: 1 / 3; }
.rl-portfolio-hero__float-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184,151,62,0.15);
  pointer-events: none;
}

/* ─── Portfolio Marquee ─── */
.rl-portfolio-marquee {
  background: var(--rl-gold);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.rl-portfolio-marquee__inner {
  display: inline-flex;
  animation: rlMarquee 30s linear infinite;
}
.rl-portfolio-marquee__item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--rl-green);
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 40px;
}
.rl-portfolio-marquee__item::after {
  content: '✦';
  font-size: 10px;
  color: var(--rl-green);
  opacity: 0.4;
}

/* ─── Portfolio Filter Nav ─── */
.rl-portfolio-filter-section {
  background: var(--rl-cream);
  padding: 80px 100px 0;
}
.rl-portfolio-filter-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(37,41,30,0.1);
  margin-bottom: 0;
}
.rl-portfolio-filter-btn {
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rl-text-light);
  padding: 20px 32px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.3s;
}
.rl-portfolio-filter-btn:hover,
.rl-portfolio-filter-btn.active {
  color: var(--rl-green);
  border-bottom-color: var(--rl-gold);
}

/* ─── Portfolio Bento Gallery ─── */
.rl-portfolio-gallery {
  background: var(--rl-cream);
  padding: 48px 100px 120px;
}

.rl-portfolio-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 100px;
  gap: 8px;
}

.rl-portfolio-bento-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rl-portfolio-bento-item:hover {
  transform: translateY(-4px);
}
.rl-portfolio-bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rl-portfolio-bento-item:hover img {
  transform: scale(1.08);
}

.rl-portfolio-bento-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(37,41,30,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.rl-portfolio-bento-item:hover .rl-portfolio-bento-item__overlay {
  opacity: 1;
}
.rl-portfolio-bento-item__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 8px;
}
.rl-portfolio-bento-item__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--rl-white);
  line-height: 1.15;
}

/* Bento sizes */
.rl-portfolio-bento--wide { grid-column: span 8; grid-row: span 4; }
.rl-portfolio-bento--tall { grid-column: span 4; grid-row: span 5; }
.rl-portfolio-bento--square { grid-column: span 4; grid-row: span 4; }
.rl-portfolio-bento--landscape { grid-column: span 6; grid-row: span 3; }
.rl-portfolio-bento--portrait { grid-column: span 3; grid-row: span 5; }
.rl-portfolio-bento--hero-wide { grid-column: span 9; grid-row: span 5; }
.rl-portfolio-bento--small { grid-column: span 3; grid-row: span 3; }
.rl-portfolio-bento--medium { grid-column: span 5; grid-row: span 4; }
.rl-portfolio-bento--featured { grid-column: span 7; grid-row: span 5; }

.rl-portfolio-bento-item--accent::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--rl-gold);
  z-index: 3;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: left;
}
.rl-portfolio-bento-item--accent:hover::before {
  transform: scaleX(1);
}

/* ─── Portfolio Showcase ─── */
.rl-portfolio-showcase {
  background: var(--rl-green);
  padding: 120px 100px;
}
.rl-portfolio-showcase__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.rl-portfolio-showcase__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 16px;
}
.rl-portfolio-showcase__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 300;
  color: var(--rl-white);
  line-height: 1.05;
}
.rl-portfolio-showcase__title em { font-style: italic; color: var(--rl-gold-light); }
.rl-portfolio-showcase__desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  max-width: 360px;
  line-height: 1.8;
  text-align: right;
}

.rl-portfolio-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.rl-portfolio-showcase-card {
  background: rgba(255,255,255,0.03);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255,255,255,0.04);
}
.rl-portfolio-showcase-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-6px);
}

.rl-portfolio-showcase-card__num {
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px;
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}

.rl-portfolio-showcase-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 28px;
}
.rl-portfolio-showcase-card__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.rl-portfolio-showcase-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rl-portfolio-showcase-card:hover .rl-portfolio-showcase-card__img img {
  transform: scale(1.05);
}
.rl-portfolio-showcase-card__img-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rl-white);
  background: rgba(37,41,30,0.8);
  padding: 4px 10px;
}

.rl-portfolio-showcase-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 10px;
}
.rl-portfolio-showcase-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--rl-white);
  margin-bottom: 12px;
  line-height: 1.15;
}
.rl-portfolio-showcase-card__desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

/* ─── Portfolio Instagram CTA ─── */
.rl-portfolio-insta-cta {
  background: var(--rl-cream-dark);
  padding: 100px;
  text-align: center;
}
.rl-portfolio-insta-cta__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 20px;
}
.rl-portfolio-insta-cta__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--rl-green);
  margin-bottom: 16px;
}
.rl-portfolio-insta-cta__title em { font-style: italic; color: var(--rl-gold); }
.rl-portfolio-insta-cta__handle {
  font-size: 16px;
  font-weight: 300;
  color: var(--rl-text-light);
  margin-bottom: 36px;
}
.rl-portfolio-insta-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--rl-green);
  color: var(--rl-white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 44px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rl-portfolio-insta-cta__btn:hover { 
  background: #1a1d16; 
  color: var(--rl-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.rl-portfolio-insta-cta__btn::after { content: '→'; font-size: 14px; }

/* ═══════════════════════════════════════════════════════════════
   5. PRICING PAGE STYLES
   ═══════════════════════════════════════════════════════════════ */

/* ─── Pricing Hero ─── */
.rl-pricing-hero {
  height: 100vh;
  max-height: 700px;
  background: var(--rl-green);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
  animation: rlFadeIn 0.8s ease-out;
}

.rl-pricing-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 100px;
  position: relative;
  z-index: 2;
}

.rl-pricing-hero__eyebrow {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 28px;
}

.rl-pricing-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--rl-white);
  margin-bottom: 32px;
}
.rl-pricing-hero__title em {
  font-style: italic;
  color: var(--rl-gold-light);
  display: block;
}

.rl-pricing-hero__subtitle {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 360px;
  margin-bottom: 52px;
}

.rl-pricing-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--rl-gold);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 36px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: fit-content;
}
.rl-pricing-hero__cta:hover { 
  background: var(--rl-gold-light); 
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.rl-pricing-hero__cta::after { content: '→'; font-size: 14px; }

.rl-pricing-hero__right {
  position: relative;
  overflow: hidden;
}
.rl-pricing-hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.75) saturate(0.9);
}
.rl-pricing-hero__right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--rl-green) 0%, transparent 40%);
  z-index: 1;
}

.rl-pricing-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 100px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  z-index: 3;
}
.rl-pricing-hero__scroll::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--rl-gold);
}

/* ─── Pricing Intro Strip ─── */
.rl-pricing-intro-strip {
  background: var(--rl-gold);
  padding: 24px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.rl-pricing-intro-strip__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rl-pricing-intro-strip__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--rl-green);
  line-height: 1;
}
.rl-pricing-intro-strip__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rl-green);
  line-height: 1.4;
}

/* ─── Pricing Service Block ─── */
.rl-pricing-service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  overflow: hidden;
}
.rl-pricing-service-block--reverse { direction: rtl; }
.rl-pricing-service-block--reverse > * { direction: ltr; }

.rl-pricing-service-block__image {
  position: relative;
  overflow: hidden;
}
.rl-pricing-service-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rl-pricing-service-block:hover .rl-pricing-service-block__image img {
  transform: scale(1.04);
}
.rl-pricing-service-block__image-num {
  position: absolute;
  top: 32px;
  left: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  z-index: 2;
}

.rl-pricing-service-block__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  background: var(--rl-cream);
}
.rl-pricing-service-block--dark .rl-pricing-service-block__content {
  background: var(--rl-green);
}

.rl-pricing-service-block__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 18px;
}

.rl-pricing-service-block__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--rl-green);
  margin-bottom: 24px;
}
.rl-pricing-service-block--dark .rl-pricing-service-block__title { color: var(--rl-white); }
.rl-pricing-service-block__title em {
  font-style: italic;
  color: var(--rl-gold);
}

.rl-pricing-service-block__desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--rl-text-light);
  margin-bottom: 40px;
  max-width: 420px;
}
.rl-pricing-service-block--dark .rl-pricing-service-block__desc {
  color: rgba(255,255,255,0.6);
}

.rl-pricing-service-block__prices {
  border-top: 1px solid rgba(37,41,30,0.15);
  margin-bottom: 36px;
}
.rl-pricing-service-block--dark .rl-pricing-service-block__prices {
  border-top-color: rgba(255,255,255,0.1);
}

.rl-pricing-service-block__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(37,41,30,0.08);
  gap: 16px;
}
.rl-pricing-service-block--dark .rl-pricing-service-block__price-row {
  border-bottom-color: rgba(255,255,255,0.06);
}
.rl-pricing-service-block__price-row:last-child { border-bottom: none; }

.rl-pricing-service-block__price-name {
  font-size: 15px;
  font-weight: 300;
  color: var(--rl-text);
}
.rl-pricing-service-block--dark .rl-pricing-service-block__price-name { 
  color: rgba(255,255,255,0.85); 
}

.rl-pricing-service-block__price-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--rl-green);
  white-space: nowrap;
}
.rl-pricing-service-block--dark .rl-pricing-service-block__price-val { 
  color: var(--rl-gold); 
}

.rl-pricing-service-block__category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin: 24px 0 12px;
}

.rl-pricing-service-block__book {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rl-green);
  text-decoration: none;
  border-bottom: 1px solid var(--rl-gold);
  padding-bottom: 4px;
  transition: color 0.3s;
  width: fit-content;
}
.rl-pricing-service-block--dark .rl-pricing-service-block__book { 
  color: var(--rl-white); 
}
.rl-pricing-service-block__book:hover { color: var(--rl-gold); }
.rl-pricing-service-block__book::after { content: '→'; }

.rl-pricing-service-block__note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 18px;
  background: rgba(184,151,62,0.1);
  border-left: 2px solid var(--rl-gold);
  margin-top: 24px;
}
.rl-pricing-service-block__note p {
  font-size: 14px;
  font-weight: 300;
  color: var(--rl-text-light);
  line-height: 1.7;
  font-style: italic;
}
.rl-pricing-service-block--dark .rl-pricing-service-block__note p {
  color: rgba(255,255,255,0.5);
}

/* ─── Pricing Treatments ─── */
.rl-pricing-treatments {
  padding: 120px 100px;
  background: var(--rl-cream-dark);
}

.rl-pricing-treatments__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.rl-pricing-treatments__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 14px;
}
.rl-pricing-treatments__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 300;
  color: var(--rl-green);
  line-height: 1.05;
}
.rl-pricing-treatments__title em { font-style: italic; color: var(--rl-gold); }

.rl-pricing-treatments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.rl-pricing-treatment-card {
  background: var(--rl-white);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rl-pricing-treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.12);
  z-index: 2;
}
.rl-pricing-treatment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--rl-gold);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: left;
}
.rl-pricing-treatment-card:hover::before { transform: scaleX(1); }

.rl-pricing-treatment-card__bg-num {
  position: absolute;
  bottom: -20px;
  right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  font-weight: 300;
  color: rgba(37,41,30,0.04);
  line-height: 1;
  pointer-events: none;
}

.rl-pricing-treatment-card__img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 28px;
  display: block;
}

.rl-pricing-treatment-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--rl-green);
  margin-bottom: 8px;
}
.rl-pricing-treatment-card__subtitle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 24px;
}
.rl-pricing-treatment-card__desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--rl-text-light);
  margin-bottom: 32px;
}

.rl-pricing-treatment-card__prices { 
  border-top: 1px solid var(--rl-cream-dark); 
}
.rl-pricing-treatment-card__price-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(37,41,30,0.06);
  font-size: 14px;
}
.rl-pricing-treatment-card__price-row:last-child { border-bottom: none; }
.rl-pricing-treatment-card__price-name { 
  font-weight: 300; 
  color: var(--rl-text); 
}
.rl-pricing-treatment-card__price-val { 
  font-weight: 500; 
  color: var(--rl-green); 
}

/* ─── Pricing Styling Section ─── */
.rl-pricing-styling-section {
  background: var(--rl-green);
  padding: 120px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.rl-pricing-styling-section__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 18px;
}
.rl-pricing-styling-section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--rl-white);
  margin-bottom: 32px;
}
.rl-pricing-styling-section__title em { 
  font-style: italic; 
  color: var(--rl-gold-light); 
}
.rl-pricing-styling-section__desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  margin-bottom: 48px;
}

.rl-pricing-styling-price-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.rl-pricing-styling-price-item:last-child { border-bottom: none; }
.rl-pricing-styling-price-item__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--rl-gold);
  font-weight: 300;
}
.rl-pricing-styling-price-item__name {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
}
.rl-pricing-styling-price-item__price {
  font-size: 15px;
  font-weight: 500;
  color: var(--rl-gold);
  white-space: nowrap;
}

.rl-pricing-styling-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  color: var(--rl-white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(184,151,62,0.4);
  padding: 18px 36px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rl-pricing-styling-section__cta:hover {
  border-color: var(--rl-gold);
  background: rgba(184,151,62,0.1);
  transform: translateY(-2px);
}
.rl-pricing-styling-section__cta::after { content: '→'; }

/* ═══════════════════════════════════════════════════════════════
   6. SERVICES PAGE STYLES (необычная структура)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Services Hero (fullscreen с overlay) ─── */
.rl-services-hero {
  height: 100vh;
  max-height: 800px;
  background: var(--rl-green);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rlFadeIn 0.8s ease-out;
}

.rl-services-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.rl-services-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(0.8);
}

.rl-services-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(37,41,30,0.3) 0%,
    rgba(37,41,30,0.7) 60%,
    rgba(37,41,30,0.95) 100%
  );
  z-index: 2;
}

.rl-services-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 48px;
  max-width: 900px;
}

.rl-services-hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 32px;
}

.rl-services-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--rl-white);
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}
.rl-services-hero__title em {
  font-style: italic;
  color: var(--rl-gold-light);
  display: block;
}

.rl-services-hero__subtitle {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 56px;
}

.rl-services-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  color: var(--rl-white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(184,151,62,0.5);
  padding: 22px 44px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rl-services-hero__cta:hover {
  background: var(--rl-gold);
  color: var(--rl-green);
  border-color: var(--rl-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184,151,62,0.3);
}
.rl-services-hero__cta::after { content: '→'; font-size: 14px; }

/* ─── Floating Badges (вместо strip) ─── */
.rl-services-badges {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 0 100px 40px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.rl-services-badge {
  background: rgba(37,41,30,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(184,151,62,0.3);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rl-services-badge:hover {
  background: rgba(37,41,30,0.95);
  border-color: var(--rl-gold);
  transform: translateY(-4px);
}

.rl-services-badge__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--rl-gold);
  line-height: 1;
}
.rl-services-badge__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ─── Services Grid (diagonal staggered) ─── */
.rl-services-grid-section {
  background: var(--rl-cream);
  padding: 140px 100px 120px;
}

.rl-services-grid-section__header {
  text-align: center;
  margin-bottom: 80px;
}
.rl-services-grid-section__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 16px;
}
.rl-services-grid-section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 300;
  color: var(--rl-green);
  line-height: 1.1;
}
.rl-services-grid-section__title em {
  font-style: italic;
  color: var(--rl-gold);
}

.rl-services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Card sizing - staggered diagonal */
.rl-service-card {
  background: var(--rl-white);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(37,41,30,0.08);
}
.rl-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.12);
  border-color: var(--rl-gold);
  z-index: 2;
}

/* Staggered layout */
.rl-service-card:nth-child(1) {
  grid-column: 1 / 8;
  grid-row: 1;
}
.rl-service-card:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1;
  padding: 48px 40px;
}
.rl-service-card:nth-child(3) {
  grid-column: 1 / 6;
  grid-row: 2;
  padding: 48px 40px;
}
.rl-service-card:nth-child(4) {
  grid-column: 6 / 13;
  grid-row: 2;
}

.rl-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--rl-gold);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: left;
}
.rl-service-card:hover::before {
  transform: scaleX(1);
}

.rl-service-card__icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 28px;
  display: block;
  opacity: 0.9;
}

.rl-service-card__num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 12px;
}

.rl-service-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 400;
  color: var(--rl-green);
  margin-bottom: 20px;
  line-height: 1.15;
}
.rl-service-card__title em {
  font-style: italic;
  color: var(--rl-gold);
}

.rl-service-card__desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--rl-text-light);
  margin-bottom: 32px;
}

.rl-service-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.rl-service-card__feature {
  font-size: 13px;
  font-weight: 400;
  color: var(--rl-green);
  padding: 8px 16px;
  background: rgba(184,151,62,0.08);
  border-left: 2px solid var(--rl-gold);
}

.rl-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rl-green);
  text-decoration: none;
  border-bottom: 1px solid var(--rl-gold);
  padding-bottom: 4px;
  transition: all 0.3s;
}
.rl-service-card__link:hover {
  color: var(--rl-gold);
  gap: 14px;
}
.rl-service-card__link::after { content: '→'; }

/* ─── Pricing CTA Block ─── */
.rl-services-pricing-cta {
  background: var(--rl-green);
  padding: 100px 100px;
  text-align: center;
}

.rl-services-pricing-cta__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 20px;
}

.rl-services-pricing-cta__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  color: var(--rl-white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.rl-services-pricing-cta__title em {
  font-style: italic;
  color: var(--rl-gold-light);
}

.rl-services-pricing-cta__desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto 48px;
}

.rl-services-pricing-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--rl-gold);
  color: var(--rl-green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 22px 48px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rl-services-pricing-cta__btn:hover {
  background: var(--rl-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184,151,62,0.3);
}
.rl-services-pricing-cta__btn::after { content: '→'; font-size: 14px; }

/* ═══════════════════════════════════════════════════════════════
   7. ABOUT PAGE STYLES
   ═══════════════════════════════════════════════════════════════ */

/* ─── About Hero ─── */
.rl-about-hero {
  background: var(--rl-green);
  padding: 140px 100px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  animation: rlFadeIn 0.8s ease-out;
}

.rl-about-hero__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.rl-about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.9);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rl-about-hero__image:hover img {
  transform: scale(1.05);
  filter: brightness(0.95) saturate(1);
}
.rl-about-hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184,151,62,0.2);
  pointer-events: none;
}

.rl-about-hero__content {
  padding-left: 40px;
}
.rl-about-hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 20px;
}
.rl-about-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--rl-white);
  margin-bottom: 32px;
}
.rl-about-hero__title em {
  font-style: italic;
  color: var(--rl-gold-light);
}
.rl-about-hero__intro {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}
.rl-about-hero__intro strong {
  color: rgba(255,255,255,0.9);
  font-weight: 400;
}

/* ─── About Philosophy ─── */
.rl-about-philosophy {
  background: var(--rl-cream);
  padding: 120px 100px;
}
.rl-about-philosophy__header {
  text-align: center;
  margin-bottom: 64px;
}
.rl-about-philosophy__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 16px;
}
.rl-about-philosophy__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 300;
  color: var(--rl-green);
  line-height: 1.1;
}
.rl-about-philosophy__title em {
  font-style: italic;
  color: var(--rl-gold);
}

.rl-about-philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.rl-about-philosophy-card {
  background: var(--rl-white);
  padding: 48px 40px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rl-about-philosophy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  z-index: 2;
}
.rl-about-philosophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--rl-gold);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: left;
}
.rl-about-philosophy-card:hover::before {
  transform: scaleX(1);
}

.rl-about-philosophy-card__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: rgba(37,41,30,0.06);
  line-height: 1;
  margin-bottom: 20px;
}
.rl-about-philosophy-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--rl-green);
  margin-bottom: 16px;
  line-height: 1.2;
}
.rl-about-philosophy-card__desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--rl-text-light);
}

/* ─── About Timeline ─── */
.rl-about-timeline {
  background: var(--rl-green);
  padding: 120px 100px;
}
.rl-about-timeline__header {
  text-align: center;
  margin-bottom: 80px;
}
.rl-about-timeline__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 16px;
}
.rl-about-timeline__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 300;
  color: var(--rl-white);
  line-height: 1.1;
}
.rl-about-timeline__title em {
  font-style: italic;
  color: var(--rl-gold-light);
}

.rl-about-timeline__items {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.rl-about-timeline__items::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--rl-gold);
  transform: translateX(-50%);
  opacity: 0.3;
}

.rl-about-timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}
.rl-about-timeline-item:last-child {
  margin-bottom: 0;
}

.rl-about-timeline-item__year {
  text-align: right;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--rl-gold);
  line-height: 1;
}
.rl-about-timeline-item--left .rl-about-timeline-item__year {
  grid-column: 1;
  grid-row: 1;
}
.rl-about-timeline-item--right .rl-about-timeline-item__year {
  grid-column: 3;
  text-align: left;
}

.rl-about-timeline-item__dot {
  width: 16px;
  height: 16px;
  background: var(--rl-gold);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--rl-green);
  grid-column: 2;
  grid-row: 1;
}

.rl-about-timeline-item__content {
  background: rgba(255,255,255,0.04);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rl-about-timeline-item:hover .rl-about-timeline-item__content {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.rl-about-timeline-item--left .rl-about-timeline-item__content {
  grid-column: 1;
  text-align: right;
}
.rl-about-timeline-item--right .rl-about-timeline-item__content {
  grid-column: 3;
}

.rl-about-timeline-item__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--rl-white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.rl-about-timeline-item__desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
}

/* ─── About Credentials ─── */
.rl-about-credentials {
  background: var(--rl-cream-dark);
  padding: 120px 100px;
}
.rl-about-credentials__header {
  text-align: center;
  margin-bottom: 64px;
}
.rl-about-credentials__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 16px;
}
.rl-about-credentials__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 300;
  color: var(--rl-green);
  line-height: 1.1;
}
.rl-about-credentials__title em {
  font-style: italic;
  color: var(--rl-gold);
}

.rl-about-credentials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.rl-about-credential-card {
  background: var(--rl-white);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rl-about-credential-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  z-index: 2;
}
.rl-about-credential-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--rl-gold);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: left;
}
.rl-about-credential-card:hover::before {
  transform: scaleX(1);
}

.rl-about-credential-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: block;
  object-fit: contain;
}
.rl-about-credential-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--rl-green);
  margin-bottom: 8px;
  line-height: 1.3;
}
.rl-about-credential-card__org {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 16px;
}
.rl-about-credential-card__year {
  font-size: 14px;
  font-weight: 300;
  color: var(--rl-text-light);
}

/* ─── About Personal Statement ─── */
.rl-about-statement {
  background: var(--rl-green);
  padding: 120px 100px;
}
.rl-about-statement__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.rl-about-statement__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--rl-white);
  margin-bottom: 32px;
  position: relative;
}
.rl-about-statement__quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -40px;
  font-size: 120px;
  color: rgba(184,151,62,0.15);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}
.rl-about-statement__author {
  font-size: 16px;
  font-weight: 400;
  color: var(--rl-gold);
  margin-bottom: 48px;
}
.rl-about-statement__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
  text-align: left;
}
.rl-about-statement__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--rl-gold);
  color: var(--rl-green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 44px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rl-about-statement__cta:hover {
  background: var(--rl-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.rl-about-statement__cta::after {
  content: '→';
  font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════════
   7. RESPONSIVE (все страницы)
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
  .rl-portfolio-hero__floating { width: 340px; height: 460px; right: 40px; }
  .rl-portfolio-hero__content { padding: 0 60px; }
}

@media (max-width: 1000px) {
  /* Portfolio */
  .rl-portfolio-hero { flex-direction: column; height: auto; max-height: none; padding: 100px 0 60px; }
  .rl-portfolio-hero__content { padding: 0 48px; max-width: 100%; }
  .rl-portfolio-hero__floating {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    height: 300px;
    margin-top: 48px;
    padding: 0 48px;
  }
  .rl-portfolio-gallery { padding: 48px 48px 80px; }
  .rl-portfolio-filter-section { padding: 60px 48px 0; }
  .rl-portfolio-bento {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 80px;
  }
  .rl-portfolio-bento--wide { grid-column: span 6; grid-row: span 3; }
  .rl-portfolio-bento--tall { grid-column: span 3; grid-row: span 4; }
  .rl-portfolio-bento--square { grid-column: span 3; grid-row: span 3; }
  .rl-portfolio-bento--landscape { grid-column: span 6; grid-row: span 3; }
  .rl-portfolio-bento--portrait { grid-column: span 3; grid-row: span 4; }
  .rl-portfolio-bento--hero-wide { grid-column: span 6; grid-row: span 4; }
  .rl-portfolio-bento--small { grid-column: span 3; grid-row: span 3; }
  .rl-portfolio-bento--medium { grid-column: span 3; grid-row: span 3; }
  .rl-portfolio-bento--featured { grid-column: span 6; grid-row: span 4; }
  .rl-portfolio-showcase { padding: 80px 48px; }
  .rl-portfolio-showcase__grid { grid-template-columns: 1fr; gap: 16px; }
  .rl-portfolio-showcase__header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .rl-portfolio-showcase__desc { text-align: left; }
  .rl-portfolio-insta-cta { padding: 80px 48px; }
  
  /* Pricing */
  .rl-pricing-hero__left { padding: 60px 48px; }
  .rl-pricing-hero__scroll { left: 48px; }
  .rl-pricing-intro-strip { padding: 20px 48px; }
  .rl-pricing-service-block__content { padding: 60px 48px; }
  .rl-pricing-treatments { padding: 80px 48px; }
  .rl-pricing-styling-section { padding: 80px 48px; gap: 60px; }
  
  /* Services */
  .rl-services-badges { padding: 0 48px 32px; gap: 16px; }
  .rl-services-badge { padding: 16px 24px; }
  .rl-services-grid-section { padding: 100px 48px 80px; }
  .rl-services-grid { gap: 16px; }
  .rl-services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rl-service-card:nth-child(1),
  .rl-service-card:nth-child(2),
  .rl-service-card:nth-child(3),
  .rl-service-card:nth-child(4) {
    grid-column: auto !important;
    grid-row: auto !important;
    padding: 48px 40px !important;
  }
  .rl-services-pricing-cta { padding: 80px 48px; }
  
  /* About */
  .rl-about-hero { padding: 100px 48px 80px; gap: 60px; }
  .rl-about-hero__content { padding-left: 0; }
  .rl-about-philosophy { padding: 80px 48px; }
  .rl-about-philosophy__grid { grid-template-columns: 1fr; gap: 2px; }
  .rl-about-timeline { padding: 80px 48px; }
  .rl-about-credentials { padding: 80px 48px; }
  .rl-about-credentials__grid { grid-template-columns: 1fr; gap: 2px; }
  .rl-about-statement { padding: 80px 48px; }
  
  /* Shared */
  .rl-shared-booking-banner { padding: 60px 48px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 800px) {
  /* Portfolio */
  .rl-portfolio-hero__content { padding: 0 28px; }
  .rl-portfolio-hero__floating { padding: 0 28px; height: 240px; }
  .rl-portfolio-hero__stats { gap: 28px; }
  .rl-portfolio-filter-section { padding: 48px 28px 0; }
  .rl-portfolio-filter-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .rl-portfolio-filter-btn { padding: 16px 20px; white-space: nowrap; }
  .rl-portfolio-gallery { padding: 32px 28px 60px; }
  .rl-portfolio-bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 120px; }
  .rl-portfolio-bento--wide,
  .rl-portfolio-bento--hero-wide,
  .rl-portfolio-bento--landscape,
  .rl-portfolio-bento--featured { grid-column: span 2; grid-row: span 2; }
  .rl-portfolio-bento--tall,
  .rl-portfolio-bento--square,
  .rl-portfolio-bento--portrait,
  .rl-portfolio-bento--small,
  .rl-portfolio-bento--medium { grid-column: span 1; grid-row: span 2; }
  .rl-portfolio-showcase { padding: 60px 28px; }
  .rl-portfolio-showcase-card { padding: 32px; }
  .rl-portfolio-insta-cta { padding: 60px 28px; }
  
  /* Pricing */
  .rl-pricing-hero { grid-template-columns: 1fr; height: auto; }
  .rl-pricing-hero__right { height: 50vw; }
  .rl-pricing-hero__scroll { left: 28px; }
  .rl-pricing-intro-strip { padding: 20px 28px; gap: 24px; }
  .rl-pricing-service-block { grid-template-columns: 1fr; min-height: auto; }
  .rl-pricing-service-block--reverse { direction: ltr; }
  .rl-pricing-service-block__image { height: 56vw; }
  .rl-pricing-service-block__content { padding: 48px 28px; }
  .rl-pricing-treatments__grid { grid-template-columns: 1fr; gap: 2px; }
  .rl-pricing-treatments__header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .rl-pricing-styling-section { grid-template-columns: 1fr; gap: 48px; }
  
  /* Services */
  .rl-services-hero__content { padding: 0 28px; }
  .rl-services-badges {
    padding: 0 28px 28px;
    flex-direction: column;
    align-items: stretch;
  }
  .rl-services-badge {
    justify-content: center;
  }
  .rl-services-grid-section { padding: 80px 28px 60px; }
  .rl-services-grid {
    grid-template-columns: 1fr;
  }
  .rl-service-card {
    padding: 40px 32px !important;
  }
  .rl-services-pricing-cta { padding: 60px 28px; }
  
  /* About */
  .rl-about-hero { grid-template-columns: 1fr; padding: 80px 28px 60px; gap: 40px; }
  .rl-about-hero__image { aspect-ratio: 1/1; }
  .rl-about-philosophy { padding: 60px 28px; }
  .rl-about-timeline { padding: 60px 28px; }
  .rl-about-timeline__items::before { display: none; }
  .rl-about-timeline-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .rl-about-timeline-item__year,
  .rl-about-timeline-item__content,
  .rl-about-timeline-item__dot {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  .rl-about-timeline-item__year {
    text-align: left !important;
    font-size: 32px;
  }
  .rl-about-timeline-item__content {
    text-align: left !important;
  }
  .rl-about-timeline-item__dot {
    display: none;
  }
  .rl-about-credentials { padding: 60px 28px; }
  .rl-about-statement { padding: 60px 28px; }
  .rl-about-statement__quote::before { display: none; }
  
  /* Shared */
  .rl-shared-booking-banner { padding: 48px 28px; }
}

/* ═══════════════════════════════════════════════════════════════
   7. CONTACT PAGE STYLES (.rl-contact-*)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Hero ─── */
.rl-contact-hero {
  background: var(--rl-green);
  padding: 100px 100px 80px;
  position: relative;
  overflow: hidden;
  color: var(--rl-white);
}
.rl-contact-hero::after {
  content: 'CONTACT';
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 180px;
  font-weight: 300;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
}
.rl-contact-hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.rl-contact-hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--rl-gold);
}
.rl-contact-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--rl-white);
  margin-bottom: 20px;
}
.rl-contact-hero__title em {
  font-style: italic;
  color: var(--rl-gold-light);
}
.rl-contact-hero__desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
}

/* ─── Split Layout ─── */
.rl-contact-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 0;
}

/* ─── Left: Info Block ─── */
.rl-contact-info {
  background: var(--rl-green);
  padding: 64px 100px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.rl-contact-info-block__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 12px;
}
.rl-contact-info-block__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--rl-white);
  line-height: 1.4;
}
.rl-contact-info-block__value a {
  color: var(--rl-white);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,151,62,0.3);
  transition: border-color 0.4s;
}
.rl-contact-info-block__value a:hover {
  border-color: var(--rl-gold);
}
.rl-contact-info-block__sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
  line-height: 1.6;
}

/* Hours */
.rl-contact-info-hours {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
}
.rl-contact-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.rl-contact-hours-row:last-child {
  border-bottom: none;
}
.rl-contact-hours-day {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
}
.rl-contact-hours-time {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
}
.rl-contact-hours-time--closed {
  color: rgba(255,255,255,0.3);
}

/* Social */
.rl-contact-social {
  display: flex;
  gap: 16px;
}
.rl-contact-social__link {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(184,151,62,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rl-gold);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rl-contact-social__link:hover {
  background: var(--rl-gold);
  color: var(--rl-green);
  border-color: var(--rl-gold);
  transform: translateY(-2px);
}

/* ─── Right: Form Block ─── */
.rl-contact-form-wrap {
  background: var(--rl-cream);
  padding: 64px 100px 80px;
}
.rl-contact-form-wrap__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 16px;
}
.rl-contact-form-wrap__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--rl-green);
  line-height: 1.05;
  margin-bottom: 40px;
}
.rl-contact-form-wrap__title em {
  font-style: italic;
  color: var(--rl-gold);
}

/* Form Inputs */
.rl-contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.rl-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.rl-contact-form__group {
  display: flex;
  flex-direction: column;
}
.rl-contact-form__group--full {
  grid-column: 1 / -1;
}
.rl-contact-form__group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rl-text-light);
  margin-bottom: 10px;
}
.rl-contact-form__group input,
.rl-contact-form__group select,
.rl-contact-form__group textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--rl-text);
  background: var(--rl-white);
  border: 1px solid rgba(37,41,30,0.12);
  padding: 16px 20px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.4s;
  -webkit-appearance: none;
}
.rl-contact-form__group input:focus,
.rl-contact-form__group select:focus,
.rl-contact-form__group textarea:focus {
  border-color: var(--rl-gold);
}
.rl-contact-form__group textarea {
  resize: vertical;
  min-height: 140px;
}
.rl-contact-form__group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23B8973E' fill='none' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 48px;
}

.rl-contact-form__note {
  font-size: 14px;
  font-weight: 300;
  color: var(--rl-text-light);
  font-style: italic;
  line-height: 1.6;
}

.rl-contact-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--rl-green);
  color: var(--rl-white);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  padding: 22px 48px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: fit-content;
  margin-top: 8px;
}
.rl-contact-form__submit:hover {
  background: #1a1d16;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.rl-contact-form__submit::after {
  content: '→';
  font-size: 14px;
}

/* ─── Map Section ─── */
.rl-contact-map-section {
  height: 450px;
  background: var(--rl-cream-dark);
  position: relative;
}
.rl-contact-map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.3) brightness(0.95);
  transition: filter 0.8s;
}
.rl-contact-map-section:hover iframe {
  filter: saturate(0.7) brightness(1);
}
.rl-contact-map-overlay {
  position: absolute;
  bottom: 40px;
  left: 100px;
  background: var(--rl-green);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 2;
}
.rl-contact-map-overlay__icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(184,151,62,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--rl-gold);
  flex-shrink: 0;
}
.rl-contact-map-overlay__text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.rl-contact-map-overlay__text strong {
  display: block;
  font-weight: 400;
  color: var(--rl-white);
  font-size: 16px;
}

/* ─── Responsive Media Queries ─── */
@media (max-width: 1200px) {
  .rl-contact-hero { padding: 80px 60px 60px; }
  .rl-contact-info { padding: 60px; }
  .rl-contact-form-wrap { padding: 60px; }
  .rl-contact-map-overlay { left: 60px; }
}

@media (max-width: 1000px) {
  .rl-contact-hero { padding: 60px 40px 48px; }
  .rl-contact-split { grid-template-columns: 1fr; }
  .rl-contact-info { 
    border-right: none; 
    border-bottom: 1px solid rgba(255,255,255,0.06); 
    padding: 48px 40px; 
  }
  .rl-contact-form-wrap { padding: 48px 40px; }
  .rl-contact-form__row { grid-template-columns: 1fr; }
  .rl-contact-map-section { height: 350px; }
  .rl-contact-map-overlay { 
    left: 40px; 
    right: 40px; 
    bottom: 32px; 
    padding: 24px; 
  }
}

@media (max-width: 800px) {
  .rl-contact-hero { padding: 48px 24px 36px; }
  .rl-contact-info { padding: 40px 24px; }
  .rl-contact-form-wrap { padding: 40px 24px; }
  .rl-contact-map-overlay { 
    left: 24px; 
    right: 24px; 
    bottom: 24px; 
    padding: 20px; 
  }
}

/* ═══════════════════════════════════════════════════════════════
   8. HOME PAGE STYLES (.rl-home-*)
   ═══════════════════════════════════════════════════════════════ */

.rl-home {
  font-family: 'Montserrat', sans-serif;
  color: var(--rl-text);
  background: var(--rl-green);
  overflow-x: hidden;
}

/* ─── Transformation CTA ─── */
.rl-home-transform {
  background: var(--rl-green);
  padding: 120px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rl-home-transform::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?w=1200&amp;q=60');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}
.rl-home-transform__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}
.rl-home-transform__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 20px;
}
.rl-home-transform__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: var(--rl-white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.rl-home-transform__title em { font-style: italic; color: var(--rl-gold-light); }
.rl-home-transform__desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.45);
  margin-bottom: 44px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.rl-home-transform__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--rl-gold);
  color: var(--rl-green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 44px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rl-home-transform__btn:hover {
  background: var(--rl-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.rl-home-transform__btn::after { content: '→'; font-size: 14px; }

/* ─── Why Choose ─── */
.rl-home-why {
  background: var(--rl-cream);
  padding: 100px;
}
.rl-home-why__header {
  text-align: center;
  margin-bottom: 64px;
}
.rl-home-why__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 16px;
}
.rl-home-why__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--rl-green);
  line-height: 1.05;
}
.rl-home-why__title em { font-style: italic; color: var(--rl-gold); }
.rl-home-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.rl-home-why-card {
  background: var(--rl-white);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s;
}
.rl-home-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
  z-index: 2;
}
.rl-home-why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--rl-green), var(--rl-gold));
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: left;
}
.rl-home-why-card:hover::after { transform: scaleX(1); }

.rl-home-why-card__icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--rl-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 20px;
  color: var(--rl-gold);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rl-home-why-card:hover .rl-home-why-card__icon {
  background: var(--rl-green);
  border-color: var(--rl-green);
  color: var(--rl-gold-light);
}
.rl-home-why-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--rl-green);
  margin-bottom: 12px;
}
.rl-home-why-card__desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--rl-text-light);
  line-height: 1.75;
}

/* ─── Testimonials ─── */
.rl-home-testimonials {
  background: var(--rl-cream-dark);
  padding: 100px;
}
.rl-home-testimonials__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.rl-home-testimonials__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 16px;
}
.rl-home-testimonials__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--rl-green);
  line-height: 1.05;
}
.rl-home-testimonials__title em { font-style: italic; color: var(--rl-gold); }
.rl-home-testimonials__rating {
  text-align: right;
}
.rl-home-testimonials__stars {
  font-size: 18px;
  color: var(--rl-gold);
  letter-spacing: 4px;
  margin-bottom: 6px;
}
.rl-home-testimonials__avg {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--rl-green);
  line-height: 1;
}
.rl-home-testimonials__count {
  font-size: 12px;
  font-weight: 300;
  color: var(--rl-text-light);
  margin-top: 4px;
}
.rl-home-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.rl-home-testimonial-card {
  background: var(--rl-white);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}
.rl-home-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.08);
  z-index: 2;
}
.rl-home-testimonial-card__stars {
  font-size: 14px;
  color: var(--rl-gold);
  letter-spacing: 3px;
  margin-bottom: 24px;
}
.rl-home-testimonial-card__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--rl-green);
  line-height: 1.5;
  margin-bottom: 32px;
  flex: 1;
}
.rl-home-testimonial-card__quote::before {
  content: '"';
  display: block;
  font-size: 48px;
  line-height: 0.6;
  color: var(--rl-gold);
  margin-bottom: 12px;
  font-style: normal;
}
.rl-home-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(37,41,30,0.06);
  padding-top: 20px;
}
.rl-home-testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rl-cream-dark);
  border: 1px solid var(--rl-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--rl-gold);
  flex-shrink: 0;
}
.rl-home-testimonial-card__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--rl-green);
}
.rl-home-testimonial-card__service {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-top: 2px;
}

/* ─── Salon ─── */
.rl-home-salon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.rl-home-salon__image {
  position: relative;
  overflow: hidden;
  background: var(--rl-green);
}
.rl-home-salon__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rl-home-salon:hover .rl-home-salon__image img {
  opacity: 0.85;
  transform: scale(1.04);
}
.rl-home-salon__image-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
}
.rl-home-salon__image-tag {
  display: inline-block;
  background: var(--rl-gold);
  color: var(--rl-green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 10px 20px;
}
.rl-home-salon__content {
  background: var(--rl-green);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rl-home-salon__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 20px;
}
.rl-home-salon__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--rl-white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.rl-home-salon__title em { font-style: italic; color: var(--rl-gold-light); }
.rl-home-salon__desc {
  font-size: 17px; /* Было 15px */
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75); /* Сделали текст немного светлее */
  line-height: 1.85;
  margin-bottom: 48px; /* Увеличили отступ до списка */
  max-width: 480px; /* Расширили колонку */
}

/* Весь блок с контактами */
.rl-home-salon__details {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Увеличили с 16px для большего "воздуха" между строками */
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px; /* Увеличили с 28px */
}
.rl-home-salon__detail {
  display: flex;
  gap: 16px; /* Чуть больше отодвинули текст от иконки */
  align-items: flex-start;
}
.rl-home-salon__detail-icon {
  font-size: 18px; /* Увеличили иконки с 14px */
  color: var(--rl-gold);
  margin-top: 0;
  flex-shrink: 0;
}
.rl-home-salon__detail-text {
  font-size: 16px; /* Увеличили текст с 14px */
  font-weight: 300;
  color: rgba(255,255,255,0.85); /* Сделали текст читаемей */
  line-height: 1.6;
}
.rl-home-salon__detail-text a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,151,62,0.3);
  transition: all 0.4s;
}
.rl-home-salon__detail-text a:hover {
  color: var(--rl-white);
  border-color: var(--rl-gold);
}


/* ─── Map ─── */
.rl-home-map-section {
  height: 420px;
  position: relative;
}
.rl-home-map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.25) brightness(0.9);
  transition: filter 0.6s;
}
.rl-home-map-section:hover iframe {
  filter: saturate(0.6) brightness(0.95);
}
.rl-home-map-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--rl-green);
  padding: 24px 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  pointer-events: none;
  z-index: 2;
}
.rl-home-map-badge__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--rl-gold);
  flex-shrink: 0;
  animation: rl-pulse 2s ease infinite;
}
@keyframes rl-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,151,62,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(184,151,62,0); }
}
.rl-home-map-badge__text {
  font-size: 14px;
  font-weight: 400;
  color: var(--rl-white);
}
.rl-home-map-badge__text span {
  display: block;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ─── Responsive Media Queries ─── */
@media (max-width: 1200px) {
  .rl-home-transform { padding: 100px 60px; }
  .rl-home-why { padding: 100px 60px; }
  .rl-home-why__grid { grid-template-columns: repeat(2, 1fr); }
  .rl-home-testimonials { padding: 100px 60px; }
  .rl-home-salon__content { padding: 60px; }
}

@media (max-width: 800px) {
  .rl-home-transform { padding: 80px 40px; }
  .rl-home-why { padding: 80px 40px; }
  .rl-home-why__grid { grid-template-columns: 1fr; }
  .rl-home-testimonials { padding: 80px 40px; }
  .rl-home-testimonials__grid { grid-template-columns: 1fr; gap: 2px; }
  .rl-home-testimonials__header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .rl-home-testimonials__rating { text-align: left; }
  .rl-home-salon { grid-template-columns: 1fr; }
  .rl-home-salon__image { height: 350px; }
  .rl-home-map-section { height: 300px; }
}

@media (max-width: 500px) {
  .rl-home-transform { padding: 60px 24px; }
  .rl-home-why { padding: 60px 24px; }
  .rl-home-testimonials { padding: 60px 24px; }
  .rl-home-salon__content { padding: 48px 24px; }
  .rl-home-salon__image-overlay { bottom: 24px; left: 24px; }
  .rl-home-testimonial-card { padding: 36px 24px; }
  .rl-home-why-card { padding: 36px 24px; }
}

/* ══════════════════════════════
   COLOUR PAGE STYLES (GLOBAL SIZES MATCHED)
══════════════════════════════ */

.rl-colour-hero {
  height: 75vh;
  max-height: 640px;
  position: relative;
  overflow: hidden;
  background: var(--rl-green);
}
.rl-colour-hero__bg {
  position: absolute;
  inset: 0;
}
.rl-colour-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45) saturate(0.8);
}
.rl-colour-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--rl-green) 0%, rgba(37,41,30,0.3) 50%, rgba(37,41,30,0.6) 100%);
}
.rl-colour-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 100px 80px;
  max-width: 800px;
}
.rl-colour-hero__breadcrumb {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.rl-colour-hero__breadcrumb a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.3s;
}
.rl-colour-hero__breadcrumb a:hover { color: var(--rl-gold); }
.rl-colour-hero__breadcrumb span { color: var(--rl-gold); }
.rl-colour-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 7vw, 100px); /* Синхронизировано с Hero на др. страницах */
  font-weight: 300;
  line-height: 0.95;
  color: var(--rl-white);
  margin-bottom: 32px;
}
.rl-colour-hero__title em { font-style: italic; color: var(--rl-gold-light); }
.rl-colour-hero__desc {
  font-size: 17px; /* Синхронизировано */
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
}

/* ══════════════════════════════
   INTRO
══════════════════════════════ */
.rl-colour-intro {
  background: var(--rl-cream);
  padding: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.rl-colour-intro__label {
  font-size: 11px; /* Глобальный стандарт надзаголовков */
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 20px;
}
.rl-colour-intro__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 64px); /* Глобальный стандарт секций */
  font-weight: 300;
  color: var(--rl-green);
  line-height: 1.05;
  margin-bottom: 28px;
}
.rl-colour-intro__title em { font-style: italic; color: var(--rl-gold); }
.rl-colour-intro__text {
  font-size: 16px; /* Стандартный текст */
  font-weight: 300;
  line-height: 1.85;
  color: var(--rl-text-light);
  margin-bottom: 20px;
}
.rl-colour-intro__highlight {
  border-left: 2px solid var(--rl-gold);
  padding: 16px 24px;
  background: rgba(184,151,62,0.06);
  margin-top: 32px;
}
.rl-colour-intro__highlight p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; /* Увеличен акцент */
  font-weight: 400;
  font-style: italic;
  color: var(--rl-green);
  line-height: 1.5;
}
.rl-colour-intro__right { position: relative; }
.rl-colour-intro__img { width: 100%; overflow: hidden; }
.rl-colour-intro__img img { width: 100%; display: block; }
.rl-colour-intro__img-caption {
  position: absolute;
  bottom: -1px;
  right: 0;
  background: var(--rl-green);
  padding: 16px 24px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rl-gold);
}

/* ══════════════════════════════
   TECHNIQUES
══════════════════════════════ */
.rl-colour-techniques {
  background: var(--rl-green);
  padding: 100px;
}
.rl-colour-techniques__header {
  text-align: center;
  margin-bottom: 72px;
}
.rl-colour-techniques__label {
  font-size: 11px; /* Синхронизировано */
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 16px;
}
.rl-colour-techniques__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 64px); /* Синхронизировано */
  font-weight: 300;
  color: var(--rl-white);
  line-height: 1.05;
}
.rl-colour-techniques__title em { font-style: italic; color: var(--rl-gold-light); }

.rl-colour-techniques__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.rl-colour-tech-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s, transform 0.4s;
}
.rl-colour-tech-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
}
.rl-colour-tech-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--rl-gold), var(--rl-gold-light));
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}
.rl-colour-tech-card:hover::after { transform: scaleX(1); }
.rl-colour-tech-card__num {
  position: absolute;
  top: -15px;
  right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}
.rl-colour-tech-card__tag {
  display: inline-block;
  font-size: 11px; /* Синхронизировано */
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rl-green);
  background: var(--rl-gold);
  padding: 6px 16px;
  margin-bottom: 24px;
}
.rl-colour-tech-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3vw, 44px); /* Синхронизировано с Services Card */
  font-weight: 300;
  color: var(--rl-white);
  margin-bottom: 16px;
  line-height: 1.1;
}
.rl-colour-tech-card__desc {
  font-size: 16px; /* Синхронизировано */
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  margin-bottom: 28px;
}
.rl-colour-tech-card__features {
  list-style: none;
}
.rl-colour-tech-card__features li {
  font-size: 14px; /* Синхронизировано */
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 12px;
}
.rl-colour-tech-card__features li::before {
  content: '✦';
  color: var(--rl-gold);
  font-size: 8px;
  flex-shrink: 0;
}

/* ══════════════════════════════
   GALLERY
══════════════════════════════ */
.rl-colour-gallery {
  background: var(--rl-cream-dark);
  padding: 100px;
}
.rl-colour-gallery__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.rl-colour-gallery__label {
  font-size: 11px; /* Синхронизировано */
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 16px;
}
.rl-colour-gallery__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 64px); /* Синхронизировано */
  font-weight: 300;
  color: var(--rl-green);
  line-height: 1.05;
}
.rl-colour-gallery__title em { font-style: italic; color: var(--rl-gold); }
.rl-colour-gallery__link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rl-green);
  text-decoration: none;
  border-bottom: 1px solid var(--rl-gold);
  padding-bottom: 4px;
  transition: color 0.3s;
  white-space: nowrap;
}
.rl-colour-gallery__link:hover { color: var(--rl-gold); }
.rl-colour-gallery__link::after { content: ' →'; }
.rl-colour-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: 6px;
}
.rl-colour-gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.rl-colour-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0,0.25,1);
}
.rl-colour-gallery__item:hover img { transform: scale(1.08); }
.rl-colour-gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(37,41,30,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.rl-colour-gallery__item:hover .rl-colour-gallery__item-overlay { opacity: 1; }
.rl-colour-gallery__item-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; /* Увеличен как в Bento Gallery */
  font-weight: 300;
  color: var(--rl-white);
}
.rl-colour-gi--1 { grid-column: span 5; grid-row: span 4; }
.rl-colour-gi--2 { grid-column: span 4; grid-row: span 3; }
.rl-colour-gi--3 { grid-column: span 3; grid-row: span 3; }
.rl-colour-gi--4 { grid-column: span 3; grid-row: span 3; }
.rl-colour-gi--5 { grid-column: span 4; grid-row: span 4; }
.rl-colour-gi--6 { grid-column: span 5; grid-row: span 4; }
.rl-colour-gi--7 { grid-column: span 7; grid-row: span 3; }
.rl-colour-gi--8 { grid-column: span 5; grid-row: span 3; }

/* ══════════════════════════════
   PROCESS
══════════════════════════════ */
.rl-colour-process {
  background: var(--rl-white);
  padding: 100px;
}
.rl-colour-process__header {
  text-align: center;
  margin-bottom: 72px;
}
.rl-colour-process__label {
  font-size: 11px; /* Синхронизировано */
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 16px;
}
.rl-colour-process__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 64px); /* Синхронизировано */
  font-weight: 300;
  color: var(--rl-green);
  line-height: 1.05;
}
.rl-colour-process__title em { font-style: italic; color: var(--rl-gold); }
.rl-colour-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.rl-colour-process__steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 60px;
  right: 60px;
  height: 1px;
  background: rgba(201,168,76,0.25);
}
.rl-colour-process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.rl-colour-process-step__dot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--rl-gold);
  background: var(--rl-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
}
.rl-colour-process-step:hover .rl-colour-process-step__dot {
  background: var(--rl-green);
  border-color: var(--rl-green);
}
.rl-colour-process-step__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; /* Увеличено */
  font-weight: 300;
  color: var(--rl-gold);
  transition: color 0.3s;
}
.rl-colour-process-step:hover .rl-colour-process-step__num { color: var(--rl-gold-light); }
.rl-colour-process-step__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; /* Увеличено */
  font-weight: 400;
  color: var(--rl-green);
  margin-bottom: 12px;
}
.rl-colour-process-step__desc {
  font-size: 15px; /* Синхронизировано */
  font-weight: 300;
  color: var(--rl-text-light);
  line-height: 1.7;
}

/* ══════════════════════════════
   PRICING
══════════════════════════════ */
.rl-colour-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.rl-colour-pricing__image {
  position: relative;
  overflow: hidden;
  background: var(--rl-green);
  min-height: 500px;
}
.rl-colour-pricing__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.rl-colour-pricing__image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px;
}
.rl-colour-pricing__image-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px;
  font-weight: 300;
  color: rgba(255,255,255,0.06);
  margin-bottom: auto;
}
.rl-colour-pricing__image-tag {
  display: inline-block;
  background: var(--rl-gold);
  color: var(--rl-green);
  font-size: 11px; /* Синхронизировано */
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 18px;
  width: fit-content;
}
.rl-colour-pricing__content {
  background: var(--rl-cream);
  padding: 72px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rl-colour-pricing__label {
  font-size: 11px; /* Синхронизировано */
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 18px;
}
.rl-colour-pricing__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4vw, 58px); /* Синхронизировано с Pricing Page */
  font-weight: 300;
  color: var(--rl-green);
  line-height: 1.05;
  margin-bottom: 32px;
}
.rl-colour-pricing__title em { font-style: italic; color: var(--rl-gold); }
.rl-colour-pricing__category {
  font-size: 11px; /* Синхронизировано */
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin: 20px 0 12px;
}
.rl-colour-pricing__rows {
  border-top: 1px solid rgba(37,41,30,0.12);
}
.rl-colour-pricing__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(37,41,30,0.06);
  gap: 16px;
}
.rl-colour-pricing__row:last-child { border-bottom: none; }
.rl-colour-pricing__name {
  font-size: 15px; /* Синхронизировано */
  font-weight: 300;
  color: var(--rl-text);
}
.rl-colour-pricing__val {
  font-size: 15px; /* Синхронизировано */
  font-weight: 500;
  color: var(--rl-green);
  white-space: nowrap;
}
.rl-colour-pricing__note {
  background: rgba(184,151,62,0.08);
  border-left: 2px solid var(--rl-gold);
  padding: 14px 18px;
  margin-top: 28px;
}
.rl-colour-pricing__note p {
  font-size: 14px; /* Синхронизировано */
  font-weight: 300;
  color: var(--rl-text-light);
  font-style: italic;
  line-height: 1.7;
}
.rl-colour-pricing__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rl-green);
  text-decoration: none;
  border-bottom: 1px solid var(--rl-gold);
  padding-bottom: 4px;
  width: fit-content;
  margin-top: 28px;
  transition: color 0.3s;
}
.rl-colour-pricing__cta:hover { color: var(--rl-gold); }
.rl-colour-pricing__cta::after { content: '→'; }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.rl-colour-faq {
  background: var(--rl-green);
  padding: 100px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.rl-colour-faq__left {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 18px;
}
.rl-colour-faq__label {
  font-size: 11px; /* Синхронизировано */
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 18px;
}
.rl-colour-faq__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 64px); /* Синхронизировано */
  font-weight: 300;
  color: var(--rl-white);
  line-height: 1.05;
  margin-bottom: 20px;
}
.rl-colour-faq__title em { font-style: italic; color: var(--rl-gold-light); }
.rl-colour-faq__desc {
  font-size: 16px; /* Синхронизировано */
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}
.rl-colour-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.rl-colour-faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.rl-colour-faq-item__q {
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.rl-colour-faq-item__q-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; /* Увеличено */
  font-weight: 400;
  color: var(--rl-white);
  line-height: 1.3;
}
.rl-colour-faq-item__q-icon {
  font-size: 18px;
  color: var(--rl-gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.rl-colour-faq-item.open .rl-colour-faq-item__q-icon { transform: rotate(45deg); }
.rl-colour-faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.rl-colour-faq-item.open .rl-colour-faq-item__a {
  max-height: 300px;
  padding-bottom: 22px;
}
.rl-colour-faq-item__a p {
  font-size: 16px; /* Синхронизировано */
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* ══════════════════════════════
   BOOKING BANNER
══════════════════════════════ */
.rl-colour-booking-banner {
  background: var(--rl-gold);
  padding: 72px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.rl-colour-booking-banner__eyebrow {
  font-size: 11px; /* Синхронизировано */
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-green);
  margin-bottom: 12px;
}
.rl-colour-booking-banner__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px); /* Синхронизировано с Shared Banner */
  font-weight: 300;
  color: var(--rl-green);
  line-height: 1.1;
}
.rl-colour-booking-banner__title em { font-style: italic; }
.rl-colour-booking-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--rl-green);
  color: var(--rl-white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 22px 48px; /* Выровнял паддинги с shared banner */
  white-space: nowrap;
  transition: background 0.3s;
}
.rl-colour-booking-banner__btn:hover { background: #1a1d16; }
.rl-colour-booking-banner__btn::after { content: '→'; font-size: 14px; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1100px) {
  .rl-colour-hero__content { padding: 0 48px 60px; }
  .rl-colour-intro { padding: 80px 48px; gap: 48px; }
  .rl-colour-techniques { padding: 80px 48px; }
  .rl-colour-gallery { padding: 80px 48px; }
  .rl-colour-process { padding: 80px 48px; }
  .rl-colour-pricing__content { padding: 60px 48px; }
  .rl-colour-pricing__image-overlay { padding: 40px 48px; }
  .rl-colour-faq { padding: 80px 48px; gap: 48px; }
  .rl-colour-booking-banner { padding: 56px 48px; }
}
@media (max-width: 900px) {
  .rl-colour-intro { grid-template-columns: 1fr; }
  .rl-colour-techniques__grid { grid-template-columns: 1fr; }
  .rl-colour-gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .rl-colour-gi--1, .rl-colour-gi--2, .rl-colour-gi--3, .rl-colour-gi--4, .rl-colour-gi--5, .rl-colour-gi--6, .rl-colour-gi--7, .rl-colour-gi--8 { grid-column: span 1; grid-row: span 1; }
  .rl-colour-gi--1, .rl-colour-gi--6 { grid-column: span 2; }
  .rl-colour-process__steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .rl-colour-process__steps::before { display: none; }
  .rl-colour-pricing { grid-template-columns: 1fr; }
  .rl-colour-pricing__image { min-height: 300px; }
  .rl-colour-faq { grid-template-columns: 1fr; }
  .rl-colour-gallery__header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .rl-colour-booking-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .rl-colour-hero { max-height: 480px; }
  .rl-colour-hero__content { padding: 0 28px 48px; }
  .rl-colour-intro { padding: 60px 28px; }
  .rl-colour-techniques { padding: 60px 28px; }
  .rl-colour-tech-card { padding: 40px 28px; }
  .rl-colour-gallery { padding: 60px 28px; }
  .rl-colour-process { padding: 60px 28px; }
  .rl-colour-process__steps { grid-template-columns: 1fr; }
  .rl-colour-pricing__content { padding: 48px 28px; }
  .rl-colour-faq { padding: 60px 28px; }
  .rl-colour-booking-banner { padding: 48px 28px; }
}

/* ══════════════════════════════
   TREATMENTS PAGE STYLES (ENHANCED SPECIFICITY)
══════════════════════════════ */

.rl-treatments .rl-treatments-hero {
  height: 75vh; 
  max-height: 640px;
  position: relative; 
  overflow: hidden; 
  background: var(--rl-green);
}
.rl-treatments .rl-treatments-hero__bg { position: absolute; inset: 0; }
.rl-treatments .rl-treatments-hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4) saturate(0.8); }
.rl-treatments .rl-treatments-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--rl-green) 0%, rgba(37,41,30,0.3) 50%, rgba(37,41,30,0.6) 100%);
}
.rl-treatments .rl-treatments-hero__content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 100px 80px; max-width: 800px;
}
.rl-treatments .rl-treatments-hero__breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px;
}
.rl-treatments .rl-treatments-hero__breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.3s; }
.rl-treatments .rl-treatments-hero__breadcrumb a:hover { color: var(--rl-gold); }
.rl-treatments .rl-treatments-hero__breadcrumb span { color: var(--rl-gold); }
.rl-treatments .rl-treatments-hero__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(56px, 7vw, 100px) !important; font-weight: 300;
  line-height: 0.95; color: var(--rl-white); margin-bottom: 32px;
}
.rl-treatments .rl-treatments-hero__title em { font-style: italic; color: var(--rl-gold-light); }
.rl-treatments .rl-treatments-hero__desc {
  font-family: 'Inter', sans-serif;
  font-size: 17px; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,0.55); max-width: 520px;
}

/* ══════════════════════════════
   INTRO
══════════════════════════════ */
.rl-treatments .rl-treatments-intro {
  background: var(--rl-cream); padding: 100px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.rl-treatments .rl-treatments-intro__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 20px;
}
.rl-treatments .rl-treatments-intro__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(40px, 4.5vw, 64px) !important; font-weight: 300;
  color: var(--rl-green); line-height: 1.05; margin-bottom: 28px;
}
.rl-treatments .rl-treatments-intro__title em { font-style: italic; color: var(--rl-gold); }
.rl-treatments .rl-treatments-intro__text {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: var(--rl-text-light); margin-bottom: 20px;
}
.rl-treatments .rl-treatments-intro__highlight {
  border-left: 2px solid var(--rl-gold); padding: 16px 24px;
  background: rgba(184,151,62,0.06); margin-top: 32px;
}
.rl-treatments .rl-treatments-intro__highlight p {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 24px; font-weight: 400; font-style: italic;
  color: var(--rl-green); line-height: 1.5; margin: 0;
}
.rl-treatments .rl-treatments-intro__right { position: relative; }
.rl-treatments .rl-treatments-intro__img { width: 100%; overflow: hidden; }
.rl-treatments .rl-treatments-intro__img img { width: 100%; display: block; }
.rl-treatments .rl-treatments-intro__img-caption {
  font-family: 'Inter', sans-serif;
  position: absolute; bottom: -1px; right: 0;
  background: var(--rl-green); padding: 16px 24px;
  font-size: 10px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--rl-gold);
}

/* ══════════════════════════════
   THREE TREATMENTS — FEATURED CARDS
══════════════════════════════ */
.rl-treatments .rl-treatments-section {
  background: var(--rl-green); padding: 100px;
}
.rl-treatments .rl-treatments-section__header { text-align: center; margin-bottom: 72px; }
.rl-treatments .rl-treatments-section__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 16px;
}
.rl-treatments .rl-treatments-section__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(40px, 4.5vw, 64px) !important; font-weight: 300;
  color: var(--rl-white); line-height: 1.05;
}
.rl-treatments .rl-treatments-section__title em { font-style: italic; color: var(--rl-gold-light); }

.rl-treatments .rl-treatments-section__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}

.rl-treatments .rl-treatments-treat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 56px 44px;
  position: relative; overflow: hidden;
  transition: background 0.4s, transform 0.4s;
}
.rl-treatments .rl-treatments-treat-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
}
.rl-treatments .rl-treatments-treat-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--rl-gold), var(--rl-gold-light));
  transform: scaleX(0); transition: transform 0.4s; transform-origin: left;
}
.rl-treatments .rl-treatments-treat-card:hover::after { transform: scaleX(1); }

.rl-treatments .rl-treatments-treat-card__num {
  position: absolute; top: -15px; right: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px; font-weight: 300;
  color: rgba(255,255,255,0.03); pointer-events: none;
}

.rl-treatments .rl-treatments-treat-card__img {
  width: 72px; height: 72px; object-fit: contain;
  margin-bottom: 28px; display: block;
}

.rl-treatments .rl-treatments-treat-card__tag {
  font-family: 'Inter', sans-serif;
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--rl-green); background: var(--rl-gold);
  padding: 6px 16px; margin-bottom: 24px;
}
.rl-treatments .rl-treatments-treat-card__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(32px, 3vw, 44px) !important; font-weight: 300; color: var(--rl-white);
  margin-bottom: 8px; line-height: 1.1;
}
.rl-treatments .rl-treatments-treat-card__sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 20px;
}
.rl-treatments .rl-treatments-treat-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.55); line-height: 1.85; margin-bottom: 28px;
}
.rl-treatments .rl-treatments-treat-card__features { list-style: none; margin: 0; padding: 0; }
.rl-treatments .rl-treatments-treat-card__features li {
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.7); padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 12px; margin: 0;
}
.rl-treatments .rl-treatments-treat-card__features li::before {
  content: '✦'; color: var(--rl-gold); font-size: 8px; flex-shrink: 0;
}

/* ══════════════════════════════
   HOW TREATMENTS WORK — SPLIT
══════════════════════════════ */
.rl-treatments .rl-treatments-how-it-works {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 560px;
}
.rl-treatments .rl-treatments-how-it-works__image {
  position: relative; overflow: hidden; background: var(--rl-green);
}
.rl-treatments .rl-treatments-how-it-works__image img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.5;
  transition: all 0.6s;
}
.rl-treatments .rl-treatments-how-it-works:hover .rl-treatments-how-it-works__image img { opacity: 0.65; transform: scale(1.03); }
.rl-treatments .rl-treatments-how-it-works__image-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.rl-treatments .rl-treatments-how-it-works__image-text {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(48px, 7vw, 100px) !important; font-weight: 300;
  color: rgba(255,255,255,0.06); white-space: nowrap;
  transform: rotate(-90deg);
}

.rl-treatments .rl-treatments-how-it-works__content {
  background: var(--rl-cream-dark); padding: 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.rl-treatments .rl-treatments-how-it-works__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 20px;
}
.rl-treatments .rl-treatments-how-it-works__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(40px, 4.5vw, 64px) !important; font-weight: 300;
  color: var(--rl-green); line-height: 1.05; margin-bottom: 28px;
}
.rl-treatments .rl-treatments-how-it-works__title em { font-style: italic; color: var(--rl-gold); }
.rl-treatments .rl-treatments-how-it-works__text {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: var(--rl-text-light); margin-bottom: 32px;
}

.rl-treatments .rl-treatments-hiw-steps { border-top: 1px solid rgba(37,41,30,0.1); }
.rl-treatments .rl-treatments-hiw-step {
  padding: 22px 0; border-bottom: 1px solid rgba(37,41,30,0.08);
  display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start;
}
.rl-treatments .rl-treatments-hiw-step__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300; color: var(--rl-gold); line-height: 1;
}
.rl-treatments .rl-treatments-hiw-step__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 26px; font-weight: 400; color: var(--rl-green); margin-bottom: 6px;
}
.rl-treatments .rl-treatments-hiw-step__desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 300; color: var(--rl-text-light); line-height: 1.7;
}

/* ══════════════════════════════
   BRANDS WE USE (UPDATED WITH LOGOS)
══════════════════════════════ */
.rl-treatments .rl-treatments-brands {
  background: var(--rl-white); padding: 80px 100px;
}
.rl-treatments .rl-treatments-brands__header { text-align: center; margin-bottom: 56px; }
.rl-treatments .rl-treatments-brands__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 16px;
}
.rl-treatments .rl-treatments-brands__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(40px, 4.5vw, 64px) !important; font-weight: 300;
  color: var(--rl-green); line-height: 1.05;
}
.rl-treatments .rl-treatments-brands__title em { font-style: italic; color: var(--rl-gold); }

.rl-treatments .rl-treatments-brands__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.rl-treatments .rl-treatments-brand-card {
  background: var(--rl-cream); padding: 48px 36px; text-align: center;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.rl-treatments .rl-treatments-brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.08); z-index: 2;
}
.rl-treatments .rl-treatments-brand-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--rl-gold); transform: scaleX(0);
  transition: transform 0.3s; transform-origin: left;
}
.rl-treatments .rl-treatments-brand-card:hover::after { transform: scaleX(1); }

/* --- НОВЫЕ СТИЛИ ДЛЯ ЛОГОТИПОВ (МАСКИ) --- */
.rl-treatments .rl-treatments-brand-logo {
  width: 100%;
  height: 44px; /* Высота логотипов */
  margin: 0 auto 28px;
  background-color: var(--rl-gold); /* Базовый цвет логотипа */
  -webkit-mask-image: var(--brand-logo);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: var(--brand-logo);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: background-color 0.3s ease;
}

/* При наведении на карточку логотип меняет цвет на зеленый */
.rl-treatments .rl-treatments-brand-card:hover .rl-treatments-brand-logo {
  background-color: var(--rl-green);
}
/* ------------------------------------------ */

.rl-treatments .rl-treatments-brand-card__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 26px; font-weight: 400; color: var(--rl-green); margin-bottom: 8px;
}
.rl-treatments .rl-treatments-brand-card__sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 16px;
}
.rl-treatments .rl-treatments-brand-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 300; color: var(--rl-text-light); line-height: 1.75;
}

/* ══════════════════════════════
   PRICING
══════════════════════════════ */
.rl-treatments .rl-treatments-pricing {
  display: grid; grid-template-columns: 1fr 1fr;
}
.rl-treatments .rl-treatments-pricing__image {
  position: relative; overflow: hidden; background: var(--rl-green); min-height: 500px;
}
.rl-treatments .rl-treatments-pricing__image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.rl-treatments .rl-treatments-pricing__image-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 60px;
}
.rl-treatments .rl-treatments-pricing__image-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px; font-weight: 300;
  color: rgba(255,255,255,0.06); margin-bottom: auto;
}
.rl-treatments .rl-treatments-pricing__image-tag {
  font-family: 'Inter', sans-serif;
  display: inline-block; background: var(--rl-gold); color: var(--rl-green);
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; padding: 8px 18px; width: fit-content;
}
.rl-treatments .rl-treatments-pricing__content {
  background: var(--rl-cream); padding: 72px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.rl-treatments .rl-treatments-pricing__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 18px;
}
.rl-treatments .rl-treatments-pricing__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(38px, 4vw, 58px) !important; font-weight: 300;
  color: var(--rl-green); line-height: 1.05; margin-bottom: 32px;
}
.rl-treatments .rl-treatments-pricing__title em { font-style: italic; color: var(--rl-gold); }
.rl-treatments .rl-treatments-pricing__category {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--rl-gold); margin: 20px 0 12px;
}
.rl-treatments .rl-treatments-pricing__rows { border-top: 1px solid rgba(37,41,30,0.12); }
.rl-treatments .rl-treatments-pricing__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid rgba(37,41,30,0.06); gap: 16px;
}
.rl-treatments .rl-treatments-pricing__row:last-child { border-bottom: none; }
.rl-treatments .rl-treatments-pricing__name { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 300; color: var(--rl-text); }
.rl-treatments .rl-treatments-pricing__val { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500; color: var(--rl-green); white-space: nowrap; }
.rl-treatments .rl-treatments-pricing__note {
  background: rgba(184,151,62,0.08); border-left: 2px solid var(--rl-gold);
  padding: 14px 18px; margin-top: 28px;
}
.rl-treatments .rl-treatments-pricing__note p { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 300; color: var(--rl-text-light); font-style: italic; line-height: 1.7; margin: 0; }
.rl-treatments .rl-treatments-pricing__cta {
  font-family: 'Inter', sans-serif;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--rl-green); text-decoration: none;
  border-bottom: 1px solid var(--rl-gold); padding-bottom: 4px;
  width: fit-content; margin-top: 28px; transition: color 0.3s;
}
.rl-treatments .rl-treatments-pricing__cta:hover { color: var(--rl-gold); }
.rl-treatments .rl-treatments-pricing__cta::after { content: '→'; }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.rl-treatments .rl-treatments-faq {
  background: var(--rl-green); padding: 100px;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start;
}
.rl-treatments .rl-treatments-faq__left {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 18px;
}
.rl-treatments .rl-treatments-faq__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 18px;
}
.rl-treatments .rl-treatments-faq__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(40px, 4.5vw, 64px) !important; font-weight: 300;
  color: var(--rl-white); line-height: 1.05; margin-bottom: 20px;
}
.rl-treatments .rl-treatments-faq__title em { font-style: italic; color: var(--rl-gold-light); }
.rl-treatments .rl-treatments-faq__desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.8;
}
.rl-treatments .rl-treatments-faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); overflow: hidden; }
.rl-treatments .rl-treatments-faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.rl-treatments .rl-treatments-faq-item__q {
  padding: 22px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.rl-treatments .rl-treatments-faq-item__q-text {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 24px; font-weight: 400; color: var(--rl-white); line-height: 1.3;
}
.rl-treatments .rl-treatments-faq-item__q-icon {
  font-size: 18px; color: var(--rl-gold); flex-shrink: 0; transition: transform 0.3s;
}
.rl-treatments .rl-treatments-faq-item.open .rl-treatments-faq-item__q-icon { transform: rotate(45deg); }
.rl-treatments .rl-treatments-faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.rl-treatments .rl-treatments-faq-item.open .rl-treatments-faq-item__a { max-height: 300px; padding-bottom: 22px; }
.rl-treatments .rl-treatments-faq-item__a p { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.8; margin: 0; }

/* ══════════════════════════════
   BOOKING BANNER
══════════════════════════════ */
.rl-treatments .rl-treatments-booking-banner {
  background: var(--rl-gold); padding: 72px 100px;
  display: flex; justify-content: space-between; align-items: center; gap: 40px;
}
.rl-treatments .rl-treatments-booking-banner__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-green); margin-bottom: 12px;
}
.rl-treatments .rl-treatments-booking-banner__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(36px, 4vw, 52px) !important; font-weight: 300;
  color: var(--rl-green); line-height: 1.1;
}
.rl-treatments .rl-treatments-booking-banner__title em { font-style: italic; }
.rl-treatments .rl-treatments-booking-banner__btn {
  font-family: 'Inter', sans-serif;
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--rl-green); color: var(--rl-white);
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none;
  padding: 22px 48px; white-space: nowrap; transition: background 0.3s;
}
.rl-treatments .rl-treatments-booking-banner__btn:hover { background: #1a1d16; }
.rl-treatments .rl-treatments-booking-banner__btn::after { content: '→'; font-size: 14px; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1100px) {
  .rl-treatments .rl-treatments-hero__content { padding: 0 48px 60px; }
  .rl-treatments .rl-treatments-intro { padding: 80px 48px; gap: 48px; }
  .rl-treatments .rl-treatments-section { padding: 80px 48px; }
  .rl-treatments .rl-treatments-how-it-works__content { padding: 60px 48px; }
  .rl-treatments .rl-treatments-brands { padding: 60px 48px; }
  .rl-treatments .rl-treatments-pricing__content { padding: 60px 48px; }
  .rl-treatments .rl-treatments-pricing__image-overlay { padding: 40px 48px; }
  .rl-treatments .rl-treatments-faq { padding: 80px 48px; gap: 48px; }
  .rl-treatments .rl-treatments-booking-banner { padding: 56px 48px; }
}
@media (max-width: 900px) {
  .rl-treatments .rl-treatments-intro { grid-template-columns: 1fr; }
  .rl-treatments .rl-treatments-section__grid { grid-template-columns: 1fr; }
  .rl-treatments .rl-treatments-how-it-works { grid-template-columns: 1fr; }
  .rl-treatments .rl-treatments-how-it-works__image { height: 300px; }
  .rl-treatments .rl-treatments-brands__grid { grid-template-columns: 1fr; }
  .rl-treatments .rl-treatments-pricing { grid-template-columns: 1fr; }
  .rl-treatments .rl-treatments-pricing__image { min-height: 300px; }
  .rl-treatments .rl-treatments-faq { grid-template-columns: 1fr; }
  .rl-treatments .rl-treatments-booking-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .rl-treatments .rl-treatments-hero { max-height: 480px; }
  .rl-treatments .rl-treatments-hero__content { padding: 0 28px 48px; }
  .rl-treatments .rl-treatments-intro { padding: 60px 28px; }
  .rl-treatments .rl-treatments-section { padding: 60px 28px; }
  .rl-treatments .rl-treatments-treat-card { padding: 40px 28px; }
  .rl-treatments .rl-treatments-how-it-works__content { padding: 48px 28px; }
  .rl-treatments .rl-treatments-brands { padding: 48px 28px; }
  .rl-treatments .rl-treatments-brand-card { padding: 36px 24px; }
  .rl-treatments .rl-treatments-pricing__content { padding: 48px 28px; }
  .rl-treatments .rl-treatments-faq { padding: 60px 28px; }
  .rl-treatments .rl-treatments-booking-banner { padding: 48px 28px; }
}

/* ══════════════════════════════
   CUTS PAGE STYLES (ENHANCED SPECIFICITY)
══════════════════════════════ */

/* HERO */
.rl-cuts .rl-cuts-hero {
  height: 75vh;
  max-height: 640px;
  position: relative;
  overflow: hidden;
  background: var(--rl-green);
}
.rl-cuts .rl-cuts-hero__bg { position: absolute; inset: 0; }
.rl-cuts .rl-cuts-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(0.8);
}
.rl-cuts .rl-cuts-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--rl-green) 0%, rgba(37,41,30,0.3) 50%, rgba(37,41,30,0.6) 100%);
}
.rl-cuts .rl-cuts-hero__content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 100px 80px;
  max-width: 800px;
}
.rl-cuts .rl-cuts-hero__breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px;
}
.rl-cuts .rl-cuts-hero__breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.3s; }
.rl-cuts .rl-cuts-hero__breadcrumb a:hover { color: var(--rl-gold); }
.rl-cuts .rl-cuts-hero__breadcrumb span { color: var(--rl-gold); }
.rl-cuts .rl-cuts-hero__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(56px, 7vw, 100px) !important; font-weight: 300;
  line-height: 0.95; color: var(--rl-white); margin-bottom: 32px;
}
.rl-cuts .rl-cuts-hero__title em { font-style: italic; color: var(--rl-gold-light); }
.rl-cuts .rl-cuts-hero__desc {
  font-family: 'Inter', sans-serif;
  font-size: 17px; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,0.55); max-width: 520px;
}

/* INTRO */
.rl-cuts .rl-cuts-intro {
  background: var(--rl-cream);
  padding: 0px 0px 0px 100px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.rl-cuts .rl-cuts-intro__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 20px;
}
.rl-cuts .rl-cuts-intro__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(40px, 4.5vw, 64px) !important; font-weight: 300;
  color: var(--rl-green); line-height: 1.05; margin-bottom: 28px;
}
.rl-cuts .rl-cuts-intro__title em { font-style: italic; color: var(--rl-gold); }
.rl-cuts .rl-cuts-intro__text {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: var(--rl-text-light); margin-bottom: 20px;
}
.rl-cuts .rl-cuts-intro__highlight {
  border-left: 2px solid var(--rl-gold);
  padding: 16px 24px;
  background: rgba(184,151,62,0.06);
  margin-top: 32px;
}
.rl-cuts .rl-cuts-intro__highlight p {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 24px; font-weight: 400; font-style: italic;
  color: var(--rl-green); line-height: 1.5; margin: 0;
}
.rl-cuts .rl-cuts-intro__right { position: relative; }
.rl-cuts .rl-cuts-intro__img { width: 100%; overflow: hidden; }
.rl-cuts .rl-cuts-intro__img img { width: 100%; display: block; }
.rl-cuts .rl-cuts-intro__img-caption {
  font-family: 'Inter', sans-serif;
  position: absolute; bottom: -1px; right: 0;
  background: var(--rl-green); padding: 16px 24px;
  font-size: 10px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--rl-gold);
}

/* SERVICES */
.rl-cuts .rl-cuts-services {
  background: var(--rl-green);
  padding: 100px;
}
.rl-cuts .rl-cuts-services__header {
  text-align: center; margin-bottom: 72px;
}
.rl-cuts .rl-cuts-services__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 16px;
}
.rl-cuts .rl-cuts-services__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(40px, 4.5vw, 64px) !important; font-weight: 300;
  color: var(--rl-white); line-height: 1.05;
}
.rl-cuts .rl-cuts-services__title em { font-style: italic; color: var(--rl-gold-light); }
.rl-cuts .rl-cuts-services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}

.rl-cuts .rl-cuts-svc-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 56px 44px;
  position: relative; overflow: hidden;
  transition: background 0.4s, transform 0.4s;
}
.rl-cuts .rl-cuts-svc-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
}
.rl-cuts .rl-cuts-svc-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--rl-gold), var(--rl-gold-light));
  transform: scaleX(0); transition: transform 0.4s; transform-origin: left;
}
.rl-cuts .rl-cuts-svc-card:hover::after { transform: scaleX(1); }
.rl-cuts .rl-cuts-svc-card__num {
  position: absolute; top: -15px; right: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px; font-weight: 300;
  color: rgba(255,255,255,0.03); pointer-events: none;
}
.rl-cuts .rl-cuts-svc-card__tag {
  font-family: 'Inter', sans-serif;
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--rl-green); background: var(--rl-gold);
  padding: 6px 16px; margin-bottom: 24px;
}
.rl-cuts .rl-cuts-svc-card__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(32px, 3vw, 44px) !important; font-weight: 300; color: var(--rl-white);
  margin-bottom: 16px; line-height: 1.1;
}
.rl-cuts .rl-cuts-svc-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.55); line-height: 1.85; margin-bottom: 28px;
}
.rl-cuts .rl-cuts-svc-card__features { list-style: none; margin: 0; padding: 0; }
.rl-cuts .rl-cuts-svc-card__features li {
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.7);
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 12px; margin: 0;
}
.rl-cuts .rl-cuts-svc-card__features li::before {
  content: '✦'; color: var(--rl-gold); font-size: 8px; flex-shrink: 0;
}

/* SASSOON PHILOSOPHY */
.rl-cuts .rl-cuts-sassoon {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.rl-cuts .rl-cuts-sassoon__image {
  position: relative; overflow: hidden; background: var(--rl-green);
}
.rl-cuts .rl-cuts-sassoon__image img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.5;
  transition: all 0.6s;
}
.rl-cuts .rl-cuts-sassoon:hover .rl-cuts-sassoon__image img { opacity: 0.65; transform: scale(1.03); }
.rl-cuts .rl-cuts-sassoon__image-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.rl-cuts .rl-cuts-sassoon__image-text {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(48px, 7vw, 100px) !important; font-weight: 300;
  color: rgba(255,255,255,0.06); white-space: nowrap;
  transform: rotate(-90deg);
}
.rl-cuts .rl-cuts-sassoon__content {
  background: var(--rl-cream-dark);
  padding: 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.rl-cuts .rl-cuts-sassoon__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 20px;
}
.rl-cuts .rl-cuts-sassoon__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(40px, 4.5vw, 64px) !important; font-weight: 300;
  color: var(--rl-green); line-height: 1.05; margin-bottom: 28px;
}
.rl-cuts .rl-cuts-sassoon__title em { font-style: italic; color: var(--rl-gold); }
.rl-cuts .rl-cuts-sassoon__text {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: var(--rl-text-light); margin-bottom: 20px;
}
.rl-cuts .rl-cuts-sassoon__principles {
  margin-top: 32px; border-top: 1px solid rgba(37,41,30,0.1);
}
.rl-cuts .rl-cuts-sassoon__principle {
  padding: 22px 0;
  border-bottom: 1px solid rgba(37,41,30,0.08);
  display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: start;
}
.rl-cuts .rl-cuts-sassoon__principle-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300; color: var(--rl-gold); line-height: 1;
}
.rl-cuts .rl-cuts-sassoon__principle-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 26px; font-weight: 400; color: var(--rl-green); margin-bottom: 6px;
}
.rl-cuts .rl-cuts-sassoon__principle-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 300; color: var(--rl-text-light); line-height: 1.7;
}

/* GALLERY */
.rl-cuts .rl-cuts-gallery {
  background: var(--rl-cream);
  padding: 100px;
}
.rl-cuts .rl-cuts-gallery__header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 56px;
}
.rl-cuts .rl-cuts-gallery__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 16px;
}
.rl-cuts .rl-cuts-gallery__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(40px, 4.5vw, 64px) !important; font-weight: 300;
  color: var(--rl-green); line-height: 1.05;
}
.rl-cuts .rl-cuts-gallery__title em { font-style: italic; color: var(--rl-gold); }
.rl-cuts .rl-cuts-gallery__link {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--rl-green);
  text-decoration: none; border-bottom: 1px solid var(--rl-gold);
  padding-bottom: 4px; transition: color 0.3s; white-space: nowrap;
}
.rl-cuts .rl-cuts-gallery__link:hover { color: var(--rl-gold); }
.rl-cuts .rl-cuts-gallery__link::after { content: ' →'; }
.rl-cuts .rl-cuts-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 6px;
}
.rl-cuts .rl-cuts-gallery__item {
  position: relative; overflow: hidden; cursor: pointer;
}
.rl-cuts .rl-cuts-gallery__item--tall { grid-row: span 2; }
.rl-cuts .rl-cuts-gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0,0.25,1);
}
.rl-cuts .rl-cuts-gallery__item:hover img { transform: scale(1.08); }
.rl-cuts .rl-cuts-gallery__item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(37,41,30,0.85) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: flex-end; padding: 24px;
}
.rl-cuts .rl-cuts-gallery__item:hover .rl-cuts-gallery__item-overlay { opacity: 1; }
.rl-cuts .rl-cuts-gallery__item-label {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 24px; font-weight: 300; color: var(--rl-white);
}

/* PROCESS */
.rl-cuts .rl-cuts-process {
  background: var(--rl-white);
  padding: 100px;
}
.rl-cuts .rl-cuts-process__header { text-align: center; margin-bottom: 72px; }
.rl-cuts .rl-cuts-process__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 16px;
}
.rl-cuts .rl-cuts-process__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(40px, 4.5vw, 64px) !important; font-weight: 300;
  color: var(--rl-green); line-height: 1.05;
}
.rl-cuts .rl-cuts-process__title em { font-style: italic; color: var(--rl-gold); }
.rl-cuts .rl-cuts-process__steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.rl-cuts .rl-cuts-process__steps::before {
  content: ''; position: absolute; top: 32px;
  left: 60px; right: 60px; height: 1px;
  background: rgba(201,168,76,0.25);
}
.rl-cuts .rl-cuts-process-step { text-align: center; padding: 0 24px; position: relative; }
.rl-cuts .rl-cuts-process-step__dot {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid var(--rl-gold); background: var(--rl-white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; position: relative; z-index: 2;
  transition: all 0.3s;
}
.rl-cuts .rl-cuts-process-step:hover .rl-cuts-process-step__dot { background: var(--rl-green); border-color: var(--rl-green); }
.rl-cuts .rl-cuts-process-step__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300; color: var(--rl-gold);
  transition: color 0.3s;
}
.rl-cuts .rl-cuts-process-step:hover .rl-cuts-process-step__num { color: var(--rl-gold-light); }
.rl-cuts .rl-cuts-process-step__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 26px; font-weight: 400; color: var(--rl-green); margin-bottom: 12px;
}
.rl-cuts .rl-cuts-process-step__desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 300; color: var(--rl-text-light); line-height: 1.7;
}

/* PRICING */
.rl-cuts .rl-cuts-pricing {
  display: grid; grid-template-columns: 1fr 1fr;
}
.rl-cuts .rl-cuts-pricing__image {
  position: relative; overflow: hidden; background: var(--rl-green); min-height: 500px;
}
.rl-cuts .rl-cuts-pricing__image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.rl-cuts .rl-cuts-pricing__image-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 60px;
}
.rl-cuts .rl-cuts-pricing__image-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px; font-weight: 300;
  color: rgba(255,255,255,0.06); margin-bottom: auto;
}
.rl-cuts .rl-cuts-pricing__image-tag {
  font-family: 'Inter', sans-serif;
  display: inline-block; background: var(--rl-gold); color: var(--rl-green);
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; padding: 8px 18px; width: fit-content;
}
.rl-cuts .rl-cuts-pricing__content {
  background: var(--rl-cream);
  padding: 72px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.rl-cuts .rl-cuts-pricing__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 18px;
}
.rl-cuts .rl-cuts-pricing__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(38px, 4vw, 58px) !important; font-weight: 300;
  color: var(--rl-green); line-height: 1.05; margin-bottom: 32px;
}
.rl-cuts .rl-cuts-pricing__title em { font-style: italic; color: var(--rl-gold); }
.rl-cuts .rl-cuts-pricing__category {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--rl-gold); margin: 20px 0 12px;
}
.rl-cuts .rl-cuts-pricing__rows { border-top: 1px solid rgba(37,41,30,0.12); }
.rl-cuts .rl-cuts-pricing__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid rgba(37,41,30,0.06); gap: 16px;
}
.rl-cuts .rl-cuts-pricing__row:last-child { border-bottom: none; }
.rl-cuts .rl-cuts-pricing__name { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 300; color: var(--rl-text); }
.rl-cuts .rl-cuts-pricing__val { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500; color: var(--rl-green); white-space: nowrap; }
.rl-cuts .rl-cuts-pricing__note {
  background: rgba(184,151,62,0.08); border-left: 2px solid var(--rl-gold);
  padding: 14px 18px; margin-top: 28px;
}
.rl-cuts .rl-cuts-pricing__note p { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 300; color: var(--rl-text-light); font-style: italic; line-height: 1.7; margin: 0; }
.rl-cuts .rl-cuts-pricing__cta {
  font-family: 'Inter', sans-serif;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--rl-green); text-decoration: none;
  border-bottom: 1px solid var(--rl-gold); padding-bottom: 4px;
  width: fit-content; margin-top: 28px; transition: color 0.3s;
}
.rl-cuts .rl-cuts-pricing__cta:hover { color: var(--rl-gold); }
.rl-cuts .rl-cuts-pricing__cta::after { content: '→'; }

/* FAQ */
.rl-cuts .rl-cuts-faq {
  background: var(--rl-green); padding: 100px;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
}
.rl-cuts .rl-cuts-faq__left {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 18px;
}
.rl-cuts .rl-cuts-faq__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 18px;
}
.rl-cuts .rl-cuts-faq__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(40px, 4.5vw, 64px) !important; font-weight: 300;
  color: var(--rl-white); line-height: 1.05; margin-bottom: 20px;
}
.rl-cuts .rl-cuts-faq__title em { font-style: italic; color: var(--rl-gold-light); }
.rl-cuts .rl-cuts-faq__desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.55); line-height: 1.8;
}
.rl-cuts .rl-cuts-faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); overflow: hidden; }
.rl-cuts .rl-cuts-faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.rl-cuts .rl-cuts-faq-item__q {
  padding: 22px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.rl-cuts .rl-cuts-faq-item__q-text {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 24px; font-weight: 400; color: var(--rl-white); line-height: 1.3;
}
.rl-cuts .rl-cuts-faq-item__q-icon {
  font-size: 18px; color: var(--rl-gold); flex-shrink: 0; transition: transform 0.3s;
}
.rl-cuts .rl-cuts-faq-item.open .rl-cuts-faq-item__q-icon { transform: rotate(45deg); }
.rl-cuts .rl-cuts-faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.rl-cuts .rl-cuts-faq-item.open .rl-cuts-faq-item__a { max-height: 300px; padding-bottom: 22px; }
.rl-cuts .rl-cuts-faq-item__a p { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.8; margin: 0; }

/* BOOKING BANNER */
.rl-cuts .rl-cuts-booking-banner {
  background: var(--rl-gold); padding: 72px 100px;
  display: flex; justify-content: space-between; align-items: center; gap: 40px;
}
.rl-cuts .rl-cuts-booking-banner__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-green); margin-bottom: 12px;
}
.rl-cuts .rl-cuts-booking-banner__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(36px, 4vw, 52px) !important; font-weight: 300;
  color: var(--rl-green); line-height: 1.1;
}
.rl-cuts .rl-cuts-booking-banner__title em { font-style: italic; }
.rl-cuts .rl-cuts-booking-banner__btn {
  font-family: 'Inter', sans-serif;
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--rl-green); color: var(--rl-white);
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none;
  padding: 22px 48px; white-space: nowrap; transition: background 0.3s;
}
.rl-cuts .rl-cuts-booking-banner__btn:hover { background: #1a1d16; }
.rl-cuts .rl-cuts-booking-banner__btn::after { content: '→'; font-size: 14px; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .rl-cuts .rl-cuts-hero__content { padding: 0 48px 60px; }
  .rl-cuts .rl-cuts-intro { padding: 80px 48px; gap: 48px; }
  .rl-cuts .rl-cuts-services { padding: 80px 48px; }
  .rl-cuts .rl-cuts-sassoon__content { padding: 60px 48px; }
  .rl-cuts .rl-cuts-gallery { padding: 80px 48px; }
  .rl-cuts .rl-cuts-process { padding: 80px 48px; }
  .rl-cuts .rl-cuts-pricing__content { padding: 60px 48px; }
  .rl-cuts .rl-cuts-pricing__image-overlay { padding: 40px 48px; }
  .rl-cuts .rl-cuts-faq { padding: 80px 48px; gap: 48px; }
  .rl-cuts .rl-cuts-booking-banner { padding: 56px 48px; }
}
@media (max-width: 900px) {
  .rl-cuts .rl-cuts-intro { grid-template-columns: 1fr; }
  .rl-cuts .rl-cuts-services__grid { grid-template-columns: 1fr; }
  .rl-cuts .rl-cuts-sassoon { grid-template-columns: 1fr; }
  .rl-cuts .rl-cuts-sassoon__image { height: 300px; }
  .rl-cuts .rl-cuts-gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .rl-cuts .rl-cuts-gallery__item--tall { grid-row: span 1; }
  .rl-cuts .rl-cuts-process__steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .rl-cuts .rl-cuts-process__steps::before { display: none; }
  .rl-cuts .rl-cuts-pricing { grid-template-columns: 1fr; }
  .rl-cuts .rl-cuts-pricing__image { min-height: 300px; }
  .rl-cuts .rl-cuts-faq { grid-template-columns: 1fr; }
  .rl-cuts .rl-cuts-gallery__header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .rl-cuts .rl-cuts-booking-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .rl-cuts .rl-cuts-hero { max-height: 480px; }
  .rl-cuts .rl-cuts-hero__content { padding: 0 28px 48px; }
  .rl-cuts .rl-cuts-intro { padding: 60px 28px; }
  .rl-cuts .rl-cuts-services { padding: 60px 28px; }
  .rl-cuts .rl-cuts-svc-card { padding: 40px 28px; }
  .rl-cuts .rl-cuts-sassoon__content { padding: 48px 28px; }
  .rl-cuts .rl-cuts-gallery { padding: 60px 28px; }
  .rl-cuts .rl-cuts-gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .rl-cuts .rl-cuts-process { padding: 60px 28px; }
  .rl-cuts .rl-cuts-process__steps { grid-template-columns: 1fr; }
  .rl-cuts .rl-cuts-pricing__content { padding: 48px 28px; }
  .rl-cuts .rl-cuts-faq { padding: 60px 28px; }
  .rl-cuts .rl-cuts-booking-banner { padding: 48px 28px; }
}

/* ══════════════════════════════
   STYLING PAGE STYLES (ENHANCED SPECIFICITY)
══════════════════════════════ */

/* HERO */
.rl-styling .rl-styling-hero {
  height: 75vh; max-height: 640px;
  position: relative; overflow: hidden; background: var(--rl-green);
}
.rl-styling .rl-styling-hero__bg { position: absolute; inset: 0; }
.rl-styling .rl-styling-hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4) saturate(0.8); }
.rl-styling .rl-styling-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--rl-green) 0%, rgba(37,41,30,0.3) 50%, rgba(37,41,30,0.6) 100%);
}
.rl-styling .rl-styling-hero__content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 100px 80px; max-width: 800px;
}
.rl-styling .rl-styling-hero__breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px;
}
.rl-styling .rl-styling-hero__breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.3s; }
.rl-styling .rl-styling-hero__breadcrumb a:hover { color: var(--rl-gold); }
.rl-styling .rl-styling-hero__breadcrumb span { color: var(--rl-gold); }
.rl-styling .rl-styling-hero__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(56px, 7vw, 100px) !important; font-weight: 300;
  line-height: 0.95; color: var(--rl-white); margin-bottom: 32px;
}
.rl-styling .rl-styling-hero__title em { font-style: italic; color: var(--rl-gold-light); }
.rl-styling .rl-styling-hero__desc {
  font-family: 'Inter', sans-serif;
  font-size: 17px; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,0.55); max-width: 520px;
}

/* INTRO */
.rl-styling .rl-styling-intro {
  background: var(--rl-cream); padding: 100px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.rl-styling .rl-styling-intro__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 20px;
}
.rl-styling .rl-styling-intro__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(40px, 4.5vw, 64px) !important; font-weight: 300;
  color: var(--rl-green); line-height: 1.05; margin-bottom: 28px;
}
.rl-styling .rl-styling-intro__title em { font-style: italic; color: var(--rl-gold); }
.rl-styling .rl-styling-intro__text {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: var(--rl-text-light); margin-bottom: 20px;
}
.rl-styling .rl-styling-intro__highlight {
  border-left: 2px solid var(--rl-gold); padding: 16px 24px;
  background: rgba(184,151,62,0.06); margin-top: 32px;
}
.rl-styling .rl-styling-intro__highlight p {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 24px; font-weight: 400; font-style: italic;
  color: var(--rl-green); line-height: 1.5; margin: 0;
}
.rl-styling .rl-styling-intro__right { position: relative; }
.rl-styling .rl-styling-intro__img { width: 100%; overflow: hidden; }
.rl-styling .rl-styling-intro__img img { width: 100%; display: block; }
.rl-styling .rl-styling-intro__img-caption {
  font-family: 'Inter', sans-serif;
  position: absolute; bottom: -1px; right: 0;
  background: var(--rl-green); padding: 16px 24px;
  font-size: 10px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--rl-gold);
}

/* SERVICES */
.rl-styling .rl-styling-services {
  background: var(--rl-green); padding: 100px;
}
.rl-styling .rl-styling-services__header { text-align: center; margin-bottom: 72px; }
.rl-styling .rl-styling-services__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 16px;
}
.rl-styling .rl-styling-services__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(40px, 4.5vw, 64px) !important; font-weight: 300;
  color: var(--rl-white); line-height: 1.05;
}
.rl-styling .rl-styling-services__title em { font-style: italic; color: var(--rl-gold-light); }
.rl-styling .rl-styling-services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.rl-styling .rl-styling-svc-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 56px 44px;
  position: relative; overflow: hidden;
  transition: background 0.4s, transform 0.4s;
}
.rl-styling .rl-styling-svc-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
}
.rl-styling .rl-styling-svc-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--rl-gold), var(--rl-gold-light));
  transform: scaleX(0); transition: transform 0.4s; transform-origin: left;
}
.rl-styling .rl-styling-svc-card:hover::after { transform: scaleX(1); }
.rl-styling .rl-styling-svc-card__num {
  position: absolute; top: -15px; right: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px; font-weight: 300;
  color: rgba(255,255,255,0.03); pointer-events: none;
}
.rl-styling .rl-styling-svc-card__tag {
  font-family: 'Inter', sans-serif;
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--rl-green); background: var(--rl-gold);
  padding: 6px 16px; margin-bottom: 24px;
}
.rl-styling .rl-styling-svc-card__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(32px, 3vw, 44px) !important; font-weight: 300; color: var(--rl-white);
  margin-bottom: 16px; line-height: 1.1;
}
.rl-styling .rl-styling-svc-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.55); line-height: 1.85; margin-bottom: 28px;
}
.rl-styling .rl-styling-svc-card__features { list-style: none; margin: 0; padding: 0; }
.rl-styling .rl-styling-svc-card__features li {
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.7); padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 12px; margin: 0;
}
.rl-styling .rl-styling-svc-card__features li::before {
  content: '✦'; color: var(--rl-gold); font-size: 8px; flex-shrink: 0;
}

/* BRIDAL FEATURE */
.rl-styling .rl-styling-bridal {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 600px;
}
.rl-styling .rl-styling-bridal__image {
  position: relative; overflow: hidden; background: var(--rl-green);
}
.rl-styling .rl-styling-bridal__image img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.55;
  transition: all 0.6s;
}
.rl-styling .rl-styling-bridal:hover .rl-styling-bridal__image img { opacity: 0.7; transform: scale(1.03); }
.rl-styling .rl-styling-bridal__image-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 60px;
}
.rl-styling .rl-styling-bridal__image-tag {
  font-family: 'Inter', sans-serif;
  display: inline-block; background: var(--rl-gold); color: var(--rl-green);
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; padding: 8px 18px; width: fit-content;
}
.rl-styling .rl-styling-bridal__content {
  background: var(--rl-cream-dark); padding: 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.rl-styling .rl-styling-bridal__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 20px;
}
.rl-styling .rl-styling-bridal__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(40px, 4.5vw, 64px) !important; font-weight: 300;
  color: var(--rl-green); line-height: 1.05; margin-bottom: 24px;
}
.rl-styling .rl-styling-bridal__title em { font-style: italic; color: var(--rl-gold); }
.rl-styling .rl-styling-bridal__desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 300; line-height: 1.9;
  color: var(--rl-text-light); margin-bottom: 36px;
}
.rl-styling .rl-styling-bridal__timeline { border-top: 1px solid rgba(37,41,30,0.1); }
.rl-styling .rl-styling-bridal__step {
  padding: 22px 0; border-bottom: 1px solid rgba(37,41,30,0.08);
  display: grid; grid-template-columns: 80px 1fr; gap: 16px; align-items: start;
}
.rl-styling .rl-styling-bridal__step-when {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--rl-gold); padding-top: 4px;
}
.rl-styling .rl-styling-bridal__step-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 26px; font-weight: 400; color: var(--rl-green); margin-bottom: 6px;
}
.rl-styling .rl-styling-bridal__step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 300; color: var(--rl-text-light); line-height: 1.7;
}

/* GALLERY */
.rl-styling .rl-styling-gallery {
  background: var(--rl-cream); padding: 100px;
}
.rl-styling .rl-styling-gallery__header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 56px;
}
.rl-styling .rl-styling-gallery__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 16px;
}
.rl-styling .rl-styling-gallery__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(40px, 4.5vw, 64px) !important; font-weight: 300;
  color: var(--rl-green); line-height: 1.05;
}
.rl-styling .rl-styling-gallery__title em { font-style: italic; color: var(--rl-gold); }
.rl-styling .rl-styling-gallery__link {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--rl-green);
  text-decoration: none; border-bottom: 1px solid var(--rl-gold);
  padding-bottom: 4px; transition: color 0.3s; white-space: nowrap;
}
.rl-styling .rl-styling-gallery__link:hover { color: var(--rl-gold); }
.rl-styling .rl-styling-gallery__link::after { content: ' →'; }
.rl-styling .rl-styling-gallery__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px; gap: 6px;
}
.rl-styling .rl-styling-gallery__item {
  position: relative; overflow: hidden; cursor: pointer;
}
.rl-styling .rl-styling-gallery__item--wide { grid-column: span 2; }
.rl-styling .rl-styling-gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0,0.25,1);
}
.rl-styling .rl-styling-gallery__item:hover img { transform: scale(1.08); }
.rl-styling .rl-styling-gallery__item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(37,41,30,0.85) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: flex-end; padding: 24px;
}
.rl-styling .rl-styling-gallery__item:hover .rl-styling-gallery__item-overlay { opacity: 1; }
.rl-styling .rl-styling-gallery__item-label {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 24px; font-weight: 300; color: var(--rl-white);
}

/* PROCESS */
.rl-styling .rl-styling-process {
  background: var(--rl-white); padding: 100px;
}
.rl-styling .rl-styling-process__header { text-align: center; margin-bottom: 72px; }
.rl-styling .rl-styling-process__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 16px;
}
.rl-styling .rl-styling-process__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(40px, 4.5vw, 64px) !important; font-weight: 300;
  color: var(--rl-green); line-height: 1.05;
}
.rl-styling .rl-styling-process__title em { font-style: italic; color: var(--rl-gold); }
.rl-styling .rl-styling-process__steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.rl-styling .rl-styling-process__steps::before {
  content: ''; position: absolute; top: 32px;
  left: 80px; right: 80px; height: 1px;
  background: rgba(184,151,62,0.25);
}
.rl-styling .rl-styling-process-step { text-align: center; padding: 0 28px; position: relative; }
.rl-styling .rl-styling-process-step__dot {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid var(--rl-gold); background: var(--rl-white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; position: relative; z-index: 2;
  transition: all 0.3s;
}
.rl-styling .rl-styling-process-step:hover .rl-styling-process-step__dot { background: var(--rl-green); border-color: var(--rl-green); }
.rl-styling .rl-styling-process-step__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300; color: var(--rl-gold); transition: color 0.3s;
}
.rl-styling .rl-styling-process-step:hover .rl-styling-process-step__num { color: var(--rl-gold-light); }
.rl-styling .rl-styling-process-step__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 26px; font-weight: 400; color: var(--rl-green); margin-bottom: 12px;
}
.rl-styling .rl-styling-process-step__desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 300; color: var(--rl-text-light); line-height: 1.7;
}

/* PRICING */
.rl-styling .rl-styling-pricing {
  display: grid; grid-template-columns: 1fr 1fr;
}
.rl-styling .rl-styling-pricing__image {
  position: relative; overflow: hidden; background: var(--rl-green); min-height: 460px;
}
.rl-styling .rl-styling-pricing__image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.rl-styling .rl-styling-pricing__image-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 60px;
}
.rl-styling .rl-styling-pricing__image-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px; font-weight: 300;
  color: rgba(255,255,255,0.06); margin-bottom: auto;
}
.rl-styling .rl-styling-pricing__image-tag {
  font-family: 'Inter', sans-serif;
  display: inline-block; background: var(--rl-gold); color: var(--rl-green);
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; padding: 8px 18px; width: fit-content;
}
.rl-styling .rl-styling-pricing__content {
  background: var(--rl-cream); padding: 72px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.rl-styling .rl-styling-pricing__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 18px;
}
.rl-styling .rl-styling-pricing__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(38px, 4vw, 58px) !important; font-weight: 300;
  color: var(--rl-green); line-height: 1.05; margin-bottom: 32px;
}
.rl-styling .rl-styling-pricing__title em { font-style: italic; color: var(--rl-gold); }
.rl-styling .rl-styling-pricing__rows { border-top: 1px solid rgba(37,41,30,0.12); }
.rl-styling .rl-styling-pricing__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid rgba(37,41,30,0.06); gap: 16px;
}
.rl-styling .rl-styling-pricing__row:last-child { border-bottom: none; }
.rl-styling .rl-styling-pricing__name { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 300; color: var(--rl-text); }
.rl-styling .rl-styling-pricing__val { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500; color: var(--rl-green); white-space: nowrap; }
.rl-styling .rl-styling-pricing__note {
  background: rgba(184,151,62,0.08); border-left: 2px solid var(--rl-gold);
  padding: 14px 18px; margin-top: 28px;
}
.rl-styling .rl-styling-pricing__note p { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 300; color: var(--rl-text-light); font-style: italic; line-height: 1.7; margin: 0; }
.rl-styling .rl-styling-pricing__cta {
  font-family: 'Inter', sans-serif;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--rl-green); text-decoration: none;
  border-bottom: 1px solid var(--rl-gold); padding-bottom: 4px;
  width: fit-content; margin-top: 28px; transition: color 0.3s;
}
.rl-styling .rl-styling-pricing__cta:hover { color: var(--rl-gold); }
.rl-styling .rl-styling-pricing__cta::after { content: '→'; }

/* FAQ */
.rl-styling .rl-styling-faq {
  background: var(--rl-green); padding: 100px;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start;
}
.rl-styling .rl-styling-faq__left {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 18px;
}
.rl-styling .rl-styling-faq__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 18px;
}
.rl-styling .rl-styling-faq__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(40px, 4.5vw, 64px) !important; font-weight: 300;
  color: var(--rl-white); line-height: 1.05; margin-bottom: 20px;
}
.rl-styling .rl-styling-faq__title em { font-style: italic; color: var(--rl-gold-light); }
.rl-styling .rl-styling-faq__desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.8;
}
.rl-styling .rl-styling-faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); overflow: hidden; }
.rl-styling .rl-styling-faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.rl-styling .rl-styling-faq-item__q {
  padding: 22px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.rl-styling .rl-styling-faq-item__q-text {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 24px; font-weight: 400; color: var(--rl-white); line-height: 1.3;
}
.rl-styling .rl-styling-faq-item__q-icon {
  font-size: 18px; color: var(--rl-gold); flex-shrink: 0; transition: transform 0.3s;
}
.rl-styling .rl-styling-faq-item.open .rl-styling-faq-item__q-icon { transform: rotate(45deg); }
.rl-styling .rl-styling-faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.rl-styling .rl-styling-faq-item.open .rl-styling-faq-item__a { max-height: 300px; padding-bottom: 22px; }
.rl-styling .rl-styling-faq-item__a p { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.8; margin: 0; }

/* BOOKING BANNER */
.rl-styling .rl-styling-booking-banner {
  background: var(--rl-gold); padding: 72px 100px;
  display: flex; justify-content: space-between; align-items: center; gap: 40px;
}
.rl-styling .rl-styling-booking-banner__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-green); margin-bottom: 12px;
}
.rl-styling .rl-styling-booking-banner__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(36px, 4vw, 52px) !important; font-weight: 300;
  color: var(--rl-green); line-height: 1.1;
}
.rl-styling .rl-styling-booking-banner__title em { font-style: italic; }
.rl-styling .rl-styling-booking-banner__btn {
  font-family: 'Inter', sans-serif;
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--rl-green); color: var(--rl-white);
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none;
  padding: 22px 48px; white-space: nowrap; transition: background 0.3s;
}
.rl-styling .rl-styling-booking-banner__btn:hover { background: #1a1d16; }
.rl-styling .rl-styling-booking-banner__btn::after { content: '→'; font-size: 14px; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .rl-styling .rl-styling-hero__content { padding: 0 48px 60px; }
  .rl-styling .rl-styling-intro { padding: 80px 48px; gap: 48px; }
  .rl-styling .rl-styling-services { padding: 80px 48px; }
  .rl-styling .rl-styling-bridal__content { padding: 60px 48px; }
  .rl-styling .rl-styling-bridal__image-overlay { padding: 40px 48px; }
  .rl-styling .rl-styling-gallery { padding: 80px 48px; }
  .rl-styling .rl-styling-process { padding: 80px 48px; }
  .rl-styling .rl-styling-pricing__content { padding: 60px 48px; }
  .rl-styling .rl-styling-pricing__image-overlay { padding: 40px 48px; }
  .rl-styling .rl-styling-faq { padding: 80px 48px; gap: 48px; }
  .rl-styling .rl-styling-booking-banner { padding: 56px 48px; }
}
@media (max-width: 900px) {
  .rl-styling .rl-styling-intro { grid-template-columns: 1fr; }
  .rl-styling .rl-styling-services__grid { grid-template-columns: 1fr; }
  .rl-styling .rl-styling-bridal { grid-template-columns: 1fr; }
  .rl-styling .rl-styling-bridal__image { height: 300px; }
  .rl-styling .rl-styling-gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .rl-styling .rl-styling-gallery__item--wide { grid-column: span 2; }
  .rl-styling .rl-styling-process__steps { grid-template-columns: 1fr; gap: 40px; }
  .rl-styling .rl-styling-process__steps::before { display: none; }
  .rl-styling .rl-styling-pricing { grid-template-columns: 1fr; }
  .rl-styling .rl-styling-pricing__image { min-height: 280px; }
  .rl-styling .rl-styling-faq { grid-template-columns: 1fr; }
  .rl-styling .rl-styling-gallery__header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .rl-styling .rl-styling-booking-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .rl-styling .rl-styling-hero { max-height: 480px; }
  .rl-styling .rl-styling-hero__content { padding: 0 28px 48px; }
  .rl-styling .rl-styling-intro { padding: 60px 28px; }
  .rl-styling .rl-styling-services { padding: 60px 28px; }
  .rl-styling .rl-styling-svc-card { padding: 40px 28px; }
  .rl-styling .rl-styling-bridal__content { padding: 48px 28px; }
  .rl-styling .rl-styling-gallery { padding: 60px 28px; }
  .rl-styling .rl-styling-gallery__grid { grid-template-columns: 1fr; }
  .rl-styling .rl-styling-gallery__item--wide { grid-column: span 1; }
  .rl-styling .rl-styling-process { padding: 60px 28px; }
  .rl-styling .rl-styling-pricing__content { padding: 48px 28px; }
  .rl-styling .rl-styling-faq { padding: 60px 28px; }
  .rl-styling .rl-styling-booking-banner { padding: 48px 28px; }
}


/* ══════════════════════════════
   PRICING PAGE STYLES (ENHANCED SPECIFICITY)
══════════════════════════════ */

/* HERO */
.rl-pricing .rl-pricing-hero {
  height: 100vh; max-height: 700px;
  background: var(--rl-green);
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden; position: relative;
}
.rl-pricing .rl-pricing-hero__left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 80px 80px 100px; position: relative; z-index: 2;
}
.rl-pricing .rl-pricing-hero__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 500; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 28px;
}
.rl-pricing .rl-pricing-hero__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(56px, 6vw, 88px) !important; font-weight: 300;
  line-height: 1.0; color: var(--rl-white); margin-bottom: 32px;
}
.rl-pricing .rl-pricing-hero__title em { font-style: italic; color: var(--rl-gold-light); display: block; }
.rl-pricing .rl-pricing-hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.55); max-width: 360px; margin-bottom: 52px;
}
.rl-pricing .rl-pricing-hero__cta {
  font-family: 'Inter', sans-serif;
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--rl-gold); color: var(--rl-white);
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none;
  padding: 20px 36px; transition: background 0.3s; width: fit-content;
}
.rl-pricing .rl-pricing-hero__cta:hover { background: var(--rl-gold-light); color: var(--rl-white); }
.rl-pricing .rl-pricing-hero__cta::after { content: '→'; font-size: 14px; }
.rl-pricing .rl-pricing-hero__right { position: relative; overflow: hidden; }
.rl-pricing .rl-pricing-hero__right img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  filter: brightness(0.75) saturate(0.9);
}
.rl-pricing .rl-pricing-hero__right::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--rl-green) 0%, transparent 40%); z-index: 1;
}
.rl-pricing .rl-pricing-hero__scroll {
  font-family: 'Inter', sans-serif;
  position: absolute; bottom: 40px; left: 100px;
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,0.4); z-index: 3;
}
.rl-pricing .rl-pricing-hero__scroll::before {
  content: ''; width: 40px; height: 1px; background: var(--rl-gold);
}

/* INTRO STRIP */
.rl-pricing .rl-pricing-intro-strip {
  background: var(--rl-gold); padding: 24px 100px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.rl-pricing .rl-pricing-intro-strip__item { display: flex; align-items: center; gap: 16px; }
.rl-pricing .rl-pricing-intro-strip__num {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 36px; font-weight: 300; color: var(--rl-green); line-height: 1;
}
.rl-pricing .rl-pricing-intro-strip__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--rl-green); line-height: 1.4;
}

/* SERVICE BLOCKS */
.rl-pricing .rl-pricing-service-block {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 640px; overflow: hidden;
}
.rl-pricing .rl-pricing-service-block--reverse { direction: rtl; }
.rl-pricing .rl-pricing-service-block--reverse > * { direction: ltr; }
.rl-pricing .rl-pricing-service-block__image { position: relative; overflow: hidden; }
.rl-pricing .rl-pricing-service-block__image img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease;
}
.rl-pricing .rl-pricing-service-block:hover .rl-pricing-service-block__image img {
  transform: scale(1.04);
}
.rl-pricing .rl-pricing-service-block__image-num {
  position: absolute; top: 32px; left: 32px;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 80px; font-weight: 300; color: rgba(255,255,255,0.15);
  line-height: 1; z-index: 2;
}
.rl-pricing .rl-pricing-service-block__content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px; background: var(--rl-cream);
}
.rl-pricing .rl-pricing-service-block--dark .rl-pricing-service-block__content {
  background: var(--rl-green);
}
.rl-pricing .rl-pricing-service-block__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 18px;
}
.rl-pricing .rl-pricing-service-block__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(38px, 4vw, 58px) !important; font-weight: 300;
  line-height: 1.05; color: var(--rl-green); margin-bottom: 24px;
}
.rl-pricing .rl-pricing-service-block--dark .rl-pricing-service-block__title { color: var(--rl-white); }
.rl-pricing .rl-pricing-service-block__title em { font-style: italic; color: var(--rl-gold); }
.rl-pricing .rl-pricing-service-block__desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: var(--rl-text-light); margin-bottom: 40px; max-width: 460px;
}
.rl-pricing .rl-pricing-service-block--dark .rl-pricing-service-block__desc { color: rgba(255,255,255,0.6); }

/* PRICE ROWS */
.rl-pricing .rl-pricing-service-block__prices {
  border-top: 1px solid rgba(37,41,30,0.15); margin-bottom: 36px;
}
.rl-pricing .rl-pricing-service-block--dark .rl-pricing-service-block__prices {
  border-top-color: rgba(255,255,255,0.1);
}
.rl-pricing .rl-pricing-service-block__price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 0; border-bottom: 1px solid rgba(37,41,30,0.08); gap: 16px;
}
.rl-pricing .rl-pricing-service-block--dark .rl-pricing-service-block__price-row {
  border-bottom-color: rgba(255,255,255,0.06);
}
.rl-pricing .rl-pricing-service-block__price-row:last-child { border-bottom: none; }
.rl-pricing .rl-pricing-service-block__price-name {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 300; color: var(--rl-text);
}
.rl-pricing .rl-pricing-service-block--dark .rl-pricing-service-block__price-name { color: rgba(255,255,255,0.85); }
.rl-pricing .rl-pricing-service-block__price-val {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 500; color: var(--rl-green); white-space: nowrap;
}
.rl-pricing .rl-pricing-service-block--dark .rl-pricing-service-block__price-val { color: var(--rl-gold); }
.rl-pricing .rl-pricing-service-block__category {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--rl-gold); margin: 24px 0 12px;
}
.rl-pricing .rl-pricing-service-block__book {
  font-family: 'Inter', sans-serif;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--rl-green);
  text-decoration: none; border-bottom: 1px solid var(--rl-gold);
  padding-bottom: 4px; transition: color 0.3s; width: fit-content;
}
.rl-pricing .rl-pricing-service-block--dark .rl-pricing-service-block__book { color: var(--rl-white); }
.rl-pricing .rl-pricing-service-block__book:hover { color: var(--rl-gold); }
.rl-pricing .rl-pricing-service-block__book::after { content: '→'; }
.rl-pricing .rl-pricing-service-block__note {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 14px 18px; background: rgba(201,168,76,0.1);
  border-left: 2px solid var(--rl-gold); margin-top: 24px;
}
.rl-pricing .rl-pricing-service-block__note p {
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 300; color: var(--rl-text-light);
  line-height: 1.7; font-style: italic; margin: 0;
}
.rl-pricing .rl-pricing-service-block--dark .rl-pricing-service-block__note p { color: rgba(255,255,255,0.5); }

/* TREATMENTS SECTION */
.rl-pricing .rl-pricing-treatments {
  padding: 120px 100px; background: var(--rl-cream-dark);
}
.rl-pricing .rl-pricing-treatments__header {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px;
}
.rl-pricing .rl-pricing-treatments__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 14px;
}
.rl-pricing .rl-pricing-treatments__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(40px, 4vw, 56px) !important; font-weight: 300;
  color: var(--rl-green); line-height: 1.05;
}
.rl-pricing .rl-pricing-treatments__title em { font-style: italic; color: var(--rl-gold); }
.rl-pricing .rl-pricing-treatments__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.rl-pricing .rl-pricing-treatment-card {
  background: var(--rl-white); padding: 48px 40px; position: relative;
  overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rl-pricing .rl-pricing-treatment-card:hover {
  transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.12); z-index: 2;
}
.rl-pricing .rl-pricing-treatment-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--rl-gold); transform: scaleX(0); transition: transform 0.3s ease; transform-origin: left;
}
.rl-pricing .rl-pricing-treatment-card:hover::before { transform: scaleX(1); }
.rl-pricing .rl-pricing-treatment-card__bg-num {
  position: absolute; bottom: -20px; right: 20px;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 120px; font-weight: 300; color: rgba(37,41,30,0.04); line-height: 1; pointer-events: none;
}
.rl-pricing .rl-pricing-treatment-card__img {
  width: 72px; height: 72px; object-fit: contain; margin-bottom: 28px; display: block;
}
.rl-pricing .rl-pricing-treatment-card__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 32px; font-weight: 400; color: var(--rl-green); margin-bottom: 8px;
}
.rl-pricing .rl-pricing-treatment-card__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 24px;
}
.rl-pricing .rl-pricing-treatment-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: var(--rl-text-light); margin-bottom: 32px;
}
.rl-pricing .rl-pricing-treatment-card__prices { border-top: 1px solid var(--rl-cream-dark); }
.rl-pricing .rl-pricing-treatment-card__price-row {
  display: flex; justify-content: space-between; padding: 12px 0;
  border-bottom: 1px solid rgba(37,41,30,0.06); font-family: 'Inter', sans-serif; font-size: 14px;
}
.rl-pricing .rl-pricing-treatment-card__price-row:last-child { border-bottom: none; }
.rl-pricing .rl-pricing-treatment-card__price-name { font-weight: 300; color: var(--rl-text); }
.rl-pricing .rl-pricing-treatment-card__price-val { font-weight: 500; color: var(--rl-green); }

/* STYLING SECTION */
.rl-pricing .rl-pricing-styling-section {
  background: var(--rl-green); padding: 120px 100px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
}
.rl-pricing .rl-pricing-styling-section__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-gold); margin-bottom: 18px;
}
.rl-pricing .rl-pricing-styling-section__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(44px, 5vw, 68px) !important; font-weight: 300;
  line-height: 1.0; color: var(--rl-white); margin-bottom: 32px;
}
.rl-pricing .rl-pricing-styling-section__title em { font-style: italic; color: var(--rl-gold-light); }
.rl-pricing .rl-pricing-styling-section__desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,0.55); margin-bottom: 48px;
}
.rl-pricing .rl-pricing-styling-price-item {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px;
  padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.rl-pricing .rl-pricing-styling-price-item:last-child { border-bottom: none; }
.rl-pricing .rl-pricing-styling-price-item__num {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 16px; color: var(--rl-gold); font-weight: 300;
}
.rl-pricing .rl-pricing-styling-price-item__name {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.85);
}
.rl-pricing .rl-pricing-styling-price-item__price {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 500; color: var(--rl-gold); white-space: nowrap;
}
.rl-pricing .rl-pricing-styling-section__cta {
  font-family: 'Inter', sans-serif;
  display: inline-flex; align-items: center; gap: 14px;
  background: transparent; color: var(--rl-white);
  font-size: 11px; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none;
  border: 1px solid rgba(201,168,76,0.4); padding: 18px 36px; transition: all 0.3s;
}
.rl-pricing .rl-pricing-styling-section__cta:hover { border-color: var(--rl-gold); background: rgba(201,168,76,0.1); }
.rl-pricing .rl-pricing-styling-section__cta::after { content: '→'; }

/* BOOKING BANNER */
.rl-pricing .rl-pricing-booking-banner {
  background: var(--rl-gold); padding: 80px 100px;
  display: flex; justify-content: space-between; align-items: center; gap: 40px;
}
.rl-pricing .rl-pricing-booking-banner__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rl-green); margin-bottom: 12px;
}
.rl-pricing .rl-pricing-booking-banner__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(36px, 4vw, 52px) !important; font-weight: 300;
  color: var(--rl-green); line-height: 1.1;
}
.rl-pricing .rl-pricing-booking-banner__title em { font-style: italic; }
.rl-pricing .rl-pricing-booking-banner__btn {
  font-family: 'Inter', sans-serif;
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--rl-green); color: var(--rl-white);
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none;
  padding: 22px 48px; white-space: nowrap; transition: background 0.3s;
}
.rl-pricing .rl-pricing-booking-banner__btn:hover { background: #1a1d16; }
.rl-pricing .rl-pricing-booking-banner__btn::after { content: '→'; font-size: 14px; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .rl-pricing .rl-pricing-service-block__content { padding: 60px 48px; }
  .rl-pricing .rl-pricing-treatments { padding: 80px 48px; }
  .rl-pricing .rl-pricing-styling-section { padding: 80px 48px; gap: 60px; }
  .rl-pricing .rl-pricing-booking-banner { padding: 60px 48px; }
  .rl-pricing .rl-pricing-intro-strip { padding: 20px 48px; }
  .rl-pricing .rl-pricing-hero__left { padding: 60px 48px; }
}
@media (max-width: 800px) {
  .rl-pricing .rl-pricing-hero { grid-template-columns: 1fr; height: auto; }
  .rl-pricing .rl-pricing-hero__right { height: 50vw; }
  .rl-pricing .rl-pricing-hero__scroll { left: 48px; }
  .rl-pricing .rl-pricing-service-block { grid-template-columns: 1fr; min-height: auto; }
  .rl-pricing .rl-pricing-service-block--reverse { direction: ltr; }
  .rl-pricing .rl-pricing-service-block__image { height: 56vw; }
  .rl-pricing .rl-pricing-service-block__content { padding: 48px 32px; }
  .rl-pricing .rl-pricing-treatments__grid { grid-template-columns: 1fr; gap: 2px; }
  .rl-pricing .rl-pricing-treatments__header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .rl-pricing .rl-pricing-styling-section { grid-template-columns: 1fr; gap: 48px; }
  .rl-pricing .rl-pricing-booking-banner { flex-direction: column; align-items: flex-start; }
  .rl-pricing .rl-pricing-intro-strip { gap: 24px; }
}

/* Явно задаем базовый шрифт для всего блока (замените Montserrat на Inter, если используете его) */
.rl-home-salon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  font-family: 'Montserrat', sans-serif; 
}

/* Явно задаем элегантный шрифт с засечками для заголовка */
.rl-home-salon__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300; /* Тонкое начертание обязательно */
  color: var(--rl-white);
  line-height: 1.05;
  margin-bottom: 24px;
}

/* Убеждаемся, что курсив в заголовке наследует нужный шрифт */
.rl-home-salon__title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--rl-gold-light);
}

/* Для ярлыков и мелких деталей принудительно ставим гротеск (sans-serif) */
.rl-home-salon__label,
.rl-home-salon__image-tag {
  font-family: 'Montserrat', sans-serif;
}

/* ══ TRANSFORMATION CTA SECTION ══ */

.rl-transformation {
  position: relative;
  width: 100%;
  padding: 140px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* Фон с волосами */
.rl-transformation__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.rl-transformation__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Градиентное затемнение для читаемости */
.rl-transformation__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(37, 41, 30, 0.4) 0%,
    rgba(37, 41, 30, 0.7) 100%
  );
  z-index: 2;
}

/* Контейнер контента */
.rl-transformation__content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Маленький текст над заголовком (Eyebrow) */
.rl-transformation__eyebrow {
  font-family: 'Montserrat', sans-serif; /* Можно заменить на Inter, если используете его везде */
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.rl-transformation__eyebrow::before,
.rl-transformation__eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: rgba(184, 151, 62, 0.5); /* Полупрозрачное золото */
}

/* Заголовок */
.rl-transformation__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--rl-white);
  margin: 0 0 32px 0;
}

.rl-transformation__title em {
  font-style: italic;
  color: var(--rl-gold-light);
}

/* Описание */
.rl-transformation__desc {
  font-family: 'Montserrat', sans-serif; /* Можно заменить на Inter */
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 48px 0;
  max-width: 540px;
}

/* Фирменная кнопка */
.rl-transformation__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--rl-gold);
  color: var(--rl-green);
  font-family: 'Montserrat', sans-serif; /* Можно заменить на Inter */
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 44px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  cursor: pointer;
}

.rl-transformation__btn::after {
  content: '→';
  font-size: 14px;
  transition: transform 0.3s ease;
}

.rl-transformation__btn:hover {
  background: var(--rl-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.rl-transformation__btn:hover::after {
  transform: translateX(4px);
}

/* Адаптив */
@media (max-width: 768px) {
  .rl-transformation {
    padding: 100px 24px;
  }
  .rl-transformation__desc {
    font-size: 15px;
    margin-bottom: 40px;
  }
  .rl-transformation__btn {
    width: 100%;
    justify-content: center;
  }
}