/* ==========================
   RESET
========================== */

html {

    scroll-behavior: smooth;

}

section {
    scroll-margin-top: 100px;
}
#plan-your-event {
    scroll-margin-top: 110px;
}
#hero,
#why-us,
#services,
#gallery,
#story,
#contact {

    scroll-margin-top: 140px;

}

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

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    background: #faf8f5;
    line-height: 1.6;
}

/* ==========================
   GLOBAL
========================== */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ==========================
 /* ==========================
   HEADER
========================== */

header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background: linear-gradient(
        180deg,
        #fcfaf7 0%,
        #f7f1e8 100%
    );

    border-bottom: 1px solid rgba(109, 13, 24, 0.08);

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

}

header .container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 18px 0;

}

.logo img {

    height: 98px;

    width: auto;

}

nav ul {

    list-style: none;

    display: flex;

    gap: 40px;

}

nav a {

    text-decoration: none;

    color: #6d0d18;

    font-weight: 600;

    transition: color 0.25s ease;

}

nav a:hover {

    color: #b98b2e;

}

/* ==========================
   HERO
========================== */

.hero {

    position: relative;
    overflow: hidden;

    padding: 120px 0 90px;

    background:
        linear-gradient(
            180deg,
            #faf6f0 0%,
            #f6efe6 100%
        );

}

.hero::before {

    content: "";

    position: absolute;

    top: 20px;

    left: 20px;

    width: 380px;

    height: 380px;

    background:
        url("assets/patterns/corner-ornament.svg")
        no-repeat;

    background-size: contain;

    opacity: 0.025;

    pointer-events: none;

    z-index: 0;

}

.hero-content {
    position: relative;

    z-index: 1;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;

}

.hero-text {

    flex: 1;

}

.hero-image {

    flex: 1;

}

.hero-image img {

    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 12px;

}

.hero h1 {

    font-size: 3.6rem;

    line-height: 1.15;

    color: #6d0d18;

    margin-bottom: 30px;

}

.hero p {

    font-size: 1.15rem;

    max-width: 550px;

    margin-bottom: 35px;

}

.hero-buttons {

    display: flex;

    gap: 20px;

}

.btn-primary,
.btn-secondary {

    padding: 16px 32px;

    text-decoration: none;

    border-radius: 8px;

    font-weight: bold;

}

.btn-primary {

    background: #6d0d18;

    color: white;

}

.btn-primary:hover {

    background: #530811;

}

.btn-secondary {

    border: 2px solid #6d0d18;

    color: #6d0d18;

}

/* ==========================
   WHY CHOOSE US
========================== */

.why-us {

    padding: 90px 0;

    background: white;

}

.why-us h2 {

    text-align: center;

    font-size: 2.4rem;

    color: #6d0d18;

    margin-bottom: 20px;

}

.section-intro {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 60px;

    font-size: 1.1rem;

    color: #555;

}

.feature-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.feature-card {

    background: #faf8f5;

    padding: 35px;

    border-radius: 14px;

    box-shadow: 0 6px 18px rgba(0,0,0,.06);

    transition: .3s;

}

.feature-card:hover {

    transform: translateY(-6px);

}

.feature-card h3 {
    text-align: center;

    color: #6d0d18;

    margin-bottom: 18px;

}

.feature-card p {

    color: #555;

    line-height: 1.7;

}

.feature-icon {

    width: 40px;
    height: 40px;

    display: block;

    object-fit: contain;

    margin: 0 auto 20px;

}

/* ==========================
   SERVICES
========================== */

.services {

    padding: 90px 0;

    background: #f7f3ef;

}

.services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}

.service-card {

    background: white;

    padding: 35px;

    border-radius: 14px;

    box-shadow: 0 6px 18px rgba(0,0,0,.06);

    transition: .3s;

}

.service-card:hover {

    transform: translateY(-6px);

}

.service-card h3 {

    text-align: center;

    color: #6d0d18;

    margin-bottom: 15px;

}

.service-card p {

    color: #555;

    line-height: 1.7;

}

.services h2 {

    text-align: center;

    font-size: 2.4rem;

    color: #6d0d18;

    margin-bottom: 30px;

}

.services .section-intro {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 70px;

    font-size: 1.1rem;

    color: #555;

}

.service-icon {

    width: 40px;
    height: 40px;

    display: block;

    object-fit: contain;

    margin: 0 auto 20px;

}

/* ==========================
   GALLERY
========================== */

.gallery {

    padding: 90px 0;

    background: white;

}

