/* ==========================================================================
   LORIA 1 PIANO — WIDGETS FOR ELEMENTOR
   Architectural dark theme, sharp corners (radius 0), Arabic RTL.
   Built per 180D Agency lovable-to-elementor v7 conventions.
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root {
    /* Loria 1 Piano — luxury architectural palette (HSL converted to hex). */
    --llp-bg:           #121212;
    --llp-card:         #1a1a1a;
    --llp-card-alt:     #1f1f1f;        /* card-arch hover bg */
    --llp-muted:        #212121;
    --llp-accent-bg:    #2b2b2b;
    --llp-border:       #363636;
    --llp-border-mid:   #616161;        /* card-arch hover border */
    --llp-fg:           #f7f7f7;        /* primary text + accents */
    --llp-fg-muted:     #a6a6a6;        /* muted text */
    --llp-fg-soft:      #777777;        /* placeholders */
    --llp-ring:         #858585;

    /* Single-font architecture (v7: both vars declared for future swap). */
    --llp-font:         "IBM Plex Arabic", "Inter", system-ui, sans-serif;
    --llp-font-display: "IBM Plex Arabic", "Inter", system-ui, sans-serif;

    --llp-radius:       0;              /* sharp corners — design system */
    --llp-tracking-eyebrow: 0.4em;
    --llp-tracking-wide:    0.3em;
    --llp-tracking-mid:     0.15em;

    /* Process step hover accent (green glow from Lovable source). */
    --llp-accent-arch:  #33cc85;
    --llp-accent-arch-glow-1: rgba(51, 204, 133, 0.55);
    --llp-accent-arch-glow-2: rgba(51, 204, 133, 0.35);
    --llp-accent-arch-glow-3: rgba(51, 204, 133, 0.15);

    --llp-transition:   all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   2. HORIZONTAL-SCROLL DEFENSE (mandatory v7 baseline)
   ========================================================================== */

/* 2.1 — Box sizing across all widget elements */
[class^="llp-"], [class*=" llp-"],
[class^="llp-"] *, [class*=" llp-"] *,
[class^="llp-"] *::before, [class*=" llp-"] *::before,
[class^="llp-"] *::after,  [class*=" llp-"] *::after {
    box-sizing: border-box;
}

/* 2.2 — Section-level clip */
.llp-section,
.llp-hero,
.llp-inner-hero,
.llp-header,
.llp-footer {
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
}

/* 2.3 — Grid children must shrink below intrinsic width */
[class^="llp-"][class*="-grid"] > *,
[class^="llp-"][class*="-row"]  > *,
[class^="llp-"][class*="-cols"] > *,
.llp-form-row > *,
.llp-contact-grid > *,
.llp-form-field {
    min-width: 0;
    max-width: 100%;
}

/* 2.4 — Media & embeds */
[class^="llp-"] img,
[class*=" llp-"] img,
[class^="llp-"] iframe,
[class*=" llp-"] iframe,
[class^="llp-"] video,
[class*=" llp-"] video,
[class^="llp-"] svg,
[class*=" llp-"] svg {
    max-width: 100%;
}
[class^="llp-"] img,
[class*=" llp-"] img,
[class^="llp-"] iframe,
[class*=" llp-"] iframe,
[class^="llp-"] video,
[class*=" llp-"] video { height: auto; }

/* 2.5 — Form inputs */
[class^="llp-"] input,
[class*=" llp-"] input,
[class^="llp-"] textarea,
[class*=" llp-"] textarea,
[class^="llp-"] select,
[class*=" llp-"] select,
[class^="llp-"] button,
[class*=" llp-"] button {
    max-width: 100%;
}
[class^="llp-"] input[type="text"],
[class^="llp-"] input[type="email"],
[class^="llp-"] input[type="tel"],
[class^="llp-"] input[type="number"],
[class^="llp-"] input[type="url"],
[class^="llp-"] textarea,
[class^="llp-"] select { width: 100%; }

