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

/*
Theme Name: Ntono Digital V2
Theme URI: https://ntono.com
Author: Ntono Digital
Author URI: https://ntono.com
Description: A lightweight, high-performance custom theme designed for Oxygen Builder. No bloat, no dependencies.
Version: 2.7
Text Domain: ntono
*/

/* 
 * CRITICAL: This file is mostly ignored by Oxygen, 
 * but ensures WordPress recognizes the theme.
 * Global CSS variables should be defined in Oxygen > Global Styles 
 * or a separate code block, but we can set defaults here.
 */

:root {
    --bg-rich-black: #0B090A;
    --text-platinum: #E0E1DD;
    --accent-blood: #660708;
    --accent-saffron: #FAA916;
}

body {
    background-color: var(--bg-rich-black);
    color: var(--text-platinum);
    font-family: 'Inter', sans-serif;
}

/* Global Image Reset - Ensure images don't break containers */
img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   Global Header (Ntono Standard)
   ========================================================================== */
.ntono-global-header {
    position: fixed;
    top: 1.5rem;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    padding: 0 2rem;
    pointer-events: none;
    /* Let clicks pass through empty space */
}

.ntono-header-pill {
    background: rgba(22, 22, 22, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    /* Add gap to ensure spacing even if nav is empty/small */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
    /* Re-enable clicks inside the pill */
    transition: all 0.3s ease;
}

/* Header Brand Logo */
.ntono-logo-link {
    text-decoration: none;
    flex-shrink: 0;
}

.ntono-logo-link .ntono-logo-text {
    margin-bottom: 0;
    font-size: 1.25rem;
    color: #fff;
    font-family: 'Inter', sans-serif;
    /* Fallback accent font */
    letter-spacing: -0.02em;
}

.ntono-logo-link .ntono-logo-text span {
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Header Navigation Menu */
.ntono-primary-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.ntono-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2.5rem;
}

.ntono-nav-list li {
    display: flex;
    align-items: center;
}

.ntono-nav-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.ntono-nav-list a:hover,
.ntono-nav-list .current-menu-item>a {
    color: #fff;
}

/* Dropdown Sub-menu */
.ntono-nav-list li {
    position: relative;
    /* Anchor for absolute positioned submenus */
}

.ntono-nav-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(22, 22, 22, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 200px;
    list-style: none;
    margin: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

    /* Animation defaults */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add an invisible bridge so hover doesn't break when moving mouse down */
.ntono-nav-list .sub-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

/* Show Sub-menu on parent hover */
.ntono-nav-list li.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(20px);
    /* 20px drop creates a nice floating gap */
}

/* Sub-menu items */
.ntono-nav-list .sub-menu li {
    display: block;
    /* Stack vertically */
    width: 100%;
}

.ntono-nav-list .sub-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    transition: all 0.2s ease;
    text-align: left;
}

.ntono-nav-list .sub-menu a:hover {
    color: var(--accent-saffron);
    background: rgba(255, 255, 255, 0.03);
    padding-left: 1.75rem;
    /* Slight indent on hover */
}

/* Add small indicator to parent item */
.ntono-nav-list li.menu-item-has-children>a {
    display: flex;
    align-items: center;
    gap: 0.125rem;
}

.ntono-nav-list li.menu-item-has-children>a::after {
    content: 'expand_more';
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1;
    opacity: 0.7;
    margin-top: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ntono-nav-list li.menu-item-has-children:hover>a::after {
    transform: rotate(180deg);
}

/* Disable submenus stacking infinitely right now, hide 3rd level just in case */
.ntono-nav-list .sub-menu .sub-menu {
    display: none !important;
}

/* Header Right Actions (CTA + Search) */
.ntono-header-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ntono-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--accent-saffron);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.ntono-cta-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.ntono-cta-btn .ntono-arrow {
    transition: transform 0.3s ease;
}

