.body {
    
    text-align: center;
    font-family: Arial, sans-serif;
    
}

/* Contact page */
.contactHolder {
    min-height: 0;
    background: var(--color-sand);
    background-image: none;
}

.contactLayout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.75fr);
    gap: clamp(3rem, 9vw, 10rem);
    max-width: 1120px;
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 7rem) 2rem;
}

.contactIntro {
    align-self: center;
    max-width: 480px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: rgba(247, 244, 239, 0.94);
    box-shadow: 0 16px 36px rgba(23, 23, 23, 0.18);
}

.contactIntro h2,
.form h2 {
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
}

.contactIntro > p:not(.sectionKicker) {
    max-width: 37ch;
    color: var(--color-muted);
    font-size: 1.05rem;
}

.contactEmail {
    display: inline-block;
    margin-top: 1.2rem;
    border-bottom: 1px solid var(--color-gold);
    color: var(--color-ink);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
}

.contactHolder .form {
    float: none;
    width: auto;
    max-width: none;
    margin: 0;
    padding: clamp(1.75rem, 3vw, 2.75rem);
    background: #fff;
    box-shadow: 14px 14px 0 rgba(199, 155, 82, 0.28), 0 18px 38px rgba(23, 23, 23, 0.1);
}

.form h2 {
    margin-bottom: 1.75rem;
}

.formField {
    margin-bottom: 1.1rem;
}

.formField label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.formField input,
.formField textarea {
    display: block;
    width: 100%;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(23, 23, 23, 0.35);
    border-radius: 0;
    background: #fff;
    color: var(--color-ink);
    font-size: 1rem;
    line-height: 1.45;
}

.formField textarea {
    resize: vertical;
}

