/* ============================================================
   DECAURA – GLOBAL STYLES
   Headings : Playfair Display
   Body/UI  : Bricolage Grotesque
   ============================================================ */

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
    --ink-black:       #1F1F1F;
    --porcelain-white: #F4F1EC;
    --arch-beige:      #D8D0C5;
    --warm-graphite:   #5F5A54;
    --brushed-bronze:  #B8965A;
    --shadow-grey:     #E7E2DB;
    --pure-white:      #FFFFFF;
    --deep-contrast:   #121212;

    --serif:  'Playfair Display', Georgia, serif;
    --sans:   'Bricolage Grotesque', system-ui, sans-serif;

    --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --max-width:   1240px;
    --gutter:      clamp(24px, 5vw, 80px);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── BASE ───────────────────────────────────────────────────── */
body {
    font-family: var(--sans);
    background: var(--porcelain-white);
    color: var(--ink-black);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── LAYOUT HELPERS ─────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.container-narrow {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.centered { text-align: center; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.15;
    color: var(--ink-black);
}
.section-label {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-graphite);
    display: block;
    margin-bottom: 14px;
}
.section-header {
    margin-bottom: 52px;
}
.section-header h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    margin-bottom: 12px;
}

/* ── Shared Ruled Heading (for Featured Work, Featured In, Services, Why) ── */
.featured-work h2,
.featured-in h2,
.services-section h2,
.why-section h2,
.founder-section .section-header h2,
.philosophy-section .section-header h2,
.foundation-section .section-header h2,
.process-section .section-header h2,
.faq-section .section-header h2 {
    display: flex;
    align-items: center;
    gap: 32px;
    width: 100%;
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 600; /* Bold */
    text-transform: none; /* Title Case */
    letter-spacing: -0.01em; /* Minimal spacing */
}
.featured-work h2::before,
.featured-work h2::after,
.featured-in h2::before,
.featured-in h2::after,
.services-section h2::before,
.services-section h2::after,
.why-section h2::before,
.why-section h2::after,
.founder-section .section-header h2::before,
.founder-section .section-header h2::after,
.philosophy-section .section-header h2::before,
.philosophy-section .section-header h2::after,
.foundation-section .section-header h2::before,
.foundation-section .section-header h2::after,
.process-section .section-header h2::before,
.process-section .section-header h2::after,
.faq-section .section-header h2::before,
.faq-section .section-header h2::after {
    content: "";
    height: 1px;
    background: var(--arch-beige);
    flex: 1;
}


/* ── CTA SECTION ─────────────────────────────────────────────── */
.cta-section {
    background: #D8D0C5; /* Solid tan from image */
    padding: 140px 0;
    text-align: center;
}
.cta-section h2 {
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 64px);
    margin-bottom: 24px;
    color: var(--ink-black);
    font-weight: 400;
    letter-spacing: -1.6px;
}
.cta-section p {
    font-family: var(--sans);
    font-size: clamp(14px, 1.1vw, 20px);
    color: var(--warm-graphite);
    max-width: 600px;
    margin: 0 auto 56px;
    line-height: 1.7;
    font-weight: 300;
}
.btn-cta {
    background: #CDB68D;
    color: var(--pure-white);
    padding: 20px 48px;
    font-size: 13px;
    font-weight: 500;
    text-transform: none; /* Matches image "Begin Your Project" */
    letter-spacing: 0.05em;
    display: inline-block;
    transition: background 0.3s ease;
}
.btn-cta:hover {
    background: #ba9e6b;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer-full {
    background: #F9F8F6;
    padding: 120px 0 0; /* Reduced bottom padding to 0 */
}
.footer-full-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1.2fr 1fr;
    gap: 60px; /* Reduced from 100px */
}
.ff-brand {
    padding-right: 40px;
}
.ff-logo {
    height: 32px; /* Slightly smaller */
    width: auto;
    margin-bottom: 24px; /* Reduced from 32px */
}
.ff-tagline {
    font-size: 14px; /* Slightly smaller */
    color: var(--ink-black);
    line-height: 1.6;
    margin-bottom: 32px; /* Reduced from 40px */
    max-width: 300px;
}
.ff-socials {
    display: flex;
    gap: 16px;
}
.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--ink-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-black);
    transition: all 0.3s ease;
}
.social-icon:hover {
    background: var(--ink-black);
    color: var(--pure-white);
}

