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

:root {
    --amber: #F0B400;
    --amber-dark: #D9A300;
    --amber-light: #FCEABB;
    --amber-pale: #FFFDF5;
    --amber-glow: rgba(240, 180, 0, 0.4);
    
    --white: #FFFFFF;
    --off-white: #FAFAF7;
    --gray-100: #F2F2EE;
    --gray-200: #E0E0D8;
    --gray-400: #9E9E94;
    --gray-500: #6E6E66;
    --gray-600: #4A4A44;
    --gray-700: #333330;
    --gray-900: #1A1A17;
    
    --text: #1A1A17;
    --text2: #4A4A44;
    --muted: #6E6E66;
    
    --font: 'Plus Jakarta Sans', sans-serif;
    --font-cursive: 'Caveat', cursive;
    
    --max-w: 1140px;
    --section-py: 72px;
    --shadow-s: 0 2px 10px rgba(0,0,0,.04);
    --shadow-m: 0 8px 32px rgba(0,0,0,.06);
    --shadow-glow: 0 0 50px rgba(240, 180, 0, 0.35);
    --tr: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--tr); }
ul { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ===== SPLASH SCREEN ===== */
.optics-splash {
    position: fixed; inset: 0; z-index: 99999;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
    display: flex; align-items: center; justify-content: center;
    animation: splashFade 0.8s ease-in-out 4s forwards;
    overflow: hidden;
}
.splash-content {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: flex; align-items: center; justify-content: center;
}
.splash-content::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 150vw; max-width: 600px; height: 300px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    opacity: 0;
    animation: bubbleAnim 2.8s ease-in-out 1s forwards;
}
.splash-t1, .splash-t2 {
    position: absolute;
    white-space: nowrap;
    font-size: clamp(2.5rem, 10vw, 6rem);
    font-weight: 800; letter-spacing: -2px;
}
.splash-t1 {
    color: var(--amber-dark);
    filter: blur(8px); opacity: 0;
    animation: mutnoAnim 1.5s ease-in-out 1s forwards;
}
.splash-t2 {
    color: var(--gray-900);
    opacity: 0; filter: blur(15px);
    animation: progledajteAnim 1.5s ease-out 2.5s forwards;
}

@keyframes mutnoAnim {
    0% { opacity: 0; filter: blur(12px); transform: scale(1.1); }
    30% { opacity: 0.85; filter: blur(3px); transform: scale(1); }
    70% { opacity: 0.85; filter: blur(3px); transform: scale(1); }
    100% { opacity: 0; filter: blur(12px); transform: scale(0.9); }
}
@keyframes progledajteAnim {
    0% { opacity: 0; filter: blur(16px); transform: scale(1.1); }
    30% { opacity: 1; filter: blur(0px); transform: scale(1); }
    80% { opacity: 1; filter: blur(0px); transform: scale(1); }
    100% { opacity: 0; filter: blur(12px); transform: scale(0.9); }
}
@keyframes bubbleAnim {
    0% { opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}
@keyframes splashFade {
    0% { opacity: 1; backdrop-filter: blur(5px); }
    100% { opacity: 0; backdrop-filter: blur(0px); visibility: hidden; pointer-events: none; }
}

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--gray-200); box-shadow: 0 4px 30px rgba(0,0,0,0.04); transition: all var(--tr); }
.navbar.scrolled { box-shadow: var(--shadow-m); background: var(--white); }
.nav-container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.25rem; letter-spacing: -1px; color: var(--gray-900); }
.nav-logo-img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; box-shadow: 0 2px 8px rgba(0,0,0,.1); }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 16px; font-size: .9rem; font-weight: 600; color: var(--muted); border-radius: 8px; transition: all var(--tr); }
.nav-link:hover { color: var(--text); background: var(--amber-pale); }
.nav-link.active { color: var(--gray-900); background: var(--amber-light); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; border-radius: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--tr); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 80px 24px 60px;
    position: relative; overflow: hidden;
    background: var(--white);
    border-bottom: 6px solid var(--amber);
}

