:root {
    --black: #1e1a18;
    --gold: #d4af37;
    --white: #ffffff;
    --muted: #fdf8ef;
    --accent-red: #7f1d2d;
    --text-dark: #332b26;
    --text-soft: #6f6257;
    --shadow: 0 20px 45px rgba(109, 78, 33, 0.16);
    --radius: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at 12% 4%, #fff4d8 0%, #f8e8ca 22%, #fdf8ef 65%), linear-gradient(165deg, #fff9f1 0%, #fdf3e2 100%);
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

main {
    overflow: hidden;
}

.section {
    padding: 4.8rem 0;
}

.section-head {
    margin-bottom: 2rem;
}

.section-kicker {
    color: var(--gold);
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    font-size: 0.72rem;
    margin-bottom: 0.7rem;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
}

p {
    color: var(--text-soft);
}

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
    background: transparent;
}

.utility-bar {
    border-bottom: 1px solid rgba(212, 175, 55, 0.28);
    background: linear-gradient(90deg, rgba(127, 29, 45, 0.9), rgba(159, 41, 63, 0.85));
}

.utility-wrap {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.32rem 0;
}

.utility-wrap p {
    color: #ffe9be;
    font-size: 0.76rem;
}

.utility-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.utility-actions a {
    font-size: 0.76rem;
    color: #fff5dc;
    border-bottom: 1px solid rgba(255, 245, 220, 0.45);
}

.site-header:not(.scrolled) .main-nav a {
    color: #fff7e6;
}

.site-header:not(.scrolled) .logo small {
    color: #f6e8c4;
}

.site-header.scrolled {
    background: rgba(255, 248, 235, 0.92);
    box-shadow: 0 10px 28px rgba(110, 82, 39, 0.14);
    backdrop-filter: blur(8px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.logo-image {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.logo span {
    font-family: 'Playfair Display', serif;
    font-size: 0.98rem;
    color: var(--gold);
    letter-spacing: 0.03rem;
    text-transform: uppercase;
}

.main-nav {
    position: fixed;
    inset: 98px 1rem auto 1rem;
    display: none;
    flex-direction: column;
    gap: 0.85rem;
    background: rgba(255, 249, 237, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 14px;
    padding: 1.1rem;
}

.main-nav.open {
    display: flex;
}

.main-nav a {
    font-size: 0.95rem;
    color: #382d22;
    transition: color 0.25s ease;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--gold);
}

.menu-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    background: rgba(255, 248, 233, 0.85);
    border-radius: 10px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--gold);
}

.hero {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 420px;
    overflow: hidden;
    background: url('assets/homepage.png') no-repeat center center;
    background-position: center top;
    background-size: cover;
    margin: 0;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0) 56%);
    z-index: 1;
}

.hero-text {
    position: absolute;
    bottom: clamp(1rem, 3.2vw, 2rem);
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 2rem);
    text-align: center;
    z-index: 2;
}

.hero .btn {
    border-radius: 999px;
    padding: 0.88rem 1.9rem;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 236, 176, 0.45);
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    color: #1c1408;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28), 0 8px 20px rgba(212, 175, 55, 0.28);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.75rem 1.35rem;
    font-size: 0.9rem;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold,
