/* 
 * ALOHA International School - Diamond Edition (Ultra-Luxury)
 * Focus: High-Impact Typography, Cinematic Layouts, and Immersive Experience
 */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Inter:wght@300;400;500;600;700;800&family=Noto+Sans+JP:wght@400;700;900&display=swap');

:root {
    /* Diamond Color Palette */
    --primary: #000000;          /* Pure Black - Ultimate Luxury */
    --primary-accent: #1a1a1a;   /* Dark Slate */
    --primary-light: #2563eb;    /* Blue - used in inner pages */
    --secondary: #10b981;        /* Emerald Green - used in inner pages */
    --accent: #c5a059;           /* Champagne Gold */
    --accent-light: #f59e0b;     /* Amber - used in inner pages */
    --accent-bright: #f1d299;
    --dark: #111111;             /* Dark text */
    --gray: #6b7280;             /* Medium gray text */
    --gray-light: #f3f4f6;       /* Light gray background */
    --white: #ffffff;
    --bg-light: #ffffff;
    --text-main: #111111;
    --text-muted: #666666;
    --rainbow-red: #ff4b5c;
    --rainbow-orange: #ff9f43;
    --rainbow-yellow: #feca57;
    --rainbow-green: #1dd1a1;
    --rainbow-blue: #54a0ff;
    --rainbow-purple: #5f27cd;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-sharp: 0px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-diamond: 0 50px 100px -20px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-diamond: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);

    /* Spacing */
    --section-padding: 100px 0;
}

/* Base Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Typography Diamond */
h1, h2, h3 { font-family: 'Syne', 'Noto Sans JP', sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: -0.04em; }

.section-badge {
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 30px;
}

.section-badge::before {
    content: '';
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--rainbow-red), var(--rainbow-orange), var(--rainbow-yellow), var(--rainbow-green), var(--rainbow-blue));
    border-radius: 10px;
}

.section-title {
    font-size: clamp(3rem, 10vw, 7rem);
    margin-bottom: 40px;
    color: var(--primary);
    line-height: 0.9;
}

/* Diamond Buttons */
.btn-diamond {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 25px 50px;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: var(--transition-diamond);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.btn-diamond::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0; height: 100%;
    background: var(--accent);
    transition: var(--transition-diamond);
    z-index: -1;
}

.btn-diamond:hover { color: var(--primary); }
.btn-diamond:hover::before { width: 100%; }

/* Navbar Diamond */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 28px 0;
    z-index: 1000;
    transition: var(--transition-diamond);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* Navbar on inner pages (no dark hero behind it) */
.navbar.navbar-solid {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    border-bottom: 1px solid #eeeeee;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.navbar.navbar-solid .nav-links a,
.navbar.scrolled .nav-links a {
    color: var(--primary) !important;
}
.navbar.navbar-solid .nav-links .btn-diamond,
.navbar.scrolled .nav-links .btn-diamond {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

.navbar.scrolled {
    padding: 16px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.09);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-diamond);
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.1));
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.navbar.scrolled .logo-img {
    height: 48px;
}

.navbar-brand a { 
    display: flex; 
    align-items: center; 
    opacity: 1 !important;
    visibility: visible !important;
}

.nav-links { display: flex; gap: 32px; align-items: center; list-style: none; padding: 0; margin: 0; }
.nav-links li { list-style: none; }
.nav-links a { font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary) !important; position: relative; text-decoration: none; white-space: nowrap; }
.nav-links a:not(.btn-diamond)::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0; width: 0; height: 2px;
    background: var(--accent);
    transition: var(--transition-diamond);
}
.nav-links a:not(.btn-diamond):hover::after { width: 100%; }

/* Luxury Nav Button */
.nav-links .btn-diamond {
    background: transparent !important;
    border: 1px solid var(--primary) !important;
    color: var(--primary) !important;
    padding: 12px 25px !important;
    border-radius: 0px;
    transition: var(--transition-diamond);
    margin-left: 20px;
}

.nav-links .btn-diamond:hover {
    background: var(--primary) !important;
    color: var(--white) !important;
}

.navbar.scrolled .nav-links .btn-diamond {
    border-color: var(--primary) !important;
}

/* Hero Diamond - Cinematic Full Background */
.hero-diamond {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero-diamond::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.hero-bg-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Syne', sans-serif;
    font-size: 30vw;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
}

