@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Momo+Signature&display=swap');
:root {
    --brand: #0B2F1A;
    --ivory: #F6F1E6;
    --text: #2A2A2A;
    --muted: #8A857A;
    --radius: 20px;
    --shadow: 0 10px 30px rgba(0,0,0,.06);
    --nav-h: 84px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    padding-top: var(--nav-h);
    font-family: Inter,system-ui,sans-serif;
    background: #f6f1e6;
    color: var(--text);
    line-height: 1.6
}

img {
    max-width: 100%;
    display: block;
    border-radius: 14px
}

/* utility hide class */
.hide{display:none !important}

a {
    color: inherit
}

.container {
    width: min(1120px,92%);
    margin: auto
}

.itri-subtitle{font-size:1rem;color:var(--brand);margin:0}
.momo-signature-regular{font-family:'Momo Signature',cursive;font-weight:400;font-style:normal}
.section {
    padding: 84px 0
}

h1,h2,h3 {
    color: var(--brand);
    line-height: 1.2
}

h1 {
    font-size: clamp(2rem,5vw,4rem)
}

h2 {
    font-size: clamp(1.6rem,3vw,2.4rem)
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40
}

.navbar {
    background: #f6f1e6;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(11,47,26,.15);
    transition: background-color .25s ease,border-color .25s ease,box-shadow .25s ease
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--nav-h);
    position: relative
}

.nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center
}

.nav-links a {
    text-decoration: none;
    padding: .4rem .6rem;
    border-radius: 10px;
    color: var(--brand)
}

.nav-links a:hover,.nav-links a.active {
    background: var(--brand);
    color: var(--ivory)
}

.nav-links a:focus-visible,.logo:focus-visible {
    outline: 3px solid var(--brand)
}

.logo {
    display: inline-block;
    transition: transform .3s,filter .3s
}

.logo:hover {
    transform: scale(1.03) rotate(2deg)
}

.logo--enter {
    animation: logoEnter .45s ease
}

.logo--compact {
    transform: scale(.9)
}

.logo img {
    transition: filter .25s ease
}

.logo img {
    filter: brightness(0) invert(1)
}

.logo-bg {
    background: var(--brand);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    transition: background-color .25s ease;
    display: inline-block
}

.city-badge {
    position: absolute;
    right: 0;
    background: var(--brand);
    color: var(--ivory);
    padding: .25rem .75rem;
    border-radius: 12px;
    font-size: .8rem
}

.menu-toggle {
    display: none;
    position: absolute;
    left: 0;
    color: var(--brand);
    background: transparent;
    border: 0
}

.nav-scrolled {
    box-shadow: var(--shadow);
    background: rgba(11,47,26,.88);
    border-bottom-color: rgba(246,241,230,.35)
}

.nav-scrolled .nav-links a {
    color: var(--ivory)
}

.nav-scrolled .nav-links a:hover,.nav-scrolled .nav-links a.active {
    background: #f6f1e6;
    color: var(--brand)
}

.nav-scrolled .menu-toggle {
    color: var(--ivory)
}

.nav-scrolled .logo img {
    filter: none
}

.nav-scrolled .logo-bg {
    background: var(--ivory)
}

.hero {
    position: relative;
    min-height: 88vh
}

.hero-carousel,.hero-slide {
    position: absolute;
    inset: 0
}

.hero-slide {
    opacity: 0;
    transition: opacity .6s;
    display: grid;
    place-items: center;
    overflow: hidden
}

.hero-slide.is-active {
    opacity: 1
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0
}

.hero-overlay {
    position: relative;
    z-index: 2;
    min-height: 88vh;
    background: linear-gradient(120deg,rgba(11,47,26,.75),rgba(11,47,26,.35));
    display: grid;
    align-items: center;
    color: var(--ivory)
}

.hero-overlay h1 {
    color: #fff;
    font-weight: 800
}

.btn {
    background: var(--brand);
    color: var(--ivory);
    padding: .75rem 1rem;
    border-radius: 14px;
    text-decoration: none;
    display: inline-block;
    border: 0
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--ivory)
}

.chips {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: 1rem
}

.chips span {
    background: rgba(246,241,230,.2);
    padding: .4rem .8rem;
    border-radius: 999px
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0,0,0,.35);
    color: #fff;
    border: 0;
    width: 42px;
    height: 42px;
    border-radius: 999px
}

.prev {
    left: 1rem
}

.next {
    right: 1rem
}

.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .4rem;
    z-index: 3
}

.carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: #ddd
}

.carousel-dots button.active {
    background: var(--brand)
}

.about-section {
    background: #fff;
    width: 100%
}

.about-section .container {
    width: min(1120px,92%);
    margin: auto
}