.btn-small {
    background: linear-gradient(120deg, #9d7414, var(--gold));
    color: #141414;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

.btn-outline {
    border: 1px solid rgba(212, 175, 55, 0.8);
    color: #fff7e6;
    background: rgba(127, 29, 45, 0.45);
}

.feature-strip {
    padding: 2rem 0;
    background: linear-gradient(100deg, rgba(212, 175, 55, 0.28), rgba(255, 234, 191, 0.6));
}

.trust-strip {
    padding: 1rem 0 0;
}

.trust-wrap {
    border: 1px solid rgba(212, 175, 55, 0.34);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    background: linear-gradient(100deg, rgba(255, 253, 245, 0.95), rgba(255, 241, 205, 0.85));
}

.trust-wrap p {
    color: #5c4a35;
}

.trust-wrap p + p {
    margin-top: 0.3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.feature-grid div {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.feature-grid h3 {
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.collections {
    position: relative;
}

.collection-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.collection-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 320px;
    box-shadow: var(--shadow);
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.collection-card:hover img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.3rem;
    background: linear-gradient(to top, rgba(48, 21, 13, 0.88), rgba(127, 29, 45, 0.16) 65%, transparent 95%);
}

.occasion-strip {
    padding-top: 2.5rem;
    padding-bottom: 0.5rem;
}

.occasion-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.occasion-grid div {
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(255, 246, 227, 0.95));
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 14px;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.occasion-grid div:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 28px rgba(154, 109, 30, 0.16);
}

.occasion-grid h3 {
    color: var(--accent-red);
    margin-bottom: 0.25rem;
}

.card-overlay h3 {
    margin-bottom: 0.25rem;
}

.masonry-grid {
    columns: 1;
    column-gap: 1rem;
}

.shine {
    position: relative;
    margin-bottom: 1rem;
    break-inside: avoid;
    border-radius: 14px;
    overflow: hidden;
}

.shine::after {
    content: '';
    position: absolute;
    top: -130%;
    left: -45%;
    width: 40%;
    height: 260%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: rotate(12deg);
    transition: left 0.65s ease;
}

.shine:hover::after {
    left: 130%;
}

.testimonial-slider {
    position: relative;
    min-height: 220px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
}

.testimonial {
    position: absolute;
    inset: 1.5rem;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial h4 {
    color: var(--gold);
    margin-top: 1rem;
}

.why-asj {
    padding-top: 1.4rem;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.why-card {
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 16px;
    padding: 1.15rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 241, 211, 0.8));
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(147, 104, 31, 0.18);
}

.why-card h3 {
    color: var(--accent-red);
    margin-bottom: 0.35rem;
}

.reviews-section {
    padding-top: 0.9rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.review-card {
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    padding: 1.1rem;
    box-shadow: 0 10px 24px rgba(141, 103, 41, 0.12);
}

.review-stars {
    color: #e1a81d;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    margin-bottom: 0.45rem;
}

.review-card h4 {
    margin-top: 0.7rem;
    color: var(--accent-red);
}

.sub-hero {
    padding: 7rem 0 3rem;
    background: linear-gradient(120deg, rgba(212, 175, 55, 0.28), rgba(255, 245, 224, 0.92));
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.about-layout,
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.3rem;
}

.about-points,
.contact-info,
.contact-form-wrap,
.owner-note .container {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.point-card + .point-card {
    margin-top: 0.9rem;
}

.point-card h3 {
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.1rem;
}

.product-category + .product-category {
    margin-top: 2.2rem;
}

.product-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.96);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.72);
    box-shadow: 0 12px 34px rgba(212, 175, 55, 0.14);
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-content {
    padding: 1rem;
}

.product-content h3 {
    margin-bottom: 0.35rem;
}

.product-content p {
    margin-bottom: 0.9rem;
}

.contact-form {
    margin-top: 1rem;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
    margin-top: 0.85rem;
    margin-bottom: 0.9rem;
}

.quick-contact-card {
    border: 1px solid rgba(212, 175, 55, 0.48);
    border-radius: 999px;
    padding: 0.5rem 0.7rem;
    text-align: center;
    color: #6f1528;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 247, 227, 0.95);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.quick-contact-card:hover {
    transform: translateY(-2px);
    background: #fff0cd;
}

.floating-field {
    position: relative;
    margin-bottom: 1rem;
}

.floating-field input,
.floating-field textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-dark);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    padding: 1rem 0.9rem 0.65rem;
    outline: none;
    font: inherit;
    font-size: 16px;
}

.floating-field label {
    position: absolute;
    left: 0.85rem;
    top: 0.9rem;
    color: #8d7b66;
    pointer-events: none;
    transition: all 0.2s ease;
    background: transparent;
}

.floating-field input:focus + label,
.floating-field input:not(:placeholder-shown) + label,
.floating-field textarea:focus + label,
.floating-field textarea:not(:placeholder-shown) + label,
.floating-field input:valid + label,
.floating-field textarea:valid + label {
    transform: translateY(-0.9rem);
    font-size: 0.72rem;
    color: var(--gold);
}

.form-message {
    border-radius: 10px;
    padding: 0.7rem 0.85rem;
    margin-top: 0.7rem;
}

.form-message.success {
    background: rgba(41, 147, 77, 0.2);
    border: 1px solid rgba(84, 195, 122, 0.45);
    color: #9de8b7;
}

.form-message.error {
    background: rgba(178, 53, 53, 0.16);
    border: 1px solid rgba(255, 89, 89, 0.4);
    color: #ffc0c0;
}

.map-embed {
    margin-top: 1rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.map-embed iframe {
    width: 100%;
    min-height: 260px;
    border: 0;
}

.whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1001;
    background: linear-gradient(130deg, #25d366, #128c7e);
    color: #ffffff;
    border-radius: 999px;
    padding: 0.7rem 1rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    font-size: 0.88rem;
}

.mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1002;
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: rgba(70, 19, 31, 0.98);
    border-top: 1px solid rgba(212, 175, 55, 0.35);
}

.mobile-action-bar a {
    text-align: center;
    color: #fff0ce;
    padding: 0.88rem 0.4rem;
    font-size: 0.82rem;
    border-right: 1px solid rgba(212, 175, 55, 0.25);
}

.mobile-action-bar a:last-child {
    border-right: 0;
}

.scroll-top {
    position: fixed;
    right: 1rem;
    bottom: 4.5rem;
    z-index: 1001;
    border: 1px solid rgba(212, 175, 55, 0.7);
    background: rgba(255, 248, 235, 0.95);
    color: var(--gold);
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.scroll-top.show {
    opacity: 1;
    pointer-events: auto;
}

.site-footer {
    background: linear-gradient(160deg, #2e0f16, #571724);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 2.8rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
}

.site-footer h3,
.site-footer h4 {
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.site-footer ul {
    list-style: none;
}

.site-footer li {
    color: #f4e8c9;
    margin-bottom: 0.35rem;
}

.site-footer p {
    color: #f2e4be;
}

.footer-logo {
    width: 72px;
    height: auto;
    margin-bottom: 0.6rem;
    object-fit: contain;
}

.tilt-card {
    transform-style: preserve-3d;
    will-change: transform;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.14);
    margin-top: 1.8rem;
    padding: 1rem 0;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-premium-hero {
    position: relative;
    min-height: clamp(320px, 46vw, 500px);
    display: grid;
    align-items: center;
    background: #0f0f0f;
    margin-top: 0;
    overflow: hidden;
}

.contact-premium-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 34%;
}

.contact-premium-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(15, 15, 15, 0.72), rgba(15, 15, 15, 0.5));
}

.contact-premium-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    padding: 6.4rem 0 3.2rem;
}

