/* =========================================
   VINAYAKA SAREE MANDIR
   Main Stylesheet
========================================= */

:root {
    --plum: #3A182C;
    --burgundy: #6E2945;
    --gold: #C6A15B;
    --rose: #D9A6A6;
    --ivory: #FAF6EF;
    --cream: #F1E7D8;
    --charcoal: #252525;
    --white: #FFFFFF;
    --muted: #756B70;
    --border: rgba(58, 24, 44, 0.13);

    --heading-font: "Playfair Display", serif;
    --body-font: "DM Sans", sans-serif;

    --container: 1180px;
    --transition: 0.3s ease;
}


/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background: var(--ivory);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* Container */

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}


/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 246, 239, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
}

.nav-wrapper {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* Brand */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--heading-font);
    font-size: 24px;
    transform: rotate(45deg);
}

.brand-mark::first-letter {
    transform: rotate(-45deg);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-family: var(--heading-font);
    font-size: 20px;
    line-height: 1.1;
    color: var(--plum);
}

.brand small {
    margin-top: 3px;
    font-size: 9px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--burgundy);
}


/* Navigation */

.main-nav {
    display: flex;
    align-items: center;
    gap: 27px;
}

.main-nav a {
    position: relative;
    font-size: 13px;
    font-weight: 600;
    color: var(--plum);
}

.main-nav a:not(.nav-button)::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    left: 0;
    bottom: -7px;
    background: var(--gold);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.nav-button {
    padding: 11px 18px;
    color: var(--white) !important;
    background: var(--plum);
    transition: var(--transition);
}

.nav-button:hover {
    background: var(--burgundy);
    transform: translateY(-2px);
}


/* Mobile Menu */

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    padding: 9px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--plum);
    transition: var(--transition);
}


/* Hero */

.hero {
    min-height: 720px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 30%, rgba(198,161,91,0.16), transparent 27%),
        var(--ivory);
}

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(198,161,91,0.2);
    border-radius: 50%;
    right: -160px;
    top: -120px;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background-image:
        linear-gradient(135deg, rgba(58,24,44,.04) 25%, transparent 25%),
        linear-gradient(315deg, rgba(58,24,44,.04) 25%, transparent 25%);
    background-size: 80px 80px;
}

.hero-grid {
    min-height: 720px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 17px;
    color: var(--burgundy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.8px;
}

.hero h1 {
    max-width: 690px;
    font-family: var(--heading-font);
    color: var(--plum);
    font-size: clamp(52px, 6vw, 82px);
    line-height: 1.02;
    font-weight: 600;
}

.hero h1 em,
.section-heading em,
.about-content h2 span,
.why-intro h2 em,
.enquiry-intro h2 em,
.contact-heading h2 em,
.inner-hero h1 em {
    color: var(--burgundy);
    font-style: italic;
}

.hero-content > p {
    max-width: 590px;
    margin: 25px 0 30px;
    color: var(--muted);
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 24px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--plum);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--burgundy);
    transform: translateY(-3px);
}

.btn-outline {
    border-color: var(--plum);
    color: var(--plum);
}

.btn-outline:hover {
    background: var(--plum);
    color: var(--white);
}

.btn-gold {
    background: var(--gold);
    color: var(--plum);
}

.btn-gold:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.hero-details {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 42px;
    color: var(--burgundy);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .7px;
}


/* Hero Art */

.hero-art {
    display: flex;
    justify-content: center;
}

.art-frame {
    width: min(100%, 500px);
    aspect-ratio: 0.78;
    position: relative;
    overflow: hidden;
    background: var(--plum);
    border: 10px solid var(--cream);
    box-shadow: 30px 30px 0 rgba(110, 41, 69, 0.12);
}

.fabric {
    position: absolute;
    transform-origin: center;
}

.fabric-one {
    width: 125%;
    height: 48%;
    top: 6%;
    left: -15%;
    background:
        repeating-linear-gradient(
            90deg,
            var(--burgundy) 0 22px,
            var(--gold) 22px 27px,
            var(--burgundy) 27px 52px
        );
    transform: rotate(-13deg);
    opacity: .95;
}

