:root {
    --pink: #ff66c4;
    --pink-dark: #d93d9d;
    --pink-soft: #fff0fa;
    --gray: #737373;
    --charcoal: #2d2d34;
    --mint: #a7d8c9;
    --mint-soft: #eefaf6;
    --line: #eadde6;
    --white: #ffffff;
    --site-bg: #fffafd;
    --shadow: 0 18px 45px rgba(45, 45, 52, .10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--charcoal);
    background: var(--site-bg);
    font-family: "Nunito", Arial, sans-serif;
    letter-spacing: 0;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

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

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

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

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 250, 253, .95);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(234, 221, 230, .8);
}

.top-announcement {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 102, 196, .16);
    background:
        linear-gradient(90deg, rgba(255, 240, 250, .98), rgba(238, 250, 246, .95)),
        var(--white);
}

.top-announcement::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 102, 196, .08), transparent 28%, rgba(167, 216, 201, .16));
    pointer-events: none;
}

.top-announcement-inner {
    position: relative;
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
}

.top-socials {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.top-social-link {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 102, 196, .18);
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 18px rgba(45, 45, 52, .08);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.top-social-link svg {
    width: 17px;
    height: 17px;
}

.top-social-link.instagram {
    color: var(--pink-dark);
}

.top-social-link.whatsapp {
    color: #16854f;
}

.top-social-link.instagram svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.top-social-link.whatsapp .wa-outline {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.top-social-link.whatsapp path:not(.wa-outline) {
    fill: currentColor;
}

.top-social-link:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 102, 196, .34);
    box-shadow: 0 10px 22px rgba(45, 45, 52, .12);
}

.announcement-track {
    width: min(760px, calc(100% - 180px));
    min-width: 0;
    overflow: hidden;
    margin: 0 auto;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.announcement-marquee {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 44px;
    color: var(--charcoal);
    font-size: .9rem;
    font-weight: 900;
    white-space: nowrap;
    animation: announcementMarquee 24s linear infinite;
}

.announcement-marquee.single {
    width: auto;
    justify-content: center;
    animation: none;
}

.announcement-marquee span {
    position: relative;
}

.announcement-marquee span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -25px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pink);
    transform: translateY(-50%);
    opacity: .55;
}

.announcement-marquee.single span::after {
    display: none;
}

.top-announcement:hover .announcement-marquee {
    animation-play-state: paused;
}

@keyframes announcementMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 22px));
    }
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 22px;
}

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

.brand-logo {
    width: min(190px, 44vw);
    height: auto;
    object-fit: contain;
}

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

.site-nav a {
    padding: 10px 12px;
    border-radius: 8px;
    color: #565660;
    font-weight: 800;
    font-size: .95rem;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--pink-dark);
    background: var(--pink-soft);
}

.header-call,
.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 8px;
    padding: 12px 18px;
    font-weight: 900;
    cursor: pointer;
}

.header-call,
.btn-primary {
    color: var(--white);
    background: var(--pink);
    box-shadow: 0 12px 26px rgba(255, 102, 196, .26);
}

.header-call:hover,
.btn-primary:hover {
    background: var(--pink-dark);
}

.btn-soft {
    color: var(--pink-dark);
    background: var(--pink-soft);
}

.btn-light {
    color: var(--pink-dark);
    background: var(--white);
}

.text-link {
    color: var(--pink-dark);
    font-weight: 900;
}

.menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    flex: 0 0 46px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 12px;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    width: 100%;
    margin: 4px 0;
    background: var(--charcoal);
    border-radius: 2px;
}

.flash {
    position: fixed;
    top: 132px;
    left: 50%;
    z-index: 120;
    width: min(520px, calc(100% - 32px));
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    font-weight: 800;
}

.flash-success {
    border-color: #a7d8c9;
}

.flash-error {
    border-color: #ffb0da;
}

.flash-close {
    border: 0;
    background: transparent;
    font-size: 1.25rem;
    cursor: pointer;
}

.hero-slider {
    position: relative;
    display: grid;
    overflow: hidden;
    isolation: isolate;
    min-height: 650px;
    background:
        linear-gradient(135deg, rgba(255, 240, 250, .94), rgba(238, 250, 246, .82)),
        var(--site-bg);
}

.hero-slider::before {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -170px;
    z-index: 1;
    width: min(720px, 58vw);
    aspect-ratio: 1;
    background: url("../img/paw-trail-diagonal.png") center / contain no-repeat;
    opacity: .13;
    pointer-events: none;
}

.hero-slider::after {
    display: none;
}

.hero-slide {
    grid-area: 1 / 1;
    display: block;
    position: relative;
    z-index: 2;
    min-height: 650px;
    padding: 54px 0 70px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(18px) scale(1.012);
    transition:
        opacity 1.35s ease,
        transform 1.9s ease,
        visibility 0s linear 1.35s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0) scale(1);
    transition:
        opacity 1.35s ease,
        transform 1.9s ease,
        visibility 0s linear 0s;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    gap: 42px;
    align-items: center;
}

.hero-copy {
    position: relative;
    isolation: isolate;
}

.hero-copy::before {
    content: "";
    position: absolute;
    left: clamp(-170px, -11vw, -96px);
    top: 28px;
    z-index: 0;
    width: clamp(280px, 26vw, 430px);
    aspect-ratio: 1;
    background: url("../img/silhouette-cat-standing.png") center / contain no-repeat;
    opacity: .105;
    pointer-events: none;
    transform: rotate(-4deg);
}

.hero-slide:nth-of-type(2n) .hero-copy::before {
    left: clamp(-190px, -13vw, -118px);
    top: 58px;
    width: clamp(330px, 32vw, 520px);
    background-image: url("../img/silhouette-dog.png");
    opacity: .09;
    transform: rotate(0deg);
}

.hero-slide:nth-of-type(3n) .hero-copy::before {
    left: clamp(-150px, -10vw, -86px);
    top: 18px;
    width: clamp(270px, 25vw, 410px);
    background-image: url("../img/silhouette-cat-sitting.png");
    opacity: .095;
    transform: rotate(3deg);
}

.hero-copy > * {
    position: relative;
    z-index: 1;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--pink-dark);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Quicksand", Arial, sans-serif;
    color: var(--charcoal);
}

h1 {
    font-size: clamp(2.5rem, 7vw, 5.2rem);
    line-height: .98;
    letter-spacing: 0;
}

.hero-copy h2 {
    font-size: clamp(2.5rem, 7vw, 5.2rem);
    line-height: .98;
    letter-spacing: 0;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: 0;
}

h3 {
    font-size: 1.35rem;
    line-height: 1.15;
}

p {
    color: var(--gray);
    line-height: 1.65;
}

.hero-copy > p:not(.eyebrow) {
    max-width: 620px;
    font-size: 1.15rem;
}

.hero-actions,
.cta-actions,
.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-media {
    position: relative;
}

.hero-media::before {
    display: none;
}

.hero-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4 / 4.3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: scale(1);
    transition: transform 7s ease;
}

.hero-slide.active .hero-media img {
    transform: scale(1.025);
}

.hero-note {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    max-width: 250px;
    padding: 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .93);
    box-shadow: 0 14px 30px rgba(45, 45, 52, .12);
}

