:root {
    --teal: #76beb5;
    --teal-dark: #58a99f;
    --mint: #edf8f5;
    --mint2: #d9f5ef;
    --cream: #fbfaf6;
    --ink: #111;
    --muted: #5d6462;
    --white: #fff;
    --shadow: 0 18px 45px rgba(49, 105, 99, .14);
    --radius: 18px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    margin: 0;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    font-size: 17px;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 98px
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 3000;
    pointer-events: none;
    background: var(--mint);
    animation: page-curtain .9s ease forwards
}

img {
    max-width: 100%;
    display: block
}

@keyframes page-curtain {
    0% {
        opacity: 1
    }

    70% {
        opacity: .34
    }

    100% {
        opacity: 0;
        visibility: hidden
    }
}

@keyframes page-drop {
    from {
        opacity: 0;
        transform: translate3d(0, -22px, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

@keyframes intro-rise {
    from {
        opacity: 0;
        transform: translate3d(0, 48px, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

@keyframes intro-soft {
    from {
        opacity: 0;
        transform: scale(.96)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 42px, 0);
    transition: opacity .8s ease, transform .8s cubic-bezier(.2, .75, .25, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform
}

.reveal-left {
    transform: translate3d(-54px, 0, 0)
}

.reveal-right {
    transform: translate3d(54px, 0, 0)
}

.reveal-zoom {
    transform: scale(.94)
}

.reveal.show {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1)
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .topbar,
    .nav > *,
    .hero h1,
    .hero h2,
    .hero p,
    .hero .btn {
        animation: none !important;
        opacity: 1;
        transform: none;
        transition: none
    }

    body::before {
        display: none
    }
}

/* About page */
.about-page-hero {
    position: relative;
    display: grid;
    min-height: 560px;
    place-items: center;
    overflow: hidden;
    background: #173b38 var(--bg) center 48% / cover no-repeat;
    color: #fff;
    text-align: center;
}

.about-page-hero::before {
    position: absolute;
    inset: 0;
    background: rgba(8, 31, 28, .36);
    content: '';
}

.about-page-hero .container {
    position: relative;
    z-index: 1;
}

.about-page-hero h1 {
    margin: 0 0 8px;
    font: 800 68px/1 Fraunces, serif;
    letter-spacing: 0;
    text-shadow: 0 3px 18px rgba(0, 0, 0, .35);
}

.about-page-hero p {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

.about-story {
    padding-top: 105px;
    padding-bottom: 65px;
    background: #fff;
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    gap: 80px;
}

.about-story-copy {
    max-width: 780px;
}

.about-story-copy .title {
    margin-bottom: 18px;
}

.about-story-copy p {
    margin: 0 0 24px;
    color: #303b39;
    line-height: 1.72;
}

.about-story-copy .about-story-lead {
    color: #173b38;
    font-size: 18px;
    font-weight: 600;
}

.about-story-signoff {
    color: #225e57 !important;
    font-family: Fraunces, serif;
    font-size: 22px;
    font-weight: 700;
}

.about-story-visual {
    position: sticky;
    top: 150px;
    align-self: start;
    margin-top: 165px;
}

.about-dog-photo {
    width: 100%;
    max-height: 570px;
    border-radius: 7px;
    object-fit: cover;
    box-shadow: 0 18px 45px rgba(32, 91, 84, .14);
}

.about-paws {
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    opacity: .45;
}

.about-paws img {
    width: 52px;
}

.about-paws img + img {
    width: 34px;
    transform: rotate(20deg);
}

.about-paws-top {
    margin: 0 14px 18px auto;
}

.about-paws-bottom {
    margin: 18px auto 0;
}

.about-pack {
    padding-top: 70px;
    padding-bottom: 110px;
    background: #fff;
}

.about-pack-heading {
    margin-bottom: 45px;
    text-align: center;
}

.about-pack-heading .title {
    margin-bottom: 0;
}

.about-pack-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.about-team {
    padding-top: 18px;
    background: #f2f8f6;
}

.about-team-heading {
    margin-bottom: 42px;
    text-align: center;
}

.about-team-heading .title {
    margin-top: 7px;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, calc((100% - 48px) / 3)));
    justify-content: center;
    gap: 24px;
}

.about-team-member {
    min-width: 0;
    text-align: center;
}

.about-team-member img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 7px;
    object-fit: cover;
}

.about-team-member h3 {
    margin: 19px 0 5px;
    font: 700 25px Fraunces, serif;
}

.about-team-member p {
    margin: 0;
    color: #5d7773;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.about-team-empty {
    margin: 0;
    color: #68817d;
    text-align: center;
}

.about-pack-grid figure {
    aspect-ratio: 4 / 5;
    margin: 0;
    overflow: hidden;
    border-radius: 7px;
    background: #d7f8f2;
}

.about-pack-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.about-pack-grid figure:hover img {
    transform: scale(1.025);
}

@media (max-width: 900px) {
    .about-page-hero {
        min-height: 480px;
    }

    .about-page-hero h1 {
        font-size: 56px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-story-copy {
        max-width: none;
    }

    .about-story-visual {
        position: relative;
        top: auto;
        width: min(100%, 520px);
        margin: 0 auto;
    }

    .about-pack-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .about-team-grid {
        grid-template-columns: repeat(auto-fit, minmax(0, calc((100% - 18px) / 2)));
        gap: 18px;
    }
}

@media (max-width: 560px) {
    .about-page-hero {
        min-height: 390px;
        background-position: 54% center;
    }

    .about-page-hero h1 {
        font-size: 44px;
    }

    .about-page-hero p {
        font-size: 16px;
    }

    .about-story {
        padding-top: 70px;
        padding-bottom: 35px;
    }

    .about-story-copy p {
        font-size: 15px;
    }

    .about-pack {
        padding-top: 55px;
        padding-bottom: 75px;
    }

    .about-pack-grid {
        gap: 12px;
    }

    .about-team-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }
}

a {
    text-decoration: none;
    color: inherit
}

/* 404 */
.not-found-page {
    min-height: 100vh;
    background: var(--teal-dark);
}

.not-found-hero {
    position: relative;
    display: grid;
    min-height: calc(100vh - 112px);
    align-items: center;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(11, 38, 35, .88), rgba(11, 38, 35, .48) 58%, rgba(11, 38, 35, .2)), var(--bg) center / cover no-repeat;
    color: #fff;
}

.not-found-content {
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
}

.not-found-code {
    position: absolute;
    top: 50%;
    left: -8px;
    color: rgba(255, 255, 255, .09);
    font: 900 clamp(190px, 28vw, 410px)/.7 Fraunces, serif;
    transform: translateY(-50%);
    pointer-events: none;
}

.not-found-content .eyebrow,
.not-found-content h1,
.not-found-content p,
.not-found-actions {
    position: relative;
    z-index: 1;
}

.not-found-content .eyebrow {
    color: #b9ebe2;
}

.not-found-content h1 {
    max-width: 780px;
    margin: 12px 0 22px;
    font: 800 clamp(56px, 7vw, 100px)/.96 Fraunces, serif;
}

.not-found-content p {
    max-width: 620px;
    margin: 0 0 32px;
    font-size: 17px;
    line-height: 1.75;
}

.not-found-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.not-found-secondary {
    border: 1px solid rgba(255, 255, 255, .7);
    background: rgba(11, 38, 35, .28);
}

@media (max-width: 620px) {
    .not-found-hero {
        min-height: calc(100vh - 86px);
        background: linear-gradient(rgba(11, 38, 35, .66), rgba(11, 38, 35, .88)), var(--bg) 62% center / cover no-repeat;
    }

    .not-found-code {
        top: 35%;
        font-size: 180px;
    }

    .not-found-content h1 {
        font-size: 54px;
    }

    .not-found-actions .btn {
        width: 100%;
        text-align: center;
    }
}

.serif {
    font-family: Georgia, 'Times New Roman', serif
}

.container {
    width: min(1320px, 96%);
    margin: auto
}

.topbar {
    height: 98px;
    background: #fff;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 18px rgba(0, 0, 0, .04);
    animation: page-drop .75s cubic-bezier(.2, .75, .25, 1) both
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.nav > * {
    animation: intro-soft .7s ease both
}

.nav > :nth-child(1) {
    animation-delay: .08s
}

.nav > :nth-child(2) {
    animation-delay: .18s
}

.nav > :nth-child(3) {
    animation-delay: .28s
}

.nav > :nth-child(4) {
    animation-delay: .36s
}

.topbar-logo {
    width: auto;
    height: 52px;
    max-width: 205px;
    object-fit: contain;
    flex: 0 0 auto
}

.logo {
    font-weight: 900;
    color: var(--teal-dark);
    font-size: 24px;
    line-height: .9;
    display: flex;
    align-items: center;
    gap: 8px
}

.logo .paw {
    font-size: 34px
}

.menu {
    display: flex;
    gap: 50px;
    align-items: center;
    letter-spacing: 4px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase
}

/* Snacks catalog */
.snack-landing-hero.hero.home {
    min-height: 620px;
}

.snack-landing-hero h1 {
    font-size: clamp(54px, 7vw, 92px);
}

.snack-kitchen-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, .8fr);
    align-items: center;
    gap: 60px;
}

.snack-kitchen-copy .title {
    margin: 7px 0 22px;
}

.snack-kitchen-copy p {
    margin: 0 0 18px;
    line-height: 1.75;
}

.snack-kitchen-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 7px;
    object-fit: cover;
}

.snack-values {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
    margin-top: 26px;
}

.snack-values span {
    padding: 12px 14px;
    border-radius: 6px;
    background: #eef7f4;
    font-size: 13px;
    font-weight: 800;
}

.snack-stats {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 42px;
    padding: 24px;
    background: var(--teal);
    color: #fff;
    text-align: center;
}

.snack-stats > div:not(.stats-pattern) { position: relative; z-index: 1; display: grid; gap: 2px; }
.snack-stats > div:not(.stats-pattern) strong { font: 700 38px Fraunces, serif; }
.snack-stats > div:not(.stats-pattern) span { font-size: 12px; }

.snack-signatures { background: #eef7f4; }
.snack-signatures-grid { display: grid; grid-template-columns: minmax(300px, .95fr) minmax(0, 1.05fr); align-items: end; gap: 70px; }
.snack-signature-art img { display: block; width: 100%; max-height: 700px; object-fit: contain; object-position: bottom; }
.snack-signature-content { align-self: center; }
.snack-signature-content .title { margin: 5px 0 8px; }
.snack-signature-content > p { margin: 0 0 20px; line-height: 1.7; }
.signature-snack-list { display: grid; gap: 12px; }
.signature-snack-item { display: grid; grid-template-columns: 76px minmax(0, 1fr) auto; align-items: center; gap: 15px; padding: 12px; border-radius: 7px; background: #fff; }
.signature-snack-item { color: inherit; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.signature-snack-item:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(23, 59, 56, .1); }
.signature-snack-item img { width: 76px; height: 76px; border-radius: 5px; object-fit: cover; }
.signature-snack-item h3 { margin: 0 0 5px; font-size: 16px; }
.signature-snack-item p { margin: 0; color: #5d7773; font-size: 12px; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.signature-snack-meta { align-self: start; display: grid; justify-items: end; gap: 4px; white-space: nowrap; }
.signature-snack-meta strong { color: var(--teal-dark); }
.signature-snack-meta small { color: #6c8582; font-size: 12px; font-weight: 700; }
.snack-signature-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.snack-signature-actions .btn { width: 100%; text-align: center; }
.snack-signature-actions .btn.light { background: #cfeee7; color: var(--teal-dark); }
.snack-gallery-heading { margin-bottom: 36px; text-align: center; }
.snack-gallery-heading .title { margin: 7px 0 0; }
.snack-gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.snack-gallery-grid img { display: block; width: 100%; aspect-ratio: 4 / 5; border-radius: 7px; object-fit: cover; }
.snack-detail-page { min-height: 70vh; background: #f5faf8; }
.snack-detail-back { display: inline-block; margin-bottom: 28px; color: var(--teal-dark); font-weight: 700; }
.snack-detail-grid { display: grid; grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr); gap: 70px; align-items: center; }
.snack-detail-image img { display: block; width: 100%; aspect-ratio: 4 / 5; border-radius: 8px; object-fit: cover; }
.snack-detail-content .title { margin: 7px 0 20px; }
.snack-detail-summary { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 25px; }
.snack-detail-summary > strong { color: var(--teal-dark); font-size: 25px; }
.snack-detail-summary > span:not(.snack-stock) { padding: 6px 10px; border-radius: 5px; background: #e0efeb; font-weight: 700; }
.snack-detail-summary .snack-stock { position: static; box-shadow: none; }
.snack-detail-description { color: #526f6b; font-size: 16px; line-height: 1.8; margin-bottom: 24px; }
.snack-detail-description p { margin: 0 0 12px; }
.snack-detail-description p:last-child { margin-bottom: 0; }
.snack-detail-composition { margin: 0 0 28px; padding: 22px 0; border-top: 1px solid #ccddd9; border-bottom: 1px solid #ccddd9; }
.snack-detail-composition > span { display: block; color: var(--teal-dark); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.snack-detail-ingredients { list-style: none; margin: 0; padding: 0; }
.snack-detail-ingredients li { position: relative; padding-left: 18px; font-size: 14px; line-height: 1.8; color: #3d5c58; }
.snack-detail-ingredients li::before { content: ''; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: #cfeee7; }

@media (max-width: 900px) {
    .snack-kitchen-grid, .snack-signatures-grid { grid-template-columns: 1fr; }
    .snack-kitchen-photo { width: min(100%, 480px); margin: 0 auto; }
    .snack-signature-art { width: min(100%, 520px); margin: 0 auto; }
    .snack-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
    .snack-detail-grid { grid-template-columns: 1fr; gap: 38px; }
    .snack-detail-image { width: min(100%, 520px); margin: 0 auto; }
    .snack-detail-content { padding: 0; }
    .snack-signature-content { padding: 0; }
    .snack-signature-actions { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .snack-landing-hero.hero.home { min-height: 520px; }
    .snack-landing-hero h1 { font-size: 46px; }
    .snack-values, .snack-signature-actions { grid-template-columns: 1fr; }
    .signature-snack-item { grid-template-columns: 64px minmax(0, 1fr); }
    .signature-snack-item img { width: 64px; height: 64px; }
    .signature-snack-meta { grid-column: 2; justify-items: start; }
    .snack-gallery-grid { grid-template-columns: 1fr; }
    .snack-detail-grid { gap: 28px; }
    .snack-detail-summary > strong { font-size: 22px; }
    .snack-detail-description { font-size: 15px; }
    .snack-detail-ingredients li { font-size: 13px; }
}

.snacks-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: min(680px, calc(100svh - 140px));
    overflow: hidden;
    background: #173b38 var(--bg) center / cover no-repeat;
    color: #fff;
}

.snacks-hero::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 45, 42, .8) 0%, rgba(13, 45, 42, .52) 42%, rgba(13, 45, 42, .08) 74%);
    content: '';
}

.snacks-hero .container {
    position: relative;
    z-index: 1;
}

.snacks-hero .eyebrow {
    color: #d7f8f2;
}

.snacks-hero h1 {
    width: min(700px, 100%);
    margin: 8px 0 18px;
    font: 800 72px/1.02 Fraunces, serif;
    letter-spacing: 0;
}

.snacks-hero p {
    width: min(560px, 100%);
    margin: 0 0 28px;
    font-size: 18px;
    line-height: 1.75;
}

.snacks-page {
    background: #fff;
}

.snacks-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .7fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 48px;
}

.snacks-intro .title {
    margin-bottom: 0;
}

.snacks-intro > p {
    margin: 0 0 8px;
    color: #526f6b;
    font-size: 17px;
    line-height: 1.8;
}

.snacks-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.snack-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #dce8e5;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(23, 59, 56, .08);
}

.snack-photo {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #d7f8f2;
}

.snack-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .4s ease;
}

.snack-card:hover .snack-photo img {
    transform: scale(1.025);
}

.snack-stock {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 7px 11px;
    border-radius: 5px;
    background: #fff;
    color: #176046;
    box-shadow: 0 4px 14px rgba(23, 59, 56, .15);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.snack-stock.sold-out {
    background: #f3dddd;
    color: #8a3030;
}

.snack-card-body {
    padding: 28px;
}

.snack-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.snack-card-head h2 {
    margin: 0 0 5px;
    font: 800 28px/1.2 Fraunces, serif;
    letter-spacing: 0;
}

.snack-weight {
    color: #6c8582;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.snack-price {
    flex: 0 0 auto;
    color: #225e57;
    font-size: 19px;
}

.snack-description {
    margin: 20px 0;
    color: #526f6b;
    line-height: 1.75;
}

.snack-ingredients {
    margin: 0 0 24px;
    padding-top: 18px;
    border-top: 1px solid #dce8e5;
}

.snack-ingredients span {
    color: #225e57;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.snack-ingredients p {
    margin: 6px 0 0;
    line-height: 1.7;
}

.btn.disabled {
    background: #d9e1df;
    color: #6c7775;
    pointer-events: none;
}

.snacks-note {
    padding: 70px 0;
    background: #d7f8f2;
}

.snacks-note .container {
    display: grid;
    grid-template-columns: 210px minmax(0, 720px);
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.snacks-note img {
    width: 100%;
    display: block;
}

.snacks-note .title {
    margin-bottom: 12px;
}

.snacks-note p {
    margin: 0;
    color: #456661;
    line-height: 1.8;
}

.snacks-empty {
    padding: 55px 24px;
    text-align: center;
}

.snacks-empty img {
    width: 170px;
}

.snacks-empty h2 {
    margin: 14px 0 6px;
    font: 800 30px Fraunces, serif;
}

.snacks-empty p {
    margin: 0;
    color: #617f7a;
}

@media (max-width: 900px) {
    .snacks-hero {
        min-height: min(600px, calc(100svh - 118px));
        background-position: 58% center;
    }

    .snacks-hero::before {
        background: linear-gradient(90deg, rgba(13, 45, 42, .84), rgba(13, 45, 42, .35));
    }

    .snacks-hero h1 {
        font-size: 56px;
    }

    .snacks-intro {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .snacks-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .snacks-hero {
        align-items: flex-end;
        min-height: min(570px, calc(100svh - 108px));
        padding: 70px 0 48px;
        background-position: 62% center;
    }

    .snacks-hero::before {
        background: linear-gradient(0deg, rgba(13, 45, 42, .91) 5%, rgba(13, 45, 42, .62) 60%, rgba(13, 45, 42, .16));
    }

    .snacks-hero h1 {
        font-size: 44px;
    }

    .snacks-hero p {
        font-size: 16px;
        line-height: 1.65;
    }

    .snack-card-body {
        padding: 22px;
    }

    .snack-card-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .snack-card-head h2 {
        font-size: 25px;
    }

    .snacks-note .container {
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 22px;
    }
}

.menu a.active,
.menu a:hover {
    color: var(--teal-dark)
}

.menu-dropdown {
    position: relative;
}
.menu-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    padding: 8px 0;
    z-index: 100;
}
.menu-dropdown:hover .menu-dropdown-content {
    display: block;
}
.menu-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 5px;
    vertical-align: middle;
    transition: transform .2s;
}
.menu-dropdown:hover > a::after {
    transform: rotate(180deg);
}
.menu-dropdown-content a {
    display: block;
    padding: 8px 18px;
    font-size: 14px;
    color: #3d5c58;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.menu-dropdown-content a:hover {
    background: #f0f8f6;
    color: var(--teal-dark);
}
.menu-dropdown-content a.coming-soon {
    opacity: .55;
    pointer-events: none;
}
.menu-dropdown-content a.coming-soon span {
    font-size: 10px;
    background: #e0efeb;
    color: var(--teal-dark);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    font-weight: 700;
    vertical-align: middle;
}

.social {
    display: flex;
    align-items: center;
    gap: 12px
}

@media (min-width: 901px) and (max-width: 1280px) {
    .nav {
        gap: 16px;
    }

    .menu {
        gap: 20px;
        font-size: 13px;
        letter-spacing: 2px;
    }

    .social .social-icon {
        display: none;
    }
}

.social-icon {
    width: 34px;
    height: 34px;
    color: #fff;
    background: #76beb5;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .25s
}

.social-icon svg {
    width: 25px;
    height: 25px;
    display: block;
    fill: currentColor
}

.social-icon:hover {
    background: var(--teal-dark);
    transform: translateY(-2px)
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 0;
    background: var(--teal);
    color: #fff;
    padding: 16px 34px;
    border-radius: 0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    transition: .25s
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    background: var(--teal-dark)
}

.btn.light {
    background: var(--mint2);
    color: var(--teal-dark)
}

.hamb {
    display: none;
    background: none;
    border: 0;
    font-size: 30px;
    color: var(--teal-dark)
}

.hero {
    min-height: 540px;
    background: linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .36)), var(--bg) center/cover no-repeat;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff
}

.hero.home {
    min-height: 1020px
}

.hero h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(52px, 8vw, 104px);
    line-height: .98;
    margin: 0 0 22px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, .18);
    animation: intro-rise .95s .18s cubic-bezier(.2, .75, .25, 1) both
}

.hero p {
    font-size: clamp(18px, 2.4vw, 30px);
    margin: 0 0 34px;
    animation: intro-rise .9s .34s cubic-bezier(.2, .75, .25, 1) both
}

.hero h2 {
    animation: intro-rise .85s .08s cubic-bezier(.2, .75, .25, 1) both
}

.hero .btn {
    animation: intro-rise .85s .48s cubic-bezier(.2, .75, .25, 1) both
}

.stats {
    position: relative;
    overflow: hidden;
    background: var(--teal);
    color: #fff
}

.stats-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none
}

.stats-mark {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--s);
    aspect-ratio: 1;
    background: rgba(73, 163, 153, .46);
    -webkit-mask-image: url('../svg/jejak.svg');
    mask-image: url('../svg/jejak.svg');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    opacity: .9;
    transform: rotate(var(--r))
}

.stats .wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    padding: 28px 0
}