/* 2.6 — Long unbroken strings (emails, phones in RTL) */
[class^="llp-"] p,
[class^="llp-"] a,
[class^="llp-"] span,
[class^="llp-"] li,
[class^="llp-"] [class*="email"],
[class^="llp-"] [class*="phone"] {
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* 2.7 — Form rows collapse on mobile */
.llp-form-row {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 600px) {
    .llp-form-row { grid-template-columns: 1fr 1fr; }
}

/* 2.8 — Honeypot off-screen */
.llp-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* ==========================================================================
   3. TYPOGRAPHY BASELINE — Arabic line-height
   ========================================================================== */
[class^="llp-"], [class*=" llp-"] {
    font-family: var(--llp-font);
    color: var(--llp-fg);
}

[class^="llp-"] h1, [class*=" llp-"] h1,
[class^="llp-"] h2, [class*=" llp-"] h2,
[class^="llp-"] h3, [class*=" llp-"] h3,
[class^="llp-"] h4, [class*=" llp-"] h4,
[class^="llp-"] h5, [class*=" llp-"] h5,
[class^="llp-"] h6, [class*=" llp-"] h6,
[class^="llp-"][class*="-title"],
[class^="llp-"][class*="-heading"] {
    font-family: var(--llp-font-display);
    font-weight: 300;          /* font-light — Lovable design */
    line-height: 1.15;
    color: var(--llp-fg);
    margin: 0;
}

/* Body line-height — Arabic needs 1.85+ to feel uncrammed. */
[class^="llp-"] p,
[class^="llp-"] li {
    line-height: 1.65;
    color: var(--llp-fg-muted);
    margin: 0;
}
body.rtl [class^="llp-"] p,
body.rtl [class^="llp-"] li,
html[lang^="ar"] [class^="llp-"] p,
html[lang^="ar"] [class^="llp-"] li {
    line-height: 1.95;       /* extra room for tatweel-rich body text */
}

/* Scope RTL only to top-level wrappers (don't cascade globally). */
.llp-section,
.llp-hero,
.llp-inner-hero,
.llp-header,
.llp-footer {
    direction: rtl;
    text-align: right;
}

/* ==========================================================================
   4. UTILITY — eyebrow with rule, italic emphasis span
   ========================================================================== */
.llp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--llp-fg-muted);
    font-size: 0.75rem;
    letter-spacing: var(--llp-tracking-eyebrow);
    text-transform: uppercase;
    line-height: 1;
    font-weight: 400;
}
.llp-eyebrow::before {
    content: "";
    display: block;
    width: 48px;
    height: 1px;
    background: var(--llp-fg-muted);
    flex-shrink: 0;
}
.llp-eyebrow--center {
    justify-content: center;
}

.llp-italic-emph {
    font-style: italic;
    font-weight: 200;
    color: var(--llp-fg-muted);
}

/* ==========================================================================
   5. ICON CONTAINER — universal rules covering both <svg> and <i>
   ========================================================================== */
[class^="llp-"][class*="-icon"],
[class*=" llp-"][class*="-icon"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
    color: var(--llp-fg);
}
[class^="llp-"][class*="-icon"] svg,
[class*=" llp-"][class*="-icon"] svg {
    width: 1em;
    height: 1em;
    display: block;
    color: inherit;
    fill: none;
    stroke: currentColor;
}
[class^="llp-"][class*="-icon"] i,
[class*=" llp-"][class*="-icon"] i {
    font-size: 1em;
    color: inherit;
    line-height: 1;
}

/* ==========================================================================
   6. BUTTON SYSTEM — architectural slide-fill button
   Replicates Lovable's .btn-arch / .btn-arch-solid.
   ========================================================================== */
.llp-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    font-family: var(--llp-font);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: var(--llp-tracking-mid);
    line-height: 1;
    color: var(--llp-fg);
    background: transparent;
    border: 1px solid rgba(247, 247, 247, 0.8);
    border-radius: var(--llp-radius);
    cursor: pointer;
    overflow: hidden;
    text-decoration: none !important;
    transition: color 0.4s ease, border-color 0.4s ease;
    white-space: nowrap;
}
.llp-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--llp-fg);
    transform: translateY(101%);
    transition: transform 0.5s cubic-bezier(0.7, 0, 0.2, 1);
    z-index: 0;
}
.llp-btn > * { position: relative; z-index: 1; }
.llp-btn:hover, .llp-btn:focus {
    color: var(--llp-bg);
    border-color: var(--llp-fg);
}
.llp-btn:hover::before, .llp-btn:focus::before { transform: translateY(0); }

/* Solid variant — starts white, slides to outline on hover. */
.llp-btn--solid {
    background: var(--llp-fg);
    color: var(--llp-bg);
    border-color: var(--llp-fg);
}
.llp-btn--solid::before {
    background: transparent;
}
.llp-btn--solid:hover, .llp-btn--solid:focus {
    color: var(--llp-fg);
    background: transparent;
}
.llp-btn--solid:hover::before, .llp-btn--solid:focus::before {
    transform: translateY(0);
    background: var(--llp-bg);
}

/* Lock icons inside buttons to the button's text color (layer-1 of 3-layer defense). */
.llp-btn i, .llp-btn svg, .llp-btn span { color: inherit; }
.llp-btn svg {
    width: 0.9em;
    height: 0.9em;
    stroke-width: 2;
}

/* Compact variant for header / small contexts. */
.llp-btn--sm {
    padding: 0.625rem 1.5rem;
    font-size: 0.75rem;
}

/* ==========================================================================
   7. BACKGROUND UTILITIES — blueprint grid, piano keys
   ========================================================================== */
.llp-bg-blueprint {
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
}
.llp-bg-piano {
    background-image: repeating-linear-gradient(
        to right,
        rgba(255, 255, 255, 0.05) 0,
        rgba(255, 255, 255, 0.05) 1px,
        transparent 1px,
        transparent 80px
    );
}

/* ==========================================================================
   8. REVEAL-ON-SCROLL  +  EDITOR-PREVIEW FIX
   ========================================================================== */