.ff-col h4 {
    font-family: var(--sans);
    font-size: 12px; /* Slightly smaller */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px; /* Reduced from 32px */
    color: var(--ink-black);
}
.ff-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Even tighter */
    list-style: none !important;
}
.ff-col a {
    font-size: 15px;
    color: var(--ink-black);
    transition: opacity 0.3s ease;
}
.ff-col a:hover {
    opacity: 0.6;
}

.footer-full-bottom {
    padding: 24px 0; /* Changed from padding-top: 30px */
    border-top: 1px solid rgba(0,0,0,0.08);
}
.footer-full-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ff-copy, .ff-bottom-links a {
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--ink-black);
    text-transform: uppercase;
}
.ff-motto {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--ink-black);
    text-align: center;
}
.ff-bottom-links {
    display: flex;
    gap: 32px;
}

@media (max-width: 1024px) {
    .footer-full-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    .ff-brand { grid-column: span 2; }
}
@media (max-width: 768px) {
    .footer-full-grid {
        grid-template-columns: 1fr;
    }
    .ff-brand { grid-column: span 1; }
    .footer-full-bottom .container {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
}

/* ── PERFORMANCE OPTIMIZATIONS ──────────────────────────────── */
.featured-work,
.services-section,
.why-section,
.founder-section,
.philosophy-section,
.foundation-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px; /* Rough estimate of section height */
}

.section-header p {
    color: var(--warm-graphite);
    font-size: 15px;
    font-weight: 300;
    max-width: 480px;
}
.section-header.centered p { margin: 0 auto; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 14px 34px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 1px;
    transition: background 0.28s var(--ease), color 0.28s var(--ease), border-color 0.28s var(--ease);
    cursor: pointer;
}
.btn-bronze {
    background: #CDB68D;
    color: var(--pure-white);
    border: 1px solid #CDB68D;
}
.btn-bronze:hover {
    background: #ba9e6b;
    border-color: #ba9e6b;
}
.btn-contact {
    background: transparent;
    color: #CDB68D;
    border: 1px solid #CDB68D;
    padding: 10px 24px;
    font-size: 11px;
    letter-spacing: 0.14em;
    border-radius: 1px;
}
.btn-contact:hover {
    background: #CDB68D;
    color: var(--pure-white);
    border-color: #CDB68D;
}
.btn-ghost {
    background: transparent;
    color: #CDB68D;
    border: 1px solid #CDB68D;
    padding: 12px 28px;
}
.btn-ghost:hover {
    background: #CDB68D;
    color: var(--pure-white);
    border-color: #CDB68D;
}

.begin-project {
    display: inline-flex;
    align-self: flex-start;
    gap: 10px;
    padding: clamp(14px, 2vw, 18px) clamp(24px, 4vw, 40px);
    justify-content: center;
    align-items: center;
    font-size: 11px;
    color: var(--pure-white);
    letter-spacing: 0.16em;
}


/* ════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════ */

/* ── First navbar: scrolls with the page ── */
.navbar {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--gutter);
    height: 72px;
    background: transparent;
    border-bottom: 1px solid transparent;
}

/* ── Sticky navbar: always fixed, revealed via transform/opacity only ── */
.navbar--sticky {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 201;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--gutter);
    height: 72px;
    background: var(--porcelain-white);
    border-bottom: 1px solid var(--shadow-grey);
    box-shadow: 0 2px 24px rgba(31,31,31,0.08);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.navbar--sticky.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* ── Logo ── */
.nav-logo img {
    height: 34px;
    width: auto;
    filter: brightness(0) invert(1);
}
.navbar--sticky .nav-logo img {
    filter: none;
}

.nav-toggle { display: none; }

