/*
Theme Name: Gateway Flow
Theme URI: https://flow-hub.ro
Author: Gateway VR Studio SRL
Author URI: https://vrstudio.ro
Description: Editorial block theme for Gateway Flow — Coworking + VR Arena in Bucharest. Day/Night dual-mode, Space Grotesk + Inter typography, orange/magenta accent system.
Version: 2.0.0
Requires at least: 6.7
Tested up to: 6.7
Requires PHP: 8.3
License: Private — All rights reserved
License URI: https://flow-hub.ro/termeni-conditii
Text Domain: gateway-flow
Tags: block-patterns, custom-colors, custom-logo, editor-style, full-site-editing, wide-blocks
*/

/* ============================================
   GATEWAY FLOW — Editorial Design System v2
   Day / Night dual-mode · Space Grotesk + Inter
   ============================================ */

/* ===== Design tokens ===== */
:root {
    --accent: #FF6B35;
    --night-accent: #FF2E4C;
    --bg: #F3EDE4;
    --surface: #FFFFFF;
    --ink: #14130F;
    --mute: #6B6860;
    --line: #E4DFD4;
    --overlay: rgba(20, 19, 15, 0.06);
    --font-display: 'Space Grotesk', 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-max: 1400px;
    --container-pad: 40px;
    --nav-height: 72px;
}

html[data-mode="night"] {
    --accent: var(--night-accent);
    --bg: #0A0A0F;
    --surface: #141420;
    --ink: #FFFFFF;
    --mute: rgba(255, 255, 255, 0.65);
    --line: rgba(255, 255, 255, 0.12);
    --overlay: rgba(255, 255, 255, 0.04);
}

/* ===== Base ===== */
* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    transition: background 0.4s ease, color 0.4s ease;
}

a { color: inherit; text-decoration: none; cursor: pointer; }

img { display: block; max-width: 100%; height: auto; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Headings: override WP defaults with display font + tight tracking */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 0.95;
    margin: 0;
    color: var(--ink);
}
h1 { font-size: clamp(56px, 7vw, 104px); line-height: 0.92; letter-spacing: -0.04em; }
h2 { font-size: clamp(40px, 5vw, 80px); }
h3 { font-size: clamp(22px, 2.2vw, 26px); line-height: 1.1; letter-spacing: -0.02em; }

/* The signature italic emphasis inside headings */
h1 em, h2 em, h3 em, .display em { color: var(--accent); font-style: italic; font-weight: 500; }

/* ===== Utility ===== */
.display { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.03em; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }

.section-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-family: var(--font-body);
}
.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent);
}

/* ===== Buttons ===== */
.gf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    transition: transform 0.15s, box-shadow 0.15s;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
}
.gf-btn:hover { transform: translateY(-1px); }
.gf-btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 18px rgba(255, 107, 53, 0.25);
}
html[data-mode="night"] .gf-btn-primary {
    box-shadow: 0 0 0 1px var(--accent), 0 0 24px rgba(255, 46, 76, 0.35);
}
.gf-btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.gf-btn-ink {
    background: var(--ink);
    color: var(--bg);
    box-shadow: none;
    font-size: 16px;
    padding: 18px 28px;
}
html[data-mode="night"] .gf-btn-ink { background: #0A0A0F; color: #fff; }

/* ===== Navigation ===== */
.gf-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    background: color-mix(in srgb, var(--bg) 85%, transparent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.gf-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.gf-nav-logo .slash { color: var(--accent); }
.gf-nav-logo .sub {
    opacity: 0.55;
    font-weight: 500;
    letter-spacing: 0;
    margin-left: 4px;
}
.gf-hex {
    width: 24px;
    height: 24px;
    background: var(--accent);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: background 0.4s ease, transform 0.4s ease;
    flex-shrink: 0;
}
html[data-mode="night"] .gf-hex { animation: hex-pulse 2.4s ease-in-out infinite; }
@keyframes hex-pulse {
    0%, 100% { filter: drop-shadow(0 0 0 transparent); transform: scale(1); }
    50% { filter: drop-shadow(0 0 8px var(--accent)); transform: scale(1.05); }
}
.gf-nav-menu {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    justify-content: flex-end;
}
.gf-nav-links {
    display: flex;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Hamburger toggle button — hidden on desktop, shown by the responsive block.
   position:relative + z-index above the drawer so the close-tap (X icon) keeps
   working when the drawer is open (button and drawer are DOM siblings inside
   .gf-nav, so they share its stacking context and need explicit ordering). */
.gf-nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    color: var(--ink);
    transition: border-color 0.2s, background 0.2s;
    position: relative;
    z-index: 51;
}
.gf-nav-toggle:hover { border-color: var(--accent); }
.gf-nav-toggle:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
.gf-nav-toggle-bars {
    display: block;
    position: relative;
    width: 22px;
    height: 16px;
}
.gf-nav-toggle-bars > span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.2s, top 0.3s cubic-bezier(0.4,0,0.2,1);
}
.gf-nav-toggle-bars > span:nth-child(1) { top: 0; }
.gf-nav-toggle-bars > span:nth-child(2) { top: 7px; }
.gf-nav-toggle-bars > span:nth-child(3) { top: 14px; }
.gf-nav-toggle[aria-expanded="true"] .gf-nav-toggle-bars > span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
}
.gf-nav-toggle[aria-expanded="true"] .gf-nav-toggle-bars > span:nth-child(2) {
    opacity: 0;
}
.gf-nav-toggle[aria-expanded="true"] .gf-nav-toggle-bars > span:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
}