.hero-grid {
    display: block; /* Mudança para layout centralizado ou focado no texto */
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-text-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-title { 
    font-size: clamp(2.5rem, 5vw, 5rem); 
    margin-bottom: 50px; 
    color: var(--white);
    text-align: center;
    width: 100%;
}

.hero-title span { display: block; text-align: center; }

.hero-title .outline {
    color: transparent;
    -webkit-text-stroke: 1px var(--white);
}

.hero-title .rainbow-text {
    background: linear-gradient(to right, var(--rainbow-red), var(--rainbow-orange), var(--rainbow-yellow), var(--rainbow-green), var(--rainbow-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-desc {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 50px;
}

/* navbar sempre com texto escuro */

/* Footer admin buttons — hidden on mobile */
@media (max-width: 1024px) {
    .footer-admin-btns { display: none !important; }
}

/* Immersive Feature Section */
.immersive-section {
    padding: 200px 0;
    background: var(--primary);
    color: var(--white);
}

.immersive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 150px;
    align-items: center;
}

.immersive-img-box {
    position: relative;
    height: 700px;
}

.luxury-frame {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: var(--white);
    box-shadow: var(--shadow-diamond);
}

.luxury-frame::before {
    content: '';
    position: absolute;
    top: -10px; left: -10px; right: 10px; bottom: 10px;
    border: 2px solid var(--rainbow-orange);
    z-index: -1;
}

.luxury-frame::after {
    content: '';
    position: absolute;
    top: 10px; left: 10px; right: -10px; bottom: -10px;
    border: 2px solid var(--rainbow-blue);
    z-index: -1;
}

.immersive-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center bottom;
    transition: var(--transition-diamond);
}

.luxury-frame:hover .immersive-img {
    transform: scale(1.02);
}

.immersive-content { padding-right: 100px; }
.immersive-title { font-size: 5rem; color: var(--white); margin-bottom: 40px; }
.immersive-desc { font-size: 1.4rem; opacity: 0.6; margin-bottom: 50px; font-weight: 300; }

/* Magazine Layout Section */
.magazine-section {
    padding: 200px 0;
}

.magazine-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.mag-item-1 { grid-column: 1 / 8; height: 800px; }
.mag-item-2 { grid-column: 9 / 13; height: 500px; margin-top: 150px; }
.mag-item-3 { grid-column: 2 / 6; height: 600px; margin-top: -100px; }

.mag-card {
    position: relative;
    overflow: hidden;
    background: var(--primary); /* Fundo escuro para garantir contraste se a imagem falhar */
}

.mag-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition-diamond);
    opacity: 0.85; /* Leve transparência para o fundo escuro ajudar no contraste */
}

.mag-card:hover img { transform: scale(1.05); opacity: 0.7; }

.mag-overlay {
    position: absolute;
    inset: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    color: var(--white);
    z-index: 2;
    pointer-events: none;
}

.mag-overlay h3 { margin-bottom: 10px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.mag-overlay p { text-shadow: 0 1px 5px rgba(0,0,0,0.5); }

/* Stats Diamond */
.stats-diamond {
    padding: 150px 0;
    border-top: 1px solid #eee;
}

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

.stat-diamond-num { font-family: 'Syne', sans-serif; font-size: 6rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-diamond-label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 4px; color: var(--accent); margin-top: 20px; display: block; }

/* Footer Diamond */
.footer-diamond {
    background: var(--primary);
    padding: 150px 0 80px;
    color: var(--white);
}

.footer-diamond-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 100px;
}

.footer-diamond-title { font-size: 1rem; margin-bottom: 50px; color: var(--accent); letter-spacing: 3px; }
.footer-diamond-links li { margin-bottom: 25px; }
.footer-diamond-links a { color: rgba(255,255,255,0.4); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.footer-diamond-links a:hover { color: var(--white); padding-left: 10px; }

/* Page Loader Diamond */
.loader-diamond {
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    transition: clip-path 1.2s cubic-bezier(0.85, 0, 0.15, 1);
    clip-path: circle(150% at 50% 50%);
}
.loader-diamond.hidden { clip-path: circle(0% at 50% 50%); }
.loader-text { font-family: 'Syne', sans-serif; font-size: 5rem; color: var(--white); font-weight: 800; letter-spacing: -5px; }

/* Section Padding (inner pages) */
.section-padding { padding: var(--section-padding); }

/* Section Header */
.section-header { text-align: center; margin-bottom: 60px; }
.section-title span { color: var(--primary-light); }
.section-desc { color: var(--gray); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* Page Hero - inner pages */
.page-hero {
    background: url('../images/base.png') center center / cover no-repeat;
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    pointer-events: none;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero-content h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.page-hero-content > p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--white); }

.breadcrumb i {
    color: rgba(255,255,255,0.3);
    font-size: 0.65rem;
}

.breadcrumb span {
    color: var(--accent);
}

/* Body offset for inner pages (fixed navbar) */
body.inner-page { padding-top: 0; }

/* ═══════════════════════════════════════════════════════
   HAMBURGER + MOBILE MENU
═══════════════════════════════════════════════════════ */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.nav-hamburger span {
    display: block;
    width: 26px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1998;
    opacity: 0;
    transition: opacity 0.3s;
}
.mobile-menu-overlay.open { opacity: 1; }

.mobile-menu {
    position: fixed;
    top: 0; right: -105%;
    width: min(320px, 100vw); height: 100%;
    background: #fff;
    z-index: 1999;
    padding: 28px 24px;
    display: flex; flex-direction: column;
    gap: 0;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.18);
    overflow-y: auto;
}
.mobile-menu.open { right: 0; }

