/* Specializations carousel reused on service page */
#sv-specializations {
    background: #faf9f7;
    padding: 5rem 0 4rem;
    overflow: hidden;
}

/* ===========================
   HERO
=========================== */
.sv-hero {
    padding: 8rem 0 7rem;
    background: #faf9f7;
    position: relative;
    overflow: hidden;
}

.sv-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(3.2rem, 6vw, 5.8rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #1c1c1e;
    margin: 1.4rem 0 2.2rem;
}

.sv-hero-title em {
    font-style: italic;
    font-weight: 300;
}

.sv-hero-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #8a8480;
    line-height: 1.85;
    max-width: 500px;
}

/* Spinning mandala — mirrors about page hero */
.sv-mandala-wrap {
    position: absolute;
    right: -100px;
    top: 58%;
    transform: translateY(-50%);
    width: 580px;
    height: 580px;
    pointer-events: none;
}

.sv-mandala {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.13;
    animation: svMandalaSpin 35s linear infinite;
}

@keyframes svMandalaSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ===========================
   BUSINESS CONCEPT DIRECTORY
=========================== */
.sv-concept {
    background: #111110;
    padding: 9rem 0;
}

.sv-concept-label {
    color: rgba(255, 255, 255, 0.28);
    margin-bottom: 4rem;
}

.sv-concept-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.sv-concept-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1.8rem;
    padding: 2.8rem 3rem 2.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    align-items: start;
    opacity: 0;
    transition: border-color 0.35s ease;
}

/* Right column items get left padding instead */
.sv-concept-item:nth-child(even) {
    padding-left: 3rem;
    padding-right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.sv-concept-item:last-child,
.sv-concept-item:nth-last-child(2):nth-child(odd) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.sv-concept-item:hover {
    border-color: rgba(176, 28, 10, 0.4);
}

/* Scroll reveal with stagger */
.sv-concept-item.sv-concept-revealed {
    animation: svConceptIn 0.65s ease forwards;
    animation-delay: calc(var(--csi) * 80ms);
}

@keyframes svConceptIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sv-concept-num {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 2.4rem;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    letter-spacing: -0.02em;
    transition: color 0.35s ease;
    padding-top: 0.15rem;
}

.sv-concept-item:hover .sv-concept-num {
    color: rgba(255, 255, 255, 0.2);
}

.sv-concept-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.01em;
    margin-bottom: 0.7rem;
    transition: color 0.35s ease;
}

.sv-concept-item:hover .sv-concept-body h3 {
    color: rgba(255, 255, 255, 0.95);
}

.sv-concept-body p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.85;
    letter-spacing: 0.01em;
    transition: color 0.35s ease;
}

.sv-concept-item:hover .sv-concept-body p {
    color: rgba(255, 255, 255, 0.45);
}

/* ===========================
   PROCESS JOURNEY
=========================== */
.sv-journey {
    position: relative;
    height: 500vh;
}

.sv-journey-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    overflow: hidden;
    background: #faf9f7;
}

/* ---- LEFT: step panel ---- */
.sv-journey-steps {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 2.8rem 0 3.2rem;
    border-right: 1px solid #ede9e3;
}

.sv-journey-eyebrow {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #b0a898;
    margin-bottom: 2.8rem;
}

.sv-step {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 2rem 0;
    border-top: 1px solid #f0ece6;
}

.sv-step:last-child {
    border-bottom: 1px solid #f0ece6;
}

/* Vertical bar — fills with brand red when active */
.sv-step-bar {
    width: 2px;
    height: 54px;
    background: #ede9e3;
    flex-shrink: 0;
    margin-top: 3px;
    position: relative;
    overflow: hidden;
}

.sv-step-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #b01c0a;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.45s ease;
}

.sv-step.sv-step-active .sv-step-bar::after {
    transform: scaleY(1);
}

.sv-step-num {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c8c0b4;
    margin-bottom: 0.5rem;
    transition: color 0.4s ease;
}

.sv-step-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.3rem;
    color: #c8c0b4;
    letter-spacing: 0.01em;
    margin: 0 0 0.5rem;
    transition: color 0.4s ease;
}

.sv-step-title em {
    font-style: italic;
    font-weight: 400;
}

.sv-step-body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.76rem;
    color: #b0a898;
    line-height: 1.75;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: color 0.4s ease, max-height 0.45s ease, opacity 0.4s ease;
}

/* Active step: text darkens, body expands */
.sv-step.sv-step-active .sv-step-num {
    color: #8a8480;
}

.sv-step.sv-step-active .sv-step-title {
    color: #1c1c1e;
}

.sv-step.sv-step-active .sv-step-body {
    color: #8a8480;
    max-height: 80px;
    opacity: 1;
}

