/* ============================================
           LAAGANAN SKYBAR & RESTAURANT
           Premium Cinematic Website
           ============================================ */

        :root {
            --gold: #D4A853;
            --gold-light: #E8C97A;
            --gold-dark: #B8922E;
            --ocean: #1B3A5C;
            --ocean-deep: #0F2640;
            --ocean-light: #2A5580;
            --white: #FEFCF8;
            --white-pure: #FFFFFF;
            --sand: #F5EDE0;
            --sand-light: #FAF6EF;
            --charcoal: #2C2C2C;
            --charcoal-light: #4A4A4A;
            --charcoal-soft: #6B6B6B;
            --overlay-dark: rgba(15, 38, 64, 0.6);
            --overlay-gold: rgba(212, 168, 83, 0.1);
            --shadow-soft: 0 4px 30px rgba(0,0,0,0.08);
            --shadow-medium: 0 8px 40px rgba(0,0,0,0.12);
            --shadow-strong: 0 16px 60px rgba(0,0,0,0.18);
            --radius: 12px;
            --radius-lg: 20px;
            --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            /* Arriving at /#about from another page is a native jump, not the JS
               smooth-scroll — this keeps the heading clear of the fixed navbar. */
            scroll-padding-top: 100px;
        }

        body {
            font-family: 'Inter', -apple-system, sans-serif;
            color: var(--charcoal);
            background: var(--white);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Typography */
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', Georgia, serif;
            font-weight: 600;
            line-height: 1.2;
        }

        .section-label {
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1rem;
            display: block;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3.2rem);
            color: var(--ocean-deep);
            margin-bottom: 1.2rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--charcoal-soft);
            max-width: 620px;
            font-weight: 300;
            line-height: 1.8;
        }

        .section-subtitle.centered {
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

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

        .container-wide {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        section {
            padding: 100px 0;
        }

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

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 36px;
            border-radius: 50px;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.04em;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: var(--transition);
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--gold);
            color: var(--white-pure);
            box-shadow: 0 4px 20px rgba(212, 168, 83, 0.35);
        }

        .btn-primary:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(212, 168, 83, 0.45);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white-pure);
            border: 1.5px solid rgba(255,255,255,0.5);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--white-pure);
        }

        .btn-outline {
            background: transparent;
            color: var(--gold);
            border: 1.5px solid var(--gold);
        }

        .btn-outline:hover {
            background: var(--gold);
            color: var(--white-pure);
        }

        .btn-dark {
            background: var(--ocean-deep);
            color: var(--white-pure);
        }

        .btn-dark:hover {
            background: var(--ocean);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(15, 38, 64, 0.3);
        }

        /* Divider */
        .gold-line {
            width: 60px;
            height: 2px;
            background: var(--gold);
            margin: 1.5rem 0;
        }

        .gold-line.centered {
            margin-left: auto;
            margin-right: auto;
        }

        /* Scroll Animation
           Content is visible by default. The hidden-then-fade-in state is only
           applied once JS confirms it can reveal it again (html.js), so a JS
           error, a blocked script, or a crawler never leaves sections blank. */
        .reveal {
            opacity: 1;
            transform: none;
        }

        html.js .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        html.js .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (prefers-reduced-motion: reduce) {
            html.js .reveal {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
        .reveal-delay-5 { transition-delay: 0.5s; }
        .reveal-delay-6 { transition-delay: 0.6s; }

        /* ============================================
           NAVIGATION
           ============================================ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 0;
            transition: var(--transition);
        }

        .navbar.scrolled {
            background: rgba(254, 252, 248, 0.97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 14px 0;
            box-shadow: 0 2px 30px rgba(0,0,0,0.06);
        }

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

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

        .nav-logo-main {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--white-pure);
            letter-spacing: 0.02em;
            transition: var(--transition);
        }

        .nav-logo-sub {
            font-family: 'Inter', sans-serif;
            font-size: 0.6rem;
            font-weight: 500;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gold-light);
            margin-top: -2px;
            transition: var(--transition);
        }

        .navbar.scrolled .nav-logo-main {
            color: var(--ocean-deep);
        }

        .navbar.scrolled .nav-logo-sub {
            color: var(--gold);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 36px;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.85rem;
            font-weight: 400;
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            letter-spacing: 0.03em;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--gold);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .navbar.scrolled .nav-links a {
            color: var(--charcoal);
        }

        .nav-links a:hover {
            color: var(--gold-light);
        }

        .navbar.scrolled .nav-links a:hover {
            color: var(--gold);
        }

        .nav-cta {
            padding: 10px 24px !important;
            background: var(--gold);
            color: var(--white-pure) !important;
            border-radius: 50px;
            font-weight: 500 !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            background: var(--gold-dark);
            color: var(--white-pure) !important;
        }

        /* Mobile Menu */
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }

        .nav-toggle span {
            width: 24px;
            height: 2px;
            background: var(--white-pure);
            transition: var(--transition);
            border-radius: 2px;
        }

        .navbar.scrolled .nav-toggle span {
            background: var(--charcoal);
        }

        .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 {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 0;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg,
                    rgba(15, 38, 64, 0.45) 0%,
                    rgba(15, 38, 64, 0.15) 30%,
                    rgba(15, 38, 64, 0.25) 60%,
                    rgba(15, 38, 64, 0.75) 100%),
                url('/images/hero-sunset.jpg');
            background-size: cover;
            background-position: center 62%;
            animation: heroShift 20s ease-in-out infinite alternate;
        }

        @keyframes heroShift {
            0% { transform: scale(1); }
            100% { transform: scale(1.05); }
        }

        /* Simulated sunset clouds/atmosphere */
        .hero-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 90% 70% at 50% 45%, rgba(0, 0, 0, 0.28) 0%, transparent 70%);
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to top, var(--white) 0%, rgba(254,252,248,0.6) 45%, transparent 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 0 24px;
            max-width: 900px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(212, 168, 83, 0.15);
            border: 1px solid rgba(212, 168, 83, 0.3);
            border-radius: 50px;
            color: var(--gold-light);
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
        }

        .hero-badge svg {
            width: 14px;
            height: 14px;
        }

        .hero h1 {
            font-size: clamp(2.8rem, 6vw, 5rem);
            color: var(--white-pure);
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 40px rgba(0,0,0,0.2);
        }

        .hero h1 em {
            font-style: italic;
            color: var(--gold-light);
        }

        .hero-subtitle {
            font-size: clamp(1rem, 1.8vw, 1.2rem);
            color: rgba(255,255,255,0.85);
            max-width: 600px;
            margin: 0 auto 2.5rem;
            font-weight: 300;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-scroll {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: rgba(255,255,255,0.6);
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            text-decoration: none;
            animation: float 3s ease-in-out infinite;
        }

        .hero-scroll .scroll-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, var(--gold-light), transparent);
        }

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

        /* ============================================
           TRUST STRIP
           ============================================ */
        .trust-strip {
            background: var(--white);
            padding: 64px 0 0;
        }

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

        .trust-item {
            text-align: center;
            padding: 0 16px;
            position: relative;
        }

        .trust-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 15%;
            height: 70%;
            width: 1px;
            background: rgba(212, 168, 83, 0.25);
        }

        .trust-number {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--gold-dark);
            line-height: 1.2;
        }

        .trust-number span {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            font-weight: 400;
            color: var(--charcoal-soft);
        }

        .trust-label {
            font-size: 0.8rem;
            color: var(--charcoal-soft);
            letter-spacing: 0.04em;
            margin-top: 6px;
        }

        .trust-statement {
            max-width: 760px;
            margin: 0 auto;
            padding: 32px 0 0;
            border-top: 1px solid rgba(212, 168, 83, 0.18);
            text-align: center;
            font-size: 1.02rem;
            font-weight: 300;
            line-height: 1.85;
            color: var(--charcoal-light);
        }

        /* ============================================
           ABOUT
           ============================================ */
        .about {
            background: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            aspect-ratio: 4/5;
            background: linear-gradient(135deg, var(--ocean-light), var(--gold));
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .about-image::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: var(--radius-lg);
            pointer-events: none;
        }

        .about-accent {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 200px;
            height: 200px;
            border: 2px solid var(--gold);
            border-radius: var(--radius-lg);
            opacity: 0.3;
            z-index: -1;
        }

        .about-text h2 {
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            color: var(--ocean-deep);
            margin-bottom: 1.5rem;
        }

        .about-text p {
            color: var(--charcoal-soft);
            font-size: 1.05rem;
            line-height: 1.9;
            margin-bottom: 2rem;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 2.5rem;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(212, 168, 83, 0.2);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold);
        }

        .stat-label {
            font-size: 0.78rem;
            color: var(--charcoal-soft);
            margin-top: 4px;
            letter-spacing: 0.03em;
        }

        /* ============================================
           EXPERIENCE HIGHLIGHTS
           ============================================ */
        .experiences {
            background: var(--sand-light);
        }

        .exp-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 60px;
        }

        .exp-card {
            background: var(--white-pure);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
            cursor: default;
        }

        .exp-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-medium);
        }

        .exp-card-image {
            height: 200px;
            position: relative;
            overflow: hidden;
        }

        .exp-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: var(--transition-slow);
        }

        .exp-card:hover .exp-card-image img {
            transform: scale(1.06);
        }

        .exp-card-body {
            padding: 28px;
        }

        .exp-card-body h3 {
            font-size: 1.2rem;
            color: var(--ocean-deep);
            margin-bottom: 8px;
        }

        .exp-card-body p {
            font-size: 0.9rem;
            color: var(--charcoal-soft);
            line-height: 1.7;
        }

        /* Gradient backgrounds for cards */
        .gradient-sunset { background: linear-gradient(135deg, #e8a84a, #c76b3a, #d4884a); }
        .gradient-ocean { background: linear-gradient(135deg, #1a3a5c, #2a5580, #3a7ab8); }
        .gradient-twilight { background: linear-gradient(135deg, #2a1a4a, #4a2a6a, #6a3a8a); }
        .gradient-tropical { background: linear-gradient(135deg, #1a5c3a, #2a8050, #4aaa70); }
        .gradient-golden { background: linear-gradient(135deg, #d4a853, #e8c97a, #d4884a); }
        .gradient-dusk { background: linear-gradient(135deg, #1a2a4a, #3a4a6a, #d4884a); }

        /* ============================================
           WHY VISIT
           ============================================ */
        .why-visit {
            background: var(--ocean-deep);
            position: relative;
            overflow: hidden;
        }

        .why-visit::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212, 168, 83, 0.08), transparent 70%);
        }

        .why-visit .section-label {
            color: var(--gold-light);
        }

        .why-visit .section-title {
            color: var(--white-pure);
        }

        .why-visit .section-subtitle {
            color: rgba(255,255,255,0.6);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-top: 60px;
        }

        .why-card {
            text-align: center;
            padding: 40px 24px;
            border-radius: var(--radius-lg);
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.06);
            transition: var(--transition);
        }

        .why-card:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(212, 168, 83, 0.2);
            transform: translateY(-4px);
        }

        .why-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(212, 168, 83, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.6rem;
        }

        .why-card h3 {
            font-size: 1.1rem;
            color: var(--white-pure);
            margin-bottom: 0.8rem;
            font-family: 'Playfair Display', serif;
        }

        .why-card p {
            font-size: 0.88rem;
            color: rgba(255,255,255,0.55);
            line-height: 1.7;
        }

        /* ============================================
           FOOD & DRINKS
           ============================================ */
        .food-drinks {
            background: var(--white);
        }

        .food-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
            margin-top: 60px;
        }

        .food-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            aspect-ratio: 3/4;
            cursor: default;
            transition: var(--transition);
        }

        .food-card:hover {
            transform: translateY(-4px);
        }

        .food-card-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .food-card-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: var(--transition-slow);
        }

        .food-card:hover .food-card-bg img {
            transform: scale(1.06);
        }

        .food-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px 24px 28px;
            background: linear-gradient(to top,
                rgba(0,0,0,0.88) 0%,
                rgba(0,0,0,0.62) 45%,
                rgba(0,0,0,0.15) 80%,
                transparent 100%);
            z-index: 2;
        }

        .food-card-content h3 {
            text-shadow: 0 1px 12px rgba(0,0,0,0.5);
        }

        .food-card-content h3 {
            font-size: 1.3rem;
            color: var(--white-pure);
            margin-bottom: 4px;
        }

        .food-card-content p {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.7);
        }

        /* ============================================
           EVENTS
           ============================================ */
        .events {
            background: var(--sand-light);
            position: relative;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 28px;
            margin-top: 60px;
        }

        /* Each card spans 2 of 6 columns = 3 cards per row */
        .event-card { grid-column: span 2; }

        /* Last 2 cards: centre them in the 6-column grid */
        .events-grid .event-card:nth-child(7) { grid-column: 2 / span 2; }
        .events-grid .event-card:nth-child(8) { grid-column: 4 / span 2; }

        .event-card {
            background: var(--white-pure);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            text-align: center;
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .event-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-medium);
            border-color: rgba(212, 168, 83, 0.2);
        }

        .event-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: var(--overlay-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            transition: var(--transition);
        }

        .event-card:hover .event-icon {
            background: var(--gold);
        }

        .event-card:hover .event-icon svg {
            color: var(--white-pure);
        }

        .event-card h3 {
            font-size: 1.15rem;
            color: var(--ocean-deep);
            margin-bottom: 0.6rem;
        }

        .event-card p {
            font-size: 0.88rem;
            color: var(--charcoal-soft);
            line-height: 1.7;
        }

        .event-card p {
            min-height: 0;
        }

        .event-specs {
            list-style: none;
            margin-top: 20px;
            padding-top: 18px;
            border-top: 1px solid rgba(212, 168, 83, 0.2);
            display: flex;
            flex-direction: column;
            gap: 7px;
            text-align: left;
        }

        .event-specs li {
            font-size: 0.82rem;
            color: var(--charcoal-soft);
            padding-left: 20px;
            position: relative;
            line-height: 1.55;
        }

        .event-specs li::before {
            content: '';
            position: absolute;
            left: 4px;
            top: 8px;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--gold);
        }

        .event-specs strong {
            color: var(--charcoal);
            font-weight: 600;
        }

        /* ── Catering Packages ── */
        .catering-packages {
            margin-top: 80px;
            padding-top: 60px;
            border-top: 1px solid var(--gold-light);
        }

        .catering-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .catering-header h3 {
            font-family: var(--font-serif);
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            color: var(--navy);
            margin: 12px 0 16px;
        }

        .catering-header p {
            color: var(--charcoal-soft);
            font-size: 0.95rem;
            max-width: 580px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .catering-tiers {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: start;
        }

        .catering-tier {
            background: var(--white-pure);
            border: 1px solid rgba(212,168,83,0.25);
            border-radius: var(--radius-lg);
            padding: 36px 28px 32px;
            position: relative;
        }

        .catering-tier.tier-featured {
            border-color: var(--gold);
            box-shadow: 0 8px 32px rgba(212,168,83,0.18);
            transform: translateY(-8px);
        }

        .tier-badge {
            position: absolute;
            top: -13px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold);
            color: var(--white-pure);
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 4px 14px;
            border-radius: 20px;
        }

        .tier-label {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--navy);
            text-align: center;
            letter-spacing: 0.04em;
        }

        .tier-price {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--gold-dark);
            margin: 8px 0 4px;
            line-height: 1;
        }

        .tier-price span {
            font-size: 0.85rem;
            font-weight: 400;
            color: var(--charcoal-soft);
        }

        .tier-best {
            text-align: center;
            font-size: 0.72rem;
            color: var(--charcoal-soft);
            letter-spacing: 0.03em;
            margin-bottom: 24px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(212,168,83,0.2);
        }

        .tier-includes {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .tier-includes li {
            font-size: 0.85rem;
            color: var(--charcoal);
            padding: 6px 0 6px 20px;
            position: relative;
            line-height: 1.4;
            border-bottom: 1px solid rgba(0,0,0,0.04);
        }

        .tier-includes li:last-child { border-bottom: none; }

        .tier-includes li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--gold);
            font-size: 0.75rem;
            font-weight: 700;
            top: 7px;
        }

        .tier-duration {
            font-weight: 600;
            color: var(--navy) !important;
            font-size: 0.88rem !important;
            margin-top: 6px;
        }

        .tier-duration::before { content: "⏱" !important; top: 8px !important; }

        .catering-notes {
            margin-top: 36px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .catering-note {
            background: var(--cream);
            border-left: 3px solid var(--gold);
            border-radius: 0 var(--radius) var(--radius) 0;
            padding: 16px 20px;
            font-size: 0.85rem;
            color: var(--charcoal);
            line-height: 1.6;
        }

        .catering-note strong { color: var(--navy); }

        /* ── End Catering Packages ── */

        .events-cta {
            text-align: center;
            margin-top: 50px;
        }

        .events-cta .cta-trust {
            font-size: 0.83rem;
            color: var(--charcoal-soft);
            margin-top: 14px;
        }

        /* ============================================
           GALLERY
           ============================================ */
        .gallery {
            background: var(--white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(3, 230px);
            gap: 16px;
            margin-top: 60px;
        }

        .gallery-item {
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: var(--transition);
        }

        .gallery-item:hover {
            transform: scale(1.02);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-item-inner {
            width: 100%;
            height: 100%;
        }

        .gallery-item-inner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: var(--transition-slow);
        }

        /* Per-photo focal points. The wide 2-column slots crop hard vertically,
           so centre-cropping cuts straight through people's faces. Each value
           below is the height of the faces in that source image. */
        .gallery-item:nth-child(4) img { object-position: center 42%; } /* night bar */
        .gallery-item:nth-child(5) img { object-position: center 68%; } /* live-night crowd: stage + tables sit low */
        .gallery-item:nth-child(6) img { object-position: center 20%; } /* team: faces sit high */

        .gallery-item:hover .gallery-item-inner img {
            transform: scale(1.06);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: rgba(15, 38, 64, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-overlay svg {
            color: var(--white-pure);
            width: 28px;
            height: 28px;
        }

        /* 4-col grid, 3 rows. Row 1: [1 spans 2] + 2 + 3.
           Row 2: [1 continues] + [4 spans 2]. Row 3: [5 spans 2] + [6 spans 2]. */
        .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
        .gallery-item:nth-child(4) { grid-column: span 2; }
        .gallery-item:nth-child(5) { grid-column: span 2; }
        .gallery-item:nth-child(6) { grid-column: span 2; }

        /* ============================================
           LOCATION
           ============================================ */
        .location {
            background: var(--sand-light);
        }

        .logistics-bar {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            margin-top: 52px;
            background: rgba(212, 168, 83, 0.2);
            border: 1px solid rgba(212, 168, 83, 0.2);
            border-radius: var(--radius);
            overflow: hidden;
        }

        .logistics-item {
            background: var(--white);
            padding: 24px 26px;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .logistics-q {
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--gold-dark);
        }

        .logistics-a {
            font-size: 0.95rem;
            color: var(--charcoal);
            font-weight: 300;
            line-height: 1.6;
        }

        .location-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-top: 60px;
        }

        .location-map {
            border-radius: var(--radius-lg);
            overflow: hidden;
            aspect-ratio: 4/3;
            background: var(--ocean);
            position: relative;
        }

        .location-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .location-map-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.6);
            gap: 12px;
        }

        .location-map-placeholder svg {
            width: 48px;
            height: 48px;
            color: var(--gold-light);
        }

        .location-details h3 {
            font-size: 1.5rem;
            color: var(--ocean-deep);
            margin-bottom: 1.5rem;
        }

        .location-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .location-row {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .location-row-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--overlay-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .location-row-icon svg {
            width: 20px;
            height: 20px;
            color: var(--gold);
        }

        .location-row-text h4 {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 2px;
        }

        .location-row-text p {
            font-size: 0.88rem;
            color: var(--charcoal-soft);
            line-height: 1.6;
        }

        /* ============================================
           TESTIMONIALS
           ============================================ */
        .testimonials {
            background: var(--white);
        }

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

        /* Placeholder warning — delete this rule set once real reviews are in */
        .placeholder-flag {
            max-width: 720px;
            margin: 44px auto 0;
            padding: 12px 20px;
            border: 1px dashed #C2673A;
            border-radius: 8px;
            background: rgba(194, 103, 58, 0.06);
            color: #A0522D;
            font-size: 0.83rem;
            text-align: center;
            line-height: 1.6;
        }

        .testimonial-card.is-placeholder {
            border: 1px dashed rgba(194, 103, 58, 0.35);
        }

        .testimonial-card.is-placeholder .testimonial-author {
            color: #A0522D;
        }

        .testimonial-card {
            background: var(--sand-light);
            border-radius: var(--radius-lg);
            padding: 36px 28px;
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .testimonial-card:hover {
            border-color: rgba(212, 168, 83, 0.2);
            box-shadow: var(--shadow-soft);
        }

        .testimonial-stars {
            color: var(--gold);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        .testimonial-card blockquote {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            font-style: italic;
            color: var(--ocean-deep);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--charcoal-soft);
        }

        .testimonial-author span {
            color: var(--gold);
        }

        /* ============================================
           FINAL CTA
           ============================================ */
        .final-cta {
            background: var(--ocean-deep);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 80% 60% at 50% 120%, rgba(212, 168, 83, 0.15), transparent),
                radial-gradient(circle at 20% 50%, rgba(212, 168, 83, 0.05), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(212, 168, 83, 0.05), transparent 50%);
        }

        .final-cta .container {
            position: relative;
            z-index: 2;
        }

        .final-cta h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--white-pure);
            margin-bottom: 1rem;
        }

        .final-cta p {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.6);
            max-width: 550px;
            margin: 0 auto 2.5rem;
            font-weight: 300;
        }

        .final-cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .final-cta-trust {
            font-size: 0.85rem !important;
            color: rgba(255,255,255,0.45) !important;
            margin: 20px auto 0 !important;
        }

        /* ============================================
           CONTACT FORM MODAL
           ============================================ */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(15, 38, 64, 0.7);
            backdrop-filter: blur(8px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: var(--transition);
            padding: 24px;
        }

        .modal-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .modal {
            background: var(--white-pure);
            border-radius: var(--radius-lg);
            max-width: 540px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            padding: 48px 40px;
            transform: translateY(30px);
            transition: var(--transition);
            position: relative;
        }

        .modal-overlay.active .modal {
            transform: translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--sand-light);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .modal-close:hover {
            background: var(--sand);
        }

        .modal h2 {
            font-size: 1.6rem;
            color: var(--ocean-deep);
            margin-bottom: 0.5rem;
        }

        .modal > p {
            font-size: 0.9rem;
            color: var(--charcoal-soft);
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.2rem;
        }

        .form-group label {
            display: block;
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--charcoal);
            margin-bottom: 6px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid #e0dcd5;
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: var(--charcoal);
            background: var(--white-pure);
            transition: var(--transition);
            outline: none;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
        }

        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }

        .form-submit {
            width: 100%;
            margin-top: 0.5rem;
        }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            background: #0C1D30;
            color: rgba(255,255,255,0.5);
            padding: 80px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .footer-brand .nav-logo-main {
            font-size: 1.3rem;
            color: var(--white-pure);
        }

        .footer-brand .nav-logo-sub {
            color: var(--gold);
        }

        .footer-brand p {
            margin-top: 1rem;
            font-size: 0.88rem;
            line-height: 1.7;
            max-width: 300px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 1.5rem;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            color: rgba(255,255,255,0.5);
        }

        .footer-social a:hover {
            background: var(--gold);
            color: var(--white-pure);
        }

        .footer-col h4 {
            font-family: 'Inter', sans-serif;
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--white-pure);
            margin-bottom: 1.2rem;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-col a {
            color: rgba(255,255,255,0.45);
            text-decoration: none;
            font-size: 0.88rem;
            transition: var(--transition);
        }

        .footer-col a:hover {
            color: var(--gold-light);
        }

        .footer-col p {
            font-size: 0.88rem;
            line-height: 1.7;
        }

        .footer-bottom {
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
        }

        .footer-bottom a {
            color: rgba(255,255,255,0.4);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-bottom a:hover {
            color: var(--gold-light);
        }

        /* ============================================
           MESSENGER FLOATING BUTTON
           ============================================ */
        .messenger-fab {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 999;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gold);
            color: var(--white-pure);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(212, 168, 83, 0.4);
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            border: none;
        }

        .messenger-fab:hover {
            transform: scale(1.08);
            box-shadow: 0 6px 30px rgba(212, 168, 83, 0.5);
        }

        .messenger-fab svg {
            width: 26px;
            height: 26px;
        }

        .messenger-tooltip {
            position: absolute;
            right: 72px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--white-pure);
            color: var(--charcoal);
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 500;
            white-space: nowrap;
            box-shadow: var(--shadow-soft);
            opacity: 0;
            pointer-events: none;
            transition: var(--transition);
        }

        .messenger-fab:hover .messenger-tooltip {
            opacity: 1;
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1024px) {
            .exp-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .food-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .events-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            /* Reset desktop spanning rules for tablet */
            .events-grid .event-card { grid-column: span 1; }
            .events-grid .event-card:nth-child(7),
            .events-grid .event-card:nth-child(8) { grid-column: span 1; }

            .catering-tiers { grid-template-columns: 1fr; }
            .catering-tier.tier-featured { transform: none; }
            .catering-notes { grid-template-columns: 1fr; }

            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
                grid-template-rows: repeat(3, 160px);
            }

            /* 3-col grid: [1 spans 2x2] + 2 / [1] + 3 + 4 / 5 + 6 ... */
            .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
            .gallery-item:nth-child(4) { grid-column: span 1; }
            .gallery-item:nth-child(5) { grid-column: span 1; }
            .gallery-item:nth-child(6) { grid-column: span 1; }

            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

        @media (max-width: 768px) {
            section {
                padding: 72px 0;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 360px;
                height: 100vh;
                background: var(--white-pure);
                flex-direction: column;
                padding: 100px 40px 40px;
                gap: 0;
                transition: var(--transition);
                box-shadow: -10px 0 40px rgba(0,0,0,0.1);
            }

            .nav-links.open {
                right: 0;
            }

            .nav-links a {
                color: var(--charcoal) !important;
                font-size: 1rem;
                padding: 14px 0;
                border-bottom: 1px solid rgba(0,0,0,0.05);
                display: block;
                width: 100%;
            }

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

            .nav-cta {
                margin-top: 12px;
                text-align: center;
                display: block !important;
            }

            .nav-toggle {
                display: flex;
            }

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

            .about-image {
                aspect-ratio: 16/10;
            }

            .exp-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .food-grid {
                grid-template-columns: 1fr 1fr;
            }

            .events-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            /* Reset desktop spanning rules for mobile */
            .events-grid .event-card { grid-column: span 1; }
            .events-grid .event-card:nth-child(7),
            .events-grid .event-card:nth-child(8) { grid-column: span 1; }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: auto;
            }

            .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; height: 180px; }
            .gallery-item:nth-child(1) { grid-column: span 2 !important; height: 220px; }

            .location-grid {
                grid-template-columns: 1fr;
            }

            .logistics-bar {
                grid-template-columns: 1fr;
            }

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

            .trust-item:not(:last-child)::after {
                display: none;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
            }

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

            .footer-bottom {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }

            .modal {
                padding: 36px 28px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .food-grid {
                grid-template-columns: 1fr;
            }

            .about-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }

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

