/* =====================================================================
   AAKASH PALIYA – LUXURY REAL ESTATE
   Light Ivory  |  Cormorant Garamond  |  No frameworks
   ===================================================================== */

/* ── RESET & BASE ──────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--sans);
    background-color: var(--cream);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ── DESIGN TOKENS ─────────────────────────────────────────────────── */
:root {
    /* Light luxury palette */
    --cream: #F8F5EF;
    --cream-2: #F2EDE4;
    --cream-3: #EDE6D9;
    --cream-4: #E6DDD0;
    --gold: #9A6E1A;
    --gold-light: #B07D1E;
    --gold-bright: #7A560F;
    --gold-dim: rgba(154, 110, 26, 0.10);
    --gold-border: rgba(154, 110, 26, 0.28);
    --gold-glow: rgba(154, 110, 26, 0.06);
    --ink: #1A1816;
    --ink-soft: #3A3530;
    --ink-mute: rgba(26, 24, 22, 0.60);
    --border-dim: rgba(26, 24, 22, 0.08);
    --wa-green: #128C55;

    /* Typography */
    --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-gap: 130px;
    --container-w: 1160px;
    --nav-h: 76px;

    /* Shadows */
    --shadow-gold: 0 0 80px rgba(154, 110, 26, 0.08);
    --shadow-card: 0 28px 72px rgba(0, 0, 0, 0.20);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.10);
}

/* ── SCROLL REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.12s;
}

.reveal-delay-2 {
    transition-delay: 0.24s;
}

.reveal-delay-3 {
    transition-delay: 0.36s;
}

.reveal-delay-4 {
    transition-delay: 0.48s;
}

/* ── CONTAINER ─────────────────────────────────────────────────────── */
.container {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 40px;
}

/* ── NAVBAR ────────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    background: rgba(248, 245, 239, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    z-index: 100;
    transition: border-color 0.4s, background 0.4s;
}

.navbar.scrolled {
    background: rgba(248, 245, 239, 0.98);
    border-bottom-color: var(--gold-border);
}

.nav-inner {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--ink);
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid var(--gold-border);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
    flex-shrink: 0;
    transition: border-color 0.3s, color 0.3s;
}

.nav-logo:hover .logo-mark {
    border-color: var(--gold-light);
    color: var(--gold-bright);
}

.logo-name {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--ink);
    transition: color 0.3s;
}

.nav-logo:hover .logo-name {
    color: var(--gold-light);
}

/* Nav CTA */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--wa-green);
    padding: 10px 22px;
    border: 1px solid rgba(18, 140, 85, 0.35);
    transition: background 0.28s, color 0.28s, border-color 0.28s;
    animation: waPulse 3s ease infinite;
}

.nav-cta svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.nav-cta:hover {
    background: var(--wa-green);
    color: #fff;
    border-color: var(--wa-green);
}

/* ── HERO ──────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    padding-top: var(--nav-h);
    display: flex;
    align-items: center;
    background-color: var(--cream);
    background-image:
        repeating-linear-gradient(135deg, transparent, transparent 64px, rgba(154, 110, 26, 0.020) 64px, rgba(154, 110, 26, 0.020) 65px),
        radial-gradient(ellipse at 78% 46%, rgba(154, 110, 26, 0.08) 0%, transparent 52%);
    position: relative;
    overflow: hidden;
}

/* Animated ring – far left */
.hero::before {
    content: '';
    position: absolute;
    width: 720px;
    height: 720px;
    border: 1px solid rgba(154, 110, 26, 0.07);
    border-radius: 50%;
    top: 50%;
    left: -320px;
    transform: translateY(-50%);
    animation: orbitRing 32s linear infinite;
    pointer-events: none;
    z-index: 0;
}