/* ---- RIGHT: image panel ---- */
.sv-journey-images {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 3.5rem 4rem 3.5rem 3rem;
    background: #faf9f7;
}

.sv-journey-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sv-jimg {
    position: absolute;
    inset: 0;
    will-change: transform;
}

.sv-jimg[data-jimg="0"] { z-index: 1; }
.sv-jimg[data-jimg="1"] { z-index: 2; transform: translateY(100%); }
.sv-jimg[data-jimg="2"] { z-index: 3; transform: translateY(100%); }

.sv-jimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ===========================
   RESPONSIVE — ≤ 768px
=========================== */
@media (max-width: 768px) {

    /* ---- Hero ---- */
    .sv-hero {
        padding: 5rem 0 4rem;
    }

    .sv-mandala-wrap {
        width: 280px;
        height: 280px;
        right: -70px;
        top: 68%;
    }

    .sv-hero-sub {
        font-size: 0.9rem;
    }

    /* ---- Business Concept ---- */
    .sv-concept {
        padding: 4.5rem 0;
    }

    .sv-concept-grid {
        grid-template-columns: 1fr;
    }

    .sv-concept-item {
        padding: 2rem 0;
        grid-template-columns: 48px 1fr;
        gap: 1.2rem;
    }

    /* remove left border — only one column now */
    .sv-concept-item:nth-child(even) {
        padding-left: 0;
        border-left: none;
    }

    /* bottom border on last item only */
    .sv-concept-item:nth-last-child(2):nth-child(odd) {
        border-bottom: none;
    }

    .sv-concept-item:last-child {
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    /* ---- Process Journey — stacked card layout on mobile ---- */
    .sv-journey {
        height: auto;
    }

    /* Disable the sticky scroll container — become a normal block */
    .sv-journey-sticky {
        position: relative;
        height: auto;
        display: block; /* no longer flex row */
        overflow: visible;
        background: #faf9f7;
    }

    /* Hide the original shared image panel — we display images per-step instead */
    .sv-journey-images {
        display: none;
    }

    /* Steps panel full width */
    .sv-journey-steps {
        width: 100%;
        padding: 0 0 2rem;
        border-right: none;
        justify-content: flex-start;
    }

    .sv-journey-eyebrow {
        font-size: 0.62rem;
        margin: 2rem 1.4rem 1.4rem;
    }

    /* Each step becomes a card: image on top, text below */
    .sv-step {
        display: block;
        padding: 0;
        margin: 0 0 1px;
        border-top: none;
        border-bottom: none;
        background: #fff;
    }

    .sv-step:last-child {
        border-bottom: none;
    }

    /* Inline image per step — pulled from data attribute via CSS content trick;
       we use a background-image approach via a generated pseudo element.
       We inject actual <img> tags via the step's data-step attribute. */

    /* Step image thumbnails — revealed via a new .sv-step-mob-img element we insert via CSS */
    .sv-step::before {
        content: '';
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        background-size: cover;
        background-position: center;
    }

    .sv-step[data-step="0"]::before {
        background-image: url('image/elements/anotheriamge.jpeg');
    }

    .sv-step[data-step="1"]::before {
        background-image: url('image/elements/anothertwo.jpeg');
    }

    .sv-step[data-step="2"]::before {
        background-image: url('image/Services.png');
    }

    /* Step text content area */
    .sv-step-bar {
        display: none; /* hide vertical bar — replaced by image */
    }

    .sv-step-content {
        padding: 1.4rem 1.4rem 2rem;
        border-bottom: 1px solid #f0ece6;
    }

    .sv-step:last-child .sv-step-content {
        border-bottom: none;
    }

    .sv-step-num {
        color: #8a8480 !important;
        margin-bottom: 0.4rem;
    }

    .sv-step-title {
        font-size: 1.4rem;
        color: #1c1c1e !important;
        margin-bottom: 0.6rem;
    }

    .sv-step-body {
        max-height: 200px !important;
        opacity: 1 !important;
        color: #8a8480 !important;
        font-size: 0.82rem;
    }

    /* ---- Services grid ---- */
    .sv-services {
        padding: 4.5rem 0;
    }

    .sv-grid {
        grid-template-columns: 1fr;
    }

    .sv-card {
        padding: 1.8rem 0;
    }

    .sv-card:nth-child(3n) {
        padding-right: 0;
    }

    /* ---- Specializations ---- */
    #sv-specializations {
        padding: 3.5rem 0 3rem;
    }

    /* ---- Our Edge ---- */
    .sv-edge {
        padding: 4.5rem 0;
    }

    .sv-edge-quote {
        margin-bottom: 3rem;
    }

    .sv-edge-pillars {
        grid-template-columns: 1fr;
        gap: 0;
        padding-top: 2.5rem;
    }

    .sv-pillar {
        padding: 2rem 0 0;
        border-top: 1px solid rgba(255,255,255,0.06);
    }

    .sv-pillar:first-child {
        border-top: none;
        padding-top: 0;
    }

    /* ---- Footer clearance ---- */
    footer {
        padding-bottom: calc(3rem + 90px + env(safe-area-inset-bottom, 0px));
    }
}

