* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #171717;
    line-height: 1.6
}

a {
    text-decoration: none;
    color: inherit
}
Span {
    color: #ed8200;
}

.wrap {
    width: min(1150px, 92%);
    margin: auto
}
/* ================================
   GET A QUOTE BUTTON
   ================================ */

.links a.get-quote {
    width: 130px;
    height: 40px;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    margin-left: 10px;

    text-align: center !important;
    white-space: nowrap;

    font-size: 14px !important;
    line-height: 1 !important;

    color: #111 !important;
    background: #fff !important;

    border: 2px solid #d4a017 !important;
    border-radius: 50px;

    box-sizing: border-box;
}

.links a.get-quote {
    position: relative;
    display: inline-block;

    padding: 18px 40px;
    margin-left: 15px;

    color: #ffffff !important;
    background:   #d4a017 !important;

    border: 2px solid  #d4a017 !important;
    border-radius: 50px;

    text-decoration: none !important;
    font-size: 16px;
    font-weight: 700;

    overflow: hidden;

    box-shadow: 0 5px 0 #d4a017;

    transition:
        background 0.3s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


/* ================================
   HOVER EFFECT
   ================================ */

.links a.get-quote:hover {
    color: #ffffff !important;
    background: #d4a117 !important;

    transform: translateY(-3px);

    box-shadow: 0 8px 15px rgba(209, 177, 22, 0.833);
}


/* ================================
   CLICK / PRESS EFFECT
   ================================ */

.links a.get-quote:active {
    transform: translateY(2px);

    box-shadow: 0 2px 0 #d4a017;
}


/* ================================
   SHINE ANIMATION
   ================================ */

.links a.get-quote::before {
    content: "";

    position: absolute;
    top: 0;
    left: -100%;

    width: 60%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );

    transform: skewX(-20deg);

    transition: left 0.6s ease;
}
/* ================================
   GLIMPAXE NAVIGATION BAR
   ================================ */

.links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}


/* ================================
   NORMAL NAVIGATION LINKS
   ================================ */

.links a:not(.get-quote) {
    position: relative;
    display: inline-block;
    padding: 10px 16px;
    color: #111;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}


/* Hover effect - NORMAL LINKS ONLY */

.links a:not(.get-quote):hover {
    color: #d4a017;
    background: rgba(212, 160, 23, 0.08);
}


/* Animated underline - NORMAL LINKS ONLY */

.links a:not(.get-quote)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: #d4a017;
    border-radius: 10px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}


/* Underline when hovering */

.links a:not(.get-quote):hover::after {
    width: 60%;
}


/* ================================
   ACTIVE PAGE - NORMAL LINKS ONLY
   ================================ */

.links a:not(.get-quote).active {
    color: #d4a017;
    background: rgba(212, 160, 23, 0.08);
}


/* Active underline */

.links a:not(.get-quote).active::after {
    width: 60%;
}


/* ================================
   GET A QUOTE
   ================================ */

/* Prevent the navigation CSS from affecting it */

.links a.get-quote {
    position: static;
    padding: initial;
    background: none;
    color: initial;
    text-decoration: none;
}

/* Make sure the navigation hover doesn't affect it */

.links a.get-quote:hover {
    background: none;
    color: initial;
}

/* Remove the navigation underline completely */

.links a.get-quote::after {
    content: none;
}

/* Shine when hovering */

.links a.get-quote:hover::before {
    left: 140%;
}


/* Remove navigation underline */

.links a.get-quote::after {
    content: none !important;
    display: none !important;
}

header {
    position: sticky;
    top: 0;
    z-index: 5;
    background: #fff;
    border-bottom: 1px solid #eee
}

.nav {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    width: 135px;
    height: 58px;
    object-fit: contain
}

.links {
    display: flex;
    gap: 18px;
    align-items: center
}

.links a {
    font-weight: bold;
    font-size: 14px
}

.btn-primary {
    background: #f28c00 !important;
    color: #fff !important
}

