:root {
    /* Dark theme (default) */
    --bg-page: #0f0f0f;
    --bg-card: #111;
    --bg-card-alt: #1a1a1a;
    --text-color: #ffffff;
    --fg-r: 255;
    --fg-g: 255;
    --fg-b: 255;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --brand-red: #b60505;
    --brand-red-dark: #8e0404;
    --font-display: "Ubuntu", sans-serif;
    --font-body: "Ubuntu", sans-serif;
    --bs-font-sans-serif: "Ubuntu", sans-serif;
    --bs-body-font-family: "Ubuntu", sans-serif;
}

html.light-mode {
    --bg-page: #f7f7f7;
    --bg-card: #ffffff;
    --bg-card-alt: #eeeeee;
    --text-white: #ffffff;
    --text-color: #141414;
    --text-grey: #e9e9e9cf;
    --fg-r: 20;
    --fg-g: 20;
    --fg-b: 20;
    --border-subtle: rgba(0, 0, 0, 0.1);
    /* --brand-red / --brand-red-dark intentionally unchanged
       so the red accent stays consistent in both themes */
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    /* Keeps in-page anchors clear of the sticky header. */
    scroll-padding-top: 6rem;
}

html,
body {
    position: relative;
    min-height: 100%;
}

body {
    background: var(--bg-page);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 3000;
    padding: 0.65rem 1rem;
    color: #fff;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.4rem;
    transform: translateY(-180%);
}

.skip-link:focus {
    transform: translateY(0);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

/* =========================================================
   Typography primitives
   ========================================================= */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0 0 0.85rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-red);
}

.section-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--brand-red);
}

.display-title,
.section-title,
h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text-color);
}

.display-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.display-number,
.service-index,
.process-step span,
.stat-number {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    color: #f2f2f2;
    -webkit-text-fill-color: #f2f2f2;
    -webkit-text-stroke: 3px var(--brand-red);
    paint-order: stroke fill;
    letter-spacing: 0.02em;
    line-height: 1;
}

.section-title {
    font-size: clamp(2rem, 3.6vw, 3.1rem);
    line-height: 1.12;
    margin: 0 0 0.75rem;
}

.lead-copy,
.section-subtitle {
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.68);
    font-size: 1.05rem;
    max-width: 38rem;
    margin-bottom: 0;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.section-head.text-center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-head.text-center .section-subtitle,
.section-head.text-center .section-eyebrow {
    justify-content: center;
}

.section-head.text-center .lead-copy,
.section-head.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.text-link:hover {
    color: var(--brand-red);
}

/* =========================================================
   Navigation
   ========================================================= */
/* The sticky offset lives on the wrapper: a sticky child can only travel
   inside its parent's box, and <header> is exactly the nav's height. */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.site-nav {
    position: relative;
    background: var(--bg-page);
    background: color-mix(in srgb, var(--bg-page) 88%, transparent);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.7rem 0;
    z-index: 1030;
}

.site-nav.is-scrolled {
    background: var(--bg-page);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
}

.brand-logo {
    width: clamp(38px, 5vw, 46px);
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
}

/* The mark is silver, so it needs darkening to read on light backgrounds. */
html.light-mode .brand-logo,
html.light-mode .footer-logo {
    filter: brightness(0.68) contrast(1.3);
}

.brand-mark {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand-red);
    box-shadow: 0 0 0 4px rgba(182, 5, 5, 0.18);
    flex-shrink: 0;
}

.brand-text {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2.4vw, 1.55rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--brand-red) 0%, var(--brand-red-dark) 55%, var(--text-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.navbar-brand:hover .brand-text {
    filter: brightness(1.15);
}

.nav-link {
    margin: 0 0.15rem;
    position: relative;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.55rem 0.7rem !important;
}

.navbar-nav .nav-link {
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.72) !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--text-color) !important;
}

.navbar .nav-link:not(.dropdown-toggle)::after {
    content: "";
    position: absolute;
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.2rem;
    width: auto;
    height: 1px;
    background: var(--brand-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.navbar .nav-link:not(.dropdown-toggle):hover::after,
.navbar .nav-link.active:not(.dropdown-toggle)::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: 0;
    padding: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-shadow: none !important;
}

.toggler-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-left: 1rem;
}

/* Theme toggle + hamburger live in the bar itself, not in the drawer. */
.nav-bar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

.nav-icon,
.nav-chevron,
.mobile-nav-head,
.mobile-nav-foot,
.mobile-nav-backdrop {
    display: none;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn-light,
.btn-primary,
.btn-warning,
.red-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--brand-red) !important;
    border-color: var(--brand-red) !important;
    color: #ffffff !important;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 0.9rem 1.7rem;
    border: none;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    transition: all 0.35s ease !important;
    box-shadow: 0 8px 22px rgba(182, 5, 5, 0.28);
}

.btn-light:hover,
.btn-primary:hover,
.btn-warning:hover,
.red-btn:hover {
    background-color: var(--brand-red-dark) !important;
    border-color: var(--brand-red-dark) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(182, 5, 5, 0.42);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent !important;
    border: 1px solid var(--border-subtle) !important;
    color: var(--text-color) !important;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 0.9rem 1.7rem;
    text-decoration: none;
    transition: all 0.35s ease !important;
}