/* ===========================
   SERVICES GRID
=========================== */
.sv-services {
    background: #ffffff;
    padding: 9rem 0;
}

.sv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

/* Cards hidden until scroll reveal */
.sv-card {
    padding: 2.5rem 2.5rem 2.5rem 0;
    border-top: 1px solid #e8e2da;
    opacity: 0;
    transition: border-color 0.35s ease;
}

.sv-card:nth-child(3n) {
    padding-right: 0;
}

/* Scroll reveal */
.sv-card.sv-card-revealed {
    animation: svCardIn 0.6s ease forwards;
    animation-delay: calc(var(--ci) * 90ms);
}

@keyframes svCardIn {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Hover — border accent + text colour shift only (no background) */
.sv-card:hover {
    border-color: #b01c0a;
}

.sv-card-num {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    color: #c8c0b4;
    margin-bottom: 1.2rem;
    transition: color 0.35s ease;
}

.sv-card:hover .sv-card-num {
    color: #b01c0a;
}

.sv-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: #1c1c1e;
    letter-spacing: 0.01em;
    margin-bottom: 0.8rem;
    transition: color 0.35s ease;
}

.sv-card:hover h3 {
    color: #1C1A16;
}

.sv-card p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    color: #8a8480;
    line-height: 1.8;
    margin-bottom: 1.4rem;
    transition: color 0.35s ease;
}

.sv-card:hover p {
    color: #6A6058;
}

/* Tag pills — discipline keywords */
.sv-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0;
    margin: 0;
}

.sv-tags li {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #b0a898;
    border: 1px solid #e8e2da;
    padding: 0.28rem 0.6rem;
    transition: border-color 0.35s ease, color 0.35s ease;
}

.sv-card:hover .sv-tags li {
    border-color: #D4C9B8;
    color: #8a8480;
}

/* ===========================
   COMPETITIVENESS / OUR EDGE
=========================== */
.sv-edge {
    background: #111110;
    padding: 9rem 0 5rem;
}

.sv-edge-label {
    color: rgba(255, 255, 255, 0.28);
}

.sv-edge-quote {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
    letter-spacing: -0.01em;
    max-width: 820px;
    border: none;
    padding: 0;
    margin: 0 0 5rem;
}

.sv-edge-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 3.5rem;
}

/* Pillars hidden until scroll reveal */
.sv-pillar {
    padding: 0 2.5rem 0 0;
    opacity: 0;
}

.sv-pillar:last-child {
    padding-right: 0;
}

.sv-pillar.sv-pillar-revealed {
    animation: svPillarIn 0.6s ease forwards;
    animation-delay: calc(var(--pi) * 120ms);
}

@keyframes svPillarIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sv-pillar-title {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.01em;
    margin-bottom: 0.9rem;
}

.sv-pillar-body {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.32);
    line-height: 1.85;
}

/* ===========================
   CIVIL & STRUCTURAL CONSTRUCTION
=========================== */
/* section.sv-civil has specificity 0-1-1 to properly override the global section:not(#hero) rule */
section.sv-civil {
    background: #EDE6D8;
    padding: 9rem 0 0;
}

/* ---- Header ---- */
.sv-civil-header {
    margin-bottom: 3.5rem;
}

/* Eyebrow row: label + extending rule */
.sv-civil-label-row {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}

.sv-civil-label {
    color: #B0A090;
    white-space: nowrap;
    margin-bottom: 0;
}

.sv-civil-label-rule {
    flex: 1;
    height: 1px;
    background: #D4C9B8;
}

.sv-civil-title-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: end;
}

.sv-civil-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #1C1A16;
    margin: 0;
}

.sv-civil-title em {
    font-style: italic;
    font-weight: 300;
}

.sv-civil-header-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 2.2rem;
}

.sv-civil-intro {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    color: #6A6058;
    line-height: 1.9;
    max-width: 440px;
}

