:root {
    --color-gold: #dfb457;
    --color-gold-light: #f1ca6d;
    --color-gold-dark: #b8892e;
    --color-charcoal: #1a1a1a;
    --color-charcoal-soft: #2d2d2e;
    --color-text: #ececec;
    --color-text-muted: #b8b8b8;
    --color-text-dark: #2a2a2a;
    --color-text-dark-muted: #5c5c5c;
    --color-bg: #111111;
    --color-bg-soft: #1f1f21;
    --color-white: #ffffff;
    --color-cream: #f5f0e6;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    --shadow-gold: 0 8px 28px rgba(223, 180, 87, 0.25);
    --container-max: 1180px;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --header-height: 88px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text-dark);
    background: var(--color-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(17, 17, 17, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(223, 180, 87, 0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: var(--header-height);
}

.logo img {
    height: 58px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav a {
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--color-gold-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(223, 180, 87, 0.35);
    color: var(--color-gold-light);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    color: var(--color-charcoal);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(223, 180, 87, 0.4);
}

.btn-gold-label::after {
    content: " · ";
}

.btn-outline {
    background: transparent;
    color: var(--color-gold-light);
    border: 1.5px solid rgba(223, 180, 87, 0.45);
}

.btn-outline:hover {
    background: rgba(223, 180, 87, 0.12);
    border-color: var(--color-gold);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Hero */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: flex-end;
    padding-top: var(--header-height);
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(17, 17, 17, 0.55) 0%,
            rgba(17, 17, 17, 0.72) 45%,
            rgba(17, 17, 17, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 24px 72px;
    max-width: 1024px;
}

.hero-eyebrow {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--color-white);
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.08rem;
    color: var(--color-text-muted);
    max-width: 620px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Stats */
.stats {
    background: var(--color-charcoal);
    border-top: 3px solid var(--color-gold);
    border-bottom: 3px solid var(--color-gold);
    padding: 28px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-card {
    text-align: center;
    padding: 12px;
}

.stat-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold-light);
    line-height: 1.1;
    margin-bottom: 6px;
}

.stat-card span {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    letter-spacing: 0.03em;
}

/* Section shared */
.section-head {
    text-align: center;
    max-width: 1024px;
    margin: 0 auto 48px;
}

.section-head-light .section-title,
.section-head-light .section-desc {
    color: var(--color-text);
}

.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    margin-bottom: 10px;
}

.section-head-light .section-eyebrow {
    color: var(--color-gold-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--color-charcoal);
    line-height: 1.15;
    margin-bottom: 12px;
}

.section-title-light {
    color: var(--color-white);
    text-align: center;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--color-text-dark-muted);
    font-size: 1.02rem;
}

/* About */
.about {
    padding: 96px 0;
    background: var(--color-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 48px;
    align-items: start;
}

.about-image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 3px solid rgba(223, 180, 87, 0.35);
}

.about-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-subtitle {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 16px;
}

.about-text {
    color: var(--color-text-dark-muted);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.about-thumb {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
    border: 2px solid rgba(223, 180, 87, 0.25);
}

/* Products */
.products {
    padding: 96px 0;
    background: var(--color-bg);
    color: var(--color-text);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--color-bg-soft);
    border: 1px solid rgba(223, 180, 87, 0.12);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(223, 180, 87, 0.45);
    box-shadow: var(--shadow-gold);
}

.product-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(223, 180, 87, 0.15);
    color: var(--color-gold-light);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--color-gold-light);
    margin-bottom: 10px;
}

.product-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.product-code {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gold);
    background: rgba(223, 180, 87, 0.1);
    padding: 4px 10px;
    border-radius: 999px;
}

/* Features */
.features {
    padding: 96px 0;
    background: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--color-cream);
    border-left: 4px solid var(--color-gold);
    padding: 28px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.96rem;
    color: var(--color-text-dark-muted);
    line-height: 1.65;
}