.btn-outline-light:hover {
    border-color: var(--brand-red) !important;
    color: var(--brand-red) !important;
    transform: translateY(-2px);
}

/* =========================================================
   Home hero
   ========================================================= */
.home-hero {
    /* height: 90vh; */
    padding: 5.5rem 0 4rem;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 15, 15, 0.82) 0%, rgba(15, 15, 15, 0.62) 48%, rgba(15, 15, 15, 0.55) 100%),
        radial-gradient(circle at 12% 40%, rgba(182, 5, 5, 0.28), transparent 55%);
    pointer-events: none;
}

.home-hero>.container {
    position: relative;
    z-index: 1;
}

.home-hero .display-title {
    color: #ffffff;
}

.home-hero .hero-meta strong,
.home-hero .display-number {
    color: #ffffff;
}

.home-hero .lead-copy,
.home-hero .hero-meta span {
    color: rgba(255, 255, 255, 0.86);
}

.home-hero .hero-meta {
    border-top-color: rgba(255, 255, 255, 0.18);
}

.home-hero .btn-outline-light {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.45) !important;
}

.hero-meta {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.hero-meta strong {
    display: block;
    font-size: 1.8rem;
}

.hero-meta span {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.55);
}

.contact-modal .modal-dialog {
    max-width: 980px;
    transform: none;
    opacity: 1;
}

.contact-modal .modal-content {
    position: relative;
    background: var(--bg-card);
    color: var(--text-color);
    border: 1px solid var(--border-subtle);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.contact-modal .modal-content::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-red-dark), transparent);
    z-index: 2;
}

.contact-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    display: grid;
    place-items: center;
}

.contact-modal-close:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
}

.contact-modal-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    min-height: 540px;
}

.contact-modal-aside {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.contact-modal-aside img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-modal-aside::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.78) 100%);
}

.contact-modal-aside-copy {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 1;
    padding: 1.75rem;
    color: #fff;
}

.contact-modal-aside-copy .section-eyebrow {
    color: #fff;
}

.contact-modal-aside-copy .section-eyebrow::before {
    background: var(--brand-red);
}

.contact-modal-aside-copy h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact-modal-aside-copy>p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 1.1rem;
}

.contact-modal-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.contact-modal-meta li {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
    font-size: 0.9rem;
}

.contact-modal-meta li i {
    color: var(--brand-red);
}

.contact-modal-main {
    padding: 2rem 1.75rem 1.75rem;
    background: var(--bg-card);
}

.contact-modal-main h4 {
    font-family: var(--font-display);
    font-size: 1.9rem;
    margin-bottom: 0.35rem;
}

.contact-modal-lead {
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.62);
    margin-bottom: 1.25rem;
}

.contact-modal .contact-form,
.contact-modal .common-contact-form {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}

.contact-modal .form-control {
    background: var(--bg-card-alt);
    border: 1px solid var(--border-subtle);
    color: var(--text-color);
    border-radius: 10px;
    padding: 0.8rem 0.95rem;
    box-shadow: none;
}

.contact-modal .form-control:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(182, 5, 5, 0.15);
    background: var(--bg-card-alt);
    color: var(--text-color);
}

.contact-modal .form-control::placeholder {
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.45);
}

body.contact-modal-open .modal-backdrop {
    background: rgba(6, 6, 6, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 1 !important;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 1.5rem;
    /* box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18); */
}

.contact-form h3,
.contact-form h4 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    margin-bottom: 0.35rem;
    color: var(--text-color);
}

.contact-form>p {
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.62);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-form .form-control {
    background: var(--bg-card-alt);
    border: 1px solid var(--border-subtle);
    color: var(--text-color);
    border-radius: 10px;
    padding: 0.8rem 0.95rem;
    box-shadow: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:hover {
    border-color: rgba(182, 5, 5, 0.4);
}

.contact-form .form-control:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(182, 5, 5, 0.15);
    background: var(--bg-card-alt);
    color: var(--text-color);
}

.contact-form .form-control::placeholder {
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.45);
}

/* =========================================================
   Marquee
   ========================================================= */
.marquee-strip {
    border-block: 1px solid var(--border-subtle);
    overflow: hidden;
    padding: 0.9rem 0;
    /* margin-top: 4rem; */
}

.marquee-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: marquee 28s linear infinite;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.55);
}

.marquee-track span::after {
    content: "•";
    margin-left: 2.5rem;
    color: var(--brand-red);
}

/* =========================================================
   Services / atelier sections
   ========================================================= */
.atelier-section,
.new-service-section,
.work-bento-section,
.insights-section,
.trust-section,
.team-section,
.projects-gallery-section,
.process-section,
.testimonials-section,
.faq-section,
.contact-layout,
.mission-section {
    padding: 6rem 0;
}

.service-rows {
    display: flex;
    flex-direction: column;
}

.service-row {
    display: grid;
    grid-template-columns: 90px 1fr 280px;
    gap: 1.5rem;
    align-items: center;
    padding: 1.75rem 1.875rem;
    border-top: 1px solid var(--border-subtle);
    transition: background 0.35s ease;
}

.service-row:last-child {
    border-bottom: 1px solid var(--border-subtle);
}

.service-index {
    display: inline-block;
    font-size: 2.4rem;
    transition: transform 0.35s ease;
}