.stat {
    display: flex;
    min-height: 128px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px;
    border-right: 1px solid rgba(255, 255, 255, .45)
}

.stat:last-child {
    border: 0
}

.stat b {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 78px;
    font-weight: 900;
    display: block;
    line-height: 1
}

.stat span {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    font-size: 25px
}

.section {
    padding: 104px 0
}

.soft {
    background: var(--mint)
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.eyebrow {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    color: var(--teal-dark);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 23px
}

.title {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-weight: 500;
    font-size: clamp(38px, 4.6vw, 68px);
    line-height: 1.02;
    margin: 10px 0 24px
}

.about-title {
    font-weight: 500
}

.lead {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    color: #333;
    max-width: 680px;
    font-size: 18px
}

.split p {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif
}

.about-visual {
    position: relative;
    width: min(100%, 670px);
    justify-self: end
}

.photo-card {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative
}

.about-photo {
    overflow: visible;
    box-shadow: none
}

.about-photo img {
    width: 100%;
    height: auto;
    object-fit: contain
}

.about-badge {
    position: absolute;
    left: 67%;
    top: 73%;
    width: clamp(118px, 12vw, 168px);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 12px 18px rgba(49, 105, 99, .16))
}

.badge-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 42%;
    height: 42%;
    object-fit: contain;
    transform: translate(-50%, -50%)
}