.hpField {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.formField input:focus,
.formField textarea:focus {
    border-color: var(--color-gold);
    outline: 2px solid rgba(199, 155, 82, 0.32);
    outline-offset: 1px;
}

.contactSubmit {
    width: 100%;
    padding: 0.9rem 1.25rem;
    border: 1px solid var(--color-ink);
    border-radius: 0;
    background: var(--color-ink);
    color: var(--color-ivory);
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contactSubmit:hover,
.contactSubmit:focus-visible {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: var(--color-ink);
}

.formSuccess,
.formError {
    margin: 0 0 1.25rem;
    padding: 0.9rem 1rem;
    border-left: 3px solid var(--color-gold);
    background: var(--color-sand);
}

.formSuccess strong {
    display: block;
    color: var(--color-ink);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.2;
}

.formSuccess p {
    margin: 0.35rem 0 0;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.formError {
    border-color: #9e3d30;
}

@media screen and (max-width: 760px) {
    .contactLayout {
        grid-template-columns: 1fr;
        gap: 2.75rem;
        padding: 3.5rem 1.5rem;
    }
}

    /* Final override for legacy desktop gallery rules above. */
    .mainGallery {
        display: grid;
    }

    /* Gallery */
    .mainGallery {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(1.25rem, 2.5vw, 2.5rem);
        max-width: 1240px;
        width: auto;
        min-height: 0;
        margin: 0 auto;
        padding: clamp(3.5rem, 6vw, 6rem) 2rem;
        background: var(--color-ivory);
    }

    .picHolder {
        display: block;
        width: auto;
        min-height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .picHolder[hidden] {
        display: none;
    }

    .galleryArtwork {
        display: block;
        width: 100%;
        padding: 0;
        overflow: hidden;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: var(--color-ink);
        cursor: zoom-in;
        text-align: left;
    }

    .galleryArtwork .picImg {
        display: block;
        width: 100%;
        height: clamp(260px, 27vw, 360px);
        margin: 0;
        object-fit: cover;
        transition: transform 280ms ease;
    }

    .galleryArtwork:hover .picImg,
    .galleryArtwork:focus-visible .picImg {
        transform: scale(1.04);
    }

    .galleryArtwork:focus-visible {
        outline: 3px solid var(--color-gold);
        outline-offset: 5px;
    }

    .galleryArtworkInfo {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 1rem;
        padding: 1rem 0 0;
    }

    .galleryArtworkTitle {
        font-family: var(--font-heading);
        font-size: 1.3rem;
        font-weight: 600;
        line-height: 1.2;
    }

    .galleryArtworkMeta {
        color: var(--color-muted);
        font-size: 0.72rem;
        letter-spacing: 0.08em;
        white-space: nowrap;
    }

    .galleryPager {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        margin: 0 auto clamp(3.5rem, 6vw, 6rem);
        padding: 0 2rem;
    }

    .galleryPagerBtn {
        padding: 0.65rem 1.3rem;
        border: 1px solid var(--color-ink);
        background: transparent;
        color: var(--color-ink);
        font-family: var(--font-body);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        cursor: pointer;
        transition: color 0.2s ease, border-color 0.2s ease;
    }

    .galleryPagerBtn:hover:not(:disabled),
    .galleryPagerBtn:focus-visible:not(:disabled) {
        border-color: var(--color-gold);
        color: var(--color-gold);
    }

    .galleryPagerBtn:disabled {
        opacity: 0.35;
        cursor: default;
    }

    .galleryPagerStatus {
        color: var(--color-muted);
        font-size: 0.8rem;
        letter-spacing: 0.04em;
    }

    .galleryDialog {
        width: min(1100px, calc(100vw - 2rem));
        max-width: none;
        max-height: calc(100vh - 2rem);
        padding: 0;
        border: 0;
        background: transparent;
    }

    .galleryDialog::backdrop {
        background: rgba(23, 23, 23, 0.88);
    }

    .galleryDialogFrame {
        position: relative;
        display: grid;
        max-height: calc(100vh - 2rem);
        padding: 1rem;
        background: var(--color-ivory);
    }

    .galleryDialogImage {
        display: block;
        max-width: 100%;
        max-height: calc(100vh - 7.5rem);
        margin: auto;
        object-fit: contain;
    }

    .galleryDialogTitle {
        margin: 0.85rem 2.5rem 0 0;
        font-family: var(--font-heading);
        font-size: 1.25rem;
        font-weight: 600;
    }

    .galleryDialogClose {
        position: absolute;
        top: 0.45rem;
        right: 0.55rem;
        z-index: 1;
        width: 2.25rem;
        height: 2.25rem;
        padding: 0;
        border: 0;
        background: rgba(247, 244, 239, 0.92);
        color: var(--color-ink);
        cursor: pointer;
        font-size: 2rem;
        line-height: 1;
    }

    @media screen and (max-width: 760px) {
        .mainGallery {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            padding: 3rem 1.25rem;
        }

        .galleryArtwork .picImg {
            height: clamp(190px, 48vw, 280px);
        }

        .galleryArtworkInfo {
            display: block;
        }

        .galleryArtworkMeta {
            display: block;
            margin-top: 0.3rem;
        }
    }

    @media screen and (max-width: 430px) {
        .mainGallery {
            grid-template-columns: 1fr;
        }

        .galleryArtwork .picImg {
            height: min(100vw, 360px);
        }
    }

    /* About page */
    .aboutPage {
        background: var(--color-ivory);
    }

    .aboutPage .aboutHolder {
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
        gap: clamp(2.5rem, 6vw, 7rem);
        max-width: 1120px;
        width: auto;
        margin: 0 auto;
        padding: clamp(4rem, 8vw, 7rem) 2rem;
        border: 0;
        border-radius: 0;
        text-align: left;
    }

    .aboutCopy h2 {
        margin-bottom: 1.35rem;
        font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    }

    .aboutText p {
        max-width: 61ch;
        margin: 0 0 1.25rem;
        color: var(--color-muted);
        font-size: 1.02rem;
    }

    .aboutPortrait {
        align-self: center;
        margin: 0;
    }

    .aboutPortrait img {
        display: block;
        width: 100%;
        aspect-ratio: 1 / 1.08;
        object-fit: cover;
        object-position: 45% center;
        border: 10px solid #fff;
        box-shadow: 18px 18px 0 rgba(199, 155, 82, 0.28), 0 18px 45px rgba(23, 23, 23, 0.16);
    }

    .aboutPortrait figcaption {
        margin-top: 1.15rem;
        color: var(--color-muted);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.13em;
        text-transform: uppercase;
    }

    @media screen and (max-width: 760px) {
        .aboutPage .aboutHolder {
            grid-template-columns: 1fr;
            gap: 2.5rem;
            width: auto;
            margin: 0;
            padding: 3.5rem 1.5rem;
        }

        .aboutPortrait {
            max-width: 460px;
        }
    }

/* Site footer */
.siteFooter {
    width: 100%;
    min-height: 0;
    background: var(--color-ink);
    border-top: 3px solid var(--color-gold);
    color: var(--color-ivory);
    text-align: left;
}

.footerInner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2.5rem;
    max-width: 1120px;
    margin: 0 auto;
    padding: 3rem 2rem 1.4rem;
}

.footerBrand {
    color: var(--color-ivory);
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.footerNav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.8rem 2rem;
    padding-top: 0.35rem;
}

.footerNav a,
.footerMeta a {
    color: var(--color-ivory);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.footerNav a:hover,
.footerNav a:focus-visible,
.footerMeta a:hover,
.footerMeta a:focus-visible {
    color: var(--color-gold);
}

.footerMeta {
    display: flex;
    grid-column: 1 / -1;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(247, 244, 239, 0.25);
}

.footerMeta span {
    color: rgba(247, 244, 239, 0.7);
    font-size: 0.75rem;
}

.footerLegalLinks {
    display: flex;
    gap: 1.25rem;
}

.legalPage {
    background: var(--color-ivory);
    padding: clamp(3.5rem, 7vw, 6rem) 1.5rem;
}

.legalContent {
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 4.5rem);
    background: #fff;
    box-shadow: 0 16px 38px rgba(23, 23, 23, 0.08);
}

.legalContent h2 {
    font-size: clamp(2rem, 3vw, 3.1rem);
}

.legalContent h3 {
    margin: 2.25rem 0 0.65rem;
    font-size: 1.35rem;
}

.legalContent p {
    color: var(--color-muted);
}

.legalContent a {
    color: var(--color-ink);
    font-weight: 700;
    text-decoration-color: var(--color-gold);
    text-decoration-thickness: 2px;
}

.legalTableWrap {
    overflow-x: auto;
}

.legalTable {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0;
    text-align: left;
}

.legalTable th,
.legalTable td {
    padding: 0.9rem;
    border-bottom: 1px solid rgba(23, 23, 23, 0.16);
    vertical-align: top;
}

.legalTable th {
    background: var(--color-sand);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cookieBanner {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(23, 23, 23, 0.62);
}

.cookieBanner[hidden] {
    display: none;
}

.cookieBannerDialog {
    width: min(100%, 560px);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-top: 4px solid var(--color-gold);
    background: var(--color-ink);
    box-shadow: 0 24px 60px rgba(23, 23, 23, 0.42);
}

.cookieBanner p,
.cookieBanner a {
    color: var(--color-ivory);
}

.cookieBanner p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.45;
}

.cookieBannerLinks {
    display: flex;
    gap: 1rem;
    margin-top: 0.45rem !important;
}

.cookieBannerLinks a {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cookieBannerActions {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

.cookieBannerButton {
    padding: 0.65rem 0.8rem;
    border: 1px solid var(--color-gold);
    border-radius: 0;
    background: var(--color-gold);
    color: var(--color-ink);
    cursor: pointer;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    white-space: nowrap;
}

.cookieBannerButtonSecondary {
    background: transparent;
    color: var(--color-ivory);
}

@media screen and (max-width: 600px) {
    .cookieBanner {
        padding: 0.75rem;
    }

    .cookieBannerButton {
        flex: 1;
    }
}

@media screen and (max-width: 600px) {
    .footerInner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2.5rem 1.5rem 1.25rem;
        text-align: center;
    }

    .footerNav {
        justify-content: center;
    }

    .footerMeta {
        flex-direction: column;
        align-items: center;
    }
}

:root {
    --font-heading: "Bodoni Moda", Georgia, serif;
    --font-body: "DM Sans", Arial, sans-serif;
    --font-script: "Italianno", "Segoe Script", cursive;
    --color-ink: #171717;
    --color-muted: #4d4d4d;
    --color-gold: #c79b52;
    --color-sand: #f5efe5;
    --color-ivory: #f7f4ef;
}

/* Global responsive baseline: keeps existing visual identity while preventing
   overflow/distortion on smaller screens. Does not affect colors, fonts or layout at desktop width. */
*, *::before, *::after {
    box-sizing: border-box;
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
    color: var(--color-ink);
    background: #f5f2ee;
    font-family: var(--font-body);
}
body {
    line-height: 1.7;
    letter-spacing: 0.01em;
}
img {
    max-width: 100%;
    height: auto;
}
a, button, input, textarea, select {
    font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6,
.headerTittle,
.title,
.tittle,
#topMenu li,
#sideMenu li,
.mList,
.phoneList {
    font-family: var(--font-heading);
    color: var(--color-ink);
    letter-spacing: 0.04em;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 0.7em;
}

p, li, label, input, textarea, button, span {
    font-family: var(--font-body);
    color: var(--color-ink);
    line-height: 1.7;
}

#topMenu li, .mList, .phoneList {
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

#topMenu a, #sideMenu a, .mList a, .phoneList a {
    color: var(--color-ink);
    font-family: var(--font-body);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

#topMenu {
    position: relative;
    z-index: 10;
    background: rgba(247, 244, 239, 0.96);
    border-bottom: 1px solid rgba(199, 155, 82, 0.45);
    box-shadow: 0 8px 24px rgba(23, 23, 23, 0.08);
}

#topMenu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 4vw, 4.5rem);
    max-width: 980px;
    min-height: 68px;
    margin: 0 auto;
    padding: 0 1.5rem;
    list-style: none;
}

#topMenu .mList {
    position: relative;
    display: block;
    width: auto;
    margin: 0;
    padding: 0.75rem 0;
}

#topMenu a {
    position: relative;
    display: block;
    padding: 0.3rem 0;
    color: var(--color-ink);
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 180ms ease;
}

#topMenu a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--color-gold);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

#topMenu a:hover,
#topMenu a:focus-visible {
    color: var(--color-gold);
}

