:root {
    --primary: #5b1d2d;
    --primary-light: #7c3247;
    --primary-dark: #3a1220;
    --white: #ffffff;
    --cream: #f7f1ec;
    --gold: #b6874f;
    --ink: #241016;
    --muted: #8a716c;
    --serif: 'Cormorant Garamond', serif;
    --sans: 'Jost', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
    font-weight: 300;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}

.eyebrow {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 500;
    display: inline-block;
    margin-bottom: 18px;
}

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.05;
}

.section-head {
    max-width: 640px;
    margin-bottom: 56px;
}

.section-head h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: var(--primary-dark);
}

.section-head p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

section {
    position: relative;
    padding: 120px 0;
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader span img {
    height: 74px;
    width: 95px;
}

/* ===== NAV ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    padding: 26px 0;
    transition: background .5s ease, padding .5s ease, box-shadow .5s ease;
}

header.scrolled {
    background: rgba(247, 241, 236, 0.92);
    backdrop-filter: blur(10px);
    padding: 14px 0;
    box-shadow: 0 6px 24px rgba(36, 16, 22, 0.06);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    height: 51px;
    width: 95px;
}

.logo {
    position: relative;
}

.logo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity .35s ease;
}

.unscroll-logo {
    opacity: 1;
}

.scroll-logo {
    opacity: 0;
}

#siteHeader.scrolled .unscroll-logo {
    opacity: 0;
}

#siteHeader.scrolled .scroll-logo {
    opacity: 1;
}

.logo b {
    font-family: var(--serif);
    font-size: 1.7rem;
    letter-spacing: 0.14em;
    color: var(--white);
    transition: color .5s ease;
}

.logo small {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    margin-top: 2px;
}

header.scrolled .logo b {
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    gap: 38px;
}

.nav-links a {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding-bottom: 4px;
    transition: color .4s ease;
}

header.scrolled .nav-links a {
    color: var(--primary-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .35s ease;
}

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

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 950;
}

.burger span {
    width: 26px;
    height: 1.5px;
    background: var(--white);
    transition: .3s;
}

header.scrolled .burger span {
    background: var(--primary-dark);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
    background: #381e248a url("../img/sehr1.webp");
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    visibility: visible;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    transform: scale(1.12);
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.12);
}

.slide1 .slide-bg {
    background: linear-gradient(100deg, rgba(36, 16, 22, 0.88) 0%, rgba(58, 18, 32, 0.72) 40%, rgba(58, 18, 32, 0.4) 75%),
    url('/img/sehr1.webp?auto=format&fit=crop&w=1800&q=80') center/cover;
}

.slide2 .slide-bg {
    background: linear-gradient(100deg, rgba(36, 16, 22, 0.88) 0%, rgba(58, 18, 32, 0.72) 40%, rgba(58, 18, 32, 0.4) 75%),
    url('/img/IMG_3428.JPG?auto=format&fit=crop&w=1800&q=80') center/cover;
}

* {
    cursor: none;
}

.circle {
    position: fixed;
    background-color: #ffffff;
    width: 10px;
    height: 10px;
    left: -10px;
    top: -10px;
    border-radius: 100%;
    z-index: 10000;
    transform: scale(1);
}

.circle-follow {
    position: fixed;
    width: 30px;
    height: 30px;
    left: -21px;
    top: -21px;
    border-radius: 50%;
    z-index: 10000;
    user-select: none;
    pointer-events: none;
    border: 1px solid #dde6e29e;
}

.slide-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--serif);
    font-size: min(42vw, 620px);
    color: rgba(255, 255, 255, 0.05);
    letter-spacing: 0.05em;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
}

.hero-arch {
    position: absolute;
    right: -6%;
    bottom: -8%;
    width: 56%;
    max-width: 640px;
    opacity: 0.5;
}

.slide2 .hero-arch {
    right: auto;
    left: -6%;
}

.slide-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    width: min(1180px, 90%);
    margin: 0 auto;
}

.slide-content .eyebrow {
    color: var(--gold);
}

.slide-content h1 {
    font-size: clamp(2.6rem, 6.4vw, 5.2rem);
    max-width: 820px;
    color: var(--white);
    font-weight: 500;
}

.slide-content h1 .line {
    display: block;
    overflow: hidden;
}

.slide-content h1 .line span {
    display: inline-block;
}

.slide-content p {
    margin: 26px 0 36px;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
    line-height: 1.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 34px;
    border: 1px solid var(--gold);
    color: var(--white);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
    position: relative;
    overflow: hidden;
}

.btn span {
    position: relative;
    z-index: 2;
    transition: color .4s ease;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s cubic-bezier(.7, 0, .2, 1);
    z-index: 1;
}

.btn:hover::before {
    transform: scaleX(1);
}

.btn:hover span {
    color: var(--primary-dark);
}

.btn.dark {
    border-color: var(--primary);
    color: var(--primary);
}

.btn.dark::before {
    background: var(--primary);
}

.btn.dark:hover span {
    color: var(--white);
}

.hero-dots {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 14px;
}

.hero-dots button {
    width: 34px;
    height: 2px;
    background: rgba(255, 255, 255, 0.35);
    position: relative;
}

.hero-dots button.active {
    background: var(--gold);
}

.scroll-cue {
    position: absolute;
    bottom: 46px;
    right: 6%;
    z-index: 5;
    color: rgba(255, 255, 255, 0.6);
    writing-mode: vertical-rl;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 14px;
}

.scroll-cue::after {
    content: '';
    width: 1px;
    height: 46px;
    background: rgba(255, 255, 255, 0.4);
}

/* ===== ABOUT ===== */
.about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns:1.15fr 0.85fr;
    gap: 70px;
    align-items: start;
}

