/* =============================================================
   Brendon Mapinda — Creative Studio + Automation Lab
   Editorial design system · dual-pillar (Studio + Systems)
   ============================================================= */

:root {
    --ink: #111111;
    --ink-soft: #1c1c1c;
    --paper: #f4efe7;
    --paper-soft: #faf7f1;
    --cream: #ece5d6;
    --slate: #595959;
    --slate-soft: #9a9a9a;
    --line: rgba(17, 17, 17, 0.08);
    --line-dark: rgba(244, 239, 231, 0.12);
    --gold: #c9a87a;
    --gold-deep: #a8855a;
    --gold-text: #7e6234; /* darker gold for small text on light backgrounds (WCAG AA) */

    --font-display: 'Fraunces', 'Times New Roman', serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

    --radius: 14px;
    --radius-sm: 8px;
    --shadow-card: 0 24px 60px -30px rgba(17, 17, 17, 0.18);

    --container: 1180px;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}
.container-narrow { max-width: 860px; }

/* Accessibility ---------------------------------------------- */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: var(--paper);
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    z-index: 9999;
    font-weight: 500;
    text-decoration: none;
    transition: top 0.3s var(--ease);
}
.skip-to-content:focus { top: 0; }

:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }

/* Type ------------------------------------------------------- */
.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 1.4rem;
}
.eyebrow-dark { color: var(--slate); }
.eyebrow-gold { color: var(--gold); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: var(--ink);
}

h1 em, h2 em, h3 em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold-deep);
}

/* Navigation ------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(244, 239, 231, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.navbar.scrolled {
    background: rgba(244, 239, 231, 0.96);
    border-bottom-color: var(--line);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1.1rem 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.25rem;
    align-items: center;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.4rem 0;
    transition: color 0.25s var(--ease);
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background: var(--gold-deep);
    transition: width 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--gold-deep); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
    background: var(--ink);
    color: var(--paper);
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.nav-cta:hover { background: var(--gold-deep); transform: translateY(-1px); }

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.bar {
    width: 24px;
    height: 1.5px;
    background: var(--ink);
    margin: 3px 0;
    transition: 0.3s var(--ease);
    border-radius: 2px;
}
.hamburger.active .bar:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Hero ------------------------------------------------------- */
.hero {
    min-height: 100vh;
    padding: 140px 0 0;
    background: var(--paper);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px 64px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 5rem;
    align-items: center;
    flex: 1;
}

.hero-title {
    font-size: clamp(2.4rem, 5.4vw, 4.2rem);
    margin-bottom: 1.4rem;
}

.hero-description {
    font-size: 1.08rem;
    color: var(--slate);
    max-width: 480px;
    margin-bottom: 2.2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.hero-note {
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    color: var(--slate);
    margin-top: 1.4rem;
    max-width: 500px;
    line-height: 1.7;
}

/* Pillar switch (hero) */
.pillar-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    max-width: 540px;
    padding-top: 1.75rem;
    border-top: 1px solid var(--line);
}
.pillar-chip {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 1rem 1.15rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--paper-soft);
    text-decoration: none;
    position: relative;
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}
.pillar-chip:hover { border-color: var(--gold); transform: translateY(-3px); }
.pillar-chip-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-text);
}
.pillar-chip-label { font-size: 0.85rem; color: var(--ink); line-height: 1.35; }
.pillar-chip i {
    position: absolute;
    top: 1rem;
    right: 1.1rem;
    font-size: 0.7rem;
    color: var(--slate-soft);
    transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}
.pillar-chip:hover i { transform: translateX(3px); color: var(--gold-deep); }
.pillar-chip-dark { background: var(--ink); border-color: var(--ink); }
.pillar-chip-dark .pillar-chip-label { color: var(--paper); }
.pillar-chip-dark .pillar-chip-tag { color: var(--gold); }
.pillar-chip-dark:hover { border-color: var(--gold); }

/* Portrait frame */
.hero-image { display: flex; justify-content: center; }
.portrait-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4 / 5;
    background: var(--cream);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 40px 80px -40px rgba(17, 17, 17, 0.45);
}
.portrait-frame::before {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(244, 239, 231, 0.6);
    pointer-events: none;
    z-index: 2;
}
.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s var(--ease);
}
.portrait-frame:hover .portrait-img { transform: scale(1.03); }