.about-badge svg {
    width: 100%;
    height: 100%;
    display: block;
    animation: badge-spin 14s linear infinite
}

.about-badge circle {
    fill: var(--teal)
}

.about-badge text {
    fill: #fff;
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-size: 16px;
    font-weight: 1000;
    letter-spacing: .3px
}

@keyframes badge-spin {
    to {
        transform: rotate(360deg)
    }
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.photo-card.about-photo img {
    height: auto;
    object-fit: contain
}

.grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.service-card {
    background: var(--mint);
    border-radius: 16px;
    text-align: center;
    min-height: 370px;
    padding: 34px 24px 36px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .04);
    transition: .3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end
}

.service-card-workshop {
    position: relative;
    overflow: hidden;
    background: #76beb5;
    color: #fff
}

.service-card:hover {
    transform: translateY(-7px)
}

.icon {
    position: relative;
    width: 100%;
    height: 205px;
    margin: 0 0 18px;
    display: grid;
    place-items: center
}

.icon::before {
    content: "";
    position: absolute;
    width: 145px;
    height: 128px;
    background: #cfece7;
    border-radius: 42% 58% 52% 48% / 48% 44% 56% 52%;
    transform: rotate(-12deg)
}

.icon-clean::before { display: none }

.icon img {
    position: relative;
    z-index: 1;
    width: 190px;
    height: 190px;
    object-fit: contain;
    margin: 0 auto
}

