:root {
    --pink: #e7368f;
    --pink-dark: #b91467;
    --ink: #22242a;
    --muted: #62666f;
    --line: #e7e9ee;
    --surface: #ffffff;
    --soft: #f7f8fb;
    --green: #147d64;
    --yellow: #f3bf35;
    --shadow: 0 22px 60px rgba(34, 36, 42, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
    padding: 14px clamp(18px, 4vw, 56px);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(231, 233, 238, 0.9);
    backdrop-filter: blur(14px);
}

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

.brand-mark {
    display: grid;
    place-items: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    color: #fff;
    background: var(--pink);
    border: 3px solid var(--yellow);
    border-radius: 8px;
    font-weight: 800;
}

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

.brand strong {
    font-size: 1rem;
    line-height: 1.1;
}

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

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    padding: 10px 12px;
    color: var(--muted);
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--ink);
    background: var(--soft);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.menu-button span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    align-items: center;
    gap: clamp(32px, 6vw, 84px);
    min-height: calc(100vh - 76px);
    padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 72px);
    background: linear-gradient(90deg, #fff 0%, #fff 54%, #f3f8f6 54%, #f3f8f6 100%);
}

.hero-content {
    max-width: 760px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: break-word;
}

h1 {
    max-width: 10ch;
    margin: 0;
    color: var(--pink);
    font-size: clamp(4.2rem, 12vw, 9rem);
    line-height: 0.88;
    letter-spacing: 0;
}

h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 4.25rem);
    line-height: 1;
    letter-spacing: 0;
}

h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    line-height: 1.2;
}

.hero-copy {
    max-width: 680px;
    margin: 26px 0 0;
    color: #3f434b;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 34px 0 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    text-align: center;
}

.button.primary {
    color: #fff;
    background: var(--pink);
    box-shadow: 0 14px 28px rgba(231, 54, 143, 0.24);
}

.button.primary:hover,
.button.primary:focus-visible {
    background: var(--pink-dark);
}

.button.secondary {
    color: var(--ink);
    background: #fff;
    border-color: var(--line);
}

.button.full {
    width: 100%;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 42px 0 0;
}

.hero-facts div {
    padding-top: 14px;
    border-top: 3px solid var(--yellow);
}

.hero-facts dt {
    font-weight: 800;
}

.hero-facts dd {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.hero-media {
    align-self: stretch;
    min-height: 520px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.section {
    padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
    max-width: 860px;
    margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
    max-width: 680px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.06rem;
}

.services {
    background: var(--ink);
    color: #fff;
}

.services .eyebrow {
    color: var(--yellow);
}

.services .section-heading p:not(.eyebrow),
.service-card p {
    color: #c9ccd4;
}

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

.service-card {
    min-height: 230px;
    padding: 24px;
    background: #2d3038;
    border: 1px solid #3c4049;
    border-radius: 8px;
}

.service-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 8px;
}

.service-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.about {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
    align-items: center;
    gap: clamp(30px, 6vw, 76px);
    background: #fff;
}

.about-copy p:not(.eyebrow) {
    max-width: 720px;
    color: var(--muted);
}

.about-highlight {
    margin-top: 28px;
    padding: 20px;
    background: #f3f8f6;
    border-left: 6px solid var(--green);
    border-radius: 8px;
}

.about-highlight strong,
.about-highlight span {
    display: block;
}

.about-highlight span {
    margin-top: 4px;
    color: var(--muted);
}

.press-card {
    margin: 0;
}

.press-card img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.press-card figcaption {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.9rem;
}

.gallery {
    background: var(--soft);
}

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

.gallery-item {
    position: relative;
    min-height: 360px;
    margin: 0;
    overflow: hidden;
    background: #ddd;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.gallery-item figcaption {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
    color: #fff;
    background: rgba(34, 36, 42, 0.78);
    border-radius: 8px;
    font-weight: 800;
}

.contact {
    padding: clamp(56px, 8vw, 90px) clamp(18px, 5vw, 72px);
    color: #fff;
    background: var(--green);
}

.contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
    align-items: center;
    gap: 28px;
}

.contact .eyebrow {
    color: var(--yellow);
}

.contact p:not(.eyebrow) {
    max-width: 680px;
    color: #d8f0e9;
}

.contact-panel {
    display: grid;
    gap: 12px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
}

.phone-link {
    display: block;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 900;
}

.contact-panel span {
    text-align: center;
    color: #d8f0e9;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 25;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 18px;
    color: #fff;
    background: var(--green);
    border: 2px solid #fff;
    border-radius: 8px;
    box-shadow: 0 14px 36px rgba(20, 125, 100, 0.3);
    font-weight: 900;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 26px clamp(18px, 5vw, 72px);
    color: #fff;
    background: #15171c;
}

.site-footer strong,
.site-footer span {
    display: block;
}

.site-footer span {
    color: #aeb3bd;
}

.site-footer a {
    color: var(--yellow);
    font-weight: 800;
}

@media (max-width: 980px) {
    .hero,
    .about,
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        background: #fff;
    }

    .hero-media {
        min-height: 420px;
    }

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

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

@media (max-width: 720px) {
    .site-header {
        min-height: 68px;
    }

    .menu-button {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px 18px 18px;
        background: #fff;
        border-bottom: 1px solid var(--line);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 12px;
    }

    h1 {
        font-size: clamp(3.25rem, 17vw, 4.45rem);
    }

    .hero-copy {
        font-size: 1.05rem;
    }

    .hero-facts,
    .service-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-item,
    .gallery-item img {
        min-height: 330px;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        padding-bottom: 92px;
    }
}
