/* =============================================
   MIKAMIHO — Concept 7: Louka Style
   Soft, Natural, Botanical Elegance
   ============================================= */

/* --- CSS Variables --- */
:root {
    --cream: #f6f3e5;
    --cream-dark: #ebe7d5;
    --brown: #463f3a;
    --brown-light: #7a6f66;
    --sage: #8a9e7e;
    --sage-light: #c5d4bb;
    --blue: #96b0d1;
    --rose: #c9a6a0;
    --white: #fdfcf7;
    --shadow: 0 4px 20px rgba(70, 63, 58, 0.08);
    --shadow-lg: 0 8px 40px rgba(70, 63, 58, 0.12);
    --radius: 10px;
    --radius-lg: 12px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --max-width: 1200px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--brown);
    background-color: var(--cream);
    overflow-x: hidden;
}

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

a {
    color: var(--brown);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--sage);
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Upright', serif;
    font-weight: 500;
    line-height: 1.2;
}

/* --- Utility --- */
.section-heading {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 1.5rem;
    color: var(--brown);
}

.section-heading--center {
    text-align: center;
}

/* Animated Arrow Links */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    color: var(--brown);
    transition: color var(--transition);
    margin-top: 1.5rem;
}

.link-arrow .arrow {
    display: inline-block;
    transition: transform var(--transition);
}

.link-arrow:hover {
    color: var(--sage);
}

.link-arrow:hover .arrow {
    transform: translateX(6px);
}

.link-arrow--light {
    color: var(--white);
}

.link-arrow--light:hover {
    color: var(--cream-dark);
}

/* Scroll Reveal */
[data-anim="reveal"] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-anim="reveal"].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Botanical Decoration */
.botanical-decor::before {
    content: '';
    display: block;
    width: 120px;
    height: 80px;
    margin: 0 auto 2rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 60'%3E%3Cpath d='M60 55 C40 40 10 35 5 15 C15 25 35 28 60 30 C85 28 105 25 115 15 C110 35 80 40 60 55Z' fill='none' stroke='%238a9e7e' stroke-width='1'/%3E%3Cline x1='60' y1='30' x2='60' y2='58' stroke='%238a9e7e' stroke-width='1'/%3E%3C/svg%3E") no-repeat center;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--cream);
    border-bottom: 1px solid var(--sage-light);
    transition: box-shadow var(--transition);
}

.nav.scrolled {
    box-shadow: 0 2px 16px rgba(70, 63, 58, 0.07);
}

.nav__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo img {
    height: 40px;
    width: auto;
    border-radius: 4px;
}

.nav__links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav__links a {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brown-light);
    transition: color var(--transition);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--sage);
    transition: width var(--transition);
}

.nav__links a:hover {
    color: var(--brown);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--brown);
}

.nav__cta .arrow {
    display: inline-block;
    transition: transform var(--transition);
}

.nav__cta:hover .arrow {
    transform: translateX(4px);
}

/* Burger */
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background-color: var(--brown);
    transition: transform var(--transition), opacity var(--transition);
}

.nav__burger.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

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

.nav__burger.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.nav__mobile {
    display: none;
    background-color: var(--cream);
    border-top: 1px solid var(--sage-light);
    padding: 2rem;
}

.nav__mobile.open {
    display: block;
}

.nav__mobile ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.nav__mobile a {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--brown);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    padding-top: 72px;
    background-color: var(--cream);
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__tag {
    display: inline-block;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1.5rem;
}

.hero__heading {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--brown);
    margin-bottom: 1.5rem;
}

.hero__desc {
    font-size: 1.1rem;
    color: var(--brown-light);
    max-width: 480px;
    line-height: 1.8;
}

.hero__image {
    position: relative;
}

.hero__image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: translateY(-20px);
}

.hero__divider {
    width: 60%;
    max-width: 500px;
    height: 1px;
    background-color: var(--sage-light);
    margin: 0 auto;
}

/* =============================================
   PHOTO CAROUSEL
   ============================================= */
.carousel {
    padding: 3rem 0;
    overflow: hidden;
    background-color: var(--cream);
}

.carousel__track {
    display: flex;
    gap: 1rem;
    animation: carouselScroll 50s linear infinite;
    width: max-content;
}

.carousel:hover .carousel__track {
    animation-play-state: paused;
}

.carousel__slide {
    flex-shrink: 0;
    width: 320px;
    height: 220px;
    border-radius: var(--radius);
    overflow: hidden;
}

.carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel__slide:hover img {
    transform: scale(1.05);
}

@keyframes carouselScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* =============================================
   ABOUT
   ============================================= */
.about {
    background-color: var(--cream-dark);
    padding: 100px 0 80px;
}