/* Body scroll lock when drawer open */
body.gf-nav-locked { overflow: hidden; }
.gf-nav-links a {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s;
    color: var(--ink);
}
.gf-nav-links a:hover { background: var(--overlay); }
.gf-nav-links a.active, .gf-nav-links a[aria-current="page"] { color: var(--accent); }
.gf-nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Mode toggle */
.gf-mode-toggle {
    display: flex;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 3px;
    font-size: 12px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
}
.gf-mode-toggle button {
    padding: 6px 14px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--mute);
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
}
.gf-mode-toggle button.active { color: var(--surface); }
html[data-mode="night"] .gf-mode-toggle button.active { color: #0A0A0F; }
.gf-mode-pill {
    position: absolute;
    top: 3px;
    bottom: 3px;
    width: calc(50% - 3px);
    background: var(--ink);
    border-radius: 100px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}
html[data-mode="night"] .gf-mode-pill { background: var(--accent); transform: translateX(100%); }

/* ===== Home hero ===== */
.gf-hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 640px;
    position: relative;
    overflow: hidden;
}
.gf-hero-left {
    padding: 72px 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.gf-hero-meta {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--mute);
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.gf-hero-meta::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--mute);
}
.gf-hero-title {
    font-family: var(--font-display);
    font-size: clamp(56px, 7vw, 104px);
    line-height: 0.92;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.04em;
}
.gf-hero-sub {
    font-size: 18px;
    line-height: 1.55;
    color: var(--mute);
    max-width: 480px;
    margin: 28px 0 0;
}
.gf-hero-cta {
    display: flex;
    gap: 10px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.gf-live-chip {
    margin-top: 48px;
    padding: 12px 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    width: fit-content;
}
.gf-live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
    animation: gf-pulse 2s infinite;
}
html[data-mode="night"] .gf-live-dot {
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 46, 76, 0.25);
}
@keyframes gf-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.gf-hero-right {
    background: #0A0A0F;
    position: relative;
    overflow: hidden;
}
.gf-hero-right img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.8s ease, opacity 0.5s;
}
.gf-hero-right:hover img { transform: scale(1.03); }
.gf-hero-right-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.35) 0%, rgba(10, 10, 15, 0.78) 100%);
}
.gf-hero-right-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    color: #fff;
}
.gf-hero-right-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--night-accent);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.gf-hero-right-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--night-accent);
}
.gf-hero-right h3 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    margin: 0 0 10px;
    color: #fff;
}
.gf-hero-right p {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    max-width: 340px;
}
.gf-hero-hex-deco {
    position: absolute;
    top: 24px;
    right: 24px;
    opacity: 0.7;
}

/* ===== Marquee ===== */
.gf-marquee {
    background: var(--ink);
    color: var(--bg);
    padding: 16px 0;
    overflow: hidden;
    border-top: 1px solid var(--accent);
    white-space: nowrap;
}
html[data-mode="night"] .gf-marquee { background: #141420; color: #fff; }
.gf-marquee-track {
    display: inline-flex;
    gap: 48px;
    animation: gf-scroll 35s linear infinite;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding-left: 40px;
}
.gf-marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.gf-marquee-track span::before {
    content: '◆';
    color: var(--accent);
}
@keyframes gf-scroll {
    to { transform: translateX(-50%); }
}

/* ===== Concept grid (home) ===== */
.gf-concept { padding: 100px 0; }
.gf-concept-head {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 56px;
}
.gf-concept-head h2 {
    font-size: clamp(44px, 5.5vw, 80px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin: 0;
}
.gf-concept-head h2 span { color: var(--accent); }
.gf-concept-head p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--mute);
    margin: 0;
}
.gf-concept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gf-concept-card {
    background: var(--surface);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
}
.gf-concept-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.gf-concept-card .gf-img { height: 220px; overflow: hidden; position: relative; background: #222; }
.gf-concept-card .gf-img img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s;
}
.gf-concept-card:hover .gf-img img { transform: scale(1.06); }
.gf-concept-card .gf-badge {
    position: absolute;
    top: 12px; left: 12px;
    padding: 4px 10px;
    background: var(--bg);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink);
}
.gf-concept-card .gf-body { padding: 24px; }
.gf-concept-card h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
}
.gf-concept-card p {
    font-size: 14px;
    color: var(--mute);
    line-height: 1.55;
    margin: 0;
}