.llp-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
                transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.llp-reveal.llp-revealed {
    opacity: 1;
    transform: translateY(0);
}
.llp-reveal-fade {
    opacity: 0;
    transition: opacity 1.2s ease;
}
.llp-reveal-fade.llp-revealed { opacity: 1; }

/* Editor preview — observers don't fire reliably inside Elementor iframes,
   force final state so the canvas is never blank. */
.elementor-editor-active .llp-reveal,
.elementor-editor-active .llp-reveal-fade,
body.elementor-editor-preview .llp-reveal,
body.elementor-editor-preview .llp-reveal-fade {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}
@media (prefers-reduced-motion: reduce) {
    .llp-reveal,
    .llp-reveal-fade {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ==========================================================================
   9. SHARED LAYOUT — section, container
   ========================================================================== */
.llp-section {
    position: relative;
    padding: 7rem 0;
    background: var(--llp-bg);
    border-top: 1px solid var(--llp-border);
    overflow: hidden;
}
.llp-section--no-border { border-top: 0; }
.llp-section--lg { padding: 8rem 0; }

.llp-container {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 1024px) {
    .llp-container { padding: 0 2.5rem; }
}

.llp-bg-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* ==========================================================================
   10. HEADER
   ========================================================================== */
.llp-header {
    position: sticky;
    top: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    z-index: 50;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.5s ease;
    border-bottom: 1px solid transparent;
}
.llp-header.is-scrolled { border-bottom-color: var(--llp-border); }

.llp-header-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
@media (min-width: 1024px) { .llp-header-inner { padding: 0 2.5rem; } }

.llp-header-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}
.llp-header-logo img {
    height: 2.5rem;
    width: auto;
    display: block;
    filter: invert(1);          /* PNG is dark-on-light; invert for dark theme */
}
.llp-header-logo img.llp-header-logo-full { display: none; }
@media (max-width: 639px) {
    .llp-header-logo img.llp-header-logo-mark { display: none; }
    .llp-header-logo img.llp-header-logo-full { display: block; height: 2.25rem; }
}
.llp-header-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    color: var(--llp-fg-muted);
    transition: color 0.4s ease;
}
.llp-header-logo:hover .llp-header-tagline { color: var(--llp-fg); }
@media (max-width: 639px) {
    .llp-header-tagline { display: none; }
}

.llp-header-nav {
    display: none;
    align-items: center;
    gap: 2.5rem;
}
@media (min-width: 768px) {
    .llp-header-nav { display: flex; }
}
.llp-header-nav a {
    font-size: 0.875rem;
    letter-spacing: var(--llp-tracking-mid);
    color: var(--llp-fg-muted);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}
.llp-header-nav a:hover,
.llp-header-nav a:focus,
.llp-header-nav a.is-active {
    color: var(--llp-fg);
}

.llp-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.llp-header-cta { display: none; }
@media (min-width: 768px) { .llp-header-cta { display: inline-flex; } }

/* Burger button — inline SVG; CSS toggles open/close icon. */
.llp-header-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: var(--llp-fg);
    padding: 0;
}
.llp-header-burger:hover, .llp-header-burger:focus {
    background: rgba(255, 255, 255, 0.06);
    outline: none;
}
@media (min-width: 768px) { .llp-header-burger { display: none; } }

.llp-header-burger-open  { display: inline-flex; }
.llp-header-burger-close { display: none; }
.llp-header.is-open .llp-header-burger-open  { display: none; }
.llp-header.is-open .llp-header-burger-close { display: inline-flex; }
.llp-header-burger svg { width: 1.5rem; height: 1.5rem; }

.llp-header-mobile {
    display: none;
    background: var(--llp-bg);
    border-top: 1px solid var(--llp-border);
}
.llp-header.is-open .llp-header-mobile { display: block; }
@media (min-width: 768px) { .llp-header-mobile { display: none !important; } }