#topMenu a:hover::after,
#topMenu a:focus-visible::after {
    transform: scaleX(1);
}

#topMenu a:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 5px;
}

.headerTittle,
.title,
.tittle {
    font-weight: 600;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.05;
}

.site-accent {
    font-family: var(--font-script);
    font-size: 2.6rem;
    letter-spacing: 0.02em;
    color: var(--color-gold);
}

.introSection,
.galleryPreview,
.awardsSection {
    background: var(--color-ivory);
}

.introSection {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 4rem;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 7rem) 2rem;
}

.introCopy {
    max-width: 760px;
    text-align: left;
}

.introCopy .title,
.sectionHeading .title {
    margin-bottom: 1rem;
}

.introCopy > p:not(.sectionKicker),
.introText p {
    max-width: 68ch;
    color: var(--color-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.introText > :first-child {
    margin-top: 0;
}

.introText > :last-child {
    margin-bottom: 0;
}

.introText p,
.introText ul,
.introText ol {
    margin: 0;
}

.introText p + p,
.introText p + ul,
.introText p + ol,
.introText ul + p,
.introText ol + p,
.introText ul + ul,
.introText ol + ol {
    margin-top: 1rem;
}

.introText ul,
.introText ol {
    max-width: 62ch;
    padding-left: 1.3rem;
    color: var(--color-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.introText li + li {
    margin-top: 0.35rem;
}

.sectionKicker {
    margin: 0 0 0.85rem;
    color: var(--color-gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.introMark {
    display: grid;
    width: 150px;
    height: 150px;
    place-items: center;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 3rem;
    letter-spacing: 0.08em;
}

.textLink {
    display: inline-flex;
    gap: 0.7rem;
    align-items: center;
    margin-top: 1rem;
    color: var(--color-ink);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}

.textLink span {
    color: var(--color-gold);
    font-size: 1.2rem;
    line-height: 1;
}

.galleryPreview,
.awardsSection {
    max-width: 1120px;
    margin: 0 auto;
    padding: clamp(3.5rem, 7vw, 6rem) 2rem;
}

.sectionHeading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.galleryStrip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.galleryCard {
    overflow: hidden;
    background: white;
    color: var(--color-ink);
    text-decoration: none;
}

.galleryCard img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 300ms ease;
}

.galleryCard:hover img,
.galleryCard:focus-visible img {
    transform: scale(1.04);
}

.galleryCard > span {
    display: block;
    padding: 1rem;
    font-family: var(--font-heading);
    font-size: 1rem;
}

.galleryCard small {
    display: block;
    margin-top: 0.35rem;
    color: var(--color-muted);
    font-family: var(--font-body);
    font-size: 0.72rem;
}

.awardsList {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.awardsList li {
    padding: 1.25rem 1.5rem 1.25rem 0;
    border-top: 1px solid rgba(199, 155, 82, 0.45);
    color: var(--color-muted);
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 0.6rem;
}

.awardsList li[hidden] {
    display: none;
}

.awardsList .awardYear {
    color: var(--color-gold);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.awardsList .awardTitle {
    color: var(--color-ink);
    font-family: var(--font-heading);
    font-weight: 600;
}

.awardsList .awardDescription {
    flex-basis: 100%;
    font-size: 0.92rem;
}

.awardsPager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.awardsPagerBtn {
    padding: 0.65rem 1.3rem;
    border: 1px solid var(--color-ink);
    background: transparent;
    color: var(--color-ink);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.awardsPagerBtn:hover:not(:disabled),
.awardsPagerBtn:focus-visible:not(:disabled) {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.awardsPagerBtn:disabled {
    opacity: 0.35;
    cursor: default;
}

.awardsPagerStatus {
    color: var(--color-muted);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
}

@media screen and (max-width: 600px) {
    .introSection {
        display: block;
        padding: 3.5rem 1.5rem;
    }

    .introCopy,
    .introText,
    .introText p,
    .introText ul,
    .introText ol {
        max-width: none;
        text-align: left !important;
    }

    .introMark {
        width: 92px;
        height: 92px;
        margin-top: 2rem;
        font-size: 1.8rem;
    }

    .galleryPreview,
    .awardsSection {
        padding: 3.5rem 1.5rem;
    }

    .sectionHeading {
        display: block;
    }

    .sectionHeading .textLink {
        margin-top: 0;
    }

    .galleryStrip,
    .awardsList {
        grid-template-columns: 1fr;
    }

    .awardsList li {
        padding-right: 0;
    }
}

/* Mobile-start */
@media screen and (max-width: 600px)  {

    #sideMenu{
        display: none;


    }
    p{
        text-align: center;
    }

    #mainHolder{
        margin: auto;
        width: 100%;
        min-height: 600px;
       
    
    }
    
    .header {
        background-color: rebeccapurple;
        width: 100%;
       
    }
    
    #headerTop {
        background-color: beige;
        min-height: 100px;
        height: 150px;
        background-image: url('../images/Header_Background.png'); 
        background-repeat: no-repeat;
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
        box-shadow: rgba(0, 0, 0, 0.13) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    }
    
    .logoPlace{
        min-height: 0;
        padding: 24px 0 0 20px;
    }
    .logoS{
        display: block;
        width: clamp(92px, 26vw, 132px);
        padding: 0;
    }

    #menuPhone{
        position: absolute;
        top: 16px;
        right: 16px;
        z-index: 40;
        display: grid;
        width: 48px;
        height: 48px;
        place-items: center;
        color: var(--color-ink);
        background: rgba(247, 244, 239, 0.9);
        border: 1px solid rgba(199, 155, 82, 0.65);
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(23, 23, 23, 0.16);
        font-size: 27px;
        line-height: 1;
        transition: color 180ms ease, background 180ms ease, transform 180ms ease;
    }
    #menuPhone.isOpen .fa::before {
        content: "\f00d";
    }
    #menuPhone:hover,
    #menuPhone:focus-visible {
        color: var(--color-gold);
        background: var(--color-ivory);
        transform: translateY(-1px);
    }
    #menuPhone:focus-visible {
        outline: 2px solid var(--color-gold);
        outline-offset: 3px;
    }
    #menuPhone.sticky {
        position: fixed; /* Sticky when scrolled past */
        top: 0;
        right: 16px;
        color: var(--color-ink);
    }
   
    #sideMenu{
        position: fixed;
        inset: 0;
        z-index: 30;
        display: block;
        width: 100%;
        height: 100vh;
        padding: 0;
        background: rgba(23, 23, 23, 0.46);
        opacity: 0;
        pointer-events: none;
        transition: opacity 220ms ease;
    }
    #sideMenu ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: min(82vw, 320px);
        height: 100%;
        margin: 0 0 0 auto;
        padding: 92px 2rem 2rem;
        background: var(--color-ivory);
        box-shadow: -14px 0 38px rgba(23, 23, 23, 0.2);
        list-style: none;
        transform: translateX(100%);
        transition: transform 260ms ease;
    }
    #sideMenu.isOpen {
        opacity: 1;
        pointer-events: auto;
    }
    #sideMenu.isOpen ul {
        transform: translateX(0);
    }
    .phoneList {
        width: auto;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(23, 23, 23, 0.14);
        list-style: none;
    }
    .phoneList a {
        display: block;
        padding: 1rem 0;
        color: var(--color-ink);
        font-size: 0.78rem;
        font-weight: 700;
        text-decoration: none;
    }
    .phoneList a:hover,
    .phoneList a:focus-visible {
        color: var(--color-gold);
    }

    html.noScroll, body.noScroll{
        
        overflow:hidden;
        height: 100%;
    }
    .divTittle
    {
        padding-top: 40px;
    }
    .headerTittle
    {
        font-weight: 600;
        text-decoration-line: underline;
        text-align: center;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    #topMenu{
        display: none;
    }
    .mList{
        display: inline-block;
        width:8%;
        margin: 8px;
        padding: 10px;
        border-radius: 10px;
       
        font-weight: bold;
        
        text-align: center;
        
        
       
    }
    
    
    li a{
        text-decoration: none;
        color: black;
        text-align: center;
        
        
    }
    
    a:link, a:visited {
        color: (gray);
        text-decoration: none;
       
        
      }
      
      a:link:active, a:visited:active {
        background-color: #F3BB32;
      }
    
    
    
    .parallax{
       height: 400px;
        background-image: url('../images/Second_Backgound.png');
        background-repeat: no-repeat;
        background-attachment: scroll;
        background-size:cover;
        background-position-y: calc(50% + var(--parallax-offset, 0px));
        background-position-x: -100px;
        box-shadow: 
            inset 0 40px 40px rgba(0, 0, 0, 0.3),  /* Top inner shadow */
            inset 0 -40px 40px rgba(0, 0, 0, 0.3); /* Bottom inner shadow */
            border-bottom:  solid gray 1px;
    }
    
    .infoHolder{
       
        background-color:  white;
        padding-top: 20px;
        padding-right: 20%;
        padding-left: 10%;
        padding-bottom: 30px;
        border-bottom:  solid gray 1px;
        font-size: 1rem;
    
    }
    .p{
        text-align: justify;
    }
    .infoHolder p,
    .infoHolder li,
    .aboutHolder p,
    .aboutHolder li,
    .form label,
    .form input,
    .form textarea,
    .form button {
        font-size: clamp(0.96rem, 2vw, 1.08rem);
    }
    
    .parallax2{
        min-height: 400px;
        background-image: url('../images/Third_Background.png');
        background-repeat: no-repeat;
        background-attachment: scroll;
        background-size:cover;
        background-position-y: calc(50% + var(--parallax-offset, 0px));
        background-position-x: -660px;
        box-shadow: 
            inset 0 40px 40px rgba(0, 0, 0, 0.3),  /* Top inner shadow */
            inset 0 -40px 40px rgba(0, 0, 0, 0.3); /* Bottom inner shadow */
            border-bottom:  solid gray 1px;
           
    }
    
    
    
    .parallax3{
        min-height: 400px;
        background-image: url('../images/Photo_Background.png');
        background-repeat: no-repeat;
        background-attachment: scroll;
        background-size:cover;
        background-position-y: calc(50% + var(--parallax-offset, 0px));
        background-position-x: -600px;
        box-shadow: 
            inset 0 40px 40px rgba(0, 0, 0, 0.3),  /* Top inner shadow */
            inset 0 -40px 40px rgba(0, 0, 0, 0.3); /* Bottom inner shadow */
            border-bottom:  solid gray 1px;
    }

    .parallax, .parallax2, .parallax3{
        position: relative;
        overflow: hidden;
        background-image: none;
        background-color: transparent;
    }
    .parallax::before, .parallax2::before, .parallax3::before{
        position: absolute;
        z-index: 0;
        top: -10%;
        right: -8%;
        bottom: -10%;
        left: -8%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        content: "";
        transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
        will-change: transform;
    }
    .parallax::before{ background-image: url('../images/Second_Backgound.png'); }
    .parallax2::before{ background-image: url('../images/Third_Background.png'); }
    .parallax3::before{ background-image: url('../images/Photo_Background.png'); }
    .parallax > *, .parallax2 > *, .parallax3 > *{
        position: relative;
        z-index: 1;
    }
    
    .photoPlace{
        
        padding-top: 30px;
        text-align: center;
        
    
    }
    
    .sPhoto{
        width: 90%;
        
      
       border: solid black 2px;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
        
        
    }
    
    .aboutHolder{
        display:block;
        width: 90%;
        text-align:justify;
        margin: 40px auto;
        padding: 20px;
        border: solid gray 1px;
        border-radius: 30px;
    }
    .contactHolder{
    
      
        background-image: url('../images/Photo_Background.png');
        background-repeat: no-repeat;
        background-attachment: scroll;
        background-size: cover;
        min-height: 500px;
        
    }
    .form{
        float: none;
        padding: 40px 20px;
    }

    /* .mainGallery / .picHolder / .picImg are handled by the responsive gallery grid rules above. */

    footer{
        width: 100%;
        min-height: 90px;
    
        bottom: 0;
        background-color: white;
        text-align: center;
       
        
    }
    
    
}

