:root {
    --bg: #efede6;
    --bg-soft: #f6f4ee;
    --panel: #ffffff;
    --panel-2: #ece8de;
    --text: #23261f;
    --text-soft: #5d6254;
    --line: rgba(42, 46, 36, 0.12);
    --line-strong: rgba(42, 46, 36, 0.18);
    --olive-deep: #484d41;
    --olive: #68705e;
    --sage: #919882;
    --sage-soft: #cfd3c5;
    --stone: #d8d3c5;
    --accent: #7b846e;
    --shadow: 0 20px 60px rgba(31, 36, 27, 0.10);
    --shadow-soft: 0 12px 30px rgba(31, 36, 27, 0.07);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --max-width: 1280px;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(145, 152, 130, 0.18), transparent 32%),
        linear-gradient(180deg, #f5f3ec 0%, #efede6 46%, #e8e4d8 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(72, 77, 65, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(72, 77, 65, 0.03) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.25), transparent 70%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.25), transparent 70%);
}

::-webkit-scrollbar {
    width: 0;
    height: 0;
}

body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

button,
a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0;
    line-height: 1.75;
    color: var(--text-soft);
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--text);
    line-height: 1.04;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.siteShell {
    min-height: 100vh;
    overflow: hidden;
}

.hero {
    position: relative;
    padding: 26px 0 54px;
}

.heroNoise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 12%, rgba(145, 152, 130, 0.22), transparent 22%),
        radial-gradient(circle at 84% 20%, rgba(216, 211, 197, 0.8), transparent 24%),
        radial-gradient(circle at 76% 72%, rgba(123, 132, 110, 0.10), transparent 28%);
}

.topbar,
.heroContent,
.section,
.impactStrip {
    width: min(var(--max-width), calc(100vw - 40px));
    margin-left: auto;
    margin-right: auto;
}

.topbar {
    position: relative;
    z-index: 2;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(72, 77, 65, 0.10);
    border-radius: 999px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow-soft);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brandLogo {
    width: 74px;
    height: 74px;
    padding: 8px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #ede9dd);
    border: 1px solid var(--line);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.brandLogo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brandText {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brandTitle {
    font-size: 1.22rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.brandSub {
    font-size: 0.92rem;
    color: var(--text-soft);
}

.topbarRight {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 12px;
}

.topbarTag,
.topbarLink,
.topbarButton,
.eyebrow,
.sectionKicker,
.panelLabel,
.zoneTag,
.mapHeader span,
.finalVisualContent span {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.76rem;
    font-weight: 800;
}

.topbarTag {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(72, 77, 65, 0.06);
    border: 1px solid rgba(72, 77, 65, 0.08);
    color: var(--olive-deep);
}

.topbarLink {
    padding: 10px 6px;
    color: var(--text-soft);
}

.topbarLink:hover {
    color: var(--olive-deep);
}

.topbarButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 18px;
    border-radius: 999px;
    background: var(--olive-deep);
    color: #fff;
    border: 1px solid rgba(72, 77, 65, 0.16);
    box-shadow: var(--shadow-soft);
}

.heroContent {
    position: relative;
    z-index: 2;
    padding-top: 34px;
}

.heroGrid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
    gap: 24px;
    align-items: stretch;
}

.heroIntro,
.heroVisual {
    min-width: 0;
}

.heroIntro {
    padding: clamp(16px, 1.8vw, 24px) 0;
}

.eyebrow,
.sectionKicker,
.panelLabel,
.zoneTag,
.mapHeader span,
.finalVisualContent span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--olive-deep);
}

.eyebrow::before,
.sectionKicker::before,
.panelLabel::before,
.zoneTag::before,
.mapHeader span::before,
.finalVisualContent span::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--sage), var(--olive-deep));
    opacity: 0.95;
}

.heroIntro h1 {
    margin-top: 18px;
    font-size: clamp(2.9rem, 6vw, 6.5rem);
    font-weight: 900;
    letter-spacing: -0.07em;
    text-wrap: balance;
}

