:root {
    --green-950: #002b24;
    --green-900: #003c31;
    --green-800: #075246;
    --green-700: #12685a;
    --green-100: #eaf2ee;
    --green-50: #f5f8f6;
    --lime: #a9c92b;
    --lime-dark: #8eae18;
    --cream: #faf9f3;
    --ink: #17372f;
    --muted: #5d6f68;
    --line: #dfe8e2;
    --white: #ffffff;
    --shadow: 0 22px 60px rgba(0, 54, 44, .12);
    --shadow-soft: 0 12px 34px rgba(0, 54, 44, .08);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 10px;
    --container: 1210px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

a:hover {
    color: inherit;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--green-900);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.025em;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 0;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 12px;
    left: 12px;
    transform: translateY(-180%);
    padding: 12px 18px;
    border-radius: 8px;
    color: var(--white);
    background: var(--green-950);
    font-weight: 700;
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid #d6ef68;
    outline-offset: 4px;
}

.section {
    padding: 92px 0;
}

.section-soft {
    padding: 92px 0;
    background: var(--green-50);
}

.narrow {
    max-width: 850px;
}

.center {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--lime-dark);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.title-line {
    width: 78px;
    height: 5px;
    margin: 22px 0 28px;
    border-radius: 99px;
    background: var(--lime);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.15rem);
}

.section-heading > span {
    flex: 1;
    max-width: 430px;
    height: 1px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--lime), transparent);
}

.section-intro {
    max-width: 760px;
    margin: -18px 0 38px;
    color: var(--muted);
    font-size: 1.08rem;
}

.lead-text {
    color: var(--muted);
    font-size: 1.2rem;
    line-height: 1.8;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 50px;
    padding: 13px 24px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: .92rem;
    font-weight: 800;
    line-height: 1.2;
    box-shadow: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

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

.btn-primary,
.btn-primary:focus,
.btn-primary:active {
    border-color: var(--lime);
    color: var(--green-950);
    background: var(--lime);
}

.btn-primary:hover {
    border-color: #bddc3d;
    color: var(--green-950);
    background: #bddc3d;
    box-shadow: 0 12px 25px rgba(169, 201, 43, .22);
}

.btn-outline {
    border-color: var(--green-900);
    color: var(--green-900);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--green-900);
    color: var(--white);
    background: var(--green-900);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 750;
}

.text-link:hover {
    color: #dff07a;
}

.text-link.dark {
    color: var(--green-900);
}

.text-link.dark:hover {
    color: var(--lime-dark);
}

.play {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 50%;
}

/* Header */
.site-header {
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--white);
}

.site-header .navbar {
    padding: 0;
}

.header-inner {
    min-height: 104px;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 250px;
    color: var(--white);
}