/* Tablet-start */
@media screen and (min-width: 601px) and (max-width: 1279px)  {

    #mainHolder{
        margin: auto;
        width: 100%;
        min-height: 600px;
    }

    #sideMenu{
        display: none;
    }

    #menuPhone{
        display: none;
    }

    #headerTop {
        background-color: beige;
        min-height: 300px;
        background-image: url('../images/Header_Background.png');
        background-repeat: no-repeat;
        background-attachment: scroll;
        background-size: cover;
        box-shadow: rgba(0, 0, 0, 0.13) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    }

    .logoPlace{
        min-height: 60px;
    }
    .logoS{
        float:left;
        width: 15%;
        padding-left: 5%;
        padding-top: 8%;
    }

    .divTittle{
        padding-top: 12%;
    }
    .headerTittle{
        font-weight: 600;
        text-decoration-line: underline;
        text-align: center;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-size: clamp(2.2rem, 4vw, 3.4rem);
    }

    #topMenu{
        display: block;
    }
    #topMenu.sticky {
        position: fixed;
        top: 0;
        width: 100%;
        box-shadow: 0 10px 28px rgba(23, 23, 23, 0.14);
    }

    .mList{
        display: block;
        width: auto;
    }

    .parallax, .parallax2, .parallax3{
        position: relative;
        overflow: hidden;
        min-height: 500px;
        background-image: none;
        background-color: transparent;
        box-shadow:
            inset 0 40px 40px rgba(0, 0, 0, 0.3),
            inset 0 -40px 40px rgba(0, 0, 0, 0.3);
        border-bottom: solid gray 1px;
    }
    .parallax::before, .parallax2::before, .parallax3::before{
        position: absolute;
        z-index: 0;
        top: -10%;
        right: -8%;
        bottom: -10%;
        left: -8%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        content: "";
        transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
        will-change: transform;
    }
    .parallax::before{ background-image: url('../images/Second_Backgound.png'); }
    .parallax2::before{ background-image: url('../images/Third_Background.png'); }
    .parallax3::before{ background-image: url('../images/Photo_Background.png'); }
    .parallax > *, .parallax2 > *, .parallax3 > *{
        position: relative;
        z-index: 1;
    }

    .photoPlace{
        padding-top: 40px;
        text-align: center;
    }
    .sPhoto{
        width: 50%;
        border-radius: 40px;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    }

    .aboutHolder{
        display: block;
        width: 80%;
        text-align: justify;
        margin: 60px auto;
        padding: 20px;
        border: solid gray 1px;
        border-radius: 30px;
    }

    .contactHolder{
        background-image: url('../images/Photo_Background.png');
        background-repeat: no-repeat;
        background-attachment: scroll;
        background-size: cover;
        min-height: 500px;
    }
    .form{
        float: none;
        max-width: 500px;
        margin: 0 auto;
        padding: 60px 20px;
    }

    /* .mainGallery / .picHolder / .picImg are handled by the responsive gallery grid rules above. */

    footer{
        width: 100%;
        min-height: 90px;
        background-color: white;
        text-align: center;
    }
}