.gallery h2 {

    text-align: center;

    font-size: 2.4rem;

    color: #6d0d18;

    margin-bottom: 25px;

}

.gallery-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

}

.gallery-grid img {

    width: 100%;

    height: 320px;

    object-fit: cover;

    border-radius: 14px;

    box-shadow: 0 8px 20px rgba(0,0,0,.08);

    transition: transform .3s ease;

}

.gallery-grid img:nth-child(4) {

    object-position: center 15%;

}

.gallery-grid img:hover {

    transform: scale(1.02);

}

/* ==========================
   TESTIMONIALS
========================== */

.testimonials {

    padding: 90px 0;

    background: #faf7f2;

}

.testimonials h2 {

    text-align: center;

    font-size: 2.4rem;

    color: #6d0d18;

    margin-bottom: 20px;

}

.testimonial-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 30px;

    margin-top: 50px;

}

.testimonial-card {

    background: #ffffff;

    padding: 35px;

    border-radius: 14px;

    box-shadow: 0 8px 20px rgba(0,0,0,.08);

    transition: transform .3s ease,
                box-shadow .3s ease;

}

.testimonial-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 14px 30px rgba(0,0,0,.12);

}

.quote-mark {

    font-size: 4rem;

    line-height: 1;

    color: #c89a3d;

    margin-bottom: 12px;

}

.testimonial-text {

    font-style: italic;

    line-height: 1.8;

    color: #555;

    margin-bottom: 22px;

}

.stars {

    color: #d4af37;

    font-size: 1.1rem;

    letter-spacing: 3px;

    margin-bottom: 18px;

}

.testimonial-card h3 {

    font-size: 1.15rem;

    color: #6d0d18;

    margin-bottom: 8px;

}

.testimonial-meta {

    color: #777;

    font-size: .92rem;

    line-height: 1.6;

}

/* =========================
   TESTIMONIAL CAROUSEL
========================= */

.testimonial-carousel {

    position: relative;

    display: flex;

    align-items: center;

    gap: 1rem;

}

.testimonial-viewport {

    overflow: hidden;

    width: 100%;

}

.testimonial-track {

    display: flex;

    gap: 2rem;

    transition: transform .45s ease;

    will-change: transform;

}

.testimonial-card {

    flex: 0 0 calc((100% - 4rem) / 3);

    background: #fff;

    border-radius: 14px;

    padding: 2rem;

    box-shadow: 0 8px 24px rgba(0,0,0,.08);

    display: flex;

    flex-direction: column;

    justify-content: space-between;

}

.testimonial-prev,
.testimonial-next {

    width: 48px;

    height: 48px;

    border: none;

    border-radius: 50%;

    cursor: pointer;

    background: #800000;

    color: #fff;

    font-size: 1.25rem;

    display: flex;

    align-items: center;

    justify-content: center;

    transition:
        background .25s ease,
        transform .25s ease;

}

.testimonial-prev:hover,
.testimonial-next:hover {

    background: #a00000;

    transform: scale(1.05);

}

.testimonial-prev:focus-visible,
.testimonial-next:focus-visible {

    outline: 3px solid #d4af37;

    outline-offset: 3px;

}

@media (max-width: 991px) {

    .testimonial-card {

        flex: 0 0 calc((100% - 2rem) / 2);

    }

}

@media (max-width: 640px) {

    .testimonial-carousel {

        gap: .5rem;

    }

    .testimonial-card {

        flex: 0 0 100%;

    }

}



/* ==========================
   OUR STORY
========================== */

.our-story {

    padding: 90px 0;

    background: #f7f3ef;

}

.story-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;

}

.story-image {

    flex: 1;

}

.story-image img {

    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 12px;

}

.story-text h2 {

    font-size: 2.5rem;

    color: #6d0d18;

    margin-bottom: 25px;

}

.story-text p {

    margin-bottom: 20px;

    line-height: 1.8;

}

.story-text blockquote {

    margin-top: 35px;

    padding-left: 20px;

    border-left: 4px solid #6d0d18;

    font-size: 1.3rem;

    font-style: italic;

    color: #6d0d18;

}

/* ==========================
   CONTACT SECTION
========================== */

.contact-section {
    padding: 80px 0;
    background: #faf7f2;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.contact-info h3 {
    margin-bottom: 30px;
    color: #6b1f1f;
    font-size: 2rem;
}

.contact-item {
    margin-bottom: 28px;
}

.contact-item h4 {
    margin-bottom: 8px;
    color: #6b1f1f;
    font-size: 1.1rem;
}