.hero-note strong,
.hero-note span {
    display: block;
}

.hero-note span {
    color: var(--gray);
    font-size: .92rem;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 4;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dots button {
    width: 38px;
    height: 8px;
    border: 0;
    border-radius: 8px;
    background: rgba(115, 115, 115, .25);
    cursor: pointer;
}

.slider-dots button.active {
    background: var(--pink);
}

.trust-strip {
    position: relative;
    padding: 18px 0;
    overflow: hidden;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-strip::before {
    content: "";
    position: absolute;
    left: -210px;
    bottom: -120px;
    width: 620px;
    aspect-ratio: 1;
    background: url("../img/paw-trail-horizontal.png") center / contain no-repeat;
    opacity: .10;
    pointer-events: none;
}

.trust-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.trust-grid div {
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid rgba(255, 102, 196, .14);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 240, 250, .82), rgba(238, 250, 246, .72));
    box-shadow: 0 10px 24px rgba(45, 45, 52, .05);
    transition: transform .28s ease, box-shadow .28s ease;
}

.trust-grid div:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(45, 45, 52, .10);
}

.trust-grid strong,
.trust-grid span {
    display: block;
}

.trust-grid span {
    color: var(--gray);
    font-size: .92rem;
}

.section {
    padding: 86px 0;
}

.tinted {
    background: var(--mint-soft);
}

.section-head {
    max-width: 760px;
    margin-bottom: 32px;
}

.container.section-head:not(.row-head) {
    max-width: none;
}

.container.section-head:not(.row-head) > * {
    max-width: 760px;
}

.section-head.row-head {
    max-width: none;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
}

.section-head p {
    margin-bottom: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .78s ease, transform .78s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.experience-section,
.care-section,
.rooms-section,
.instagram-section,
.google-reviews-section,
.steps-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.experience-section::before,
.care-section::before,
.rooms-section::before,
.instagram-section::before,
.google-reviews-section::before,
.steps-section::before {
    content: "";
    position: absolute;
    z-index: 0;
    aspect-ratio: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
}

.experience-section::before {
    right: -180px;
    top: 30px;
    width: 620px;
    background-image: url("../img/paw-trail-diagonal.png");
    opacity: .10;
}

.experience-section::after,
.rooms-section::after,
.instagram-section::after {
    content: "";
    position: absolute;
    z-index: 0;
    aspect-ratio: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
}

.experience-section::after {
    display: none;
}

.care-section::before {
    left: -190px;
    bottom: -160px;
    width: 620px;
    background-image: url("../img/paw-trail-horizontal.png");
    opacity: .11;
}

.rooms-section::before {
    right: -160px;
    bottom: -180px;
    width: 560px;
    background-image: url("../img/paw-trail-horizontal.png");
    opacity: .09;
}

.rooms-section::after {
    display: none;
}

.steps-section::before {
    left: -140px;
    top: -170px;
    width: 520px;
    background-image: url("../img/paw-trail-diagonal.png");
    opacity: .10;
}

.instagram-section::before {
    right: -170px;
    top: -160px;
    width: 620px;
    background-image: url("../img/paw-trail-diagonal.png");
    opacity: .11;
}

.google-reviews-section::before {
    left: -190px;
    bottom: -190px;
    width: 560px;
    background-image: url("../img/paw-trail-horizontal.png");
    opacity: .09;
}

.instagram-section::after {
    display: none;
}

.experience-section > .container,
.care-section > .container,
.rooms-section > .container,
.instagram-section > .container,
.google-reviews-section > .container,
.steps-section > .container,
.gallery-preview > .container {
    position: relative;
    z-index: 2;
}

.experience-layout {
    display: grid;
    grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.experience-collage {
    position: relative;
    min-height: 470px;
}

.experience-collage::before {
    content: "";
    position: absolute;
    right: -22px;
    top: -18px;
    z-index: 0;
    width: 120px;
    aspect-ratio: 1;
    background: url("../img/silhouette-cat-standing.png") center / contain no-repeat;
    opacity: .06;
    pointer-events: none;
}

.experience-collage img {
    position: absolute;
    z-index: 1;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.collage-main {
    left: 0;
    top: 0;
    width: 76%;
    aspect-ratio: 4 / 5;
}

.collage-small {
    right: 0;
    bottom: 18px;
    width: 48%;
    aspect-ratio: 1;
    border: 8px solid var(--white);
}

.floating-badge {
    position: absolute;
    left: 22px;
    bottom: 34px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: calc(100% - 44px);
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 16px 34px rgba(45, 45, 52, .12);
    color: var(--pink-dark);
    font-weight: 900;
    animation: floaty 4.4s ease-in-out infinite;
}

.experience-copy h2 {
    max-width: 620px;
}

.experience-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.feature-grid-soft {
    margin-top: 34px;
}

.feature-grid,
.room-grid,
.blog-grid,
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.feature-card,
.room-card,
.blog-card,
.value-grid article,
.contact-card,
.contact-form {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(45, 45, 52, .06);
}

.feature-card {
    position: relative;
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.feature-card img,
.blog-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.feature-card:hover,
.room-card:hover,
.blog-card:hover,
.story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(45, 45, 52, .12);
    border-color: rgba(255, 102, 196, .35);
}

.feature-card h3,
.feature-card p,
.blog-card div,
.room-card div {
    padding-left: 18px;
    padding-right: 18px;
}

.feature-card h3 {
    padding-top: 18px;
}

.feature-card p {
    padding-bottom: 10px;
}

.split {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 44px;
}

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

.steps div {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 6px 16px;
    align-items: start;
    padding: 18px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid rgba(167, 216, 201, .55);
    transition: transform .28s ease, box-shadow .28s ease;
}

.steps div:hover {
    transform: translateX(6px);
    box-shadow: 0 16px 30px rgba(45, 45, 52, .08);
}

.steps span {
    grid-row: span 2;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--pink-soft);
    color: var(--pink-dark);
    font-weight: 900;
}

.steps p {
    margin: 0;
}

.service-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(238, 250, 246, .88), rgba(255, 240, 250, .72)),
        var(--white);
}

.appointment-service {
    padding: 58px 0;
}

.service-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .56fr) auto;
    gap: 28px;
    align-items: center;
}

.service-layout h2 {
    max-width: 620px;
}

.service-layout p:not(.eyebrow) {
    max-width: 680px;
    margin-bottom: 0;
}

.service-points {
    display: grid;
    gap: 10px;
}

.service-points span {
    display: block;
    padding: 10px 0 10px 14px;
    border-left: 4px solid var(--pink);
    color: var(--charcoal);
    font-weight: 900;
}