/* ── Links ── */
.nav-links ul {
    display: flex;
    gap: 54px;
}
.nav-links a {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}
.navbar--sticky .nav-links a {
    color: var(--warm-graphite);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 1px;
    background: #CDB68D;
    transition: width 0.3s ease;
}
.navbar--sticky .nav-links a::after {
    background: #CDB68D;
}
.nav-links a:hover,
.nav-links a.active { color: var(--pure-white); }
.navbar--sticky .nav-links a:hover,
.navbar--sticky .nav-links a.active { color: var(--ink-black); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }


/* ════════════════════════════════════════════════════════════
   HERO  –  Video cycling
   ════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
}

/* Fallback gradient (visible when video hasn't loaded) */
.hero-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, #0f0c08 0%, #1e1509 40%, #130f08 70%, #0a0806 100%);
    z-index: 0;
}

/* Video layer */
.hero-videos {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
    pointer-events: none;
    will-change: opacity;
    transform: translateZ(0); /* Force GPU acceleration */
}
.hero-video.active {
    opacity: 1;
}

/* Dark gradient overlay for text legibility */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        105deg,
        rgba(8, 6, 3, 0.70) 0%,
        rgba(8, 6, 3, 0.40) 55%,
        rgba(8, 6, 3, 0.12) 100%
    );
}

/* Hero text content */
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 var(--gutter);
    padding-top: 72px;
    max-width: calc(var(--max-width) + 2 * var(--gutter));
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.hero-eyebrow {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: rgba(216, 208, 197, 0.85);
    margin-bottom: 22px;
    max-width: 500px;
}
.hero-heading {
    font-family: var(--serif);
    font-size: clamp(44px, 7vw, 72px);
    font-weight: 400;
    color: var(--pure-white);
    line-height: 1.06;
    margin-bottom: 20px;
}
.hero-heading em {
    font-style: italic;
    font-weight: 400;
}
.hero-sub {
    font-family: var(--sans);
    font-size: clamp(14px, 2.2vw, 22px);
    font-weight: 200;
    color: var(--pure-white);
    letter-spacing: 0.03em;
    margin-bottom: 44px;
}