.service-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 28px;
    line-height: .95;
    text-transform: uppercase;
    margin: 0 0 14px;
    max-width: 240px
}

.service-card .btn {
    min-width: 150px;
    padding: 9px 20px;
    font-size: 15px;
    letter-spacing: .5px
}

.how {
    display: grid;
    grid-template-columns: minmax(32px, 1fr) minmax(420px, 840px) minmax(480px, 620px) minmax(32px, 1fr);
    align-items: stretch;
    background: var(--teal)
}

.how-img {
    grid-column: 2;
    min-height: 620px;
    background: url('../img/home-how.png') center/cover no-repeat
}

.how-text {
    grid-column: 3;
    background: transparent;
    color: #fff;
    padding: 98px 0 90px 48px
}

.how .eyebrow,
.how .title {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif
}

.steps {
    display: grid;
    gap: 24px;
    margin-top: 28px
}

.step {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 20px;
    align-items: center
}

.step b {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    background: url('../img/logokaki2.png') center/contain no-repeat;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    transform: rotate(10deg)
}

.step p {
    margin: 0
}

.testi-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 390px;
    gap: 34px;
    margin: 58px auto 0;
    padding: 82px 4px 36px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    text-align: left
}

.testi-grid::-webkit-scrollbar {
    display: none
}

.testi-carousel {
    position: relative;
    max-width: 1250px;
    margin: 0 auto
}

.testi {
    background: #fff;
    min-height: 300px;
    padding: 62px 38px 34px;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    scroll-snap-align: start
}

.testi-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 38px;
    line-height: .8;
    padding-bottom: 5px;
    transform: translateY(-50%);
    transition: .25s
}

.testi-nav:hover {
    background: var(--teal-dark);
    transform: translateY(-50%) scale(1.05)
}

.testi-prev {
    left: -58px
}

.testi-next {
    right: -58px
}

.testi-avatar {
    position: absolute;
    top: -56px;
    right: 30px;
    width: 160px;
    height: 160px;
    border: 7px solid #fff;
    border-radius: 50%;
    object-fit: cover
}