.room-card {
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.room-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.room-card div {
    padding-top: 18px;
    padding-bottom: 18px;
}

.room-card p {
    min-height: 78px;
}

.room-grid.detailed {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.room-grid.detailed .room-card p {
    min-height: 120px;
}

.carousel-shell {
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 6px 2px 18px;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-track > * {
    flex: 0 0 calc((100% - 36px) / 3);
    scroll-snap-align: start;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    z-index: 8;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, .96);
    color: var(--pink-dark);
    box-shadow: 0 14px 30px rgba(45, 45, 52, .12);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform .22s ease, background .22s ease, color .22s ease;
}

.carousel-btn:hover {
    background: var(--pink);
    color: var(--white);
    transform: translateY(-50%) scale(1.06);
}

.carousel-btn.prev {
    left: -16px;
}

.carousel-btn.next {
    right: -16px;
}

.check-list {
    padding: 0 18px 0 36px;
    margin: 0 0 18px;
    color: var(--gray);
    line-height: 1.7;
}

.gallery-preview {
    position: relative;
    overflow: hidden;
    background: var(--site-bg);
}

.gallery-preview::before {
    content: "";
    position: absolute;
    left: -180px;
    top: -130px;
    width: 590px;
    aspect-ratio: 1;
    background: url("../img/paw-trail-horizontal.png") center / contain no-repeat;
    opacity: .09;
    pointer-events: none;
}

.gallery-preview::after {
    display: none;
}

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

.gallery-row.carousel-track {
    display: flex;
}

.gallery-row.carousel-track > figure {
    flex-basis: 210px;
}

.gallery-row figure,
.gallery-masonry figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--white);
}

.gallery-row figure {
    box-shadow: 0 12px 26px rgba(45, 45, 52, .07);
}

.gallery-row img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform .45s ease;
}

.gallery-row figure:hover img,
.gallery-masonry figure:hover img {
    transform: scale(1.055);
}

.gallery-row figcaption,
.gallery-masonry figcaption {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px;
    border-radius: 8px;
    color: var(--charcoal);
    background: rgba(255, 255, 255, .9);
    font-weight: 900;
}

.gallery-masonry {
    columns: 3 260px;
    column-gap: 16px;
}

.gallery-masonry figure {
    display: inline-block;
    width: 100%;
    margin-bottom: 16px;
    box-shadow: 0 12px 26px rgba(45, 45, 52, .08);
    transition: transform .28s ease, box-shadow .28s ease;
}

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

.gallery-masonry figcaption strong,
.gallery-masonry figcaption span {
    display: block;
}

.gallery-masonry figcaption span {
    color: var(--gray);
    font-size: .9rem;
}

.instagram-section {
    background:
        linear-gradient(135deg, rgba(255, 240, 250, .88), rgba(255, 255, 255, .94)),
        #fff;
}

.instagram-cta {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 28px;
    align-items: center;
    min-height: 330px;
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        radial-gradient(circle at 88% 18%, rgba(255, 102, 196, .18), transparent 30%),
        radial-gradient(circle at 12% 84%, rgba(167, 216, 201, .34), transparent 32%),
        linear-gradient(135deg, rgba(255, 240, 250, .92), rgba(255, 255, 255, .98));
    box-shadow: 0 18px 46px rgba(45, 45, 52, .08);
}

.instagram-cta::before {
    content: "";
    position: absolute;
    right: -78px;
    bottom: -128px;
    width: 310px;
    aspect-ratio: 1;
    background: url("../img/paw-trail-diagonal.png") center / contain no-repeat;
    opacity: .08;
    pointer-events: none;
}

.instagram-cta::after {
    content: "";
    position: absolute;
    left: -34px;
    top: -56px;
    width: 150px;
    aspect-ratio: 1;
    background: url("../img/silhouette-cat-sitting.png") center / contain no-repeat;
    opacity: .045;
    pointer-events: none;
}

.instagram-copy,
.instagram-profile-card {
    position: relative;
    z-index: 1;
}

.instagram-copy p:not(.eyebrow) {
    max-width: 610px;
    font-size: 1.05rem;
}

.instagram-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.instagram-profile-card {
    display: grid;
    gap: 12px;
    justify-items: center;
    text-align: center;
    padding: 30px 24px;
    border: 1px solid rgba(255, 102, 196, .22);
    border-radius: 8px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 18px 38px rgba(45, 45, 52, .09);
    transition: transform .28s ease, box-shadow .28s ease;
}

.instagram-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(45, 45, 52, .12);
}

.instagram-mark {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background:
        radial-gradient(circle at 28% 28%, #fff 0 8%, transparent 9%),
        linear-gradient(135deg, var(--pink), var(--pink-dark));
    box-shadow: 0 14px 28px rgba(255, 102, 196, .28);
    font-family: "Quicksand", Arial, sans-serif;
    font-size: 1.45rem;
    font-weight: 900;
}

.instagram-profile-card strong {
    font-size: 1.3rem;
    font-weight: 900;
}

.instagram-profile-card span:last-child {
    color: var(--gray);
}

.google-reviews-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(238, 250, 246, .64)),
        var(--white);
}

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

.google-review-card {
    display: grid;
    gap: 16px;
    align-content: start;
    min-height: 245px;
    padding: 24px;
    border: 1px solid rgba(255, 102, 196, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 14px 32px rgba(45, 45, 52, .07);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.google-review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 102, 196, .34);
    box-shadow: 0 22px 44px rgba(45, 45, 52, .12);
}

.google-review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.google-review-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--pink-dark);
    background: var(--pink-soft);
    font-family: "Quicksand", Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
}

.google-review-card p {
    margin: 0;
}

.google-review-card strong {
    align-self: end;
    color: var(--charcoal);
    font-size: 1.05rem;
    font-weight: 900;
}

.rating-stars {
    display: inline-flex;
    gap: 2px;
    color: #f5a623;
    font-size: 1.05rem;
    line-height: 1;
    white-space: nowrap;
}

.rating-stars .empty {
    color: rgba(115, 115, 115, .24);
}

.blog-grid.large {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.page-blog .blog-grid.large .blog-card h2 {
    font-size: 1.45rem;
    line-height: 1.16;
}

.blog-card {
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.blog-card h2,
.blog-card h3 {
    margin-top: 18px;
}

.blog-card a {
    display: inline-flex;
    margin: 6px 0 18px;
    color: var(--pink-dark);
    font-weight: 900;
}

.cta-band {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 54px 0;
    background: var(--pink);
    color: var(--white);
}

.cta-band::before {
    content: "";
    position: absolute;
    right: -170px;
    bottom: -210px;
    z-index: 0;
    width: 620px;
    aspect-ratio: 1;
    background: url("../img/paw-trail-horizontal.png") center / contain no-repeat;
    opacity: .18;
    pointer-events: none;
    filter: brightness(0) invert(1);
}

.cta-band::after {
    content: "";
    position: absolute;
    left: clamp(16px, 5vw, 82px);
    bottom: 12px;
    z-index: 0;
    width: 150px;
    aspect-ratio: 1;
    background: url("../img/silhouette-dog.png") center / contain no-repeat;
    opacity: .10;
    pointer-events: none;
    filter: brightness(0) invert(1);
}

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

.cta-band h2,
.cta-band p,
.cta-band .eyebrow {
    color: var(--white);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 46px 0;
    background: linear-gradient(135deg, #fff0fa, #eefaf6);
}

.page-hero::before {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -210px;
    z-index: 1;
    width: min(590px, 62vw);
    aspect-ratio: 1;
    background: url("../img/paw-trail-diagonal.png") center / contain no-repeat;
    opacity: .10;
    pointer-events: none;
}

.page-hero::after {
    display: none;
}

.page-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 36px;
    align-items: center;
}

.page-hero-grid > div:first-child,
.article-header {
    position: relative;
}

.paw-print {
    --paw-color: var(--pink);
    position: absolute;
    z-index: 1;
    width: 44px;
    height: 38px;
    pointer-events: none;
    display: none;
    opacity: .16;
}

.paw-print::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 18px;
    width: 21px;
    height: 16px;
    border-radius: 60% 60% 55% 55%;
    background: var(--paw-color);
    transform: rotate(-8deg);
}

.paw-print::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    width: 9px;
    height: 10px;
    border-radius: 50%;
    background: var(--paw-color);
    box-shadow:
        12px -6px 0 -1px var(--paw-color),
        25px -4px 0 -1px var(--paw-color),
        33px 6px 0 -1px var(--paw-color);
}