.btn-primary {
    padding: 12px 19px;
    border-radius: 28px
}

.btn-outline {
    background: #292929;
    color:white;
    padding: 12px 19px;
    border-radius: 28px;

}

.menu {
    display: none
}

.hero,
.page {
    padding: 80px 0;
    background: linear-gradient(120deg, #fff, #fff4e1)
}

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

.hero h1,
.title {
    font: 800 clamp(40px, 6vw, 72px)/1.05 Georgia, serif;
    margin: 12px 0
}

.hero h1 span {
    color: #ed8200
}

.lead {
    font-size: 18px;
    color: #666;
    max-width: 680px
}

.hero img,
.photo img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 50px #0002
}

.eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #bd6700;
    font-weight: 900
}

section {
    padding: 85px 0
}

.cream {
    background: #fff8ef
}

.dark {
    background: #171717;
    color: #fff
}

.dark p {
    color: #bbb
}

.center {
    text-align: center
}

.cards,
.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.card,
.product {
    background: #fff;
    border: 1px solid #e8e3dc;
    border-radius: 20px;
    overflow: hidden;
    padding: 22px
}

.product {
    padding: 0
}

.product img {
    width: 100%;
    height: 270px;
    object-fit: cover
}

.product div {
    padding: 18px
}

.card p,
.product p {
    color: #666
}
/* Founder Section */
.founder-section {
    padding: 70px 0;
    background: #fffaf3;
}

.founder-box {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: center;
}

.founder-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center top;
    border-radius: 22px;
    display: block;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.founder-info h2 {
    font-family: Georgia, serif;
    font-size: 42px;
    margin: 10px 0 5px;
}

.founder-info h4 {
    color: #ed8200;
    margin: 0 0 20px;
    font-size: 15px;
}

.founder-info p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    max-width: 600px;
}

/* Mobile */
@media (max-width: 700px) {

    .founder-box {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .founder-photo {
        max-width: 320px;
        margin: auto;
    }

    .founder-photo img {
        height: 360px;
    }

    .founder-info h2 {
        font-size: 34px;
    }

    .founder-info p {
        margin-left: auto;
        margin-right: auto;
    }
}
/* =========================
   GLIMPAXE WORKSPACE
========================= */

.workspace-section {
    padding: 90px 0;
    background: #fff;
    overflow: hidden;
}

.workspace-heading {
    max-width: 760px;
    margin-bottom: 45px;
}

.workspace-heading h2 {
    font-family: Georgia, serif;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.08;
    margin: 10px 0 18px;
    letter-spacing: -1px;
}

.workspace-heading h2 span {
    color: #ed8200;
}

.workspace-heading p {
    color: #666;
    font-size: 17px;
    line-height: 1.8;
    max-width: 700px;
}

.workspace-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 24px;
    align-items: stretch;
}

.workspace-image {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    min-height: 420px;
    background: #171717;
    box-shadow: 0 20px 55px rgba(0,0,0,0.12);
}

.workspace-large {
    min-height: 540px;
}

.workspace-small {
    min-height: 540px;
}

.workspace-image img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.workspace-image:hover img {
    transform: scale(1.05);
}

/* Dark gradient over image */

.workspace-image::after {
    content: "";
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(0,0,0,0.82)
    );
    pointer-events: none;
}

/* Image caption */

.workspace-caption {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 23px;
    color: #fff;
    z-index: 2;
}

.workspace-caption span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #ed8200;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 10px;
}

.workspace-caption strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 25px;
    margin-bottom: 5px;
}

.workspace-caption p {
    margin: 0;
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    line-height: 1.6;
    max-width: 430px;
}

/* Responsive */

@media (max-width: 850px) {

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

    .workspace-large,
    .workspace-small {
        min-height: 450px;
    }

}