.services-section {
    padding: 17px 0 12px
}

.services-infographic {
    position: relative;
    width: min(74%,845px);
    aspect-ratio: 1/1;
    margin: 0 auto;
    background: radial-gradient(circle at 30% 20%,#fff8ee 0%,#f6f1e6 44%,#efe6d7 100%);
    border-radius: 50%;
    padding: 10%;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(31,61,52,.14),inset 0 0 0 1px rgba(199,167,106,.2);
}

.services-infographic:before,.services-infographic:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none
}

.services-infographic:before {
    width: 34%;
    height: 34%;
    top: 6%;
    left: 8%;
    background: radial-gradient(circle,rgba(199,167,106,.2),rgba(199,167,106,0))
}

.services-infographic:after {
    width: 30%;
    height: 30%;
    bottom: 8%;
    right: 10%;
    background: radial-gradient(circle,rgba(31,61,52,.16),rgba(31,61,52,0))
}

.services-ring {
    position: absolute;
    inset: 11%;
    border: 1px solid rgba(199,167,106,.5);
    border-radius: 50%;
}

.services-ring:after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px dashed rgba(199,167,106,.35);
    border-radius: 50%
}

/* visible marker to show rotation */
.services-ring:before{content:"";position:absolute;left:50%;top:-6px;transform:translateX(-50%);width:12px;height:12px;background:var(--brand);border-radius:50%;box-shadow:0 0 0 4px rgba(11,47,26,0.06);z-index:5}

.services-center {
    position: absolute;
    left: 50%;
    top: 56%;
    transform: translate(-50%,-50%);
    text-align: center;
    z-index: 3;
    background: rgba(255,255,255,.46);
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 28px rgba(31,61,52,.1);
    border: 1px solid rgba(199,167,106,.25);
    padding: 1rem 1.2rem;
    min-width: 220px
}

.itri-mark {
    display: grid;
    place-items: center;
    margin: 0 auto .35rem
}

.itri-mark svg {
    width: 56px;
    height: 56px;
    stroke: var(--brand);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.itri-title {
    font-family: "Playfair Display",Georgia,serif;
    font-size: clamp(2.05rem,4.2vw,3.3rem);
    letter-spacing: .08em;
    margin: .1rem 0;
    color: var(--brand)
}

.itri-line {
    display: block;
    width: 150px;
    height: 1px;
    background: #c7a76a;
    margin: .55rem auto
}

.itri-subtitle {
    font-size: 1rem;
    color: var(--brand);
    margin: 0
}

.service-node {
    position: absolute;
    width: 26%;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(31,61,52,.12);
    padding: .82rem;
    box-shadow: 0 8px 18px rgba(31,61,52,.08);
    z-index: 2
}

.node-1 {
    left: 37%;
    top: 8%;
}

.node-2 {
    left: 5%;
    top: 31%
}

.node-3 {
    left: 11%;
    top: 60%
}

.node-4 {
    right: 5%;
    top: 33%;
}

.node-5 {
    right: 9%;
    top: 61%;
}

.node-6 {
    right: 36%;
    top: 81%;
}

.node-7 {
    left: 50%;
    bottom: 7%;
    transform: translateX(-50%);
    width: 28%
}

.node-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #eadfce;
    display: grid;
    place-items: center;
    margin: 0 auto .38rem;
    box-shadow: inset 0 0 0 1px rgba(31,61,52,.1)
}

.node-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--brand);
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round
}

.service-node h3 {
    color: #1f3d34;
    text-align: center;
    margin: .1rem 0 .2rem;
    font-size: 1rem
}

.service-node p {
    margin: .08rem 0;
    text-align: center;
    color: #333;
    font-size: .88rem;
    line-height: 1.25
}

.node-subtitle {
    text-align: center;
    font-weight: 500;
    color: #1f3d34
}

.node-list {
    list-style: none;
    padding: 0;
    margin: .4rem 0 0;
    display: grid;
    gap: .15rem
}

.node-list li {
    font-size: .8rem;
    color: #2f2f2f
}

.node-light {
    font-size: .88em;
    opacity: .75
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1rem
}

.card {
    background: #fff;
    padding: 1.2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1rem
}

.service-card.featured {
    background: var(--brand);
    color: var(--ivory);
    grid-column: span 2
}

.service-card.featured h3 {
    color: var(--ivory)
}

.price-badge {
    font-size: .95rem;
    background: var(--brand);
    color: var(--ivory);
    padding: .2rem .6rem;
    border-radius: 999px
}

.slogan {
    padding: 100px 0;
    text-align: center
}

.slogan p {
    font-size: clamp(2.5rem,10vw,7rem);
    font-weight: 800;
    letter-spacing: .06em;
    display: grid;
    gap: .2em;
    color: var(--brand)
}