/* Animated Wavy Strings Background */
.hero-bg {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 0;
    overflow: hidden; background: var(--white);
}
.wavy-strings {
    position: absolute;
    width: 200%; height: 100%;
    top: 0; left: 0;
}
.s1 { animation: moveWave 24s linear infinite; }
.s2 { animation: moveWave 32s linear infinite reverse; }
.s3 { animation: moveWave 18s linear infinite; }
.s4 { animation: moveWave 38s linear infinite reverse; }
.s5 { animation: moveWave 28s linear infinite; }

@keyframes moveWave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-content { position: relative; z-index: 2; max-width: 680px; }

/* Radiating Logo */
.hero-logo-wrap { position: relative; display: inline-block; margin-bottom: 32px; animation: fadeUp .8s ease-out; }
.hero-glow-1, .hero-glow-2 {
    position: absolute; inset: -16px; border-radius: 50%;
    background: radial-gradient(circle, var(--amber-glow) 0%, transparent 70%);
    z-index: 0; animation: radiate 3s infinite ease-out;
}
.hero-glow-2 { animation-delay: 1.5s; inset: -32px; background: radial-gradient(circle, rgba(240,180,0,0.2) 0%, transparent 70%); }
@keyframes radiate {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

.hero-logo {
    width: 170px; height: 170px; border-radius: 50%;
    box-shadow: 0 0 0 4px var(--white), var(--shadow-glow);
    background: white;
    transition: transform .4s ease;
    position: relative; z-index: 1;
}
.hero-logo:hover { transform: scale(1.05); }

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800; margin-bottom: 8px; letter-spacing: -1px;
    animation: fadeUp .8s ease-out .15s both; color: var(--gray-900);
}
.highlight { color: var(--amber); }

.hero-subtitle {
    font-family: var(--font-cursive);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--amber-dark); font-weight: 700;
    margin-bottom: 12px; letter-spacing: 0.5px;
    animation: fadeUp .8s ease-out .25s both;
}

.hero-tagline {
    font-size: 1rem; color: var(--muted); margin-bottom: 40px;
    letter-spacing: .5px; font-weight: 500;
    animation: fadeUp .8s ease-out .35s both;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeUp .8s ease-out .45s both; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 14px;
    font-size: .95rem; font-weight: 700;
    cursor: pointer; border: none; transition: all var(--tr);
}
.btn-primary { background: var(--amber); color: var(--gray-900); box-shadow: 0 4px 16px rgba(240,180,0,.3); }
.btn-primary:hover { background: var(--amber-dark); box-shadow: 0 6px 24px rgba(240,180,0,.4); transform: translateY(-2px); }
.btn-outline { background: var(--white); color: var(--text2); border: 1.5px solid var(--gray-200); }
.btn-outline:hover { border-color: var(--amber); background: var(--amber-pale); color: var(--gray-900); }
.ig-icon { width: 20px; height: 20px; }

/* ===== SECTION HEADERS ===== */
.section { padding: var(--section-py) 0; }
.section-alt { background: var(--off-white); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
    display: inline-block;
    font-size: .8rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--amber); margin-bottom: 12px;
}
.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800; letter-spacing: -1px; color: var(--gray-900);
}

