@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-charcoal: #111111;
    --gold: #B8860B;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #555555;
    --text-color: #222222;
    --accent-teal: #1A1A1A;
    --cream: #FAFAFA;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-strong: 0 20px 45px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--dark-charcoal);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 1.15rem;
    font-weight: bold;
    text-decoration: none;
    line-height: 1.2;
}

.navbar-logo img {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: var(--white);
    transition: var(--transition);
}

.navbar-logo:hover img {
    transform: rotate(-8deg) scale(1.05);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.18);
}

.navbar-logo-text {
    display: flex;
    flex-direction: column;
}

.navbar-logo-text small {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--gold);
    text-transform: uppercase;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navbar-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
    width: 100%;
}

.navbar-menu a[href*="npc"]::after,
.navbar-menu a[href*="pai.html"]::after {
    display: none !important;
    content: none !important;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100vh;
    background: var(--dark-charcoal);
    z-index: 1001;
    transition: var(--transition);
    padding: 80px 30px;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.overlay.active {
    display: block;
}

.hero {
    min-height: 100vh;
    width: 100%;

    background:
        linear-gradient(
            rgba(17, 17, 17, 0.419),
            rgba(17, 17, 17, 0.419)
        ),
        url('../images/amaravathi.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: #fff;

    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    width: 100%;
    padding: 20px;
    animation: fadeInUp 1s ease;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero h2 {
    font-size: clamp(1.1rem, 2vw, 1.8rem);
    margin-bottom: 35px;
    color: var(--gold);
    font-weight: 400;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: 80px 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h2 {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark-charcoal);
}

.btn-primary:hover {
    background: #333333;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-charcoal);
    transform: translateY(-3px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-charcoal);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.section-title h2 span {
    color: var(--gold);
}

/* Card Styles */
.card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-charcoal);
}

.card-content p {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Footer Styles */
.footer {
    background: var(--dark-charcoal);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-section p {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Page Specific Styles */
.about-section {
    background: var(--light-gray);
}


#executive-committee.about-section {
    background: var(--cream);
}

.achievement-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.achievement-card h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.achievement-card p {
    color: var(--dark-gray);
    font-weight: 500;
}

/* Book Styles */
.book-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.book-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.book-cover {
    width: 100%;
    height: 350px;
    object-fit: cover;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
}

.book-info {
    padding: 20px;
}

.book-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-charcoal);
}

.book-info .author {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.book-info p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.book-buttons {
    display: flex;
    gap: 10px;
}

.book-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Portfolio Styles */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--dark-charcoal);
    background: transparent;
    color: var(--dark-charcoal);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--dark-charcoal);
    color: var(--white);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 17, 17, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Gallery Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 17, 17, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--gold);
}

/* Salon Styles */
.salon-hero {
    background: linear-gradient(rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 0.8)),
                url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920') center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.salon-details {
    background: var(--light-gray);
    padding: 60px 0;
}

.award-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid var(--gold);
}

.award-card h3 {
    font-size: 1.3rem;
    color: var(--dark-charcoal);
    margin-bottom: 15px;
}

.award-card .award-count {
    font-size: 2rem;
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 10px;
}

.award-card .prize {
    font-size: 1.5rem;
    color: var(--dark-charcoal);
    font-weight: bold;
    margin-bottom: 15px;
}

.award-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.award-card ul li {
    padding: 5px 0;
    color: var(--dark-gray);
}

.requirement-box {
    background: var(--dark-charcoal);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.requirement-box h3 {
    color: var(--gold);
    margin-bottom: 15px;
}

.requirement-box ul {
    list-style: none;
}

.requirement-box ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.requirement-box ul li:last-child {
    border-bottom: none;
}

/* Contact Styles */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.contact-item h3 {
    margin-bottom: 10px;
    color: var(--dark-charcoal);
}

.contact-item p {
    color: var(--dark-gray);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-charcoal);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.map-section {
    margin-top: 60px;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

/* FAQ Section */
.faq-section {
    margin-top: 60px;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: var(--dark-charcoal);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--dark-gray);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-item.active .faq-question {
    background: var(--light-gray);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.9)),
                url('images/cameraman.jpeg') center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}