/* ============================================
   JOURNAL  (blog listing + single post)
   ============================================ */
.container-narrow { max-width: 720px; }

.page-head {
    padding: 170px 0 60px;
    background: var(--sand-light);
    text-align: center;
}
.page-head .section-subtitle { margin-left: auto; margin-right: auto; }

.journal-list { padding: 80px 0 100px; }

.journal-card {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 48px;
    margin-bottom: 48px;
    border-bottom: 1px solid rgba(212, 168, 83, 0.2);
}
.journal-card:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.journal-card-img {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.journal-card-img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: var(--transition-slow);
}
.journal-card-img:hover img { transform: scale(1.04); }

.journal-meta {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--charcoal-soft); margin-bottom: 14px;
}
.journal-tag {
    color: var(--gold-dark);
    border: 1px solid rgba(212, 168, 83, 0.4);
    border-radius: 50px; padding: 3px 12px;
    letter-spacing: 0.08em;
}

.journal-card-body h2 {
    font-size: 1.7rem; line-height: 1.25; margin-bottom: 12px;
}
.journal-card-body h2 a {
    color: var(--ocean-deep); text-decoration: none;
    transition: var(--transition);
}
.journal-card-body h2 a:hover { color: var(--gold-dark); }
.journal-card-body p {
    color: var(--charcoal-soft); font-weight: 300; line-height: 1.8; margin-bottom: 16px;
}
.journal-more {
    font-size: 0.85rem; font-weight: 500; color: var(--gold-dark);
    text-decoration: none; letter-spacing: 0.02em;
}
.journal-more:hover { text-decoration: underline; }