.quote {
    position: absolute;
    color: var(--teal);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 74px;
    font-weight: 900;
    line-height: 1
}

.quote-open {
    top: -20px;
    left: 28px
}

.quote-close {
    right: 24px;
    bottom: -55px
}

.testi h3 {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    max-width: calc(100% - 172px);
    overflow-wrap: anywhere
}

.testi-service {
    display: block;
    max-width: calc(100% - 172px);
    overflow-wrap: anywhere;
    color: var(--teal);
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    font-style: italic;
    font-weight: 600;
    margin: 3px 0 14px
}

.testi p {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.22;
    margin: 0 0 16px
}

.stars {
    color: var(--teal);
    font-size: 22px;
    letter-spacing: 2px;
    line-height: 1
}

.cta-band {
    background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)), url('../img/home-faq.png') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 180px 20px
}

.cta-band p {
    font-size: clamp(20px, 2.2vw, 32px);
    line-height: 1.35;
    max-width: 920px;
    margin: 0 auto 30px
}

.contact-section {
    background: #fff
}

.contact-grid {
    display: grid;
    grid-template-columns: 410px minmax(520px, 1fr);
    gap: 90px;
    align-items: center;
    width: min(1180px, calc(100% - 32px));
    max-width: 1180px
}

.contact-copy {
    text-align: left
}

.contact-title {
    font-weight: 500;
    margin-bottom: 8px;
    white-space: nowrap
}

.contact-lead {
    margin: 0;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.18
}

.contact-list {
    display: grid;
    gap: 18px;
    margin: 28px 0 30px
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: center
}

.contact-item p {
    margin: 0;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.25
}

.contact-item strong {
    font-size: 18px
}

.circle {
    background: var(--teal);
    color: #fff;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: 0 0 auto
}

.contact-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5
}

.contact-icon svg path {
    fill: none;
    stroke: currentColor;
    stroke-linejoin: round
}

.contact-follow {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid #cfe4df;
    padding-top: 20px;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    font-size: 18px
}

.contact-follow .social-icon {
    width: 42px;
    height: 42px
}

.contact-follow .social-icon svg {
    width: 32px;
    height: 32px
}

.contact-visual {
    position: relative
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block
}

.contact-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    width: clamp(148px, 12vw, 184px);
    aspect-ratio: 1;
    border-radius: 30px;
    background: var(--teal);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -110%);
    text-align: center
}

.contact-badge strong {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    line-height: .9
}

.contact-badge span {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    font-size: clamp(13px, 1.2vw, 18px);
    line-height: 1.1
}

.footer {
    background: var(--teal);
    color: #fff;
    padding: 58px 0
}

.scroll-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 80;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 28px;
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    box-shadow: 0 12px 28px rgba(49, 105, 99, .22);
    transition: .25s
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.scroll-top:hover {
    background: var(--teal-dark)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 45px;
    text-align: center;
    align-items: center
}

.footer .mid {
    border-left: 1px solid rgba(255, 255, 255, .55);
    border-right: 1px solid rgba(255, 255, 255, .55);
    padding: 0 40px
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 18px
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: #6fb2a9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .25s
}

.footer-social a:hover {
    transform: translateY(-2px)
}

.footer-social svg {
    width: 25px;
    height: 25px;
    fill: currentColor
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 30px
}

.feature {
    display: flex;
    gap: 13px;
    align-items: center;
    font-weight: 800
}

.feature .mini {
    width: 42px;
    height: 42px;
    border-radius: 9px;
    background: var(--mint);
    color: var(--teal-dark);
    display: grid;
    place-items: center
}

.pet-types {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 45px
}

.pet-type {
    background: var(--teal);
    color: #fff;
    border-radius: 8px;
    text-align: center;
    padding: 28px 10px;
    font-family: Georgia, serif;
    font-size: 22px
}

.wide-stats {
    background: var(--teal);
    color: #fff;
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 24px;
    margin-top: 50px;
    text-align: center
}

.price-list {
    display: grid;
    gap: 18px;
    margin: 26px 0
}

.price-item {
    background: #fff;
    border-radius: 10px;
    padding: 14px 18px;
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 16px;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .04)
}

.price-item img {
    width: 70px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px
}

.price {
    color: var(--teal-dark);
    font-size: 20px;
    font-weight: 900
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px
}

.gallery img {
    height: 380px;
    width: 100%;
    object-fit: cover;
    border-radius: 7px
}

.service-hero {
    min-height: 560px;
    background-position: center;
    overflow: hidden
}

.dog-walking-hero {
    background-position: center 42%
}

.service-hero h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(64px, 8vw, 112px);
    line-height: .95;
    margin-bottom: 8px
}

.service-hero p {
    font-size: clamp(20px, 2.5vw, 31px);
    font-weight: 500;
    margin: 0
}

.service-detail {
    padding-bottom: 50px
}

.service-detail-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(54px, 7vw, 110px);
    align-items: center
}

.service-detail-copy .title,
.pricing-copy .title {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 400;
    font-size: clamp(42px, 4.4vw, 64px);
    line-height: .98;
    margin-bottom: 16px
}

.service-detail-copy p,
.pricing-copy p {
    max-width: 610px;
    font-size: 18px;
    line-height: 1.58
}

.walking-features {
    margin-top: 28px
}

.walking-features .feature {
    font-size: 17px
}

.walking-features .mini svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.service-detail-visual {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center
}

.service-detail-visual img {
    position: relative;
    z-index: 2;
    width: min(100%, 520px);
    height: 520px;
    object-fit: cover;
    object-position: center;
    border-radius: 0
}

.service-paw {
    position: absolute;
    z-index: 1;
    width: 86px;
    aspect-ratio: 1;
    background: rgba(118, 190, 181, .34);
    -webkit-mask: url('../img/logokaki2.png') center/contain no-repeat;
    mask: url('../img/logokaki2.png') center/contain no-repeat
}

.service-paw-one {
    left: -10px;
    top: 70px;
    transform: rotate(-12deg)
}

.service-paw-two {
    left: 28px;
    top: 162px;
    width: 72px;
    transform: rotate(10deg)
}

.service-paw-three {
    right: 10px;
    bottom: 88px;
    width: 76px;
    transform: rotate(13deg)
}

.service-paw-four {
    right: -46px;
    bottom: 8px;
    width: 66px;
    transform: rotate(-18deg)
}

.service-stats {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin-top: 56px;
    padding: 28px 38px;
    background-color: var(--teal);
    background-image: radial-gradient(circle at 6% 20%, rgba(73, 163, 153, .35) 0 20px, transparent 21px),
        radial-gradient(circle at 24% 80%, rgba(73, 163, 153, .3) 0 18px, transparent 19px),
        radial-gradient(circle at 57% 22%, rgba(73, 163, 153, .28) 0 22px, transparent 23px),
        radial-gradient(circle at 94% 55%, rgba(73, 163, 153, .34) 0 21px, transparent 22px)
}