/* ── Progress indicators (right side) ───────────────────────── */
.hero-indicators {
    position: absolute;
    right: clamp(20px, 3vw, 48px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.indicator {
    width: 3px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.3s ease;
}
.indicator:hover { background: rgba(255, 255, 255, 0.35); }
.indicator-fill {
    width: 100%;
    height: 0%;
    background: var(--brushed-bronze);
    border-radius: 2px;
    will-change: height;
}
/* JS adds this class to trigger the fill animation */
.indicator.active .indicator-fill {
    animation: indicatorFill 7s linear forwards;
}
@keyframes indicatorFill {
    from { height: 0%; }
    to   { height: 100%; }
}


/* ════════════════════════════════════════════════════════════
   QUOTE SECTION
   ════════════════════════════════════════════════════════════ */
.quote-section {
    background: var(--porcelain-white);
    padding: 100px var(--gutter);
    border-top: 0.2px solid var(--arch-beige);
}
.quote-section .container {
    max-width: 1240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.quote-section blockquote {
    font-family: var(--serif);
    font-size: clamp(30px, 4.2vw, 60px);
    font-weight: 400;
    line-height: 1.35;
    margin: 0 0 48px 0;
    padding: 0;
    display: block;
    width: 100%;
    text-align: center;
}
.quote-line {
    display: block;
}


/* Per-character animation spans – JS wraps each char in these */
.quote-section blockquote .char {
    display: inline;
    color: rgba(31, 31, 31, 0.1);
    transition: color 0.35s ease;
}
.quote-sub {
    font-family: var(--sans);
    font-size: clamp(16px, 2.8vw, 30px);
    font-weight: 300;
    color: var(--warm-graphite);
    text-transform: none;
}


/* ════════════════════════════════════════════════════════════
   FEATURED WORK  –  Dual infinite slider
   Top row  →  slides RIGHT
   Bottom row → slides LEFT
   ════════════════════════════════════════════════════════════ */
.featured-work {
    background: var(--porcelain-white);
    padding: 40px 0 96px;
}
.featured-work .section-header {
    margin-bottom: 30px;
}
.featured-second-heading{
    text-align: center; 
    text-transform: uppercase; 
    letter-spacing: 1.4px;
    font-family: var(--sans);
    margin-bottom: 56px;
}
/* Slider wrapper – hides overflow */
.work-slider {
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
}
.work-slider:hover .work-track {
    animation-play-state: paused;
}

/* Each row track */
.work-track {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
}

/* Row 1: slides right  (track moves →, so content appears to drift right) */
.work-track--right {
    animation: marqueeRight 55s linear infinite;
}

/* Row 2: slides left  (track moves ←, content drifts left) */
.work-track--left {
    animation: marqueeLeft 50s linear infinite;
}

/* With 6 originals + 6 duplicates the track is 2× one-set wide.
   Translating by exactly –50% jumps back to the visual start – seamless. */
@keyframes marqueeLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marqueeRight {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Individual slide – square */
.work-slide {
    position: relative;
    width: 420px;
    height: 420px;
    flex-shrink: 0;
    overflow: hidden;
}
.work-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
    pointer-events: none;
}
.work-slide:hover img {
    transform: scale(1.05);
}
.slide-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 18px 14px;
    background: linear-gradient(to top, rgba(12, 9, 4, 0.75), transparent);
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pure-white);
    opacity: 1;
    transition: opacity 0.3s ease;
}
.work-slide:hover .slide-label { opacity: 1; }


/* ════════════════════════════════════════════════════════════
   STATS
   ════════════════════════════════════════════════════════════ */
.stats-section {
    background: none;
    padding: 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.stats-grid--home {
    grid-template-columns: repeat(4, 1fr);
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    border-right: 1px solid var(--arch-beige);
    gap: 12px;
}
.stat-item:last-child { border-right: none; }

/* Number display – wraps the rolling drum, the + sign, and the inline icon */
.stat-number {
    font-family: var(--sans);
    font-size: clamp(32px, 4.8vw, 54px);


    font-weight: 400;
    color: var(--ink-black);
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}
.stat-number .bronze { color: var(--brushed-bronze); }

/* Slot-machine drum */
.stat-drum {
    display: inline-block;
    height: 1em;
    overflow: hidden;
    vertical-align: top;
}
.stat-drum-inner {
    display: flex;
    flex-direction: column;
    will-change: transform;
}
.stat-drum-inner span {
    display: block;
    height: 1em;
    line-height: 1em;
    text-align: right;
}

/* Icon sits inline to the right of the number+sign */
.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
    .stat-icon img {
        width: 44px;
        height: 44px;
        object-fit: contain;

    /* Tint icons to bronze using CSS filter to match the image precisely */
    filter: brightness(0) saturate(100%) invert(86%) sepia(9%) saturate(849%) hue-rotate(352deg) brightness(91%) contrast(93%);
}

.stat-label {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-graphite);
}


/* ════════════════════════════════════════════════════════════
   FEATURED IN
   ════════════════════════════════════════════════════════════ */
.featured-in {
    background: var(--porcelain-white);
    padding: 96px 0px 0px 0px;
}
.featured-in-title {
    margin-bottom: 84px;
}
.logo-slider {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    /* Added padding to keep logos centered "to the eye" as they enter/exit */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.services-section h2 {
    margin-bottom: 40px;
}
.logo-track {
    display: flex;
    align-items: center;
    gap: 120px;
    width: max-content;
    animation: logoScroll 20s linear infinite;
}
.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-item img {
    height: 110px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}
.logo-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes logoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-text {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-black);
    text-align: center;
    line-height: 1.4;
}
.logo-text strong { font-weight: 600; display: block; }
.logo-text small  { font-size: 9px; letter-spacing: 0.14em; display: block; }
.logo-item--circle {
    border: 1px solid var(--arch-beige);
    border-radius: 50%;
    width: 68px;
    height: 68px;
    padding: 8px;
}
.logo-text.la-mer {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.18em;
}
.logo-text.iman {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 0.22em;
}
.logo-text.iman small {
    font-family: var(--sans);
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0.18em;
}


/* ════════════════════════════════════════════════════════════
   APPROACH HERO (Banner before Services)
   ════════════════════════════════════════════════════════════ */
.approach-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background-image: url('../approach_hero_bg_1778448351513.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--pure-white);
    overflow: hidden;
}
.approach-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
}
.approach-hero .container {
    position: relative;
    z-index: 2;
}
.approach-content {
    max-width: 750px;
}
.approach-content h1 {
    font-family: var(--serif);
    font-size: clamp(40px, 6vw, 84px);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 32px;
}
.approach-content p {
    font-family: var(--sans);
    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 48px;
    opacity: 0.9;
}