.service-copy h3 {
    font-size: 1.8rem;
    margin-bottom: 0.35rem;
}

.service-copy p {
    margin: 0;
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.65);
    max-width: 36rem;
}

.service-visual {
    overflow: hidden;
    height: 110px;
    border-radius: 8px;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-row:hover {
    background: rgba(182, 5, 5, 0.06);
}

.service-row:hover .service-index {
    transform: scale(1.06);
}

.service-row:hover .service-visual img {
    transform: scale(1.08);
}

.section-cta {
    margin-top: 2.5rem;
}

/* =========================================================
   Work bento
   ========================================================= */
.work-bento {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    min-height: 620px;
}

.work-tile {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    min-height: 240px;
}

.work-tile-lg {
    grid-row: 1 / span 2;
    min-height: 620px;
}

.work-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.work-tile:hover img {
    transform: scale(1.06);
}

.work-tile-meta {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}

.work-tile-meta span {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.work-tile-meta h3 {
    margin: 0.25rem 0 0;
    font-size: 1.6rem;
    color: #fff;
}

/* =========================================================
   Smart home
   ========================================================= */
.new-service-visual {
    position: relative;
    height: 460px;
    border-radius: 6px 90px 6px 6px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.new-service-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 45%);
}

.new-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--brand-red);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
}

.new-badge.static-badge {
    position: static;
    margin-top: 1.25rem;
}

.new-service-feature-bar {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    background: rgba(15, 15, 15, 0.55);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 0.9rem 0.6rem;
}

.feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.feature-item i {
    color: var(--brand-red);
    font-size: 1.1rem;
}

/* =========================================================
   Video banner
   ========================================================= */
.video-banner {
    position: relative;
    min-height: 68vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.video-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
}

.video-banner-copy {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 1rem 5rem;
}

.video-banner-copy .section-eyebrow {
    justify-content: center;
    color: #fff;
}

.video-banner-copy .section-eyebrow::before {
    background: #fff;
}

.video-banner-copy h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.video-play-btn {
    position: absolute;
    z-index: 3;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: 0;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.play-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.55);
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    position: relative;
    background: rgba(182, 5, 5, 0.9);
}

.play-circle::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    animation: playRingPulse 2s ease-out infinite;
}

.play-label {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

/* =========================================================
   Trust / testimonials
   ========================================================= */
.trust-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
        "copy portrait"
        "slider portrait";
    column-gap: 2.5rem;
    row-gap: 1.25rem;
    align-items: start;
}

.trust-section {
    overflow-x: clip;
}

.trust-copy {
    grid-area: copy;
}

.trust-portrait {
    grid-area: portrait;
    height: 640px;
    overflow: hidden;
    border-radius: 80px 6px 6px 6px;
}

.trust-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-slider {
    grid-area: slider;
    position: relative;
    z-index: 2;
    width: 100%;
    min-width: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0 0;
}

.info-grid h4 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.info-grid p {
    margin: 0;
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.65);
    font-size: 0.95rem;
}

.trust-section .swiper {
    --swiper-pagination-bullet-size: 8px;
    --swiper-pagination-bullet-horizontal-gap: 4px;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    padding-bottom: 0.25rem;
}

.swiper-slide {
    height: auto;
    display: block;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.6rem;
    height: 100%;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* .testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(182, 5, 5, 0.35);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
} */

.testimonial-rating {
    color: var(--brand-red);
    margin-bottom: 0.85rem;
    letter-spacing: 0.15rem;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    line-height: 1.45;
    color: var(--text-color);
    margin-bottom: 1.1rem;
}

.testimonial-author h6 {
    margin: 0;
    font-size: 0.95rem;
}

.testimonial-author span {
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.55);
    font-size: 0.85rem;
}

.trust-section .swiper-pagination {
    position: relative;
    bottom: auto;
    margin-top: 1.15rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    background: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.28);
    opacity: 1;
    transition: width 0.25s ease, background 0.25s ease;
}

.swiper-pagination-bullet-active {
    width: 22px;
    border-radius: 999px;
    background: var(--brand-red);
}

/* =========================================================
   Insights slider
   ========================================================= */
.insights-slider-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    align-items: center;
}

.insights-viewport {
    overflow: hidden;
}

.insights-track {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.45s ease;
}

.insight-card {
    flex: 0 0 calc(33.333% - 0.84rem);
    min-width: 260px;
    transition: transform 0.35s ease;
}

.insight-card a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.insight-card:hover {
    transform: translateY(-8px);
}

.insight-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: transform 0.6s ease;
}

.insight-card:hover img {
    transform: scale(1.06);
}

.insight-card span {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-red);
}

.insight-card h4 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    margin: 0.35rem 0 0.5rem;
}

.insight-card p {
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.62);
    margin: 0;
    font-size: 0.95rem;
}

.slider-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
    color: var(--text-color);
    display: grid;
    place-items: center;
    transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.slider-arrow:hover:not(:disabled) {
    border-color: var(--brand-red);
    color: var(--brand-red);
    transform: scale(1.08);
}

.slider-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1.5rem;
}

.slider-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.28);
    padding: 0;
}

.slider-dots button.active {
    background: var(--brand-red);
    width: 22px;
    border-radius: 999px;
}