.contact-item p {
    line-height: 1.7;
    color: #555;
}

.contact-item a {
    color: #6b1f1f;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.secondary-phone {
    margin-top: 12px;
}

.placeholder-line {
    display: inline-block;
    width: 160px;
    border-bottom: 2px solid #bbb;
    margin-left: 8px;
    vertical-align: middle;
}

.map-container {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
}

@media (max-width: 900px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        min-height: 400px;
    }

}
.contact-heading {

    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 12px;

}

.contact-icon {

    width: 22px;
    height: 22px;

    flex-shrink: 0;

}

.phone-line {

    display: flex;
    align-items: center;
    gap: 8px;

}
.phone-indent {

    width: 14px;

    display: inline-block;

    flex-shrink: 0;

}

.whatsapp-icon {

    width: 18px;
    height: 18px;

    flex-shrink: 0;

    position: relative;
    top: 4px;


}

/* ==========================
   ENQUIRY FORM
========================== */

.enquiry-form {

    margin-top: 60px;

    padding: 45px;

    background: #faf7f2;

    border-radius: 14px;

    box-shadow: 0 8px 20px rgba(0,0,0,.08);

}

.enquiry-form h3 {

    color: #6d0d18;

    font-size: 2rem;

    margin-bottom: 18px;

}

.enquiry-intro {

    color: #555;

    line-height: 1.8;

    margin-bottom: 35px;

}

#quote-form {

    display: grid;

    gap: 24px;

}

.form-group {

    display: flex;

    flex-direction: column;

}

.form-group label {

    font-weight: 600;

    color: #6d0d18;

    margin-bottom: 8px;

}

.form-group label span {

    color: #b22222;

}

.form-group input,
.form-group select,
.form-group textarea {

    padding: 14px 16px;

    border: 1px solid #d7d0c8;

    border-radius: 10px;

    font-size: 1rem;

    font-family: inherit;

    background: white;

    transition: .25s;

}

.form-group textarea {

    resize: vertical;

    min-height: 140px;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    outline: none;

    border-color: #6d0d18;

    box-shadow: 0 0 0 3px rgba(109,13,24,.12);

}

#quote-form button {

    width: fit-content;

    margin-top: 10px;

}

.form-note {

    margin-top: 30px;

    font-size: .92rem;

    color: #666;

    line-height: 1.7;

}

#quote-form .btn {

    background: #6d0d18;

    color: #fff;

    border: none;

    padding: 14px 32px;

    border-radius: 10px;

    font-weight: 600;

    cursor: pointer;

    transition: all .25s ease;

    align-self: flex-start;

}

#quote-form .btn:hover {

    background: #550a13;

    transform: translateY(-2px);

    box-shadow: 0 8px 18px rgba(109,13,24,.20);

}
.form-message{
    margin-top:20px;
    padding:15px;
    border-radius:8px;
    font-size:0.95rem;
    line-height:1.5;
}

.form-message.success{
    background:#eaf8ec;
    color:#1d6b32;
    border:1px solid #b9dfc0;
}

.form-message.error{
    background:#fdeaea;
    color:#8b1f1f;
    border:1px solid #efb1b1;
}
/* =========================
   FROM OUR KITCHEN
========================= */

.announcements {

    padding: 80px 0;
    background: #faf7f2;

}

.announcement-grid {

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;

    margin-top: 50px;

}

