        :root {
            --teal-deep: #0D5C4E;
            --teal-mid: #1A7A68;
            --teal-light: #2A9D86;
            --gold-dark: #8B6914;
            --gold-mid: #B8920A;
            --gold-bright: #D4A820;
            --gold-shine: #F0C93A;
            --cream: #F8F4EF;
            --cream-dark: #EDE5D8;
            --off-white: #FAF8F5;
            --charcoal: #1A1A1A;
            --ink: #2C2C2C;
            --muted: #6B6560;
            --border: rgba(180, 145, 60, 0.25);
            --shadow-teal: rgba(13, 92, 78, 0.18);
            --shadow-gold: rgba(184, 146, 10, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Tajawal', sans-serif;
            background: var(--off-white);
            color: var(--ink);
            overflow-x: hidden;
        }

        /* ─── NAVIGATION ─── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(248, 244, 239, 0.92);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
            padding: 14px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-brand {
            font-family: 'Cairo', sans-serif;
            font-weight: 900;
            font-size: 18px;
            color: var(--teal-deep);
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            color: var(--muted);
            transition: color .2s;
        }

        .nav-links a:hover {
            color: var(--teal-mid);
        }

        /* ─── SECTIONS ─── */
        section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 48px;
            width: 100%;
        }

        /* ─── SECTION LABELS ─── */
        .section-eyebrow {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold-dark);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .section-eyebrow::before {
            content: '';
            width: 32px;
            height: 1.5px;
            background: var(--gold-mid);
            display: inline-block;
        }

        /* ════════════════════════════════════
     01 HERO
  ════════════════════════════════════ */
        #hero {
            background: var(--teal-deep);
            padding: 140px 0 80px;
            min-height: 100vh;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 60% 80% at 10% 50%, rgba(26, 122, 104, 0.35) 0%, transparent 70%),
                radial-gradient(ellipse 40% 60% at 90% 20%, rgba(212, 168, 32, 0.12) 0%, transparent 60%);
        }

        .hero-pattern {
            position: absolute;
            inset: 0;
            opacity: .04;
            background-image: repeating-linear-gradient(45deg,
                    #fff 0, #fff 1px,
                    transparent 0, transparent 50%);
            background-size: 24px 24px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            padding: 40px 0;
        }

        .hero-eyebrow {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 5px;
            color: var(--gold-shine);
            opacity: .8;
            margin-bottom: 24px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hero-eyebrow::before {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--gold-shine);
            opacity: .6;
        }

        .hero-title {
            font-family: 'Cairo', sans-serif;
            font-size: clamp(52px, 6vw, 84px);
            font-weight: 900;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 8px;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .hero-title span {
            background: linear-gradient(135deg, var(--gold-shine), var(--gold-bright));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 20px;
            font-weight: 400;
            color: rgba(255, 255, 255, .65);
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .hero-tag {
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .15);
            color: rgba(255, 255, 255, .8);
            padding: 8px 18px;
            border-radius: 40px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            backdrop-filter: blur(4px);
        }

        /* Logo showcase */
        .hero-logo-card {
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 24px;
            padding: 60px;
            text-align: center;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .1);
        }

        .hero-logo-card::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 25px;
            background: linear-gradient(135deg, rgba(212, 168, 32, .3), transparent 60%);
            z-index: -1;
        }

        .hero-logo-card img {
            width: 100%;
            max-width: 300px;
            filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.3));
            border-radius: 12px;
        }

        .logo-caption {
            margin-top: 24px;
            font-size: 12px;
            letter-spacing: 3px;
            color: rgba(255, 255, 255, .4);
            text-transform: uppercase;
        }

        /* ════════════════════════════════════
     02 COLOR PALETTE
  ════════════════════════════════════ */
        #colors {
            background: var(--cream);
            padding: 120px 0;
            min-height: auto;
        }

        .section-title {
            font-family: 'Cairo', sans-serif;
            font-size: clamp(36px, 4vw, 56px);
            font-weight: 900;
            color: var(--charcoal);
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .section-desc {
            font-size: 17px;
            color: var(--muted);
            line-height: 1.8;
            max-width: 560px;
            margin-bottom: 60px;
        }

        .palette-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
            margin-bottom: 48px;
        }

        .swatch {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
            transition: transform .3s, box-shadow .3s;
            cursor: default;
        }

        .swatch:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
        }

        .swatch-color {
            height: 140px;
            position: relative;
        }

        .swatch-color::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .08) 100%);
        }

        .swatch-info {
            background: #fff;
            padding: 14px 14px 16px;
        }

        .swatch-name {
            font-weight: 700;
            font-size: 13px;
            color: var(--charcoal);
            margin-bottom: 3px;
        }

        .swatch-hex {
            font-size: 11px;
            color: var(--muted);
            font-family: monospace;
            letter-spacing: 1px;
        }

        .swatch-role {
            font-size: 10px;
            color: var(--teal-mid);
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-top: 4px;
        }

        /* Color story */
        .color-story {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
            margin-top: 48px;
        }

        .color-story-card {
            padding: 32px;
            border-radius: 20px;
            border: 1px solid var(--border);
            background: #fff;
        }

        .color-story-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            margin-bottom: 16px;
        }

        .color-story-card h4 {
            font-family: 'Cairo', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 8px;
        }

        .color-story-card p {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.7;
        }

        /* ════════════════════════════════════
     03 LOGO SYSTEM
  ════════════════════════════════════ */
        #logo {
            background: var(--off-white);
            padding: 120px 0;
            min-height: auto;
        }

        .logo-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 48px;
        }

        .logo-card {
            border-radius: 20px;
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 24px;
            border: 1px solid var(--border);
        }

        .logo-card.light-bg {
            background: #fff;
        }

        .logo-card.dark-bg {
            background: var(--teal-deep);
        }

        .logo-card.teal-bg {
            background: var(--teal-mid);
        }

        .logo-card.gold-bg {
            background: linear-gradient(135deg, #7A5C10, #C9A215);
        }

        .logo-card img {
            max-width: 220px;
            width: 100%;
        }

        .logo-card.dark-bg img,
        .logo-card.teal-bg img {
            filter: brightness(1.1) drop-shadow(0 4px 20px rgba(0, 0, 0, .3));
        }

        .logo-card-label {
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 700;
        }

        .logo-card.light-bg .logo-card-label {
            color: var(--muted);
        }

        .logo-card.dark-bg .logo-card-label,
        .logo-card.teal-bg .logo-card-label,
        .logo-card.gold-bg .logo-card-label {
            color: rgba(255, 255, 255, .5);
        }

        /* exclusion zones */
        .logo-exclusion {
            margin-top: 48px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 48px;
        }

        .logo-exclusion h3 {
            font-family: 'Cairo', sans-serif;
            font-weight: 700;
            font-size: 18px;
            color: var(--charcoal);
            margin-bottom: 24px;
        }

        .exclusion-demo {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            border: 2px dashed var(--border);
            border-radius: 12px;
            background: var(--cream);
            position: relative;
        }

        .exclusion-demo img {
            max-width: 160px;
            width: 100%;
            outline: 20px solid rgba(184, 146, 10, .1);
        }

        /* ════════════════════════════════════
     04 BRAND CONCEPT
  ════════════════════════════════════ */
        #concept {
            background: var(--charcoal);
            padding: 120px 0;
            min-height: auto;
            color: #fff;
        }

        #concept .section-eyebrow {
            color: var(--gold-shine);
        }

        #concept .section-eyebrow::before {
            background: var(--gold-shine);
        }

        #concept .section-title {
            color: #fff;
        }

        #concept .section-desc {
            color: rgba(255, 255, 255, .55);
        }

        .concept-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
            margin-top: 48px;
        }

        .concept-card {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 20px;
            padding: 36px 28px;
            transition: background .3s, border-color .3s;
            cursor: default;
        }

        .concept-card:hover {
            background: rgba(255, 255, 255, .07);
            border-color: rgba(212, 168, 32, .3);
        }

        .concept-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 56px;
            font-weight: 600;
            line-height: 1;
            background: linear-gradient(135deg, var(--gold-shine), var(--gold-bright));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
            opacity: .7;
        }

        .concept-card h3 {
            font-family: 'Cairo', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }

        .concept-card p {
            font-size: 14px;
            color: rgba(255, 255, 255, .45);
            line-height: 1.75;
        }

        /* big concept statement */
        .concept-statement {
            margin-top: 64px;
            padding: 56px;
            background: linear-gradient(135deg, rgba(13, 92, 78, .6), rgba(26, 122, 104, .3));
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 24px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .concept-statement::before {
            content: '"';
            position: absolute;
            top: -20px;
            right: 40px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 200px;
            color: rgba(255, 255, 255, .03);
            line-height: 1;
        }

        .concept-statement blockquote {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            font-style: italic;
            color: rgba(255, 255, 255, .85);
            line-height: 1.5;
            position: relative;
            z-index: 1;
        }

        .concept-statement cite {
            display: block;
            margin-top: 20px;
            font-size: 13px;
            letter-spacing: 3px;
            color: var(--gold-shine);
            opacity: .7;
            text-transform: uppercase;
            font-style: normal;
            z-index: 1;
            position: relative;
        }

        /* ════════════════════════════════════
     05 SOCIAL MEDIA SYSTEM
  ════════════════════════════════════ */
        #social {
            background: var(--cream);
            padding: 120px 0;
            min-height: auto;
        }

        .social-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 48px;
            background: var(--cream-dark);
            padding: 6px;
            border-radius: 14px;
            width: fit-content;
        }

        .social-tab {
            padding: 10px 24px;
            border-radius: 10px;
            border: none;
            background: transparent;
            font-family: 'Tajawal', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: var(--muted);
            cursor: pointer;
            transition: all .2s;
        }

        .social-tab.active {
            background: #fff;
            color: var(--teal-deep);
            box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
        }

        .social-panel {
            display: none;
        }

        .social-panel.active {
            display: block;
        }

        /* Post mockups */
        .posts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 32px;
        }

        .post-card {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
            position: relative;
            aspect-ratio: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .post-bg {
            position: absolute;
            inset: 0;
        }

        .post-content {
            position: relative;
            z-index: 2;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0, 0, 0, .7));
        }

        .post-tag {
            display: inline-block;
            background: var(--gold-bright);
            color: var(--charcoal);
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 6px;
        }

        .post-title {
            font-family: 'Cairo', sans-serif;
            font-weight: 700;
            color: #fff;
            font-size: 15px;
            line-height: 1.4;
        }

        /* Story mockup */
        .stories-row {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding-bottom: 8px;
            margin-top: 24px;
        }

        .story-card {
            flex-shrink: 0;
            width: 120px;
            height: 200px;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
        }

        .story-bg {
            position: absolute;
            inset: 0;
        }

        .story-content {
            position: absolute;
            inset: 0;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 12px;
        }

        .story-logo {
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, .9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 900;
            color: var(--teal-deep);
        }

        .story-text {
            font-family: 'Cairo', sans-serif;
            font-size: 11px;
            font-weight: 700;
            color: #fff;
            text-align: center;
            line-height: 1.4;
        }

        /* Content pillars */
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-top: 48px;
        }

        .pillar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid var(--border);
            text-align: center;
            transition: transform .3s, box-shadow .3s;
        }

        .pillar-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
        }

        .pillar-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin: 0 auto 16px;
        }

        .pillar-card h4 {
            font-family: 'Cairo', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 6px;
        }

        .pillar-card p {
            font-size: 12px;
            color: var(--muted);
            line-height: 1.6;
        }

        /* ════════════════════════════════════
     06 LANDING PAGE
  ════════════════════════════════════ */
        #landing {
            background: var(--off-white);
            padding: 120px 0;
            min-height: auto;
        }

        /* phone mockup */
        .landing-preview {
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 64px;
            align-items: start;
            margin-top: 48px;
        }

        .landing-wireframe {
            background: #fff;
            border-radius: 20px;
            border: 1px solid var(--border);
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
        }

        /* Simulated landing page inside wireframe */
        .lp-hero {
            background: var(--teal-deep);
            padding: 48px 36px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .lp-hero-pattern {
            position: absolute;
            inset: 0;
            opacity: .06;
            background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
            background-size: 18px 18px;
        }

        .lp-hero-logo {
            max-width: 140px;
            margin: 0 auto 20px;
            display: block;
            position: relative;
            z-index: 1;
            border-radius: 8px;
        }

        .lp-hero-h1 {
            font-family: 'Cairo', sans-serif;
            font-size: 22px;
            font-weight: 900;
            color: #fff;
            position: relative;
            z-index: 1;
            margin-bottom: 8px;
        }

        .lp-hero-h1 span {
            color: var(--gold-shine);
        }

        .lp-hero-sub {
            font-size: 13px;
            color: rgba(255, 255, 255, .65);
            position: relative;
            z-index: 1;
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .lp-cta-btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--gold-bright), var(--gold-shine));
            color: var(--charcoal);
            padding: 12px 28px;
            border-radius: 40px;
            font-family: 'Cairo', sans-serif;
            font-size: 13px;
            font-weight: 700;
            position: relative;
            z-index: 1;
            box-shadow: 0 8px 24px rgba(212, 168, 32, .4);
        }

        .lp-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            background: var(--cream);
            border-top: 1px solid var(--border);
        }

        .lp-stat {
            padding: 20px;
            text-align: center;
            border-left: 1px solid var(--border);
        }

        .lp-stat:last-child {
            border-left: none;
        }

        .lp-stat-num {
            font-family: 'Cairo', sans-serif;
            font-size: 22px;
            font-weight: 900;
            color: var(--teal-deep);
        }

        .lp-stat-label {
            font-size: 10px;
            color: var(--muted);
            margin-top: 2px;
        }

        .lp-services {
            padding: 32px 36px;
            background: #fff;
        }

        .lp-services-title {
            font-family: 'Cairo', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: var(--charcoal);
            text-align: center;
            margin-bottom: 20px;
        }

        .lp-services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .lp-service-item {
            background: var(--cream);
            border-radius: 12px;
            padding: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .lp-service-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }

        .lp-service-name {
            font-size: 11px;
            font-weight: 600;
            color: var(--charcoal);
            line-height: 1.3;
        }

        .lp-testimonial {
            background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid));
            padding: 28px 36px;
            text-align: center;
        }

        .lp-testimonial-text {
            font-family: 'Cairo', sans-serif;
            font-size: 13px;
            color: rgba(255, 255, 255, .85);
            line-height: 1.7;
            font-style: italic;
            margin-bottom: 12px;
        }

        .lp-testimonial-name {
            font-size: 11px;
            color: var(--gold-shine);
            font-weight: 700;
            letter-spacing: 1px;
        }

        .lp-footer {
            background: var(--charcoal);
            padding: 20px 36px;
            text-align: center;
        }

        .lp-footer-logo {
            font-family: 'Cairo', sans-serif;
            font-size: 16px;
            font-weight: 900;
            color: var(--gold-bright);
            margin-bottom: 8px;
        }

        .lp-footer-links {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .lp-footer-link {
            font-size: 10px;
            color: rgba(255, 255, 255, .4);
            letter-spacing: 1px;
        }

        /* landing info panel */
        .landing-info {
            padding-top: 20px;
        }

        .landing-info h3 {
            font-family: 'Cairo', sans-serif;
            font-size: 28px;
            font-weight: 900;
            color: var(--charcoal);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .info-list {
            list-style: none;
        }

        .info-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border);
        }

        .info-list li:last-child {
            border-bottom: none;
        }

        .info-bullet {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 14px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .info-list li strong {
            display: block;
            font-size: 14px;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 4px;
        }

        .info-list li span {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.6;
        }

        /* ════════════════════════════════════
     07 TYPOGRAPHY
  ════════════════════════════════════ */
        #typography {
            background: var(--cream);
            padding: 120px 0;
            min-height: auto;
        }

        .type-specimens {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin-top: 48px;
        }

        .type-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            border: 1px solid var(--border);
        }

        .type-family {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-dark);
            margin-bottom: 16px;
        }

        .type-sample-ar {
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .type-meta {
            font-size: 12px;
            color: var(--muted);
        }

        .type-scale {
            background: var(--charcoal);
            border-radius: 20px;
            padding: 48px;
            margin-top: 24px;
            color: #fff;
        }

        .type-scale-title {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-shine);
            margin-bottom: 32px;
        }

        .type-scale-row {
            display: flex;
            align-items: baseline;
            gap: 24px;
            padding: 16px 0;
            border-bottom: 1px solid rgba(255, 255, 255, .05);
        }

        .type-scale-row:last-child {
            border-bottom: none;
        }

        .type-size-label {
            font-size: 11px;
            color: rgba(255, 255, 255, .3);
            width: 48px;
            flex-shrink: 0;
            text-align: left;
            direction: ltr;
        }

        .type-scale-sample {
            font-family: 'Cairo', sans-serif;
            font-weight: 700;
            color: #fff;
        }

        /* ════════════════════════════════════
     FOOTER
  ════════════════════════════════════ */
        footer {
            background: var(--charcoal);
            padding: 64px 0 40px;
            color: #fff;
            min-height: auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand-name {
            font-family: 'Cairo', sans-serif;
            font-size: 24px;
            font-weight: 900;
            color: var(--gold-bright);
            margin-bottom: 12px;
        }

        .footer-brand-desc {
            font-size: 13px;
            color: rgba(255, 255, 255, .4);
            line-height: 1.8;
            max-width: 280px;
        }

        .footer-col-title {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-shine);
            opacity: .6;
            margin-bottom: 20px;
        }

        .footer-col-list {
            list-style: none;
        }

        .footer-col-list li {
            font-size: 13px;
            color: rgba(255, 255, 255, .4);
            margin-bottom: 10px;
        }

        .footer-divider {
            border: none;
            border-top: 1px solid rgba(255, 255, 255, .06);
            margin-bottom: 28px;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copy {
            font-size: 12px;
            color: rgba(255, 255, 255, .25);
        }

        .footer-credit {
            font-size: 12px;
            color: rgba(255, 255, 255, .25);
        }

        .footer-credit span {
            color: var(--gold-bright);
            opacity: .7;
        }

        /* ─── Animations ─── */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% center;
            }

            100% {
                background-position: 200% center;
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-12px);
            }
        }

        @keyframes pulse-ring {
            0% {
                transform: scale(1);
                opacity: .5;
            }

            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        .anim-fade-up {
            animation: fadeUp .8s ease both;
        }

        .anim-fade-up-d1 {
            animation: fadeUp .8s .15s ease both;
        }

        .anim-fade-up-d2 {
            animation: fadeUp .8s .3s ease both;
        }

        .anim-fade-up-d3 {
            animation: fadeUp .8s .45s ease both;
        }

        .float-logo {
            animation: float 6s ease-in-out infinite;
        }

        /* scroll reveal */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity .7s, transform .7s;
        }

        .reveal.visible {
            opacity: 1;
            transform: none;
        }

        /* responsive tweaks */
        @media (max-width: 900px) {

            .hero-grid,
            .logo-grid,
            .landing-preview,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .palette-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .concept-grid,
            .color-story {
                grid-template-columns: 1fr;
            }

            .pillars-grid {
                grid-template-columns: 1fr 1fr;
            }

            .type-specimens {
                grid-template-columns: 1fr;
            }

            nav {
                padding: 14px 20px;
            }

            .container {
                padding: 0 20px;
            }
        }

        /* Story templates guide */
        .story-guide {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 36px;
            margin-top: 32px;
        }

        .story-guide h3 {
            font-family: 'Cairo', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 24px;
        }

        .story-guide-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .story-guide-card {
            background: var(--cream);
            border-radius: 12px;
            padding: 16px;
        }

        .story-guide-card-title {
            font-weight: 700;
            font-size: 13px;
            color: var(--charcoal);
            margin-bottom: 8px;
        }

        .story-guide-card-list {
            list-style: none;
            font-size: 12px;
            color: var(--muted);
            line-height: 2;
        }

        /* Pillar icons */
        .pillar-icon.bg-teal-light {
            background: rgba(13, 92, 78, .1);
        }

        .pillar-icon.bg-gold-light {
            background: rgba(212, 168, 32, .1);
        }
        /* Posting schedule */
        .posting-schedule { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 36px; margin-top: 32px; }
        .posting-schedule h3 { font-family: 'Cairo', sans-serif; font-size: 18px; font-weight: 700; color: var(--charcoal); margin-bottom: 24px; }
        .schedule-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; text-align: center; }
        .schedule-day { background: var(--cream); border-radius: 8px; padding: 12px; }
        .schedule-day.active-teal { background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid)); }
        .schedule-day.active-gold { background: linear-gradient(135deg, #8B6914, #D4A820); }
        .schedule-day-name { font-size: 11px; font-weight: 700; color: var(--muted); margin-bottom: 6px; }
        .schedule-day.active-teal .schedule-day-name, .schedule-day.active-gold .schedule-day-name { color: rgba(255, 255, 255, .7); }
        .schedule-content { font-size: 10px; color: var(--teal-deep); font-weight: 600; }
        .schedule-day.active-teal .schedule-content, .schedule-day.active-gold .schedule-content { color: #fff; }
        .schedule-content.empty { color: var(--muted); }
        .schedule-footer { font-size: 12px; color: var(--muted); margin-top: 16px; text-align: center; }