@media (max-width: 600px) {

    .workspace-section {
        padding: 65px 0;
    }

    .workspace-large,
    .workspace-small {
        min-height: 380px;
        border-radius: 20px;
    }

    .workspace-caption {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .workspace-caption strong {
        font-size: 21px;
    }

}

.text {
    color: #bd6700;
    font-weight: bold
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px
}

.step {
    background: #fff;
    color: #171717;
    padding: 20px;
    border-radius: 17px
}

.step b {
    font: 800 32px Georgia;
    color: #ed8200
}

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

.gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 18px
}

.faq details {
    padding: 18px 0;
    border-bottom: 1px solid #ddd
}

.faq summary {
    font-weight: bold;
    cursor: pointer
}

.form {
    background: #fff;
    color: #171717;
    padding: 25px;
    border-radius: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.form label {
    font-size: 12px;
    font-weight: bold
}

.form input,
.form select,
.form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 5px
}

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

.social {
    background: #fff0da
}

.socialrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px
}

.socials {
    display: flex;
    gap: 10px
}

.socials a {
    background: #171717;
    color: #fff;
    padding: 10px 15px;
    border-radius: 22px;
    font-weight: bold
}

footer {
    background: #111;
    color: #fff;
    padding: 50px 0 20px
}

.foot {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px
}

.foot a {
    display: block;
    color: #aaa;
    margin: 6px 0
}

.copyright {
    border-top: 1px solid #292929;
    margin-top: 30px;
    padding-top: 15px;
    color: #777;
    font-size: 12px
}

.float {
    position: fixed;
    right: 15px;
    bottom: 15px;
    background: #1db954;
    color: #fff;
    padding: 12px 18px;
    border-radius: 28px;
    font-weight: bold;
    z-index: 9
}

@media(max-width:800px) {
    .links {
        display: none;
        position: absolute;
        top: 75px;
        left: 4%;
        right: 4%;
        background: #fff;
        padding: 18px;
        flex-direction: column;
        align-items: stretch
    }

    .links.open {
        display: flex
    }

    .menu {
        display: block;
        border: 0;
        background: none;
        font-size: 25px
    }

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

    .cards,
    .products,
    .steps,
    .gallery,
    .foot {
        grid-template-columns: 1fr 1fr
    }

    .form {
        grid-template-columns: 1fr
    }

    .full {
        grid-column: auto
    }

    .socialrow {
        flex-direction: column;
        align-items: flex-start
    }
}

@media(max-width:520px) {

    .cards,
    .products,
    .steps,
    .gallery,
    .foot {
        grid-template-columns: 1fr
    }
}

/* ===== GLIMPAXE MOMENTO ADVANCED EXPERIENCE LAYER ===== */
:root {
    --gm-gold: #ed8200;
    --gm-gold-dark: #b85f00;
    --gm-ink: #171717;
    --gm-cream: #fff8ef;
    --gm-line: #e9e3da;
    --gm-shadow: 0 24px 70px rgba(23, 23, 23, .10)
}

html {
    scroll-behavior: smooth
}

body {
    overflow-x: hidden;
    background: #fff
}

img {
    transition: transform .6s cubic-bezier(.2, .7, .2, 1)
}

a {
    transition: color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease
}

.links a:not(.cta):hover {
    color: var(--gm-gold)
}

.cta:hover,
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(237, 130, 0, .25)
}

header {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, .92)
}

.hero {
    position: relative;
    overflow: hidden
}

.hero:before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(237, 130, 0, .10);
    filter: blur(5px);
    right: -120px;
    top: -180px
}

.hero>*,
.page>*,
section>.wrap {
    position: relative;
    z-index: 1
}

.hero img:hover,
.photo img:hover,
.photo-frame img:hover,
.gallery img:hover,
.product img:hover {
    transform: scale(1.035)
}

.hero h1 {
    letter-spacing: -2px
}

.section-heading {
    max-width: 820px;
    margin: 0 0 38px
}

.section-heading p {
    max-width: 700px;
    color: #686868;
    font-size: 17px
}