/* ===== Pricing grid (home mini-grid) ===== */
.gf-pricing-sec { padding: 100px 0; background: var(--surface); }
.gf-pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 56px;
}
.gf-price-card {
    padding: 28px 22px;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
    transition: transform 0.2s, border-color 0.2s;
    position: relative;
    background: var(--bg);
}
.gf-price-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.gf-price-card.featured { background: var(--ink); color: var(--bg); border-color: var(--accent); }
html[data-mode="night"] .gf-price-card.featured { background: var(--accent); color: #0A0A0F; }
.gf-price-card.soon { opacity: 0.5; }
.gf-price-tag {
    position: absolute;
    top: -1px; right: -1px;
    background: var(--accent);
    color: #fff;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}
.gf-price-category {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 4px;
}
.gf-price-card.featured .gf-price-category { color: rgba(255, 255, 255, 0.6); }
html[data-mode="night"] .gf-price-card.featured .gf-price-category { color: rgba(10, 10, 15, 0.7); }
.gf-price-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.gf-price-amount {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
}
.gf-price-unit { font-size: 12px; color: var(--mute); margin-top: 4px; }
.gf-price-card.featured .gf-price-unit { color: rgba(255, 255, 255, 0.65); }
html[data-mode="night"] .gf-price-card.featured .gf-price-unit { color: rgba(10, 10, 15, 0.7); }

.gf-founding {
    margin-top: 28px;
    padding: 26px 32px;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.08), rgba(255, 107, 53, 0.02));
    border: 1px solid rgba(255, 107, 53, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
html[data-mode="night"] .gf-founding {
    background: linear-gradient(90deg, rgba(255, 46, 76, 0.12), rgba(255, 46, 76, 0.04));
    border-color: rgba(255, 46, 76, 0.35);
}
.gf-founding-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
}
.gf-founding-line { font-size: 18px; font-weight: 600; margin-top: 4px; }
.gf-founding-line strong {
    font-family: var(--font-display);
    font-size: 26px;
    letter-spacing: -0.02em;
}

/* ===== VR section (home — always dark) ===== */
.gf-vr-sec {
    background: #0A0A0F;
    color: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.gf-vr-sec-bg { position: absolute; inset: 0; opacity: 0.35; }
.gf-vr-sec-bg img { width: 100%; height: 100%; object-fit: cover; }
.gf-vr-sec-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.6), rgba(10, 10, 15, 0.95));
}
.gf-vr-sec-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
}
.gf-vr-sec .section-label { color: var(--night-accent); }
.gf-vr-sec .section-label::before { background: var(--night-accent); }
.gf-vr-sec h2 {
    font-size: clamp(48px, 6.5vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin: 0;
    color: #fff;
}
.gf-vr-sec h2 em { color: var(--accent); font-style: italic; font-weight: 500; }
.gf-vr-sec p.gf-lead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    line-height: 1.6;
    margin: 28px 0 0;
}
.gf-vr-pricing {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.gf-vr-pricing div > span:first-child {
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    display: block;
}
.gf-vr-pricing div > span:last-child {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    margin-top: 4px;
    display: block;
}
.gf-vr-pricing .incl { color: var(--accent); }

.gf-vr-card {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
}
.gf-vr-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 20px;
}
.gf-vr-card h4 {
    font-size: 13px;
    color: var(--night-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 12px;
    font-weight: 700;
    font-family: var(--font-body);
}
.gf-vr-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.72);
}

/* ===== Location ===== */
.gf-location { padding: 100px 0; }
.gf-location-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}
.gf-location h2 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin: 12px 0 24px;
}
.gf-location-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}
.gf-location-meta div { font-size: 14px; }
.gf-location-meta strong {
    font-family: var(--font-display);
    font-size: 22px;
    display: block;
    margin-bottom: 2px;
}
.gf-map-card {
    aspect-ratio: 4/3;
    background: var(--surface);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(var(--overlay) 1px, transparent 1px),
        linear-gradient(90deg, var(--overlay) 1px, transparent 1px);
    background-size: 40px 40px;
}
.gf-map-pin {
    position: absolute;
    top: 42%; left: 48%;
    transform: translate(-50%, -100%);
}
.gf-map-pin-dot {
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.25), 0 0 0 8px rgba(255, 107, 53, 0.12);
    animation: gf-pulse 2s infinite;
}
.gf-map-airports {
    position: absolute;
    top: 12%; right: 8%;
    font-size: 11px;
    color: var(--mute);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.gf-map-airports div {
    margin-bottom: 8px;
    padding: 6px 10px;
    background: var(--surface);
    border: 1px solid var(--line);
}
.gf-map-legend {
    position: absolute;
    bottom: 16px; left: 16px;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--mute);
    text-transform: uppercase;
}

/* ===== FAQ ===== */
.gf-faq-sec { padding: 100px 0; background: var(--surface); }
.gf-faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; }
.gf-faq-grid h2 {
    font-size: 56px;
    line-height: 1;
    letter-spacing: -0.03em;
    margin: 0;
    font-weight: 700;
}
.gf-faq-item {
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
    cursor: pointer;
    transition: padding 0.2s;
}
.gf-faq-item summary {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    letter-spacing: -0.01em;
}
.gf-faq-item summary::-webkit-details-marker { display: none; }
.gf-faq-item summary::after {
    content: '+';
    color: var(--accent);
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.2s;
}
.gf-faq-item[open] summary::after { content: '−'; }
.gf-faq-item[open] { padding: 26px 0 30px; }
.gf-faq-item p {
    margin: 14px 0 0;
    font-size: 15px;
    color: var(--mute);
    line-height: 1.6;
    max-width: 700px;
}

/* ===== Final CTA band ===== */
.gf-cta-final {
    padding: 120px 0;
    background: var(--accent);
    color: #fff;
    position: relative;
    overflow: hidden;
}
html[data-mode="night"] .gf-cta-final { background: var(--accent); color: #0A0A0F; }
.gf-cta-final h2 {
    font-size: clamp(60px, 9vw, 140px);
    line-height: 0.88;
    letter-spacing: -0.04em;
    font-weight: 700;
    margin: 0;
    color: inherit;
}
.gf-cta-final h2 em { font-style: italic; font-weight: 400; opacity: 0.85; color: inherit; }
.gf-cta-final .gf-sub {
    font-size: 20px;
    max-width: 540px;
    margin: 28px 0 36px;
    line-height: 1.5;
    opacity: 0.9;
}

/* ===== Footer ===== */
.gf-footer {
    background: #000;
    color: #fff;
    padding: 72px 0 32px;
}
.gf-footer .gf-foot-brand-sub {
    font-family: var(--font-body);
    font-size: 0.55em;
    font-weight: 500;
    letter-spacing: 0.02em;
    opacity: 0.6;
    margin-left: 4px;
    text-transform: none;
}
.gf-foot-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}
.gf-foot-top h3 {
    font-family: var(--font-display);
    font-size: 40px;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin: 0 0 16px;
    color: #fff;
}
.gf-foot-top h3 em { color: var(--accent); font-style: italic; font-weight: 400; }
.gf-foot-top .gf-addr {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}
.gf-foot-col h4 {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 14px;
    font-weight: 700;
}
.gf-foot-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 2.1;
    color: rgba(255, 255, 255, 0.8);
}
.gf-foot-col li, .gf-foot-col a {
    cursor: pointer;
    transition: color 0.15s;
    color: rgba(255, 255, 255, 0.8);
}
.gf-foot-col li:hover, .gf-foot-col a:hover { color: var(--accent); }
.gf-foot-bot {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
    gap: 12px;
}