/* Hero slideshow (auto crossfade + slow Ken Burns zoom) */
.hero-slideshow .hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s var(--ease); z-index: 0; }
.hero-slideshow .hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-slideshow .hero-slide.is-active { opacity: 1; }
.hero-slideshow .hero-slide.is-active img { animation: kenburns 6.2s var(--ease) forwards; }
@keyframes kenburns { from { transform: scale(1.001); } to { transform: scale(1.09); } }
.portrait-frame figcaption {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 3;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--paper);
    background: rgba(17, 17, 17, 0.42);
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

/* Buttons ---------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.95rem 1.7rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    line-height: 1;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover {
    background: var(--gold-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -12px rgba(168, 133, 90, 0.6);
}
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: var(--paper); border-color: rgba(244, 239, 231, 0.4); }
.btn-ghost-light:hover { background: var(--paper); color: var(--ink); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-outline-light { background: transparent; color: var(--paper); border-color: var(--line-dark); }
.btn-outline-light:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-2px); }

/* Sections --------------------------------------------------- */
.section { padding: 7rem 0; position: relative; }
.section-light { background: var(--paper); color: var(--ink); }
.section-cream { background: var(--cream); color: var(--ink); }
.section-dark { background: var(--ink); color: var(--paper); }

.section-header {
    max-width: 720px;
    margin: 0 auto 4.5rem;
    text-align: center;
}
.section-title {
    font-size: clamp(1.9rem, 3.6vw, 2.85rem);
    margin-bottom: 1.1rem;
}
.section-title.light { color: var(--paper); }
.section-subtitle { font-size: 1.02rem; color: var(--slate); line-height: 1.7; }
.section-subtitle.light-sub { color: rgba(244, 239, 231, 0.7); }

/* Credibility strip ----------------------------------------- */
.proofbar { background: var(--paper-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.25rem 0; }
.proofbar-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 2.5rem; text-align: center; }
.proofbar-item { font-size: 0.82rem; letter-spacing: 0.04em; color: var(--slate); display: inline-flex; align-items: center; gap: 0.5rem; }
.proofbar-item i { color: var(--gold-text); }
.proofbar-item a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.proofbar-item a:hover { color: var(--gold-text); }

/* Pillars bridge -------------------------------------------- */
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
}
.pillar-card {
    position: relative;
    padding: 2.75rem 2.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper-soft);
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s var(--ease);
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--gold); }
.pillar-num {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--gold-text);
    display: block;
    margin-bottom: 1.25rem;
}
.pillar-card-dark .pillar-num { color: var(--gold); }
.pillar-card h3 { font-size: 1.6rem; margin: 0.35rem 0 0.9rem; }
.pillar-card p { color: var(--slate); line-height: 1.7; margin-bottom: 1.5rem; }
.pillar-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}
.pillar-list li {
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    color: var(--ink-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    background: var(--paper);
}
.pillar-card-dark {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper);
}
.pillar-card-dark h3 { color: var(--paper); }
.pillar-card-dark p { color: rgba(244, 239, 231, 0.72); }
.pillar-card-dark .pillar-list li {
    color: var(--paper);
    border-color: var(--line-dark);
    background: rgba(244, 239, 231, 0.04);
}
.pillar-card-dark:hover { border-color: var(--gold); }

/* Work / Services grid -------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.service-tile {
    background: var(--paper-soft);
    border: 1px solid var(--line);
    padding: 2.25rem 1.75rem;
    border-radius: var(--radius);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s var(--ease);
}
.service-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--gold); }
.service-tile i { font-size: 1.45rem; color: var(--gold-deep); margin-bottom: 1.25rem; display: block; }
.service-tile h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.service-tile p { color: var(--slate); font-size: 0.94rem; line-height: 1.65; }

.service-tile.tile-dark {
    background: rgba(244, 239, 231, 0.03);
    border-color: var(--line-dark);
}
.service-tile.tile-dark h3 { color: var(--paper); }
.service-tile.tile-dark p { color: rgba(244, 239, 231, 0.68); }
.service-tile.tile-dark i { color: var(--gold); }
.service-tile.tile-dark:hover { border-color: var(--gold); background: rgba(244, 239, 231, 0.05); box-shadow: none; }

/* Selected frames strip ------------------------------------- */
.work-strip { margin-top: 4.5rem; }
.work-strip-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.work-strip-head .eyebrow { margin-bottom: 0; }
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.work-frame {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--paper-soft);
    box-shadow: var(--shadow-card);
}
.work-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.work-frame:hover img { transform: scale(1.05); }