.section-title {
    font: 800 clamp(34px, 5vw, 58px)/1.08 Georgia, serif;
    margin: 10px 0 16px;
    letter-spacing: -1px
}

.premium-section {
    position: relative;
    overflow: hidden
}

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

.feature-grid.four {
    grid-template-columns: repeat(4, 1fr)
}

.feature-card {
    background: #fff;
    border: 1px solid var(--gm-line);
    padding: 28px;
    border-radius: 22px;
    box-shadow: 0 8px 30px rgba(23, 23, 23, .04);
    transition: transform .35s ease, box-shadow .35s ease
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--gm-shadow)
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #fff0da;
    color: var(--gm-gold);
    font-weight: 900;
    font-size: 20px
}

.feature-card h3 {
    margin-bottom: 8px
}

.feature-card p {
    color: #686868
}

.split-copy {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center
}

.dark .section-title {
    color: #fff
}

.dark .eyebrow {
    color: #ffb34e
}

.dark p {
    color: #c9c9c9
}

.quote-panel {
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .14);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .16)
}

.quote-panel h3 {
    font-size: 28px
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 24px 0
}

.pill-row span {
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 8px 13px;
    border-radius: 30px;
    font-size: 13px;
    color: #111
}
.pill-row span {
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 8px 13px;
    border-radius: 30px;
    font-size: 13px;
    color: #bbb
}
.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.timeline>div {
    border-top: 2px solid var(--gm-gold);
    padding-top: 18px
}

.timeline b {
    font: 800 32px Georgia;
    color: var(--gm-gold)
}

.timeline p {
    color: #686868
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    text-align: center
}

.stats-grid>div {
    padding: 26px;
    border: 1px solid #eadfce;
    border-radius: 20px;
    background: rgba(255, 255, 255, .65)
}

.stats-grid strong {
    display: block;
    font: 800 32px Georgia;
    color: var(--gm-gold)
}

.stats-grid span {
    color: #666
}

.center-lead {
    margin-left: auto;
    margin-right: auto
}

.light {
    color: #c9c9c9 !important
}

.dark-btn {
    background: #171717
}

.cta-banner {
    background: linear-gradient(110deg, #1a1a1a, #302315);
    color: #fff;
    padding: 90px 0;
    position: relative;
    overflow: hidden
}

.cta-banner:after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(237, 130, 0, .3);
    border-radius: 50%;
    right: -100px;
    top: -100px
}

.cta-banner h2 {
    font: 800 clamp(38px, 5vw, 62px)/1.05 Georgia, serif;
    max-width: 800px
}

.cta-banner p {
    color: #c7c7c7;
    max-width: 650px;
    font-size: 18px
}

.story-card {
    background: #171717;
    color: #fff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: var(--gm-shadow);
    transform: rotate(1deg)
}

.story-card span {
    color: #ffb34e;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 900
}

.story-card h3 {
    font: 800 38px/1.1 Georgia, serif
}

.story-card p {
    color: #bbb
}

.editorial-grid {
    align-items: center
}

.photo-frame {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--gm-shadow);
    background: #eee
}

.photo-frame img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover
}

.check-list {
    padding: 0;
    list-style: none
}

.check-list li {
    padding: 11px 0 11px 28px;
    position: relative;
    color: #555
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--gm-gold);
    font-weight: 900
}

.service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.service-list article {
    padding: 30px;
    border: 1px solid var(--gm-line);
    border-radius: 22px;
    position: relative;
    background: #fff;
    transition: .35s
}

.service-list article:hover {
    transform: translateY(-7px);
    box-shadow: var(--gm-shadow)
}

.service-list article>span {
    font: 800 24px Georgia;
    color: var(--gm-gold)
}

.service-list h3 {
    font-size: 23px
}

.service-list p {
    color: #666
}