/* ===== Pricing page ===== */
.gf-pp-hero { padding-top: 100px; padding-bottom: 60px; }
.gf-pp-hero h1 {
    font-size: clamp(56px, 8vw, 120px);
    letter-spacing: -0.04em;
    line-height: 0.92;
    font-weight: 700;
    margin: 0;
}
.gf-pp-hero h1 em { color: var(--accent); font-style: italic; font-weight: 400; }
.gf-pp-hero .gf-lead {
    font-size: 18px;
    color: var(--mute);
    max-width: 560px;
    margin: 28px 0 0;
    line-height: 1.6;
}

.gf-pp-table { padding-top: 20px; padding-bottom: 100px; }
.gf-pp-plan {
    border-top: 1px solid var(--line);
    transition: background 0.2s;
}
.gf-pp-plan.featured { border-top: 2px solid var(--accent); }
.gf-pp-plan.soon { opacity: 0.55; }
.gf-pp-plan:last-of-type { border-bottom: 1px solid var(--line); }
.gf-pp-plan.featured:last-of-type { border-bottom: 2px solid var(--accent); }
.gf-pp-row {
    display: grid;
    grid-template-columns: 60px 1.5fr 2fr 1.2fr 160px;
    gap: 32px;
    align-items: center;
    padding: 32px 0;
    cursor: pointer;
    user-select: none;
}
.gf-pp-plan:hover { background: var(--overlay); }
.gf-pp-plan.soon .gf-pp-row { cursor: default; }
.gf-pp-num {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--mute);
}
.gf-pp-plan.featured .gf-pp-num { color: var(--accent); }
.gf-pp-name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.gf-pp-pop {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 4px;
}
.gf-pp-desc { font-size: 15px; color: var(--mute); line-height: 1.55; }
.gf-pp-price { text-align: right; }
.gf-pp-price-amt {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}
.gf-pp-price-unit {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--mute);
    text-transform: uppercase;
    margin-top: 4px;
}
.gf-pp-action {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}
.gf-pp-caret {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    color: var(--mute);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    transition: all 0.2s;
    flex-shrink: 0;
}
.gf-pp-plan:hover .gf-pp-caret { border-color: var(--accent); color: var(--accent); }
.gf-pp-plan.open .gf-pp-caret {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: rotate(180deg);
}
.gf-pp-plan.soon .gf-pp-caret { display: none; }
.gf-pp-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.gf-pp-plan.open .gf-pp-details { max-height: 900px; }
.gf-pp-details-inner {
    padding: 8px 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 48px;
    align-items: start;
}
.gf-pp-details-intro h4 {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin: 0 0 12px;
}
.gf-pp-details-intro p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink);
    margin: 0 0 16px;
}
.gf-pp-details-meta {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    margin-top: 16px;
    font-size: 12px;
    color: var(--mute);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.gf-pp-details-meta strong {
    font-family: var(--font-display);
    display: block;
    font-size: 18px;
    color: var(--ink);
    letter-spacing: -0.02em;
    text-transform: none;
    margin-top: 2px;
    font-weight: 700;
}
.gf-pp-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.gf-pp-features li {
    font-size: 14px;
    line-height: 1.5;
    padding: 10px 0;
    border-bottom: 1px dashed var(--line);
    color: var(--ink);
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 8px;
    align-items: baseline;
}
.gf-pp-features li.excl {
    color: var(--mute);
    text-decoration: line-through;
    text-decoration-color: var(--mute);
    opacity: 0.65;
}
.gf-pp-features li .gf-mark {
    color: var(--accent);
    font-weight: 700;
    font-family: var(--font-display);
}
.gf-pp-features li.excl .gf-mark { color: var(--mute); }

.gf-pp-addons { padding: 80px 0; background: var(--surface); }
.gf-pp-addons h2 {
    font-size: 48px;
    letter-spacing: -0.03em;
    margin: 0 0 40px;
    font-weight: 700;
}
.gf-pp-addon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.gf-pp-addon {
    padding: 28px 24px;
    border: 1px solid var(--line);
    background: var(--bg);
}
.gf-pp-addon-price {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--accent);
}
.gf-pp-addon-unit {
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--mute);
    text-transform: uppercase;
    margin-top: 4px;
}
.gf-pp-addon-name { font-size: 16px; font-weight: 600; margin-top: 16px; }
.gf-pp-addon-desc {
    font-size: 13px;
    color: var(--mute);
    margin-top: 6px;
    line-height: 1.5;
}