/* Catalog CTA */
.catalog {
    position: relative;
    padding: 96px 24px;
    overflow: hidden;
}

.catalog-bg {
    position: absolute;
    inset: 0;
    background-image: url("images/bg.jpg");
    background-size: cover;
    background-position: center;
}

.catalog-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.92) 0%, rgba(26, 26, 26, 0.88) 100%);
}

.catalog-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 52px 40px;
    background: rgba(31, 31, 33, 0.85);
    border: 1px solid rgba(223, 180, 87, 0.25);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
}

.catalog-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 12px;
}

.catalog-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 14px;
}

.catalog-desc {
    color: var(--color-text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Contact */
.contact {
    padding: 96px 0;
    background: var(--color-charcoal);
    color: var(--color-text);
    scroll-margin-top: var(--header-height);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--color-bg-soft);
    border: 1px solid rgba(223, 180, 87, 0.12);
    border-radius: var(--radius);
    padding: 28px 22px;
    transition: border-color 0.2s, transform 0.2s;
}

.contact-card:hover {
    border-color: rgba(223, 180, 87, 0.4);
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 14px;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-gold-light);
    margin-bottom: 10px;
}

.contact-card p,
.contact-card a {
    font-size: 0.96rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.contact-card a:hover {
    color: var(--color-gold-light);
}

.contact-extra {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px 48px;
    text-align: center;
}

.contact-extra-block {
    background: var(--color-bg-soft);
    border: 2px solid var(--color-gold-dark);
    border-radius: var(--radius);
    padding: 28px 36px;
    min-width: 260px;
}

.contact-extra-icon {
    font-size: 1.75rem;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.contact-extra-block h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-gold-light);
    margin-bottom: 12px;
}

.contact-extra-block ul {
    list-style: none;
    text-align: left;
}

.contact-extra-block li {
    font-size: 0.96rem;
    color: var(--color-text-muted);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-extra-block li:last-child {
    border-bottom: none;
}

.contact-extra-block strong {
    color: var(--color-text);
    display: inline-block;
    min-width: 9em;
}

.contact-tagline {
    max-width: 440px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Map */
.map-section {
    padding: 0 0 80px;
    background: var(--color-bg);
}

.map-actions {
    text-align: center;
    margin-bottom: 16px;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-text-muted);
    background: var(--color-bg-soft);
    border: 1px solid rgba(223, 180, 87, 0.2);
    border-radius: 999px;
    transition: color 0.2s, border-color 0.2s;
}

.map-btn:hover {
    color: var(--color-gold-light);
    border-color: var(--color-gold);
}

.map-wrap {
    width: 100%;
    height: 450px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid rgba(223, 180, 87, 0.2);
}

.map-wrap iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 1000;
    padding: 10px 18px;
    font-weight: 600;
    color: var(--color-charcoal);
    background: var(--color-gold);
    border-radius: 0 0 8px 8px;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

/* FAQ */
.faq {
    padding: 96px 0;
    background: var(--color-white);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--color-cream);
    border: 1px solid rgba(223, 180, 87, 0.25);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
    border-color: rgba(223, 180, 87, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-item summary {
    padding: 18px 22px;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-charcoal);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 48px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-gold-dark);
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 22px 20px;
    color: var(--color-text-dark-muted);
    line-height: 1.75;
}

