/* ============================================================
   DECAURA – SERVICES PAGE STYLES
   ============================================================ */


/* ════════════════════════════════════════════════════════════
   APPROACH HERO
   ════════════════════════════════════════════════════════════ */
.approach-hero {
    position: relative;
    height: 85vh;
    min-height: 650px;
    background: url('../images/approach-hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--pure-white);
    overflow: hidden;
}
.approach-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.5) 100%, transparent);
    z-index: 1;
}
.approach-hero .container {
    position: relative;
    z-index: 2;
}
/* .approach-content {
    max-width: 800px;
} */
.approach-content h1 {
    font-family: var(--serif);
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--pure-white);
}
.approach-content p {
    font-family: var(--sans);
    font-size: clamp(14px, 2.2vw, 22px);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 42px;
    opacity: 0.9;
}


/* ══════════════════════════════
   OUR SERVICES (Grid Layout)
══════════════════════════════ */
.services-section {
    background: var(--porcelain-white); /* Slightly warmer off-white as in image */
    padding: 70px 0;
}
.services-section .section-header {
    margin-bottom: 72px;
    text-align: center;
}
.services-section .section-header .label {
    display: block;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--warm-graphite);
    margin-bottom: 18px;
    text-transform: uppercase;
}
.services-section .section-header h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--serif);
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 600;
    color: var(--ink-black);
}
.services-section h2::before,
.services-section h2::after {
    content: "";
    height: 1px;
    background: var(--arch-beige); /* Match founder line color */
    flex: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.service-card { /* Light beige card as in image */
    border: 1px solid #CDB68D;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.04);
}
.card-image {
    width: 100%;
    aspect-ratio: 1 / 0.85;
    overflow: hidden;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .card-image img {
    transform: scale(1.08);
}
.card-content {
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.card-content h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--ink-black);
    margin-bottom: 14px;
    line-height: 1.3;
}
.card-content p {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 300;
    color: var(--warm-graphite);
    line-height: 1.8;
    margin-bottom: 24px;
    flex: 1;
}
.enquire-link {
    font-family: var(--sans);
    font-size: 11px;
    width: max-content;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #CDB68D;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: none;
    border-bottom: 1px solid #CDB68D;
    padding-bottom: 3px;
    transition: gap 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.enquire-link:hover {
    gap: 12px;
    color: #ba9e6b;
    border-color: #ba9e6b;
}

/* ════════════════════════════════════════════════════════════
   SERVICE BLOCKS
   ════════════════════════════════════════════════════════════ */
.service-block {
    padding: 104px 0;
    background: var(--porcelain-white);
}
.service-block--alt {
    background: var(--shadow-grey);
}

/* Two-column layout: text left / image right */
.service-layout {
    display: grid;
    gap: 80px;
    align-items: center;
}
.service-layout--text-left {
    grid-template-columns: 1fr 1fr;
}
.service-layout--image-left {
    grid-template-columns: 1fr 1fr;
}

/* Image */
.service-image img {
    width: 100%;
    height: 680px;
    object-fit: cover;
}

/* Content */
.service-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 24px;
}
.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(62%) sepia(28%) saturate(700%) hue-rotate(5deg) brightness(95%);
}

.service-content .section-label {
    color: var(--brushed-bronze);
    letter-spacing: 0.16em;
    margin-bottom: 12px;
}

.service-heading {
    font-family: var(--serif);
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 400;
    color: var(--ink-black);
    line-height: 1.15;
    margin-bottom: 24px;
}

.service-description {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--warm-graphite);
    line-height: 1.85;
    margin-bottom: 32px;
    max-width: 520px;
}

/* Checklist */
.service-list {
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.service-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--ink-black);
    line-height: 1.5;
}
.service-check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: 1px solid var(--brushed-bronze);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brushed-bronze);
}

/* Divider between service blocks */
.service-block + .service-block {
    border-top: 1px solid rgba(95, 90, 84, 0.12);
}


/* ════════════════════════════════════════════════════════════
   OUR PROCESS (Timeline)
   ════════════════════════════════════════════════════════════ */