/* ════════════════════════════════════════════════════════════
   OUR SERVICES (Tabbed Layout)
   ════════════════════════════════════════════════════════════ */
.services-section {
    background: var(--porcelain-white);
    padding: 40px 0;
}
.services-section > .container > .section-label {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.2em;
    margin-bottom: 56px;
}
.services-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
    align-items: start;
}

/* Left panel */
.service-heading {
    font-family: var(--serif);
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 400;
    margin-bottom: 20px;
    transition: opacity 0.25s ease;
}
.service-image-wrap {
    position: relative;
    margin-bottom: 24px;
}
.service-image-wrap img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}
.play-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(184, 150, 90, 0.92);
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}
.play-btn:hover {
    background: var(--brushed-bronze);
    transform: scale(1.08);
}
.service-description {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--warm-graphite);
    line-height: 1.85;
    margin-bottom: 28px;
    transition: opacity 0.25s ease;
}

/* Right tab list */
.services-menu { padding-top: 56px; }
.services-menu ul { display: flex; flex-direction: column; }
.mobile-only { display: none; }

.service-tab {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--shadow-grey);
    font-family: var(--serif);
    font-size: clamp(15px, 2vw, 20px);
    font-weight: 300;
    color: var(--warm-graphite);
    cursor: pointer;
    transition: color 0.25s ease;
}
.service-tab:first-child { border-top: 1px solid var(--shadow-grey); }
.service-tab:hover { color: var(--ink-black); }
.service-tab.active {
    color: var(--brushed-bronze);
    font-weight: 400;
}
.tab-arrow {
    font-size: 14px; /* Smaller, more minimalistic */
    line-height: 1;
    color: var(--arch-beige);
    transition: color 0.25s ease, transform 0.25s ease;
    opacity: 0.8; /* Subtle opacity for luxury feel */
}
.service-tab.active .tab-arrow,
.service-tab:hover .tab-arrow {
    color: var(--brushed-bronze);
    transform: translateX(3px);
}





/* ════════════════════════════════════════════════════════════
   WHY DECAURA
   ════════════════════════════════════════════════════════════ */
.why-section {
    background: none;
    padding: 20px 0;
}
.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-content .section-label { margin-bottom: 16px; }
.why-content h3 {
    font-family: var(--serif);
    font-size: clamp(32px, 4.2vw, 48px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--ink-black);
}
.why-body {
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 300;
    color: var(--warm-graphite);
    line-height: 1.95;
    margin-bottom: 40px;
    max-width: 460px;
}
.why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}


/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════ */
.testimonials-section {
    margin-top: 40px;
    padding: 100px 0;
    background: none;
    text-align: center;
    border-top: 1px solid var(--arch-beige);
}
.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.testimonial-quote {
    font-family: var(--serif);
    font-size: clamp(24px, 3.5vw, 40px);
    line-height: 1.35;
    color: var(--ink-black);
    margin-bottom: 32px;
    font-weight: 400;
}
.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 32px;
    color: #1a1a1a;
    font-size: 24px; /* Bigger stars */
    letter-spacing: 2px;
}
.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.testimonial-content-wrap {
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
}
.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.author-name {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ink-black);
    margin-bottom: 8px;
}
.author-title {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--warm-graphite);
    margin-bottom: 48px;
}