.gallery-slider {
    position: relative;
    margin: 0 auto 1rem
}

.gallery-page {
    display: none
}

.gallery-page.is-active {
    display: block
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,280px));
    justify-content: center;
    gap: .8rem;
    margin: 0 auto
}

.gallery-item {
    width: 280px;
    padding: .35rem
}

.gallery-item a {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 14px
}

.gallery-item a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11,47,26,.28);
    opacity: 0;
    transition: opacity .25s ease
}

.gallery-item img {
    width: 100%;
    height: 126%;
    object-fit: cover;
    transition: transform .25s ease, filter .25s ease
}

.gallery-item a:hover::after,
.gallery-item a:focus-visible::after {
    opacity: 1
}

.gallery-item a:hover img,
.gallery-item a:focus-visible img {
    transform: scale(1.03);
    filter: saturate(1.05)
}

.gallery-item--contain a {
    background: #fff
}

.gallery-item--contain img {
    object-fit: contain
}

.gallery-slider-dots {
    display: flex;
    justify-content: center;
    gap: .45rem;
    margin: .6rem 0 1rem
}

.gallery-slider-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: rgba(11,47,26,.22);
    cursor: pointer;
    transition: transform .2s ease, background-color .2s ease
}

.gallery-slider-dots button.active {
    background: var(--brand);
    transform: scale(1.15)
}


.gallery-item figcaption {
    font-size: .9rem;
    color: var(--muted)
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

form label {
    display: block;
    margin-bottom: .7rem
}

input {
    width: 100%;
    padding: .65rem;
    border-radius: 12px;
    border: 1px solid #d7d1c3
}

.hp-field {
    position: absolute;
    left: -9999px
}

iframe {
    width: 100%;
    height: 220px;
    border: 0;
    border-radius: 12px
}

.flash {
    padding: .6rem 1rem;
    border-radius: 10px
}

.success {
    background: #dff4e5
}

.error {
    background: #ffe2e2
}

.footer {
    background: var(--brand);
    color: var(--ivory);
    margin-top: 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 2rem;
    padding: 3rem 0 2rem
}

.footer h3 {
    color: var(--ivory);
    margin-top: 0;
    margin-bottom: .75rem
}

.footer-brand img {
    border-radius: 0;
    margin-bottom: .8rem;
    max-width: 200px;
    filter: brightness(0) invert(1)
}

.footer-brand p,
.footer-links li,
.footer-app p,
.footer-bottom p {
    margin: 0 0 .65rem;
    color: rgba(246,241,230,.92)
}

.footer-contact a,
.footer-links a {
    color: var(--ivory);
    text-decoration: none
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-links a:hover,
.footer-contact a:hover {
    text-decoration: underline
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin: .25rem 0 .95rem
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(246,241,230,.08);
    transition: transform .2s ease, background-color .2s ease
}

.footer-socials a:hover {
    background: rgba(246,241,230,.16);
    transform: translateY(-2px)
}

.footer-socials img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    border-radius: 0
}

.store-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: .7rem;
    align-items: center;
    margin-top: .8rem
}

.store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .25rem .35rem;
    border-radius: 12px;
    text-decoration: none;
    transition: transform .2s ease, opacity .2s ease, background-color .2s ease
}

.store-btn img {
    display: block;
    width: 160px;
    height: auto
}

.store-btn:hover,
.store-btn:focus-visible {
    background: #0b2f1a;
    transform: translateY(-2px);
    opacity: .92
}

.store-btn:hover {
    background: #0b2f1a;
    color: var(--brand);
    border-color: var(--ivory)
}