.paw-print-hero-a {
    left: min(5vw, 54px);
    top: 112px;
    opacity: .13;
    transform: rotate(-24deg) scale(1.35);
}

.paw-print-hero-b {
    right: 7vw;
    top: 96px;
    --paw-color: var(--gray);
    opacity: .14;
    transform: rotate(20deg) scale(.95);
}

.paw-print-hero-c {
    left: 48%;
    bottom: 58px;
    --paw-color: var(--mint);
    opacity: .28;
    transform: rotate(16deg) scale(1.2);
}

.trust-paw-a {
    left: 26px;
    top: 20px;
    --paw-color: var(--mint);
    opacity: .24;
    transform: rotate(18deg) scale(.8);
}

.trust-paw-b {
    right: 34px;
    bottom: 12px;
    opacity: .13;
    transform: rotate(-18deg) scale(1.05);
}

.cta-paw-a {
    left: 8%;
    bottom: 18px;
    --paw-color: var(--white);
    opacity: .22;
    transform: rotate(-18deg) scale(1.5);
}

.cta-paw-b {
    right: 12%;
    top: 18px;
    --paw-color: var(--white);
    opacity: .18;
    transform: rotate(20deg) scale(1.15);
}

.page-paw-a {
    left: clamp(14px, 4vw, 58px);
    bottom: 24px;
    --paw-color: var(--pink);
    opacity: .11;
    transform: rotate(-18deg) scale(1.35);
}

.page-paw-b {
    right: clamp(18px, 6vw, 82px);
    top: 34px;
    --paw-color: var(--gray);
    opacity: .08;
    transform: rotate(22deg) scale(.95);
}

.inner-decor {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.inner-decor::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: 520px;
    aspect-ratio: 1;
    background: url("../img/paw-trail-horizontal.png") center / contain no-repeat;
    opacity: .075;
    pointer-events: none;
}

.inner-decor::after {
    display: none;
}

.inner-decor-left::before {
    left: -210px;
    bottom: -180px;
}

.inner-decor-right::before {
    right: -210px;
    top: -170px;
    transform: rotate(8deg);
}

.inner-decor > .container {
    position: relative;
    z-index: 2;
}

.inner-paw-left {
    left: max(18px, calc((100vw - 1120px) / 2 - 34px));
    top: 64px;
    --paw-color: var(--mint);
    opacity: .14;
    transform: rotate(20deg) scale(.92);
}

.inner-paw-right {
    right: max(18px, calc((100vw - 1120px) / 2 - 34px));
    bottom: 54px;
    --paw-color: var(--pink);
    opacity: .10;
    transform: rotate(-20deg) scale(1.05);
}

.experience-paw-a {
    left: 5%;
    top: 46px;
    --paw-color: var(--mint);
    opacity: .22;
    transform: rotate(-14deg) scale(1.2);
    animation: driftPaw 7s ease-in-out infinite;
}

.experience-paw-b {
    right: 8%;
    bottom: 70px;
    opacity: .12;
    transform: rotate(24deg) scale(1);
    animation: driftPaw 8s ease-in-out infinite reverse;
}

.care-paw-a {
    right: 10%;
    top: 34px;
    --paw-color: var(--pink);
    opacity: .13;
    transform: rotate(-22deg) scale(1.25);
}

.steps-paw-a {
    left: 6%;
    bottom: 36px;
    --paw-color: var(--mint);
    opacity: .25;
    transform: rotate(16deg) scale(1.2);
}

.instagram-paw-a {
    left: 7%;
    top: 44px;
    opacity: .16;
    transform: rotate(18deg) scale(1.25);
}

.instagram-paw-b {
    right: 8%;
    bottom: 42px;
    --paw-color: var(--mint);
    opacity: .28;
    transform: rotate(-20deg) scale(1.1);
}

.google-reviews-paw-a {
    right: 9%;
    top: 52px;
    --paw-color: var(--mint);
    opacity: .18;
    transform: rotate(18deg) scale(1.05);
}

@keyframes floaty {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes driftPaw {
    0%,
    100% {
        margin-top: 0;
    }
    50% {
        margin-top: 16px;
    }
}

.page-hero img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.rich-text p:first-child {
    margin-top: 0;
}

.rich-text p:last-child {
    margin-bottom: 0;
}

.rich-text a {
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
}

.soft-copy a,
.section-head p a,
.service-layout p a {
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
}

.breadcrumbs {
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .72);
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 14px 0;
    list-style: none;
    color: var(--gray);
    font-size: .94rem;
    font-weight: 800;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs li + li::before {
    content: "/";
    color: rgba(115, 115, 115, .55);
}

.breadcrumbs a {
    color: var(--pink-dark);
}

.breadcrumbs-inline {
    margin: 0;
    border: 0;
    background: transparent;
}

.breadcrumbs-inline ol {
    padding: 0;
}

.page-hero .breadcrumbs-inline,
.article-header .breadcrumbs-inline {
    position: absolute;
    top: -34px;
    left: 0;
    z-index: 3;
}

.related-links a,
.side-links a,
.service-points a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    border: 1px solid rgba(255, 102, 196, .18);
    border-radius: 8px;
    padding: 9px 12px;
    background: var(--white);
    color: var(--pink-dark);
    font-weight: 900;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
    gap: 34px;
    align-items: start;
}

.side-links {
    position: sticky;
    top: 150px;
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(45, 45, 52, .06);
}

.side-links h2 {
    font-size: 1.35rem;
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.related-links a::before {
    content: "#";
    margin-right: 4px;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(240px, .55fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.faq-intro {
    padding: 22px;
    border-left: 5px solid var(--pink);
    background: var(--pink-soft);
    border-radius: 8px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(45, 45, 52, .05);
}

.faq-item summary {
    cursor: pointer;
    padding: 18px;
    color: var(--charcoal);
    font-weight: 900;
}

.faq-item .rich-text {
    padding: 0 18px 18px;
}

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

.value-grid article {
    padding: 20px;
}

.value-grid strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 900;
}

.why-values-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 250, 253, .96), rgba(255, 240, 250, .68)),
        var(--site-bg);
}

.why-values-section::after {
    content: "";
    position: absolute;
    right: clamp(16px, 5vw, 86px);
    bottom: 26px;
    z-index: 0;
    width: 130px;
    aspect-ratio: 1;
    background: url("../img/silhouette-cat-sitting.png") center / contain no-repeat;
    opacity: .035;
    pointer-events: none;
}