.heroLead {
    max-width: 720px;
    margin-top: 22px;
    font-size: clamp(1.05rem, 1.4vw, 1.18rem);
}

.heroLead strong {
    color: var(--text);
}

.heroActions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.topbarButton:hover,
.floatingCta:hover {
    transform: translateY(-2px);
}

.btnPrimary {
    background: linear-gradient(135deg, var(--olive-deep), var(--olive));
    color: #fff;
    border: 1px solid rgba(72, 77, 65, 0.16);
    box-shadow: var(--shadow-soft);
}

.btnGhost {
    background: rgba(255,255,255,0.58);
    border: 1px solid var(--line-strong);
    color: var(--text);
}

.heroFacts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 32px;
}

.factCard {
    padding: 18px 18px 16px;
    border-radius: 22px;
    background: rgba(255,255,255,0.58);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.factCard strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.05rem;
    color: var(--text);
}

.factCard span {
    display: block;
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.45;
}

.heroVisual {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 18px;
}

.heroPanel,
.heroPhotoCard,
.serviceCard,
.zoneCard,
.processCard,
.contactCard,
.contactIntro,
.faqItem,
.finalVisualCard,
.signatureText,
.signaturePhotoBlock,
.impactItem {
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,0.70);
    border: 1px solid rgba(72, 77, 65, 0.10);
    box-shadow: var(--shadow);
}

.heroPanel {
    padding: 26px;
    background:
        linear-gradient(160deg, rgba(255,255,255,0.82), rgba(237, 233, 221, 0.9));
}

.heroPanel h2 {
    margin-top: 14px;
    font-size: clamp(1.5rem, 2.3vw, 2.15rem);
    letter-spacing: -0.04em;
}

.heroPanel p {
    margin-top: 14px;
}

.heroPhotoCard {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    background: #d9d4c8;
}

.heroPhoto {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.02);
}

.heroPhotoStamp {
    position: absolute;
    left: 22px;
    bottom: 22px;
    padding: 16px 18px;
    min-width: 170px;
    border-radius: 24px;
    background: rgba(25, 28, 22, 0.68);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.heroPhotoStamp span,
.heroPhotoStamp small {
    display: block;
    color: #fff;
}

.heroPhotoStamp span {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.heroPhotoStamp small {
    margin-top: 4px;
    font-size: 0.84rem;
    opacity: 0.88;
}

.floatingCta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 999px;
    background: var(--olive-deep);
    color: #fff;
    box-shadow: 0 18px 40px rgba(31, 36, 27, 0.24);
}

.impactStrip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 34px;
}

.impactItem {
    padding: 20px 22px;
}

.impactNumber {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    color: var(--olive);
}

.impactItem p {
    color: var(--text);
}

.section {
    padding: 26px 0 34px;
}

.sectionHeader {
    max-width: 920px;
    margin-bottom: 24px;
}

.sectionHeader h2,
.contactIntro h2 {
    margin-top: 14px;
    font-size: clamp(2rem, 3.4vw, 3.55rem);
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.sectionHeader p,
.contactIntro p {
    margin-top: 14px;
    font-size: 1.04rem;
}

.sectionHeaderSplit {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
    gap: 18px 24px;
    align-items: end;
    max-width: 100%;
}

.servicesGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.serviceCard {
    padding: 24px;
    min-height: 238px;
}

.serviceCard.featured {
    background: linear-gradient(180deg, rgba(123, 132, 110, 0.18), rgba(255,255,255,0.82));
}

.serviceCard.dark {
    background: linear-gradient(180deg, rgba(72, 77, 65, 0.94), rgba(55, 59, 49, 0.98));
    border-color: rgba(72, 77, 65, 0.2);
}

.serviceCard.dark h3,
.serviceCard.dark p,
.serviceCard.dark .serviceIndex,
.serviceCard.dark i {
    color: #fff;
}

.serviceCard.soft {
    background: linear-gradient(180deg, rgba(255,255,255,0.76), rgba(236, 232, 222, 0.92));
}

.serviceTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 34px;
}