.llp-header-mobile-inner {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.llp-header-mobile a,
.llp-header-mobile a:link,
.llp-header-mobile a:visited {
    font-size: 0.875rem;
    letter-spacing: var(--llp-tracking-mid);
    color: var(--llp-fg-muted) !important;
    text-decoration: none !important;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    display: block;
}
.llp-header-mobile a:hover,
.llp-header-mobile a:focus,
.llp-header-mobile a:active,
.llp-header-mobile a.is-active {
    color: var(--llp-fg) !important;
}
.llp-header-mobile .llp-btn {
    margin-top: 0.5rem;
    align-self: flex-start;
    /* Explicit breathing room — overrides --sm compact padding for the mobile menu context. */
    padding: 0.9rem 1.75rem !important;
    font-size: 0.875rem !important;
    line-height: 1.2 !important;
}

/* ==========================================================================
   11. HERO (home) — background-image, never <img>
   ========================================================================== */
.llp-hero {
    position: relative;
    min-height: 92vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    direction: rtl;
    text-align: right;
}
@media (max-width: 767px) {
    .llp-hero { background-attachment: scroll !important; min-height: 70vh; min-height: 70svh; }
}
.llp-hero-overlay,
.llp-hero-piano,
.llp-hero-blueprint {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.llp-hero-overlay {
    background: linear-gradient(to top,
        var(--llp-bg) 0%,
        rgba(18, 18, 18, 0.7) 50%,
        rgba(18, 18, 18, 0.3) 100%);
}
.llp-hero-piano    { opacity: 0.6; }
.llp-hero-blueprint{ opacity: 0.3; }

.llp-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 80rem;
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
    width: 100%;
    display: grid;
    gap: 2.5rem;
    align-items: center;
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) {
    .llp-hero-inner { padding: 6rem 1.5rem; }
}
@media (min-width: 1024px) {
    .llp-hero-inner {
        padding: 6rem 2.5rem;
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }
    .llp-hero-content { grid-column: span 8 / span 8; }
    .llp-hero-stats   { grid-column: span 4 / span 4; }
}

.llp-hero-title {
    font-family: var(--llp-font-display);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--llp-fg);
    margin: 2.5rem 0 0;
    font-size: 2.25rem;          /* text-4xl */
}
@media (min-width: 768px)  { .llp-hero-title { margin-top: 3rem; } }
@media (min-width: 640px)  { .llp-hero-title { font-size: 3.75rem; } } /* text-6xl */
@media (min-width: 1024px) { .llp-hero-title { font-size: 4.5rem;  } } /* text-7xl */

.llp-hero-desc {
    margin-top: 2.5rem;
    max-width: 42rem;
    font-size: 1rem;
    color: var(--llp-fg-muted);
    line-height: 2;
}
@media (min-width: 1024px) { .llp-hero-desc { font-size: 1.125rem; } }

.llp-hero-cta-row {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.llp-hero-cta--primary {
    display: none;
}
@media (min-width: 640px) {
    .llp-hero-cta--primary { display: inline-flex; }
}

.llp-hero-stats {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
}
@media (min-width: 1024px) { .llp-hero-stats { display: flex; } }

.llp-hero-stat {
    border: 1px solid var(--llp-border);
    padding: 1.5rem;
    background: rgba(18, 18, 18, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.llp-hero-stat-value {
    font-size: 3rem;
    font-weight: 200;
    line-height: 1;
    color: var(--llp-fg);
}
.llp-hero-stat-label {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: var(--llp-tracking-wide);
    color: var(--llp-fg-muted);
}

/* Decorative vertical rules behind hero. */
.llp-hero-rules {
    position: absolute;
    inset: 0;
    pointer-events: none;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
}
@media (min-width: 1024px) { .llp-hero-rules { padding: 0 2.5rem; } }
.llp-hero-rules > span {
    width: 1px;
    background: rgba(54, 54, 54, 0.4);
    display: block;
}

/* ==========================================================================
   12. INNER HERO  (About/Services/Contact page hero)
   ========================================================================== */
.llp-inner-hero {
    position: relative;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.llp-inner-hero--short { min-height: 60vh; }
@media (max-width: 767px) {
    .llp-inner-hero        { background-attachment: scroll !important; min-height: 55vh; min-height: 55svh; }
    .llp-inner-hero--short { min-height: 45vh; min-height: 45svh; }
}
.llp-inner-hero-overlay,
.llp-inner-hero-bg,
.llp-inner-hero-tint {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.llp-inner-hero-tint    { background: rgba(18, 18, 18, 0.75); }
.llp-inner-hero-overlay { background: linear-gradient(to top, var(--llp-bg), rgba(18,18,18,0.8) 50%, rgba(18,18,18,0.4)); }

.llp-inner-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 80rem;
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
    width: 100%;
}
@media (min-width: 768px)  { .llp-inner-hero-inner { padding: 6rem 1.5rem; } }
@media (min-width: 1024px) { .llp-inner-hero-inner { padding: 6rem 2.5rem; } }

.llp-inner-hero-title {
    font-family: var(--llp-font-display);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--llp-fg);
    max-width: 56rem;
    margin: 2.5rem 0 0;
    font-size: 2.25rem;
}
@media (min-width: 768px)  { .llp-inner-hero-title { margin-top: 3rem; } }
@media (min-width: 640px)  { .llp-inner-hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .llp-inner-hero-title { font-size: 4.5rem;  } }

.llp-inner-hero-desc {
    margin-top: 2.5rem;
    max-width: 42rem;
    font-size: 1.125rem;
    color: var(--llp-fg-muted);
    line-height: 2;
}

/* ==========================================================================
   13. PHILOSOPHY  —  12-col split, 3 pillar cards on right
   ========================================================================== */
.llp-philosophy-inner {
    display: grid;
    gap: 3rem;
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 1024px) {
    .llp-philosophy-inner {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }
    .llp-philosophy-left  { grid-column: span 4 / span 4; }
    .llp-philosophy-right { grid-column: 6 / -1; }      /* col-start-6 col-span-7 */
}

.llp-philosophy-title {
    font-size: 2.25rem;
    line-height: 1.15;
    margin-top: 2.5rem;
}
@media (min-width: 768px)  { .llp-philosophy-title { margin-top: 3rem; } }
@media (min-width: 1024px) { .llp-philosophy-title { font-size: 3rem; } }

.llp-philosophy-desc {
    font-size: 1.125rem;
    color: var(--llp-fg-muted);
    line-height: 2;
}
.llp-philosophy-pillars {
    margin-top: 2.5rem;
    display: grid;
    gap: 1px;
    background: var(--llp-border);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 640px) {
    .llp-philosophy-pillars { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.llp-philosophy-pillar {
    background: var(--llp-bg);
    padding: 1.5rem;
}
.llp-philosophy-pillar-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--llp-fg);
}
.llp-philosophy-pillar-desc {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--llp-fg-muted);
    letter-spacing: var(--llp-tracking-mid);
}

/* ==========================================================================
   14. HARMONY  —  2-col, text + double-bordered image
   ========================================================================== */
.llp-harmony-inner {
    display: grid;
    gap: 4rem;
    align-items: center;
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 1024px) {
    .llp-harmony-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.llp-harmony-title {
    font-size: 2.25rem;
    line-height: 1.15;
    margin: 2.5rem 0 2.5rem;
}
@media (min-width: 768px)  { .llp-harmony-title { margin: 3rem 0 2.5rem; } }
@media (min-width: 1024px) { .llp-harmony-title { font-size: 3rem; } }
.llp-harmony-desc {
    font-size: 1.125rem;
    color: var(--llp-fg-muted);
    line-height: 2;
}
.llp-harmony-points {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.llp-harmony-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--llp-border);
    padding-bottom: 0.75rem;
}
.llp-harmony-point-mark {
    color: var(--llp-fg-muted);
    font-size: 0.75rem;
    letter-spacing: var(--llp-tracking-mid);
}
.llp-harmony-point-text {
    color: var(--llp-fg);
}

.llp-harmony-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}
.llp-harmony-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}
.llp-harmony-frame:hover img { transform: scale(1.05); }
.llp-harmony-frame-overlay,
.llp-harmony-frame-border-outer,
.llp-harmony-frame-border-inner {
    position: absolute;
    pointer-events: none;
}
.llp-harmony-frame-overlay {
    inset: 0;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.8), transparent);
}
.llp-harmony-frame-border-outer {
    inset: 0;
    border: 1px solid var(--llp-border);
}
.llp-harmony-frame-border-inner {
    inset: 1.5rem;
    border: 1px solid rgba(247, 247, 247, 0.2);
}
.llp-harmony-frame-caption {
    position: absolute;
    bottom: 2rem;
    inset-inline-start: 2rem;
    inset-inline-end: 2rem;
    color: var(--llp-fg);
    z-index: 1;
}
.llp-harmony-frame-caption-tag {
    font-size: 0.75rem;
    letter-spacing: var(--llp-tracking-wide);
    color: var(--llp-fg-muted);
    margin-bottom: 0.5rem;
}
.llp-harmony-frame-caption-title {
    font-size: 1.5rem;
    font-weight: 300;
}