.announcement-item {

    display: block;

    width: 100%;
    
    max-width: 340px;

    border-radius: 12px;

    overflow: hidden;

    background: #ffffff;

    box-shadow: 0 8px 25px rgba(0,0,0,0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}

.announcement-item:hover {

    transform: translateY(-6px);

    box-shadow: 0 16px 35px rgba(0,0,0,0.12);

}

.announcement-item img {

    display: block;

    width: 100%;
    height: auto;

}
/* ==========================
   FOOTER
========================== */

.site-footer {

    background: #4d1414;
    color: #ffffff;
    padding-top: 45px;

}

.footer-content {

    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 35px;

}

.footer-logo {

    width: 110px;
    height: auto;
    margin-bottom: 28px;

    display: block;
    margin-left: auto;
    margin-right: auto;

}

.footer-brand p {

    line-height: 1.8;
    color: rgba(255,255,255,0.85);

}

.footer-column h4 {

    margin-bottom: 20px;
    font-size: 1.2rem;

}

.footer-column ul {

    list-style: none;
    padding: 0;

}

.footer-column ul li {

    margin-bottom: 12px;

}

.footer-column a {

    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: 0.3s;

}

.footer-column a:hover {

    color: white;

}

.footer-column p {

    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;

}

.social-links {

    display: flex;
    flex-direction: column;
    gap: 14px;

}

.footer-bottom {

    margin-top: 35px;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    padding: 18px 0;

}

.footer-bottom p {

    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;

}

.footer-hours {

    display: flex;
    flex-direction: column;
    align-items: flex-start;

}

.footer-time {

    white-space: nowrap;

}

.footer-days {

    margin-top: 4px;
    font-size: 0.85rem;

}

.footer-contact-row a {

    display: inline-flex;
    align-items: center;
    gap: 10px;

}

.footer-column p:not(.footer-contact-row) {

    margin-left: 32px;

}

.footer-whatsapp-icon {

    width: 20px;
    height: 20px;

    filter: brightness(0) invert(1);

    position: relative;
    top: 1px;

    flex-shrink: 0;


}

.footer-phone-indent {

    margin-left: 32px;

}

@media (max-width: 900px) {

    .footer-content {

        grid-template-columns: 1fr;
        gap: 40px;

    }

}
.social-links {

    display: flex;
    flex-direction: column;
    gap: 16px;

}

.social-links a {

    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;

}

.social-icon {

    width: 20px;
    height: 20px;

    flex-shrink: 0;

    filter: brightness(0) invert(1);

}

/* ==========================
   Universal Lightbox
========================== */

.lightbox {

    position: fixed;
    inset: 0;

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

    background: rgba(0, 0, 0, 0.92);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 9999;

}

.lightbox.active {

    opacity: 1;
    visibility: visible;

}

.lightbox-image {

    position: relative;

    z-index: 1;

    max-width: 90vw;
    max-height: 90vh;

    border-radius: 10px;

    box-shadow: 0 20px 50px rgba(0,0,0,.45);

    object-fit: contain;

}

/* ==========================
   Buttons
========================== */

.lightbox button {

    position: absolute;

     z-index: 2;


    background: rgba(255,255,255,.18);

    color: #ffffff;

    border: none;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    cursor: pointer;

    font-size: 1.5rem;

    transition:
        background .25s ease,
        transform .25s ease;

}

.lightbox button:hover {

    background: rgba(255,255,255,.30);

    transform: scale(1.08);

}

/* Close */

.lightbox-close {

    top: 25px;
    right: 25px;

    font-size: 2rem;
    line-height: 1;

}

/* Previous */

.lightbox-prev {

    left: 30px;
    top: 50%;

    transform: translateY(-50%);

}

/* Next */

.lightbox-next {

    right: 30px;
    top: 50%;

    transform: translateY(-50%);

}

/* Preserve vertical centering on hover */

.lightbox-prev:hover {

    transform:
        translateY(-50%)
        scale(1.08);

}

.lightbox-next:hover {

    transform:
        translateY(-50%)
        scale(1.08);

}

@media (max-width: 768px) {

    .lightbox-image {

        max-width: 95vw;
        max-height: 82vh;

    }

    .lightbox button {

        width: 44px;
        height: 44px;

        font-size: 1.2rem;

    }

    .lightbox-prev {

        left: 12px;

    }

    .lightbox-next {

        right: 12px;

    }

    .lightbox-close {

        top: 15px;
        right: 15px;

    }

}

/* ==========================
   RESPONSIVE OPTIMISATION
   Desktop styles above remain the approved default.
========================== */

.nav-toggle {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1024px) {
    .container {
        width: min(92%, 1200px);
    }

    .hero {
        padding: 88px 0 72px;
    }

    .hero-content,
    .story-grid,
    .contact-wrapper {
        gap: 40px;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 5vw, 3.6rem);
    }

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

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

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

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 580px;
    }
}