/* Navigation */
.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.t-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #CDB68D;
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}
.t-nav-btn:hover {
    background: #ba9e6b;
    transform: scale(1.05);
}
.testimonial-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}
.t-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--arch-beige);
    opacity: 0.4;
    transition: all 0.3s ease;
}
.t-dot.active {
    opacity: 1;
    transform: scale(1.5);
    background: var(--arch-beige);
    border: 1px solid var(--arch-beige);
    box-shadow: 0 0 0 4px var(--porcelain-white), 0 0 0 5px var(--arch-beige);
}


/* ════════════════════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════════════════════ */
.cta-section {
    background: #D8D0C5; /* Muted taupe background from image */
    padding: 140px 0;
    text-align: center;
}
.cta-section h2 {
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 24px;
}
.cta-section p {
    font-family: var(--sans);
    font-size: 20px;
    font-weight: 300;
    color: rgba(0,0,0,0.6);
    margin-bottom: 48px;
    letter-spacing: 0.02em;
}
.cta-section .btn-bronze {
    background: #CDB68D;
    color: var(--pure-white);
    padding: 18px 48px;
    font-size: 14px;
    letter-spacing: 0.15em;
    border: none;
    font-weight: 500;
    text-transform: uppercase;
}
.cta-section .btn-bronze:hover {
    background: #ba9e6b;
}


/* ════════════════════════════════════════════════════════════
   FOOTER  –  4-column (shared across all pages)
   ════════════════════════════════════════════════════════════ */
.footer-full {
    background: var(--porcelain-white);
    border-top: 1px solid var(--shadow-grey);
    padding: 40px 0 40px;
}
.footer-full-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--shadow-grey);
}

/* Brand column */
.ff-logo {
    height: 42px; /* Bigger logo as in image */
    width: auto;
    margin-bottom: 18px;
}
.ff-tagline {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--warm-graphite);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 320px;
}
.ff-socials {
    display: flex;
    gap: 16px;
    align-items: center;
}
.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--arch-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-black);
    transition: all 0.3s ease;
}
.social-icon:hover {
    border-color: #ba9e6b;
    background: #ba9e6b;
    color: var(--ink-black);
}

/* Nav columns */
.ff-col h4 {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-black);
    margin-bottom: 18px;
}
.ff-col ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ff-col ul li a {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    color: var(--warm-graphite);
    transition: color 0.25s ease;
}
.ff-col ul li a:hover { color: #ba9e6b; }

/* Bottom bar */
.footer-full-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
}
.ff-copy {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--warm-graphite);
}
.ff-motto {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: var(--ink-black);
    opacity: 0.8;
}
.ff-bottom-links {
    display: flex;
    gap: 24px;
    align-items: center;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
}
.ff-bottom-links a {
    color: var(--warm-graphite);
    transition: color 0.25s ease;
}
.ff-bottom-links a:hover { color: #ba9e6b; }


/* ════════════════════════════════════════════════════════════
   WHATSAPP FLOAT  –  dual-ring pulse
   ════════════════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 300;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.30);
    transition: transform 0.25s ease;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* Two expanding ring pulses */
.whatsapp-float::before,
.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: waPulse 3s ease-out infinite;
}
.whatsapp-float::after {
    animation-delay: 1.5s;
}
@keyframes waPulse {
    0%   { transform: scale(1);   opacity: 0.55; }
    80%  { opacity: 0.05; }
    100% { transform: scale(2.2); opacity: 0; }
}


/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stats-grid--home { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: clamp(28px, 5.6vw, 44px); }



    .why-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .why-image     { order: -1; }
    .why-image img { height: 380px; }
    .services-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .services-menu { 
        padding-top: 0;
        order: 2; /* Menu below display on mobile */
    }
    .service-heading { font-size: 24px; text-align: left; }
    .service-description { text-align: left; }
    .services-display { text-align: left; }
    .service-image-wrap img { height: 260px; }
    
    .stats-grid    { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) {
        border-top: 1px solid var(--arch-beige);
        border-right: 1px solid var(--arch-beige);
    }
    .stat-item:nth-child(4) {
        border-top: 1px solid var(--arch-beige);
        border-right: none;
    }
}

