﻿/* ─────────────────────────────────────────────────────────────────────────────
   RR Interiors — Design System Override
   Loaded on index.html only. All rules use !important to win over Bootstrap
   + style.css. Class names and IDs unchanged.

   PALETTE
     --gold      #C8A040   decorative, labels, highlights
     --gold-lt   #E8C96C   text on dark
     --sienna    #9B5B3A   primary action (buttons, selected state)
     --sienna-d  #7A4328   hover / pressed
     --sienna-lt #C4854A   secondary accent
     --dark      #0C0F0A   deep background
     --cream     #F5EDD8   warm white headline text
   ───────────────────────────────────────────────────────────────────────────── */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ HERO ━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Cinematic gradient overlay — dark on left (text legible), opens right (glass card glows) */
.slider-area .hero-overly::before {
    background: linear-gradient(
        105deg,
        rgba(4, 6, 4, 0.92) 0%,
        rgba(4, 6, 4, 0.78) 38%,
        rgba(4, 6, 4, 0.48) 65%,
        rgba(4, 6, 4, 0.22) 100%
    ) !important;
    background-color: transparent !important;
}

/* Kill template's decorative underline ornament */
.slider-area .hero__caption span::before { display: none !important; }

/* ── Badge / eyebrow — Raleway 200 ultra-spaced = luxury editorial ── */
.hero__caption span {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 200 !important;
    letter-spacing: 0.30em !important;
    text-transform: uppercase !important;
    background: transparent !important;
    border: none !important;
    border-left: 2px solid #C8A040 !important;
    border-radius: 0 !important;
    padding: 3px 0 3px 16px !important;
    display: inline-block !important;
    margin-bottom: 28px !important;
    color: #C8A040 !important;
    font-style: normal !important;
    line-height: 1.7 !important;
}

/* ── Display headline — Cormorant 300 ultra-light, cinematic scale ── */
.hero__caption h1 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 5.4rem !important;
    font-weight: 300 !important;
    line-height: 1.04 !important;
    color: #FFFFFF !important;
    text-shadow: 0 2px 60px rgba(0, 0, 0, 0.65) !important;
    letter-spacing: 0.01em !important;
    margin-bottom: 22px !important;
}
/* Italic em — warm gold, italic alone carries the visual contrast */
.hero__caption h1 em {
    font-style: italic !important;
    color: #E8C96C !important;
    font-weight: 300 !important;
    letter-spacing: -0.01em !important;
}

/* ── Sub-headline — Raleway 300, airy ── */
.hero__sub {
    font-family: 'Raleway', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 300 !important;
    letter-spacing: 0.06em !important;
    line-height: 2.0 !important;
    color: rgba(255, 255, 255, 0.70) !important;
    margin-bottom: 40px !important;
}