/* ===== VR Power Break page ===== */
.gf-vrp-hero {
    background: #0A0A0F;
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}
.gf-vrp-hero-bg { position: absolute; inset: 0; opacity: 0.5; }
.gf-vrp-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.gf-vrp-hero-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0A0A0F 0%, rgba(10, 10, 15, 0.5) 60%, transparent 100%);
}
.gf-vrp-hero-inner { position: relative; max-width: 720px; }
.gf-vrp-hero h1 {
    font-size: clamp(56px, 8vw, 128px);
    letter-spacing: -0.04em;
    line-height: 0.88;
    font-weight: 700;
    margin: 0;
    color: #fff;
}
.gf-vrp-hero h1 em { color: var(--accent); font-style: italic; font-weight: 400; }
.gf-vrp-hero p.gf-lead {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.75);
    margin: 28px 0 0;
    line-height: 1.55;
    max-width: 540px;
}

.gf-vrp-what { padding-top: 100px; padding-bottom: 100px; }
.gf-vrp-step-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.gf-vrp-step {
    padding: 28px 0;
    border-top: 2px solid var(--ink);
}
.gf-vrp-step-n {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--accent);
}
.gf-vrp-step h3 {
    font-size: 20px;
    letter-spacing: -0.02em;
    margin: 16px 0 8px;
    font-weight: 700;
}
.gf-vrp-step p {
    font-size: 14px;
    color: var(--mute);
    line-height: 1.55;
    margin: 0;
}

.gf-vrp-experiences { padding: 80px 0; background: var(--surface); }
.gf-vrp-exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.gf-vrp-exp {
    border: 1px solid var(--line);
    overflow: hidden;
    background: var(--bg);
}
.gf-vrp-exp-img { height: 240px; overflow: hidden; }
.gf-vrp-exp-img img { width: 100%; height: 100%; object-fit: cover; }
.gf-vrp-exp-body { padding: 24px; }
.gf-vrp-exp-tag {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
}
.gf-vrp-exp h4 {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: -0.02em;
    margin: 6px 0 10px;
    font-weight: 700;
}
.gf-vrp-exp p {
    font-size: 14px;
    color: var(--mute);
    line-height: 1.55;
    margin: 0;
}

.gf-vrp-tiers { padding-top: 80px; padding-bottom: 80px; }
.gf-vrp-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 40px;
    border: 1px solid var(--line);
}
.gf-vrp-tier {
    padding: 40px 32px;
    border-right: 1px solid var(--line);
    text-align: center;
}
.gf-vrp-tier:last-child { border-right: none; }
.gf-vrp-tier.hi { background: var(--ink); color: var(--bg); }
html[data-mode="night"] .gf-vrp-tier.hi { background: var(--accent); color: #0A0A0F; }
.gf-vrp-tier-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--mute);
}
.gf-vrp-tier.hi .gf-vrp-tier-label { color: rgba(255, 255, 255, 0.65); }
html[data-mode="night"] .gf-vrp-tier.hi .gf-vrp-tier-label { color: rgba(10, 10, 15, 0.7); }
.gf-vrp-tier-price {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 12px 0 6px;
}
.gf-vrp-tier-desc { font-size: 13px; color: var(--mute); }
.gf-vrp-tier.hi .gf-vrp-tier-desc { color: rgba(255, 255, 255, 0.65); }
html[data-mode="night"] .gf-vrp-tier.hi .gf-vrp-tier-desc { color: rgba(10, 10, 15, 0.7); }

/* ===== VR Coffee Spot page ===== */
.gf-cf-hero { padding: 80px 0 60px; position: relative; overflow: hidden; }
.gf-cf-hero-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: center;
}
.gf-cf-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 20px;
}
.gf-cf-kicker::before { content: '◉'; font-size: 14px; }
.gf-cf-hero h1 {
    font-size: clamp(56px, 7.5vw, 120px);
    letter-spacing: -0.04em;
    line-height: 0.88;
    font-weight: 700;
    margin: 0;
}
.gf-cf-hero h1 em { color: var(--accent); font-style: italic; font-weight: 400; }
.gf-cf-hero p.gf-lead {
    font-size: 18px;
    color: var(--mute);
    max-width: 540px;
    margin: 28px 0 0;
    line-height: 1.6;
}
.gf-cf-hero-cta {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.gf-cf-hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    max-height: 520px;
    background: #0A0A0F;
    overflow: hidden;
}
.gf-cf-hero-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gf-cf-hero-visual-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75));
}
.gf-cf-hero-stamp {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: #fff;
    padding: 14px 18px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.25;
    max-width: 180px;
    transform: rotate(4deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.gf-cf-hero-stamp strong {
    display: block;
    font-size: 22px;
    letter-spacing: -0.02em;
    margin-bottom: 2px;
    text-transform: none;
}
.gf-cf-hero-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Signature duo */
.gf-cf-signature {
    padding: 100px 0;
    background: var(--ink);
    color: var(--bg);
    position: relative;
    overflow: hidden;
}
/* In night mode --bg flips to #0A0A0F (dark), which would render dark-on-dark
   on the section's #141420 surface. Force light text for both inverted-bg
   sections (signature + hours) and the marquee. */
html[data-mode="night"] .gf-cf-signature { background: #141420; color: #fff; }
html[data-mode="night"] .gf-cf-signature h2 { color: #fff; }
.gf-cf-signature-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.gf-cf-signature .section-label { color: var(--accent); }
.gf-cf-signature .section-label::before { background: var(--accent); }
.gf-cf-signature h2 {
    font-size: clamp(42px, 5.5vw, 80px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin: 12px 0 24px;
    color: var(--bg);
}
.gf-cf-signature h2 em { color: var(--accent); font-style: italic; font-weight: 400; }
.gf-cf-signature p.gf-lead {
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 32px;
    max-width: 520px;
}
.gf-cf-duo {
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.gf-cf-duo-side {
    flex: 1;
    padding: 28px 24px;
    text-align: center;
    position: relative;
}
.gf-cf-duo-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 400;
    color: var(--accent);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    min-width: 60px;
}
.gf-cf-duo-label {
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}
.gf-cf-duo-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}
.gf-cf-duo-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}
.gf-cf-duo-price {
    margin-top: 12px;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--accent);
}
.gf-cf-duo-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
}

.gf-cf-signature-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 28px;
}
.gf-cf-signature-stats div > span:first-child {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--accent);
}
.gf-cf-signature-stats div > span:last-child {
    display: block;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* Menu — café style */
.gf-cf-menu { padding: 100px 0; background: var(--bg); }
.gf-cf-menu-head {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 56px;
}
.gf-cf-menu-head h2 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin: 0;
}
.gf-cf-menu-head h2 em { color: var(--accent); font-style: italic; font-weight: 400; }
.gf-cf-menu-head p {
    font-size: 15px;
    color: var(--mute);
    line-height: 1.55;
    margin: 0;
}
.gf-cf-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}
.gf-cf-menu-col h3 {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--accent);
}
.gf-cf-menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px dashed var(--line);
    align-items: baseline;
}
.gf-cf-menu-item:last-child { border-bottom: none; }
.gf-cf-menu-name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.gf-cf-menu-desc {
    font-size: 12px;
    color: var(--mute);
    margin-top: 3px;
    line-height: 1.4;
}
.gf-cf-menu-price {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
}
.gf-cf-menu-note {
    margin-top: 40px;
    padding: 18px 22px;
    border: 1px dashed var(--accent);
    color: var(--ink);
    font-size: 13px;
    line-height: 1.55;
    background: color-mix(in srgb, var(--accent) 6%, transparent);
}
.gf-cf-menu-note strong {
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
    font-weight: 700;
}