.brand img {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.brand-text {
    display: grid;
    line-height: .92;
}

.brand-text strong {
    color: var(--white);
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.brand-text > span {
    color: var(--lime);
    font-size: .96rem;
    font-weight: 900;
    letter-spacing: .22em;
}

.brand-text small {
    margin-top: 7px;
    color: rgba(255, 255, 255, .72);
    font-size: .49rem;
    font-weight: 700;
    letter-spacing: .12em;
}

.navbar-collapse {
    align-items: center;
    gap: 30px;
}

.main-nav {
    gap: 7px;
}

.main-nav .nav-link {
    position: relative;
    padding: 12px 11px !important;
    color: rgba(255, 255, 255, .86);
    font-size: .88rem;
    font-weight: 700;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--white);
}

.main-nav .nav-link::after {
    position: absolute;
    right: 11px;
    bottom: 3px;
    left: 11px;
    height: 2px;
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    border-radius: 99px;
    background: var(--lime);
    transition: transform .2s ease;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
    transform: scaleX(1);
}

.header-cta {
    min-height: 44px;
    padding: 11px 18px;
    white-space: nowrap;
    font-size: .82rem;
}

.menu-toggle {
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 10px;
    box-shadow: none !important;
}

/* Home hero */
.hero {
    position: relative;
    min-height: 745px;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(112deg, var(--green-950), var(--green-900) 54%, #0e6757);
}

.hero::after {
    position: absolute;
    right: -9%;
    bottom: -44%;
    width: 58%;
    aspect-ratio: 1;
    content: "";
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.hero-decor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-decor-one {
    top: 12%;
    left: -125px;
    width: 270px;
    height: 270px;
    border: 1px solid rgba(169, 201, 43, .18);
}

.hero-decor-two {
    top: 10%;
    right: 39%;
    width: 90px;
    height: 90px;
    background: rgba(169, 201, 43, .08);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 53% 47%;
    min-height: 745px;
}

.hero-copy {
    align-self: center;
    padding: 140px 50px 82px 0;
}

.hero h1 {
    margin: 0;
    color: var(--white);
    font-size: clamp(3.2rem, 6.3vw, 5.65rem);
    font-weight: 850;
    letter-spacing: -.055em;
}

.hero h1 span {
    color: var(--lime);
}

.hero-intro {
    max-width: 610px;
    color: rgba(255, 255, 255, .82);
    font-size: 1.16rem;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 650px;
    margin: 34px 0;
}

.hero-points > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-points i {
    color: var(--lime);
    font-size: 1.38rem;
}

.hero-points span {
    display: flex;
    flex-direction: column;
    color: var(--white);
    font-size: .82rem;
    font-weight: 800;
    line-height: 1.25;
}

.hero-points small {
    color: rgba(255, 255, 255, .6);
    font-size: .68rem;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 27px;
}

.hero-visual {
    position: relative;
    min-height: 745px;
}

.image-frame {
    position: absolute;
    inset: 0 -14vw 0 0;
    overflow: hidden;
    border-radius: 48% 0 0 48%;
}

.image-frame::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(0, 43, 36, .35), transparent 45%);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cards */
.service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 17px;
}

.service-card {
    position: relative;
    min-height: 300px;
    padding: 31px 25px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card::after {
    position: absolute;
    right: -46px;
    bottom: -46px;
    width: 120px;
    height: 120px;
    content: "";
    border-radius: 50%;
    background: var(--green-50);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(169, 201, 43, .65);
    box-shadow: var(--shadow);
}

.service-card > i {
    margin-bottom: 30px;
    color: var(--lime-dark);
    font-size: 2.45rem;
}

.service-card h3 {
    min-height: 55px;
    margin-bottom: 16px;
    font-size: 1.38rem;
}

.service-card p {
    color: var(--muted);
    font-size: .9rem;
}

.service-card > a {
    position: absolute;
    z-index: 2;
    right: 23px;
    bottom: 22px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--green-900);
    transition: background .2s ease, transform .2s ease;
}

.service-card > a:hover {
    transform: translateX(3px);
    background: var(--lime-dark);
}

.strengths {
    padding: 46px 0;
    color: var(--white);
    background: var(--green-900);
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.strengths article {
    display: flex;
    gap: 16px;
    padding: 3px 28px;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.strengths article:first-child {
    padding-left: 0;
}

.strengths article:last-child {
    border-right: 0;
}

.strengths i {
    flex: 0 0 auto;
    margin-top: 4px;
    color: var(--lime);
    font-size: 1.8rem;
}

.strengths h3 {
    margin-bottom: 6px;
    color: var(--white);
    font-size: 1rem;
}

.strengths p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: .8rem;
    line-height: 1.5;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.portfolio-grid figure {
    position: relative;
    height: 340px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--green-900);
    box-shadow: var(--shadow-soft);
}

.portfolio-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.portfolio-grid figure:hover img {
    transform: scale(1.045);
}

.portfolio-grid figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 44px 20px 18px;
    color: var(--white);
    background: linear-gradient(transparent, rgba(0, 35, 29, .9));
}

.portfolio-grid figcaption span {
    font-weight: 800;
}

.portfolio-grid figcaption small {
    color: rgba(255, 255, 255, .76);
    font-size: .75rem;
}

.illustration-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: .82rem;
}

.illustration-note i {
    color: var(--lime-dark);
}

.about-preview-grid,
.about-story-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 68px;
    align-items: center;
}

.about-preview-image,
.about-story-image {
    position: relative;
    overflow: hidden;
    min-height: 440px;
    border-radius: 12px 120px 12px 12px;
    box-shadow: var(--shadow);
}

.about-preview-image::after,
.about-story-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(145deg, transparent 50%, rgba(0, 60, 49, .25));
}

.about-preview-image img,
.about-story-image img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
}