/* ── Slide CTA buttons (slides 2 & 3) ── */
.rr-hero-cta {
    display: inline-block;
    background: transparent;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.45);
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 16px 42px;
    border-radius: 0;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.rr-hero-cta:hover {
    background: #9B5B3A;
    border-color: #9B5B3A;
    color: #fff !important;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
    .hero__caption h1 { font-size: 4.4rem !important; }
}
@media (max-width: 991px) {
    .hero__caption h1 { font-size: 3.4rem !important; }
    .hero__sub       { font-size: 0.93rem !important; }
}
@media (max-width: 575px) {
    .hero__caption span { font-size: 0.65rem !important; letter-spacing: 0.22em !important; }
    .hero__caption h1   { font-size: 2.6rem !important; }
    .hero__sub          { font-size: 0.88rem !important; line-height: 1.9 !important; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ LEAD CAPTURE CARD ━━━━━━━━━━━━━━━━━ */

.rr-lead-card {
    background: rgba(5, 7, 5, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: none;
    border-top: 2px solid #C8A040;
    border-left: 1px solid rgba(200, 160, 64, 0.15);
    border-radius: 0;
    padding: 28px 26px 22px;
    color: #fff;
    position: relative;
}

/* Short gold rule separating header from body */
.rr-lead-card::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: rgba(200, 160, 64, 0.45);
    margin: 16px 0 22px;
}

/* Card title — Cormorant, weight 400 so it renders on all screens */
.rr-lead-card__title {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 1.7rem !important;
    font-weight: 400 !important;
    font-style: italic !important;
    color: #ffffff !important;
    margin-bottom: 5px !important;
    line-height: 1.15 !important;
    letter-spacing: 0.01em !important;
}

/* Card sub-title */
.rr-lead-card__sub {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.76rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.1em !important;
    color: rgba(255,255,255,0.65) !important;
    margin-bottom: 0 !important;
    text-transform: uppercase !important;
}

/* Inputs — stacked, generous padding, underline only */
.rr-form-row {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
}

.rr-lead-form input[type="text"],
.rr-lead-form input[type="tel"] {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    border-radius: 0;
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-size: 0.92rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    padding: 14px 0;
    outline: none;
    transition: border-color 0.25s;
    box-sizing: border-box;
}
.rr-lead-form input[type="text"] { margin-bottom: 0; }
.rr-lead-form input[type="tel"]  { margin-bottom: 22px; }
.rr-lead-form input::placeholder {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    letter-spacing: 0.04em;
}
.rr-lead-form input:focus { border-bottom-color: #C8A040; }

/* Pills label */
.rr-pills-label {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.62) !important;
    margin-bottom: 12px !important;
}

/* Service selection pills */
.rr-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 24px;
}
.rr-pill { cursor: pointer; margin: 0; }
.rr-pill input[type="radio"] { display: none; }
.rr-pill span {
    display: block;
    padding: 7px 13px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.75);
    transition: border-color 0.18s, color 0.18s;
    white-space: nowrap;
    user-select: none;
    line-height: 1.2;
}
.rr-pill:hover span {
    border-color: rgba(200, 160, 64, 0.5);
    color: #E8C96C;
}
.rr-pill input[type="radio"]:checked + span {
    border-color: #C8A040;
    border-left-width: 2px;
    color: #E8C96C;
    font-weight: 600;
}

/* Submit CTA */
.rr-lead-form button {
    width: 100%;
    background: #9B5B3A;
    color: #fff !important;
    border: none;
    border-radius: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 16px 20px;
    cursor: pointer;
    transition: background 0.28s ease, letter-spacing 0.28s ease, box-shadow 0.28s ease;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    line-height: 1;
    text-decoration: none !important;
    outline: none;
    position: relative;
    overflow: hidden;
}
.rr-lead-form button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #E8C96C;
    transition: width 0.32s ease;
}
.rr-lead-form button:hover {
    background: #7A4328;
    letter-spacing: 0.22em;
    box-shadow: 0 6px 24px rgba(155, 91, 58, 0.4);
}
.rr-lead-form button:hover::after {
    width: 100%;
}
.rr-lead-form button .rr-btn-arrow {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.7;
    transition: transform 0.22s ease, opacity 0.22s ease;
    flex-shrink: 0;
}
.rr-lead-form button:hover .rr-btn-arrow {
    transform: translateX(4px);
    opacity: 1;
}