/* Second inner ring */
.hero::after {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(154, 110, 26, 0.04);
    border-radius: 50%;
    top: 50%;
    left: -180px;
    transform: translateY(-50%);
    animation: orbitRing 20s linear infinite reverse;
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 96px 40px;
    display: flex;
    align-items: center;
    gap: 88px;
    position: relative;
    z-index: 1;
}

/* Content */
.hero-content {
    flex: 1;
    order: 1;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 26px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.hero-name {
    font-family: var(--serif);
    font-size: clamp(52px, 7.5vw, 90px);
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: 0.02em;
    color: var(--ink);
    margin-bottom: 22px;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 48px;
}

.hero-location svg {
    width: 13px;
    height: 13px;
    color: var(--gold-light);
    flex-shrink: 0;
}

.tagline-wrap {
    min-height: 52px;
    display: flex;
    align-items: center;
    margin-bottom: 46px;
    padding-left: 20px;
    border-left: 1px solid var(--gold);
    position: relative;
}

.tagline-wrap::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 0;
    width: 1px;
    height: 35%;
    background: var(--gold-bright);
}

.tagline {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 400;
    color: var(--ink-soft);
    line-height: 1.45;
    transition: opacity 0.45s ease;
}

.tagline.fading {
    opacity: 0;
}

/* Social Row */
.social-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--gold-border);
    color: var(--ink-soft);
    background: transparent;
    transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.25s;
}

.social-btn svg {
    width: 17px;
    height: 17px;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.social-btn:active {
    transform: scale(0.90);
    transition-duration: 0.08s;
}

.social-btn.wa:hover {
    border-color: var(--wa-green);
    background: var(--wa-green);
    color: #fff;
}

.social-btn.ig:hover {
    border-color: #E1306C;
    background: #E1306C;
    color: #fff;
}

.social-btn.fb:hover {
    border-color: #1877F2;
    background: #1877F2;
    color: #fff;
}

.social-btn.yt:hover {
    border-color: #FF0000;
    background: #FF0000;
    color: #fff;
}

/* CTA Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    background: transparent;
    color: var(--gold-light);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding: 17px 38px;
    border: 1px solid var(--gold-border);
    transition: background 0.32s, color 0.32s, border-color 0.32s;
    position: relative;
    overflow: hidden;
}

.cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.30), transparent);
    transform: skewX(-12deg);
    pointer-events: none;
}

.cta-btn:hover::after {
    animation: btnShimmer 0.65s ease forwards;
}

.cta-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.cta-btn:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.cta-btn:hover svg {
    transform: translateX(5px);
    animation: arrowBounce 0.6s ease infinite alternate;
}

.cta-btn:active {
    transform: scale(0.97);
    transition-duration: 0.08s;
}

/* Photo */
.hero-photo {
    flex: 0 0 auto;
    order: 2;
}

.photo-frame {
    position: relative;
    display: inline-block;
}

.photo-frame::after {
    content: '';
    position: absolute;
    top: 22px;
    right: -22px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold-border);
    z-index: 0;
    pointer-events: none;
}

.photo-frame::before {
    content: '';
    position: absolute;
    top: 38px;
    right: -38px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(154, 110, 26, 0.10);
    z-index: 0;
    pointer-events: none;
}

.photo-frame img {
    position: relative;
    z-index: 1;
    width: 360px;
    height: 460px;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: sepia(4%) brightness(1.02) contrast(1.04);
}

/* ── SHARED SECTION STYLES ─────────────────────────────────────────── */
.section {
    padding: var(--section-gap) 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 72px;
}

.section-intro::before {
    content: '◆';
    display: block;
    font-size: 7px;
    color: var(--gold);
    margin-bottom: 18px;
    letter-spacing: 0.3em;
    opacity: 0.55;
}

.eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 300;
    color: var(--ink);
    line-height: 1.10;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.section-sub {
    font-size: 15px;
    font-weight: 400;
    color: var(--ink-soft);
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.80;
}

