/* ====================================================
   Guanqun Packaging International — Vercel-inspired
   ==================================================== */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- CONTAINER ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn--primary {
    background: #000;
    color: #fff;
}
.btn--primary:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
}

.btn--secondary {
    background: #fff;
    color: #000;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
}
.btn--secondary:hover {
    background: #f5f5f5;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
    transform: translateY(-1px);
}

.btn--full { width: 100%; }

/* ---------- SECTION ---------- */
.section {
    padding: 100px 0;
    position: relative;
}

.section--dark {
    background: #000;
    color: #fff;
}

.section--alt {
    background: #fafafa;
}

.section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #B8860B;
    margin-bottom: 16px;
}

.section__tag--light {
    color: #D4A843;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section__title em {
    font-style: normal;
    color: #B8860B;
}

.section__title--light em {
    color: #D4A843;
}

.section__desc {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.7;
}

.section__desc--light {
    color: rgba(255,255,255,0.7);
}

/* ==================== NAV ==================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.nav--scrolled {
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__logo-icon {
    font-size: 1.25rem;
    color: #B8860B;
}

.nav__logo-text {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav__logo-sub {
    display: none;
    font-size: 0.75rem;
    color: #999;
    font-weight: 400;
}

@media (min-width: 640px) {
    .nav__logo-sub { display: inline; }
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
    transition: color 0.2s;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #B8860B;
    transition: width 0.3s;
}

.nav__link:hover,
.nav__link.active { color: #000; }

.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

/* ---------- LANGUAGE DROPDOWN ---------- */
.lang-dropdown {
    position: relative;
    margin-left: 8px;
    z-index: 100;
}

.lang-dropdown__btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #000;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.lang-dropdown__btn:hover {
    background: #f5f5f5;
    border-color: rgba(0,0,0,0.2);
}

.lang-dropdown__arrow {
    font-size: 0.625rem;
    transition: transform 0.2s ease;
}

.lang-dropdown--open .lang-dropdown__arrow {
    transform: rotate(180deg);
}

.lang-dropdown__menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 150px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.2s ease;
    overflow: hidden;
}

.lang-dropdown--open .lang-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown__option {
    display: block;
    width: 100%;
    padding: 10px 16px;
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 500;
    text-align: left;
    color: #333;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    cursor: pointer;
    transition: background 0.15s ease;
}

.lang-dropdown__option:last-child {
    border-bottom: none;
}

.lang-dropdown__option:hover {
    background: #f7f7f7;
}

.lang-dropdown__option--active {
    color: #B8860B;
    font-weight: 600;
    background: #fdfaf5;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #000;
    transition: all 0.3s;
    border-radius: 1px;
}

