:root {
    --bg: #f4f8f7;
    --surface: #ffffff;
    --surface-alt: #e8f0ee;
    --surface-strong: #d9e7e4;
    --text: #163330;
    --muted: #5a7470;
    --line: rgba(22, 51, 48, 0.12);
    --primary: #0b7a75;
    --primary-strong: #085e5a;
    --accent: #d7ece8;
    --accent-strong: #97c8bf;
    --shadow-lg: 0 24px 60px rgba(12, 50, 46, 0.12);
    --shadow-md: 0 16px 30px rgba(12, 50, 46, 0.09);
    --radius-lg: 32px;
    --radius-md: 24px;
    --radius-sm: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    background: radial-gradient(circle at top left, rgba(151, 200, 191, 0.35), transparent 24%),
    linear-gradient(180deg, #f8fbfa 0%, var(--bg) 100%);
    color: var(--text);
    line-height: 1.6;
}

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

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

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(248, 251, 250, 0.82);
    border-bottom: 1px solid rgba(22, 51, 48, 0.08);
}

.navbar {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.brand small {
    color: var(--muted);
    font-size: 0.84rem;
}

.brand-mark {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, #8bc7bc 100%);
    color: #ffffff;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
    overflow: hidden;
    flex-shrink: 0;
}

.brand-mark-image {
    background: #ececec;
    border: 2px solid rgba(11, 122, 117, 0.12);
    box-shadow: 0 8px 22px rgba(12, 50, 46, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    color: var(--muted);
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: var(--primary-strong);
    background: rgba(11, 122, 117, 0.09);
    transform: translateY(-1px);
}

.hero,
.page-hero {
    padding: 4.5rem 0 2rem;
}

.hero {
    padding-top: 2rem;
}

.hero-grid,
.contact-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: center;
}

.hero-lead-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.82);
}

.hero-lead-image img {
    --width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.process-copy h2,
.cta-panel h2,
.contact-card h2 {
    /*font-family: "Cormorant Garamond", serif;*/
    letter-spacing: -0.02em;
    line-height: 0.98;
}

.hero-copy h1,
.page-hero h1 {
    font-size: clamp(3rem, 7vw, 5.8rem);
    margin-bottom: 1.2rem;
    max-width: 12ch;
}

.eyebrow {
    margin-bottom: 1rem;
    color: var(--primary-strong);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 800;
}

.hero-text,
.section-heading p,
.process-copy p,
.cta-panel p,
.contact-card p {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 62ch;
}

.hero-actions,
.cta-actions {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

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

.button-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #159289 100%);
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(11, 122, 117, 0.22);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.84);
    color: var(--primary-strong);
    border: 1px solid rgba(11, 122, 117, 0.14);
}

.hero-points {
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.hero-points li {
    position: relative;
    padding-left: 1.6rem;
    color: var(--text);
    font-weight: 600;
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary) 0%, #8bc7bc 100%);
    box-shadow: 0 0 0 6px rgba(11, 122, 117, 0.08);
}

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

.hero-card {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: var(--shadow-lg);
}

.hero-card-main {
    inset: 0 5rem 3.5rem 0;
}

.hero-card-main img {
    width: 100%;
    height: 72%;
    object-fit: cover;
    background: linear-gradient(180deg, #e7f3f0 0%, #f8fbfa 100%);
}

.hero-card-content {
    padding: 1.4rem 1.5rem 1.6rem;
}

.hero-card-content p {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 0.4rem;
}

.hero-card-content strong {
    font-size: 1.18rem;
    line-height: 1.35;
}

.hero-card-detail {
    right: 0;
    bottom: 0;
    width: 44%;
    height: 44%;
    border: 10px solid rgba(248, 251, 250, 0.95);
}

.hero-card-detail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-strip {
    padding: 0 0 1rem;
}

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

.trust-grid article,
.service-card,
.step-card,
.contact-card,
.map-panel,
.cta-panel {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.trust-grid article {
    padding: 1.4rem;
    border-radius: var(--radius-sm);
}

.trust-grid strong,
.footer-title {
    display: block;
    margin-bottom: 0.35rem;
}

.trust-grid p {
    color: var(--muted);
}

.section {
    padding: 5.5rem 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-heading h2,
.process-copy h2,
.cta-panel h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 1rem;
}

.section-heading p {
    margin: 0 auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.service-card {
    border-radius: var(--radius-md);
    padding: 1.2rem;
}

.service-card img {
    border-radius: 20px;
    margin-bottom: 1.2rem;
    min-height: 220px;
    object-fit: cover;
    width: 100%;
    background: linear-gradient(180deg, #edf5f3 0%, #f8fbfa 100%);
}

.service-card h3,
.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

.service-card p,
.step-card p,
.site-footer p,
.site-footer a {
    color: var(--muted);
}

.process {
    background: radial-gradient(circle at 20% 10%, rgba(11, 122, 117, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(232, 240, 238, 0.76), rgba(244, 248, 247, 0));
}

.process-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.5rem;
    align-items: start;
}

.process-steps {
    display: grid;
    gap: 1rem;
}

.step-card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.step-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--primary-strong);
    background: rgba(11, 122, 117, 0.1);
}

.cta-panel {
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.page-hero {
    padding-bottom: 1rem;
}

.contact-hero-art img {
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #edf5f3 0%, #f8fbfa 100%);
    box-shadow: var(--shadow-lg);
}

.contact-layout {
    padding-top: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.25rem;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 1rem;
}

.contact-card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.contact-card h2 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.contact-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 700;
    color: var(--primary-strong);
}

.map-panel {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 100%;
    padding: 0.75rem;
}

.map-panel iframe {
    width: 100%;
    min-height: 620px;
    border: 0;
    border-radius: calc(var(--radius-lg) - 8px);
}

.site-footer {
    padding: 2.5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: #f7fbfa;
    border: 1px solid var(--line);
}

.site-footer a {
    display: block;
    margin-bottom: 0.35rem;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(28px);
    animation: fade-in-up 0.85s ease forwards;
}

.fade-in-up:nth-child(2) {
    animation-delay: 0.08s;
}

.fade-in-up:nth-child(3) {
    animation-delay: 0.16s;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .contact-hero-grid,
    .process-grid,
    .contact-grid,
    .service-grid,
    .trust-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 440px;
        max-width: 620px;
        width: 100%;
        margin: 0 auto;
    }

    .cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .map-panel iframe {
        min-height: 420px;
    }
}

@media (max-width: 760px) {
    .navbar {
        padding: 1rem 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .hero,
    .page-hero {
        padding-top: 2.5rem;
    }

    .hero {
        padding-top: 1.25rem;
    }

    .hero-copy h1,
    .page-hero h1 {
        max-width: 100%;
        font-size: clamp(2.6rem, 15vw, 4rem);
    }

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

    .hero-card-main {
        inset: 0 2.5rem 2.5rem 0;
    }

    .hero-card-detail {
        width: 48%;
        height: 38%;
    }

    .section {
        padding: 4rem 0;
    }

    .contact-card h2 {
        font-size: 1.9rem;
    }

    .footer-grid,
    .cta-panel,
    .contact-card,
    .service-card,
    .step-card,
    .trust-grid article {
        padding: 1.25rem;
    }
}