.why-values-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(320px, .88fr) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}

.why-values-intro {
    overflow: hidden;
    border: 1px solid rgba(255, 102, 196, .18);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 42px rgba(45, 45, 52, .08);
}

.why-values-photo {
    position: relative;
    overflow: hidden;
}

.why-values-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 102, 196, 0), rgba(255, 102, 196, .14));
    pointer-events: none;
}

.why-values-photo img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.why-values-copy {
    padding: 24px;
}

.why-values-copy .rich-text {
    margin-top: 10px;
}

.why-values-copy .btn {
    margin-top: 18px;
}

.why-value-grid {
    counter-reset: why-values;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.why-value-grid article {
    counter-increment: why-values;
    position: relative;
    overflow: hidden;
    min-height: 190px;
    padding: 70px 20px 20px;
    border-color: rgba(255, 102, 196, .16);
    background:
        linear-gradient(145deg, rgba(255, 240, 250, .72), rgba(255, 255, 255, .96) 54%, rgba(238, 250, 246, .68)),
        var(--white);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.why-value-grid article::before {
    content: counter(why-values, decimal-leading-zero);
    position: absolute;
    left: 18px;
    top: 18px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--pink-dark);
    background: var(--pink-soft);
    font-size: .86rem;
    font-weight: 900;
}

.why-value-grid article::after {
    content: "";
    position: absolute;
    right: -88px;
    bottom: -92px;
    width: 190px;
    aspect-ratio: 1;
    background: url("../img/paw-trail-diagonal.png") center / contain no-repeat;
    opacity: .055;
    pointer-events: none;
}

.why-value-grid article:nth-child(even)::before {
    color: #4d7d70;
    background: var(--mint-soft);
}

.why-value-grid article:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 102, 196, .34);
    box-shadow: 0 20px 42px rgba(45, 45, 52, .11);
}

.why-value-grid strong,
.why-value-grid p {
    position: relative;
    z-index: 1;
}

.why-value-grid strong {
    font-size: 1.18rem;
}

.why-value-grid p {
    margin-bottom: 0;
}

.story-list {
    display: grid;
    gap: 22px;
}

.story-card {
    position: relative;
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 24px;
    align-items: center;
    overflow: hidden;
    padding: 20px;
    border: 1px solid rgba(255, 102, 196, .18);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 240, 250, .86), rgba(255, 255, 255, .96));
    box-shadow: 0 14px 32px rgba(45, 45, 52, .07);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.story-card::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 280px;
    aspect-ratio: 1;
    background: url("../img/paw-trail-diagonal.png") center / contain no-repeat;
    opacity: .08;
}

.story-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 24px;
}

.contact-card,
.contact-form {
    padding: 24px;
}

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

.contact-list a,
.contact-list p {
    display: block;
    margin: 0;
    padding: 14px;
    border-radius: 8px;
    background: var(--pink-soft);
}

.contact-list strong,
.contact-list span {
    display: block;
}

.stacked-form {
    display: grid;
    gap: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.full-field {
    grid-column: 1 / -1;
}

label {
    display: grid;
    gap: 7px;
    color: var(--charcoal);
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 12px 13px;
    color: var(--charcoal);
    outline: none;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(255, 102, 196, .12);
}

.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(255, 102, 196, .18);
    border-radius: 8px;
    background: var(--pink-soft);
    line-height: 1.45;
}

.checkbox-field input {
    width: 18px;
    height: 18px;
    min-height: 18px;
    flex: 0 0 18px;
    margin-top: 2px;
    padding: 0;
}

.map-wrap {
    margin-top: 28px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--line);
}

.map-wrap iframe {
    display: block;
    width: 100%;
    min-height: 340px;
    border: 0;
}

.article-page {
    padding: 56px 0 90px;
}

.article-header {
    max-width: 820px;
    margin-bottom: 28px;
}

.container.article-header {
    max-width: none;
}

.container.article-header > * {
    max-width: 820px;
}

.article-header h1 {
    font-size: clamp(2.25rem, 5vw, 4.2rem);
}

.article-image {
    width: 100%;
    max-width: 820px;
    max-height: 430px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.article-content {
    max-width: 820px;
    margin: 34px 0 0;
    font-size: 1.08rem;
}

.empty-state {
    min-height: 45vh;
    display: grid;
    place-items: center;
    text-align: center;
}

.site-footer {
    padding: 58px 0 92px;
    background: #2d2d34;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr 1fr 1fr;
    gap: 34px;
}

.site-footer p,
.site-footer a,
.site-footer small,
.footer-bottom {
    color: rgba(255, 255, 255, .78);
}

.site-footer h3 {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 1rem;
}

.site-footer a {
    display: block;
    margin: 9px 0;
}

.footer-brand {
    margin-bottom: 14px;
}

.footer-brand .brand-logo {
    width: min(210px, 62vw);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .18));
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.mobile-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 30px rgba(45, 45, 52, .08);
}

.mobile-actions a,
.mobile-actions button {
    min-height: 48px;
    border: 0;
    border-radius: 8px;
    color: var(--white);
    background: var(--pink);
    font-weight: 900;
    display: grid;
    place-items: center;
}

.mobile-actions button {
    background: var(--charcoal);
}

.whatsapp-float {
    position: fixed;
    left: 18px;
    bottom: 22px;
    z-index: 77;
    display: grid;
    justify-items: start;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
}

.whatsapp-note {
    position: relative;
    max-width: 184px;
    margin-left: 10px;
    padding: 8px 12px;
    border: 1px solid rgba(37, 211, 102, .24);
    border-radius: 8px;
    color: #17683e;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 12px 26px rgba(45, 45, 52, .12);
    font-size: .82rem;
    font-weight: 900;
    line-height: 1.15;
    white-space: nowrap;
}

.whatsapp-note::after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: -7px;
    width: 12px;
    height: 12px;
    border-right: 1px solid rgba(37, 211, 102, .24);
    border-bottom: 1px solid rgba(37, 211, 102, .24);
    background: rgba(255, 255, 255, .96);
    transform: rotate(45deg);
}

.whatsapp-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, .78);
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c4a);
    box-shadow: 0 16px 32px rgba(18, 140, 74, .28), 0 0 0 0 rgba(37, 211, 102, .36);
    transition: transform .25s ease, box-shadow .25s ease;
    animation: whatsappPulse 2.8s ease-out infinite;
}

.whatsapp-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.whatsapp-bubble {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.whatsapp-icon path:not(.whatsapp-bubble) {
    fill: currentColor;
}

.whatsapp-float:hover .whatsapp-icon {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 18px 36px rgba(18, 140, 74, .34);
}

.whatsapp-float:hover .whatsapp-note {
    color: #0f5734;
    border-color: rgba(37, 211, 102, .38);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 16px 32px rgba(18, 140, 74, .28), 0 0 0 0 rgba(37, 211, 102, .36);
    }
    70% {
        box-shadow: 0 16px 32px rgba(18, 140, 74, .28), 0 0 0 13px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 16px 32px rgba(18, 140, 74, .28), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 76;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    color: var(--white);
    background: var(--pink);
    box-shadow: 0 14px 30px rgba(255, 102, 196, .28);
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease, background .25s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 150;
    display: grid;
    place-items: center;
    padding: 18px;
}

.modal[hidden] {
    display: none;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(45, 45, 52, .52);
}

.modal-card {
    position: relative;
    width: min(860px, 100%);
    max-height: calc(100vh - 36px);
    overflow: auto;
    padding: 28px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .24);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 8px;
    background: var(--pink-soft);
    color: var(--pink-dark);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-room {
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    background: var(--mint-soft);
    font-weight: 900;
}

.modal-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 14px 0;
}