/* Pricing ---------------------------------------------------- */
.pricing-block { margin-top: 5.5rem; padding-top: 4.5rem; border-top: 1px solid var(--line); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 5rem;
}
.price-card {
    position: relative;
    background: var(--paper-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.price-card header { margin-bottom: 1.5rem; }
.price-card h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.price-sub { font-size: 0.85rem; color: var(--slate); letter-spacing: 0.02em; }
.price {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 1.75rem;
    line-height: 1;
    letter-spacing: -0.02em;
}
.price.small { font-size: 1.9rem; margin-bottom: 1rem; }
.price.light { color: var(--paper); }
.price-range { font-size: 1.2rem; color: var(--slate); font-weight: 300; margin-left: 0.25rem; }
.price-features { list-style: none; margin-bottom: 2.25rem; flex: 1; }
.price-features li {
    position: relative;
    padding: 0.55rem 0 0.55rem 1.6rem;
    color: var(--ink-soft);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--line);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.05rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}
.price-card .btn { width: 100%; justify-content: center; }

.price-card-featured {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
    transform: translateY(-10px);
    box-shadow: 0 40px 80px -32px rgba(17, 17, 17, 0.5);
}
.price-card-featured:hover { transform: translateY(-14px); }
.price-card-featured h3 { color: var(--paper); }
.price-card-featured .price-sub { color: rgba(244, 239, 231, 0.6); }
.price-card-featured .price { color: var(--paper); }
.price-card-featured .price-features li { color: rgba(244, 239, 231, 0.85); border-color: var(--line-dark); }
.price-card-featured .price-features li::before { background: var(--gold); }
.price-card-featured .btn-primary { background: var(--gold); color: var(--ink); }
.price-card-featured .btn-primary:hover { background: var(--paper); color: var(--ink); }

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--ink);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    white-space: nowrap;
}

/* Events ---------------------------------------------------- */
.events-block { padding-top: 4rem; border-top: 1px solid var(--line); }
.events-header { text-align: center; margin-bottom: 3rem; }
.events-header h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.event-tier {
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper-soft);
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.event-tier:hover { border-color: var(--gold); transform: translateY(-4px); }
.event-tier h4 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.event-tier p { color: var(--slate); font-size: 0.92rem; margin: 0.5rem 0 1.25rem; line-height: 1.65; }
.link-arrow {
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}
.link-arrow:hover { color: var(--gold-deep); gap: 0.7rem; }
.link-arrow-light { color: var(--paper); }
.link-arrow-light:hover { color: var(--gold); }

/* Systems --------------------------------------------------- */
.systems-offers { margin-top: 5.5rem; padding-top: 4.5rem; border-top: 1px solid var(--line-dark); }
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.offer-card {
    position: relative;
    background: rgba(244, 239, 231, 0.03);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease), border-color 0.3s var(--ease);
}
.offer-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.offer-card header { margin-bottom: 1.25rem; }
.offer-card h3 { font-size: 1.4rem; color: var(--paper); margin-bottom: 0.4rem; }
.offer-card .price-sub { color: rgba(244, 239, 231, 0.6); }
.offer-card .price-features li {
    color: rgba(244, 239, 231, 0.82);
    border-color: var(--line-dark);
}
.offer-card .price-features li::before { background: var(--gold); }
.offer-card .btn { width: 100%; justify-content: center; }
.offer-card-featured {
    background: rgba(201, 168, 122, 0.08);
    border-color: var(--gold);
}
.offer-card-featured .btn-primary { background: var(--gold); color: var(--ink); }
.offer-card-featured .btn-primary:hover { background: var(--paper); color: var(--ink); }