/* Spaces — three zones */
.gf-cf-spaces { padding: 100px 0; background: var(--surface); }
.gf-cf-spaces h2 {
    font-size: clamp(40px, 5vw, 64px);
    letter-spacing: -0.03em;
    line-height: 1;
    font-weight: 700;
    margin: 12px 0 56px;
}
.gf-cf-spaces h2 em { color: var(--accent); font-style: italic; font-weight: 400; }
.gf-cf-zones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--line);
}
.gf-cf-zone {
    border-right: 1px solid var(--line);
    padding: 0;
    position: relative;
    overflow: hidden;
    background: var(--bg);
    transition: background 0.2s;
}
.gf-cf-zone:last-child { border-right: none; }
.gf-cf-zone:hover { background: color-mix(in srgb, var(--accent) 5%, var(--bg)); }
.gf-cf-zone-img { height: 240px; overflow: hidden; position: relative; }
.gf-cf-zone-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.gf-cf-zone:hover .gf-cf-zone-img img { transform: scale(1.05); }
.gf-cf-zone-num {
    position: absolute;
    top: 16px; left: 16px;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 10px;
    backdrop-filter: blur(6px);
}
.gf-cf-zone-body { padding: 28px 28px 32px; }
.gf-cf-zone-body h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
}
.gf-cf-zone-body p {
    font-size: 14px;
    color: var(--mute);
    line-height: 1.6;
    margin: 0;
}
.gf-cf-zone-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}
.gf-cf-zone-tags span {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    padding: 3px 8px;
    border: 1px solid var(--accent);
    font-weight: 700;
    border-radius: 2px;
}

/* Who it's for */
.gf-cf-who { padding: 100px 0; }
.gf-cf-who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 48px;
}
.gf-cf-who-card {
    padding: 28px 24px;
    border: 1px solid var(--line);
    background: var(--surface);
    transition: transform 0.15s, border-color 0.15s;
}
.gf-cf-who-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.gf-cf-who-card .gf-icon {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
}
.gf-cf-who-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 10px 0 6px;
}
.gf-cf-who-card p {
    font-size: 13px;
    color: var(--mute);
    line-height: 1.5;
    margin: 0;
}

/* Hours strip */
.gf-cf-hours { padding: 60px 0; background: var(--ink); color: var(--bg); }
html[data-mode="night"] .gf-cf-hours { background: #141420; color: #fff; }
html[data-mode="night"] .gf-cf-hours h3 { color: #fff; }
.gf-cf-hours-inner {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
}
.gf-cf-hours h3 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--bg);
}
.gf-cf-hours h3 em { color: var(--accent); font-style: italic; font-weight: 400; }
.gf-cf-hours-days {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    font-size: 13px;
}
.gf-cf-hours-days div > span:first-child {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}
.gf-cf-hours-days div > span:last-child {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
}