.modal-info div {
    padding: 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--pink-soft), var(--mint-soft));
    border: 1px solid rgba(255, 102, 196, .16);
}

.modal-info strong,
.modal-info span {
    display: block;
}

.modal-info strong {
    color: var(--charcoal);
    font-weight: 900;
}

.modal-info span {
    margin-top: 4px;
    color: var(--gray);
    line-height: 1.45;
    font-size: .92rem;
}

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

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .header-call {
        display: none;
    }

    .site-nav {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 118px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

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

    .site-nav a {
        min-height: 46px;
        display: flex;
        align-items: center;
    }

    .hero-slider,
    .hero-slide {
        min-height: auto;
    }

    .hero-slide {
        padding: 30px 0 62px;
    }

    .hero-grid,
    .page-hero-grid,
    .experience-layout,
    .service-layout,
    .split,
    .contact-grid,
    .story-card,
    .content-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .side-links {
        position: static;
    }

    .hero-grid {
        gap: 24px;
    }

    .hero-copy::before {
        left: -74px;
        top: 6px;
        width: min(290px, 52vw);
        opacity: .075;
    }

    .hero-slide:nth-of-type(2n) .hero-copy::before {
        left: -96px;
        top: 38px;
        width: min(360px, 62vw);
        opacity: .07;
    }

    .hero-slide:nth-of-type(3n) .hero-copy::before {
        left: -70px;
        top: 0;
        width: min(280px, 50vw);
        opacity: .07;
    }

    .hero-media {
        order: -1;
    }

    .hero-media img {
        aspect-ratio: 16 / 11;
    }

    .hero-note {
        position: static;
        max-width: none;
        margin-top: 10px;
    }

    .trust-grid,
    .feature-grid,
    .room-grid.detailed,
    .blog-grid,
    .blog-grid.large,
    .google-review-grid,
    .value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .experience-collage {
        min-height: 430px;
        max-width: 620px;
    }

    .carousel-track > * {
        flex-basis: calc((100% - 18px) / 2);
    }

    .gallery-row.carousel-track > figure {
        flex-basis: 260px;
    }

    .instagram-cta {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .brand-logo {
        width: min(160px, 54vw);
    }

    h1 {
        font-size: clamp(2.2rem, 14vw, 3.6rem);
    }

    .hero-copy h2 {
        font-size: clamp(2.2rem, 14vw, 3.6rem);
    }

    h2 {
        font-size: clamp(1.75rem, 9vw, 2.4rem);
    }

    .section {
        padding: 58px 0;
    }

    .hero-slide {
        padding-top: 18px;
    }

    .hero-copy {
        text-align: left;
    }

    .hero-copy > p:not(.eyebrow) {
        font-size: 1rem;
    }

    .hero-media img {
        aspect-ratio: 4 / 3;
    }

    .hero-note {
        padding: 11px 12px;
        font-size: .9rem;
    }

    .page-hero {
        padding: 30px 0;
    }

    .section-head.row-head,
    .cta-inner,
    .footer-bottom {
        display: grid;
        align-items: start;
    }

    .trust-grid,
    .feature-grid,
    .room-grid.detailed,
    .blog-grid,
    .blog-grid.large,
    .google-review-grid,
    .value-grid,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    body.page-blog .blog-grid.large {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    body.page-blog .blog-grid.large .blog-card h2 {
        font-size: .98rem;
        line-height: 1.18;
    }

    body.page-blog .blog-grid.large .blog-card p {
        font-size: .84rem;
    }

    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .related-links {
        display: grid;
        grid-template-columns: 1fr;
    }

    .breadcrumbs ol {
        font-size: .86rem;
    }

    .trust-grid div {
        padding: 12px;
    }

    .trust-grid strong {
        font-size: .94rem;
    }

    .trust-grid span {
        font-size: .82rem;
        line-height: 1.35;
    }

    .experience-collage {
        min-height: 320px;
    }

    .collage-main {
        width: 78%;
    }

    .collage-small {
        width: 49%;
        border-width: 6px;
    }

    .floating-badge {
        left: 12px;
        bottom: 18px;
        padding: 10px 12px;
        font-size: .9rem;
    }

    .experience-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .carousel-shell {
        padding-bottom: 58px;
    }

    .carousel-track {
        gap: 14px;
        margin-right: -12px;
        padding-bottom: 12px;
    }

    .carousel-track > * {
        flex-basis: 84vw;
    }

    .gallery-row.carousel-track > figure {
        flex-basis: 74vw;
    }

    .carousel-btn {
        top: auto;
        bottom: 0;
        width: 44px;
        height: 44px;
        transform: none;
    }

    .carousel-btn:hover {
        transform: scale(1.04);
    }

    .carousel-btn.prev {
        left: calc(50% - 52px);
    }

    .carousel-btn.next {
        right: calc(50% - 52px);
    }

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

    .gallery-row figcaption {
        font-size: .82rem;
        left: 6px;
        right: 6px;
        bottom: 6px;
    }

    .paw-print-hero-b,
    .paw-print-hero-c,
    .trust-paw-b,
    .experience-paw-b,
    .instagram-paw-b,
    .page-paw-b {
        display: none;
    }

    .paw-print-hero-a {
        left: auto;
        right: 20px;
        top: 86px;
        opacity: .10;
        transform: rotate(18deg) scale(.9);
    }

    .trust-paw-a {
        left: 12px;
        top: 12px;
        opacity: .14;
        transform: rotate(18deg) scale(.72);
    }

    .page-paw-a {
        left: auto;
        right: 18px;
        bottom: 18px;
        opacity: .08;
        transform: rotate(18deg) scale(.82);
    }

    .inner-paw-left,
    .inner-paw-right {
        opacity: .08;
        transform: rotate(16deg) scale(.72);
    }

    .inner-paw-left {
        left: 14px;
        top: 24px;
    }

    .inner-paw-right {
        right: 14px;
        bottom: 24px;
    }

    .cta-paw-a {
        left: 14px;
        bottom: 18px;
        opacity: .16;
        transform: rotate(-18deg) scale(.95);
    }

    .cta-paw-b {
        right: 18px;
        top: 16px;
        opacity: .14;
        transform: rotate(20deg) scale(.8);
    }

    .hero-slider::before {
        right: -190px;
        bottom: -210px;
        width: 470px;
        opacity: .10;
    }

    .trust-strip::before,
    .gallery-preview::before,
    .inner-decor::before,
    .experience-section::before,
    .care-section::before,
    .rooms-section::before,
    .steps-section::before,
    .instagram-section::before,
    .google-reviews-section::before,
    .page-hero::before {
        width: 420px;
        opacity: .065;
    }

    .trust-strip::before {
        left: -220px;
        bottom: -160px;
    }

    .page-hero::before {
        right: -210px;
        bottom: -190px;
    }

    .cta-band::before {
        right: -250px;
        bottom: -230px;
        width: 460px;
        opacity: .12;
    }

    .room-card p,
    .room-grid.detailed .room-card p {
        min-height: 0;
    }

    .google-review-card {
        min-height: 0;
        padding: 18px;
    }

    .steps div {
        grid-template-columns: 46px 1fr;
        padding: 14px;
    }

    .steps span {
        width: 42px;
        height: 42px;
    }

    .cta-actions,
    .hero-actions,
    .card-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }

    .modal-card {
        padding: 22px 16px;
    }

    .mobile-actions {
        display: grid;
    }

    .site-footer {
        padding-bottom: 112px;
    }
}

@media (max-width: 640px) {
    body {
        background: var(--site-bg);
    }

    .container {
        width: min(100% - 20px, 1120px);
    }

    .site-header {
        box-shadow: 0 10px 28px rgba(45, 45, 52, .06);
    }

    .header-inner {
        min-height: 60px;
        gap: 10px;
    }

    .top-announcement-inner {
        min-height: 38px;
        padding: 0 10px;
    }

    .top-socials {
        left: 10px;
        gap: 6px;
    }

    .top-social-link {
        width: 28px;
        height: 28px;
    }

    .top-social-link svg {
        width: 15px;
        height: 15px;
    }

    .announcement-track {
        width: calc(100% - 106px);
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
        mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    }

    .announcement-marquee {
        gap: 32px;
        font-size: .78rem;
        animation-duration: 18s;
    }

    .announcement-marquee span::after {
        right: -19px;
        width: 5px;
        height: 5px;
    }

    .brand-logo {
        width: min(138px, 46vw);
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        padding: 10px;
    }

    .site-nav {
        top: 106px;
        left: 10px;
        right: 10px;
        padding: 8px;
        gap: 4px;
    }

    .site-nav a {
        min-height: 42px;
        padding: 9px 10px;
        font-size: .94rem;
    }

    .flash {
        top: 112px;
        width: min(100% - 20px, 520px);
        padding: 12px;
        font-size: .92rem;
    }

    .hero-slider {
        min-height: 0;
        background:
            linear-gradient(180deg, rgba(255, 240, 250, .98), rgba(238, 250, 246, .68)),
            var(--site-bg);
    }

    .hero-slider::before {
        right: -250px;
        bottom: auto;
        top: 40px;
        width: 440px;
        opacity: .055;
    }

    .hero-slider::after {
        display: none;
    }

    .hero-slide {
        min-height: 0;
        padding: 14px 0 46px;
    }

    .hero-grid {
        gap: 16px;
    }

    .hero-media {
        order: -1;
    }

    .hero-media img {
        aspect-ratio: 1.2 / 1;
        max-height: 292px;
        border-radius: 8px;
        box-shadow: 0 16px 34px rgba(45, 45, 52, .12);
    }

    .hero-note {
        display: none;
    }

    .hero-copy {
        text-align: left;
        padding-bottom: 2px;
    }

    .hero-copy::before {
        left: -64px;
        top: -4px;
        width: 210px;
        opacity: .06;
    }

    .hero-slide:nth-of-type(2n) .hero-copy::before {
        left: -84px;
        top: 30px;
        width: 260px;
        opacity: .055;
    }

    .hero-slide:nth-of-type(3n) .hero-copy::before {
        left: -56px;
        top: -6px;
        width: 205px;
        opacity: .058;
    }

    .eyebrow {
        margin-bottom: 7px;
        font-size: .7rem;
        letter-spacing: .055em;
    }

    h1 {
        font-size: clamp(2rem, 11.5vw, 2.85rem);
        line-height: 1.02;
    }

    .hero-copy h2 {
        font-size: clamp(2rem, 11.5vw, 2.85rem);
        line-height: 1.02;
    }

    h2 {
        font-size: clamp(1.55rem, 7.5vw, 2.05rem);
        line-height: 1.08;
    }

    h3 {
        font-size: 1.16rem;
    }

    p {
        line-height: 1.55;
    }

    .hero-copy > p:not(.eyebrow) {
        margin: 12px 0 16px;
        font-size: .96rem;
        line-height: 1.55;
    }

    .hero-actions,
    .cta-actions,
    .card-actions,
    .experience-actions {
        gap: 9px;
    }

    .btn,
    .header-call {
        min-height: 44px;
        padding: 11px 14px;
        font-size: .95rem;
    }

    .slider-dots {
        bottom: 14px;
        gap: 7px;
    }

    .slider-dots button {
        width: 24px;
        height: 7px;
    }

    .trust-strip {
        padding: 12px 0;
    }

    .trust-grid {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding: 2px 2px 8px;
    }

    .trust-grid::-webkit-scrollbar {
        display: none;
    }

    .trust-grid div {
        flex: 0 0 72vw;
        scroll-snap-align: start;
        min-height: 92px;
        padding: 13px;
        box-shadow: 0 8px 20px rgba(45, 45, 52, .05);
    }

    .trust-grid strong {
        font-size: .95rem;
    }

    .trust-grid span {
        font-size: .84rem;
    }

    .section {
        padding: 50px 0;
    }

    .section-head {
        margin-bottom: 22px;
    }

    .section-head.row-head {
        gap: 10px;
    }

    .section-head.row-head .text-link {
        justify-self: start;
    }

    .experience-layout,
    .service-layout,
    .split,
    .contact-grid,
    .story-card,
    .page-hero-grid {
        gap: 18px;
    }

    .experience-collage {
        min-height: 0;
        display: grid;
        gap: 10px;
        max-width: none;
    }

    .experience-collage img {
        position: static;
    }

    .collage-main {
        width: 100%;
        aspect-ratio: 4 / 3;
    }

    .collage-small {
        display: none;
    }

    .floating-badge {
        position: static;
        width: 100%;
        max-width: none;
        justify-content: center;
        padding: 10px 12px;
        font-size: .9rem;
        animation: none;
    }

    .feature-card,
    .room-card,
    .blog-card,
    .value-grid article,
    .contact-card,
    .contact-form,
    .story-card {
        box-shadow: 0 10px 24px rgba(45, 45, 52, .055);
    }

    .story-list {
        display: grid;
        gap: 14px;
    }

    .story-card {
        padding: 12px;
    }

    .story-card::after {
        opacity: .04;
        right: -150px;
        bottom: -160px;
    }

    .story-card img {
        aspect-ratio: 16 / 10;
    }

    .rich-text p {
        margin: 10px 0;
    }

    .steps {
        gap: 10px;
    }

    .steps div {
        grid-template-columns: 38px 1fr;
        gap: 4px 12px;
        padding: 12px;
    }

    .steps span {
        width: 38px;
        height: 38px;
        font-size: .95rem;
    }

    .steps p {
        font-size: .92rem;
    }

    .carousel-shell {
        padding-bottom: 0;
    }

    .carousel-track {
        gap: 12px;
        margin-right: -10px;
        padding: 2px 10px 14px 0;
        scroll-padding-left: 0;
    }

    .carousel-track > * {
        flex-basis: min(82vw, 330px);
    }

    .gallery-row.carousel-track > figure {
        flex-basis: min(70vw, 265px);
    }

    .carousel-btn {
        display: none;
    }

    .room-card img,
    .feature-card img,
    .blog-card img {
        aspect-ratio: 16 / 10;
    }

    .room-card div,
    .blog-card div {
        padding: 14px;
    }

    .room-card p,
    .blog-card p {
        margin: 9px 0 12px;
        font-size: .94rem;
    }

    .gallery-row {
        grid-template-columns: 1fr 1fr;
        gap: 9px;
    }

    .gallery-row img,
    .gallery-masonry img {
        aspect-ratio: 1;
        min-height: 0;
        object-fit: cover;
    }

    .gallery-row figcaption,
    .gallery-masonry figcaption {
        display: none;
    }

    .gallery-masonry {
        columns: 2 150px;
        column-gap: 9px;
    }

    .gallery-masonry figure {
        margin-bottom: 9px;
    }

    .instagram-section {
        background:
            linear-gradient(180deg, rgba(255, 240, 250, .9), rgba(255, 255, 255, .96)),
            #fff;
    }

    .instagram-cta {
        min-height: 0;
        padding: 20px;
        gap: 18px;
    }

    .instagram-cta::before {
        right: -130px;
        bottom: -140px;
        width: 260px;
        opacity: .06;
    }

    .instagram-cta::after {
        display: none;
    }

    .instagram-copy p:not(.eyebrow) {
        font-size: .95rem;
    }

    .instagram-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .service-section,
    .appointment-service {
        padding: 42px 0;
    }

    .service-points {
        gap: 6px;
    }

    .service-points span {
        padding: 8px 0 8px 12px;
        font-size: .92rem;
    }

    .instagram-profile-card {
        padding: 20px 16px;
    }

    .instagram-mark {
        width: 68px;
        height: 68px;
        font-size: 1.2rem;
    }

    .page-hero {
        padding: 22px 0 30px;
    }

    .page-hero-grid {
        gap: 14px;
    }

    .page-hero img {
        order: -1;
        aspect-ratio: 16 / 10;
        max-height: 240px;
    }

    .page-hero .breadcrumbs-inline,
    .article-header .breadcrumbs-inline {
        position: static;
        margin: 2px 0 10px;
    }

    .page-hero p {
        margin: 10px 0 0;
        font-size: .96rem;
    }

    .contact-card,
    .contact-form {
        padding: 16px;
    }

    .stacked-form,
    .form-grid {
        gap: 12px;
    }

    input,
    select,
    textarea {
        min-height: 44px;
    }

    textarea {
        min-height: 96px;
    }

    .cta-band {
        padding: 38px 0;
    }

    .cta-inner {
        gap: 18px;
    }

    .cta-band h2 {
        font-size: clamp(1.55rem, 7.5vw, 2rem);
    }

    .site-footer {
        padding-bottom: 94px;
    }

    .footer-grid {
        gap: 22px;
    }

    .footer-brand .brand-logo {
        width: min(146px, 52vw);
    }

    .mobile-actions {
        gap: 8px;
        padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, .95);
        border-top: 1px solid rgba(234, 221, 230, .9);
        box-shadow: 0 -10px 24px rgba(45, 45, 52, .08);
    }

    .mobile-actions a,
    .mobile-actions button {
        min-height: 42px;
        font-size: .92rem;
    }

    .whatsapp-float {
        left: 12px;
        bottom: calc(76px + env(safe-area-inset-bottom));
        gap: 6px;
    }

    .whatsapp-note {
        max-width: 150px;
        margin-left: 4px;
        padding: 7px 10px;
        font-size: .74rem;
    }

    .whatsapp-note::after {
        left: 18px;
    }

    .whatsapp-icon {
        width: 44px;
        height: 44px;
    }

    .whatsapp-icon svg {
        width: 25px;
        height: 25px;
    }

    .back-to-top {
        right: 12px;
        bottom: calc(76px + env(safe-area-inset-bottom));
        width: 42px;
        height: 42px;
        font-size: 1rem;
        box-shadow: 0 12px 24px rgba(255, 102, 196, .24);
    }

    .modal {
        padding: 10px;
        align-items: end;
    }

    .modal-card {
        width: 100%;
        max-height: min(88vh, 720px);
        overflow-y: auto;
        padding: 18px 14px;
        border-radius: 8px 8px 0 0;
    }

    .modal-card h2 {
        padding-right: 34px;
    }

    .modal-info {
        grid-template-columns: 1fr;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
    }

    .paw-print {
        display: none;
    }

    .page-hero::after {
        left: auto;
        right: -120px;
        bottom: -135px;
        width: 250px;
        opacity: .035;
    }

    body.page-randevu-al .page-hero::after,
    body.page-iletisim .page-hero::after {
        right: -130px;
        bottom: -140px;
        width: 270px;
    }

    .experience-section::after,
    .rooms-section::after,
    .instagram-section::after,
    .gallery-preview::after,
    .cta-band::after,
    .inner-decor::after,
    .why-values-section::after {
        display: none;
    }

    .trust-strip::before,
    .gallery-preview::before,
    .inner-decor::before,
    .experience-section::before,
    .care-section::before,
    .rooms-section::before,
    .steps-section::before,
    .instagram-section::before,
    .google-reviews-section::before,
    .page-hero::before,
    .cta-band::before {
        opacity: .035;
        width: 360px;
    }
}