.ntono-cta-btn:hover .ntono-arrow {
    transform: translateX(4px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .ntono-primary-nav {
        display: none;
        /* Hide standard nav on mobile for now */
    }

    .ntono-header-pill {
        padding: 0.5rem 0.5rem 0.5rem 1rem;
    }

    .ntono-logo-link .ntono-logo-text {
        font-size: 1rem;
    }

    .ntono-cta-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    /* Hide the standalone search trigger on mobile — search lives in mobile menu */
    .ntono-search-trigger {
        display: none !important;
    }
}

/* ==========================================================================
   Home Page: Hero Section (B2B)
   ========================================================================== */
.ntono-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ntono-hero-section {
    position: relative;
    padding: 12rem 0 8rem;
    /* Large top padding to clear floating header */
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ntono-hero-bg-abstract {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(102, 7, 8, 0.15) 0%, rgba(11, 9, 10, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.ntono-hero-content {
    max-width: 800px;
}

.ntono-hero-kicker {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-saffron);
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 2px solid var(--accent-saffron);
}

.ntono-hero-title {
    font-family: var(--ntono-font-main);
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.ntono-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-platinum);
    line-height: 1.6;
    margin-bottom: 3.5rem;
    opacity: 0.8;
    max-width: 600px;
}

.ntono-hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Base Buttons */
.ntono-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ntono-btn-primary {
    background-color: var(--accent-saffron);
    color: #000;
    border: 1px solid var(--accent-saffron);
}

.ntono-btn-primary:hover {
    background-color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(250, 169, 22, 0.2);
}

.ntono-btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ntono-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.ntono-arrow {
    transition: transform 0.3s ease;
}

.ntono-btn:hover .ntono-arrow {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .ntono-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .ntono-hero-section {
        padding: 8rem 0 5rem;
        min-height: auto;
    }

    .ntono-hero-title {
        font-size: 2.25rem;
    }

    .ntono-hero-subtitle {
        font-size: 1.125rem;
    }

    .ntono-hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .ntono-btn {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   BOOKING / THANK YOU PAGE (Split Screen)
   ========================================= */
.ntono-booking-container {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    background-color: var(--bg-rich-black);
    overflow: hidden;
}

@media(min-width: 992px) {
    .ntono-booking-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* LEFT COL (Context) */
.booking-col-left {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.booking-content-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.ntono-label-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
    color: var(--accent-saffron);
}

.ntono-heading-xl {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
}

.ntono-lead-text {
    font-size: 1.125rem;
    color: var(--text-platinum);
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.ntono-lead-text .text-white {
    color: #fff;
    font-weight: 600;
    opacity: 1;
}

/* Visual Abstract Element */
.booking-visual-abstract {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 7, 8, 0.2) 0%, rgba(11, 9, 10, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Steps Indicator */
.booking-steps-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.4;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.step-item.completed,
.step-item.active {
    opacity: 1;
    color: #fff;
}

.step-item.completed {
    color: var(--accent-saffron);
}

.step-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.step-line.active {
    background: var(--accent-saffron);
}

/* RIGHT COL (Action) */
.booking-col-right {
    background: rgba(22, 22, 22, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card-booking {
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.ntono-heading-md {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
}

/* Skeleton Calendar (Placeholder) */
.calendar-skeleton {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skeleton-header {
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.skeleton-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.skeleton-day {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.25rem;
}

.skeleton-day:nth-child(2n) {
    background: rgba(255, 255, 255, 0.08);
}

.skeleton-footer {
    height: 20px;
    width: 50%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-top: 1rem;
}

/* ==========================================================================
   Global Footer (Ntono Standard)
   ========================================================================== */
.ntono-global-footer {
    background-color: var(--ntono-bg);
    color: var(--ntono-text-soft);
    padding: 5rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--ntono-font-main);
}

.ntono-footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ntono-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (max-width: 991px) {
    .ntono-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 767px) {
    .ntono-footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Col 1: Brand */
.ntono-logo-text {
    font-family: var(--ntono-font-accent);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.ntono-logo-text span {
    font-family: var(--ntono-font-main);
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    color: var(--ntono-text-soft);
}

.ntono-footer-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--ntono-text-soft);
}

.ntono-footer-socials {
    display: flex;
    gap: 1rem;
}

.ntono-footer-socials a {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.ntono-footer-socials a:hover {
    opacity: 1;
    color: var(--ntono-accent);
}

/* Col 2,3,4: Menus & Contact */
.ntono-footer-heading {
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.ntono-footer-links,
.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ntono-footer-links a,
.ntono-contact-list li,
.widget li,
.widget a {
    color: var(--ntono-text-soft);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.ntono-footer-links a:hover,
.widget a:hover {
    color: #fff;
}

/* Global Data Widget Styles */
.ntono-widget-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.ntono-widget-contact-item:last-child {
    margin-bottom: 0;
}

.ntono-widget-icon {
    font-size: 1.125rem;
    color: #6b7280;
    transform: translateY(2px);
    flex-shrink: 0;
    /* Prevents icon from morphing if text is long */
}

.ntono-widget-link {
    display: block;
    color: var(--text-platinum);
    opacity: 0.7;
    transition: color 0.3s ease, opacity 0.3s ease;
    word-break: break-all;
    text-decoration: none;
}

@media (min-width: 768px) {
    .ntono-widget-link {
        word-break: break-word;
    }
}

.ntono-widget-link:hover {
    color: #ffffff;
    opacity: 1;
}

.ntono-widget-text {
    color: var(--text-platinum);
    opacity: 0.7;
    margin: 0;
    line-height: 1.625;
}

.ntono-widget-section-social {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.ntono-social-link {
    color: #9ca3af;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ntono-social-link:hover {
    color: #ffffff;
}

/* Bottom Bar */
.ntono-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 1rem;
}

.ntono-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* System Ready Indicator */
.ntono-system-ready {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ntono-system-text {
    font-family: monospace;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
}

.ntono-pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--ntono-danger);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px var(--ntono-danger);
    animation: ntonoPulse 2s infinite;
}

@keyframes ntonoPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 7, 8, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(102, 7, 8, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(102, 7, 8, 0);
    }
}

/* =========================================
   Interactive Rocket (Footer) - Stitch Design
   ========================================= */

.ntono-footer-bottom-rocket {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 3rem;
    position: relative;
    z-index: 20;
}

.rocket-container {
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rocket-figure {
    position: relative;
    width: 12rem;
    /* 48 */
    height: 16rem;
    /* 64 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    animation: rocketIdle 3s ease-in-out infinite alternate;
}

@keyframes rocketIdle {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.rocket-main-body {
    width: 5rem;
    /* 20 */
    height: 10rem;
    /* 40 */
    background: linear-gradient(to bottom right, #e5e7eb, #9ca3af);
    border-radius: 50% 50% 40% 40%;
    position: relative;
    z-index: 20;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.rocket-body-highlight {
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
}

.rocket-window-outer {
    position: absolute;
    top: 2rem;
    width: 2rem;
    height: 2rem;
    background: rgba(11, 9, 10, 0.8);
    border-radius: 50%;
    border: 4px solid #d1d5db;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rocket-window-inner {
    width: 0.75rem;
    height: 0.75rem;
    background: rgba(250, 169, 22, 0.8);
    border-radius: 50%;
    animation: ntonoPulse 2s infinite;
}

.rocket-band {
    position: absolute;
    width: 100%;
    height: 0.25rem;
    background: rgba(107, 114, 128, 0.3);
}

.rocket-band.band-top {
    bottom: 2.5rem;
}

.rocket-band.band-bottom {
    bottom: 1.5rem;
}

.rocket-base {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1.5rem;
    background: rgba(11, 9, 10, 0.8);
    border-radius: 0 0 9999px 9999px;
    /* rounded-b-full */
}

/* Fins */
.rocket-fin-left,
.rocket-fin-right {
    position: absolute;
    bottom: 1rem;
    width: 2rem;
    height: 4rem;
    background-color: var(--accent-blood);
    z-index: 10;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

.rocket-fin-left {
    left: 1.5rem;
    border-radius: 9999px 0 0 9999px;
    /* rounded-l-full */
    transform: skewY(-12deg);
    transform-origin: bottom right;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.rocket-fin-right {
    right: 1.5rem;
    border-radius: 0 9999px 9999px 0;
    /* rounded-r-full */
    transform: skewY(12deg);
    transform-origin: bottom left;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.rocket-fin-center {
    position: absolute;
    bottom: 0;
    width: 2rem;
    height: 3rem;
    background-color: var(--bg-rich-black);
    border-radius: 0 0 0.5rem 0.5rem;
    z-index: 10;
    margin-bottom: -0.5rem;
}

/* Engine Flames */
.rocket-flame-outer {
    position: absolute;
    bottom: -4rem;
    width: 3rem;
    height: 6rem;
    background: linear-gradient(to top, transparent, var(--accent-saffron), var(--accent-blood));
    border-radius: 9999px;
    filter: blur(8px);
    animation: engineGlow 0.1s linear infinite alternate;
    transform-origin: top center;
    z-index: 0;
    opacity: 0.8;
}

.rocket-flame-inner {
    position: absolute;
    bottom: -2.5rem;
    width: 1.5rem;
    height: 3rem;
    background-color: white;
    border-radius: 9999px;
    filter: blur(12px);
    animation: engineGlow 0.1s linear infinite alternate;
    transform-origin: top center;
    z-index: 10;
}

@keyframes engineGlow {
    0% {
        transform: scaleY(1);
        opacity: 0.8;
    }

    100% {
        transform: scaleY(1.2);
        opacity: 1;
    }
}

/* Hover Tooltip */
.rocket-tooltip {
    position: absolute;
    top: -3.5rem;
    opacity: 0;
    white-space: nowrap;
    background: rgba(11, 9, 10, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(250, 169, 22, 0.3);
    color: var(--accent-saffron);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(250, 169, 22, 0.2);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.rocket-container:hover .rocket-tooltip {
    opacity: 1;
}

/* Smoke Particles */
.rocket-smoke-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.rocket-container:hover .rocket-smoke-container {
    opacity: 1;
}

.smoke-particle {
    position: absolute;
    border-radius: 50%;
    animation: smokeFloat 2s ease-out infinite;
}

.smoke-particle.particle-1 {
    width: 1rem;
    height: 1rem;
    background: rgba(255, 255, 255, 0.2);
    animation-delay: 0.1s;
    left: -15px;
}

.smoke-particle.particle-2 {
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.1);
    animation-delay: 0.3s;
}

.smoke-particle.particle-3 {
    width: 0.75rem;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    animation-delay: 0.5s;
    left: 15px;
}

@keyframes smokeFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(20px) scale(2);
        opacity: 0;
    }
}

.ntono-rocket-text {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 1.5rem;
    text-align: center;
    font-family: monospace;
    letter-spacing: 0.05em;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.rocket-container:hover .ntono-rocket-text {
    opacity: 1;
    color: #9ca3af;
}

/* Utility overrides for footer copyright text to match Stitch code */
.ntono-copyright {
    font-size: 0.75rem;
    color: #4b5563;
    width: 100%;
}

/* =========================================
   Home Page: The Problem (Bento Box)
   ========================================= */
.ntono-problem-section {
    padding: 8rem 0;
    position: relative;
}

.ntono-section-header {
    margin-bottom: 4rem;
}

.ntono-label-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
}

/* Utility text colors */
.ntono-danger-text {
    color: var(--accent-blood);
}

.ntono-saffron-text {
    color: var(--accent-saffron);
}

.text-white {
    color: #fff;
}

.text-gray {
    color: var(--text-platinum);
}

.ntono-heading-lg {
    font-family: var(--ntono-font-main);
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.ntono-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.ntono-bento-card {
    background: rgba(22, 22, 22, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.ntono-bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.ntono-bento-large {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.bento-card-bg-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at right center, rgba(102, 7, 8, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.bento-card-content {
    position: relative;
    z-index: 10;
}

.bento-metric-large {
    font-family: var(--ntono-font-main);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    text-shadow: 0 0 30px rgba(102, 7, 8, 0.5);
}

.bento-title-lg {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.bento-icon {
    font-size: 2.5rem;
    background: rgba(250, 169, 22, 0.1);
    padding: 1rem;
    border-radius: 1rem;
    display: inline-flex;
    margin-bottom: 1rem;
}

.bento-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.bento-desc {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

@media (max-width: 991px) {
    .ntono-bento-large {
        padding: 3rem;
    }

    .bento-metric-large {
        font-size: 4rem;
    }
}

@media (max-width: 767px) {
    .ntono-bento-grid {
        grid-template-columns: 1fr;
    }

    .ntono-bento-large {
        grid-column: span 1;
        padding: 2.5rem;
    }

    .ntono-heading-lg {
        font-size: 2.25rem;
    }
}

/* =========================================
   Core Theme: 404 Error Page
   ========================================= */

.ntono-404-main {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: max(800px, 100vh);
    padding-top: 8rem;
    padding-bottom: 5rem;
}

/* Background Effects */
.ntono-404-bg-fx {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.star-twinkle {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    animation: star-twinkle 4s ease-in-out infinite;
}

.star-1 {
    top: 15%;
    left: 15%;
    width: 4px;
    height: 4px;
}

.star-2 {
    top: 30%;
    right: 20%;
    width: 6px;
    height: 6px;
    opacity: 0.5;
    animation-delay: 0.3s;
}

.star-3 {
    bottom: 25%;
    left: 25%;
    width: 4px;
    height: 4px;
    opacity: 0.3;
    animation-delay: 0.7s;
}

.star-4 {
    top: 35%;
    right: 10%;
    width: 8px;
    height: 8px;
    background-color: var(--accent-saffron);
    filter: blur(1px);
    opacity: 0.4;
    animation-delay: 0.5s;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.orb-red {
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background-color: rgba(102, 7, 8, 0.1);
}

.orb-orange {
    bottom: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background-color: rgba(250, 169, 22, 0.05);
}

@keyframes star-twinkle {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes animate-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes engine-glow {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Central Content Container */
.ntono-404-container {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Floating Pod Visual (Translated from Stitch Tailwind) */
.ntono-404-visual-pod {
    position: relative;
    width: 16rem;
    /* 256px */
    height: 16rem;
    /* 256px */
    margin: 0 auto 3rem auto;
    animation: animate-float 8s ease-in-out infinite;
}

.pod-glow-pulse {
    position: absolute;
    inset: 0;
    background-color: rgba(229, 56, 59, 0.2);
    /* imperial-red */
    filter: blur(60px);
    border-radius: 50%;
    animation: pulseBorder 2s infinite;
    /* Reusing existing animation or default */
}

.pod-core {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    /* The tilted look */
}

.pod-body {
    width: 6rem;
    /* 96px */
    height: 14rem;
    /* 224px */
    background: linear-gradient(to right, #e5e7eb, #9ca3af);
    /* gray-200 to gray-400 */
    border-radius: 50% 50% 40% 40%;
    position: relative;
    z-index: 20;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.pod-glass-layer {
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0.6;
}

.pod-window-outer {
    position: absolute;
    top: 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(11, 9, 10, 0.9);
    border-radius: 50%;
    border: 4px solid #d1d5db;
    /* gray-300 */
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pod-window-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(to top right, #0B090A, rgba(229, 56, 59, 0.2), rgba(250, 169, 22, 0.2));
}

.pod-window-glint {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0.8;
}

.pod-band {
    position: absolute;
    width: 100%;
    height: 0.25rem;
    background-color: rgba(229, 56, 59, 0.8);
}

.band-top {
    bottom: 2rem;
}

.band-bottom {
    bottom: 3.5rem;
}

.pod-base {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2rem;
    background-color: rgba(11, 9, 10, 0.9);
    border-radius: 0 0 50% 50%;
}

.pod-fin {
    position: absolute;
    bottom: 1.5rem;
    width: 2.5rem;
    height: 5rem;
    background-color: #E5383B;
    /* imperial-red */
    z-index: 10;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.fin-left {
    left: -1rem;
    border-radius: 50% 0 0 50%;
    transform: skewY(-12deg);
    transform-origin: bottom right;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.fin-right {
    right: -1rem;
    border-radius: 0 50% 50% 0;
    transform: skewY(12deg);
    transform-origin: bottom left;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.pod-thruster-exhaust {
    position: absolute;
    bottom: -5rem;
    width: 4rem;
    height: 8rem;
    background: linear-gradient(to top, transparent, var(--accent-saffron), #E5383B);
    border-radius: 50%;
    filter: blur(8px);
    animation: engine-glow 1.5s ease-in-out infinite;
    transform-origin: top;
    z-index: 0;
    opacity: 0.9;
}

.pod-thruster-core {
    position: absolute;
    bottom: -3.5rem;
    width: 2rem;
    height: 4rem;
    background-color: #fff;
    border-radius: 50%;
    filter: blur(12px);
    animation: engine-glow 1.5s ease-in-out infinite;
    transform-origin: top;
    z-index: 10;
}

/* 404 Typography & Content */
.ntono-404-content {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.ntono-404-title {
    font-size: 3.75rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: #fff;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.ntono-404-title .text-gradient {
    background: linear-gradient(to bottom right, #E5383B, var(--accent-saffron));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ntono-404-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.ntono-404-text {
    font-size: 1.125rem;
    line-height: 1.625;
    font-weight: 300;
    max-width: 32rem;
    margin: 0 auto 3rem auto;
}

.ntono-404-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .ntono-404-title {
        font-size: 6rem;
    }

    .ntono-404-subtitle {
        font-size: 1.875rem;
    }

    .ntono-404-actions {
        flex-direction: row;
    }
}

/* Links Grid Footer section */
.ntono-404-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.links-kicker {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.links-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .links-grid {
        gap: 2.5rem;
    }
}

.links-grid a {
    color: #9ca3af;
    transition: all 0.3s ease;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.links-grid a:hover {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--accent-saffron);
}

/* ==========================================================================
   Portfolio / Projects Archive (archive-project.php)
   ========================================================================== */
.ntono-portfolio-page {
    padding-bottom: 0;
}

.ntono-portfolio-hero {
    padding-top: 11rem;
    padding-bottom: 5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    text-align: center;
}

.ntono-portfolio-hero-inner {
    max-width: 56rem;
    margin: 0 auto;
}

.ntono-portfolio-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.1;
}

.ntono-portfolio-lead {
    font-size: 1.125rem;
    color: #9ca3af;
    max-width: 42rem;
    margin: 0 auto 3rem auto;
}

.ntono-filter-bar {
    display: inline-flex;
    padding: 0.375rem;
    background: rgba(11, 9, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    backdrop-filter: blur(8px);
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
}

.ntono-filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #9ca3af;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ntono-filter-btn:hover {
    color: #ffffff;
}

.ntono-filter-btn.active {
    background: var(--ntono-accent);
    color: var(--ntono-bg-dark);
}

.ntono-masonry-section {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem 8rem 1.5rem;
}

.ntono-masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    grid-auto-rows: 200px;
    gap: 1.5rem;
}

.ntono-masonry-item-tall {
    grid-row: span 3;
}

.ntono-masonry-item-short {
    grid-row: span 2;
}

.ntono-project-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: #161A1D;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ntono-project-card-link {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
    position: relative;
}

.ntono-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.ntono-card-placeholder {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
}

.ntono-project-card:hover .ntono-card-image {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.ntono-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0B090A 0%, rgba(11, 9, 10, 0.6) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.ntono-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 2;
    box-sizing: border-box;
}

.ntono-card-category {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ntono-accent);
    opacity: 0.8;
    margin-bottom: 0.5rem;
    display: block;
}

.ntono-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ntono-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.ntono-card-kpi {
    color: var(--ntono-accent);
    display: flex;
    align-items: baseline;
}

.ntono-kpi-val {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
}

.ntono-kpi-lbl {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.8;
    margin-left: 0.25rem;
}

.ntono-card-icon-wrap {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ntono-project-card:hover .ntono-card-icon-wrap {
    background: var(--ntono-accent);
    border-color: var(--ntono-accent);
}

.ntono-project-card:hover .ntono-card-icon-wrap .material-icons {
    color: var(--ntono-bg-dark);
}

.ntono-card-icon-wrap .material-icons {
    color: #ffffff;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.ntono-pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 4rem;
}

.ntono-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-platinum);
    transition: background 0.3s ease;
    text-decoration: none;
}

.ntono-pagination .page-numbers:hover {
    background: rgba(255, 255, 255, 0.1);
}

.ntono-pagination .current {
    background: var(--ntono-accent);
    color: var(--ntono-bg-dark);
    font-weight: 700;
    pointer-events: none;
}

.ntono-no-results {
    text-align: center;
    color: #9ca3af;
    padding: 4rem 0;
}

/* ==========================================================================
   Portfolio / Single Project (single-project.php)
   ========================================================================== */
.ntono-project-hero {
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.ntono-project-hero-inner {
    text-align: center;
    padding: 8rem 0 6rem 0;
    position: relative;
    z-index: 10;
}

.ntono-project-hero-tags {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.ntono-tag-lg {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    backdrop-filter: blur(4px);
}

.ntono-project-hero-title {
    color: #fff;
    margin-bottom: 1.5rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.ntono-project-hero-client {
    font-size: 1.125rem;
    color: #9ca3af;
}

.ntono-project-hero-client strong {
    color: #fff;
}

.ntono-project-hero-action {
    margin-top: 2.5rem;
}

.ntono-btn-icon {
    font-size: 1.125rem;
    transform: translateY(2px);
    margin-left: 0.5rem;
}

.ntono-project-featured-wrap {
    max-width: 72rem;
    margin: -4rem auto 6rem auto;
    padding: 0 1rem;
    position: relative;
    z-index: 20;
}

.ntono-project-featured-inner {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid #1f2937;
    background: #111827;
    aspect-ratio: 16/9;
}

.ntono-project-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ntono-project-spacer {
    height: 6rem;
}

.ntono-project-body {
    padding-bottom: 6rem;
}

.ntono-project-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .ntono-project-grid-layout {
        grid-template-columns: 8fr 4fr;
        gap: 4rem;
    }
}

.ntono-project-section {
    margin-bottom: 4rem;
}

.ntono-project-section-body {
    border-top: 1px solid #1f2937;
    padding-top: 4rem;
}

.ntono-project-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.text-warning {
    color: var(--accent-saffron);
}

.ntono-rich-text {
    color: #d1d5db;
    line-height: 1.75;
    font-size: 1.125rem;
}

.ntono-rich-text p {
    margin-bottom: 1.5rem;
}

.ntono-rich-text h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 2rem 0 1rem 0;
}

.ntono-rich-text ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.ntono-rich-text li {
    margin-bottom: 0.5rem;
}

.ntono-project-sidebar {
    position: relative;
}

.ntono-project-kpi-card {
    padding: 2rem;
    border-radius: 1rem;
    position: sticky;
    top: 8rem;
}

.ntono-project-kpi-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    border-bottom: 1px solid #1f2937;
    padding-bottom: 1rem;
}

.ntono-kpi-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ntono-kpi-item {
    display: flex;
    flex-direction: column;
}

.ntono-project-sidebar .ntono-kpi-val {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.ntono-project-gallery-section {
    background: #050505;
    padding: 6rem 0;
    border-top: 1px solid #111827;
    margin: 0 calc(-50vw + 50%);
    width: 100vw;
}

.ntono-project-gallery-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-bottom: 4rem;
}

.ntono-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

@media (min-width: 1024px) {
    .ntono-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ntono-gallery-item {
    display: block;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #1f2937;
    aspect-ratio: 4/3;
}

.ntono-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.ntono-gallery-item:hover img {
    transform: scale(1.05);
}

.ntono-project-cta {
    padding: 8rem 0;
    text-align: center;
    background: #0B090A;
    margin: 0 calc(-50vw + 50%);
    width: 100vw;
}

.ntono-project-cta-inner {
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ==========================================================================
   Contact Page (template-contact.php)
   ========================================================================== */
.ntono-contact-page {
    padding-bottom: 6rem;
}

.ntono-contact-header {
    margin: 6rem 0 4rem 0;
}

.ntono-contact-title {
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.ntono-contact-lead {
    color: #9ca3af;
    max-width: 42rem;
    text-align: center;
    margin: 0 auto;
}

.ntono-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 6rem;
}

@media (min-width: 1024px) {
    .ntono-contact-grid {
        grid-template-columns: 4fr 8fr;
        gap: 4rem;
    }
}

.ntono-contact-sidebar {
    padding: 2.5rem;
    border-radius: 1rem;
    height: fit-content;
    position: sticky;
    top: 8rem;
    align-self: start;
}

.ntono-contact-sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
}

.ntono-contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ntono-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ntono-contact-icon {
    font-size: 1.5rem;
    color: var(--ntono-accent);
    margin-top: 0.125rem;
}

.ntono-contact-info-text {
    display: flex;
    flex-direction: column;
}

.ntono-contact-info-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b7280;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.ntono-contact-info-link,
.ntono-contact-info-value {
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ntono-contact-info-link:hover {
    color: #d1d5db;
}

.ntono-contact-social {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ntono-contact-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.ntono-contact-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #9ca3af;
    transition: all 0.3s ease;
}

.ntono-contact-social-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transform: translateY(-2px);
}

.ntono-contact-social-svg {
    width: 1.25rem;
    height: 1.25rem;
}

.ntono-contact-content-area {
    padding: 3rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.01);
}

/* Overriding rich text for forminator or forms inside contact */
.ntono-contact-content-area .ntono-rich-text {
    max-width: none;
}