/* ── LANDMARKS ─────────────────────────────────────────────────────── */
.landmarks-section {
    background-color: var(--cream-2);
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(26, 24, 22, 0.028) 48px, rgba(26, 24, 22, 0.028) 49px),
        repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(26, 24, 22, 0.028) 48px, rgba(26, 24, 22, 0.028) 49px);
    border-top: 1px solid var(--border-dim);
    border-bottom: 1px solid var(--border-dim);
}

.landmarks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--border-dim);
}

.landmark-card {
    display: block;
    position: relative;
    overflow: hidden;
    background: var(--cream-3);
    cursor: pointer;
    text-decoration: none;
    outline-offset: 4px;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.landmark-card:hover {
    transform: scale(1.014);
    z-index: 2;
    box-shadow: var(--shadow-card), 0 0 0 1px var(--gold-border);
}

.landmark-card:focus-visible {
    outline: 1px solid var(--gold);
}

.landmark-card::before,
.landmark-card::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.landmark-card::before {
    top: 16px;
    left: 16px;
    border-top: 1px solid var(--gold-light);
    border-left: 1px solid var(--gold-light);
    transform: translate(-8px, -8px);
}

.landmark-card::after {
    top: 16px;
    right: 16px;
    border-top: 1px solid var(--gold-light);
    border-right: 1px solid var(--gold-light);
    transform: translate(8px, -8px);
}

.landmark-card:hover::before,
.landmark-card:hover::after {
    opacity: 1;
    transform: translate(0, 0);
}

.card-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.45s ease;
    filter: brightness(0.92) sepia(4%);
}

.landmark-card:hover .card-img img {
    transform: scale(1.07);
    filter: brightness(0.78) sepia(6%);
}

.card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 28px 28px;
    background: linear-gradient(to top,
            rgba(242, 237, 228, 0.97) 0%,
            rgba(242, 237, 228, 0.65) 55%,
            transparent 100%);
    color: var(--ink);
}

.card-body h3 {
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 400;
    margin-bottom: 6px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--ink);
}

.card-body p {
    font-size: 14px;
    font-weight: 400;
    color: var(--ink-soft);
    margin-bottom: 16px;
    line-height: 1.6;
}

.wa-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    background: transparent;
    color: var(--wa-green);
    border: 1px solid rgba(18, 140, 85, 0.32);
    padding: 6px 14px;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.wa-chip svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.landmark-card:hover .wa-chip {
    background: var(--wa-green);
    color: #fff;
    border-color: var(--wa-green);
}

/* ── STATS SECTION ─────────────────────────────────────────────────── */
.stats-section {
    background-color: #2A2520;
    background-image: repeating-linear-gradient(135deg, transparent, transparent 80px, rgba(154, 110, 26, 0.022) 80px, rgba(154, 110, 26, 0.022) 81px);
    padding: 110px 0;
    position: relative;
}

.stats-section::before,
.stats-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(196, 145, 28, 0.35) 25%, rgba(196, 145, 28, 0.35) 75%, transparent 100%);
}

.stats-section::before {
    top: 0;
}

.stats-section::after {
    bottom: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    padding: 56px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background 0.38s, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s;
}

/* Gold grow-bar at top of each stat card */
.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D9A840, transparent);
    transform: translateX(-50%);
    transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 1;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 22%;
    bottom: 22%;
    width: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.stat-item:last-child::after {
    display: none;
}

.stat-item:hover {
    background: rgba(196, 145, 28, 0.06);
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.25);
}

.stat-item:hover::before {
    width: 72%;
}