.founders-strip-wrap {
    position: relative;
    padding: 40px 20px 34px;
    background: var(--light-gray);
    border-radius: 20px;
}

.founders-strip-track {
    display: flex;
    align-items: stretch;
    gap: 26px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 26px 6px 6px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.founders-strip-track::-webkit-scrollbar { display: none; height: 0; }

.detailed-founder-card {
    position: relative;
    width: 310px;
    min-width: 310px;
    max-width: 310px;
    min-height: 350px;
    background: var(--white);
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
    padding-top: 34px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}


.detailed-founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 26px;
    background: rgba(0, 0, 0, 0.18);
    transform: translateX(-50%);
}

.detailed-founder-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15);
}


.detailed-founder-card.is-center {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15);
}


.detailed-founder-card .card-header-bg {
    display: none;
}

.card-photo-wrapper {
    position: relative;
    z-index: 2;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    margin-top: 0;
    background: var(--white);
}

.card-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.card-info-content {
    position: relative;
    z-index: 2;
    padding: 14px 18px 18px;
    text-align: center;
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.card-info-content h3 {
    color: var(--dark-charcoal);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.2;
}

.founder-father {
    font-size: 0.82rem;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.founder-quals {
    font-size: 0.78rem;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.35;
}

.founder-designation-box {
    background: transparent;
    color: var(--dark-charcoal);
    border: none;
    padding: 0;
    border-radius: 0;
    margin: 0 0 10px;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    max-width: 100%;
    transition: var(--transition);
}

.detailed-founder-card:hover .founder-designation-box {
    background: transparent;
    border-color: transparent;
}

.designation-label {
    display: none;
}

.designation-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--gold);
}

.founder-address {
    font-size: 0.76rem;
    color: var(--dark-gray);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
    margin-top: 5px;
}

.founder-address i {
    color: var(--accent-teal);
    margin-top: 3px;
}


@media (max-width: 480px) {
    .founder-chip {
        width: 100px;
    }
    .founder-chip .founder-photo {
        width: 84px;
        height: 84px;
    }
}


.book-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 6px;
    margin-bottom: 44px;
}

.book-tab {
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--dark-gray);
    padding: 8px 16px;
    border-radius: 20px;
    transition: var(--transition);
    white-space: nowrap;
}

.book-tab:hover {
    color: var(--gold);
    background: rgba(0, 0, 0, 0.05);
}

.book-tab.active {
    color: var(--white);
    background: var(--gold);
}

.book-count {
    text-align: center;
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 26px;
}

.book-count strong {
    color: var(--dark-charcoal);
}

/* Cover grid */
.book-cover-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px 22px;
}

.book-tile {
    background: none;
    border: none;
    font-family: inherit;
    text-align: left;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.book-tile-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 7;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    background: var(--light-gray);
}

.book-tile-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.book-tile:hover .book-tile-cover {
    box-shadow: var(--shadow-strong);
    transform: translateY(-6px);
}

.book-tile:hover .book-tile-cover img {
    transform: scale(1.05);
}

.book-tile-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.book-tile-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    line-height: 1.35;
}

.book-tile-author {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
}


.book-tile-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: auto;
}

.book-action-btn {
    width: 100%;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    background: var(--white);
    color: var(--dark-charcoal);
}

.book-action-btn:hover {
    background: var(--dark-charcoal);
    color: var(--white);
    border-color: var(--dark-charcoal);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.book-action-btn:active {
    transform: translateY(0);
}

.book-action-btn:focus-visible {
    outline: 2px solid var(--dark-charcoal);
    outline-offset: 2px;
}

.book-action-btn i {
    font-size: 1.05rem;
    line-height: 1;
}

.view-btn {
    border-color: var(--dark-charcoal);
}

.buy-btn {
    background: var(--dark-charcoal);
    color: var(--white);
    border-color: var(--dark-charcoal);
}
.buy-btn:hover {
    background: var(--white);
    color: var(--dark-charcoal);
}

.download-btn {
    border-style: dashed;
}



@media (max-width: 600px) {
    .book-cover-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 22px 14px;
    }
}