.serviceTop i {
    font-size: 1.6rem;
    color: var(--olive-deep);
}

.serviceIndex {
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: var(--olive);
}

.serviceCard h3 {
    font-size: 1.5rem;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
}

.serviceCard p {
    line-height: 1.65;
}

.signatureGrid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    gap: 20px;
    align-items: stretch;
}

.signatureText {
    padding: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.76), rgba(236,232,222,0.92));
}

.signatureText h2 {
    margin-top: 14px;
    font-size: clamp(2rem, 3vw, 3rem);
    letter-spacing: -0.05em;
}

.signatureText p + p {
    margin-top: 14px;
}

.signatureList {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.signatureList div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(72, 77, 65, 0.05);
    border: 1px solid rgba(72, 77, 65, 0.08);
}

.signatureList i {
    color: var(--olive-deep);
}

.signatureList span {
    color: var(--text);
    font-weight: 600;
}

.signaturePhotoBlock {
    position: relative;
    overflow: hidden;
    min-height: 480px;
}

.signaturePhoto {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
}

.signatureOverlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
    background: linear-gradient(to top, rgba(24, 27, 21, 0.88), rgba(24, 27, 21, 0.06));
}

.signatureOverlay span {
    display: inline-block;
    color: rgba(255,255,255,0.74);
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.signatureOverlay h3 {
    max-width: 640px;
    color: #fff;
    font-size: clamp(1.55rem, 2.5vw, 2.5rem);
    letter-spacing: -0.04em;
}

.zoneGrid {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
    gap: 20px;
}

.zoneCard {
    padding: 28px;
}

.zoneTextCard {
    background: linear-gradient(180deg, rgba(255,255,255,0.80), rgba(236,232,222,0.95));
}

.zoneTextCard h3,
.mapHeader strong {
    margin-top: 14px;
    font-size: 2rem;
    letter-spacing: -0.045em;
}

.zoneCols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.zoneCols li {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(72, 77, 65, 0.05);
    border: 1px solid rgba(72, 77, 65, 0.08);
    font-weight: 700;
    color: var(--text);
}

.zoneNote {
    margin-top: 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(145, 152, 130, 0.12);
    border: 1px solid rgba(72, 77, 65, 0.10);
}

.zoneNote i {
    margin-top: 4px;
    color: var(--olive-deep);
}

.zoneMapCard {
    background: linear-gradient(180deg, rgba(72, 77, 65, 0.94), rgba(55, 59, 49, 0.98));
}

.mapHeader strong,
.zoneMapCard p,
.mapHeader span {
    color: #fff;
}

.mapHeader span::before {
    background: linear-gradient(135deg, var(--sage-soft), #ffffff);
}

.mapWrap {
    margin-top: 18px;
    overflow: hidden;
    border-radius: 22px;
    min-height: 420px;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.mapWrap iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

.processGrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.processCard {
    padding: 22px;
    background: rgba(255,255,255,0.72);
}

.processCard span {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--olive);
}

.processCard h3 {
    font-size: 1.3rem;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}

.faqList {
    display: grid;
    gap: 14px;
}

.faqItem {
    padding: 0;
    overflow: hidden;
    background: rgba(255,255,255,0.74);
}

.faqItem summary {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding: 24px 58px 24px 24px;
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--text);
}

.faqItem summary::-webkit-details-marker {
    display: none;
}

.faqItem summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.45rem;
    color: var(--olive-deep);
}

.faqItem[open] summary::after {
    content: "−";
}

.faqItem p {
    padding: 0 24px 24px;
}