@media (max-width: 900px) {
    html {
        overflow-x: clip;
    }

    body {
        overflow-x: hidden;
    }

    body.menu-open {
        overflow: hidden;
    }

    header .container {
        position: relative;
        min-height: 82px;
        padding: 12px 0;
    }

    .logo img {
        height: 72px;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        padding: 0;
        border: 1px solid rgba(109, 13, 24, .22);
        border-radius: 8px;
        background: transparent;
        color: #6d0d18;
        cursor: pointer;
    }

    .nav-toggle-icon,
    .nav-toggle-icon::before,
    .nav-toggle-icon::after {
        display: block;
        width: 24px;
        height: 2px;
        border-radius: 2px;
        background: currentColor;
        transition: transform .2s ease, opacity .2s ease;
    }

    .nav-toggle-icon {
        position: relative;
    }

    .nav-toggle-icon::before,
    .nav-toggle-icon::after {
        content: "";
        position: absolute;
        left: 0;
    }

    .nav-toggle-icon::before { top: -7px; }
    .nav-toggle-icon::after { top: 7px; }

    .nav-toggle[aria-expanded="true"] .nav-toggle-icon {
        background: transparent;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
        transform: translateY(-7px) rotate(-45deg);
    }

    header nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        z-index: 1;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    }

    header nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    nav ul {
        display: grid;
        gap: 0;
        padding: 8px 4%;
        background: #fcfaf7;
        border-bottom: 1px solid rgba(109, 13, 24, .12);
        box-shadow: 0 10px 18px rgba(0, 0, 0, .08);
    }

    nav a {
        display: block;
        min-height: 48px;
        padding: 13px 12px;
        border-radius: 6px;
    }

    .hero-content,
    .story-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .hero-text,
    .hero-image {
        width: 100%;
    }

    .hero-image img,
    .story-image img {
        height: clamp(320px, 56vw, 460px);
    }

    .contact-wrapper {
        margin-top: 36px;
    }

    .map-container iframe {
        min-height: 360px;
    }

    .footer-content,
    .footer-brand {
        grid-column: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        max-width: none;
    }
}

@media (max-width: 640px) {
    section {
        scroll-margin-top: 88px;
    }

    #hero,
    #why-us,
    #services,
    #gallery,
    #story,
    #contact,
    #plan-your-event {
        scroll-margin-top: 88px;
    }

    .container {
        width: min(100% - 32px, 1200px);
    }

    .hero,
    .why-us,
    .services,
    .gallery,
    .testimonials,
    .our-story,
    .contact-section,
    .announcements {
        padding: 60px 0;
    }

    .hero {
        padding-top: 56px;
    }

    .hero::before {
        top: 0;
        left: -50px;
        width: 270px;
        height: 270px;
    }

    .hero-content,
    .story-grid,
    .contact-wrapper {
        gap: 28px;
    }

    .hero h1 {
        font-size: clamp(2.25rem, 10vw, 3rem);
        margin-bottom: 20px;
    }

    .hero p,
    .section-intro,
    .services .section-intro {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 52px;
        padding: 14px 20px;
        text-align: center;
    }

    .hero-image img,
    .story-image img {
        height: min(72vw, 380px);
    }

    .why-us h2,
    .services h2,
    .gallery h2,
    .testimonials h2,
    .story-text h2,
    .section-heading h2 {
        font-size: clamp(1.9rem, 8vw, 2.4rem);
        line-height: 1.2;
    }

    .feature-grid,
    .services-grid,
    .gallery-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .services-grid {
        gap: 18px;
    }

    .feature-card,
    .service-card {
        padding: 26px;
    }

    .gallery-grid {
        gap: 16px;
    }

    .gallery-grid img {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .testimonial-carousel {
        align-items: stretch;
        gap: 8px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-prev,
    .testimonial-next {
        width: 44px;
        height: 44px;
        align-self: center;
        flex: 0 0 44px;
    }

    .quote-mark {
        font-size: 3rem;
    }

    .story-text blockquote {
        margin-top: 24px;
        font-size: 1.12rem;
    }

    .contact-info h3,
    .enquiry-form h3 {
        font-size: 1.6rem;
    }

    .contact-item {
        margin-bottom: 22px;
    }

    .enquiry-form {
        margin-top: 36px;
        padding: 24px 18px;
    }

    #quote-form {
        gap: 18px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 48px;
        font-size: 16px;
    }

    .form-group textarea {
        min-height: 130px;
    }

    #quote-form button,
    #quote-form .btn {
        width: 100%;
        min-height: 52px;
        margin-top: 0;
    }

    .map-container iframe {
        min-height: 300px;
    }

    .announcement-grid {
        gap: 20px;
        margin-top: 32px;
    }

    .announcement-item {
        max-width: 100%;
    }

    .site-footer {
        padding-top: 38px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-logo {
        margin-bottom: 18px;
    }

    .footer-column p:not(.footer-contact-row),
    .footer-phone-indent {
        margin-left: 0;
    }

    .footer-column a,
    .social-links a {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
    }

    .lightbox-image {
        max-width: calc(100vw - 24px);
        max-height: 76dvh;
    }
}

@media (hover: none) {
    .feature-card:hover,
    .service-card:hover,
    .testimonial-card:hover,
    .announcement-item:hover {
        transform: none;
        box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
    }

    .gallery-grid img:hover {
        transform: none;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