/* Preview modal (shared) */
.book-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, 0.78);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 24px;
}

.book-modal-overlay.active {
    display: flex;
}

.book-modal {
    background: var(--white);
    border-radius: 14px;
    max-width: 900px;
    width: 100%;
    max-height: 88vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-strong);
    animation: bookOpen 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
    transform-origin: left center;
}

@keyframes bookOpen {
    from { transform: rotateY(-40deg); opacity: 0; }
    to   { transform: rotateY(0deg); opacity: 1; }
}

.book-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: var(--dark-charcoal);
    color: var(--white);
}

.book-modal-header h3 {
    font-size: 1.1rem;
}

.book-modal-header .book-modal-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    padding: 6px;
}

.book-modal-body {
    flex: 1;
    overflow: hidden;
    background: var(--light-gray);
}

.book-modal-body iframe {
    width: 100%;
    height: 100%;
    min-height: 60vh;
    border: none;
}

.book-modal-footer {
    padding: 14px 24px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    border-top: 1px solid rgba(17,17,17,0.08);
}

/* Book cover = first page of the PDF */
.book-tile-cover {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.book-pdf-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: var(--light-gray);
    pointer-events: none;
    transition: transform 0.4s ease;
}

.book-tile:hover .book-pdf-preview {
    transform: scale(1.04);
}

.book-pdf-shield {
    position: absolute;
    inset: 0;
    background: transparent;
}




:root {
    --lightgray: #EDEDED;
    --lightgray-2: #D9D9D9;
    --black: #111111;
}

/* ---- Compact buttons ---- */
.btn {
    padding: 10px 22px;
    font-size: 0.875rem;
    border-radius: 6px;
    letter-spacing: 0.2px;
}
.btn-primary {
    background: var(--lightgray-2);
    color: var(--black);
    border: 1px solid var(--lightgray-2);
}
.btn-primary:hover {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}
.btn-secondary { border-width: 1px; }
.btn-secondary:hover { transform: translateY(-2px); }
.hero-buttons { gap: 12px; }

/* ---- Compact filter chips ---- */
.filter-buttons { gap: 10px; }
.filter-btn {
    padding: 7px 16px;
    font-size: 0.85rem;
    border-width: 1px;
    border-color: var(--lightgray-2);
    background: var(--lightgray);
    color: var(--black);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
}

/* ---- Badges / pills ---- */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--lightgray);
    color: var(--black);
    border: 1px solid var(--lightgray-2);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.6;
    text-decoration: none;
    transition: var(--transition);
}
.pill:hover { background: var(--black); color: #fff; border-color: var(--black); }

/* ---- Interactive icons ---- */
.social-icons a {
    width: 36px;
    height: 36px;
    color: black;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(7, 0, 0, 0.866);
    font-size: 1rem;
}
.social-icons a:hover {
    background: var(--lightgray-2);
    color: var(--black);
    transform: translateY(-3px) scale(1.06);
}
.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--lightgray);
    color: var(--black);
    border: 1px solid var(--lightgray-2);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}
.icon-btn:hover { background: var(--black); color: #fff; transform: translateY(-2px); }
.card i.bi, .about-card i.bi, .founder-quals i, .founder-father i, .founder-address i {
    transition: var(--transition);
}
.card:hover i.bi { color: var(--black); transform: scale(1.12); }

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 4px;
}
.slider-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--lightgray-2);
    background: var(--lightgray);
    color: var(--black);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}