.about-text p {
    color: #66524e;
    line-height: 1.85;
    font-size: 1.02rem;
    margin-bottom: 18px;
}

.about-frame {
    position: relative;
    background: var(--primary);
    color: var(--white);
    padding: 52px 40px;
    border: 1px solid var(--gold);
}

.about-frame::before, .about-frame::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    border: 1px solid var(--gold);
}

.about-frame::before {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.about-frame::after {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
}

.about-frame q {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.6rem;
    line-height: 1.4;
}

.about-frame span {
    display: block;
    margin-top: 22px;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
}

/* ===== VISION / MISSION ===== */
.vm {
    background: var(--primary);
    color: var(--white);
    overflow: hidden;
}

.vm .eyebrow {
    color: var(--gold);
}

.vm .section-head h2 {
    color: var(--white);
}

.vm .section-head p {
    color: rgba(255, 255, 255, 0.72);
}

.vm-cards {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 34px;
    margin-bottom: 80px;
}

.vm-card {
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 44px 38px;
    transition: border-color .4s ease, transform .4s ease;
}

.vm-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
}

.vm-card h3 {
    font-size: 1.7rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.vm-card p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    font-size: 1rem;
}

.marquee {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 26px 0;
}

.marquee-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    width: max-content;
}

.marquee-track span {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    padding: 0 40px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 40px;
}

.marquee-track span::after {
    content: '✦';
    color: var(--gold);
    font-size: 1rem;
}

/* ===== PROJECTS ===== */
.projects {
    background: var(--cream);
}

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

.project-card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
}

.render {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .9s cubic-bezier(.2, .7, .3, 1);
}

.project-card:hover .render {
    transform: scale(1.1);
}

.r1 {
    background-image: url('/img/IMG_2270.PNG?auto=format&fit=crop&w=1000&q=80');
}

.r2 {
    background-image: url('/img/kitchen.jpeg?auto=format&fit=crop&w=1000&q=80');
}

.r3 {
    background-image: url('/img/bedroom.jpg?auto=format&fit=crop&w=1000&q=80');
}

.r4 {
    background-image: url('/img/Dining room 3.jpg?auto=format&fit=crop&w=1000&q=80');
}

.r5 {
    background-image: url('/img/tvroom.webp?auto=format&fit=crop&w=1000&q=80');
}

.r6 {
    background-image: url('/img/foyer.webp?auto=format&fit=crop&w=1000&q=80');
}

.project-base {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 26px;
    background: linear-gradient(0deg, rgba(36, 16, 22, 0.88) 0%, rgba(36, 16, 22, 0.15) 55%, transparent 100%);
    transition: background .45s ease;
}

.project-card:hover .project-base {
    background: linear-gradient(0deg, rgba(36, 16, 22, 0.95) 0%, rgba(36, 16, 22, 0.35) 65%, rgba(36, 16, 22, 0.05) 100%);
}

.project-base small {
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.66rem;
}

.project-base h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-top: 6px;
}

.project-desc {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height .5s ease, opacity .45s ease, margin-top .45s ease;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    line-height: 1.65;
}

.project-card:hover .project-desc {
    max-height: 110px;
    opacity: 1;
    margin-top: 10px;
}

.project-view {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .35s ease;
}

.project-card:hover .project-view {
    opacity: 1;
}

.project-view svg {
    width: 15px;
    height: 15px;
}

/* ===== SERVICES ===== */
.services {
    background: var(--white);
}

.service-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 2px;
    background: rgba(91, 29, 45, 0.12);
}

.service-card {
    background: var(--white);
    padding: 56px 42px;
    transition: background .4s ease;
}

.service-card:hover {
    background: var(--cream);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 30px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 0.98rem;
}

.service-num {
    font-family: var(--serif);
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 18px;
}

/* ===== FOUNDERS ===== */
.founders {
    background: var(--cream);
}

.founder-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 40px;
}

.founder-card {
    background: var(--white);
    padding: 0;
    border: 1px solid rgba(91, 29, 45, 0.1);
    display: grid;
    grid-template-columns:170px 1fr;
    overflow: hidden;
}

