:root {
    --emerald-900: #064e3b;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --emerald-400: #34d399;
    --cream: #F5F5DC;
    --cream-light: #FAFAF0;
    --cream-dark: #E8E8D0;
    --dark: #1a1a1a;
    --dark-soft: #2d2d2d;
    --gray: #6b7280;
    --gray-light: #f3f4f6;
    --white: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    background: var(--cream-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 245, 220, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(5, 150, 105, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--emerald-700);
}

.logo-icon {
    color: var(--emerald-600);
}

.logo--light {
    color: var(--cream);
}

.logo--light .logo-icon {
    color: var(--cream);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-soft);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald-600);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--emerald-700);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--emerald-600) !important;
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    transition: var(--transition) !important;
}

.btn-nav::after {
    display: none !important;
}

.btn-nav:hover {
    background: var(--emerald-700) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* HERO */
.hero {
    min-height: 100vh;
    background: var(--cream);
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--emerald-600);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--emerald-400);
    bottom: 100px;
    left: -80px;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--emerald-500);
    top: 30%;
    left: 15%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 7s ease-in-out infinite;
}

.shape-4 {
    width: 80px;
    height: 80px;
    background: var(--emerald-700);
    top: 20%;
    right: 30%;
    border-radius: 20%;
    animation: spin 12s linear infinite;
}

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

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.2);
    color: var(--emerald-700);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-headline {
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-headline em {
    color: var(--emerald-600);
    font-style: normal;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--emerald-600);
    color: var(--white);
    border-color: var(--emerald-600);
}

.btn-primary:hover {
    background: var(--emerald-700);
    border-color: var(--emerald-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
}

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

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-cta {
    background: var(--cream);
    color: var(--emerald-900);
    border-color: var(--cream);
}

.btn-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-cta-outline {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
}

.btn-cta-outline:hover {
    background: var(--cream);
    color: var(--emerald-900);
    transform: translateY(-2px);
}

/* HERO CARDS */
.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 480px;
}

.stat-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-card--main {
    grid-column: 1 / -1;
    height: 200px;
}

.stat-card--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stat-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
}

.stat-card-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-card--pet {
    background: var(--emerald-600);
    color: var(--white);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 140px;
}

.stat-card--parking {
    background: var(--dark);
    color: var(--cream);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 140px;
}

.stat-card--wifi {
    grid-column: 1 / -1;
    background: var(--emerald-500);
    color: var(--white);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 80px;
}

.stat-card-icon {
    opacity: 0.9;
}

.stat-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* HERO WAVE */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 60px;
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(5, 150, 105, 0.1);
    color: var(--emerald-700);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.section-tag--light {
    background: rgba(245, 245, 220, 0.2);
    color: var(--cream);
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 16px;
    color: var(--dark);
}

.section-title--light {
    color: var(--cream);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
}

.section-desc--light {
    color: rgba(245, 245, 220, 0.7);
}

/* ROOMS */
.rooms {
    padding: 100px 0;
    background: var(--white);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.room-card {
    background: var(--cream-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.06);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.room-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.room-card:hover .room-card-img img {
    transform: scale(1.05);
}

.room-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--emerald-600);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.room-card-body {
    padding: 28px;
}

.room-card-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.room-card-desc {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.room-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--dark-soft);
}

.room-features li svg {
    color: var(--emerald-600);
    flex-shrink: 0;
}

/* AMENITIES */
.amenities {
    padding: 100px 0;
    background: var(--emerald-700);
    position: relative;
    overflow: hidden;
}

.amenities-bg-block {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(16, 185, 129, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(5, 150, 105, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

.amenities .container {
    position: relative;
    z-index: 2;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.amenity-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
}

.amenity-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}

.amenity-icon {
    width: 56px;
    height: 56px;
    background: rgba(245, 245, 220, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    margin-bottom: 20px;
}

.amenity-title {
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 10px;
}

.amenity-desc {
    font-size: 0.9rem;
    color: rgba(245, 245, 220, 0.7);
    line-height: 1.6;
}

/* LOCATION */
.location {
    padding: 100px 0;
    background: var(--cream-light);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-info .section-tag {
    margin-bottom: 16px;
}

.location-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.location-desc {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 36px;
}

.location-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.highlight-icon {
    width: 44px;
    height: 44px;
    background: rgba(5, 150, 105, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-600);
    flex-shrink: 0;
}

.highlight-item strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
}

.highlight-item span {
    font-size: 0.85rem;
    color: var(--gray);
}

.location-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--dark-soft);
}

.contact-row svg {
    color: var(--emerald-600);
    flex-shrink: 0;
}

.contact-row a {
    color: var(--emerald-700);
    font-weight: 500;
    transition: var(--transition);
}

.contact-row a:hover {
    color: var(--emerald-900);
    text-decoration: underline;
}

.location-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 480px;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
}

/* WHY US */
.why-us {
    padding: 100px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content .section-tag {
    margin-bottom: 16px;
}

.why-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.why-desc {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 40px;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-point {
    display: flex;
    gap: 20px;
}

.why-point-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--emerald-400);
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
}

.why-point strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.why-point p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.why-visual {
    position: relative;
}

.why-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.why-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-stat-float {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--emerald-600);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.why-stat-num {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.why-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
}

/* CTA */
.cta {
    padding: 100px 0;
    background: var(--emerald-900);
    position: relative;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

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

.cta-shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(16, 185, 129, 0.15);
    top: -150px;
    left: -100px;
}

.cta-shape-2 {
    width: 250px;
    height: 250px;
    background: rgba(52, 211, 153, 0.1);
    bottom: -80px;
    right: 10%;
}

.cta-shape-3 {
    width: 120px;
    height: 120px;
    background: rgba(245, 245, 220, 0.08);
    top: 20%;
    right: 25%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.cta .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    color: var(--cream);
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(245, 245, 220, 0.7);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.cta-address {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(245, 245, 220, 0.5);
}

.cta-address svg {
    color: var(--emerald-400);
}

/* FOOTER */
.footer {
    background: var(--dark);
    color: rgba(245, 245, 220, 0.6);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(245, 245, 220, 0.1);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--cream);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-copy {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-nav h4,
.footer-contact h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cream);
    margin-bottom: 20px;
}

.footer-nav ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--emerald-400);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-contact svg {
    color: var(--emerald-400);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(245, 245, 220, 0.6);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--emerald-400);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
}

.footer-disclaimer {
    font-size: 0.75rem;
    opacity: 0.5;
}

/* SCROLL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE RESPONSIVE */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-cards {
        max-width: 400px;
    }

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

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

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

    .location-map {
        height: 360px;
    }

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

    .why-visual {
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        transform: translateY(-120%);
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-cards {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }

    .stat-card--main {
        height: 160px;
    }

    .stat-card--pet,
    .stat-card--parking {
        height: 120px;
    }

    .stat-card--wifi {
        height: 70px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .why-img-accent {
        right: -10px;
        bottom: -20px;
    }

    .why-stat-float {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .hero-cards {
        grid-template-columns: 1fr;
    }

    .stat-card--pet,
    .stat-card--parking {
        height: 110px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