/* ==========================================================================
   15. SERVICES PREVIEW & SERVICES GRID — architectural cards
   ========================================================================== */
.llp-services-head {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
    align-items: flex-start;          /* stop flex children from stretching full-width on mobile */
}
.llp-services-head > .llp-btn {
    align-self: flex-start;
    width: auto;
    max-width: 100%;
}
@media (min-width: 1024px) {
    .llp-services-head {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}
.llp-services-title {
    font-size: 2.25rem;
    line-height: 1.15;
    margin-top: 2.5rem;
}
@media (min-width: 768px)  { .llp-services-title { margin-top: 3rem; } }
@media (min-width: 1024px) { .llp-services-title { font-size: 3rem; } }

.llp-services-preview-grid {
    display: grid;
    gap: 1px;
    background: var(--llp-border);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 640px)  { .llp-services-preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .llp-services-preview-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.llp-services-full-grid {
    display: grid;
    gap: 1px;
    background: var(--llp-border);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px)  { .llp-services-full-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .llp-services-full-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* Architectural card — left rule grows on hover. */
.llp-card-arch {
    position: relative;
    background: var(--llp-card);
    padding: 2rem;
    transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s ease;
    overflow: hidden;
}
@media (min-width: 1024px) { .llp-card-arch { padding: 2.5rem; } }
.llp-card-arch::after {
    content: "";
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 2px;
    height: 0;
    background: var(--llp-fg);
    transition: height 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}
.llp-card-arch:hover {
    background: var(--llp-card-alt);
}
.llp-card-arch:hover::after { height: 100%; }

.llp-services-preview-card-icon {
    display: block;
    margin-bottom: 2rem;
    color: var(--llp-fg);
    font-size: 1.875rem;        /* text-3xl */
}
.llp-services-preview-card-eyebrow {
    font-size: 0.75rem;
    letter-spacing: var(--llp-tracking-wide);
    color: var(--llp-fg-muted);
    margin-bottom: 0.75rem;
}
.llp-services-preview-card-title {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--llp-fg);
    margin-bottom: 0.75rem;
}
.llp-services-preview-card-desc {
    font-size: 0.875rem;
    color: var(--llp-fg-muted);
}

/* Full services-grid card has an index number top-right. */
.llp-services-full-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.llp-services-full-card-icon {
    color: var(--llp-fg);
    font-size: 1.875rem;
}
.llp-services-full-card-num {
    font-size: 0.75rem;
    color: var(--llp-fg-muted);
    letter-spacing: var(--llp-tracking-mid);
}
.llp-services-full-card-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}
.llp-services-full-card-desc {
    font-size: 0.875rem;
    color: var(--llp-fg-muted);
}
.llp-services-full-card-rule {
    margin-top: 2rem;
    height: 1px;
    background: var(--llp-border);
    transition: background 0.5s ease;
}
.llp-services-full-card:hover .llp-services-full-card-rule {
    background: var(--llp-fg);
}

/* ==========================================================================
   16. CONTACT CTA — centered, big italic emphasis line
   ========================================================================== */
.llp-contact-cta {
    padding: 8rem 0;
    text-align: center;
    position: relative;
    background: var(--llp-bg);          /* lock dark theme — never inherit theme/white */
    color: var(--llp-fg);
    overflow: hidden;
    border-top: 1px solid var(--llp-border);
}
.llp-contact-cta-divider {
    position: absolute;
    inset-block: 0;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    width: 1px;
    background: var(--llp-border);
}
.llp-contact-cta-inner {
    position: relative;
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}
.llp-contact-cta-title {
    font-size: 2.25rem;
    line-height: 1.15;
    margin-top: 2.5rem;
}
@media (min-width: 768px)  { .llp-contact-cta-title { margin-top: 3rem; } }
@media (min-width: 1024px) { .llp-contact-cta-title { font-size: 3.75rem; } }
.llp-contact-cta-desc {
    margin: 2.5rem auto 0;
    max-width: 42rem;
    font-size: 1.125rem;
    color: var(--llp-fg-muted);
    line-height: 2;
    text-align: center !important;
}
.llp-contact-cta-title,
.llp-contact-cta-inner .llp-eyebrow {
    text-align: center !important;
}
.llp-contact-cta-btn-row {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

/* ==========================================================================
   17. ABOUT — image left, content right (2 cols)
   ========================================================================== */
.llp-about-inner {
    display: grid;
    gap: 4rem;
    align-items: center;
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 1024px) {
    .llp-about-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.llp-about-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}
.llp-about-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}
.llp-about-frame:hover img { transform: scale(1.05); }
.llp-about-frame-border-outer,
.llp-about-frame-border-inner {
    position: absolute;
    pointer-events: none;
}
.llp-about-frame-border-outer {
    inset: 0;
    border: 1px solid var(--llp-border);
}
.llp-about-frame-border-inner {
    inset: 1.5rem;
    border: 1px solid rgba(247, 247, 247, 0.2);
}

.llp-about-title {
    font-size: 2.25rem;
    line-height: 1.15;
    margin: 2.5rem 0 2.5rem;
}
@media (min-width: 768px)  { .llp-about-title { margin: 3rem 0 2.5rem; } }
@media (min-width: 1024px) { .llp-about-title { font-size: 3rem; } }
.llp-about-desc {
    font-size: 1.125rem;
    color: var(--llp-fg-muted);
    line-height: 2;
}
.llp-about-stats {
    margin-top: 2.5rem;
    display: grid;
    gap: 1px;
    background: var(--llp-border);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.llp-about-stat {
    background: var(--llp-bg);
    padding: 1.5rem;
}
.llp-about-stat-value {
    font-size: 2.25rem;
    font-weight: 200;
    color: var(--llp-fg);
    line-height: 1;
}
.llp-about-stat-label {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: var(--llp-tracking-mid);
    color: var(--llp-fg-muted);
}

/* ==========================================================================
   18. VISION + MISSION — 12-col split with side icon
   ========================================================================== */
.llp-vm-inner {
    display: grid;
    gap: 3rem;
    align-items: flex-start;
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 1024px) {
    .llp-vm-inner {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }
    .llp-vm-left  { grid-column: span 4 / span 4; }
    .llp-vm-right { grid-column: 6 / -1; }
}
.llp-vm-icon {
    display: block;
    margin-bottom: 1.5rem;
    color: var(--llp-fg);
}
.llp-vm-icon svg { width: 2.25rem; height: 2.25rem; }
.llp-vm-title {
    font-size: 2.25rem;
    line-height: 1.15;
    margin-top: 2.5rem;
}
@media (min-width: 768px)  { .llp-vm-title { margin-top: 3rem; } }
@media (min-width: 1024px) { .llp-vm-title { font-size: 3rem; } }
.llp-vm-desc {
    font-size: 1.125rem;
    color: var(--llp-fg-muted);
    line-height: 2;
}

.llp-vm-quote {
    margin-top: 2.5rem;
    padding-inline-start: 1.5rem;
    border-inline-start: 2px solid rgba(247, 247, 247, 0.3);
}
.llp-vm-quote p {
    font-size: 1.25rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(247, 247, 247, 0.9);
    line-height: 1.6;
}
.llp-mission-points {
    margin-top: 2.5rem;
    display: grid;
    gap: 1px;
    background: var(--llp-border);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 640px) {
    .llp-mission-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.llp-mission-point {
    background: var(--llp-bg);
    padding: 1.25rem;
    font-size: 0.875rem;
    color: var(--llp-fg-muted);
}

/* ==========================================================================
   19. PROCESS — horizontal 6-step timeline
   ========================================================================== */
.llp-process-head {
    text-align: center;
    margin-bottom: 5rem;
}
.llp-process-title {
    font-size: 2.25rem;
    margin-top: 2.5rem;
}
@media (min-width: 768px)  { .llp-process-title { margin-top: 3rem; } }
@media (min-width: 1024px) { .llp-process-title { font-size: 3rem; } }

.llp-process-rail {
    position: relative;
}
.llp-process-line {
    display: none;
    position: absolute;
    top: 3rem;
    inset-inline-start: 0;
    inset-inline-end: 0;
    height: 1px;
    background: var(--llp-border);
}
@media (min-width: 1024px) { .llp-process-line { display: block; } }

.llp-process-grid {
    display: grid;
    gap: 1px;
    background: var(--llp-border);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 640px)  { .llp-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) {
    .llp-process-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        background: transparent;
        gap: 0;
    }
}

.llp-process-step {
    position: relative;
    background: var(--llp-bg);
    padding: 1.5rem;
    cursor: default;
    transition: var(--llp-transition);
}
@media (min-width: 1024px) {
    .llp-process-step {
        background: transparent;
        padding: 0 1rem;
    }
}

.llp-process-dot {
    display: none;
    position: absolute;
    top: 3rem;
    inset-inline-start: 50%;
    transform: translateX(50%);
    width: 0.75rem;
    height: 0.75rem;
    border: 1px solid var(--llp-fg);
    background: var(--llp-bg);
    transition: var(--llp-transition);
}
@media (min-width: 1024px) { .llp-process-dot { display: block; } }

.llp-process-step:hover .llp-process-dot {
    background: var(--llp-accent-arch);
    border-color: var(--llp-accent-arch);
    box-shadow:
        0 0 0 4px var(--llp-accent-arch-glow-3),
        0 0 24px var(--llp-accent-arch-glow-1),
        0 0 48px var(--llp-accent-arch-glow-2);
    transform: translateX(50%) scale(1.4);
}

.llp-process-step-num {
    font-size: 0.75rem;
    letter-spacing: var(--llp-tracking-wide);
    color: var(--llp-fg-muted);
    margin-bottom: 1rem;
    transition: color 0.5s ease;
}
@media (min-width: 1024px) { .llp-process-step-num { margin-top: 5rem; } }
.llp-process-step:hover .llp-process-step-num { color: var(--llp-accent-arch); }

.llp-process-step-title {
    font-size: 1.125rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    transition: transform 0.5s ease;
}
.llp-process-step:hover .llp-process-step-title { transform: translateY(-4px); }

.llp-process-step-desc {
    font-size: 0.75rem;
    color: var(--llp-fg-muted);
    transition: opacity 0.5s ease;
    line-height: 1.6;
}
.llp-process-step:hover .llp-process-step-desc { opacity: 0.9; }

/* ==========================================================================
   20. CONTACT FORM
   ========================================================================== */
.llp-contact-form-section {
    position: relative;
    padding: 6rem 0;
    background: var(--llp-bg);
    border-top: 1px solid var(--llp-border);
    overflow: hidden;
}
.llp-contact-form-inner {
    position: relative;
    max-width: 60rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 1024px) { .llp-contact-form-inner { padding: 0 2.5rem; } }

.llp-contact-form-head {
    margin-bottom: 3rem;
}
.llp-contact-form-title {
    font-size: 1.875rem;
    margin: 2.5rem 0 2rem;
}
@media (min-width: 768px)  { .llp-contact-form-title { margin: 3rem 0 2rem; } }
@media (min-width: 1024px) { .llp-contact-form-title { font-size: 2.25rem; } }
.llp-contact-form-desc {
    color: var(--llp-fg-muted);
}

/* Form alert */
.llp-form-alert {
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.5;
    border: 1px solid;
}
.llp-form-alert--success {
    background: rgba(51, 204, 133, 0.08);
    border-color: rgba(51, 204, 133, 0.4);
    color: var(--llp-fg);
}
.llp-form-alert--error {
    background: rgba(220, 38, 38, 0.08);
    border-color: rgba(220, 38, 38, 0.4);
    color: var(--llp-fg);
}

/* Success-state card (shown when ?contact=success appears) */
.llp-form-thanks {
    border: 1px solid var(--llp-border);
    padding: 3rem;
    text-align: center;
    background: var(--llp-card);
}
.llp-form-thanks-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
}
.llp-form-thanks-desc {
    color: var(--llp-fg-muted);
}

/* Form fields */
.llp-form {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 640px) {
    .llp-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.llp-form-field { display: flex; flex-direction: column; }
.llp-form-field--full { grid-column: 1 / -1; }

.llp-form-field-label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    letter-spacing: var(--llp-tracking-wide);
    color: var(--llp-fg-muted);
}

.llp-form-input,
.llp-form-select,
.llp-form-textarea {
    width: 100%;
    background: var(--llp-card);
    border: 1px solid var(--llp-border);
    color: var(--llp-fg);
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    font-family: var(--llp-font);
    transition: border-color 0.3s ease;
    outline: none;
    border-radius: 0;
}
.llp-form-input:focus,
.llp-form-select:focus,
.llp-form-textarea:focus {
    border-color: var(--llp-fg);
}
.llp-form-input::placeholder,
.llp-form-textarea::placeholder {
    color: var(--llp-fg-soft);
}
.llp-form-textarea { resize: none; min-height: 8rem; }

.llp-form-submit-row {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}
.llp-form-submit-row .llp-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ==========================================================================
   21. CONTACT INFO  —  3 icon cards
   ========================================================================== */
.llp-contact-info-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) {
    .llp-contact-info-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.llp-contact-info-card {
    background: var(--llp-card);
    border: 1px solid var(--llp-border);
    padding: 2.5rem;
    text-align: center;
    transition: border-color 0.4s ease, background 0.4s ease;
}
.llp-contact-info-card:hover {
    border-color: var(--llp-border-mid);
    background: var(--llp-card-alt);
}
.llp-contact-info-icon {
    display: inline-flex;
    margin: 0 auto 1.5rem;
    color: var(--llp-fg);
}
.llp-contact-info-icon svg { width: 1.5rem; height: 1.5rem; }
.llp-contact-info-label {
    font-size: 0.75rem;
    letter-spacing: var(--llp-tracking-wide);
    color: var(--llp-fg-muted);
    margin-bottom: 0.75rem;
}
.llp-contact-info-value {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--llp-fg);
}