.contact-premium-hero-content h1 {
    color: #ffffff;
    margin-bottom: 0.9rem;
}

.contact-premium-hero-content p {
    color: #efe7d2;
    margin-bottom: 1.4rem;
}

.contact-premium-cta {
    gap: 0.5rem;
}

.contact-premium-main {
    padding-top: 3.8rem;
}

.contact-premium-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.contact-premium-info,
.contact-premium-form-wrap,
.contact-cert-card,
.contact-map-card {
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 34px rgba(17, 17, 17, 0.08);
    padding: 1.35rem;
}

.contact-premium-info h2,
.contact-premium-form-wrap h2,
.contact-cert-card h2,
.contact-map-card h2 {
    margin-bottom: 0.55rem;
    color: #0f0f0f;
}

.contact-premium-list {
    list-style: none;
    margin-top: 1rem;
}

.contact-premium-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: #2d2a26;
    margin-bottom: 0.85rem;
}

.contact-premium-list i {
    color: #d4af37;
    margin-top: 0.2rem;
}

.contact-premium-list a {
    color: #0f0f0f;
    transition: color 0.25s ease;
}

.contact-premium-list a:hover {
    color: #9d7414;
}

.contact-premium-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 0.7rem;
}

.contact-premium-main .btn-outline {
    color: #0f0f0f;
    border-color: rgba(212, 175, 55, 0.85);
    background: rgba(255, 247, 228, 0.9);
}