.about-preview-copy h2,
.about-story-copy h2 {
    margin-bottom: 24px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.about-preview-copy p,
.about-story-copy p {
    color: var(--muted);
}

/* Inner page hero */
.page-hero {
    position: relative;
    min-height: 460px;
    padding: 170px 0 74px;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(120deg, var(--green-950), var(--green-900) 64%, #0c6656);
}

.page-hero::after {
    position: absolute;
    top: -30%;
    right: -8%;
    width: 48%;
    aspect-ratio: 1;
    content: "";
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 50%;
}

.page-hero-shape {
    position: absolute;
    border-radius: 50%;
}

.page-hero-shape-one {
    right: 23%;
    bottom: -160px;
    width: 350px;
    height: 350px;
    background: rgba(169, 201, 43, .06);
}

.page-hero-shape-two {
    top: 120px;
    left: -80px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(169, 201, 43, .18);
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 920px;
}

.page-hero-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 16px;
    color: var(--lime);
    background: rgba(255, 255, 255, .06);
    font-size: 1.55rem;
}

.page-hero h1 {
    margin-bottom: 0;
    color: var(--white);
    font-size: clamp(2.7rem, 6vw, 4.9rem);
}

.page-hero p:last-child {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 1.12rem;
}

.breadcrumb-wrap {
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.breadcrumb {
    padding: 14px 0;
    font-size: .83rem;
}

.breadcrumb a {
    color: var(--green-700);
    font-weight: 700;
}

.breadcrumb-item.active {
    color: var(--muted);
}

/* Detailed services */
.service-detail-list {
    display: grid;
    gap: 28px;
}

.service-detail {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 44px;
    align-items: center;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.service-detail.reverse {
    grid-template-columns: 1fr 180px;
}

.service-detail.reverse .service-detail-icon {
    grid-column: 2;
    grid-row: 1;
}

.service-detail.reverse > div:last-child {
    grid-column: 1;
    grid-row: 1;
}

.service-detail-icon {
    display: grid;
    width: 150px;
    height: 150px;
    place-items: center;
    border-radius: 38px 90px 38px 38px;
    color: var(--lime);
    background: var(--green-900);
    font-size: 3.35rem;
}

.service-number {
    margin-bottom: 4px;
    color: var(--lime-dark);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .18em;
}

.service-detail h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.service-detail > div:last-child > p:not(.service-number) {
    color: var(--muted);
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 22px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    color: var(--ink);
    font-size: .91rem;
    font-weight: 650;
}

.check-list li::before {
    position: absolute;
    top: 5px;
    left: 0;
    display: grid;
    width: 16px;
    height: 16px;
    content: "✓";
    place-items: center;
    border-radius: 50%;
    color: var(--green-900);
    background: #dcec9c;
    font-size: .65rem;
    font-weight: 900;
}

.two-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.audience-card {
    padding: 38px;
    border-radius: var(--radius-lg);
    color: var(--white);
    background: var(--green-900);
    box-shadow: var(--shadow);
}

.audience-card:nth-child(2) {
    background: linear-gradient(135deg, #0b5e50, var(--green-950));
}

.audience-card > i {
    margin-bottom: 24px;
    color: var(--lime);
    font-size: 2.5rem;
}

.audience-card h3 {
    color: var(--white);
    font-size: 1.7rem;
}

.audience-card p {
    color: rgba(255, 255, 255, .75);
}

.audience-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    color: var(--lime);
    font-weight: 800;
}

.process-grid,
.idea-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-card,
.idea-card,
.value-card {
    position: relative;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.process-card > span,
.value-card > span {
    position: absolute;
    top: 20px;
    right: 22px;
    color: #dce5e0;
    font-size: 2rem;
    font-weight: 900;
}

.process-card > i,
.idea-card > i,
.value-card > i {
    margin-bottom: 25px;
    color: var(--lime-dark);
    font-size: 2rem;
}

.process-card h3,
.idea-card h3,
.value-card h3 {
    font-size: 1.15rem;
}

.process-card p,
.idea-card p,
.value-card p {
    margin: 0;
    color: var(--muted);
    font-size: .88rem;
}

/* Gallery */
.gallery-featured {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    grid-template-rows: repeat(2, 280px) 330px;
    gap: 20px;
}

.gallery-featured figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.gallery-featured .gallery-large {
    grid-row: 1 / span 2;
}

.gallery-featured .gallery-wide {
    grid-column: 1 / -1;
}

.gallery-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.gallery-featured figure:hover img {
    transform: scale(1.035);
}

.gallery-featured figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 55px 24px 22px;
    color: var(--white);
    background: linear-gradient(transparent, rgba(0, 38, 31, .92));
}

.gallery-featured figcaption strong {
    font-size: 1.15rem;
}

.gallery-featured figcaption span {
    color: rgba(255, 255, 255, .78);
    font-size: .82rem;
}

.info-panel,
.area-panel {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: center;
    margin-top: 34px;
    padding: 28px 32px;
    border: 1px solid #dce9af;
    border-radius: var(--radius-md);
    background: #f8fbe9;
}

.info-panel > i,
.area-icon {
    color: var(--lime-dark);
    font-size: 2rem;
}

.info-panel h2,
.area-panel h2 {
    margin-bottom: 7px;
    font-size: 1.25rem;
}

.info-panel p,
.area-panel p {
    margin: 0;
    color: var(--muted);
}

/* About */
.about-story-grid {
    grid-template-columns: .95fr 1.05fr;
}

.values-grid .value-card {
    min-height: 260px;
}

.area-panel {
    grid-template-columns: auto 1fr auto;
    margin-top: 0;
    padding: 42px;
    border-color: var(--line);
    background: var(--green-50);
}

.area-icon {
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    border-radius: 24px;
    color: var(--lime);
    background: var(--green-900);
}

/* Contact */
.contact-main {
    background: var(--cream);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 40px;
    align-items: start;
}

.contact-information {
    position: sticky;
    top: 28px;
    padding: 10px 0;
}

.contact-information > h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.contact-information > p:not(.eyebrow) {
    color: var(--muted);
}

.contact-card-list {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.contact-card {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: start;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
}

.contact-card > i {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 14px;
    color: var(--lime);
    background: var(--green-900);
}

.contact-card h3 {
    margin-bottom: 3px;
    font-size: .93rem;
}

.contact-card p {
    margin: 0;
    color: var(--green-900);
    font-weight: 800;
}

.contact-card small {
    color: var(--muted);
}

.contact-form-panel {
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow);
}

.form-heading {
    margin-bottom: 26px;
}

.form-heading h2 {
    margin-bottom: 8px;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.form-heading > p:last-child {
    color: var(--muted);
}

.form-label {
    margin-bottom: 7px;
    color: var(--green-900);
    font-size: .88rem;
    font-weight: 800;
}

.form-control,
.form-select {
    min-height: 52px;
    border: 1px solid #d5dfd9;
    border-radius: 10px;
    color: var(--ink);
    background-color: var(--white);
    box-shadow: none;
}

textarea.form-control {
    min-height: 165px;
    resize: vertical;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--lime-dark);
    box-shadow: 0 0 0 .25rem rgba(169, 201, 43, .17);
}

.form-control::placeholder {
    color: #9aa8a2;
}

.form-text {
    text-align: right;
    color: #7c8c85;
    font-size: .74rem;
}

.invalid-feedback {
    font-size: .78rem;
}

.privacy-note,
.recaptcha-note {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: .77rem;
    line-height: 1.55;
}

.privacy-note a {
    color: var(--green-700);
    font-weight: 750;
    text-decoration: underline;
}

.recaptcha-note {
    margin-bottom: 0;
    color: #7b8983;
    font-size: .7rem;
}

.form-status {
    min-height: 0;
    margin-bottom: 0;
    padding: 0;
    border-radius: 10px;
    font-size: .88rem;
    font-weight: 750;
}

.form-status:not(:empty) {
    margin-bottom: 22px;
    padding: 13px 15px;
}

.form-status.success {
    border: 1px solid #b8dcae;
    color: #246421;
    background: #eff9ed;
}

.form-status.error {
    border: 1px solid #efc0bb;
    color: #8c2821;
    background: #fff1ef;
}

.submit-button[disabled] {
    cursor: wait;
    opacity: .76;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.hours-panel {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 70px;
    align-items: center;
    padding: 46px;
    border-radius: var(--radius-lg);
    color: var(--white);
    background: var(--green-900);
    box-shadow: var(--shadow);
}

.hours-panel h2 {
    color: var(--white);
    font-size: 2.2rem;
}

.hours-panel p:not(.eyebrow) {
    margin: 0;
    color: rgba(255, 255, 255, .72);
}

.hours-list {
    margin: 0;
}

.hours-list > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.hours-list > div:last-child {
    border-bottom: 0;
}

.hours-list dt {
    font-weight: 700;
}

.hours-list dd {
    margin: 0;
    color: var(--lime);
    font-weight: 800;
}

/* Legal */
.legal-content {
    background: var(--green-50);
}

.legal-container {
    max-width: 940px;
}

.legal-card {
    margin-bottom: 20px;
    padding: 30px 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.legal-card h2 {
    margin-bottom: 15px;
    font-size: 1.48rem;
}

.legal-card p {
    color: var(--muted);
}

.legal-card p:last-child {
    margin-bottom: 0;
}

.legal-card a {
    color: var(--green-700);
    font-weight: 750;
    text-decoration: underline;
}

/* CTA */
.contact-cta {
    position: relative;
    overflow: hidden;
    padding: 78px 0;
    color: var(--white);
    background: linear-gradient(125deg, var(--green-950), var(--green-900) 68%, #0d6555);
}

.contact-shape {
    position: absolute;
    top: -170px;
    right: -70px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 50%;
}

.contact-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.contact-cta h2 {
    margin-bottom: 12px;
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.1rem);
}

.contact-cta p:not(.eyebrow) {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
}

.contact-cta .btn {
    flex: 0 0 auto;
}

/* Footer */
.site-footer {
    padding: 55px 0 0;
    color: var(--white);
    background: var(--green-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, .72fr);
    gap: 45px;
    padding-bottom: 42px;
}

.footer-brand p {
    max-width: 340px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .64);
    font-size: .84rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links h2 {
    margin-bottom: 7px;
    color: var(--white);
    font-size: .95rem;
}

.footer-links a {
    color: rgba(255, 255, 255, .67);
    font-size: .8rem;
}

.footer-links a:hover {
    color: var(--lime);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding-top: 17px;
    padding-bottom: 17px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .52);
    font-size: .72rem;
}

.footer-bottom p {
    margin: 0;
}

/* 404 */
.error-section {
    min-height: 720px;
    padding: 190px 0 100px;
    color: var(--white);
    background: linear-gradient(125deg, var(--green-950), var(--green-900));
}

.error-content {
    max-width: 760px;
    text-align: center;
}

.error-icon {
    display: grid;
    width: 88px;
    height: 88px;
    margin: 0 auto 16px;
    place-items: center;
    border-radius: 28px;
    color: var(--lime);
    background: rgba(255, 255, 255, .08);
    font-size: 2.2rem;
}

.error-code {
    margin-bottom: 0;
    color: var(--lime);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: .25em;
}

.error-content h1 {
    color: var(--white);
    font-size: clamp(2.7rem, 6vw, 4.6rem);
}

.error-content > p:not(.error-code) {
    color: rgba(255, 255, 255, .72);
    font-size: 1.05rem;
}

.error-content .btn-outline {
    border-color: rgba(255, 255, 255, .75);
    color: var(--white);
}

.error-content .btn-outline:hover {
    border-color: var(--white);
    color: var(--green-900);
    background: var(--white);
}

/* Animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.service-grid .reveal:nth-child(2),
.portfolio-grid .reveal:nth-child(2),
.process-grid .reveal:nth-child(2),
.idea-grid .reveal:nth-child(2),
.values-grid .reveal:nth-child(2) {
    transition-delay: .06s;
}

.service-grid .reveal:nth-child(3),
.portfolio-grid .reveal:nth-child(3),
.process-grid .reveal:nth-child(3),
.idea-grid .reveal:nth-child(3),
.values-grid .reveal:nth-child(3) {
    transition-delay: .12s;
}

.service-grid .reveal:nth-child(4),
.portfolio-grid .reveal:nth-child(4),
.process-grid .reveal:nth-child(4),
.idea-grid .reveal:nth-child(4),
.values-grid .reveal:nth-child(4) {
    transition-delay: .18s;
}

.service-grid .reveal:nth-child(5) {
    transition-delay: .24s;
}

@media (max-width: 1120px) {
    .header-inner {
        gap: 12px;
    }

    .brand {
        min-width: 215px;
    }

    .brand img {
        width: 58px;
        height: 58px;
    }

    .brand-text strong {
        font-size: 1.4rem;
    }

    .main-nav {
        gap: 0;
    }

    .main-nav .nav-link {
        padding-inline: 8px !important;
    }

    .header-cta {
        display: none;
    }

    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .process-grid,
    .idea-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.25fr repeat(3, .75fr);
        gap: 25px;
    }
}

@media (max-width: 991.98px) {
    .site-header {
        position: absolute;
    }

    .header-inner {
        min-height: 88px;
    }

    .navbar-collapse {
        position: absolute;
        top: 82px;
        right: 20px;
        left: 20px;
        display: block;
        overflow: hidden;
        padding: 13px;
        border: 1px solid rgba(255, 255, 255, .16);
        border-radius: 16px;
        background: rgba(0, 48, 40, .98);
        box-shadow: 0 25px 50px rgba(0, 0, 0, .28);
    }

    .navbar-collapse:not(.show) {
        display: none;
    }

    .main-nav .nav-link {
        padding: 12px !important;
    }

    .main-nav .nav-link::after {
        display: none;
    }

    .header-cta {
        display: inline-flex;
        width: 100%;
        margin-top: 10px;
    }

    .hero-grid {
        display: block;
        min-height: auto;
    }

    .hero-copy {
        padding: 155px 0 55px;
    }

    .hero-visual {
        min-height: 440px;
        margin-inline: -20px;
    }

    .image-frame {
        inset: 0;
        border-radius: 46% 0 0 0;
    }

    .hero-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 520px;
    }

    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .strengths article,
    .strengths article:first-child {
        padding: 0;
        border-right: 0;
    }

    .about-preview-grid,
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .about-preview-image,
    .about-story-image {
        min-height: 360px;
    }

    .about-preview-image img,
    .about-story-image img {
        min-height: 360px;
    }

    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 130px 1fr;
        gap: 28px;
        padding: 32px;
    }

    .service-detail.reverse .service-detail-icon,
    .service-detail.reverse > div:last-child {
        grid-column: auto;
        grid-row: auto;
    }

    .service-detail-icon {
        width: 120px;
        height: 120px;
        font-size: 2.7rem;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .contact-information {
        position: static;
    }

    .contact-card-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .hours-panel {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .area-panel {
        grid-template-columns: auto 1fr;
    }

    .area-panel .btn {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .contact-cta-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
    }

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

@media (max-width: 767.98px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section,
    .section-soft {
        padding: 68px 0;
    }

    .brand {
        min-width: 0;
    }

    .brand img {
        width: 52px;
        height: 52px;
    }

    .brand-text strong {
        font-size: 1.2rem;
    }

    .brand-text > span {
        font-size: .72rem;
    }

    .brand-text small {
        display: none;
    }

    .hero-copy {
        padding-top: 132px;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 13vw, 4.4rem);
    }

    .hero-visual {
        min-height: 350px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .section-heading > span {
        width: 100%;
    }

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

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

    .portfolio-grid figure {
        height: 300px;
    }

    .page-hero {
        min-height: 390px;
        padding: 135px 0 58px;
    }

    .page-hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 1fr;
    }

    .service-detail-icon {
        width: 88px;
        height: 88px;
        border-radius: 24px 50px 24px 24px;
        font-size: 2rem;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .two-card-grid,
    .process-grid,
    .idea-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .gallery-featured {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .gallery-featured figure,
    .gallery-featured .gallery-large,
    .gallery-featured .gallery-wide {
        grid-column: auto;
        grid-row: auto;
        height: 300px;
    }

    .contact-card-list {
        grid-template-columns: 1fr;
    }

    .contact-form-panel {
        padding: 28px 22px;
    }

    .hours-panel,
    .area-panel {
        padding: 30px 24px;
    }

    .area-panel {
        grid-template-columns: 1fr;
    }

    .contact-cta {
        padding: 62px 0;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 520px) {
    .hero-points {
        grid-template-columns: 1fr 1fr;
        gap: 18px 8px;
    }

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

    .service-card {
        min-height: 260px;
    }

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

    .service-detail {
        padding: 25px 21px;
    }

    .contact-form-panel {
        border-radius: 18px;
    }

    .hours-panel {
        border-radius: 18px;
    }

    .hours-list > div {
        font-size: .88rem;
    }

    .legal-card {
        padding: 24px 21px;
    }

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

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