/* Full-screen menu on small phones */
@media (max-width: 480px) {
    .mobile-menu {
        width: 100vw;
        left: 0; right: auto;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
        box-shadow: none;
    }
    .mobile-menu.open {
        transform: translateX(0);
        right: auto;
    }
    .mobile-menu-overlay { display: none !important; }
    .mobile-menu-close {
        align-self: flex-end;
        position: absolute;
        top: 20px; right: 20px;
    }
    .mobile-menu-logo { justify-content: flex-start; }
    .mobile-nav a { font-size: 1.1rem; padding: 18px 20px; }
    .mobile-nav a.mobile-cta { padding: 20px; font-size: 1rem; }
}

.mobile-menu-close {
    align-self: flex-end;
    background: #f3f4f6;
    border: none;
    width: 38px; height: 38px;
    border-radius: 50%;
    font-size: 1rem;
    color: #374151;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    transition: background 0.2s;
}
.mobile-menu-close:hover { background: #e5e7eb; }

.mobile-menu-logo {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f3f4f6;
    text-align: center;
}
.mobile-menu-logo img { height: 48px; width: auto; }
.mobile-menu-logo span { font-size: 0.82rem; font-weight: 800; color: #1a1d2e; line-height: 1.3; }

.mobile-nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-nav a {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    padding: 15px 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s;
    text-align: center;
}
.mobile-nav a i { width: 22px; text-align: center; color: #9ca3af; font-size: 0.9rem; transition: color 0.2s; }
.mobile-nav a:hover { background: #f3f4f6; color: #1a1d2e; }
.mobile-nav a:hover i { color: #667eea; }
.mobile-nav a.mobile-cta {
    margin-top: 16px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    justify-content: center;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 18px 16px;
}
.mobile-nav a.mobile-cta i { color: rgba(255,255,255,0.8); }
.mobile-nav a.mobile-cta:hover { opacity: 0.9; background: linear-gradient(135deg, #667eea, #764ba2); color: #fff; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — SMART TV  (1920px+)
═══════════════════════════════════════════════════════ */
@media (min-width: 1920px) {
    .container { max-width: 1800px; padding: 0 80px; }
    .hero-title { font-size: clamp(5rem, 8vw, 11rem); }
    .immersive-title { font-size: 6rem; }
    .stat-diamond-num { font-size: 8rem; }
    .footer-diamond-grid { gap: 120px; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — LAPTOP / WIDE TABLET  (max 1400px)
═══════════════════════════════════════════════════════ */
@media (max-width: 1400px) {
    .container { padding: 0 40px; }
    .immersive-grid { gap: 80px; }
    .footer-diamond-grid { gap: 60px; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET LANDSCAPE  (max 1200px)
═══════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .container { padding: 0 32px; }
    .immersive-section { padding: 120px 0; }
    .immersive-grid { gap: 60px; }
    .immersive-img-box { height: 550px; }
    .immersive-content { padding-right: 40px; }
    .immersive-title { font-size: 3.5rem; }
    .magazine-section { padding: 120px 0; }
    .stats-diamond { padding: 100px 0; }
    .stats-diamond-grid { gap: 40px; }
    .stat-diamond-num { font-size: 4.5rem; }
    .footer-diamond { padding: 100px 0 60px; }
    .footer-diamond-grid { gap: 40px; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET PORTRAIT  (max 1024px)
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    :root { --section-padding: 70px 0; }
    .container { padding: 0 24px; }

    /* Navbar — hide links, show hamburger */
    .nav-hamburger { display: flex !important; }
    .nav-links { display: none !important; }

    /* Hero */
    .hero-grid { grid-template-columns: 1fr; text-align: center; width: 100%; overflow: hidden; }
    .hero-text-box { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; }
    .hero-image-wrapper { height: 50vh; margin-top: 40px; }
    .hero-title { font-size: clamp(2rem, 7vw, 4rem); text-align: center; width: 100%; word-break: break-word; }
    .hero-title span { text-align: center; }
    .hero-desc { font-size: 0.95rem; margin: 0 auto 40px; text-align: center; width: 100%; padding: 0 10px; }
    .hero-actions { display: flex; justify-content: center; width: 100%; }

    /* Immersive */
    .immersive-section { padding: 80px 0; }
    .immersive-grid { grid-template-columns: 1fr; gap: 50px; }
    .immersive-content { padding-right: 0; text-align: center; }
    .immersive-img-box { height: 420px; }
    .immersive-title { font-size: 3rem; }
    .immersive-desc { font-size: 1.1rem; }

    /* Magazine */
    .magazine-section { padding: 80px 0; }
    .magazine-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .mag-item-1 { grid-column: 1 / 3; height: 420px; }
    .mag-item-2 { grid-column: 1 / 2; height: 320px; margin-top: 0; }
    .mag-item-3 { grid-column: 2 / 3; height: 320px; margin-top: 0; }

    /* Stats */
    .stats-diamond { padding: 80px 0; }
    .stats-diamond-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .stat-diamond-num { font-size: 4rem; }

    /* Footer */
    .footer-diamond { padding: 80px 0 50px; }
    .footer-diamond-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

    /* Page hero */
    .page-hero { padding: 120px 0 60px; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE LARGE  (max 768px)
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    :root { --section-padding: 55px 0; }
    .container { padding: 0 18px; }

    /* Navbar — normal layout, hamburger visible */
    .navbar { padding: 16px 0; }
    .navbar .container { flex-wrap: nowrap; justify-content: space-between; align-items: center; }
    .nav-hamburger { display: flex !important; }
    .nav-links { display: none !important; }

    /* Hero */
    .hero-diamond { min-height: 100svh; padding-top: 80px; background-attachment: scroll; }
    .hero-title { font-size: clamp(1.5rem, 6.5vw, 3rem); margin-bottom: 24px; line-height: 1.1; }
    .section-badge { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; width: 100%; text-align: center; }
    .section-badge::before { margin: 0 auto; width: 40px; }
    .hero-desc { font-size: 0.9rem; margin-bottom: 30px; }
    .btn-diamond { padding: 18px 32px; font-size: 0.75rem; gap: 12px; }

    /* Immersive */
    .immersive-img-box { height: 300px; }
    .immersive-title { font-size: 2.2rem; }
    .immersive-desc { font-size: 1rem; }
    .luxury-frame { padding: 12px; }

    /* Magazine */
    .magazine-grid { grid-template-columns: 1fr; gap: 16px; }
    .mag-item-1, .mag-item-2, .mag-item-3 { grid-column: 1 / 2; height: 260px; margin-top: 0; }

    /* Stats */
    .stats-diamond-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-diamond-num { font-size: 3rem; }
    .stat-diamond-label { font-size: 0.6rem; }

    /* Footer */
    .footer-diamond-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-diamond { padding: 60px 0 40px; }
    .footer-diamond-title { margin-bottom: 24px; }
    .footer-diamond-links li { margin-bottom: 16px; }

    /* Section titles */
    .section-title { font-size: clamp(2rem, 8vw, 3.5rem); margin-bottom: 24px; }
    .section-header { margin-bottom: 40px; }

    /* Page hero */
    .page-hero { padding: 100px 0 50px; }
    .page-hero-content h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE SMALL  (max 480px)
═══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    :root { --section-padding: 44px 0; }
    .container { padding: 0 14px; }

    .logo-img { height: 40px; }
    .navbar.scrolled .logo-img { height: 36px; }

    /* Nav links — hide them, keep hamburger visible */
    .nav-hamburger { display: flex !important; }
    .nav-links { display: none !important; }

    .hero-title { font-size: clamp(1.2rem, 6vw, 2.2rem); word-break: break-word; width: 100%; }
    .hero-desc { font-size: 0.88rem; }

    .stats-diamond-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-diamond-num { font-size: 2.4rem; }

    .magazine-grid { gap: 12px; }
    .mag-item-1, .mag-item-2, .mag-item-3 { height: 220px; }

    .immersive-img-box { height: 240px; }
    .immersive-title { font-size: 1.8rem; }

    .footer-diamond-grid { gap: 24px; }
    .page-hero-content h1 { font-size: clamp(1.5rem, 7vw, 2rem); }
}