/* =========================================================
   Closing CTA
   ========================================================= */
.closing-cta {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 560px;
}

.closing-cta-media {
    min-height: 420px;
    overflow: hidden;
}

.closing-cta-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 420px;
}

.closing-cta-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3.5rem;
    background: var(--bg-card-alt);
}

.closing-cta-copy h2 {
    font-size: clamp(2rem, 3.4vw, 3rem);
    margin-bottom: 1rem;
}

.closing-cta-copy p {
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.68);
    max-width: 34rem;
}

/* =========================================================
   Inner page intro
   ========================================================= */
.page-intro {
    padding: 4.5rem 0 2.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.managed-page-intro {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 430px;
    padding: 6rem 0 4rem;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.managed-page-intro-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
}

.managed-page-intro .display-title,
.managed-page-intro .lead-copy {
    color: #fff !important;
}

.managed-page-intro .lead-copy {
    max-width: 720px;
}

.page-intro-compact {
    padding-bottom: 3rem;
}

.intro-collage {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0.75rem;
    min-height: 280px;
}

.intro-collage img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.intro-collage img:hover {
    transform: scale(1.04);
}

.intro-collage img:last-child {
    margin-top: 2rem;
    height: 220px;
}

.framed-photo {
    overflow: hidden;
    border-radius: 6px 64px 6px 6px;
}

.framed-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.framed-photo:hover img {
    transform: scale(1.04);
}

/* =========================================================
   About
   ========================================================= */
.about-stats-section {
    padding: 0 0 5rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    overflow: hidden;
    background: var(--bg-card);
}

.stat-item {
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--border-subtle);
    transition: background 0.35s ease;
}

.stat-item:hover {
    background: rgba(182, 5, 5, 0.06);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-icon {
    color: var(--brand-red);
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    display: block;
    transition: transform 0.35s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.12);
}

.stat-number {
    font-size: 2.6rem;
    margin: 0;
}

.stat-number::after {
    content: "+";
    color: var(--brand-red);
    -webkit-text-fill-color: var(--brand-red);
    -webkit-text-stroke: 0;
    margin-left: 2px;
}

.stat-label {
    margin: 0.5rem 0 0;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.55);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    border-radius: 8px;
}

.mission-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 420px;
}

.mission-copy {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-card {
    text-align: center;
}

.team-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.team-image img,
.team-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    inset: auto 0 0 0;
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.9rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.team-social a {
    color: #fff;
    font-size: 1.1rem;
}

.team-card h5 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.4rem;
}

.team-card p {
    margin: 0.2rem 0 0;
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.55);
    font-size: 0.9rem;
}

/* =========================================================
   Contact
   ========================================================= */
.atelier-form {
    padding: 2rem;
}

.studio-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-box {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 1.2rem 1.3rem;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.info-box:hover {
    transform: translateY(-4px);
    border-color: rgba(182, 5, 5, 0.35);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.info-box i {
    color: var(--brand-red);
    font-size: 1.2rem;
    margin-top: 0.15rem;
}

.info-box h5,
.info-box h4 {
    margin: 0 0 0.2rem;
    font-size: 1rem;
}

.info-box p {
    margin: 0;
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.62);
}

.hours-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 1.4rem 1.4rem 1.2rem;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.hours-panel:hover {
    transform: translateY(-4px);
    border-color: rgba(182, 5, 5, 0.35);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.hours-panel h4 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.hours-panel ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.hours-panel li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.95rem;
}

.hours-panel li span {
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.6);
}

.hours-note {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.62);
}

.hours-note i {
    color: var(--brand-red);
    margin-right: 0.35rem;
}

.map-section {
    padding: 0 0 2rem;
}

.map iframe,
.map-section iframe {
    width: 100%;
    height: 420px;
    border: 0;
    filter: grayscale(0.35) contrast(1.05);
}

.faq-accordion .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--border-subtle);
}

.faq-accordion .accordion-button {
    background: transparent;
    color: var(--text-color);
    box-shadow: none;
    font-family: var(--font-display);
    font-size: 1.35rem;
    padding: 1.15rem 0;
    transition: color 0.3s ease;
}

.faq-accordion .accordion-button:hover {
    color: var(--brand-red);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--text-color);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-accordion .accordion-button::after {
    filter: invert(1);
}

html.light-mode .faq-accordion .accordion-button::after {
    filter: none;
}

.faq-accordion .accordion-body {
    padding: 0 0 1.2rem;
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.68);
}

/* =========================================================
   Projects
   ========================================================= */
.project-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-color);
    border-radius: 999px;
    padding: 0.55rem 1.15rem;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--brand-red);
    border-color: var(--brand-red);
    transform: translateY(-2px);
    color: #fff;
}

.project-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-card {
    height: 100%;
    min-width: 0;
    transition: transform 0.35s ease;
}

.project-card:hover {
    transform: translateY(-8px);
}

.project-card-wrap {
    min-width: 0;
}

.project-img {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.project-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.06);
}

.project-category {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 0.35rem;
}

.project-info h5 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    margin: 0 0 0.25rem;
    word-break: break-word;
}

.project-info p {
    margin: 0;
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.55);
    font-size: 0.9rem;
}

.process-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.process-step {
    border-top: 2px solid var(--brand-red);
    padding: 1.4rem 0.2rem 0;
    background: transparent;
    transition: transform 0.35s ease;
}