/* Desktop-start */
@media screen and (min-width: 1280px) {
 
    /*mobile*/
    #menuPhone{
        display: none;
    }

    #sideMenu{
        display: none;
    }
    
#mainHolder{
    margin: auto;
    width: 100%;
    min-height: 600px;
   

}

.header {
    background-color: rebeccapurple;
    width: 100%;
   
}
#menuPhone{
    display: none;
}
#headerTop {
    background-color: beige;
    height: 320px;
    min-height: 320px;
    background-image: url('../images/Header_Background.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.logoPlace{
    min-height: 0;
}
.logoS{
    display: block;
    width: 180px;
    margin-left: clamp(48px, 7vw, 140px);
    padding-top: 125px;
}

.divTittle
{
    padding-top: 250px;
    
}
.headerTittle
{
    font-weight: 600;
    text-decoration-line: underline;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: clamp(2.5rem, 3vw, 4rem);

}

#topMenu{
    background-color: white;
    min-height: 40px;
    text-align: center;
    border-bottom:  solid gray 1px;



}
#topMenu.sticky {
    position: fixed; /* Sticky when scrolled past */
    top: 0;
    width: 100%;
  }
.mList{
    display: inline-block;
    width:8%;
    margin: 8px;
    padding: 10px;
    border-radius: 10px;
   
    font-weight: bold;
    
    text-align: center;
    
    
   
}