.footer-bottom {
    border-top: 1px solid rgba(246,241,230,.25);
    padding: 1rem 0
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all .5s
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

@keyframes logoEnter {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.itri-mark img.itri-img {
    width: 299px;
    height: 163px;
    object-fit: contain
}

/* override: remove background, border and shadow from center block */
.services-center {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    min-width: 0 !important;
    border-radius: 0 !important
}

/* rotate the services infographic like a washing machine; counter-rotate nodes and center to keep them upright */
.services-ring{transform-origin:50% 50%;animation:spinMachine 18s linear infinite;will-change:transform;animation-play-state:running}
.service-node{transform-origin:50% 50%;animation:none}
.services-center{animation:none !important}
@keyframes spinMachine{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}

@media (max-width: 900px) {
    .grid-3,.services-grid,.gallery-grid,.contact-grid,.footer-grid {
        grid-template-columns:1fr 1fr
    }

    .nav-inner {
        justify-content: space-between
    }

    .menu-toggle {
        display: block
    }

    .nav-links {
        position: absolute;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: #f6f1e6;
        padding: 1rem;
        flex-direction: column;
        display: none
    }

    .nav-links.open {
        display: flex
    }

    .logo-slot {
        order: -1
    }

    .services-section {
        padding: 14px 0 10px
    }

    .services-infographic {
        min-height: auto;
        padding: 2rem 1rem;
        display: grid;
        gap: 1rem;
        border-radius: 24px;
        aspect-ratio: auto
    }

    .services-ring,.services-center,.service-node {
        position: static;
        transform: none;
        width: 100%
    }

    .service-node {
        max-width: none
    }
}

@media (max-width: 640px) {
    .grid-3,.services-grid,.gallery-grid,.contact-grid,.footer-grid {
        grid-template-columns:1fr
    }

    .service-card.featured {
        grid-column: span 1
    }
}


.service-steps-maquette {
    --green: var(--brand);
    --step-text: #1f2a26;
    --step-muted: #6f7b78;
    --step-muted2: #9aa3a1;
    background: #fff;
    padding: 20px 24px 70px;
}

.service-steps-maquette__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-family: "Poppins",system-ui,-apple-system,"Segoe UI",sans-serif;
}

.service-steps-maquette__hero h1 {
    margin-top: 60px;
    font-size: clamp(2.7rem,6vw,56px);
    letter-spacing: 2.5px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--green);
}

.service-steps-maquette__strapline {
    margin-top: 10px;
    font-size: 18px;
    font-style: italic;
    text-transform: uppercase;
    color: var(--step-muted);
    font-weight: 400;
}

.service-steps-maquette__note {
    margin-top: 8px;
    font-size: 15px;
    font-style: italic;
    color: var(--step-muted2);
    font-weight: 400;
}

.service-steps-maquette__content h2 {
    margin-top: 55px;
    font-size: clamp(2rem,4.2vw,40px);
    line-height: 1.2;
    font-weight: 600;
    color: var(--green);
}

.service-steps-maquette__subtitle {
    margin-top: 12px;
    font-size: 18px;
    color: var(--step-muted);
}

.service-steps-maquette__row {
    margin-top: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.service-steps-maquette__card {
    width: min(100%,300px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-steps-maquette__icon-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-steps-maquette__icon-circle svg {
    width: 58px;
    height: 58px;
    fill: none;
    stroke: #fff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-steps-maquette__card h3 {
    margin-top: 22px;
    font-size: 22px;
    font-weight: 700;
    color: var(--green);
}

.service-steps-maquette__card p {
    margin-top: 14px;
    max-width: 280px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--step-muted);
}

.service-steps-maquette__accent {
    font-weight: 700;
    color: var(--green);
}

.service-steps-maquette__arrow {
    width: clamp(160px,13vw,200px);
    margin-top: 151px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.service-steps-maquette__arrow svg {
    width: 100%;
    height: 20px;
    fill: none;
    stroke: var(--green);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 767px) {
    .service-steps-maquette {
        padding: 8px 20px 52px;
    }

    .service-steps-maquette__hero h1 {
        margin-top: 40px;
        letter-spacing: 1.8px;
    }

    .service-steps-maquette__strapline {
        font-size: 16px;
    }

    .service-steps-maquette__row {
        flex-direction: column;
        align-items: center;
        gap: 38px;
    }

    .service-steps-maquette__arrow {
        display: none;
    }
}

/* Make contact section background white like delivery */
#contact{
    background: #fff;
}

/* Reduce padding/margins for contact section to make it tighter */
#contact{
    padding: 40px 0; /* smaller vertical padding than default .section */
}
#contact .container{
    padding-top: 0;
    padding-bottom: 0;
}
#contact h2{
    margin-top: 0.2rem;
    margin-bottom: 0.6rem;
    font-size: clamp(1.4rem,2.6vw,1.8rem);
}
#contact .contact-grid{
    gap: .6rem;
}
#contact .card{
    padding: .8rem; /* slightly reduced card padding inside contact */
}

.footer-client-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 132px;
    height: 42px;
    min-height: 42px;
    padding: .55rem 1rem;
    border-radius: 12px;
    background: #f6f1e6;
    color: var(--brand);
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    flex: 0 0 auto;
    margin: 22px;
    transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.footer-client-link:hover {
    background: #ffffff;
    color: var(--brand);
    transform: translateY(-2px);
}

.footer-bottom a {
    color: var(--ivory);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}






.footer-socials .footer-client-link {
    width: auto;
    min-width: 132px;
    height: 42px;
    background: #f6f1e6;
    color: var(--brand);
}

.footer-socials .footer-client-link:hover {
    background: #f6f1e6;
    color: var(--brand);
}