.service-stats b {
    display: block;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 400;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1
}

.service-stats span {
    display: block;
    font-size: 15px;
    line-height: 1.2
}

.service-pricing {
    background: var(--mint);
    padding: 86px 0 96px
}

.pricing-dog {
    position: relative;
    min-height: 600px;
    display: grid;
    place-items: center
}

.pricing-paw-bg {
    position: absolute;
    width: min(88%, 540px);
    aspect-ratio: 1;
    background: rgba(118, 190, 181, .38);
    -webkit-mask: url('../img/logokaki2.png') center/contain no-repeat;
    mask: url('../img/logokaki2.png') center/contain no-repeat;
    transform: rotate(-14deg) scale(1.12)
}

.pricing-dog img {
    position: relative;
    z-index: 2;
    width: min(92%, 550px);
    object-fit: contain
}

.woof-text {
    position: absolute;
    z-index: 3;
    right: 18%;
    bottom: 20%;
    color: var(--teal-dark);
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 800;
    font-size: 22px;
    writing-mode: vertical-rl;
    transform: rotate(-18deg);
    text-transform: lowercase
}

.pricing-copy {
    max-width: 620px
}

.price-item h3 {
    font-size: 20px;
    line-height: 1.12;
    margin: 0 0 4px;
    font-weight: 900
}

.price-item p {
    max-width: none;
    margin: 0;
    font-size: 14px;
    line-height: 1.22
}

.service-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 12px
}

.service-actions .btn {
    justify-content: center;
    text-align: center
}

.service-gallery-section {
    background: #fff
}

.service-gallery {
    margin-top: 36px
}

.service-gallery img {
    height: 455px;
    transition: transform .45s cubic-bezier(.2, .75, .25, 1), filter .45s ease, box-shadow .45s ease;
    will-change: transform, filter
}

.service-gallery img:hover {
    transform: translateY(-12px) scale(1.035);
    filter: saturate(1.08) contrast(1.04);
    box-shadow: 0 22px 45px rgba(49, 105, 99, .22)
}

.faq-showcase {
    background: #f8fbf9;
    padding: 76px 0 84px
}

.faq-showcase-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 76px;
    align-items: center;
    max-width: 1120px
}

.faq-visual {
    position: relative;
    min-height: 620px;
    display: grid;
    place-items: center
}

.faq-visual img {
    position: relative;
    z-index: 2;
    width: min(88%, 430px);
    aspect-ratio: .72;
    border-radius: 47% 53% 48% 52% / 42% 45% 55% 58%;
    object-fit: cover
}

.faq-blob {
    position: absolute;
    z-index: 1;
    width: min(78%, 390px);
    aspect-ratio: .74;
    right: 22px;
    top: 115px;
    background: var(--teal);
    border-radius: 38% 62% 49% 51% / 44% 38% 62% 56%;
    transform: rotate(8deg)
}

.faq-paws-highlight {
    left: 38px;
    top: 38px;
    width: 82px;
    height: 82px;
    transform: rotate(-18deg)
}

.faq-paws {
    position: absolute;
    z-index: 3;
    width: 42px;
    height: 42px;
    background: var(--teal);
    -webkit-mask-image: url('../img/logokaki2.png');
    mask-image: url('../img/logokaki2.png');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    transform: rotate(18deg)
}

.faq-paws-one {
    right: 120px;
    bottom: 36px
}

.faq-paws-two {
    right: 72px;
    bottom: 10px;
    width: 34px;
    height: 34px;
    transform: rotate(-18deg)
}

.faq-list {
    display: grid
}

.faq-row {
    display: grid;
    grid-template-columns: 94px 1fr;
    gap: 0;
    border-top: 1px solid #c7ceca;
    padding: 36px 0 38px
}

.faq-row:last-child {
    border-bottom: 1px solid #c7ceca
}

.faq-number {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    background: url('../img/logokaki2.png') center/contain no-repeat;
    color: #fff;
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    transform: rotate(10deg)
}

.faq-heading {
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.14;
    cursor: pointer
}

.faq-heading span {
    color: #6e7169;
    font-size: 28px;
    line-height: 1
}

.faq-content p {
    max-width: 520px;
    margin: 14px 0 0;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #333
}

.faq-showcase-alt {
    background: #edf8f5;
    padding-top: 72px;
    padding-bottom: 72px
}

.faq-showcase-grid-alt {
    grid-template-columns: 1.1fr .9fr
}

.faq-visual-alt .faq-blob {
    right: 12px;
    top: 126px;
    transform: rotate(-7deg)
}

.faq-visual-alt img {
    border-radius: 46% 54% 51% 49% / 45% 43% 57% 55%
}

.faq-paws-three {
    left: 70px;
    top: 122px;
    width: 48px;
    height: 48px;
    opacity: .45;
    transform: rotate(16deg)
}

.faq-paws-four {
    left: 14px;
    top: 170px;
    width: 36px;
    height: 36px;
    opacity: .5;
    transform: rotate(-18deg)
}

.faq-showcase-final {
    padding-top: 34px
}

.faq-visual-final img {
    object-position: center
}

.faq-visual-final .faq-blob {
    right: 12px;
    top: 108px;
    transform: rotate(7deg)
}

.terms {
    padding: 60px 0 90px
}

.terms-wrap {
    /* max-width: 900px */
}

.terms h3 {
    color: var(--teal-dark);
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-size: 30px;
    font-weight: 700;
    margin: 42px 0 8px
}

.terms p {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.72
}

.mobile-social {
    display: none
}