/* Footer note */
.rr-lead-card__note {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.76rem !important;
    color: rgba(255,255,255,0.52) !important;
    text-align: center !important;
    margin-bottom: 0 !important;
    letter-spacing: 0.05em !important;
}
.rr-lead-card__note a {
    color: rgba(200, 160, 64, 0.6) !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(200, 160, 64, 0.25) !important;
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
}
.rr-lead-card__note a:hover {
    color: #C8A040 !important;
    border-bottom-color: rgba(200, 160, 64, 0.55) !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ CALL NAV BUTTON ━━━━━━━━━━━━━━━━━━ */

.rr-call-btn {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    text-transform: none !important;
    color: #E8C96C !important;
    background: transparent !important;
    border: 1.5px solid rgba(200, 160, 64, 0.5) !important;
    border-radius: 0 !important;
    padding: 12px 26px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease !important;
    white-space: nowrap !important;
}
.rr-call-btn i {
    font-size: 0.85rem !important;
    opacity: 0.85;
}
.rr-call-btn:hover {
    background: rgba(200, 160, 64, 0.1) !important;
    border-color: #C8A040 !important;
    color: #E8C96C !important;
}

/* Light theme */
[data-theme="light"] .sticky-bar .rr-call-btn {
    color: #7A4328 !important;
    border-color: rgba(155, 91, 58, 0.35) !important;
}
[data-theme="light"] .sticky-bar .rr-call-btn:hover {
    background: rgba(155, 91, 58, 0.08) !important;
    border-color: #9B5B3A !important;
    color: #7A4328 !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ SECTION LABELS ━━━━━━━━━━━━━━━━━ */

/* Gold hairline rule above every section eyebrow — Raleway 200 ultra-spaced */
.section-tittle span {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.66rem !important;
    font-weight: 200 !important;
    letter-spacing: 0.30em !important;
    text-transform: uppercase !important;
    color: #C8A040 !important;
    display: inline-block !important;
    padding-top: 12px !important;
    border-top: 1px solid #C8A040 !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ STATS BAND ━━━━━━━━━━━━━━━━━━━ */

.rr-stats-band {
    background: #0C0F0A;
    border-top: 1px solid rgba(200,160,64,0.22);
    border-bottom: 1px solid rgba(200,160,64,0.12);
}

.rr-stat-item {
    padding: 56px 48px 52px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-right: 1px solid rgba(200,160,64,0.1);
    height: 100%;
}
.rr-stat-item:last-child { border-right: none; }

.rr-stat-item--mid {
    border-left: 1px solid rgba(200,160,64,0.1);
    border-right: 1px solid rgba(200,160,64,0.1);
}

.rr-stat-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 5rem;
    font-weight: 300;
    color: #E8C96C;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    display: block;
}
.rr-stat-num sup {
    font-size: 2.4rem;
    vertical-align: super;
    letter-spacing: 0;
    color: inherit;
    text-decoration: none;
}

.rr-stat-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C8A040;
    display: block;
    margin-bottom: 16px;
    border-left: 2px solid #C8A040;
    padding-left: 12px;
}

.rr-stat-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 0.84rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .rr-stat-item,
    .rr-stat-item--mid {
        padding: 40px 28px;
        border-right: none;
        border-left: none;
        border-bottom: 1px solid rgba(200,160,64,0.1);
    }
    .rr-stat-num { font-size: 3.8rem; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━ PROFESSIONAL SERVICES IMAGE ━━━━━━━━━━━━━━━━━ */

.professional-services {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ WHY US SECTION ━━━━━━━━━━━━━━━ */

/* Override template: white card → dark full-width background */
.profession-caption {
    background: #0D0F0D !important;
    position: relative !important;
    z-index: 2 !important;
}
.profession-caption .profession-details {
    background: transparent !important;
    padding: 70px 40px 70px 0 !important;
}
@media (max-width: 991px) {
    .profession-caption .profession-details { padding: 50px 0 !important; }
}

/* Left column — studio story — override template's dark-on-white colours */
.section-tittle.profession-details span {
    color: #C8A040 !important;
    font-size: 0.68rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase !important;
    border-left: 2px solid #C8A040 !important;
    padding-left: 14px !important;
    border-top: none !important;
    padding-top: 0 !important;
}
.profession-details h2 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 2.8rem !important;
    font-weight: 300 !important;
    line-height: 1.15 !important;
    letter-spacing: 0.01em !important;
    margin-bottom: 22px !important;
    color: #ffffff !important;
}
.profession-details p {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 300 !important;
    line-height: 1.9 !important;
    letter-spacing: 0.02em !important;
    color: rgba(255,255,255,0.70) !important;
    margin-bottom: 16px !important;
}

/* "Our Story →" link */
.rr-diff-cta {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C8A040 !important;
    text-decoration: none;
    border-bottom: 1px solid rgba(200,160,64,0.35);
    padding-bottom: 2px;
    margin-top: 10px;
    transition: border-color 0.2s, color 0.2s;
}
.rr-diff-cta:hover {
    color: #E8C96C !important;
    border-bottom-color: #C8A040;
}

/* Right column — differentiator list */
.rr-diff-grid {
    display: flex;
    flex-direction: column;
    padding: 70px 0;
}
@media (max-width: 991px) { .rr-diff-grid { padding: 0 0 50px; } }

.rr-diff-item {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rr-diff-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

/* Large muted number */
.rr-diff-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1;
    color: rgba(200,160,64,0.25);
    min-width: 40px;
    padding-top: 3px;
    flex-shrink: 0;
    letter-spacing: -0.02em;
}

.rr-diff-body h4 {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    color: #F5EDD8 !important;
    margin-bottom: 8px !important;
    line-height: 1.4 !important;
}
.rr-diff-body p {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 400 !important;
    line-height: 1.75 !important;
    letter-spacing: 0.02em !important;
    color: rgba(255,255,255,0.68) !important;
    margin-bottom: 0 !important;
}

/* Responsive */
@media (max-width: 991px) {
    .rr-diff-grid { margin-top: 36px; }
    .profession-details h2 { font-size: 2rem !important; }
}
@media (max-width: 575px) {
    .rr-diff-num { font-size: 1.6rem; min-width: 32px; }
    .rr-diff-body h4 { font-size: 0.88rem !important; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ SERVICES ━━━━━━━━━━━━━━━━━━━━━ */

/* Kill template's absolute-position + hover-slide + text-swap system */
.services-area .single-services.rr-svc-card {
    margin-bottom: 40px !important;
    overflow: visible !important;
}
.services-area .single-services.rr-svc-card .services-img {
    overflow: hidden;
}
.services-area .single-services.rr-svc-card .services-img img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    transition: transform 0.4s ease !important;
    display: block !important;
}
.services-area .single-services.rr-svc-card:hover .services-img img {
    transform: scale(1.05) !important;
}

/* Static caption — always visible, no absolute positioning */
.services-area .single-services.rr-svc-card .services-caption {
    position: static !important;
    transform: none !important;
    background: #ffffff !important;
    padding: 22px 24px 24px !important;
    border-left: 1px solid #ede5d4 !important;
    border-right: 1px solid #ede5d4 !important;
    border-bottom: 1px solid #ede5d4 !important;
    transition: none !important;
}
.services-area .single-services.rr-svc-card:hover .services-caption {
    transform: none !important;
    background: #ffffff !important;
}

/* Always show both paragraphs */
.services-area .single-services.rr-svc-card .services-caption .pera2 {
    display: block !important;
}
.services-area .single-services.rr-svc-card:hover .services-caption .pera1 {
    display: block !important;
}
.services-area .single-services.rr-svc-card:hover .services-caption .pera2 {
    display: block !important;
}

/* Don't invert text on hover */
.services-area .single-services.rr-svc-card:hover .services-caption p {
    color: inherit !important;
}
.services-area .single-services.rr-svc-card:hover .services-caption h3 a {
    color: #9B5B3A !important;
}

/* Gold top-bar on hover */
.single-services.rr-svc-card {
    position: relative;
}
.single-services.rr-svc-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: #C8A040;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: 1;
}
.single-services.rr-svc-card:hover::after { transform: scaleX(1); }

/* Typography */
.services-area .single-services.rr-svc-card .services-caption h3 {
    margin-bottom: 6px !important;
    line-height: 1.3 !important;
}
.services-caption h3 a {
    font-family: 'Raleway', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    transition: color 0.2s !important;
    color: #222222 !important;
}
.services-caption h3 a:hover { color: #9B5B3A !important; }

.services-caption .pera1 {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.68rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.16em !important;
    color: #C8A040 !important;
    margin-bottom: 10px !important;
}
.services-caption .pera2 {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 400 !important;
    line-height: 1.75 !important;
    letter-spacing: 0.02em !important;
    color: #555555 !important;
    margin-bottom: 0 !important;
}
/* Kill template's decorative left-border line on h3 */
.services-area .single-services.rr-svc-card .services-caption h3::before {
    display: none !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ GALLERY ━━━━━━━━━━━━━━━━━━━━━━ */

/* Always-visible bottom label strip — kill template's opacity:0 hide */
.gallery-area .single-gallery .thumb-content-box {
    opacity: 1 !important;
    visibility: visible !important;
    background: linear-gradient(
        to bottom,
        transparent 45%,
        rgba(4, 6, 4, 0.85) 100%
    ) !important;
}

/* Label pinned to bottom-left */
.gallery-area .single-gallery .thumb-content-box .thumb-content {
    bottom: 0 !important;
    padding: 0 24px 22px !important;
    align-items: flex-end !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
}

/* Category span — gold, tiny uppercase */
.gallery-area .single-gallery .thumb-content-box .thumb-content h3 span {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.62rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase !important;
    color: #C8A040 !important;
    display: block !important;
    margin-bottom: 5px !important;
    line-height: 1 !important;
}

/* Project title */
.gallery-area .single-gallery .thumb-content-box .thumb-content h3 {
    font-family: 'Raleway', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    color: #ffffff !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    flex: 1;
}

/* Arrow — hidden, slides in on hover */
.gallery-area .single-gallery .thumb-content-box .thumb-content a {
    opacity: 0 !important;
    transform: translateX(-6px) !important;
    transition: opacity 0.3s, transform 0.3s !important;
    margin-left: 16px !important;
    flex-shrink: 0;
    align-self: flex-end;
    background: #C8A040 !important;
}
.gallery-area .single-gallery:hover .thumb-content-box .thumb-content a {
    opacity: 1 !important;
    transform: translateX(0) !important;
}
.gallery-area .single-gallery .thumb-content-box .thumb-content a:hover {
    background: #ffffff !important;
    color: #C8A040 !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ GALLERY HEADER ━━━━━━━━━━━━━━━━━ */

.rr-gallery-header {
    padding: 80px 0 60px;
}
.gallery-area .section-tittle span {
    color: #C8A040 !important;
    border-top-color: #C8A040 !important;
}
.gallery-area .section-tittle h2 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 2.6rem !important;
    font-weight: 400 !important;
    color: #ffffff !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ TEAM ━━━━━━━━━━━━━━━━━━━━━━━ */

.rr-team-placeholder {
    background: #f5ede0;
    border: 2px dashed rgba(200, 160, 64, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    margin-bottom: 0;
}
.rr-team-ph-inner {
    text-align: center;
    padding: 20px;
}
.rr-team-ph-inner i {
    font-size: 2.5rem;
    color: rgba(200, 160, 64, 0.45);
    display: block;
    margin-bottom: 14px;
}
.rr-team-ph-inner p {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: rgba(0, 0, 0, 0.52) !important;
    margin-bottom: 0 !important;
    line-height: 1.7 !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ TESTIMONIALS ━━━━━━━━━━━━━━━━━━━━ */

/* Section title on dark bg */
.testimonial-area .section-tittle span {
    color: #C8A040 !important;
    border-top-color: #C8A040 !important;
}
.testimonial-area .section-tittle h2 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 2.6rem !important;
    font-weight: 400 !important;
    color: #ffffff !important;
}

/* Testimonial card — dark glass */
.rr-testi-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-top: 2px solid #C8A040;
    padding: 30px 26px 24px;
    margin-bottom: 30px;
    position: relative;
}
.rr-testi-card::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(200, 160, 64, 0.18);
    position: absolute;
    top: 14px;
    left: 18px;
    pointer-events: none;
}
.rr-testi-card .rr-stars {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}
.rr-testi-card p {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 1.1rem !important;
    font-weight: 400 !important;
    font-style: italic !important;
    line-height: 1.75 !important;
    color: rgba(245, 237, 216, 0.82) !important;
    margin-bottom: 22px !important;
    position: relative;
    z-index: 1;
}
.rr-testi-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 14px;
}
.rr-testi-footer strong {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #F5EDD8;
    display: block;
    margin-bottom: 4px;
}
.rr-testi-footer span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.58);
    text-transform: uppercase;
}

.rr-stars {
    color: #C8A040;
    font-size: 0.85rem;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 18px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ CTA BAND ━━━━━━━━━━━━━━━━━━━━ */

.wantToWork-caption2 h2 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 2.6rem !important;
    font-weight: 300 !important;
    font-style: italic !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ BLOG / PROJECT CARDS ━━━━━━━━━━━━━ */

.blog-cap h3 a {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.03em !important;
    line-height: 1.5 !important;
    transition: color 0.2s !important;
}
.blog-cap h3 a:hover { color: #9B5B3A !important; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ WHATSAPP FLOAT ━━━━━━━━━━━━━━━━━━━ */

#rr-whatsapp {
    position: fixed;
    bottom: 80px;
    right: 22px;
    width: 52px;
    height: 52px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
#rr-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
#rr-whatsapp i { color: #fff; font-size: 1.55rem; }
#rr-whatsapp::after {
    content: "Chat with us";
    position: absolute;
    right: 60px;
    background: rgba(10,10,8,0.92);
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 2px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
#rr-whatsapp:hover::after { opacity: 1; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ FOOTER ━━━━━━━━━━━━━━━━━━━━━ */

/* Top border — gold tint instead of dark blue */
.footer-area .footer-top {
    border-bottom-color: rgba(200, 160, 64, 0.12) !important;
}

/* Column heading — small gold eyebrow label */
.footer-area .footer-tittle h4 {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.65) !important;
    margin-bottom: 26px !important;
}

/* Nav links */
.footer-area .footer-tittle ul li {
    margin-bottom: 10px !important;
}
.footer-area .footer-tittle ul li a {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.03em !important;
    color: rgba(255, 255, 255, 0.68) !important;
    transition: color 0.2s, padding-left 0.2s !important;
}
.footer-area .footer-tittle ul li a:hover {
    color: #C8A040 !important;
    padding-left: 5px !important;
}

/* Tagline blurb */
.footer-area .footer-pera .info1 {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.84rem !important;
    font-weight: 400 !important;
    line-height: 1.85 !important;
    letter-spacing: 0.02em !important;
    color: rgba(255, 255, 255, 0.62) !important;
    margin-bottom: 22px !important;
}

/* Phone number */
.footer-area .footer-number h4 {
    font-family: 'Raleway', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    color: #E8C96C !important;
    margin-bottom: 6px !important;
}
.footer-area .footer-number p {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.82rem !important;
    color: rgba(255, 255, 255, 0.55) !important;
    margin-bottom: 24px !important;
}

/* Footer cap — label + value */
.footer-area .footer-cap span {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.6rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase !important;
    color: #C8A040 !important;
    margin-bottom: 6px !important;
}
.footer-area .footer-cap p {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.84rem !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.65) !important;
    line-height: 1.75 !important;
}
.footer-area .footer-cap p a {
    color: rgba(255, 255, 255, 0.65) !important;
    transition: color 0.2s !important;
}
.footer-area .footer-cap p a:hover { color: #C8A040 !important; }

/* Our Work mini-grid — square crops with hover */
.footer-area .insta-feed li img {
    object-fit: cover;
    aspect-ratio: 1 / 1;
    width: 100%;
    display: block;
    transition: opacity 0.25s;
}
.footer-area .insta-feed li a:hover img { opacity: 0.65; }

/* Social icons */
.footer-area .footer-social span {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.62rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.55) !important;
}
.footer-area .footer-social a {
    color: rgba(255, 255, 255, 0.58) !important;
    font-size: 1rem !important;
    transition: color 0.2s !important;
}
.footer-area .footer-social a:hover { color: #C8A040 !important; }

/* Copyright bar */
.footer-area .footer-bottom .footer-copy-right p {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.04em !important;
    color: rgba(255, 255, 255, 0.45) !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
}
.footer-area .footer-bottom .footer-copy-right p a {
    color: rgba(200, 160, 64, 0.68) !important;
    transition: color 0.2s !important;
}
.footer-area .footer-bottom .footer-copy-right p a:hover { color: #C8A040 !important; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ HERO SLIDER DOTS ━━━━━━━━━━━━━━━━━ */
/* Replace numbered buttons with gold circular dots */
.dot-style .slick-dots {
    bottom: 36px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}
.dot-style .slick-dots li {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
}
.dot-style .slick-dots li button {
    width: 8px !important;
    height: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    color: transparent !important;
    background: rgba(255, 255, 255, 0.45) !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    transition: background 0.3s ease, transform 0.3s ease !important;
    text-indent: -9999px !important;
    overflow: hidden !important;
}
.dot-style .slick-dots li button::before {
    display: none !important;
}
.dot-style .slick-dots li.slick-active button {
    background: #C8A040 !important;
    transform: scale(1.5) !important;
    text-decoration: none !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ GLOBAL HEADING SYSTEM ━━━━━━━━━━━ */
/* All H2 section titles — Cormorant 300, editorial weight */
.section-tittle h2,
.services-caption h2,
.testimonial-area .section-tittle h2,
.gallery-area .section-tittle h2,
.team-area .section-tittle h2,
.contact-section .section-tittle h2 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 300 !important;
    letter-spacing: 0.02em !important;
    line-height: 1.15 !important;
}
/* Body text across the site — Raleway 300, refined */
body,
p,
.services-caption p,
.team-info p,
.testimonial-caption p {
    font-family: 'Raleway', sans-serif !important;
    font-weight: 300 !important;
    letter-spacing: 0.03em !important;
}
