/* ========================================
   HS ENTERPRISES - Premium Mobile Experience
   Wood-Inspired Responsive Design System
   ======================================== */

/* ========================================
   TABLET (768px - 1024px)
   ======================================== */

@media (max-width: 1024px) {
    :root {
        --section-gap: 100px;
        --container-padding: 32px;
    }

    /* Navigation */
    .navbar {
        padding: 16px 0;
        z-index: 1050;
    }

    .navbar.scrolled {
        padding: 12px 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(247, 243, 238, 0.98);
    }

    .logo {
        gap: 10px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .logo-text {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 0;
        cursor: pointer;
        z-index: 1150;
        width: 40px;
        height: 40px;
        justify-content: center;
        align-items: center;
        position: relative;
        background: var(--bg-alternate);
        border: 1px solid var(--border-wood);
        border-radius: 10px;
    }

    .mobile-toggle span {
        width: 20px;
        height: 2px;
        background: var(--text-heading);
        transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: absolute;
        border-radius: 2px;
    }

    .mobile-toggle span:nth-child(1) {
        transform: translateY(-7px);
    }

    .mobile-toggle span:nth-child(2) {
        transform: translateY(0);
        width: 16px;
    }

    .mobile-toggle span:nth-child(3) {
        transform: translateY(7px);
    }

    .mobile-toggle.active {
        background: var(--text-heading);
        border-color: var(--text-heading);
    }

    .mobile-toggle.active span {
        background: var(--white);
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(0) rotate(45deg);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(0) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 340px;
        height: 100vh;
        height: 100dvh;
        background: var(--text-heading);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 0;
        gap: 0;
        z-index: 1100;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -20px 0 60px rgba(47, 36, 30, 0.4);
        border-left: 1px solid rgba(166, 124, 82, 0.3);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-menu-header,
    .nav-menu-footer {
        display: block;
    }

    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50 Q 25 30, 50 50 T 100 50' stroke='%23A67C52' stroke-width='0.5' fill='none' opacity='0.1'/%3E%3C/svg%3E");
        background-size: 100px 100px;
        pointer-events: none;
        opacity: 0.4;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        border-bottom: none;
        opacity: 0;
        transform: translateX(40px);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(8) { transition-delay: 0.45s; }

    .nav-links li:last-child {
        border-bottom: none;
        margin-top: auto;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        gap: 16px;
        font-family: var(--font-body);
        font-size: 0.85rem;
        font-weight: 500;
        padding: 20px 40px;
        color: rgba(255, 255, 255, 0.7);
        letter-spacing: 3px;
        text-transform: uppercase;
        transition: all 0.3s ease;
        position: relative;
        border-left: 3px solid transparent;
        opacity: 0;
        transform: translateX(30px);
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links a::before {
        content: attr(data-number);
        font-family: var(--font-primary);
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--accent-honey);
        opacity: 0.5;
        min-width: 20px;
        transition: all 0.3s ease;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 40px;
        right: 40px;
        height: 1px;
        background: linear-gradient(90deg, rgba(166, 124, 82, 0.3), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-links a:hover {
        color: var(--white);
        background: rgba(166, 124, 82, 0.1);
        border-left-color: var(--accent-honey);
        padding-left: 48px;
    }

    .nav-links a:hover::before {
        opacity: 1;
        color: var(--accent-honey);
    }

    .nav-links a:hover::after {
        opacity: 1;
    }

    .nav-links .nav-cta {
        display: flex !important;
        justify-content: center;
        margin: 24px 32px;
        padding: 18px 32px !important;
        border-radius: 8px !important;
        border-left: none !important;
        text-align: center;
        font-family: var(--font-body);
        font-size: 0.8rem;
        letter-spacing: 2px;
        background: var(--accent-honey);
        color: var(--text-heading) !important;
        font-weight: 600;
    }

    .nav-links .nav-cta::before {
        display: none;
    }

    .nav-links .nav-cta::after {
        display: none;
    }

    .nav-links .nav-cta:hover {
        background: var(--white);
        padding-left: 32px !important;
        border-left: none !important;
    }

    /* Menu Header */
    .nav-menu-header {
        width: 100%;
        padding: 32px 40px 0;
        margin-bottom: 8px;
    }

    .nav-logo {
        display: flex !important;
        align-items: center;
        gap: 14px;
        padding: 0 !important;
        border-left: none !important;
        text-decoration: none;
    }

    .nav-logo:hover {
        background: transparent !important;
        padding-left: 0 !important;
        border-left: none !important;
    }

    .nav-logo-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, var(--accent-oak), var(--accent-honey));
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-primary);
        font-weight: 700;
        color: var(--white);
        font-size: 1rem;
        letter-spacing: 1px;
        box-shadow: 0 4px 15px rgba(200, 155, 60, 0.35);
    }

    .nav-logo-text {
        display: flex;
        flex-direction: column;
    }

    .nav-logo-name {
        font-family: var(--font-primary);
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--white);
        letter-spacing: 2.5px;
    }

    .nav-logo-tagline {
        font-size: 0.58rem;
        color: var(--accent-honey);
        letter-spacing: 1.5px;
        text-transform: uppercase;
        font-weight: 500;
        margin-top: 2px;
    }

    .nav-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, var(--accent-honey), rgba(166, 124, 82, 0.2), transparent);
        margin: 24px 0;
    }

    /* Menu Footer */
    .nav-menu-footer {
        width: 100%;
        padding: 0 40px;
        margin-top: auto;
    }

    .nav-contact-info {
        margin-bottom: 20px;
    }

    .nav-contact-info p {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 6px;
        letter-spacing: 0.5px;
    }

    .nav-social {
        display: flex;
        gap: 12px;
    }

    .nav-social a {
        width: 40px;
        height: 40px;
        background: rgba(166, 124, 82, 0.15);
        border: 1px solid rgba(166, 124, 82, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-honey);
        text-decoration: none;
        font-size: 0.75rem;
        font-weight: 600;
        transition: all 0.3s ease;
        padding: 0;
        border-left: none !important;
    }

    .nav-social a:hover {
        background: var(--accent-honey);
        border-color: var(--accent-honey);
        color: var(--text-heading);
        transform: translateY(-3px);
        padding-left: 0 !important;
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(47, 36, 30, 0.4);
        z-index: 1080;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 160px 0 100px;
    }

    .hero-content {
        max-width: 100%;
        padding-top: 0;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-glass-cards {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        margin-top: 56px;
        flex-wrap: wrap;
        gap: 16px;
    }

    .glass-card {
        flex: 1;
        min-width: 180px;
        padding: 20px 24px;
    }

    .hero-stats {
        gap: 40px;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* About Preview */
    .about-preview {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image-main {
        height: 450px;
    }

    .about-image-accent {
        width: 180px;
        height: 180px;
        bottom: -30px;
        right: -20px;
    }

    .about-image-accent .accent-number {
        font-size: 3rem;
    }

    /* Timeline */
    .timeline::before {
        left: 24px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 70px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-dot {
        left: 24px;
        width: 16px;
        height: 16px;
    }

    .timeline-content {
        max-width: 100%;
        padding: 28px;
    }

    .timeline-number {
        font-size: 2.5rem;
    }

    /* Product Detail */
    .product-detail {
        flex-direction: column;
        gap: 40px;
        padding: 60px 28px;
    }

    .product-detail-image {
        width: 100%;
        height: 420px;
    }

    .detail-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .gallery-item {
        height: 240px;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
        height: 320px;
    }

    /* Contact */
    .contact-section {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-form {
        padding: 40px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stats-item {
        padding: 32px 20px;
    }

    .stats-number {
        font-size: 2.8rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .footer-about {
        grid-column: span 2;
    }
}

/* ========================================
   MOBILE (max-width: 768px)
   ======================================== */

@media (max-width: 768px) {
    :root {
        --section-gap: 80px;
        --container-padding: 24px;
    }

    /* Navigation - Premium Mobile Panel */
    .navbar {
        padding: 16px 0;
        background: rgba(247, 243, 238, 0.98);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .navbar.scrolled {
        padding: 14px 0;
        box-shadow: 0 2px 20px rgba(47, 36, 30, 0.08);
    }

    .logo-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .logo-name {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .logo-tagline {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }

    .nav-links {
        width: 100%;
        right: 0;
        transform: translateX(100%);
        background: var(--text-heading);
    }

    .nav-menu-header {
        padding: 28px 24px 0;
    }

    .nav-links a {
        padding: 18px 24px;
        font-size: 0.8rem;
        letter-spacing: 2.5px;
    }

    .nav-links a:hover {
        padding-left: 32px;
    }

    .nav-links .nav-cta {
        margin: 20px 24px;
        padding: 16px 24px !important;
    }

    .nav-links .nav-cta:hover {
        padding-left: 24px !important;
    }

    .nav-menu-footer {
        padding: 0 24px;
    }

    /* Hero - Mobile Optimized */
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
        background-image: none;
    }

    .hero-bg {
        height: 100%;
        opacity: 0.3;
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(247, 243, 238, 0.98) 0%,
            rgba(247, 243, 238, 0.95) 100%
        );
    }

    .hero-content {
        text-align: center;
    }

    .hero-badge {
        margin-bottom: 28px;
        padding: 10px 20px;
    }

    .hero-badge span {
        font-size: 0.7rem;
    }

    .hero h1 {
        font-size: 2.4rem;
        line-height: 1.15;
        margin-bottom: 24px;
    }

    .hero h1 span::after {
        display: none;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        max-width: 100%;
        margin-bottom: 36px;
        line-height: 1.75;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 14px;
        margin-bottom: 48px;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 18px 32px;
    }

    /* Hero Stats - Vertical Stack */
    .hero-stats {
        flex-direction: column;
        gap: 24px;
        border-top: none;
        padding-top: 0;
        align-items: center;
    }

    .stat-item {
        display: flex;
        align-items: center;
        gap: 16px;
        width: 100%;
        max-width: 280px;
        padding: 20px 24px;
        background: var(--white);
        border: 1px solid var(--border-wood);
        border-radius: 12px;
        box-shadow: var(--shadow-soft);
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.72rem;
        text-align: left;
    }

    /* Glass Cards - Mobile Stack */
    .hero-glass-cards {
        flex-direction: column;
        margin-top: 40px;
        gap: 12px;
    }

    .glass-card {
        min-width: 100%;
        padding: 20px 24px;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        display: none;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 48px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Products - Mobile Cards */
    .products-grid {
        gap: 24px;
    }

    .product-card {
        border-radius: 16px;
    }

    .product-image {
        height: 280px;
    }

    .product-content {
        padding: 28px;
    }

    .product-content h3 {
        font-size: 1.4rem;
    }

    .product-features {
        gap: 8px;
    }

    .product-feature {
        padding: 6px 14px;
        font-size: 0.7rem;
    }

    /* About - Mobile */
    .about-preview {
        gap: 48px;
    }

    .about-image-main {
        height: 350px;
    }

    .about-image-accent {
        width: 140px;
        height: 140px;
        bottom: -20px;
        right: -10px;
    }

    .about-image-accent .accent-number {
        font-size: 2.4rem;
    }

    .about-image-accent .accent-text {
        font-size: 0.65rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-feature {
        gap: 16px;
    }

    .about-feature-icon {
        width: 52px;
        height: 52px;
    }

    .about-feature h4 {
        font-size: 1rem;
    }

    .about-feature p {
        font-size: 0.88rem;
    }

    /* Timeline - Mobile */
    .timeline::before {
        left: 16px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 56px;
    }

    .timeline-dot {
        left: 16px;
        width: 14px;
        height: 14px;
    }

    .timeline-content {
        padding: 24px;
    }

    .timeline-number {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .timeline-content h4 {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    /* Stats - Mobile */
    .stats-section {
        padding: 60px 0;
    }

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

    .stats-item {
        padding: 28px 24px;
    }

    .stats-number {
        font-size: 2.5rem;
    }

    /* CTA - Mobile */
    .cta-section {
        padding: 80px 0;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    /* Product Detail - Mobile */
    .product-detail {
        padding: 44px 18px;
        gap: 32px;
    }

    .product-detail-image {
        height: 280px;
        border-radius: 12px;
    }

    .product-detail-content h2 {
        font-size: 1.6rem;
    }

    .detail-list {
        gap: 11px;
    }

    .detail-list li {
        font-size: 0.9rem;
    }

    .product-detail-content > p {
        font-size: 1rem;
    }

    .detail-list li {
        font-size: 0.92rem;
        gap: 12px;
    }

    /* Gallery - Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-item {
        height: 260px;
        border-radius: 12px;
    }

    .gallery-item.large {
        grid-column: span 1;
        height: 300px;
    }

    .gallery-overlay {
        padding: 20px;
    }

    .gallery-overlay h4 {
        font-size: 1rem;
    }

    .gallery-overlay p {
        font-size: 0.8rem;
    }

    /* Contact - Mobile */
    .contact-section {
        gap: 48px;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .contact-info > p {
        font-size: 1rem;
    }

    .contact-item {
        gap: 16px;
        margin-bottom: 24px;
    }

    .contact-icon {
        width: 52px;
        height: 52px;
    }

    .contact-item h4 {
        font-size: 0.95rem;
    }

    .contact-item p {
        font-size: 0.88rem;
    }

    .contact-form {
        padding: 28px;
        border-radius: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 0.72rem;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .map-container {
        height: 300px;
        margin-top: 48px;
    }

    /* Footer - Mobile */
    .footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-about {
        grid-column: span 1;
        text-align: center;
    }

    .footer-about .logo {
        justify-content: center;
    }

    .footer-about p {
        font-size: 0.92rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h4 {
        margin-bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding-top: 24px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    /* Buttons - Mobile */
    .btn {
        padding: 16px 32px;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    /* Page Hero - Mobile */
    .page-hero {
        height: 50vh;
        min-height: 350px;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .page-hero-content p {
        font-size: 1rem;
    }
}

/* ========================================
   SMALL MOBILE (max-width: 480px)
   ======================================== */

@media (max-width: 480px) {
    :root {
        --section-gap: 64px;
        --container-padding: 20px;
    }

    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    p {
        font-size: 0.95rem;
    }

    /* Navigation */
    .nav-menu-header {
        padding: 24px 20px 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 16px 20px;
        letter-spacing: 1.5px;
    }

    .nav-links a:hover {
        padding-left: 28px;
    }

    .nav-links .nav-cta {
        margin: 0 20px;
        padding: 14px 24px !important;
    }

    .nav-menu-footer {
        padding: 0 20px;
    }

    /* Hero */
    .hero {
        padding: 100px 0 48px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-badge {
        padding: 8px 16px;
    }

    .hero-badge span {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }

    .hero-subtitle {
        font-size: 0.98rem;
    }

    .stat-item {
        padding: 16px 20px;
        max-width: 100%;
    }

    .stat-number {
        font-size: 1.9rem;
    }

    .stat-label {
        font-size: 0.68rem;
    }

    /* Products */
    .product-image {
        height: 240px;
    }

    .product-content {
        padding: 24px;
    }

    .product-content h3 {
        font-size: 1.25rem;
    }

    .product-feature {
        padding: 5px 12px;
        font-size: 0.65rem;
    }

    /* About */
    .about-image-main {
        height: 280px;
    }

    .about-image-accent {
        width: 120px;
        height: 120px;
    }

    .about-image-accent .accent-number {
        font-size: 2rem;
    }

    /* Gallery */
    .gallery-item {
        height: 220px;
    }

    .gallery-item.large {
        height: 260px;
    }

    /* Contact Form */
    .contact-form {
        padding: 24px;
    }

    /* Stats */
    .stats-item {
        padding: 24px 20px;
    }

    .stats-number {
        font-size: 2.2rem;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 1.6rem;
    }

    /* Footer */
    .footer {
        padding: 48px 0 24px;
    }

    .footer-column ul li {
        margin-bottom: 10px;
    }

    .footer-column ul a {
        font-size: 0.88rem;
    }
}

/* ========================================
   EXTRA SMALL (max-width: 375px)
   iPhone SE, Mini
   ======================================== */

@media (max-width: 375px) {
    :root {
        --container-padding: 16px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-badge {
        padding: 8px 14px;
    }

    .hero-badge span {
        font-size: 0.6rem;
    }

    .hero-subtitle {
        font-size: 0.92rem;
    }

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

    .stat-item {
        padding: 14px 16px;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .glass-card {
        padding: 16px 20px;
    }

    .glass-card h4 {
        font-size: 0.9rem;
    }

    .glass-card p {
        font-size: 0.8rem;
    }

    .product-image {
        height: 220px;
    }

    .product-content {
        padding: 20px;
    }

    .product-content h3 {
        font-size: 1.15rem;
    }

    .about-image-main {
        height: 250px;
    }

    .gallery-item {
        height: 200px;
    }

    .contact-form {
        padding: 20px;
    }
}

/* ========================================
   LARGE TABLET (768px - 900px)
   ======================================== */

@media (min-width: 769px) and (max-width: 900px) {
    .hero h1 {
        font-size: 2.6rem;
    }

    .hero-glass-cards {
        gap: 12px;
    }

    .glass-card {
        min-width: 160px;
        padding: 18px 20px;
    }

    .glass-card h4 {
        font-size: 0.92rem;
    }

    .glass-card p {
        font-size: 0.82rem;
    }

    .products-grid {
        gap: 24px;
    }

    .product-image {
        height: 320px;
    }

    .about-image-main {
        height: 400px;
    }

    .stats-grid {
        gap: 20px;
    }
}

/* ========================================
   LANDSCAPE MOBILE
   ======================================== */

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-content {
        max-width: 60%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-glass-cards {
        display: none;
    }
}

/* ========================================
   HIGH DPI / RETINA
   ======================================== */

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-bg,
    .page-hero {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .navbar,
    .mobile-toggle,
    .scroll-indicator,
    .hero-glass-cards {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .section {
        padding: 40px 0;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}