/* --- single post --- */
.post { padding: 160px 0 100px; }
.post-back {
    display: inline-block; margin-bottom: 28px;
    font-size: 0.85rem; color: var(--charcoal-soft); text-decoration: none;
}
.post-back:hover { color: var(--gold-dark); }

.post h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ocean-deep); margin-bottom: 18px;
}
.post-standfirst {
    font-size: 1.15rem; font-weight: 300; line-height: 1.75;
    color: var(--charcoal-soft); margin-bottom: 8px;
}
.post-hero {
    width: 100%; max-height: 520px; object-fit: cover;
    border-radius: var(--radius-lg); margin: 40px 0 8px;
}

.post-body { padding-top: 40px; font-size: 1.05rem; line-height: 1.9; color: var(--charcoal-light); }
.post-body h2 {
    font-size: 1.6rem; color: var(--ocean-deep);
    margin: 44px 0 14px;
}
.post-body h3 { font-size: 1.25rem; color: var(--ocean-deep); margin: 32px 0 10px; }
.post-body p { margin-bottom: 20px; }
.post-body ul, .post-body ol { margin: 0 0 20px 22px; }
.post-body li { margin-bottom: 8px; }
.post-body a { color: var(--gold-dark); }
.post-body strong { color: var(--charcoal); font-weight: 600; }
.post-body img { max-width: 100%; border-radius: var(--radius); margin: 24px 0; }
.post-body blockquote {
    margin: 28px 0; padding: 4px 0 4px 24px;
    border-left: 3px solid var(--gold);
    font-family: 'Playfair Display', serif; font-style: italic;
    font-size: 1.15rem; color: var(--ocean-deep);
}