li a{
    text-decoration: none;
    color: black;
    text-align: center;
}

a:link, a:visited {
    color: (gray);
    text-decoration: none;
   
    
  }
  
  a:link:active, a:visited:active {
    background-color: #F3BB32;
  }



.parallax{
    min-height: 800px;
    background-image: url('../images/Second_Backgound.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size:cover;
    box-shadow: 
        inset 0 40px 40px rgba(0, 0, 0, 0.3),  /* Top inner shadow */
        inset 0 -40px 40px rgba(0, 0, 0, 0.3); /* Bottom inner shadow */
        border-bottom:  solid gray 1px;
}

.infoHolder{
   
    background-color:  white;
    padding-top: 20px;
    padding-right: 20%;
    padding-left: 10%;
    padding-bottom: 30px;
    border-bottom:  solid gray 1px;
    font-size: 1.08rem;
   

}
.p{
    text-align: justify;
}

.parallax2{
    min-height: 800px;
    background-image: url('../images/Third_Background.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size:cover;
    box-shadow: 
        inset 0 40px 40px rgba(0, 0, 0, 0.3),  /* Top inner shadow */
        inset 0 -40px 40px rgba(0, 0, 0, 0.3); /* Bottom inner shadow */
        border-bottom:  solid gray 1px;
       
}



.parallax3{
    min-height: 800px;
    background-image: url('../images/Photo_Background.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size:cover;
    box-shadow: 
        inset 0 40px 40px rgba(0, 0, 0, 0.3),  /* Top inner shadow */
        inset 0 -40px 40px rgba(0, 0, 0, 0.3); /* Bottom inner shadow */
        border-bottom:  solid gray 1px;
}

.photoPlace{
    display: flex;
    min-height: 800px;
    align-items: center;
    justify-content: flex-end;
    padding: 72px clamp(72px, 11vw, 220px) 72px 48px;

}

.sPhoto{
    display: block;
    width: min(620px, 52vw);
    max-height: 540px;
    object-fit: contain;
    border: 12px solid rgba(247, 244, 239, 0.94);
    border-radius: 0;
    box-shadow: 0 24px 55px rgba(23, 23, 23, 0.28);
}

.aboutHolder{
    display:inline-block;
    width: 60%;
    text-align:justify;
    margin-left: 200px;
    margin-top: 80px;
    margin-bottom: 200px;
    padding: 20px;
    border: solid gray 1px;
    border-radius: 30px;
}
.contactHolder{

  
    background-color: var(--color-sand);
    background-image: url('../images/Photo_Background.png');
    background-position: center;
    background-size: cover;
    min-height: 500px;
    
}
.form{
    float: inline-end;
    padding-right: 200px;
    padding-top: 80px;
}

/* .mainGallery / .picHolder / .picImg are handled by the responsive gallery grid rules above. */

footer{
    width: 100%;
    min-height: 90px;

    bottom: 0;
    background-color: white;
    text-align: center;
   
    
}

    

}