.service-list a {
    font-weight: 800;
    color: var(--gm-gold-dark)
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.benefit-grid>div {
    padding: 25px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eadfce
}

.benefit-grid b {
    font: 800 30px Georgia;
    color: var(--gm-gold)
}

.benefit-grid p {
    color: #666
}

.category-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.category-strip a {
    padding: 12px 18px;
    border: 1px solid var(--gm-line);
    border-radius: 30px;
    font-weight: 800
}

.category-strip a:hover {
    background: var(--gm-gold);
    color: #fff;
    border-color: var(--gm-gold);
    transform: translateY(-2px)
}

.mini-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.mini-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px
}

.dark-pills span {
    border-color: #555
}

.portfolio-story {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.portfolio-story>div {
    background: #fff;
    border: 1px solid var(--gm-line);
    padding: 30px;
    border-radius: 22px
}

.portfolio-story b {
    font: 800 32px Georgia;
    color: var(--gm-gold)
}

.portfolio-story p {
    color: #666
}

.number-list {
    list-style: none;
    padding: 0;
    margin: 20px 0
}

.number-list li {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 15px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08)
}

.number-list b {
    color: var(--gm-gold)
}

.light-panel {
    background: #fff;
    color: #171717;
    border: 0
}

.light-panel p {
    color: #666
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px
}

.faq-grid h3 {
    font: 800 28px Georgia;
    margin-top: 0
}

.faq-grid details {
    background: #fff;
    border: 1px solid var(--gm-line);
    border-radius: 16px;
    margin: 12px 0;
    padding: 18px 20px
}

.faq-grid summary {
    font-weight: 800
}

.faq-grid details p {
    color: #666
}

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

.brief-grid>div {
    padding: 25px;
    background: #fff;
    border: 1px solid var(--gm-line);
    border-radius: 20px
}

.brief-grid b {
    font-size: 18px
}

.brief-grid p {
    color: #666
}

.live-products {
    min-height: 100px;
    margin-bottom: 24px
}

.loading-card {
    padding: 28px;
    border: 1px dashed #ddd;
    border-radius: 18px;
    color: #777;
    grid-column: 1/-1
}

.live-products .product {
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06)
}

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

.reveal.is-visible {
    opacity: 1;
    transform: none
}

.float {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    transition: transform .25s ease
}

.float:hover {
    transform: translateY(-4px) scale(1.03)
}

@media(max-width:1000px) {

    .feature-grid.four,
    .benefit-grid,
    .brief-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .service-list {
        grid-template-columns: 1fr 1fr
    }

    .timeline,
    .stats-grid {
        grid-template-columns: 1fr 1fr
    }

    .split-copy {
        gap: 35px
    }

    .faq-grid {
        gap: 25px
    }
}

@media(max-width:800px) {
    section {
        padding: 65px 0
    }

    .feature-grid,
    .feature-grid.four,
    .service-list,
    .benefit-grid,
    .portfolio-story,
    .faq-grid,
    .brief-grid,
    .split-copy {
        grid-template-columns: 1fr
    }

    .timeline,
    .stats-grid {
        grid-template-columns: 1fr 1fr
    }

    .story-card {
        transform: none
    }

    .photo-frame img {
        min-height: 320px
    }

    .mini-gallery img {
        height: 180px
    }

    .section-title {
        letter-spacing: -.5px
    }

    .hero {
        padding: 55px 0
    }
}

@media(max-width:520px) {
    section {
        padding: 52px 0
    }

    .timeline,
    .stats-grid {
        grid-template-columns: 1fr
    }

    .hero h1 {
        font-size: 46px
    }

    .hero .btn {
        margin-bottom: 8px
    }

    .socials {
        flex-wrap: wrap
    }

    .socials a {
        padding: 9px 13px
    }

    .mini-gallery {
        grid-template-columns: 1fr
    }

    .mini-gallery img {
        height: 230px
    }

    .form {
        padding: 18px
    }

    .float {
        right: 10px;
        bottom: 10px
    }

    .nav {
        height: 70px
    }

    .logo {
        width: 120px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

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

    * {
        animation: none !important;
        transition: none !important
    }
}