.process-step:hover {
    transform: translateY(-6px);
}

.process-step span {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.6rem;
}

.process-step i {
    color: var(--brand-red);
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    display: block;
}

.process-step h5 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.process-step p {
    margin: 0;
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.62);
    font-size: 0.95rem;
}

/* =========================================================
   Project detail
   ========================================================= */
.project-detail {
    padding-block: 3.5rem 5rem;
}

.detail-hero {
    margin-bottom: 2rem;
}

.detail-hero img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.detail-block {
    margin-bottom: 2.5rem;
}

.detail-block h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.detail-block p,
.project-content p {
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.7);
}

.project-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 0.75rem 0;
}

.project-content ul,
.project-content ol {
    padding-left: 1.2rem;
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.7);
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
}

.highlight-list li {
    position: relative;
    padding: 0.7rem 0 0.7rem 1.8rem;
    border-bottom: 1px solid var(--border-subtle);
    transition: transform 0.3s ease;
}

.highlight-list li:hover {
    transform: translateX(4px);
}

.highlight-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-red);
}

.material-swatch,
.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 6px;
}

.material-swatch img,
.gallery-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.lightbox-content {
    background: #000;
    border: 0;
}

.lightbox-img {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.detail-sidebar {
    position: sticky;
    top: 6rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 0;
}

.overview-card.info-box {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
    min-width: 0;
}

.overview-card h4 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin: 0 0 0.25rem;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
    width: 100%;
    min-width: 0;
}

.overview-row {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0;
    min-width: 0;
}

.overview-row i {
    color: var(--brand-red);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.overview-row>div {
    min-width: 0;
}

.overview-row span {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.5);
}

.overview-row strong {
    display: block;
    color: var(--text-color);
    word-break: break-word;
    overflow-wrap: anywhere;
}

.detail-sidebar .atelier-form {
    width: 100%;
    min-width: 0;
}

.detail-sidebar .atelier-form .btn {
    white-space: normal;
}

/* =========================================================
   Footer
   ========================================================= */
.footer-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    /* margin-top: 2rem; */
}

.footer-cta {
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.footer-cta-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
}

.footer-cta-copy h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin: 0 0 0.4rem;
}

.footer-cta-note {
    margin: 0;
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.55);
}

.warranty-badge {
    flex-shrink: 0;
}

.badge-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid var(--brand-red);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
}

.badge-header {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-red);
}

.badge-main {
    font-family: var(--font-display);
    font-size: 1.05rem;
    line-height: 1.1;
    font-weight: 600;
}

.footer-main {
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 64px;
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
}

.footer-about {
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.65);
    max-width: 28rem;
}

.footer-heading {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 1.1rem;
    font-weight: 600;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a,
.footer-contact a {
    text-decoration: none;
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.72);
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--brand-red);
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.55rem;
}

.footer-contact li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.72);
}

.footer-contact i {
    color: var(--brand-red);
    margin-top: 0.2rem;
}

.social-icons {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.2rem;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--text-color);
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
    transform: translateY(-3px);
}

.news-item {
    display: flex;
    gap: 0.85rem;
    text-decoration: none;
    color: inherit;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateX(4px);
}

.news-item:hover span {
    color: var(--brand-red);
}

.news-item img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.news-item small {
    display: block;
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.5);
    font-size: 0.75rem;
}

.news-item span {
    display: block;
    font-weight: 500;
}

.footer-locations {
    margin-top: 3rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border-subtle);
}

.location-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.85rem;
    margin: 0;
}

.location-links a {
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.55);
    text-decoration: none;
    font-size: 0.88rem;
}

.location-links a:hover {
    color: var(--brand-red);
}

.footer-bottom {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.5);
}

.footer-credit {
    display: block;
    margin-top: 0.4rem;
    letter-spacing: 0.04em;
}

.footer-credit a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: var(--brand-red);
    text-decoration: underline;
}

/* =========================================================
   WhatsApp
   ========================================================= */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    z-index: 1050;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    animation: whatsappPulse 2.4s ease-in-out infinite;
}

.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* =========================================================
   Theme toggle
   ========================================================= */
.theme-toggle-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.theme-toggle-track {
    width: 58px;
    height: 30px;
    border-radius: 50px;
    background: var(--brand-red);
    display: flex;
    align-items: center;
    padding: 3px;
    transition: background 0.3s ease;
}

html.light-mode .theme-toggle-track {
    background: #e5e7eb;
}