@media(max-width:900px) {
    body {
        font-size: 16px;
        padding-top: 68px
    }

    .hamb {
        display: block
    }

    .menu,
    .social {
        display: none
    }

    .mobile-social {
        display: flex
    }

    .topbar {
        height: 68px
    }

    .topbar-logo {
        height: 42px;
        max-width: 160px
    }

    .menu.open {
        display: flex;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 25px;
        gap: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, .1)
    }
    .menu-dropdown { width: 100%; }
    .menu-dropdown > a { display: block; }
    .menu-dropdown > a::after { display: none; }
    .menu-dropdown-content {
        display: block !important;
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding: 6px 0 0;
        background: none;
    }
    .menu-dropdown-content a { padding: 4px 0 4px 16px; font-size: 15px; color: #3d5c58; }
    .menu-dropdown-content a:hover { color: var(--teal-dark); }
    .menu-dropdown-content a.coming-soon { opacity: .55; pointer-events: none; }

    .split,
    .how,
    .contact-grid,
    .faq-page,
    .faq-showcase-grid {
        grid-template-columns: 1fr;
        gap: 38px
    }

    .faq-showcase {
        padding: 52px 0 62px
    }

    .faq-visual {
        min-height: 480px
    }

    .faq-visual img {
        width: min(78%, 360px)
    }

    .faq-blob {
        width: min(68%, 320px);
        right: 12%;
        top: 86px
    }

    .faq-list {
        width: min(100%, 720px);
        margin: 0 auto
    }

    .about-visual {
        width: min(100%, 620px);
        justify-self: center
    }

    .about-badge {
        left: 68%;
        top: 54%;
        width: clamp(104px, 24vw, 138px)
    }

    .how-img {
        grid-column: 1;
        min-height: 360px
    }

    .how-text {
        grid-column: 1;
        padding: 60px 8%
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 38px
    }

    .contact-title {
        white-space: normal
    }

    .grid4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .testi-carousel {
        max-width: calc(100vw - 48px)
    }

    .testi-grid {
        grid-auto-columns: minmax(320px, 100%);
        gap: 18px;
        padding-top: 68px;
        padding-bottom: 72px
    }

    .testi {
        min-height: 420px;
        padding: 72px 26px 34px
    }

    .testi-avatar {
        width: 118px;
        height: 118px;
        top: -46px;
        right: 22px
    }

    .testi h3,
    .testi-service {
        max-width: calc(100% - 128px)
    }

    .testi p {
        font-size: 15px;
        line-height: 1.3
    }

    .testi-prev {
        left: calc(50% - 54px);
        top: auto;
        bottom: 8px
    }

    .testi-next {
        right: calc(50% - 54px);
        top: auto;
        bottom: 8px
    }

    .testi-nav,
    .testi-nav:hover {
        transform: none
    }

    .pet-types {
        grid-template-columns: repeat(2, 1fr)
    }

    .wide-stats,
    .stats .wrap,
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer .mid {
        border: 0;
        padding: 0
    }

    .gallery {
        grid-template-columns: 1fr
    }

    .gallery img {
        height: 420px
    }

    .price-item {
        grid-template-columns: 64px 1fr
    }

    .price {
        grid-column: 2
    }

    .hero {
        min-height: 390px
    }

    .section {
        padding: 65px 0
    }
}

@media(max-width:560px) {
    .container {
        width: calc(100% - 32px)
    }

    .topbar-logo {
        height: 38px;
        max-width: 142px
    }

    .logo {
        font-size: 18px
    }

    .logo .paw {
        font-size: 28px
    }

    .hero h1 {
        font-size: 42px
    }

    .grid4,
    .wide-stats,
    .stats .wrap,
    .features,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .stat {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .35);
        padding-bottom: 18px
    }

    .stats .wrap {
        padding: 22px 0
    }

    .section {
        padding: 52px 0
    }

    .btn {
        width: 100%;
        padding: 13px 16px;
        font-size: 12px;
        letter-spacing: 1.2px
    }

    .service-card .btn {
        width: auto;
        min-width: 150px;
        padding: 9px 18px;
        font-size: 14px
    }

    .title {
        font-size: 34px
    }

    .pet-types {
        grid-template-columns: 1fr
    }

    .gallery img {
        height: 320px
    }

    .faq-q {
        font-size: 18px
    }

    .faq-a {
        padding-left: 0
    }

    .faq-row {
        grid-template-columns: 74px 1fr;
        padding: 26px 0 28px
    }

    .faq-number {
        width: 64px;
        height: 64px;
        font-size: 44px
    }

    .faq-heading {
        font-size: 19px
    }

    .faq-content p {
        font-size: 15px
    }

    .hero.home {
        min-height: 380px
    }
}

@media (max-width: 980px) {
    .service-hero {
        min-height: 460px
    }

    .service-detail-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 42px
    }

    .service-detail-visual {
        min-height: 460px;
        order: -1
    }

    .service-detail-visual img {
        width: min(92%, 460px);
        height: 460px
    }

    .service-stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .pricing-dog {
        min-height: 480px
    }

    .pricing-copy {
        max-width: none
    }

    .service-gallery img {
        height: 360px
    }
}

@media (max-width: 620px) {
    .service-hero {
        min-height: 360px
    }

    .service-hero h1 {
        font-size: 48px
    }

    .service-hero p {
        font-size: 18px
    }

    .service-detail {
        padding-top: 58px
    }

    .service-detail-copy .title,
    .pricing-copy .title {
        font-size: 38px
    }

    .service-detail-copy p,
    .pricing-copy p {
        font-size: 16px
    }

    .walking-features {
        grid-template-columns: 1fr
    }

    .service-detail-visual {
        min-height: 340px
    }

    .service-detail-visual img {
        width: min(100%, 330px);
        height: 330px
    }

    .service-paw-one {
        left: 0;
        top: 24px
    }

    .service-paw-two {
        left: 18px;
        top: 96px
    }

    .service-paw-three {
        right: 8px;
        bottom: 40px
    }

    .service-paw-four {
        right: 6px
    }

    .service-stats {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 30px 22px
    }

    .service-pricing {
        padding: 62px 0 70px
    }

    .pricing-dog {
        min-height: 320px
    }

    .pricing-dog img {
        width: min(100%, 330px)
    }

    .woof-text {
        right: 12%;
        bottom: 12%;
        font-size: 18px
    }

    .price-item {
        grid-template-columns: 72px 1fr;
        align-items: start
    }

    .price-item img {
        width: 72px;
        height: 72px
    }

    .price {
        grid-column: 2;
        font-size: 18px
    }

    .service-actions {
        grid-template-columns: 1fr
    }

    .service-gallery img {
        height: 310px
    }
}

/* Gallery */
.gallery-hero {
    min-height: 520px;
    display: grid;
    place-items: center;
    position: relative;
    background: linear-gradient(rgba(20, 57, 53, .48), rgba(20, 57, 53, .48)), var(--bg) center 42% / cover no-repeat;
    color: #fff;
    text-align: center;
}

.gallery-hero h1 {
    margin: 6px 0 10px;
    font: 800 clamp(58px, 8vw, 104px) Fraunces, serif;
}

.gallery-hero p {
    max-width: 680px;
    margin: 0 auto;
    font-size: 18px;
}

.gallery-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

.gallery-heading .title {
    margin-bottom: 0;
}

.gallery-filters {
    display: inline-flex;
    flex: 0 0 auto;
    padding: 4px;
    border: 1px solid #c9dfdb;
    border-radius: 7px;
    background: #fff;
}

.gallery-filters button {
    min-height: 40px;
    padding: 8px 18px;
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: #315d58;
    cursor: pointer;
    font: 700 12px Poppins, sans-serif;
    letter-spacing: 0;
}

.gallery-filters button.active {
    background: #225e57;
    color: #fff;
}