.stat-value {
    font-family: var(--serif);
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 300;
    color: #D9A840;
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(248, 245, 239, 0.55);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.stat-item.visible .stat-label {
    opacity: 1;
    transform: translateY(0);
}

.stat-item.visible:nth-child(1) .stat-label {
    transition-delay: 0.38s;
}

.stat-item.visible:nth-child(2) .stat-label {
    transition-delay: 0.50s;
}

.stat-item.visible:nth-child(3) .stat-label {
    transition-delay: 0.62s;
}

.stat-item.visible:nth-child(4) .stat-label {
    transition-delay: 0.74s;
}

/* ── FOOTER ────────────────────────────────────────────────────────── */
.footer {
    background: var(--cream-2);
    border-top: 1px solid var(--gold-border);
    padding: 44px 0;
}

.footer-inner {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-logo {
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid var(--gold-border);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
    flex-shrink: 0;
    transition: border-color 0.3s, color 0.3s;
}

.footer-logo:hover {
    border-color: var(--gold-light);
    color: var(--gold-bright);
}

.footer p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--ink-mute);
}

.footer-city {
    font-size: 12px !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* ── KEYFRAME ANIMATIONS ──────────────────────────────────────────── */

/* Hero cursor gold spotlight */
.hero-cursor-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(154, 110, 26, 0.08) 0%, transparent 65%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    will-change: left, top;
}

@keyframes arrowBounce {
    from {
        transform: translateX(4px);
    }

    to {
        transform: translateX(9px);
    }
}

@keyframes orbitRing {
    from {
        transform: translateY(-50%) rotate(0deg);
    }

    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(18, 140, 85, 0.32);
    }

    65% {
        box-shadow: 0 0 0 10px rgba(18, 140, 85, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(18, 140, 85, 0);
    }
}

@keyframes btnShimmer {
    0% {
        left: -120%;
    }

    100% {
        left: 160%;
    }
}

@keyframes statPop {
    from {
        transform: scale(0.75);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.stat-item.visible .stat-value {
    animation: statPop 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.stat-item.visible:nth-child(1) .stat-value {
    animation-delay: 0.08s;
}

.stat-item.visible:nth-child(2) .stat-value {
    animation-delay: 0.20s;
}

.stat-item.visible:nth-child(3) .stat-value {
    animation-delay: 0.32s;
}

.stat-item.visible:nth-child(4) .stat-value {
    animation-delay: 0.44s;
}

/* ── RESPONSIVE ────────────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 960px) {
    :root {
        --section-gap: 96px;
    }

    .hero-inner {
        flex-direction: column;
        padding: 80px 40px 72px;
        gap: 64px;
        text-align: center;
    }

    .hero-content {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-photo {
        order: 1;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-location {
        justify-content: center;
    }

    .tagline-wrap {
        border-left: none;
        border-top: 1px solid var(--gold);
        padding-left: 0;
        padding-top: 20px;
        justify-content: center;
        text-align: center;
    }

    .tagline-wrap::before {
        display: none;
    }

    .social-row {
        justify-content: center;
    }

    .photo-frame img {
        width: 280px;
        height: 360px;
    }

    .photo-frame::after {
        top: 16px;
        right: -16px;
    }

    .photo-frame::before {
        top: 28px;
        right: -28px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item::after {
        display: none;
    }

    .footer-inner {
        justify-content: center;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 620px) {
    :root {
        --section-gap: 80px;
        --nav-h: 66px;
    }

    .nav-inner {
        padding: 0 20px;
    }

    .logo-name {
        font-size: 16px;
    }

    .nav-cta span {
        display: none;
    }

    .nav-cta {
        padding: 9px 13px;
    }

    .hero-inner {
        padding: 64px 20px 60px;
        gap: 48px;
    }

    .photo-frame img {
        width: 240px;
        height: 300px;
    }

    .container {
        padding: 0 20px;
    }

    .landmarks-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .card-img {
        height: 240px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        padding: 44px 24px;
    }

    .section-intro {
        margin-bottom: 52px;
    }
}

/* Very small */
@media (max-width: 380px) {
    .hero-inner {
        padding: 56px 16px 52px;
    }

    .container {
        padding: 0 16px;
    }

    .photo-frame img {
        width: 200px;
        height: 260px;
    }
}