.fabric-two {
    width: 130%;
    height: 45%;
    bottom: 0;
    left: -15%;
    background:
        repeating-linear-gradient(
            -45deg,
            var(--rose) 0 18px,
            var(--cream) 18px 24px,
            var(--plum) 24px 39px
        );
    transform: rotate(11deg);
}

.fabric-three {
    width: 120%;
    height: 24%;
    left: -10%;
    top: 39%;
    background: var(--gold);
    transform: rotate(-5deg);
    opacity: .9;
}

.art-center {
    position: absolute;
    z-index: 5;
    width: 170px;
    height: 170px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255,255,255,.55);
    outline: 8px solid rgba(58,24,44,.2);
    display: grid;
    place-content: center;
    text-align: center;
    background: rgba(58,24,44,.84);
    color: var(--white);
}

.art-center span {
    font-family: var(--heading-font);
    font-size: 45px;
    color: var(--gold);
}

.art-center small {
    font-size: 7px;
    letter-spacing: 1.5px;
}


/* Address */

.address-strip {
    background: var(--plum);
    color: var(--white);
}

.address-inner {
    min-height: 105px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.address-icon {
    color: var(--gold);
    font-size: 34px;
}

.address-inner span {
    display: block;
    margin-bottom: 3px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.address-inner p {
    color: rgba(255,255,255,.78);
    font-size: 13px;
}

.text-link {
    margin-left: auto;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}


/* Sections */

.section {
    padding: 110px 0;
}

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 70px;
}

.section-label {
    border-top: 1px solid var(--border);
    padding-top: 17px;
}

.section-label span {
    display: block;
    color: var(--gold);
    font-family: var(--heading-font);
    font-size: 24px;
}

.section-label p {
    margin-top: 3px;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--burgundy);
}

.about-content {
    max-width: 850px;
}

.about-content h2 {
    font-family: var(--heading-font);
    color: var(--plum);
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 27px;
}

.about-content p {
    max-width: 760px;
    margin-bottom: 18px;
    color: var(--muted);
}

.underlined-link {
    display: inline-flex;
    gap: 15px;
    margin-top: 18px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--gold);
    color: var(--plum);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.underlined-link span {
    color: var(--gold);
}


/* Collection */

.collection-section {
    background: var(--cream);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.section-heading h2 {
    max-width: 700px;
    font-family: var(--heading-font);
    color: var(--plum);
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.1;
    font-weight: 500;
}

.section-heading > p {
    max-width: 350px;
    color: var(--muted);
    font-size: 14px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--plum);
}

.collection-card {
    min-height: 350px;
    padding: 30px;
    position: relative;
    background: var(--white);
    transition: var(--transition);
}

.collection-card:hover {
    transform: translateY(-8px);
    z-index: 2;
    box-shadow: 0 18px 35px rgba(58,24,44,.15);
}

.collection-card.featured {
    background: var(--plum);
    color: var(--white);
}

.card-number {
    color: var(--gold);
    font-family: var(--heading-font);
    font-size: 14px;
}

.card-icon {
    margin: 42px 0 25px;
    color: var(--gold);
    font-size: 30px;
}

.collection-card h3 {
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 500;
    color: var(--plum);
}

.collection-card.featured h3 {
    color: var(--white);
}

.collection-card p {
    margin: 13px 0 25px;
    color: var(--muted);
    font-size: 13px;
}

.collection-card.featured p {
    color: rgba(255,255,255,.68);
}