/* Mobile nav */
@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 0;
        padding: 16px 24px;
        box-shadow: 0 12px 24px rgba(0,0,0,0.1);
        transform: translateY(-110%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .nav__links--open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav__link {
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .nav__link:last-child { border-bottom: none; }

    .nav__toggle { display: flex; }
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #f8f6f3 100%);
    overflow: hidden;
    padding-top: 64px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(184,134,11,0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(184,134,11,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__content {
    padding: 48px 0;
}

.hero__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #B8860B;
    margin-bottom: 24px;
    padding: 6px 16px;
    border: 1px solid rgba(184,134,11,0.2);
    border-radius: 100px;
}

.hero__title {
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero__title-accent {
    background: linear-gradient(135deg, #B8860B, #D4A843);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__desc {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero visual / 3D cube */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.hero__cube {
    width: 180px;
    height: 180px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 12s infinite linear;
}

.hero__cube-face {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 2px solid rgba(184,134,11,0.3);
    background: rgba(184,134,11,0.04);
}

.hero__cube-front  { transform: translateZ(90px); }
.hero__cube-top     { transform: rotateX(90deg) translateZ(90px); background: rgba(184,134,11,0.08); }
.hero__cube-right   { transform: rotateY(90deg) translateZ(90px); background: rgba(184,134,11,0.06); }

@keyframes rotateCube {
    0%   { transform: rotateX(-20deg) rotateY(0deg); }
    100% { transform: rotateX(-20deg) rotateY(360deg); }
}

.hero__stats-mini {
    position: absolute;
    bottom: 20px;
    right: 0;
    display: flex;
    gap: 16px;
}

.hero__stat-mini {
    background: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
}

.hero__stat-mini-num {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #B8860B;
}

.hero__stat-mini-label {
    font-size: 0.75rem;
    color: #999;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: #999;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero__scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(45deg);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: rotate(45deg) translate(0,0); opacity: 0.4; }
    50% { transform: rotate(45deg) translate(4px,4px); opacity: 1; }
}

@media (max-width: 768px) {
    .hero__inner { grid-template-columns: 1fr; gap: 32px; }
    .hero__visual { height: 260px; }
    .hero__cube { width: 120px; height: 120px; }
    .hero__cube-face { width: 120px; height: 120px; }
    .hero__cube-front  { transform: translateZ(60px); }
    .hero__cube-top     { transform: rotateX(90deg) translateZ(60px); }
    .hero__cube-right   { transform: rotateY(90deg) translateZ(60px); }
    .hero__stats-mini { position: static; margin-top: 16px; }
    .hero__scroll { display: none; }
}

/* ==================== STATS BANNER ==================== */
.stats-banner {
    padding: 64px 0;
    background: #000;
    color: #fff;
}

.stats-banner__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stats-banner__item {
    position: relative;
}

.stats-banner__num {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}

.stats-banner__plus,
.stats-banner__unit {
    font-size: 1.5rem;
    font-weight: 400;
    color: #B8860B;
    vertical-align: super;
}

.stats-banner__label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
}

@media (max-width: 640px) {
    .stats-banner__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ==================== ABOUT ==================== */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__text p {
    font-size: 1.0625rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: #333;
}

.about__feature-icon {
    color: #B8860B;
    font-size: 1rem;
}

.about__image-placeholder {
    aspect-ratio: 4/3;
    background: #f5f5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about__image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 32px;
    width: 100%;
    height: 100%;
}

.about__image-grid span {
    background: rgba(184,134,11,0.06);
    border: 1px solid rgba(184,134,11,0.12);
    border-radius: 4px;
    transition: background 0.3s;
}

.about__image-grid span:nth-child(1) { background: rgba(184,134,11,0.1); }
.about__image-grid span:nth-child(3) { background: rgba(184,134,11,0.08); }
.about__image-grid span:nth-child(5) { background: rgba(184,134,11,0.06); }

.about__quote {
    margin-top: 24px;
    padding: 20px 24px;
    background: #fafafa;
    border-left: 3px solid #B8860B;
    border-radius: 0 8px 8px 0;
    font-size: 1rem;
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.about__quote span {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-size: 0.8125rem;
    color: #999;
}

@media (max-width: 768px) {
    .about__grid { grid-template-columns: 1fr; gap: 40px; }
    .about__features { grid-template-columns: 1fr; }
}

/* ==================== PRODUCTS ==================== */
.products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.product-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(212,168,67,0.3);
    transform: translateY(-4px);
}

.product-card__visual {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.product-card__box {
    width: 80px;
    height: 80px;
    position: relative;
    transform-style: preserve-3d;
    animation: floatBox 3s ease-in-out infinite;
}

@keyframes floatBox {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.product-card__box span {
    position: absolute;
    inset: 0;
    border-radius: 4px;
    opacity: 0.8;
}

.product-card__box span:nth-child(1) {
    background: rgba(212,168,67,0.2);
    border: 1px solid rgba(212,168,67,0.3);
    transform: translateX(0) translateY(0);
}
.product-card__box span:nth-child(2) {
    background: rgba(212,168,67,0.1);
    border: 1px solid rgba(212,168,67,0.2);
    transform: translateX(6px) translateY(-6px);
}
.product-card__box span:nth-child(3) {
    background: rgba(212,168,67,0.05);
    border: 1px solid rgba(212,168,67,0.15);
    transform: translateX(12px) translateY(-12px);
}

.product-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.product-card__desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-card__specs {
    padding: 0;
}

.product-card__specs li {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.45);
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.product-card__specs li:last-child { border-bottom: none; }

@media (max-width: 1024px) {
    .products__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .products__grid { grid-template-columns: 1fr; }
}

/* ==================== ADVANTAGES ==================== */
.advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.advantage-card {
    padding: 36px 28px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    background: #fff;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-color: rgba(184,134,11,0.2);
    transform: translateY(-2px);
}

.advantage-card__icon {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: #B8860B;
}

.advantage-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.advantage-card__desc {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .advantages__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .advantages__grid { grid-template-columns: 1fr; }
}

/* ==================== GLOBAL ==================== */
.global__map {
    margin-bottom: 48px;
}

.global__map-bg {
    position: relative;
    width: 100%;
    height: 360px;
    background:
        radial-gradient(ellipse at 52% 72%, rgba(184,134,11,0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 20% 32%, rgba(184,134,11,0.04) 0%, transparent 30%),
        radial-gradient(ellipse at 48% 28%, rgba(184,134,11,0.04) 0%, transparent 30%),
        radial-gradient(ellipse at 68% 65%, rgba(184,134,11,0.04) 0%, transparent 30%);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
}

/* Subtle world map grid lines */
.global__map-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(0,0,0,0.03) 60px, rgba(0,0,0,0.03) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(0,0,0,0.03) 80px, rgba(0,0,0,0.03) 81px);
}

.global__dot {
    position: absolute;
    width: 16px;
    height: 16px;
    transform: translate(-50%, -50%);
}

.global__dot-pulse {
    display: block;
    width: 100%;
    height: 100%;
    background: #B8860B;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(184,134,11,0.15);
}

.global__dot--active .global__dot-pulse {
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(184,134,11,0.4); }
    100% { box-shadow: 0 0 0 16px rgba(184,134,11,0); }
}

.global__dot-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #555;
    white-space: nowrap;
    background: #fff;
    padding: 2px 10px;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

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

.global__office {
    padding: 24px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.global__office:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.global__office-country {
    font-size: 0.8125rem;
    color: #999;
}

.global__office h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 8px 0;
}

.global__office p {
    font-size: 0.8125rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .global__offices { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .global__offices { grid-template-columns: 1fr; }
    .global__map-bg { height: 240px; }
}

/* ==================== TESTIMONIALS ==================== */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 32px 28px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-2px);
}

.testimonial-card__stars {
    color: #D4A843;
    font-size: 0.875rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card__text {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212,168,67,0.2);
    border: 1px solid rgba(212,168,67,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #D4A843;
    flex-shrink: 0;
}

.testimonial-card__author div strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
}

.testimonial-card__author div span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
}

@media (max-width: 768px) {
    .testimonials__grid { grid-template-columns: 1fr; }
}

/* ==================== CONTACT ==================== */
.contact__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact__form {
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    background: #fff;
}

.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact__field {
    margin-bottom: 20px;
}

.contact__field label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: #333;
}

.contact__field input,
.contact__field textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 0.9375rem;
    border: none;
    border-radius: 6px;
    background: #f7f7f7;
    transition: all 0.2s;
    outline: none;
    color: #000;
}

.contact__field input:focus,
.contact__field textarea:focus {
    background: #f0f0f0;
    box-shadow: 0 0 0 2px rgba(184,134,11,0.2);
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
    color: #bbb;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact__info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact__info-icon {
    font-size: 1.25rem;
    color: #B8860B;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact__info-item h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.contact__info-item a,
.contact__info-item p {
    font-size: 0.9375rem;
    color: #333;
    line-height: 1.6;
}

.contact__info-item a:hover {
    color: #B8860B;
}

@media (max-width: 768px) {
    .contact__grid { grid-template-columns: 1fr; gap: 40px; }
    .contact__form { padding: 24px; }
    .contact__form-row { grid-template-columns: 1fr; }
}

/* ==================== FOOTER ==================== */
.footer {
    background: #000;
    color: #fff;
    padding: 80px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    padding-bottom: 48px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.footer__logo-icon {
    color: #B8860B;
    font-size: 1.5rem;
}

.footer__desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    transition: all 0.2s;
}

.footer__social-link:hover {
    border-color: #B8860B;
    color: #B8860B;
}

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

.footer__links-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}

.footer__links-col a {
    display: block;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    padding: 6px 0;
    transition: color 0.2s;
}

.footer__links-col a:hover {
    color: #B8860B;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}

.footer__bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
}

@media (max-width: 768px) {
    .footer__inner { grid-template-columns: 1fr; gap: 48px; }
    .footer__links { grid-template-columns: repeat(2, 1fr); }
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.3s;
    pointer-events: none;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.scroll-top--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.scroll-top:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

/* ==================== ANIMATIONS ==================== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in--visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE BASE ==================== */
@media (max-width: 640px) {
    .section { padding: 64px 0; }
    .section__title { font-size: 1.75rem; }
    .section__desc { font-size: 1rem; }
}

/* Success message */
.contact__success {
    display: none;
    padding: 20px;
    background: #f0f9f0;
    border: 1px solid #b8d8b8;
    border-radius: 8px;
    color: #2d6e2d;
    font-size: 0.9375rem;
    text-align: center;
}

.contact__success--visible {
    display: block;
}