.theme-toggle-thumb {
    width: 24px;
    height: 24px;
    background: #1e293b;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform: translateX(28px);
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

html.light-mode .theme-toggle-thumb {
    background: #fff;
    transform: translateX(0);
}

.theme-icon-sun,
.theme-icon-moon {
    position: absolute;
    font-size: 14px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-icon-sun {
    opacity: 0;
    transform: rotate(90deg);
    color: #f59e0b;
}

.theme-icon-moon {
    opacity: 1;
    transform: rotate(0deg);
    color: #fff;
}

html.light-mode .theme-icon-sun {
    opacity: 1;
    transform: rotate(0deg);
}

html.light-mode .theme-icon-moon {
    opacity: 0;
    transform: rotate(-90deg);
}

.contact-hero,
.blog-hero {
    position: relative;
    overflow: hidden;
    min-height: min(90vh, 720px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4.5rem 0;
    text-align: center;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-slide.active {
    opacity: 1;
    animation: kenBurns 12s ease-in-out infinite alternate;
}

.contact-hero::before,
.services-hero::before,
.blog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.contact-hero .container,
.blog-hero .container {
    position: relative;
    z-index: 2;
}

/* .contact-hero,
.blog-hero {
    min-height: 45vh;
} */

.contact-hero h1,
.contact-hero h2,
.blog-hero h1 {
    font-size: clamp(1.85rem, 4.2vw, 3.5rem);
    font-weight: 700;
    color: #fdfdfd;
    margin-bottom: 1rem;
}

.contact-hero p,
.blog-hero p {
    color: #fdfdfd;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   Mega menu
   ========================================================= */
.mega-dropdown {
    position: static;
}

@media (min-width: 992px) {
    body:has(#citiesDropdown.show)::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 1020;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        pointer-events: none;
    }
}

.mega-dropdown .dropdown-menu.mega-menu {
    width: min(860px, 94vw);
    max-height: 80vh;
    overflow-y: auto;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin-top: 0.75rem;
    padding: 18px;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    background-color: var(--bg-card);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.city-group {
    min-width: 0;
}

.city-card {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    background: var(--bg-card-alt);
    color: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.city-card:hover,
.city-card:focus {
    border-color: var(--brand-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(182, 5, 5, 0.12);
    color: inherit;
}

.city-card img {
    width: 84px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.city-card-copy {
    min-width: 0;
}

.city-card-copy h6 {
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.city-card-copy p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.4;
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.62);
}

.city-toggle-icon {
    font-size: 12px;
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.45);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.city-group.open .city-toggle-icon {
    transform: rotate(180deg);
}

.city-group.open .city-card {
    border-color: var(--brand-red);
}

.city-areas-list {
    display: none;
    margin-top: 8px;
    padding: 10px 10px 4px;
    border: 1px dashed var(--border-subtle);
    border-radius: 10px;
}

.city-group.open .city-areas-list {
    display: block;
}

.city-areas-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-red);
}

.city-areas-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.city-area-item {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    font-size: 0.78rem;
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.75);
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.city-area-item:hover,
.city-area-item:focus {
    color: #fff;
    background: var(--brand-red);
    border-color: var(--brand-red);
}

/* =========================================================
   Theme-aware Bootstrap text utilities
   ========================================================= */
.text-warning {
    color: var(--brand-red) !important;
}

.text-secondary,
.text-muted {
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.6) !important;
}

.text-white-50 {
    color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.5) !important;
}

.text-white,
.text-light {
    color: var(--text-color) !important;
}

.video-banner .text-white,
.video-banner h2,
.work-tile-meta h3,
.team-social a {
    color: #ffffff !important;
}

/* =========================================================
   Reveal animations
   ========================================================= */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-zoom {
    opacity: 0;
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-up {
    transform: translateY(45px);
}

.reveal-left {
    transform: translateX(-55px);
}

.reveal-right {
    transform: translateX(55px);
}

.reveal-zoom {
    transform: scale(0.92);
}

.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view,
.reveal-zoom.in-view {
    opacity: 1;
    transform: none;
}

/* =========================================================
   Keyframes
   ========================================================= */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.12);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes playRingPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35), 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

@keyframes contactFieldIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1199.98px) {
    .work-bento {
        min-height: 520px;
    }

    .work-tile-lg {
        min-height: 520px;
    }

    .trust-portrait {
        height: 560px;
        border-radius: 56px 6px 6px 6px;
    }
}

@media (max-width: 991.98px) {
    .row.g-5 {
        --bs-gutter-x: 1.5rem;
    }

    /* Sideways reveal offsets widen the layout on phones — fade only. */
    [data-aos="fade-left"],
    [data-aos="fade-right"],
    .reveal-left,
    .reveal-right {
        transform: none !important;
    }

    /* ---------------------------------------------------------
       App-style mobile navigation drawer
       --------------------------------------------------------- */
    /* backdrop-filter would make the header the containing block for the
       fixed drawer, so keep the mobile bar opaque instead. */
    .site-nav {
        background: var(--bg-page);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .navbar-toggler {
        position: relative;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        border: 1px solid var(--border-subtle) !important;
        background: var(--bg-card);
        transition: opacity 0.2s ease;
    }

    /* The drawer carries its own close button in the same corner. */
    body.mobile-nav-open .navbar-toggler {
        opacity: 0;
        pointer-events: none;
    }

    .mobile-nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1035;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    body.mobile-nav-open .mobile-nav-backdrop {
        opacity: 1;
        visibility: visible;
    }

    body.mobile-nav-open {
        overflow: hidden;
    }

    /* Sits above the header stacking context, so it would float over the dim. */
    body.mobile-nav-open .whatsapp-float {
        opacity: 0;
        pointer-events: none;
    }

    /* Stays inside the viewport (no off-canvas overflow) and wipes in from
       the right, so the layout viewport is never widened on phones. */
    #navMenu.mobile-nav-panel {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        z-index: 1040;
        width: min(86vw, 350px);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        margin: 0;
        background: var(--bg-page);
        border-left: 1px solid var(--border-subtle);
        box-shadow: -18px 0 45px rgba(0, 0, 0, 0.28);
        clip-path: inset(0 0 0 100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        transition: clip-path 0.34s cubic-bezier(0.22, 0.61, 0.36, 1),
            opacity 0.26s ease, visibility 0.34s;
    }

    body.mobile-nav-open #navMenu.mobile-nav-panel {
        clip-path: inset(0 0 0 0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    #navMenu.mobile-nav-panel > * {
        transform: translateX(16px);
        transition: transform 0.34s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    body.mobile-nav-open #navMenu.mobile-nav-panel > * {
        transform: none;
    }

    .mobile-nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        padding: 1rem 1.15rem;
        border-bottom: 1px solid var(--border-subtle);
        position: sticky;
        top: 0;
        background: var(--bg-page);
        z-index: 2;
    }

    .mobile-nav-title {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        min-width: 0;
    }

    .mobile-nav-title .brand-text {
        font-size: 1.05rem;
    }

    .mobile-nav-title .brand-logo {
        width: 34px;
    }

    .mobile-nav-close {
        flex-shrink: 0;
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        border: 1px solid var(--border-subtle);
        background: var(--bg-card);
        color: var(--text-color);
        font-size: 0.95rem;
    }

    #navMenu .navbar-nav {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        width: 100%;
        padding: 0.9rem 0.85rem 0.25rem;
        margin: 0;
    }

    #navMenu .nav-item {
        width: 100%;
    }

    #navMenu .nav-link {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        width: 100%;
        margin: 0;
        padding: 0.9rem 0.95rem !important;
        border-radius: 14px;
        border: 1px solid transparent;
        font-size: 0.95rem;
        letter-spacing: 0.04em;
        text-transform: none;
        font-weight: 500;
        background: var(--bg-card);
        color: var(--text-color) !important;
    }

    #navMenu .nav-link.active {
        border-color: rgba(182, 5, 5, 0.4);
        background: rgba(182, 5, 5, 0.08);
    }

    #navMenu .nav-link::after {
        display: none !important;
    }

    #navMenu .nav-link .nav-icon {
        display: inline-flex;
        width: 34px;
        height: 34px;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: var(--bg-card-alt);
        color: var(--brand-red);
        font-size: 1rem;
    }

    #navMenu .nav-link span {
        flex: 1;
        min-width: 0;
    }

    #navMenu .nav-link .nav-chevron {
        display: inline-block;
        font-size: 0.72rem;
        color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.4);
    }

    #navMenu .nav-link.dropdown-toggle::after {
        display: inline-block !important;
        margin: 0;
        color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.45);
    }

    /* Cities becomes an in-drawer accordion */
    #navMenu .mega-dropdown .dropdown-menu.mega-menu {
        position: static !important;
        transform: none !important;
        inset: auto !important;
        display: none;
        float: none;
        width: 100%;
        max-width: none;
        max-height: none;
        overflow: visible;
        margin: 0.4rem 0 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    #navMenu .mega-dropdown .dropdown-menu.mega-menu.show {
        display: block;
    }

    #navMenu .mega-menu-inner {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    #navMenu .city-card {
        padding: 0.6rem;
        border-radius: 12px;
    }

    #navMenu .city-card img {
        width: 58px;
        height: 50px;
    }

    #navMenu .city-card-copy p {
        font-size: 0.72rem;
    }

    #navMenu .city-card-copy p + p {
        display: none;
    }

    .mobile-nav-foot {
        display: block;
        margin-top: auto;
        padding: 1rem 1.15rem 1.35rem;
    }

    .mobile-nav-cta {
        width: 100%;
        justify-content: center;
    }

    .mobile-nav-contact {
        list-style: none;
        margin: 1rem 0 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .mobile-nav-contact a {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        font-size: 0.85rem;
        text-decoration: none;
        color: rgba(var(--fg-r), var(--fg-g), var(--fg-b), 0.72);
    }

    .mobile-nav-contact a i {
        color: var(--brand-red);
    }

    .mobile-nav-social {
        display: flex;
        gap: 0.6rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-subtle);
    }

    .mobile-nav-social a {
        width: 36px;
        height: 36px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        border: 1px solid var(--border-subtle);
        color: var(--text-color);
        text-decoration: none;
    }

    .atelier-section,
    .new-service-section,
    .work-bento-section,
    .insights-section,
    .trust-section,
    .team-section,
    .projects-gallery-section,
    .process-section,
    .testimonials-section,
    .faq-section,
    .contact-layout,
    .mission-section {
        padding: 3.5rem 0;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
        margin-bottom: 2rem;
    }

    .home-hero {
        padding: 3.25rem 0 3rem;
    }

    .service-row {
        grid-template-columns: 60px 1fr;
        padding: 1.35rem 0;
    }

    .service-visual {
        grid-column: 1 / -1;
        height: 180px;
    }

    .work-bento {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        min-height: 0;
    }

    .work-tile,
    .work-tile-lg {
        min-height: 280px;
    }

    .new-service-visual {
        height: 380px;
        border-radius: 6px 56px 6px 6px;
    }

    .video-banner {
        min-height: 52vh;
    }

    .trust-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "portrait"
            "slider";
        gap: 1.75rem;
    }

    .trust-portrait {
        height: 380px;
        border-radius: 48px 6px 6px 6px;
    }

    .closing-cta,
    .mission-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .stats-row,
    .process-track {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item:nth-child(2) {
        border-right: 0;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid var(--border-subtle);
    }

    .footer-cta-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .insight-card {
        flex-basis: calc(50% - 0.63rem);
        min-width: 0;
    }

    .mega-dropdown .dropdown-menu.mega-menu {
        left: 0;
        transform: none;
        width: 100%;
        max-width: none;
    }

    .mega-menu-inner {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        position: static;
    }

    .overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-detail {
        padding-block: 2.25rem 3.5rem;
    }

    .detail-hero img {
        max-height: 360px;
    }

    .detail-sidebar .atelier-form {
        padding: 1.4rem;
    }

    .closing-cta-copy {
        padding: 2.5rem 1.5rem;
    }

    .mission-copy {
        padding: 2rem 1.5rem;
    }

    .framed-photo {
        min-height: 280px;
        border-radius: 6px 40px 6px 6px;
    }

    .contact-hero,
    .blog-hero {
        min-height: 52vh;
        padding: 4rem 0;
    }

    .contact-modal-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .contact-modal-aside {
        min-height: 220px;
    }

    .contact-modal-main {
        padding: 1.4rem 1.2rem 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .insights-slider-wrapper {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .insights-slider-wrapper .slider-arrow {
        display: none;
    }

    /* Dots stay visually small but get a finger-sized invisible hit area. */
    .slider-dots,
    .trust-section .swiper-pagination {
        gap: 1rem;
    }

    .slider-dots button,
    .trust-section .swiper-pagination-bullet {
        position: relative;
    }

    .slider-dots button::after,
    .trust-section .swiper-pagination-bullet::after {
        content: "";
        position: absolute;
        inset: -14px -7px;
    }

    .insight-card {
        flex-basis: 100%;
        min-width: 0;
    }

    .new-service-feature-bar {
        padding: 0.7rem 0.35rem;
        gap: 0.25rem;
    }

    .feature-item {
        font-size: 0.68rem;
        letter-spacing: 0.04em;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .testimonial-card {
        padding: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .display-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .atelier-section,
    .new-service-section,
    .work-bento-section,
    .insights-section,
    .trust-section,
    .team-section,
    .projects-gallery-section,
    .process-section,
    .testimonials-section,
    .faq-section,
    .contact-layout,
    .mission-section {
        padding: 2.75rem 0;
    }

    .home-hero {
        padding: 2.5rem 0 2.25rem;
    }

    .managed-page-intro {
        min-height: 360px;
        padding: 5rem 0 3rem;
    }

    .hero-meta {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hero-meta > div {
        min-width: 4.5rem;
    }

    .service-row {
        grid-template-columns: 1fr;
        padding: 1.15rem 0;
    }

    .service-index {
        font-size: 1.8rem;
    }

    .service-copy h3 {
        font-size: 1.35rem;
    }

    .service-visual {
        height: 150px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .trust-portrait {
        height: 260px;
        border-radius: 32px 6px 6px 6px;
    }

    .new-service-visual {
        height: 280px;
        border-radius: 6px 36px 6px 6px;
    }

    .video-banner {
        min-height: 42vh;
    }

    .video-banner-copy {
        padding: 0 1rem 4.25rem;
    }

    .contact-hero,
    .blog-hero {
        min-height: 46vh;
        padding: 3.25rem 0;
    }

    .stats-row,
    .process-track {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: 0;
        border-bottom: 1px solid var(--border-subtle);
    }

    .stat-item:last-child {
        border-bottom: 0;
    }

    .intro-collage {
        grid-template-columns: 1fr;
    }

    .intro-collage img,
    .intro-collage img:last-child {
        margin-top: 0;
        height: 180px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 14px;
        bottom: 14px;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .atelier-form {
        padding: 1.25rem;
    }

    .project-info h5 {
        font-size: 1.25rem;
    }

    .project-filter-tabs {
        gap: 0.45rem;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.35rem;
        -webkit-overflow-scrolling: touch;
    }

    .filter-btn {
        padding: 0.45rem 0.9rem;
        font-size: 0.75rem;
        flex-shrink: 0;
    }

    .project-img img {
        height: 220px;
    }

    .material-swatch img,
    .gallery-item img {
        height: 100px;
    }

    .closing-cta-media,
    .closing-cta-media img,
    .mission-photo img {
        min-height: 240px;
    }

    .footer-cta-copy h2 {
        font-size: 1.7rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .reveal-up,
    .reveal-left,
    .reveal-right,
    .reveal-zoom,
    .marquee-track,
    .play-circle::after,
    .whatsapp-float,
    .theme-toggle-track,
    .theme-toggle-thumb,
    .theme-icon-sun,
    .theme-icon-moon,
    .insight-card,
    .project-card,
    .info-box,
    .hours-panel,
    .process-step,
    .testimonial-card,
    .team-card img,
    .news-item,
    .social-icons a,
    .filter-btn,
    .slider-arrow,
    .stat-item,
    .stat-icon,
    .framed-photo img,
    .intro-collage img,
    .highlight-list li,
    .service-row,
    .faq-accordion .accordion-button {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}