.post-cta {
    margin-top: 64px; padding: 40px;
    background: var(--sand-light); border-radius: var(--radius-lg);
    text-align: center;
}
.post-cta h3 { font-size: 1.4rem; color: var(--ocean-deep); margin-bottom: 10px; }
.post-cta p { color: var(--charcoal-soft); font-size: 0.95rem; margin-bottom: 22px; }

@media (max-width: 768px) {
    .journal-card { grid-template-columns: 1fr; gap: 20px; }
    .page-head { padding: 130px 0 48px; }
    .post { padding: 120px 0 72px; }
    .post-cta { padding: 32px 24px; }
}

/* ------------------------------------------------------------
   Inner pages (journal, posts) have a light background at the
   top, so the nav must start solid — the transparent white-text
   state is only legible over the homepage hero photo.
   ------------------------------------------------------------ */
.inner-page .navbar {
    background: rgba(254, 252, 248, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.06);
}
.inner-page .nav-logo-main { color: var(--ocean-deep); }
.inner-page .nav-logo-sub  { color: var(--gold); }
.inner-page .nav-links a   { color: var(--charcoal); }
.inner-page .nav-links a:hover { color: var(--gold); }
.inner-page .nav-cta,
.inner-page .nav-cta:hover { color: var(--white-pure) !important; }
.inner-page .nav-toggle span { background: var(--charcoal); }