.about__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.about__text p {
    font-size: 1.05rem;
    color: var(--brown-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about__badge {
    max-width: 480px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 1.2rem 2rem;
    border: 1px solid var(--sage-light);
    border-radius: var(--radius);
    background-color: var(--white);
}

.about__badge p {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: var(--sage);
}

/* =============================================
   SERVICES
   ============================================= */
.services {
    padding: 100px 0;
    background-color: var(--cream);
}

.services__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    display: block;
    text-decoration: none;
    color: var(--brown);
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    color: var(--brown);
}

.service-card__image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow);
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.04);
}

.service-card__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0.25rem;
}

.service-card__info h3 {
    font-family: 'Cormorant Upright', serif;
    font-weight: 500;
    font-size: 1.5rem;
    position: relative;
}

.service-card:hover .service-card__info h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--sage);
}

.service-card__info .arrow {
    font-size: 1.2rem;
    transition: transform var(--transition);
    color: var(--brown-light);
}

.service-card:hover .service-card__info .arrow {
    transform: translateX(6px);
    color: var(--sage);
}

/* =============================================
   PHILOSOPHY BAND
   ============================================= */
.philosophy {
    background-color: var(--sage);
    padding: 80px 2rem;
    text-align: center;
}

.philosophy__inner {
    max-width: 700px;
    margin: 0 auto;
}

.philosophy h2 {
    font-family: 'Cormorant Upright', serif;
    font-weight: 500;
    font-style: italic;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.philosophy p {
    font-size: 1.05rem;
    color: var(--cream);
    line-height: 1.8;
    opacity: 0.92;
}

/* =============================================
   PROJECTS
   ============================================= */
.projects {
    padding: 100px 0;
    background-color: var(--cream);
}

.projects__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.project {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

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

.project--reverse .project__image {
    order: 2;
}

.project--reverse .project__text {
    order: 1;
}

.project__image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.5s ease;
}

.project:hover .project__image img {
    transform: scale(1.02);
}

.project__tag {
    display: inline-block;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--sage);
    background-color: var(--cream-dark);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.project__text h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 0.8rem;
}

.project__text p {
    color: var(--brown-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* =============================================
   TESTIMONIAL
   ============================================= */
.testimonial {
    background-color: var(--cream-dark);
    padding: 100px 2rem;
}

.testimonial__inner {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.testimonial__quote {
    margin-top: 3rem;
    position: relative;
}

.testimonial__mark {
    font-family: 'Cormorant Upright', serif;
    font-size: 6rem;
    color: var(--sage-light);
    line-height: 0;
    display: block;
    margin-bottom: 1rem;
    position: relative;
    top: 1.5rem;
}

.testimonial__quote blockquote {
    font-family: 'Cormorant Upright', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--brown);
    margin-bottom: 1.5rem;
}

.testimonial__quote cite {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--brown-light);
    font-style: normal;
    letter-spacing: 0.5px;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
    padding: 100px 0;
    background-color: var(--cream);
}

.gallery__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 3rem;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.gallery__item--tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery__item:hover img {
    transform: scale(1.06);
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: rgba(70, 63, 58, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
    border-radius: var(--radius);
}

.gallery__overlay span {
    font-family: 'Cormorant Upright', serif;
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: 1px;
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
    background-color: var(--sage);
    padding: 80px 2rem;
    text-align: center;
}

.cta-band__inner {
    max-width: 800px;
    margin: 0 auto;
}

.cta-band h2 {
    font-family: 'Cormorant Upright', serif;
    font-weight: 500;
    font-style: italic;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.cta-band .link-arrow--light {
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
    padding: 100px 0;
    background-color: var(--cream);
}

.contact__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact__desc {
    font-size: 1.05rem;
    color: var(--brown-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact__list {
    list-style: none;
}

.contact__list li {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--sage-light);
}

.contact__list li:first-child {
    border-top: 1px solid var(--sage-light);
}

.contact__list strong {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--sage);
}

.contact__list span {
    font-size: 1rem;
    color: var(--brown);
}

.contact__list a {
    color: var(--brown);
    text-decoration: underline;
    text-decoration-color: var(--sage-light);
    text-underline-offset: 3px;
}

.contact__list a:hover {
    text-decoration-color: var(--sage);
}

/* Contact Form */
.contact-form {
    background-color: var(--cream-dark);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--brown-light);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: var(--brown);
    background-color: var(--cream);
    border: 1px solid var(--sage-light);
    border-radius: 8px;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%237a6f66' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(138, 158, 126, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--brown-light);
    opacity: 0.5;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--sage);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color var(--transition), transform var(--transition);
    width: 100%;
    justify-content: center;
}

.btn-submit .arrow {
    display: inline-block;
    transition: transform var(--transition);
}

.btn-submit:hover {
    background-color: #7a8e6e;
    transform: translateY(-1px);
}

.btn-submit:hover .arrow {
    transform: translateX(4px);
}

.btn-submit:active {
    transform: translateY(0);
}

.form-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
    min-height: 1.4em;
}