.contact-premium-main .btn-outline:hover {
    background: #fff0c9;
}

.contact-premium-form-wrap .contact-form {
    margin-top: 1rem;
}

.contact-submit-btn {
    min-width: 130px;
}

.contact-secondary-banner-wrap {
    padding-top: 0;
}

.contact-secondary-banner {
    border-radius: 18px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(15, 15, 15, 0.16);
}

.contact-secondary-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.contact-cert-map-section {
    padding-top: 0;
}

.contact-cert-map-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.contact-cert-gstin {
    color: #0f0f0f;
    font-weight: 600;
    margin: 0.35rem 0 0.6rem;
}

.contact-cert-preview {
    margin-top: 1rem;
    border: 1px dashed rgba(212, 175, 55, 0.5);
    border-radius: 12px;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.35rem;
    color: #5f4d2e;
    background: rgba(255, 250, 236, 0.92);
}

.contact-cert-preview i {
    font-size: 1.35rem;
    color: #d4af37;
}

.contact-map-embed iframe {
    min-height: 300px;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .main-nav {
        position: static;
        display: flex;
        flex-direction: row;
        gap: 1.4rem;
        background: transparent;
        border: 0;
        padding: 0;
    }

    .occasion-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .why-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .reviews-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .masonry-grid {
        columns: 2;
    }

    .about-layout,
    .contact-layout {
        grid-template-columns: 1.15fr 1fr;
    }

    .contact-premium-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-cert-map-grid {
        grid-template-columns: 0.9fr 1.1fr;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1.25fr 1fr 1fr;
    }
}

@media (max-width: 767px) {
    body {
        padding-bottom: calc(58px + env(safe-area-inset-bottom));
    }

    .container {
        width: min(1120px, 94%);
    }

    .section {
        padding: 3.3rem 0;
    }

    h1 {
        font-size: clamp(1.7rem, 8vw, 2.35rem);
    }

    h2 {
        font-size: clamp(1.35rem, 6.4vw, 1.95rem);
        line-height: 1.2;
    }

    h3 {
        font-size: clamp(1.06rem, 4.8vw, 1.22rem);
        line-height: 1.3;
    }

    p {
        font-size: 0.94rem;
        line-height: 1.6;
    }

    .section-head {
        margin-bottom: 1.35rem;
    }

    .section-kicker {
        letter-spacing: 0.12rem;
        font-size: 0.66rem;
    }

    .utility-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.45rem;
    }

    .utility-wrap p,
    .utility-actions a {
        font-size: 0.72rem;
    }

    .utility-actions {
        flex-wrap: wrap;
        row-gap: 0.35rem;
    }

    .nav-wrap {
        padding: 0.65rem 0;
    }

    .main-nav {
        inset: 92px 0.75rem auto;
        max-height: calc(100svh - 108px);
        overflow-y: auto;
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    }

    .main-nav a {
        font-size: 1rem;
        min-height: 44px;
        color: #382d22;
    }

    .site-header:not(.scrolled) .main-nav a {
        color: #382d22;
    }

    .site-header:not(.scrolled) .main-nav a.active,
    .site-header:not(.scrolled) .main-nav a:hover {
        color: var(--gold);
    }

    .hero {
        height: auto;
        min-height: clamp(360px, 132vw, 560px);
        max-height: calc(100svh - 96px);
        background-image: url('assets/homepage-mobile.jpg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center top;
        background-color: #f5e8c7;
    }

    .hero-text {
        bottom: 1rem;
        width: calc(100% - 1.5rem);
    }

    .hero .btn {
        width: min(100%, 320px);
        font-size: 0.9rem;
    }

    .btn,
    .btn-gold,
    .btn-small,
    .btn-outline {
        min-height: 42px;
    }

    .feature-grid,
    .collection-grid,
    .product-grid,
    .reviews-grid,
    .why-grid,
    .contact-premium-grid,
    .contact-cert-map-grid,
    .about-layout,
    .contact-layout,
    .footer-grid,
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }

    .mobile-action-bar {
        display: grid;
    }

    .mobile-action-bar a {
        min-height: 50px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .whatsapp-float {
        display: none;
    }

    .scroll-top {
        right: 0.65rem;
        bottom: calc(66px + env(safe-area-inset-bottom));
        padding: 0.48rem 0.78rem;
        font-size: 0.78rem;
    }

    .contact-premium-hero {
        min-height: clamp(255px, 56vw, 360px);
    }

    .contact-premium-hero-content {
        padding: 5.6rem 0 2.4rem;
    }

    .contact-premium-hero-content h1 {
        font-size: clamp(1.7rem, 8.5vw, 2.3rem);
    }

    .logo-image {
        width: 44px;
        height: 44px;
    }

    .logo span {
        font-size: 0.82rem;
    }

    .collection-card {
        min-height: 280px;
    }

    .card-overlay {
        padding: 1rem;
    }

    .product-card img {
        height: 190px;
    }

    .testimonial-slider {
        min-height: 250px;
        padding: 1.2rem;
    }

    .testimonial {
        inset: 1.2rem;
    }

    .contact-map-embed iframe,
    .map-embed iframe {
        min-height: 240px;
    }

    .footer-logo {
        width: 64px;
    }

    .contact-premium-info,
    .contact-premium-form-wrap,
    .contact-cert-card,
    .contact-map-card {
        padding: 1.15rem;
    }

    .footer-bottom p {
        font-size: 0.84rem;
        line-height: 1.45;
    }
}