/* Growth Partnership ---------------------------------------- */
.partnership-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    padding: 3.5rem;
    background: var(--ink);
    border-radius: var(--radius);
    position: relative;
}
.partnership-copy { position: relative; z-index: 1; }
.partnership-copy .eyebrow { color: var(--gold); }
.partnership-copy .section-title { color: var(--paper); text-align: left; }
.partnership-copy p { color: rgba(244, 239, 231, 0.74); line-height: 1.8; margin: 1.1rem 0 1.9rem; max-width: 460px; }
.partnership-copy .section-header { text-align: left; margin: 0; }
.partnership-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; position: relative; z-index: 1; }
.partnership-list li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: var(--paper);
    font-size: 0.98rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-sm);
    background: rgba(244, 239, 231, 0.03);
}
.partnership-list i { color: var(--gold); width: 1.3rem; text-align: center; }
.partnership-price { margin: 0 0 1.7rem; color: rgba(244, 239, 231, 0.85); font-size: 0.92rem; }
.partnership-price strong { color: var(--gold); font-family: var(--font-display); font-size: 1.08rem; letter-spacing: -0.01em; }
.inline-link { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.inline-link:hover { color: var(--paper); }

/* Approach --------------------------------------------------- */
.approach-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}
.approach-copy p { color: var(--slate); font-size: 1.02rem; margin-bottom: 1.25rem; max-width: 560px; line-height: 1.8; }
.approach-cta { margin-top: 0.75rem; }
.approach-stats { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.approach-stats li {
    padding: 1.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper-soft);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.stat-number { font-family: var(--font-display); font-size: 2.6rem; font-weight: 400; color: var(--ink); line-height: 1; }
.stat-number sup { font-size: 0.9rem; color: var(--gold-deep); margin-left: 0.15rem; font-family: var(--font-body); letter-spacing: 0.08em; }
.stat-label { color: var(--slate); font-size: 0.86rem; letter-spacing: 0.04em; }

/* Process --------------------------------------------------- */
.process-grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.process-grid li {
    padding: 2.25rem;
    background: var(--paper-soft);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.process-grid li:hover { border-color: var(--gold); transform: translateY(-4px); }
.step-number { display: inline-block; font-family: var(--font-display); font-size: 1.1rem; color: var(--gold-text); margin-bottom: 1.5rem; letter-spacing: 0.08em; }
.process-grid h3 { font-size: 1.3rem; margin-bottom: 0.65rem; }
.process-grid p { color: var(--slate); font-size: 0.95rem; line-height: 1.7; }

/* FAQ ------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 0.85rem; }
.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--paper-soft);
    padding: 0 1.5rem;
    transition: border-color 0.3s var(--ease);
}
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.4rem 0;
    font-family: var(--font-display);
    font-size: 1.12rem;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-family: var(--font-body);
    font-size: 1.4rem;
    color: var(--gold-deep);
    transition: transform 0.3s var(--ease);
    line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--slate); line-height: 1.75; padding: 0 0 1.5rem; font-size: 0.98rem; max-width: 64ch; }
.faq-item a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }
.faq-item code {
    font-family: var(--font-mono);
    font-size: 0.85em;
    background: var(--cream);
    padding: 0.1em 0.4em;
    border-radius: 4px;
}

/* Contact --------------------------------------------------- */
.section-contact { background: var(--ink); color: var(--paper); padding-bottom: 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding-bottom: 5rem;
}
.contact-copy p { color: rgba(244, 239, 231, 0.7); max-width: 480px; margin: 1.25rem 0 2rem; font-size: 1.02rem; line-height: 1.8; }
.contact-cta { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.contact-cta .btn-primary { background: var(--gold); color: var(--ink); }
.contact-cta .btn-primary:hover { background: var(--paper); color: var(--ink); }
.contact-details {
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    padding: 1.75rem 2rem;
    background: rgba(244, 239, 231, 0.03);
}
.contact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 0.95rem;
}
.contact-row:last-of-type { border-bottom: none; }
.contact-label { color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.75rem; }
.contact-row a, .contact-row span { color: var(--paper); text-decoration: none; transition: color 0.3s var(--ease); }
.contact-row a:hover { color: var(--gold); }
.contact-socials { display: flex; gap: 0.85rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dark); }
.contact-socials a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--line-dark);
    color: var(--paper);
    text-decoration: none;
    transition: all 0.3s var(--ease);
}
.contact-socials a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-2px); }

/* Enquiry form ---------------------------------------------- */
.contact-form-wrap {
    background: rgba(244, 239, 231, 0.04);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    padding: 2.5rem;
}
.form-title { color: var(--paper); font-size: 1.5rem; margin-bottom: 0.35rem; }
.form-sub { color: rgba(244, 239, 231, 0.6); font-size: 0.9rem; margin-bottom: 1.75rem; }
.enquiry-form .field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.enquiry-form label {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(244, 239, 231, 0.75);
    margin-bottom: 0.5rem;
}
.enquiry-form label span { color: var(--gold); }
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    background: rgba(12, 12, 13, 0.55);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-sm);
    padding: 0.8rem 0.95rem;
    color: var(--paper);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.enquiry-form textarea { resize: vertical; min-height: 110px; }