/* ==========================================================================
   22. FOOTER
   ========================================================================== */
.llp-footer {
    position: relative;
    border-top: 1px solid var(--llp-border);
    background: var(--llp-bg);
    overflow: hidden;
}
.llp-footer-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.4;
}
.llp-footer-inner {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
    padding: 5rem 1.5rem 1.5rem;
}
@media (min-width: 1024px) { .llp-footer-inner { padding: 5rem 2.5rem 1.5rem; } }

.llp-footer-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) {
    .llp-footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}
.llp-footer-brand img {
    height: 3rem;
    width: auto;
    margin-bottom: 1.5rem;
    filter: invert(1);
    max-width: 100%;
}
.llp-footer-brand-desc {
    font-size: 0.875rem;
    color: var(--llp-fg-muted);
    max-width: 32rem;
    line-height: 1.7;
}
.llp-footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.llp-footer-social-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--llp-border);
    color: var(--llp-fg);
    transition: border-color 0.3s ease;
    text-decoration: none;
}
.llp-footer-social-icon:hover { border-color: var(--llp-fg); }
.llp-footer-social-icon svg { width: 1rem; height: 1rem; }

.llp-footer-col-heading {
    font-size: 0.75rem;
    letter-spacing: var(--llp-tracking-wide);
    color: var(--llp-fg-muted);
    margin-bottom: 1.25rem;
    font-weight: 400;
}
.llp-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.llp-footer-list a,
.llp-footer-list a:link,
.llp-footer-list a:visited {
    font-size: 0.875rem;
    color: var(--llp-fg-muted) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}