.faq-item a {
    color: var(--color-gold-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-item a:hover {
    color: var(--color-charcoal);
}

.contact-card address {
    font-style: normal;
    color: var(--color-text);
    line-height: 1.65;
}

/* Footer */
.footer {
    background: #0d0d0d;
    color: var(--color-text-muted);
    padding: 28px 0;
    border-top: 1px solid rgba(223, 180, 87, 0.15);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    height: 42px;
    width: auto;
    opacity: 0.9;
}

.footer-brand p {
    font-size: 0.9rem;
}

.footer-nap {
    font-size: 0.82rem;
    margin-top: 4px;
    opacity: 0.85;
}

.footer-nap a:hover {
    color: var(--color-gold-light);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--color-gold-light);
}

/* Responsive */
@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 992px) {
    .nav,
    .header-actions {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .header.nav-open .nav,
    .header.nav-open .header-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .header.nav-open .header-inner {
        flex-wrap: wrap;
        padding-bottom: 16px;
    }

    .header.nav-open .nav {
        order: 3;
        gap: 0;
    }

    .header.nav-open .nav a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .header.nav-open .header-actions {
        order: 4;
    }

    .header.nav-open .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-gold-label {
        display: none;
    }

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

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

@media (max-width: 768px) {
    .hero {
        min-height: 85vh;
    }

    .hero-content {
        padding: 60px 20px 48px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .about,
    .products,
    .features,
    .faq,
    .contact,
    .catalog {
        padding: 64px 0;
    }

    .about-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid,
    .features-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .catalog-inner {
        padding: 36px 24px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 46px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .stat-card strong {
        font-size: 1.5rem;
    }
}

/* Quick Contact Widget */
.quick-contact {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.quick-contact-panel {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 220px;
    padding: 12px;
    background: var(--color-charcoal);
    border: 1px solid rgba(223, 180, 87, 0.25);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.95);
    transform-origin: bottom right;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
}

.quick-contact.is-open .quick-contact-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.quick-contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.quick-contact-btn i {
    width: 18px;
    text-align: center;
    font-size: 1rem;
}

.quick-contact-btn:hover {
    transform: translateX(-2px);
}

.quick-contact-btn--phone {
    background: rgba(223, 180, 87, 0.16);
    border-color: rgba(223, 180, 87, 0.28);
    color: #f1ca6d;
}

.quick-contact-btn--phone i {
    color: #dfb457;
}

.quick-contact-btn--phone:hover {
    background: rgba(223, 180, 87, 0.28);
    border-color: rgba(223, 180, 87, 0.45);
    color: #fde9b8;
}

.quick-contact-btn--whatsapp {
    background: rgba(37, 211, 102, 0.14);
    border-color: rgba(37, 211, 102, 0.26);
    color: #9aebb5;
}

.quick-contact-btn--whatsapp i {
    color: #25d366;
}

.quick-contact-btn--whatsapp:hover {
    background: rgba(37, 211, 102, 0.24);
    border-color: rgba(37, 211, 102, 0.42);
    color: #c8f5d8;
}

.quick-contact-btn--map {
    background: rgba(66, 133, 244, 0.14);
    border-color: rgba(66, 133, 244, 0.26);
    color: #a8c7fa;
}

.quick-contact-btn--map i {
    color: #4285f4;
}

.quick-contact-btn--map:hover {
    background: rgba(66, 133, 244, 0.24);
    border-color: rgba(66, 133, 244, 0.42);
    color: #d2e3fc;
}

.quick-contact-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-dark));
    color: var(--color-charcoal);
    box-shadow: var(--shadow-gold);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-contact-toggle:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 32px rgba(223, 180, 87, 0.4);
}

.quick-contact-icon {
    position: absolute;
    font-size: 1.35rem;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.quick-contact-icon--close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.6);
}

.quick-contact.is-open .quick-contact-icon--open {
    opacity: 0;
    transform: rotate(90deg) scale(0.6);
}

.quick-contact.is-open .quick-contact-icon--close {
    opacity: 1;
    transform: rotate(0) scale(1);
}

@media (max-width: 480px) {
    .quick-contact {
        right: 16px;
        bottom: 16px;
    }

    .quick-contact-panel {
        min-width: 200px;
    }

    .quick-contact-btn {
        font-size: 0.8125rem;
        padding: 11px 14px;
    }

    .quick-contact-toggle {
        width: 52px;
        height: 52px;
    }
}