@media (max-width: 400px) {
    .container {
        width: 95%;
    }

    .section {
        padding: 2.6rem 0;
    }

    h1 {
        font-size: clamp(1.45rem, 8.6vw, 1.95rem);
    }

    h2 {
        font-size: clamp(1.18rem, 6.2vw, 1.48rem);
    }

    h3 {
        font-size: 1rem;
    }

    p {
        font-size: 0.9rem;
    }

    .section-kicker {
        letter-spacing: 0.09rem;
        font-size: 0.62rem;
    }

    .contact-premium-hero {
        min-height: 230px;
    }

    .contact-premium-hero-content {
        padding: 4.8rem 0 1.9rem;
    }

    .contact-premium-hero-content p {
        margin-bottom: 1.1rem;
    }

    .contact-premium-cta {
        width: 100%;
        max-width: 245px;
        margin: 0 auto;
    }

    .contact-premium-main {
        padding-top: 3rem;
    }

    .contact-premium-list li {
        gap: 0.58rem;
        margin-bottom: 0.72rem;
    }

    .contact-premium-quick-actions {
        gap: 0.55rem;
    }

    .contact-premium-quick-actions .btn {
        padding: 0.62rem 0.95rem;
        font-size: 0.82rem;
    }

    .quick-contact-card {
        font-size: 0.76rem;
    }

    .logo span {
        display: none;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .hero {
        min-height: clamp(300px, 136vw, 420px);
    }

    .hero .btn {
        font-size: 0.84rem;
        padding: 0.72rem 1rem;
    }

    .whatsapp-float {
        display: none;
    }

    .scroll-top {
        bottom: 7.6rem;
        padding: 0.4rem 0.7rem;
        font-size: 0.78rem;
    }
}

@media (max-width: 340px) {
    .container {
        width: 96%;
    }

    .section {
        padding: 2.3rem 0;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }

    .hero {
        min-height: clamp(280px, 142vw, 360px);
    }

    .hero-text {
        width: calc(100% - 1rem);
        bottom: 0.75rem;
    }

    .hero .btn {
        width: 100%;
        font-size: 0.8rem;
        min-height: 40px;
    }

    .testimonial-slider {
        min-height: 270px;
    }

    .mobile-action-bar a {
        font-size: 0.75rem;
        padding: 0.78rem 0.2rem;
    }

    .scroll-top {
        right: 0.45rem;
        bottom: 7.1rem;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 6rem 0;
    }

    .masonry-grid {
        columns: 3;
    }

    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