/* ===== Contact page ===== */
.gf-ct-hero { padding-top: 100px; padding-bottom: 60px; }
.gf-ct-hero h1 {
    font-size: clamp(56px, 8vw, 120px);
    letter-spacing: -0.04em;
    line-height: 0.9;
    font-weight: 700;
    margin: 0;
}
.gf-ct-hero h1 em { color: var(--accent); font-style: italic; font-weight: 400; }
.gf-ct-body {
    padding: 40px 0 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.gf-ct-info h3 {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 28px 0 6px;
    font-weight: 700;
}
.gf-ct-info h3:first-child { margin-top: 0; }
.gf-ct-info p { font-size: 17px; margin: 0; line-height: 1.55; }
.gf-ct-info p.small { font-size: 14px; color: var(--mute); margin-top: 4px; }

.gf-ct-form {
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 36px;
}
.gf-ct-form label {
    display: block;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--mute);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 6px;
    margin-top: 16px;
    font-family: var(--font-body);
}
.gf-ct-form label:first-child { margin-top: 0; }
.gf-ct-form input,
.gf-ct-form textarea,
.gf-ct-form select {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg);
    border: 1px solid var(--line);
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    border-radius: 4px;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.gf-ct-form input:focus,
.gf-ct-form textarea:focus,
.gf-ct-form select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 15%, transparent);
}
.gf-ct-form textarea { min-height: 120px; resize: vertical; }
.gf-ct-form .gf-gdpr {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 20px;
    font-size: 12px;
    color: var(--mute);
    line-height: 1.5;
}
.gf-ct-form .gf-gdpr input { width: auto; margin-top: 2px; }
.gf-ct-form button[type="submit"] {
    margin-top: 24px;
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s;
}
.gf-ct-form button[type="submit"]:hover { transform: translateY(-1px); }
.gf-ct-success {
    display: none;
    text-align: center;
    padding: 40px;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
}
.gf-ct-form.sent .gf-ct-form-fields { display: none; }
.gf-ct-form.sent .gf-ct-success { display: block; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
    :root { --container-pad: 20px; }
    .gf-nav { padding: 14px 20px; }
    .gf-nav-toggle { display: inline-flex; align-items: center; }

    /* Mobile drawer — full-screen slide-in from the right */
    .gf-nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 420px;
        height: 100dvh;
        background: var(--bg);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 80px 28px 32px;
        transform: translateX(100%);
        transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
        z-index: 49; /* under the sticky nav (50), above page content */
        overflow-y: auto;
        border-left: 1px solid var(--line);
        box-shadow: -16px 0 40px rgba(0,0,0,0.08);
    }
    html[data-mode="night"] .gf-nav-menu {
        background: var(--bg);
        box-shadow: -16px 0 40px rgba(0,0,0,0.4);
    }
    .gf-nav-menu.open { transform: translateX(0); }

    /* Backdrop overlay — rendered via body::after so it sits BELOW the drawer (z-index 49)
       but ABOVE the page. Using ::before on the menu ran into a stacking-context bug
       where it tinted the drawer content itself. */
    body.gf-nav-locked::after {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(20,19,15,0.45);
        z-index: 48;
        pointer-events: auto;
    }

    .gf-nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .gf-nav-links a {
        display: block;
        padding: 18px 4px;
        font-family: var(--font-display);
        font-size: 22px;
        font-weight: 600;
        letter-spacing: -0.02em;
        border-radius: 0;
        border-bottom: 1px solid var(--line);
    }
    .gf-nav-right {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        margin-top: 28px;
    }
    .gf-mode-toggle { align-self: flex-start; }
    .gf-nav-right .gf-btn-primary {
        text-align: center;
        font-size: 14px;
        padding: 14px 24px;
    }
    .gf-hero { grid-template-columns: 1fr; }
    .gf-hero-left { padding: 48px 20px 40px; }
    .gf-hero-right { min-height: 360px; }
    .gf-concept-grid,
    .gf-pp-addon-grid,
    .gf-vrp-exp-grid,
    .gf-vrp-step-row,
    .gf-cf-who-grid { grid-template-columns: 1fr 1fr; }
    .gf-cf-hero-inner,
    .gf-cf-signature-inner,
    .gf-cf-menu-head,
    .gf-cf-hours-inner { grid-template-columns: 1fr; gap: 32px; }
    .gf-pp-row { grid-template-columns: 40px 1fr 1fr; gap: 16px; }
    .gf-pp-row .gf-pp-desc { display: none; }
    .gf-pp-details-inner { grid-template-columns: 1fr; gap: 24px; }
    .gf-pp-features { grid-template-columns: 1fr; }
    .gf-cf-menu-grid, .gf-cf-zones { grid-template-columns: 1fr; }
    .gf-cf-zone {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }
    .gf-cf-duo { flex-direction: column; }
    .gf-cf-duo-plus {
        border-left: none; border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding: 8px;
    }
    .gf-pricing-grid { grid-template-columns: 1fr 1fr; }
    .gf-vr-sec-inner,
    .gf-location-inner,
    .gf-ct-body,
    .gf-faq-grid,
    .gf-concept-head { grid-template-columns: 1fr; gap: 32px; }
    .gf-vrp-tier-grid { grid-template-columns: 1fr; }
    .gf-vrp-tier { border-right: none; border-bottom: 1px solid var(--line); }
    .gf-foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
    .gf-hero-left { padding: 40px 20px 32px; }
    .gf-concept-grid,
    .gf-pp-addon-grid,
    .gf-vrp-exp-grid,
    .gf-vrp-step-row,
    .gf-cf-who-grid,
    .gf-pricing-grid { grid-template-columns: 1fr; }
    .gf-foot-top { grid-template-columns: 1fr; gap: 24px; }

    /* === Mobile QA fixes (Codex pass 2026-05-01) === */

    /* Header: tighten padding + logo size on phones, but KEEP the "Coworking"
       sub-label visible — it's a brand-equity signal Google reads alongside
       the JSON-LD, and previously hiding it cost us a "coworking" word match
       on every page. The hamburger fits because the day/night toggle and CTA
       moved into the drawer. */
    .gf-nav { padding: 12px 16px; }
    .gf-nav-logo { font-size: 15px; min-width: 0; }
    .gf-nav-logo .sub { font-size: 13px; }

    /* Hero typography: shorter clamp on iPhone SE so the hero CTA appears above the fold */
    .gf-hero-title,
    .gf-pp-hero h1,
    .gf-vrp-hero h1,
    .gf-cf-hero h1,
    .gf-ct-hero h1 {
        font-size: clamp(44px, 13vw, 56px);
        line-height: 0.95;
        letter-spacing: -0.03em;
    }

    /* Live chip — full width pill so the count + locuri libere don't wrap mid-line */
    .gf-live-chip {
        width: 100%;
        border-radius: 12px;
        align-items: flex-start;
    }
    .gf-live-chip span:last-child { min-width: 0; line-height: 1.4; }

    /* Home VR pricing teaser: 4 chips → 2×2 grid so they don't overflow */
    .gf-vr-pricing {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px 18px;
    }

    /* Home pricing cards (slider): drop the head min-height that left dead space at 1-col,
       and reposition the +/× indicator so it stays anchored to the head row, not the body. */
    .gf-price-card { padding: 22px 18px; }
    .gf-price-card-head {
        min-height: auto;
        gap: 14px;
        position: relative;
        padding-right: 38px;
    }
    .gf-price-card-head::after {
        top: 0;
        right: 0;
        bottom: auto;
    }

    /* Pricing page rows: tighter 2-row grid at 375px so price + caret stay legible */
    .gf-pp-row {
        grid-template-columns: 36px 1fr auto;
        grid-template-areas:
            "num name caret"
            ".   price action";
        gap: 12px 14px;
    }
    .gf-pp-num    { grid-area: num; }
    .gf-pp-row > div:nth-of-type(2) { grid-area: name; }
    .gf-pp-price  { grid-area: price; text-align: left; }
    .gf-pp-action { grid-area: action; justify-content: flex-start; }
    .gf-pp-caret  { grid-area: caret; }

    /* Pricing details meta — stack on phone so labels aren't cramped */
    .gf-pp-details-meta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .gf-pp-details-meta strong { font-size: 17px; }

    /* Coffee menu: long names like "Cola/Sprite/Fanta" or "Curiosity Cola/Cherry Cola/..."
       were squeezing the price column. Allow wrap on names + lock price width. */
    .gf-cf-menu-item > div:first-child { min-width: 0; }
    .gf-cf-menu-name,
    .gf-cf-menu-desc { overflow-wrap: anywhere; }
    .gf-cf-menu-price { white-space: nowrap; }

    /* Coffee hours strip: 3 cols of days too cramped at 375px */
    .gf-cf-hours-days {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .gf-cf-hours .gf-btn { justify-self: start !important; }

    /* Map iframe: 4:3 aspect at 375px gives ~251px which is too short for pinch/drag */
    .gf-map-card {
        aspect-ratio: auto;
        min-height: 320px;
    }

    /* Footer: tighter padding + allow long legal line to wrap */
    .gf-footer { padding: 48px 0 28px; }
    .gf-addr { overflow-wrap: anywhere; }

    /* GDPR checkbox: bump above 22px so it's a comfortable tap target */
    .gf-ct-form .gf-gdpr input[type="checkbox"] {
        width: 22px;
        height: 22px;
        flex: 0 0 22px;
        margin-top: 0;
    }
    .gf-ct-form .gf-gdpr { align-items: flex-start; }
}