.llp-footer-list a:hover,
.llp-footer-list a:focus {
    color: var(--llp-fg) !important;
}
.llp-footer-contact-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--llp-fg-muted);
}
.llp-footer-contact-row .llp-contact-info-icon {
    color: var(--llp-fg-muted);
    margin: 0;                 /* reset margin inherited from contact-info-card context */
    flex-shrink: 0;
}
.llp-footer-contact-row .llp-contact-info-icon svg { width: 0.875rem; height: 0.875rem; }

.llp-footer-bar {
    border-top: 1px solid var(--llp-border);
    margin-top: 4rem;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--llp-fg-muted);
    letter-spacing: var(--llp-tracking-mid);
}
@media (min-width: 640px) { .llp-footer-bar { flex-direction: row; } }

.llp-footer-agency-link,
.llp-footer-agency-link:link,
.llp-footer-agency-link:visited {
    color: var(--llp-fg) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}
.llp-footer-agency-link:hover {
    color: var(--llp-fg-muted) !important;
}

/* ==========================================================================
   23. RTL-specific tweaks
   ========================================================================== */
body.rtl .llp-card-arch::after,
html[dir="rtl"] .llp-card-arch::after {
    /* The accent rule stays on the "start" edge — inset-inline-start handles both LTR/RTL. */
}

/* LTR for phone/email even in RTL context. */
.llp-ltr,
[dir="ltr"] {
    direction: ltr;
    unicode-bidi: embed;
    display: inline-block;
}