.slider-arrow:hover { background: var(--black); color: #fff; transform: scale(1.06); }
.slider-arrow:active { transform: scale(0.96); }

/* ---- Image-free portfolio ---- */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}
.work-card {
    background: #fff;
    border: 1px solid var(--lightgray-2);
    border-radius: 10px;
    padding: 18px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.work-card:hover {
    border-color: var(--black);
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}
.work-card .work-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--lightgray);
    color: var(--black);
    font-size: 1.05rem;
    transition: var(--transition);
}
.work-card:hover .work-icon { background: var(--black); color: #fff; }
.work-card h3 { font-size: 1.05rem; color: var(--black); margin: 0; }
.work-card .work-meta {
    font-size: 0.8rem;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}
.work-card .work-note { font-size: 0.85rem; color: var(--text-color); line-height: 1.6; }
.work-card .work-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 4px;
    border-top: 1px solid var(--lightgray);
    padding-top: 10px;
}

.profile-card {
    background: #fff;
    border: 1px solid var(--lightgray-2);
    border-radius: 12px;
    padding: 26px;
    max-width: 1520px;
    margin: 0 auto;
}
.profile-initials {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--black);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
}



:root {
    --heading-black: #0D0D0D;
    --muted-text: #6B6B6B;
    --shade-1: #F5F5F5;
    --shade-2: #E6E6E6;
}