/* ===== Pricing card slider (homepage) =====
   Cards keep their compact look; clicking expands an inline details panel.
   align-items: start prevents siblings from stretching when one opens. */
.gf-pricing-grid { align-items: start; }

.gf-price-card { min-height: 0; justify-content: flex-start; }
.gf-price-card[data-gf-plan-home] { cursor: pointer; }
.gf-price-card[data-gf-plan-home]:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.gf-price-card-head {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    min-height: 184px;
}
.gf-price-card-head::after {
    content: '+';
    position: absolute;
    bottom: 14px; right: 18px;
    width: 26px; height: 26px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--mute);
    font-size: 18px; line-height: 24px;
    text-align: center;
    transition: transform 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
}
.gf-price-card.soon .gf-price-card-head::after,
.gf-price-card:not([data-gf-plan-home]) .gf-price-card-head::after { display: none; }
.gf-price-card.featured .gf-price-card-head::after { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.3); }
.gf-price-card.open .gf-price-card-head::after {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: rotate(45deg);
}

.gf-price-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.gf-price-card.open .gf-price-card-body { max-height: 500px; }
.gf-price-card-body ul {
    list-style: none;
    margin: 16px 0;
    padding: 16px 0 0;
    border-top: 1px solid var(--line);
}
.gf-price-card-body li {
    font-size: 13px;
    line-height: 1.55;
    padding: 4px 0 4px 18px;
    position: relative;
    color: var(--mute);
}
.gf-price-card-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}
.gf-price-card-body .gf-btn {
    margin-top: 4px;
    font-size: 11px;
    padding: 8px 14px;
}
.gf-price-card.featured .gf-price-card-body ul { border-top-color: rgba(255,255,255,0.2); }
.gf-price-card.featured .gf-price-card-body li { color: rgba(255,255,255,0.9); }
.gf-price-card.featured .gf-price-card-body li::before { color: #fff; }
.gf-price-card.featured .gf-price-card-body .gf-btn {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}
html[data-mode="night"] .gf-price-card.featured .gf-price-card-body li { color: rgba(10,10,15,0.85); }
html[data-mode="night"] .gf-price-card.featured .gf-price-card-body li::before { color: #0A0A0F; }