.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder { color: rgba(244, 239, 231, 0.6); }
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(12, 12, 13, 0.75);
}
.enquiry-form select { appearance: none; cursor: pointer; }
.enquiry-form select option,
.enquiry-form select optgroup { background: var(--ink); color: var(--paper); }
.enquiry-form input:user-invalid,
.enquiry-form select:user-invalid,
.enquiry-form textarea:user-invalid { border-color: #c4685e; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; background: var(--gold); color: var(--ink); }
.form-submit:hover { background: var(--paper); color: var(--ink); }
.form-submit[disabled] { opacity: 0.6; cursor: progress; }
.form-status { margin-top: 1rem; font-size: 0.9rem; min-height: 1.2em; }
.form-status.is-success { color: #7fc7a4; }
.form-status.is-error { color: #e0998f; }
.form-fineprint { margin-top: 1rem; font-size: 0.85rem; color: rgba(244, 239, 231, 0.55); }
.form-fineprint a { color: var(--gold); text-decoration: none; }
.form-fineprint a:hover { text-decoration: underline; }

.site-footer {
    text-align: center;
    padding: 2rem 28px;
    border-top: 1px solid var(--line-dark);
    color: rgba(244, 239, 231, 0.5);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

/* Floating WhatsApp ----------------------------------------- */
.float-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 16px 32px -10px rgba(37, 211, 102, 0.55);
    z-index: 999;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.float-whatsapp:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 20px 38px -10px rgba(37, 211, 102, 0.65); }

/* Reveal animation ------------------------------------------ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive ------------------------------------------------- */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .approach-grid { gap: 3rem; }
    .offers-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

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

    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--paper);
        padding: 1.5rem 28px 2rem;
        gap: 1.25rem;
        transform: translateY(-110%);
        visibility: hidden;
        transition: transform 0.4s var(--ease), visibility 0.4s var(--ease);
        border-bottom: 1px solid var(--line);
        align-items: flex-start;
    }
    .nav-menu.active { transform: translateY(0); visibility: visible; }
    .nav-menu li { width: 100%; }
    .nav-link { display: block; padding: 0.5rem 0; }
    .nav-cta { width: 100%; text-align: center; }

    .hero-container { grid-template-columns: 1fr; gap: 3rem; padding-bottom: 48px; }
    .hero-image { order: -1; }
    .portrait-frame { max-width: 320px; }
    .pillar-switch { max-width: 100%; }
    .hero-cta { width: 100%; }
    .hero-cta .btn { flex: 1; justify-content: center; }

    .section-header { margin-bottom: 3rem; }
    .pillars-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .partnership-inner { grid-template-columns: 1fr; gap: 2.25rem; padding: 2.25rem; }
    .partnership-copy .section-title { text-align: left; }
    .services-grid { grid-template-columns: 1fr; gap: 1rem; }
    .work-grid { grid-template-columns: 1fr 1fr; }
    .approach-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .pricing-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .price-card-featured { transform: none; }
    .price-card-featured:hover { transform: translateY(-4px); }
    .events-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; gap: 1rem; }

    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 4rem; }
    .contact-form-wrap { padding: 1.75rem; order: -1; }
    .contact-cta { width: 100%; }
    .contact-cta .btn { flex: 1; justify-content: center; }

    .float-whatsapp { bottom: 18px; right: 18px; width: 52px; height: 52px; }
}

@media (max-width: 420px) {
    .container, .hero-container, .approach-grid, .nav-container { padding-left: 20px; padding-right: 20px; }
    .pillar-switch { grid-template-columns: 1fr; }
    .price-card, .event-tier, .process-grid li, .offer-card { padding: 1.75rem 1.5rem; }
    .pillar-card { padding: 2rem 1.75rem; }
    .contact-form-wrap { padding: 1.5rem; }
    .field-row { grid-template-columns: 1fr; gap: 0; }
    .work-grid { grid-template-columns: 1fr; }
    .price { font-size: 2.3rem; }
    .stat-number { font-size: 2.1rem; }
}

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

/* ============================================================
   Landing chooser
   ============================================================ */