.form-status.success {
    color: var(--sage);
}

.form-status.error {
    color: var(--rose);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background-color: var(--cream-dark);
    padding: 60px 0 0;
}

.footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.footer__logo {
    border-radius: 4px;
    margin-bottom: 0.8rem;
}

.footer__tagline {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--brown-light);
    margin-bottom: 0.4rem;
}

.footer__left address {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--brown-light);
    line-height: 1.6;
}

.footer__right {
    text-align: right;
}

.footer__nav {
    display: flex;
    gap: 1.8rem;
    margin-bottom: 1.2rem;
}

.footer__nav a {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--brown-light);
}

.footer__nav a:hover {
    color: var(--sage);
}

.footer__social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.footer__social a {
    color: var(--brown-light);
    transition: color var(--transition);
}

.footer__social a:hover {
    color: var(--sage);
}

.footer__bottom {
    border-top: 1px solid var(--sage-light);
    padding: 1.5rem 2rem;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.82rem;
    color: var(--brown-light);
    letter-spacing: 0.5px;
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(70, 63, 58, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 8px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox__img {
    transform: scale(1);
}

.lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 2.5rem;
    cursor: pointer;
    transition: color var(--transition), transform var(--transition);
    line-height: 1;
    z-index: 10;
}

.lightbox__close:hover {
    color: var(--sage-light);
    transform: scale(1.1);
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(253, 252, 247, 0.1);
    border: 1px solid rgba(253, 252, 247, 0.2);
    color: var(--cream);
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition);
    z-index: 10;
}

.lightbox__prev {
    left: 1.5rem;
}

.lightbox__next {
    right: 1.5rem;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(253, 252, 247, 0.2);
    border-color: rgba(253, 252, 247, 0.4);
}

/* =============================================
   RESPONSIVE — 1024px
   ============================================= */
@media (max-width: 1024px) {
    .hero__inner {
        gap: 2.5rem;
    }

    .hero__image img {
        height: 420px;
    }

    .about__inner {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .about__image img {
        height: 400px;
    }

    .project {
        gap: 2.5rem;
    }

    .project__image img {
        height: 320px;
    }

    .footer__nav {
        gap: 1rem;
    }
}

/* =============================================
   RESPONSIVE — 768px
   ============================================= */
@media (max-width: 768px) {
    .nav__links,
    .nav__cta {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

    .hero {
        min-height: auto;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

    .hero__heading {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .hero__image img {
        height: 320px;
        transform: none;
    }

    .about__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about__image img {
        height: 300px;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .project {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3.5rem;
    }

    .project--reverse .project__image,
    .project--reverse .project__text {
        order: unset;
    }

    .project__image img {
        height: 260px;
    }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .gallery__item--tall {
        grid-row: span 1;
        aspect-ratio: 4 / 3;
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer__inner {
        flex-direction: column;
        gap: 2rem;
    }

    .footer__right {
        text-align: left;
    }

    .footer__nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer__social {
        justify-content: flex-start;
    }

    .carousel__slide {
        width: 260px;
        height: 180px;
    }

    .testimonial__quote blockquote {
        font-size: 1.25rem;
    }

    .lightbox__prev {
        left: 0.5rem;
    }

    .lightbox__next {
        right: 0.5rem;
    }
}

/* =============================================
   RESPONSIVE — 480px
   ============================================= */
@media (max-width: 480px) {
    .nav__inner {
        padding: 0 1rem;
        height: 60px;
    }

    .hero {
        padding-top: 60px;
    }

    .hero__inner {
        padding: 2rem 1rem;
    }

    .hero__heading {
        font-size: 2rem;
    }

    .hero__desc {
        font-size: 1rem;
    }

    .hero__image img {
        height: 240px;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .about,
    .services,
    .projects,
    .gallery,
    .contact {
        padding: 60px 0;
    }

    .philosophy,
    .cta-band {
        padding: 50px 1.5rem;
    }

    .carousel__slide {
        width: 200px;
        height: 140px;
    }

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

    .contact-form {
        padding: 1.5rem;
    }

    .project__image img {
        height: 200px;
    }

    .about__image img {
        height: 240px;
    }

    .testimonial {
        padding: 60px 1.5rem;
    }

    .testimonial__mark {
        font-size: 4rem;
    }

    .testimonial__quote blockquote {
        font-size: 1.1rem;
    }

    .lightbox__close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
    }

    .lightbox__prev,
    .lightbox__next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}