/* Mini stat row in the header */
.sv-civil-meta {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.sv-civil-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.sv-civil-meta-num {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 2rem;
    letter-spacing: -0.02em;
    color: #1C1A16;
    line-height: 1;
}

.sv-civil-meta-label {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #B0A090;
}

.sv-civil-meta-divider {
    width: 1px;
    height: 2rem;
    background: #D4C9B8;
}

/* ---- Alternating Image + Text Rows ---- */
.sv-civil-rows {
    margin-top: 1rem;
}

.sv-civil-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid #D4C9B8;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

.sv-civil-row:last-child {
    border-bottom: 1px solid #D4C9B8;
}

.sv-civil-row.sv-civil-row-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reversed rows: text left, image right */
.sv-civil-row-reverse {
    direction: rtl;
}

.sv-civil-row-reverse > * {
    direction: ltr;
}

/* Image side */
.sv-civil-row-img {
    overflow: hidden;
    height: 420px;
    background: #C9BEB0;
}

.sv-civil-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.8);
    transition: transform 0.9s ease, filter 0.9s ease;
}

.sv-civil-row:hover .sv-civil-row-img img {
    transform: scale(1.05);
    filter: saturate(1);
}

/* Text side */
.sv-civil-row-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem 4rem;
}

.sv-civil-row-num {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    color: #B0A090;
    margin-bottom: 1.4rem;
}

.sv-civil-row-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: #1C1A16;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin: 0 0 1.2rem;
}

.sv-civil-row-title em {
    font-style: italic;
    font-weight: 300;
}

.sv-civil-row-body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.88rem;
    color: #6A6058;
    line-height: 1.9;
    margin: 0 0 1.8rem;
    max-width: 420px;
}

.sv-civil-row-tag {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #B0A090;
    line-height: 1.8;
}

/* ---- Capability Index ---- */
.sv-civil-caps {
    padding: 4rem 0 0;
    margin-top: 3px;
    border-top: 1px solid #D4C9B8;
}

.sv-civil-cap-header {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    margin-bottom: 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid #D4C9B8;
}

.sv-civil-cap-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #B0A090;
    white-space: nowrap;
}

.sv-civil-cap-rule {
    flex: 1;
    height: 1px;
    background: #D4C9B8;
}

.sv-civil-cap-count {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #B0A090;
    white-space: nowrap;
}

/* Numbered list — 2-column grid */
.sv-civil-cap-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, auto);
    grid-auto-flow: column;
}

.sv-civil-cap-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #D4C9B8;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    cursor: default;
}

.sv-civil-cap-item.sv-cap-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Hover: dim all revealed siblings, brighten the one under cursor */
.sv-civil-cap-list:hover .sv-civil-cap-item.sv-cap-revealed {
    opacity: 0.25;
    transition: opacity 0.22s ease, transform 0.6s ease;
}

.sv-civil-cap-list:hover .sv-civil-cap-item.sv-cap-revealed:hover {
    opacity: 1;
    transition: opacity 0.15s ease, transform 0.6s ease;
}

.sv-civil-cap-num {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    color: #B0A090;
    min-width: 1.6rem;
    flex-shrink: 0;
}

.sv-civil-cap-dash {
    width: 1.4rem;
    height: 1px;
    background: #C9BEB0;
    flex-shrink: 0;
    transition: background 0.2s ease, width 0.2s ease;
}

.sv-civil-cap-item:hover .sv-civil-cap-dash {
    background: #b01c0a;
    width: 2rem;
}

.sv-civil-cap-name {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6A6058;
    transition: color 0.2s ease;
}

.sv-civil-cap-item:hover .sv-civil-cap-name {
    color: #1C1A16;
}

/* ---- Section close statement ---- */
.sv-civil-closer {
    border-top: 1px solid #D4C9B8;
    margin-top: 3px;
    padding: 3rem 0 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sv-civil-closer-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    letter-spacing: 0.01em;
    color: #B0A090;
    text-align: center;
}

.sv-civil-closer-text em {
    font-style: italic;
    color: #6A6058;
}

/* ---- Mobile responsive ---- */
@media (max-width: 768px) {

    section.sv-civil {
        padding: 5rem 0 0;
    }

    .sv-civil-header {
        margin-bottom: 2.5rem;
    }

    .sv-civil-title-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sv-civil-header-right {
        gap: 1.8rem;
    }

    .sv-civil-intro {
        max-width: 100%;
    }

    .sv-civil-row {
        grid-template-columns: 1fr;
    }

    .sv-civil-row-reverse {
        direction: ltr;
    }

    .sv-civil-row-img {
        height: 240px;
    }

    .sv-civil-row-text {
        padding: 2rem 1.4rem 2.5rem;
    }

    .sv-civil-row-body {
        max-width: 100%;
    }

    .sv-civil-cap-list {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-auto-flow: row;
    }

    .sv-civil-caps {
        padding: 3rem 0 0;
    }

    .sv-civil-closer {
        padding: 2.5rem 0 5rem;
    }
}