@media (max-width: 768px) {
    .navbar { padding: 0 24px; z-index: 1001; }
    
    /* Navigation Toggle */
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
        position: relative;
    }
    .hamburger {
        display: block;
        width: 24px;
        height: 1.5px;
        background: var(--pure-white);
        position: relative;
        transition: all 0.3s ease;
    }
    .hamburger::before, .hamburger::after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 1.5px;
        background: var(--pure-white);
        transition: all 0.3s ease;
    }
    .hamburger::before { top: -8px; }
    .hamburger::after { bottom: -8px; }

    .nav-toggle.active .hamburger { background: transparent; }
    .nav-toggle.active .hamburger::before { transform: rotate(45deg); top: 0; }
    .nav-toggle.active .hamburger::after { transform: rotate(-45deg); bottom: 0; }

    /* Sticky navbar hamburger is always dark (white background) */
    .navbar--sticky .hamburger,
    .navbar--sticky .hamburger::before,
    .navbar--sticky .hamburger::after { background: var(--ink-black); }
    /* Keep center bar transparent in X/close state */
    .navbar--sticky .nav-toggle.active .hamburger { background: transparent; }

    /* Active nav link must be dark/bronze in the white mobile menu panel */
    .nav-links ul li a.active { color: var(--brushed-bronze) !important; }

    .mobile-only { display: block; }
    
    /* Common Hero Mobile Heights */
    .about-hero, .approach-hero, .portfolio-hero, .contact-hero {
        height: 60vh !important;
        min-height: 400px !important;
    }
    
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.3);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links {
        display: flex; /* Changed from none to allow transitions */
        position: fixed;
        top: 0;
        right: 0;
        width: 80%; /* Only some percentage */
        height: 100vh;
        background: var(--pure-white);
        z-index: 1000;
        flex-direction: column;
        align-items: flex-start; /* Align left */
        justify-content: center;
        padding: 60px 40px;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%); /* Minimalistic slide-in */
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    }
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }
    .nav-links ul {
        flex-direction: column;
        gap: 24px;
        text-align: left; /* Align left */
        width: 100%;
    }
    .nav-links ul li {
        opacity: 0;
        transform: translateX(20px); /* Slide from right to left */
        transition: all 0.4s ease;
        width: 100%;
    }
    .nav-links.active ul li {
        opacity: 1;
        transform: translateX(0);
    }
    /* Staggered link animation */
    .nav-links.active ul li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active ul li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active ul li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active ul li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active ul li:nth-child(5) { transition-delay: 0.3s; }

    .nav-links ul li a {
        font-size: 28px;
        font-family: var(--sans); /* Bricolage Grotesque */
        color: var(--ink-black);
        font-weight: 500;
        letter-spacing: -0.02em;
        text-transform: none; /* More minimalistic/modern */
        display: block;
        width: 100%;
        position: relative;
        z-index: 10; /* Ensure links are clickable */
    }
    .nav-links a::after { display: none; } /* Remove underlines on mobile for minimalism */
    .nav-cta { display: none; }

    .work-slide { width: 280px; height: 280px; }
    .footer-full-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-full-bottom .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .logos-row { gap: 24px; }

    /* CTA section */
    .cta-section { padding: 80px 0; }
    .btn-cta { padding: 16px 28px; font-size: 12px; }

    /* Hero tweaks */
    .hero-sub { margin-bottom: 32px; }
    .hero-eyebrow { font-size: 11px; }

    /* Why layout stacks */
    .why-layout { grid-template-columns: 1fr; gap: 40px; }

    /* Featured second heading */
    .featured-second-heading { font-size: 11px; letter-spacing: 1px; margin-bottom: 36px; }
}

@media (max-width: 480px) {
    .work-slide { width: 220px; height: 220px; }
    .stats-grid--home { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: clamp(22px, 7.6vw, 34px); }
    .stat-icon img { width: 34px; height: 34px; }



    .hero-heading { font-size: clamp(32px, 9vw, 44px); }

    .hero-indicators { display: none; }
    .hero-sub { font-size: 13px; }
    .btn-cta { padding: 14px 32px; font-size: 11px; }
    .cta-section { padding: 64px 0; }
}