.collection-card a {
    color: var(--burgundy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.collection-card.featured a {
    color: var(--gold);
}


/* Why */

.why-section {
    padding: 115px 0;
    background: var(--plum);
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
}

.why-intro h2 {
    font-family: var(--heading-font);
    font-size: clamp(42px, 5vw, 65px);
    line-height: 1.05;
    font-weight: 500;
}

.why-intro p {
    max-width: 450px;
    margin: 25px 0 30px;
    color: rgba(255,255,255,.67);
}

.why-intro .eyebrow {
    color: var(--gold);
}

.why-list {
    border-top: 1px solid rgba(255,255,255,.18);
}

.why-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 25px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.why-item > span {
    color: var(--gold);
    font-family: var(--heading-font);
}

.why-item h3 {
    margin-bottom: 5px;
    font-family: var(--heading-font);
    font-size: 25px;
    font-weight: 500;
}

.why-item p {
    color: rgba(255,255,255,.6);
    font-size: 13px;
}


/* Enquiry */

.enquiry-section {
    background: var(--ivory);
}

.enquiry-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.enquiry-intro h2 {
    font-family: var(--heading-font);
    color: var(--plum);
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.08;
    font-weight: 500;
}

.enquiry-intro > p {
    max-width: 500px;
    margin: 25px 0 35px;
    color: var(--muted);
}

.contact-mini {
    display: grid;
    gap: 20px;
}

.contact-mini span,
.detail small,
.contact-detail-large small {
    display: block;
    color: var(--burgundy);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-mini a {
    color: var(--plum);
    font-size: 14px;
    font-weight: 600;
}


/* Form */

.form-card {
    padding: 45px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 20px 20px 0 rgba(58,24,44,.05);
}

.form-heading {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.form-heading span {
    color: var(--burgundy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.form-heading p {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 19px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--plum);
    font-size: 11px;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid rgba(58,24,44,.16);
    outline: none;
    background: var(--ivory);
    color: var(--charcoal);
    font-size: 13px;
    transition: var(--transition);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(198,161,91,.1);
}

.form-group.invalid input,
.form-group.invalid textarea {
    border-color: #a23b4d;
}

.error-message {
    display: block;
    min-height: 17px;
    margin-top: 4px;
    color: #a23b4d;
    font-size: 10px;
}

.form-submit {
    width: 100%;
    margin-top: 5px;
}

.form-status {
    display: none;
    margin-top: 18px;
    padding: 13px;
    font-size: 12px;
    text-align: center;
}

.form-status.success {
    display: block;
    background: #edf6ee;
    color: #2c6535;
}

.form-status.error {
    display: block;
    background: #faeded;
    color: #9a3042;
}


/* Contact */

.contact-section {
    padding: 105px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: .75fr 1fr;
    gap: 60px;
}

.contact-heading {
    grid-row: span 2;
}

.contact-heading h2 {
    font-family: var(--heading-font);
    color: var(--plum);
    font-size: clamp(40px, 4.5vw, 60px);
    line-height: 1.08;
    font-weight: 500;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.detail {
    display: flex;
    gap: 14px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
}

.detail-icon {
    color: var(--gold);
    font-size: 23px;
}

.detail p,
.detail a {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
}

.detail a:hover {
    color: var(--burgundy);
}

.map-box {
    min-height: 250px;
    padding: 38px;
    margin-top: 20px;
    background:
        linear-gradient(rgba(58,24,44,.92), rgba(58,24,44,.92)),
        repeating-linear-gradient(45deg, var(--burgundy) 0 10px, var(--plum) 10px 20px);
    color: var(--white);
    display: flex;
    align-items: center;
}

.map-box span {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700;
}

.map-box h3 {
    margin: 7px 0;
    font-family: var(--heading-font);
    font-size: 30px;
    font-weight: 500;
}

.map-box p {
    max-width: 500px;
    color: rgba(255,255,255,.67);
    font-size: 12px;
}

.map-button {
    display: inline-block;
    margin-top: 20px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* Inner Hero */

.inner-hero {
    padding: 125px 0 110px;
    background:
        radial-gradient(circle at 85% 40%, rgba(198,161,91,.15), transparent 28%),
        var(--cream);
    border-bottom: 1px solid var(--border);
}

.inner-hero h1 {
    max-width: 850px;
    font-family: var(--heading-font);
    color: var(--plum);
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.05;
    font-weight: 500;
}

.inner-hero p {
    max-width: 600px;
    margin-top: 20px;
    color: var(--muted);
}

.legal-hero {
    padding-bottom: 90px;
}


/* Contact Page */

.contact-page {
    background: var(--ivory);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 55px;
}

.contact-info-card {
    padding: 45px;
    background: var(--plum);
    color: var(--white);
}

.contact-info-card h2 {
    margin-bottom: 35px;
    font-family: var(--heading-font);
    font-size: 43px;
    line-height: 1.1;
    font-weight: 500;
}

.contact-detail-large {
    display: flex;
    gap: 15px;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.contact-detail-large > span {
    color: var(--gold);
    font-size: 23px;
}

.contact-detail-large small {
    color: var(--gold);
}

.contact-detail-large p,
.contact-detail-large a {
    display: block;
    margin-top: 5px;
    color: rgba(255,255,255,.7);
    font-size: 13px;
}

.contact-detail-large a:hover {
    color: var(--gold);
}

.contact-info-card .btn {
    margin-top: 8px;
}


/* Legal */

.legal-section {
    background: var(--white);
}

.legal-container {
    max-width: 900px;
}

.legal-updated {
    margin-bottom: 50px;
    color: var(--burgundy);
    font-size: 12px;
    font-weight: 700;
}

.legal-container h2 {
    margin-top: 38px;
    margin-bottom: 10px;
    color: var(--plum);
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 500;
}

.legal-container p {
    color: var(--muted);
    font-size: 14px;
}

.legal-contact-box {
    margin-top: 35px;
    padding: 30px;
    background: var(--cream);
    border-left: 3px solid var(--gold);
}

.legal-contact-box strong {
    color: var(--plum);
    font-family: var(--heading-font);
    font-size: 22px;
}

.legal-contact-box p {
    margin-top: 13px;
}

.legal-contact-box a {
    color: var(--burgundy);
    font-weight: 600;
}


/* Footer */

.site-footer {
    padding: 75px 0 0;
    background: #25141f;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-logo .brand-mark {
    color: var(--gold);
}

.footer-logo strong {
    color: var(--white);
}

.footer-logo small {
    color: var(--gold);
}

.footer-brand > p {
    max-width: 350px;
    margin-top: 22px;
    color: rgba(255,255,255,.52);
    font-size: 13px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-column h4 {
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 2px;
}

.footer-column a,
.footer-column p {
    color: rgba(255,255,255,.65);
    font-size: 12px;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-contact p {
    line-height: 1.6;
}

.footer-bottom {
    min-height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.42);
    font-size: 10px;
}


/* Back To Top */

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 500;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    background: var(--plum);
    color: var(--gold);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Reveal Animation */

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive */

@media (max-width: 1050px) {

    .main-nav {
        gap: 17px;
    }

    .main-nav a {
        font-size: 12px;
    }

    .hero-grid {
        gap: 35px;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 800px) {

    .nav-wrapper {
        min-height: 72px;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1001;
    }

    .main-nav {
        position: fixed;
        inset: 72px 0 auto 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 15px 5%;
        background: var(--ivory);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 20px 30px rgba(58,24,44,.1);
        transform: translateY(-130%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav a {
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
    }

    .main-nav .nav-button {
        margin: 12px 0;
        padding: 13px 18px;
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding: 90px 0;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        min-height: auto;
    }

    .hero-art {
        max-width: 470px;
        width: 100%;
        margin: 20px auto 0;
    }

    .address-inner {
        padding: 22px 0;
        flex-wrap: wrap;
    }

    .text-link {
        margin-left: 52px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-label {
        max-width: 200px;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 20px;
    }

    .why-grid,
    .enquiry-grid,
    .contact-page-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-heading {
        grid-row: auto;
    }

    .contact-details {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 560px) {

    .section {
        padding: 75px 0;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-content > p {
        font-size: 14px;
    }

    .hero-details {
        display: grid;
        gap: 10px;
    }

    .art-frame {
        border-width: 6px;
    }

    .address-inner {
        align-items: flex-start;
    }

    .address-inner p {
        font-size: 12px;
    }

    .text-link {
        margin-left: 50px;
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }

    .collection-card {
        min-height: 310px;
    }

    .form-card,
    .contact-info-card {
        padding: 27px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .map-box {
        padding: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        padding: 18px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .inner-hero {
        padding: 90px 0 75px;
    }

    .inner-hero h1 {
        font-size: 48px;
    }

    .legal-container h2 {
        font-size: 25px;
    }

}