body { color: var(--muted-text); }
h1, h2, h3, h4, h5, h6 { color: var(--heading-black); letter-spacing: -0.01em; }
p, li, .work-note, .founder-address p { color: var(--muted-text); }
.section-title h2 { color: var(--heading-black); }
.section-title p { color: var(--muted-text); }
.hero h1, .hero h2, .hero p,
.cta-section h2, .cta-section p,
.footer h3, .footer p, .footer li, .footer a { color: #fff; }
.hero h2, .cta-section p { color: var(--shade-2); }
.footer p, .footer li a { color: rgba(255, 255, 255, 0.72); }
strong { color: var(--heading-black); }

/* ---- No scrolling animations anywhere ---- */
html { scroll-behavior: auto; }
.hero-content,
.founders-strip-track,
[class*="marquee"],
[class*="ticker"] {
    animation: none !important;
}


.hero,
.salon-hero,
.page-hero {
    height: auto !important;
   
    padding: 120px 0 56px;
}
.hero.hero-fullscreen {
    height: 100vh !important;
    min-height: 100vh !important;
    padding: 100px 0 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.hero.hero-half {
    height: 50vh !important;
    min-height: 340px !important;
    padding: 90px 0 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.hero.hero-third {
    height: 33.33vh !important;
    min-height: 280px !important;
    padding: 85px 0 25px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #111 !important;
}
.hero h1, .salon-hero h1 { font-size: 2.25rem; margin-bottom: 10px; }
.hero h2, .salon-hero h2 { font-size: 1.05rem; margin-bottom: 18px; font-weight: 400; }
.hero-content { max-width: 780px; }
.cta-section { padding: 56px 0; }
.cta-section h2 { font-size: 1.75rem; }
.cta-section p { font-size: 1rem; }
@media (max-width: 768px) {
    .hero, .salon-hero, .page-hero { padding: 100px 0 44px; }
    .hero h1, .salon-hero h1 { font-size: 1.6rem; }
}


@media (max-width: 480px) {
    .detailed-founder-card { width: 250px; min-width: 250px; max-width: 250px; height: 360px; }
    .card-photo-wrapper { width: 92px; height: 92px; }
}


/* ---- Photographer portfolio cards: image left, content right, 2 per row ---- */
.work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.work-card {
    flex-direction: row;
    align-items: stretch;
    text-align: left;
    gap: 20px;
    padding: 24px;
    border-radius: 16px;
    height: 100%;
    min-height: 300px;
    border-color: var(--shade-2);
}

/* FIX: photo box now shows the FULL image (object-fit: contain)
   instead of cropping it (object-fit: cover). The box got taller
   and has a soft background so different aspect-ratio photos are
   letterboxed cleanly instead of being cut off. */
.work-card .profile-photo {
    width: 220px !important;
    height: 280px !important;
    border-radius: 12px !important;
    flex-shrink: 0;
    margin-bottom: 0 !important;
    background: var(--lightgray);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.work-card .profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.work-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.work-card h3 { font-size: 1.25rem; margin-bottom: 4px; }
.work-card .work-meta { font-size: 0.85rem; margin-bottom: 6px; }
.work-card .work-note { font-size: 0.9rem; line-height: 1.7; }
.work-card .work-foot { margin-top: auto; }

@media (max-width: 768px) {
    .work-grid {
        grid-template-columns: 1fr;
    }
    .work-card .profile-photo {
        width: 100% !important;
        height: 260px !important;
    }
}

@media (max-width: 480px) {
    .work-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .work-card .profile-photo {
        width: 100% !important;
        height: 240px !important;
    }
}

.profile-card{
    background:#fff;
    padding:30px;
    border-radius:16px;
    overflow:hidden;
}

.profile-photo-large{
    float:left;
    width:340px;
    height:450px;
    object-fit:cover;
    border-radius:15px;
    margin-right:30px;
    margin-bottom:15px;
}

.profile-card h3{
    margin-top:0;
    margin-bottom:10px;
    font-size:32px;
}

.work-meta{
    margin-bottom:20px;
    color:#666;
}

.profile-card p{
    line-height:1.8;
    margin-bottom:15px;
}

@media(max-width:768px){
    .profile-photo-large{
        float:none;
        width:100%;
        height:auto;
        margin-right:0;
        margin-bottom:20px;
    }
}

.founders-strip-wrap {
    position: relative; 
    overflow: visible; 
}

.founders-strip-wrap .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--lightgray-2, #D9D9D9);
    color: var(--black, #111);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    font-size: 1.1rem;
}

.founders-strip-wrap .arrow-left { left: -22px; }
.founders-strip-wrap .arrow-right { right: -22px; }

.founders-strip-wrap .slider-arrow:hover {
    background: var(--black, #111);
    color: #fff;
    transform: translateY(-50%) scale(1.06);
}

.founders-strip-wrap .slider-arrow:active {
    transform: translateY(-50%) scale(0.96);
}

@media (max-width: 600px) {
    .founders-strip-wrap .arrow-left { left: 6px; }
    .founders-strip-wrap .arrow-right { right: 6px; }
    .founders-strip-wrap .slider-arrow { width: 38px; height: 38px; }
}




.hero-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 22px;
}

.hero-logo {
    height: 100px;
    width: 100px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--white);
    padding: 4px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.hero-eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.hero-tagline {
    font-size: clamp(0.85rem, 1.6vw, 1rem);
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 22px;
}

@media (max-width: 768px) {
    .hero-logos {
        gap: 16px;
        margin-bottom: 16px;
    }
    .hero-logo {
        height: 56px;
        width: 56px;
    }
}


/* ==========================================================
   Compact spacing pass — tighter paddings & font sizes
   (kept as an override block, nothing above was changed)
   ========================================================== */

section {
    padding: 56px 0;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.1rem;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 1rem;
}

.hero,
.salon-hero,
.page-hero {
    padding: 90px 0 40px;
}

.hero h1, .salon-hero h1 {
    font-size: 1.9rem;
    margin-bottom: 8px;
}

.hero h2, .salon-hero h2 {
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.hero-content {
    padding: 16px;
}

.hero-buttons {
    gap: 10px;
}

.btn {
    padding: 9px 20px;
    font-size: 0.85rem;
}

.card-content {
    padding: 18px;
}

.card-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.achievement-card {
    padding: 20px;
}

.achievement-card h3 {
    font-size: 2rem;
    margin-bottom: 6px;
}

.book-info {
    padding: 16px;
}

.contact-item {
    padding: 20px;
}

.contact-form {
    padding: 26px;
}

.form-group {
    margin-bottom: 14px;
}

.award-card,
.requirement-box {
    padding: 20px;
}

.faq-question {
    padding: 14px 16px;
}

.faq-item.active .faq-answer {
    padding: 14px 16px;
}

.cta-section {
    padding: 40px 0;
}

.cta-section h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer {
    padding: 40px 0 16px;
}

.footer-section h3 {
    font-size: 1.15rem;
    margin-bottom: 14px;
}

.grid-3,
.grid-4 {
    gap: 20px;
}

.founders-strip-wrap {
    padding: 26px 16px 22px;
}

.card-info-content h3 {
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .hero, .salon-hero, .page-hero {
        padding: 80px 0 30px;
    }
    .hero h1, .salon-hero h1 {
        font-size: 1.4rem;
    }
    section {
        padding: 40px 0;
    }
}



.about-section .grid-4 {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.about-section .grid-4 .gallery-item {
    background: var(--lightgray);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 170px;
}

.about-section .grid-4 .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;  
    object-position: center;
    transition: var(--transition);
}

.about-section .grid-4 .gallery-item:hover img {
    transform: scale(1.06);
}

@media (max-width: 1100px) {
    .about-section .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    .about-section .grid-4 .gallery-item {
        height: 190px;
    }
}

@media (max-width: 768px) {
    .about-section .grid-4 {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .about-section .grid-4 .gallery-item {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .about-section .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-section .grid-4 .gallery-item {
        height: 150px;
    }
}

/* ---- Lightbox: full image, never cropped ---- */
.lightbox img {
    max-width: 92%;
    max-height: 86vh;
    object-fit: contain;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
    z-index: 2100;
}

.lightbox-nav:hover {
    background: var(--gold);
    color: var(--dark-charcoal);
    transform: translateY(-50%) scale(1.08);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 16px;
    border-radius: 999px;
    z-index: 2100;
}

@media (max-width: 600px) {
    .lightbox-nav {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
    }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-counter {
        bottom: 14px;
        font-size: 0.8rem;
    }
}



.grid-4:has(.achievement-card),
.grid-3:has(.achievement-card) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.grid-4:has(.achievement-card) .achievement-card,
.grid-3:has(.achievement-card) .achievement-card {
    flex: 0 1 250px;
}

@media (max-width: 768px) {
    .grid-4:has(.achievement-card) .achievement-card,
    .grid-3:has(.achievement-card) .achievement-card {
        flex: 0 1 45%;
    }
}

@media (max-width: 480px) {
    .grid-4:has(.achievement-card) .achievement-card,
    .grid-3:has(.achievement-card) .achievement-card {
        flex: 0 1 100%;
        max-width: 320px;
    }
}


.book-tile-cover {
    cursor: pointer;
}


.book-tile-cover {
    position: relative;
    cursor: pointer;
}

.book-tile-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 3;
    pointer-events: none;
}

.book-tile:hover .book-tile-overlay {
    opacity: 1;
}

.book-tile-overlay i {
    color: var(--white);
    font-size: 2rem;
    transform: scale(0.85);
    transition: var(--transition);
}

.book-tile:hover .book-tile-overlay i {
    transform: scale(1);
}


.profile-card a {
    color: inherit;
    text-decoration: none;
}

.profile-card a:hover {
    color: inherit;
    text-decoration: none;
}


/* ==========================================================
   Portfolio cards: 3 per row, shorter cards, full image visible
   (additive override — nothing above this block was changed)
   ========================================================== */
.work-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.work-card {
    padding: 16px;
    gap: 14px;
    min-height: 230px;
    border-radius: 14px;
}

.work-card .profile-photo {
    width: 130px !important;
    height: 190px !important;
    border-radius: 10px !important;
}

.work-card .profile-photo img {
    object-fit: contain;
    object-position: center;
}

.work-card h3 {
    font-size: 1.05rem;
    margin-bottom: 3px;
}

.work-card .work-meta {
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.work-card .work-note {
    font-size: 0.85rem;
    line-height: 1.55;
}

@media (max-width: 1100px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .work-grid {
        grid-template-columns: 1fr;
    }
    .work-card .profile-photo {
        width: 100% !important;
        height: 220px !important;
    }
}

@media (max-width: 480px) {
    .work-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .work-card .profile-photo {
        width: 100% !important;
        height: 200px !important;
    }
}