.section-subtitle { text-align: center; color: var(--muted); font-size: 1rem; margin-top: -36px; margin-bottom: 48px; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-content p { margin-bottom: 24px; color: var(--text2); line-height: 1.8; font-size: 1.05rem; }
.about-lead { font-size: 1.25rem !important; color: var(--gray-900) !important; font-weight: 600; margin-bottom: 32px !important; letter-spacing: -.3px; }

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    position: relative;
    padding: 24px 0;
}
.about-images::before {
    content: '';
    position: absolute;
    width: 80%; height: 80%;
    background: rgba(240, 180, 0, 0.12);
    border-radius: 50%;
    z-index: -1;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
}
.about-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}
.img-1 {
    transform: translateY(-20px);
}
.img-2 {
    transform: translateY(20px);
}
.about-images:hover .img-1 { transform: translateY(-26px) scale(1.02); box-shadow: 0 25px 50px rgba(0,0,0,0.12); }
.about-images:hover .img-2 { transform: translateY(14px) scale(1.02); box-shadow: 0 25px 50px rgba(0,0,0,0.12); }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: 24px; padding: 36px 24px; text-align: center;
    transition: all var(--tr); position: relative; overflow: hidden;
    display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
}
.service-card:hover { border-color: var(--amber); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.service-num {
    display: inline-block; font-size: .85rem; font-weight: 800;
    color: var(--amber-dark); letter-spacing: 1px; margin-bottom: 20px;
    background: var(--amber-pale); padding: 6px 16px; border-radius: 20px;
}
.service-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; color: var(--gray-900); }
.service-card p { font-size: .95rem; color: var(--muted); line-height: 1.6; display: flex; align-items: center; justify-content: center; min-height: 48px; }

/* ===== INSTAGRAM WIDGET ===== */
.instagram-widget-wrap { margin-bottom: 48px; min-height: 200px; }
.gallery-cta { text-align: center; }

/* ===== LOCATION & HOURS ===== */
.location-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; }
.map-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-s); }
.map-embed { width: 100%; height: 380px; }
.map-embed iframe { width: 100%; height: 100%; display: block; }
.map-info { padding: 24px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--gray-100); }
.map-address { font-weight: 600; font-size: 1rem; color: var(--gray-900); }
.map-directions { font-size: .95rem; font-weight: 700; color: var(--amber-dark); }
.map-directions:hover { color: var(--amber); }