.landing-body { background: var(--ink); }
.landing { min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; }
.landing-head { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; padding: 1.5rem 1.5rem 0.25rem; text-align: center; }
.landing-logo-svg { width: 330px; max-width: 80%; height: auto; color: var(--paper); display: block; }
.landing-logo { font-family: var(--font-display); font-size: 1.4rem; color: var(--paper); letter-spacing: -0.01em; }
.landing-tagline { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.landing-tagline .tag-line { display: inline; }
.landing-tagline .tag-dot { display: inline; }
@media (max-width: 600px) {
    .landing-tagline .tag-line { display: block; }
    .landing-tagline .tag-dot { display: none; }
}
.landing-question { text-align: center; color: var(--paper); font-weight: 400; font-size: clamp(1.4rem, 3vw, 2.1rem); padding: 1.1rem 1.5rem 0.4rem; opacity: 0.95; }
.landing-sub { text-align: center; color: var(--paper); font-size: 1rem; max-width: 600px; margin: 0 auto; padding: 0 1.5rem; opacity: 0.85; }
.landing-bridge { text-align: center; color: rgba(244, 239, 231, 0.6); font-size: 0.85rem; max-width: 640px; margin: 0.5rem auto 0; padding: 0 1.5rem 0.5rem; line-height: 1.6; }
.split { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-dark); min-height: 64vh; }
.split-panel { position: relative; display: flex; align-items: flex-end; padding: 2.5rem; text-decoration: none; overflow: hidden; min-height: 360px; }
.split-studio { background: var(--ink); }
.split-studio::before { content: ''; position: absolute; inset: 0; background: url('../images/gallery-1.jpg') center 20%/cover no-repeat; transition: transform 0.8s var(--ease); }
.split-studio:hover::before { transform: scale(1.05); }
.split-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,17,17,0.15), rgba(17,17,17,0.82)); }
.split-systems { background: #0c0c0d; }
.split-systems::before { content: ''; position: absolute; inset: 0; background: url('../images/systems-desk.jpg') center/cover no-repeat; transition: transform 0.8s var(--ease); }
.split-systems:hover::before { transform: scale(1.05); }
.split-content { position: relative; z-index: 2; color: var(--paper); max-width: 360px; }
.split-tag { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.split-content h2 { color: var(--paper); font-size: clamp(2rem, 4vw, 3rem); margin: 0.5rem 0 0.75rem; line-height: 1.05; }
.split-content p { color: rgba(244,239,231,0.78); font-size: 0.98rem; line-height: 1.6; margin-bottom: 1.3rem; max-width: 300px; }
.split-cta { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 500; font-size: 0.9rem; color: var(--paper); border-bottom: 1px solid var(--gold); padding-bottom: 3px; transition: gap 0.3s var(--ease), color 0.3s var(--ease); }
.split-panel:hover .split-cta { gap: 0.85rem; color: var(--gold); }
.split-code { position: absolute; bottom: 2.5rem; right: 2.5rem; z-index: 2; display: flex; flex-direction: column; gap: 0.35rem; font-family: var(--font-mono); font-size: 0.74rem; color: rgba(201,168,122,0.9); text-align: right; text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.landing-foot { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 1.5rem; text-align: center; }
.landing-both { color: var(--paper); text-decoration: none; font-size: 0.9rem; letter-spacing: 0.02em; opacity: 0.85; display: inline-flex; gap: 0.5rem; align-items: center; transition: color 0.3s var(--ease); }
.landing-both:hover { color: var(--gold); }
.landing-contact { display: flex; gap: 1.4rem; }
.landing-contact a { color: rgba(244,239,231,0.6); font-size: 1.15rem; transition: color 0.3s var(--ease); }
.landing-contact a:hover { color: var(--gold); }
.landing-credit { margin: 0; color: rgba(244,239,231,0.45); font-size: 0.72rem; letter-spacing: 0.04em; }
.landing-credit a { color: rgba(244,239,231,0.65); text-decoration: none; transition: color 0.3s var(--ease); }
.landing-credit a:hover { color: var(--gold); }
.landing-credit .fa-linkedin { font-size: 0.92em; margin-left: 0.2rem; }

/* Homepage: scroll cue, why-both, trust, closing */
.landing-scroll { display: inline-flex; align-items: center; gap: 0.5rem; margin: 1.75rem auto 0; color: rgba(244,239,231,0.6); text-decoration: none; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; font-family: var(--font-mono); transition: color 0.3s var(--ease); }
.landing-scroll:hover { color: var(--gold); }
.landing-scroll i { animation: nudge 1.8s var(--ease) infinite; }
@keyframes nudge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

.why-section { background: #151517; border-top: 1px solid var(--line-dark); padding: 6.5rem 0; color: var(--paper); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 880px; margin: 0 auto; }
.why-col { display: block; text-decoration: none; border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 2.25rem; background: rgba(244,239,231,0.02); transition: border-color 0.3s var(--ease), transform 0.3s var(--ease); }
.why-col:hover { border-color: var(--gold); transform: translateY(-4px); }
.why-tag { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.why-col h3 { font-size: 1.6rem; color: var(--paper); margin: 0.35rem 0 1.1rem; }
.why-col ul { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.why-col li { color: rgba(244,239,231,0.78); font-size: 0.96rem; padding: 0.45rem 0 0.45rem 1.3rem; position: relative; border-bottom: 1px solid var(--line-dark); }
.why-col li:last-child { border-bottom: none; }
.why-col li::before { content: ''; position: absolute; left: 0; top: 0.95rem; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.home-trust { border-top: 1px solid var(--line-dark); padding: 3.25rem 0; background: var(--ink); }
.home-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.home-trust-item { display: flex; flex-direction: column; gap: 0.3rem; }
.home-trust-item strong { color: var(--paper); font-weight: 500; font-size: 0.98rem; }
.home-trust-item span { color: rgba(244,239,231,0.6); font-size: 0.88rem; }

.home-foot { border-top: 1px solid var(--line-dark); padding: 5.5rem 0 4rem; text-align: center; background: #151517; }
.home-foot .section-subtitle { margin: 0 auto; max-width: 520px; }
.home-foot-cta { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; margin: 1.75rem 0 1.5rem; }
.home-foot-cta .btn-primary { background: var(--gold); color: var(--ink); }
.home-foot-cta .btn-primary:hover { background: var(--paper); color: var(--ink); }
.home-foot .landing-contact { justify-content: center; }
.home-foot-copy { margin-top: 1.75rem; font-size: 0.8rem; color: rgba(244,239,231,0.45); letter-spacing: 0.04em; }

@media (max-width: 768px) {
    .why-grid { grid-template-columns: 1fr; }
    .home-trust-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .why-section { padding: 4.5rem 0; }
}

/* ============================================================
   Gallery + lightbox
   ============================================================ */
.gallery { column-count: 3; column-gap: 1rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--radius-sm); overflow: hidden; cursor: zoom-in; background: var(--paper-soft); box-shadow: var(--shadow-card); }
.gallery-item img { width: 100%; display: block; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.inline-link-dark { color: var(--gold-text); text-decoration: underline; text-underline-offset: 2px; }
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(12,12,13,0.93); display: flex; align-items: center; justify-content: center; padding: 3vh 3vw; opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease); }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 94vh; border-radius: 4px; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7); }
.lightbox-close { position: absolute; top: 1rem; right: 1.5rem; background: none; border: none; color: var(--paper); font-size: 2.6rem; line-height: 1; cursor: pointer; opacity: 0.85; }
.lightbox-close:hover { opacity: 1; color: var(--gold); }

/* ============================================================
   Reels (vertical video)
   ============================================================ */
.reels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; max-width: 920px; margin: 0 auto; }
.reel { border-radius: 18px; overflow: hidden; background: #000; border: 1px solid var(--line-dark); aspect-ratio: 9 / 16; box-shadow: 0 30px 70px -30px rgba(0,0,0,0.6); }
.reel video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }

/* ============================================================
   Systems hero terminal + 2-up offers + nav switch
   ============================================================ */
.terminal { width: 100%; max-width: 440px; background: var(--ink); border: 1px solid var(--line-dark); border-radius: 12px; overflow: hidden; box-shadow: 0 40px 80px -40px rgba(17,17,17,0.5); }
.terminal-bar { display: flex; gap: 0.5rem; padding: 0.85rem 1rem; background: rgba(244,239,231,0.04); border-bottom: 1px solid var(--line-dark); }
.terminal-bar span { width: 11px; height: 11px; border-radius: 50%; background: rgba(244,239,231,0.25); }
.terminal-bar span:first-child { background: #e0998f; }
.terminal-bar span:nth-child(2) { background: var(--gold); }
.terminal-body { margin: 0; padding: 1.5rem; font-family: var(--font-mono); font-size: 0.82rem; line-height: 1.9; color: rgba(244,239,231,0.92); white-space: pre-wrap; word-break: break-word; }
.t-c { color: rgba(244,239,231,0.4); } .t-k { color: var(--gold); } .t-f { color: #9ec6e0; } .t-ok { color: #7fc7a4; }
.offers-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 0 auto; }

/* Systems hero: friendly booking-result card (replaces the code terminal) */
.demo-card { width: 100%; max-width: 380px; margin: 0 auto; background: var(--ink); border: 1px solid var(--line-dark); border-radius: 16px; overflow: hidden; box-shadow: 0 40px 80px -40px rgba(17, 17, 17, 0.5); }
.demo-head { display: flex; align-items: center; gap: 0.6rem; padding: 1rem 1.3rem; background: rgba(244, 239, 231, 0.04); border-bottom: 1px solid var(--line-dark); color: var(--paper); font-size: 0.85rem; letter-spacing: 0.03em; }
.demo-head i { color: var(--gold); }
.demo-body { padding: 1.4rem 1.3rem 0.4rem; }
.demo-name { font-family: var(--font-display); font-size: 1.5rem; color: var(--paper); margin: 0; }
.demo-meta { color: rgba(244, 239, 231, 0.6); font-size: 0.9rem; margin: 0.25rem 0 0; }
.demo-status { list-style: none; margin: 1rem 0 0; padding: 0 1.3rem; }
.demo-status li { display: flex; align-items: center; gap: 0.65rem; padding: 0.55rem 0; color: rgba(244, 239, 231, 0.85); font-size: 0.92rem; border-top: 1px solid var(--line-dark); }
.demo-status li i { color: #7fc7a4; font-size: 0.78rem; }
.demo-foot { padding: 1rem 1.3rem 1.4rem; color: rgba(244, 239, 231, 0.5); font-size: 0.82rem; font-style: italic; }
.nav-link-switch { color: var(--gold-deep); font-weight: 600; }
.foot-link { color: rgba(244,239,231,0.7); text-decoration: none; }
.foot-link:hover { color: var(--gold); }
.foot-credit { margin-top: 0.55rem; font-size: 0.76rem; opacity: 0.85; }
.foot-credit .fa-linkedin { font-size: 0.92em; margin-left: 0.25rem; }

/* ============================================================
   Responsive — new components
   ============================================================ */
@media (max-width: 768px) {
    .split { grid-template-columns: 1fr; }
    .split-panel { min-height: 300px; padding: 2rem; }
    .split-code { bottom: 1.25rem; right: 1.25rem; font-size: 0.68rem; }
    .gallery { column-count: 2; column-gap: 0.6rem; }
    .gallery-item { margin-bottom: 0.6rem; }
    .reels-grid { grid-template-columns: 1fr; max-width: 320px; }
    .offers-grid-2 { grid-template-columns: 1fr; max-width: 420px; }
    .terminal { max-width: 100%; }
}
@media (max-width: 420px) {
    .gallery { column-count: 1; }
}

/* ============================================================
   Selected work — Systems case studies
   ============================================================ */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.case-card {
    display: flex;
    flex-direction: column;
    background: var(--paper-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s var(--ease);
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--gold); }
.case-preview { display: flex; flex-direction: column; aspect-ratio: 16 / 10; background: var(--ink); }
.case-bar { display: flex; align-items: center; gap: 0.4rem; padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--line-dark); }
.case-bar > span { width: 9px; height: 9px; border-radius: 50%; background: rgba(244, 239, 231, 0.22); flex: none; }
.case-bar > span:first-child { background: #e0998f; }
.case-bar > span:nth-child(2) { background: var(--gold); }
.case-bar > span:nth-child(3) { background: #7fc7a4; }
.case-url {
    margin-left: 0.55rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-style: normal;
    letter-spacing: 0.02em;
    color: rgba(244, 239, 231, 0.62);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.case-shot { flex: 1; display: flex; align-items: center; justify-content: center; padding: 1rem; text-align: center; background: var(--ink); }
.case-shot span { font-family: var(--font-display); font-size: 1.75rem; line-height: 1.1; color: var(--paper); opacity: 0.95; letter-spacing: -0.01em; }
.case-shot img { width: 100%; height: 100%; object-fit: cover; }
.case-shot-vibes { background: radial-gradient(circle at 28% 22%, rgba(201, 168, 122, 0.30), transparent 62%), #14110d; }
.case-shot-tsakani { background: radial-gradient(circle at 72% 28%, rgba(158, 198, 224, 0.22), transparent 60%), #0f1115; }
.case-shot-mm { background: radial-gradient(circle at 30% 78%, rgba(196, 104, 94, 0.26), transparent 60%), #15100f; }
.case-body { display: flex; flex-direction: column; flex: 1; padding: 1.6rem 1.6rem 1.75rem; }
.case-cat { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-text); margin-bottom: 0.65rem; }
.case-body h3 { font-size: 1.35rem; margin-bottom: 0.55rem; }
.case-body p { color: var(--slate); font-size: 0.93rem; line-height: 1.65; margin-bottom: 1.2rem; }
.case-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.4rem; }
.case-tags li {
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    color: var(--ink-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
    background: var(--paper);
}
.case-link { margin-top: auto; align-self: flex-start; }
.case-link i { font-size: 0.78rem; }

@media (max-width: 1024px) { .case-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .case-grid { grid-template-columns: 1fr; } }