.finalVisualCard {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.finalVisualPhoto {
    width: 100%;
    height: 420px;
    object-fit: cover;
    filter: saturate(0.95) contrast(1.02);
}

.finalVisualContent {
    position: absolute;
    inset: auto 0 0 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(24, 27, 21, 0.88), rgba(24, 27, 21, 0.10));
}

.finalVisualContent span,
.finalVisualContent h2,
.finalVisualContent p {
    color: #fff;
}

.finalVisualContent h2 {
    margin-top: 12px;
    font-size: clamp(1.9rem, 3vw, 3rem);
    letter-spacing: -0.05em;
    max-width: 760px;
}

.finalVisualContent p {
    margin-top: 10px;
    max-width: 600px;
    color: rgba(255,255,255,0.84);
}

.finalVisualContent span::before {
    background: linear-gradient(135deg, #ffffff, var(--sage-soft));
}

.contactWrap {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.88fr);
    gap: 20px;
}

.contactIntro,
.contactCard {
    padding: 30px;
}

.contactIntro {
    background: linear-gradient(180deg, rgba(255,255,255,0.75), rgba(236,232,222,0.94));
}

.contactCard {
    background: linear-gradient(180deg, rgba(72, 77, 65, 0.95), rgba(55, 59, 49, 0.99));
    color: #fff;
}

.contactCard .contactLine {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.contactCard .contactLine span {
    color: rgba(255,255,255,0.74);
    font-size: 0.95rem;
}

.contactCard .contactLine strong {
    text-align: right;
    font-size: 1.02rem;
}

.contactActions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.contactCard .btnGhost {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.16);
    color: #fff;
}

#footer {
    width: min(var(--max-width), calc(100vw - 40px));
    margin: 16px auto 26px;
    padding: 20px 18px 4px;
    text-align: center;
}

#footer p,
#footer a {
    color: var(--text-soft);
    font-size: 0.95rem;
}

#footer a {
    text-decoration: underline;
}

@media screen and (max-width: 1180px) {
    .heroGrid,
    .signatureGrid,
    .zoneGrid,
    .contactWrap,
    .sectionHeaderSplit {
        grid-template-columns: 1fr;
    }

    .processGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .servicesGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .heroPhotoCard,
    .heroPhoto {
        min-height: 480px;
    }
}

@media screen and (max-width: 820px) {
    .topbar,
    .heroContent,
    .section,
    .impactStrip,
    #footer {
        width: min(var(--max-width), calc(100vw - 24px));
    }

    .topbar {
        border-radius: 28px;
        align-items: flex-start;
        flex-direction: column;
    }

    .topbarRight {
        width: 100%;
        justify-content: flex-start;
    }

    .heroIntro h1 {
        font-size: clamp(2.45rem, 12vw, 4rem);
    }

    .heroFacts,
    .servicesGrid,
    .impactStrip,
    .processGrid,
    .zoneCols {
        grid-template-columns: 1fr;
    }

    .heroPhotoCard,
    .heroPhoto,
    .signaturePhotoBlock,
    .signaturePhoto,
    .finalVisualPhoto,
    .mapWrap,
    .mapWrap iframe {
        min-height: 300px;
        height: 300px;
    }

    .brandLogo {
        width: 64px;
        height: 64px;
    }

    .brandTitle {
        font-size: 1.08rem;
    }

    .brandSub {
        font-size: 0.84rem;
    }

    .heroPanel,
    .serviceCard,
    .zoneCard,
    .processCard,
    .contactCard,
    .contactIntro,
    .signatureText,
    .faqItem summary,
    .finalVisualContent,
    .signatureOverlay {
        padding-left: 20px;
        padding-right: 20px;
    }

    .signatureText,
    .contactIntro,
    .contactCard,
    .zoneCard,
    .processCard,
    .heroPanel,
    .impactItem,
    .serviceCard {
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .contactCard .contactLine {
        flex-direction: column;
        align-items: flex-start;
    }

    .contactCard .contactLine strong {
        text-align: left;
    }

    .floatingCta {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }
}