.hours-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 24px; padding: 40px; box-shadow: var(--shadow-s); }
.hours-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 32px; color: var(--gray-900); }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--gray-100); }
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 600; font-size: 1rem; color: var(--gray-600); }
.hours-time { font-weight: 700; font-size: 1rem; color: var(--gray-900); font-variant-numeric: tabular-nums; }
.hours-closed { color: var(--amber-dark); }
.open-status { margin-top: 32px; padding: 16px 24px; border-radius: 16px; font-size: .95rem; font-weight: 700; text-align: center; }
.open-status.open { background: var(--amber-pale); color: var(--amber-dark); border: 1px solid rgba(240,180,0,.2); }
.open-status.closed { background: var(--off-white); color: var(--gray-500); border: 1px solid var(--gray-200); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.contact-card {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; padding: 40px 24px;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: 24px; transition: all var(--tr); cursor: pointer;
    box-shadow: var(--shadow-s);
}
.contact-card:hover { border-color: var(--amber); background: var(--amber-pale); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.contact-card svg { width: 40px; height: 40px; color: var(--amber); margin-bottom: 20px; stroke-width: 1.8; }
.contact-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; color: var(--gray-900); }
.contact-card p { font-size: .95rem; font-weight: 500; color: var(--muted); }

/* ===== FOOTER ===== */
.footer { background: var(--off-white); color: var(--gray-600); padding: var(--section-py) 0 40px; border-top: 1px solid var(--gray-200); }
.footer-content { display: flex; align-items: center; justify-content: space-between; padding-bottom: 40px; border-bottom: 1px solid var(--gray-200); }
.footer-brand { display: flex; align-items: center; gap: 20px; }
.footer-logo { width: 56px; height: 56px; border-radius: 14px; }
.footer-brand-text { display: flex; flex-direction: column; }
.footer-name { font-weight: 800; font-size: 1.3rem; color: var(--gray-900); letter-spacing: -1px; }
.footer-tagline { font-family: var(--font-cursive); font-weight: 700; font-size: 1.3rem; color: var(--amber-dark); margin-top: -2px; }
.footer-socials { display: flex; gap: 12px; }
.social-link {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    border-radius: 14px; background: var(--white); border: 1px solid var(--gray-200);
    transition: all var(--tr); color: var(--amber);
}
.social-link:hover { background: var(--amber); color: var(--white); border-color: var(--amber); transform: translateY(-2px); }
.social-link svg { width: 22px; height: 22px; }
.footer-bottom { text-align: center; padding-top: 32px; font-size: .9rem; font-weight: 600; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .location-grid { display: flex; flex-direction: column-reverse; gap: 48px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-images { max-width: 500px; margin: 0 auto; }
}
@media (max-width: 768px) {
    :root { --section-py: 56px; }
    .nav-toggle { display: flex; }
    .nav-menu {
        position: absolute; top: 72px; left: 0; right: 0;
        height: calc(100vh - 72px);
        background: var(--white);
        display: flex; flex-direction: column; padding: 40px 24px; gap: 12px;
        transform: translateY(-120%); opacity: 0;
        transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .3s ease, visibility .4s;
        overflow-y: auto;
        visibility: hidden; pointer-events: none;
    }
    .nav-menu.active { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
    .nav-link { padding: 16px; font-size: 1.2rem; width: 100%; text-align: center; border-radius: 12px; }
    .hero { min-height: auto; padding: 100px 20px 60px; }
    .hero-logo { width: 140px; height: 140px; }
    .footer-content { flex-direction: column; gap: 32px; text-align: center; }
    .footer-brand { flex-direction: column; gap: 16px; }
    
    /* About Us Mobile Tweaks */
    .about-content p:nth-child(n+3) { display: none; }
    .about-content p { font-size: 0.85rem; }
    .about-lead { font-size: 1rem !important; margin-bottom: 16px !important; }
    
    /* Overlapping About Images */
    .about-images { display: flex; padding: 0 16px; gap: 0; align-items: center; justify-content: center; margin-top: 24px; }
    .about-img { flex: none; width: 60%; }
    .img-1 { transform: translateX(15px) translateY(-10px); z-index: 2; border: 4px solid var(--white); }
    .img-2 { transform: translateX(-15px) translateY(10px); z-index: 1; border: 4px solid var(--white); }
    .about-images:hover .img-1 { transform: translateX(15px) translateY(-15px); }
    .about-images:hover .img-2 { transform: translateX(-15px) translateY(5px); }
    
    /* Location & Hours Mobile Tweaks */
    .hours-card { padding: 24px 16px; }
    .hours-card h3 { font-size: 1.1rem; margin-bottom: 20px; }
    .hours-day, .hours-time, .map-address, .map-directions { font-size: 0.85rem; }
    .open-status { padding: 10px 16px; margin-top: 16px; font-size: 0.8rem; border-radius: 12px; }
    .map-embed { height: 200px; }
}
@media (max-width: 480px) {
    .section-title { font-size: 1.8rem; }
    .hero-title { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; align-items: center; gap: 16px; }
    .btn { justify-content: center; width: 100%; max-width: 260px; }
    
    .gallery-cta .btn { max-width: none; width: auto; font-size: 0.85rem; padding: 12px 16px; }
    
    .services-grid, .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    
    .service-card { padding: 24px 12px; }
    .service-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
    .service-card p { font-size: 0.8rem; min-height: auto; }
    .service-num { padding: 4px 12px; font-size: 0.75rem; margin-bottom: 12px; }
    
    .contact-card { padding: 24px 12px; }
    .contact-card svg { width: 32px; height: 32px; margin-bottom: 12px; }
    .contact-card h3 { font-size: 0.9rem; }
    .contact-card p { font-size: 0.8rem; }
    
    .hours-row { padding: 12px 0; flex-direction: column; gap: 8px; align-items: flex-start; }
}