.process-section {
    background: var(--porcelain-white);
    padding: 40px 0;
    overflow: hidden;
}

.process-section .section-header {
    margin-bottom: 72px;
    text-align: center;
}

.process-section .section-header .label {
    display: block;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--warm-graphite);
    margin-bottom: 18px;
    text-transform: uppercase;
}

.process-section .section-header h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--serif);
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 600;
    color: var(--ink-black);
    margin-top: 0;
}

.process-section .section-header h2::before,
.process-section .section-header h2::after {
    content: "";
    height: 1px;
    background: var(--arch-beige);
    flex: 1;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 35px;
    position: relative;
    margin-top: 60px;
}

/* Connecting Line */
.process-timeline::before {
    content: "";
    position: absolute;
    top: 32px; /* Centre of 64px circle */
    left: 40px;
    right: 40px;
    height: 1px;
    background: #C4A265;
    z-index: 1;
}

.process-item {
    position: relative;
    z-index: 2;
    text-align: center;
}

.process-section .process-timeline .process-marker {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    background-color: rgb(209, 182, 141) !important;
    border-radius: 50% !important;
    margin: 0 auto 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.process-section .process-timeline .process-item:hover .process-marker {
    transform: scale(1.1);
}

.process-section .process-timeline .step-number {
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 500;
    color: #ffffff !important;
    line-height: 1;
    display: block !important;
}

.process-info h3 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--ink-black);
    margin-bottom: 15px;
    line-height: 1.3;
}

.process-info p {
    font-family: var(--sans);
    font-size: clamp(12px, 1.1vw, 13px);
    font-weight: 300;
    color: var(--warm-graphite);
    line-height: 1.8;
}

/* ════════════════════════════════════════════════════════════
   QUOTE SECTION
   ════════════════════════════════════════════════════════════ */
.quote-section {
    padding: 120px 0;
    text-align: center;
}

.quote-content blockquote {
    font-family: var(--serif);
    font-size: clamp(40px, 6vw, 60px);
    line-height: 1.1;
    color: var(--ink-black);
    font-weight: 400;
    margin: 0;
    padding: 0;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .process-timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px 20px;
    }
    .process-timeline::before {
        display: none; /* Line gets messy on wraps */
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .service-card {
        border: none;
        background: transparent;
    }
    .card-image {
        aspect-ratio: 16 / 10;
    }
    .card-content {
        padding: 24px 0;
    }
    .card-content h3 {
        font-size: 24px;
    }
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    .quote-section {
        padding: 100px 0;
    }
}

@media (max-width: 480px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }
}


/* ════════════════════════════════════════════════════════════
   CTA – reuse cta-about from about.css base, override bg here
   ════════════════════════════════════════════════════════════ */
.cta-about {
    background: var(--shadow-grey);
    padding: 104px var(--gutter);
    text-align: center;
}
.cta-about h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 400;
    color: var(--ink-black);
    margin-bottom: 18px;
    line-height: 1.2;
}
.cta-about p {
    font-family: var(--sans);
    font-size: clamp(14px, 1.4vw, 15px);
    font-weight: 300;
    color: var(--warm-graphite);
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.8;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.cta-services {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--warm-graphite);
}
.cta-services .dot-sep {
    color: var(--brushed-bronze);
    font-size: 12px;
}


/* ════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .service-layout--text-left,
    .service-layout--image-left {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    /* On tablet, image always comes second regardless of original order */
    .service-layout--image-left .service-image {
        order: 2;
    }
    .service-layout--image-left .service-content {
        order: 1;
    }
    .service-image img { height: 420px; }
}

@media (max-width: 768px) {
    .service-block  { padding: 72px 0; }
    .approach-hero  { height: 60vh; }
    .cta-buttons    { flex-direction: column; align-items: center; }
    .service-image img { height: 300px; }
    .process-step   { grid-template-columns: 52px 1fr; gap: 0 24px; padding: 28px 0; }
    .process-step:hover { margin: 0; padding-left: 0; padding-right: 0; }
}