.gallery-wall {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.gallery-tile {
    grid-column: span 4;
    min-width: 0;
    aspect-ratio: 4 / 5;
}

.gallery-tile:nth-child(5n + 1),
.gallery-tile:nth-child(5n + 4) {
    grid-column: span 8;
    aspect-ratio: 16 / 9;
}

.gallery-tile[hidden] {
    display: none;
}

.gallery-tile > button {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 7px;
    background: #d7f8f2;
    cursor: pointer;
    text-align: left;
}

.gallery-tile img,
.gallery-tile video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.gallery-tile > button:hover img,
.gallery-tile > button:hover video {
    transform: scale(1.035);
}

.gallery-overlay {
    position: absolute;
    inset: auto 0 0;
    display: grid;
    gap: 4px;
    padding: 42px 20px 18px;
    background: linear-gradient(transparent, rgba(17, 53, 49, .88));
    color: #fff;
}

.gallery-overlay strong {
    font: 700 22px Fraunces, serif;
}

.gallery-overlay span {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.gallery-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    transform: translate(-50%, -50%);
    border: 2px solid #fff;
    border-radius: 50%;
    background: rgba(23, 59, 56, .72);
}

.gallery-play::after {
    position: absolute;
    top: 50%;
    left: 53%;
    width: 0;
    height: 0;
    transform: translate(-40%, -50%);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 14px solid #fff;
    content: '';
}

.gallery-dialog {
    width: min(1040px, calc(100% - 32px));
    max-height: calc(100vh - 32px);
    padding: 0;
    overflow: auto;
    border: 0;
    border-radius: 8px;
    background: #fff;
    color: #173b38;
}

.gallery-dialog[open] {
    animation: gallery-dialog-in .26s cubic-bezier(.2, .75, .25, 1) both;
}

.gallery-dialog::backdrop {
    background: rgba(8, 30, 27, .86);
}

.gallery-dialog[open]::backdrop {
    animation: gallery-backdrop-in .26s ease both;
}

.gallery-dialog-panel {
    opacity: 1;
    transform: translateX(0) scale(1);
    transition: opacity .18s ease, transform .22s cubic-bezier(.2, .75, .25, 1);
}

.gallery-dialog.is-closing {
    animation: gallery-dialog-out .2s ease forwards;
}

.gallery-dialog.is-closing::backdrop {
    animation: gallery-backdrop-out .2s ease forwards;
}

.gallery-dialog.is-closing .gallery-dialog-panel {
    opacity: 0;
    transform: scale(.975);
}

.gallery-dialog.switch-to-left .gallery-dialog-panel {
    opacity: 0;
    transform: translateX(-36px) scale(.985);
}

.gallery-dialog.switch-to-right .gallery-dialog-panel {
    opacity: 0;
    transform: translateX(36px) scale(.985);
}

.gallery-dialog.enter-from-right .gallery-dialog-panel {
    opacity: 0;
    transform: translateX(36px) scale(.985);
    animation: none;
}

.gallery-dialog.enter-from-left .gallery-dialog-panel {
    opacity: 0;
    transform: translateX(-36px) scale(.985);
    animation: none;
}

.gallery-dialog-media {
    display: grid;
    place-items: center;
    min-height: 300px;
    background: #0e201e;
}

.gallery-dialog-media img,
.gallery-dialog-media video,
.gallery-dialog-media iframe {
    width: 100%;
    max-height: 72vh;
    display: block;
    object-fit: contain;
}

.gallery-dialog-media iframe {
    aspect-ratio: 16 / 9;
    border: 0;
}

.gallery-dialog-copy {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 24px 24px;
}

.gallery-dialog-copy h2 {
    margin: 0 0 5px;
    font: 700 28px Fraunces, serif;
}

.gallery-dialog-copy p {
    margin: 0;
    color: #617f7a;
}

.gallery-dialog-position {
    flex: 0 0 auto;
    padding-top: 7px;
    color: #617f7a;
    font-size: 12px;
    font-weight: 700;
}

.gallery-close {
    position: fixed;
    z-index: 2;
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #173b38;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
}

.gallery-dialog-nav {
    position: fixed;
    z-index: 3;
    top: 50%;
    width: 52px;
    height: 52px;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    color: #173b38;
    cursor: pointer;
    font: 400 42px/44px Fraunces, serif;
    transition: background .2s ease, transform .2s ease;
}

.gallery-dialog-nav:hover {
    transform: translateY(-50%) scale(1.06);
    background: #fff;
}

.gallery-dialog-prev {
    left: 22px;
}

.gallery-dialog-next {
    right: 22px;
}

@keyframes gallery-dialog-in {
    from { opacity: 0; transform: scale(.985); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes gallery-dialog-out {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(.985); }
}

@keyframes gallery-backdrop-in {
    from { background: rgba(8, 30, 27, 0); }
    to { background: rgba(8, 30, 27, .86); }
}

@keyframes gallery-backdrop-out {
    from { background: rgba(8, 30, 27, .86); }
    to { background: rgba(8, 30, 27, 0); }
}

.gallery-empty {
    padding: 70px 20px;
    border-top: 1px solid #c9dfdb;
    border-bottom: 1px solid #c9dfdb;
    color: #617f7a;
    text-align: center;
}

@media (max-width: 900px) {
    .gallery-hero {
        min-height: 440px;
    }

    .gallery-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .gallery-tile,
    .gallery-tile:nth-child(5n + 1),
    .gallery-tile:nth-child(5n + 4) {
        grid-column: span 6;
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 560px) {
    .gallery-hero {
        min-height: 380px;
    }

    .gallery-hero h1 {
        font-size: 58px;
    }

    .gallery-filters {
        width: 100%;
    }

    .gallery-filters button {
        flex: 1;
        padding-inline: 8px;
    }

    .gallery-wall {
        gap: 14px;
    }

    .gallery-tile,
    .gallery-tile:nth-child(5n + 1),
    .gallery-tile:nth-child(5n + 4) {
        grid-column: 1 / -1;
        aspect-ratio: 4 / 5;
    }

    .gallery-dialog {
        width: calc(100% - 20px);
        max-height: calc(100vh - 20px);
    }

    .gallery-close {
        top: 15px;
        right: 15px;
    }

    .gallery-dialog-nav {
        width: 44px;
        height: 44px;
        font-size: 36px;
        line-height: 38px;
    }

    .gallery-dialog-prev {
        left: 12px;
    }

    .gallery-dialog-next {
        right: 12px;
    }

    .gallery-dialog-copy {
        gap: 14px;
        padding: 16px 18px 20px;
    }

    .gallery-dialog-copy h2 {
        font-size: 23px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gallery-dialog[open],
    .gallery-dialog[open]::backdrop {
        animation-duration: .01ms;
    }

    .gallery-dialog-panel,
    .gallery-dialog-nav {
        transition-duration: .01ms;
    }
}