@media (max-width: 430px) {
    .hero-media img {
        max-height: 252px;
    }

    .hero-copy > p:not(.eyebrow),
    .page-hero p,
    .rich-text,
    .room-card p,
    .blog-card p {
        font-size: .92rem;
    }

    .trust-grid div {
        flex-basis: 78vw;
    }

    .gallery-row.carousel-track > figure {
        flex-basis: 68vw;
    }

    .room-card div,
    .blog-card div,
    .feature-card h3,
    .feature-card p {
        padding-left: 12px;
        padding-right: 12px;
    }

    .contact-card,
    .contact-form {
        padding: 14px;
    }
}

@media (max-width: 980px) {
    .why-values-layout {
        grid-template-columns: 1fr;
    }

    .why-values-intro {
        display: grid;
        grid-template-columns: minmax(250px, .78fr) 1fr;
    }

    .why-values-photo img {
        height: 100%;
        aspect-ratio: auto;
    }
}

@media (max-width: 640px) {
    .why-values-section {
        padding: 44px 0;
    }

    .why-values-layout {
        gap: 14px;
    }

    .why-values-intro {
        display: block;
    }

    .why-values-photo img {
        height: auto;
        aspect-ratio: 16 / 10;
        max-height: 220px;
    }

    .why-values-copy {
        padding: 16px;
    }

    .why-values-copy .btn {
        margin-top: 14px;
    }

    .why-value-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .why-value-grid article {
        min-height: 0;
        padding: 60px 16px 16px;
    }

    .why-value-grid article::before {
        left: 16px;
        top: 16px;
        width: 34px;
        height: 34px;
        font-size: .8rem;
    }

    .why-value-grid strong {
        font-size: 1.08rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

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