.founder-photo {
    background: linear-gradient(150deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-photo span {
    font-family: var(--serif);
    font-size: 2.6rem;
    color: var(--gold);
}

.founder-info {
    padding: 30px 28px;
}

.founder-info h4 {
    font-size: 1.4rem;
    color: var(--primary-dark);
}

.founder-info small {
    display: block;
    margin: 6px 0 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.68rem;
    color: var(--gold);
}

.founder-info p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact {
    background: var(--primary-dark);
    color: var(--white);
}

.contact .eyebrow {
    color: var(--gold);
}

.contact .section-head h2 {
    color: var(--white);
}

.contact .section-head p {
    color: rgba(255, 255, 255, 0.68);
}

.contact-grid {
    display: grid;
    grid-template-columns:0.8fr 1.2fr;
    gap: 70px;
}

.contact-info li {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.82);
}

.contact-info li b {
    display: block;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.contact-info li p {
    font-size: 1rem;
    line-height: 1.6;
}

.socials {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.socials a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.socials svg {
    width: 16px;
    height: 16px;
    color: var(--white);
}

form {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.form-row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 26px;
}

.field {
    position: relative;
}

.field input, .field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-family: var(--sans);
    font-size: 1rem;
    padding: 10px 2px;
    outline: none;
}

.field textarea {
    resize: none;
    height: 90px;
}

.field label {
    position: absolute;
    left: 2px;
    top: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    pointer-events: none;
    transition: .3s ease;
}

.field input:focus + label, .field input:valid + label,
.field textarea:focus + label, .field textarea:valid + label {
    top: -14px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    color: var(--gold);
}

.field .underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background: var(--gold);
    transition: width .4s ease;
}

.field input:focus ~ .underline, .field textarea:focus ~ .underline {
    width: 100%;
}

.submit-btn {
    align-self: flex-start;
    margin-top: 8px;
    background: var(--gold);
    color: var(--primary-dark);
    padding: 16px 40px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
    border: none;
    transition: .35s;
}

.submit-btn:hover {
    background: var(--white);
}

/* ===== FOOTER ===== */
footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.75);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand b {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: 0.1em;
}

.footer-brand p {
    margin-top: 14px;
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h5 {
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.72rem;
    margin-bottom: 20px;
}

.footer-col li {
    margin-bottom: 12px;
    font-size: 0.92rem;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 26px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ===== reveal utility ===== */
.reveal {
    opacity: 0;
    transform: translateY(46px);
}

#preloader {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #5a1d2b;
    z-index: 99999;
    overflow: hidden;
}

.logo-wrap {
    position: relative;
    width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-wrap img {
    width: 119px;
    position: relative;
    z-index: 2;
    animation: logoPulse 2.5s ease-in-out infinite,
    logoGlitch 6s infinite;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, .15)) drop-shadow(0 0 15px rgba(255, 255, 255, .08));
}

/* Holographic Scan */

/* Rotating Halo */

.logo-wrap::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    animation: rotateRing 10s linear infinite;
}

.logo-wrap::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px dashed rgb(255 255 255 / 6%);
    border-radius: 50%;
    animation: rotateRingReverse 7s linear infinite;
}

/* Background Grid */

#preloader::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
            0deg,
            transparent 0,
            transparent 38px,
            rgba(255, 255, 255, .025) 40px
    ),
    repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 38px,
            rgba(255, 255, 255, .025) 40px
    );
    opacity: .5;
}

/* Animations */

@keyframes scan {

    from {
        transform: translateY(-70px);
    }

    to {
        transform: translateY(70px);
    }

}

@keyframes logoPulse {

    0%, 100% {
        transform: scale(1);
        opacity: .4;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

}

@keyframes rotateRing {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes rotateRingReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}

@keyframes logoGlitch {

    0%, 95%, 100% {
        transform: translateX(0);
    }

    96% {
        transform: translateX(-2px);
    }

    97% {
        transform: translateX(2px);
    }

    98% {
        transform: translateX(-1px);
    }

    99% {
        transform: translateX(1px);
    }

}

/* ===== Responsive ===== */
@media (max-width: 960px) {
    .about-grid, .vm-cards, .contact-grid, .founder-grid {
        grid-template-columns:1fr;
    }

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

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

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

@media (max-width: 640px) {
    .circle, .circle-follow {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 78%;
        background: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 26px;
        padding: 40px;
        transform: translateX(100%);
        transition: transform .5s ease;
    }

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

    .nav-links a {
        color: var(--white) !important;
    }

    .burger {
        display: flex;
    }

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

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

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

    .founder-card {
        grid-template-columns:1fr;
    }

    .founder-photo {
        height: 120px;
    }

    .footer-bottom {
        text-align: center;
        justify-content: center;
        padding: 16px 0;
        font-size: 0.8rem;
        flex-wrap: wrap;
    }

    #preloader span img {
        object-fit: contain;
    }
}