/* ==========================================================================
   CLL Core — block styles. Tokens fall back to brand defaults so the blocks
   render correctly in any theme; the CLL Corporate theme overrides via theme.json.
   Mobile-first. No external fonts, icons or frameworks.
   ========================================================================== */

:root {
	--cll-gold: var(--wp--preset--color--gold, #f4a526);
	--cll-gold-deep: var(--wp--preset--color--gold-deep, #c9840b);
	--cll-gold-soft: var(--wp--preset--color--gold-soft, #fff4dd);
	--cll-ink: var(--wp--preset--color--ink, #111318);
	--cll-charcoal: var(--wp--preset--color--charcoal, #1c1e26);
	--cll-navy: var(--wp--preset--color--navy, #0e1a3a);
	--cll-slate: var(--wp--preset--color--slate, #5a6172);
	--cll-mist: var(--wp--preset--color--mist, #f3f4f8);
	--cll-line: var(--wp--preset--color--line, #e2e5ec);
	--cll-white: #ffffff;
	--cll-violet: #4b2a7a;
	--cll-font: var(--wp--preset--font-family--barlow, "Barlow", "Segoe UI", system-ui, -apple-system, sans-serif);
	--cll-radius: 14px;
	--cll-radius-sm: 8px;
	--cll-container: 1180px;
	--cll-gutter: 16px;
	--cll-section: clamp(56px, 8vw, 104px);
	--cll-shadow: 0 10px 30px rgba(17, 19, 24, 0.08);
	--cll-shadow-lg: 0 24px 60px rgba(17, 19, 24, 0.16);
	--cll-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}
@media (min-width: 720px) { :root { --cll-gutter: 32px; } }

/* ---------- primitives ---------- */
.cll-block { font-family: var(--cll-font); color: var(--cll-ink); padding-block: var(--cll-section); position: relative; }
.cll-block *, .cll-block *::before, .cll-block *::after { box-sizing: border-box; }
.cll-container { width: min(100% - var(--cll-gutter) * 2, var(--cll-container)); margin-inline: auto; }
.cll-block ul, .cll-block ol, .cll-block dl { list-style: none; margin: 0; padding: 0; }
.cll-block img { max-width: 100%; height: auto; display: block; }
.cll-block a { color: inherit; }
.cll-block a:focus-visible, .cll-block button:focus-visible { outline: 3px solid var(--cll-gold); outline-offset: 3px; border-radius: 4px; }

.cll-icon { width: 1.15em; height: 1.15em; flex: none; }

.cll-eyebrow { margin: 0 0 12px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cll-gold-deep); display: inline-flex; align-items: center; gap: 10px; }
.cll-eyebrow::before { content: ""; width: 22px; height: 3px; background: var(--cll-gold); border-radius: 2px; }
.cll-eyebrow--light { color: var(--cll-gold); }

.cll-h1 { margin: 0 0 20px; font-size: clamp(2.3rem, 6.2vw, 4.1rem); line-height: 1.02; letter-spacing: -0.025em; font-weight: 800; text-wrap: balance; }
.cll-h2 { margin: 0 0 14px; font-size: clamp(1.8rem, 3.6vw, 2.6rem); line-height: 1.08; letter-spacing: -0.02em; font-weight: 800; text-wrap: balance; }
.cll-h3 { margin: 0 0 10px; font-size: clamp(1.35rem, 2.4vw, 1.75rem); line-height: 1.12; letter-spacing: -0.015em; font-weight: 800; }
.cll-h4 { margin: 0 0 8px; font-size: 1.15rem; line-height: 1.25; font-weight: 700; }
.cll-lede { margin: 0; font-size: clamp(1.02rem, 1.4vw, 1.18rem); line-height: 1.6; color: var(--cll-slate); max-width: 62ch; }
.cll-lede--light { color: rgba(255, 255, 255, 0.78); }
.cll-intro { margin-bottom: clamp(28px, 4vw, 48px); max-width: 760px; }
.cll-intro--center { margin-inline: auto; text-align: center; }
.cll-intro--center .cll-lede { margin-inline: auto; }
.cll-empty { padding: 20px; border: 1px dashed var(--cll-line); border-radius: var(--cll-radius-sm); color: var(--cll-slate); }

.cll-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 22px; border-radius: 999px; font: inherit; font-weight: 700; font-size: 1rem; line-height: 1; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: transform 0.2s var(--cll-ease), background 0.2s, color 0.2s, box-shadow 0.2s; min-height: 48px; }
.cll-btn:hover { transform: translateY(-1px); }
.cll-btn:active { transform: translateY(0); }
.cll-block .cll-btn--gold, .cll-btn--gold { background: var(--cll-gold); color: var(--cll-ink); box-shadow: 0 8px 20px rgba(244, 165, 38, 0.32); }
.cll-block .cll-btn--gold:hover, .cll-btn--gold:hover { background: #ffb63a; }
.cll-block .cll-btn--ink, .cll-btn--ink { background: var(--cll-ink); color: #fff; }
.cll-block .cll-btn--ink:hover, .cll-btn--ink:hover { background: var(--cll-charcoal); }
.cll-block .cll-btn--ghost-light, .cll-btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.cll-block .cll-btn--ghost-light:hover, .cll-btn--ghost-light:hover { border-color: #fff; background: rgba(255, 255, 255, 0.06); }
.cll-btn--block { width: 100%; }
.cll-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.cll-tag { display: inline-block; padding: 6px 10px; border-radius: 6px; background: var(--cll-ink); color: var(--cll-gold); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1; }

.cll-checklist { display: grid; gap: 10px; margin: 18px 0 0 !important; }
.cll-checklist li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.45; }
.cll-checklist .cll-icon { color: var(--cll-gold-deep); margin-top: 2px; }

.cll-facts { display: grid; gap: 10px 20px; }
.cll-facts div { display: grid; grid-template-columns: 120px 1fr; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--cll-line); }
.cll-facts dt { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cll-slate); }
.cll-facts dd { margin: 0; font-weight: 600; word-break: break-word; }
.cll-facts--tight div { padding: 8px 0; }

.cll-stat { margin: 0; display: grid; line-height: 1.05; }
.cll-stat strong { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em; }
.cll-stat span { font-size: 0.82rem; color: var(--cll-slate); font-weight: 600; }

/* ---------- Hero ---------- */
.cll-hero { background: var(--cll-ink); color: #fff; overflow: hidden; padding-block: clamp(56px, 9vw, 120px) clamp(48px, 7vw, 96px); isolation: isolate; }
.cll-hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.cll-hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse at 70% 40%, #000 20%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse at 70% 40%, #000 20%, transparent 75%); }
.cll-hero__orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; }
.cll-hero__orb--1 { width: 520px; height: 520px; right: -140px; top: -160px; background: radial-gradient(circle, rgba(244,165,38,0.55), transparent 65%); }
.cll-hero__orb--2 { width: 420px; height: 420px; left: -180px; bottom: -220px; background: radial-gradient(circle, rgba(75,42,122,0.7), transparent 65%); }
.cll-hero__inner { display: grid; gap: 28px; align-items: center; }
.cll-hero .cll-h1 { color: #fff; }
.cll-hero .cll-accent { color: var(--cll-gold); position: relative; white-space: nowrap; }
.cll-hero .cll-accent::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0.04em; height: 0.16em; background: var(--cll-gold); opacity: 0.35; border-radius: 4px; z-index: -1; }
.cll-hero__products { display: grid; gap: 12px; margin-top: 36px !important; }
.cll-hero__product a { display: grid; gap: 10px; padding: 16px 18px; border-radius: var(--cll-radius-sm); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); text-decoration: none; transition: background 0.2s, border-color 0.2s, transform 0.2s var(--cll-ease); }
.cll-hero__product a:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); transform: translateX(3px); }
.cll-hero__product-meta { display: grid; gap: 2px; min-width: 0; }
.cll-hero__product-eyebrow { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); font-weight: 700; }
.cll-hero__product-name { font-weight: 800; font-size: 1.15rem; }
.cll-hero__product-cta { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--cll-gold); white-space: nowrap; font-size: 0.92rem; }
.cll-hero__product--violet .cll-hero__product-cta { color: #c9b3ff; }
.cll-hero__visual { display: grid; justify-items: center; gap: 10px; }
.cll-hero__hint { margin: 0; font-size: 0.78rem; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
@media (hover: none) { .cll-hero__hint { display: none; } }

.cll-logo-particles { position: relative; width: min(100%, 260px); aspect-ratio: var(--cll-logo-ratio, 1 / 1); touch-action: pan-y; }
.cll-logo-particles__canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: none; z-index: 2; cursor: crosshair; }
.cll-logo-particles__fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; transition: opacity 0.3s; pointer-events: none; z-index: 1; filter: drop-shadow(0 20px 40px rgba(244,165,38,0.25)); }
.cll-logo-particles__glow { position: absolute; width: 180px; height: 180px; margin: -90px 0 0 -90px; border-radius: 50%; background: radial-gradient(circle, rgba(244,165,38,0.35), transparent 65%); pointer-events: none; opacity: 0; transition: opacity 0.25s; filter: blur(6px); }
.cll-logo-particles.is-ready .cll-logo-particles__canvas { display: block; }

@media (min-width: 900px) {
	.cll-logo-particles { width: min(100%, 420px); }
	.cll-hero__inner { grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr); gap: 56px; }
	.cll-hero__products { grid-template-columns: 1fr 1fr; }
}

/* ---------- Credentials ---------- */
.cll-credentials { padding-block: 0; background: var(--cll-white); }
.cll-credentials--strip .cll-container { margin-top: 24px; }
@media (min-width: 900px) { .cll-credentials--strip .cll-container { margin-top: 0; transform: translateY(-50%); } }
@media (max-width: 719px) { .cll-credentials__item:last-child:nth-child(odd) { grid-column: span 2; border-right: 0; } }
.cll-credentials__strip { display: grid; grid-template-columns: repeat(2, 1fr); background: #fff; border: 1px solid var(--cll-line); border-radius: var(--cll-radius); box-shadow: var(--cll-shadow-lg); overflow: hidden; }
.cll-credentials__item { padding: 16px 18px; border-bottom: 1px solid var(--cll-line); border-right: 1px solid var(--cll-line); }
.cll-credentials__item dt { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cll-slate); }
.cll-credentials__item dd { margin: 4px 0 0; font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.cll-credentials__item:nth-child(2n) { border-right: 0; }
@media (min-width: 720px) {
	.cll-credentials__strip { grid-template-columns: repeat(4, 1fr); }
	.cll-credentials__item:nth-child(2n) { border-right: 1px solid var(--cll-line); }
	.cll-credentials__item:nth-child(4n) { border-right: 0; }
}
@media (min-width: 1080px) {
	.cll-credentials__strip { grid-template-columns: repeat(7, 1fr); }
	.cll-credentials__item { border-bottom: 0; border-right: 1px solid var(--cll-line) !important; }
	.cll-credentials__item:last-child { border-right: 0 !important; }
}
.cll-credentials--cards { padding-block: var(--cll-section); }
.cll-credentials__cards { display: grid; gap: 24px; }
.cll-credentials__card { background: #fff; border: 1px solid var(--cll-line); border-radius: var(--cll-radius); padding: 28px; box-shadow: var(--cll-shadow); }
.cll-naics li { display: grid; grid-template-columns: 74px 1fr auto; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--cll-line); }
.cll-naics code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-weight: 700; }
.cll-naics em { font-style: normal; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cll-gold-deep); background: var(--cll-gold-soft); padding: 4px 8px; border-radius: 4px; }
@media (min-width: 900px) { .cll-credentials__cards { grid-template-columns: 1fr 1.2fr; } }

/* ---------- Products ---------- */
.cll-products { background: var(--cll-mist); }
.cll-products__grid { display: grid; gap: 28px; }
.cll-product { display: grid; background: #fff; border-radius: var(--cll-radius); overflow: hidden; border: 1px solid var(--cll-line); box-shadow: var(--cll-shadow); }
.cll-product__media { position: relative; aspect-ratio: 16 / 10; background: var(--cll-ink); overflow: hidden; }
.cll-product__media img, .cll-product__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--cll-ease); }
.cll-product:hover .cll-product__media img { transform: scale(1.03); }
.cll-product__placeholder { display: grid; place-items: center; height: 100%; font-size: 5rem; font-weight: 800; color: var(--cll-gold); background: linear-gradient(135deg, var(--cll-charcoal), var(--cll-ink)); }
.cll-product__host { position: absolute; left: 14px; bottom: 14px; padding: 6px 10px; border-radius: 6px; background: rgba(17,19,24,0.75); color: #fff; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; backdrop-filter: blur(6px); }
.cll-product__body { padding: 26px 24px 28px; display: grid; align-content: start; }
.cll-product__text { margin: 0; color: var(--cll-slate); line-height: 1.55; }
.cll-product__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--cll-line); }
.cll-product--violet .cll-product__media { background: var(--cll-violet); }
.cll-product--violet .cll-eyebrow { color: var(--cll-violet); }
.cll-product--violet .cll-eyebrow::before { background: var(--cll-violet); }
@media (max-width: 479px) { .cll-product__foot .cll-btn { width: 100%; } }
@media (min-width: 860px) { .cll-products__grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Capabilities ---------- */
.cll-capabilities__grid { display: grid; gap: 18px; }
.cll-capability { position: relative; padding: 26px 24px 24px; background: #fff; border: 1px solid var(--cll-line); border-radius: var(--cll-radius); transition: transform 0.25s var(--cll-ease), box-shadow 0.25s, border-color 0.25s; }
.cll-capability:hover { transform: translateY(-3px); box-shadow: var(--cll-shadow); border-color: var(--cll-gold); }
.cll-capability__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: var(--cll-ink); color: var(--cll-gold); margin-bottom: 18px; }
.cll-capability__icon .cll-icon { width: 24px; height: 24px; }
.cll-capability__index { position: absolute; top: 22px; right: 22px; font-size: 0.8rem; font-weight: 800; color: var(--cll-line); letter-spacing: 0.08em; }
.cll-capability p { margin: 0; color: var(--cll-slate); line-height: 1.55; }
@media (min-width: 640px) { .cll-capabilities__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .cll-capabilities__grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Portfolio ---------- */
.cll-portfolio { background: var(--cll-mist); }
.cll-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: -12px 0 28px; }
.cll-filter { font: inherit; font-weight: 700; font-size: 0.86rem; padding: 9px 14px; border-radius: 999px; border: 1px solid var(--cll-line); background: #fff; color: var(--cll-slate); cursor: pointer; transition: all 0.2s; min-height: 40px; }
.cll-filter:hover { border-color: var(--cll-gold); color: var(--cll-ink); }
.cll-filter.is-active { background: var(--cll-ink); border-color: var(--cll-ink); color: var(--cll-gold); }
.cll-portfolio__grid { display: grid; gap: 20px; }
.cll-project { display: grid; background: #fff; border: 1px solid var(--cll-line); border-radius: var(--cll-radius); overflow: hidden; transition: transform 0.25s var(--cll-ease), box-shadow 0.25s; }
.cll-project:hover { transform: translateY(-3px); box-shadow: var(--cll-shadow); }
.cll-project[hidden] { display: none; }
.cll-project__media { position: relative; aspect-ratio: 16 / 9; background: var(--cll-ink); overflow: hidden; }
.cll-project__media img { width: 100%; height: 100%; object-fit: cover; }
.cll-project__placeholder { display: grid; place-items: center; height: 100%; color: var(--cll-gold); background: linear-gradient(135deg, var(--cll-charcoal), var(--cll-ink)); }
.cll-project__placeholder .cll-icon { width: 48px; height: 48px; opacity: 0.6; }
.cll-project__media .cll-tag { position: absolute; left: 12px; top: 12px; }
.cll-project__body { padding: 20px 20px 22px; display: grid; gap: 6px; align-content: start; }
.cll-project__body .cll-h4 a { text-decoration: none; }
.cll-project__body .cll-h4 a:hover { color: var(--cll-gold-deep); }
.cll-project__meta { margin: 0; font-size: 0.82rem; font-weight: 700; color: var(--cll-slate); letter-spacing: 0.02em; }
.cll-project__text { margin: 4px 0 0; color: var(--cll-slate); line-height: 1.5; font-size: 0.95rem; }
.cll-project__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 0.82rem; font-weight: 700; color: var(--cll-gold-deep); }
.cll-project.is-featured .cll-project__media::after { content: "Featured"; position: absolute; right: 12px; top: 12px; padding: 6px 10px; border-radius: 6px; background: var(--cll-gold); color: var(--cll-ink); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
@media (min-width: 640px) { .cll-portfolio__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .cll-portfolio__grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Partners ---------- */
.cll-partners__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.cll-partner__inner { display: grid; place-items: center; gap: 6px; min-height: 96px; padding: 18px; background: #fff; border: 1px solid var(--cll-line); border-radius: var(--cll-radius-sm); text-decoration: none; transition: border-color 0.2s, transform 0.2s var(--cll-ease); }
a.cll-partner__inner:hover { border-color: var(--cll-gold); transform: translateY(-2px); }
.cll-partner__inner img { max-height: 44px; width: auto; object-fit: contain; filter: grayscale(1); opacity: 0.8; transition: filter 0.2s, opacity 0.2s; }
.cll-partner__inner:hover img { filter: none; opacity: 1; }
.cll-partner__name { font-weight: 800; font-size: 1.05rem; text-align: center; letter-spacing: -0.01em; }
.cll-partner__kind { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cll-slate); }
@media (min-width: 640px) { .cll-partners__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .cll-partners__grid { grid-template-columns: repeat(4, 1fr); } }
.cll-partner { display: grid; } .cll-partner__inner { height: 100%; }

/* ---------- Capability statement ---------- */
.cll-capability-statement { background: var(--cll-ink); color: #fff; }
.cll-capability-statement .cll-h2, .cll-capability-statement .cll-h3 { color: #fff; }
.cll-capability-statement .cll-lede { color: rgba(255,255,255,0.75); }
.cll-capability-statement .cll-eyebrow { color: var(--cll-gold); }
.cll-statement__inner { display: grid; gap: 40px; align-items: start; }
.cll-diffs { display: grid; gap: 18px; }
.cll-diffs li { display: flex; gap: 14px; align-items: flex-start; }
.cll-diffs .cll-icon { color: var(--cll-gold); margin-top: 3px; }
.cll-diffs strong { display: block; font-size: 1.05rem; margin-bottom: 2px; }
.cll-diffs span { color: rgba(255,255,255,0.72); line-height: 1.5; }
.cll-statement__panel { background: #fff; color: var(--cll-ink); border-radius: var(--cll-radius); padding: 26px; box-shadow: var(--cll-shadow-lg); display: grid; gap: 22px; }
.cll-statement__doc { display: grid; gap: 14px; padding-bottom: 22px; border-bottom: 1px solid var(--cll-line); }
.cll-statement__badge { display: inline-flex; align-items: center; gap: 6px; width: max-content; padding: 6px 10px; border-radius: 6px; background: var(--cll-gold-soft); color: var(--cll-gold-deep); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.cll-statement__doc .cll-h3 { color: var(--cll-ink); margin: 0; }
.cll-statement__doc .cll-h3 span { color: var(--cll-slate); font-weight: 600; font-size: 0.85em; }
.cll-statement__poc p { margin: 0; }
.cll-statement__poc-name { font-weight: 800; font-size: 1.05rem; }
.cll-statement__poc-name span { display: block; font-weight: 600; font-size: 0.85rem; color: var(--cll-slate); }
.cll-statement__poc a { color: var(--cll-gold-deep); font-weight: 700; text-decoration: none; }
.cll-statement__poc a:hover { text-decoration: underline; }
@media (min-width: 900px) { .cll-statement__inner { grid-template-columns: 1.1fr 0.9fr; gap: 64px; } .cll-statement__panel { padding: 32px; position: sticky; top: 96px; } }

/* ---------- Contact ---------- */
.cll-contact__grid { display: grid; gap: 32px; }
.cll-form { display: grid; gap: 16px; background: #fff; border: 1px solid var(--cll-line); border-radius: var(--cll-radius); padding: 24px; box-shadow: var(--cll-shadow); }
.cll-form__row { display: grid; gap: 16px; }
.cll-field { display: grid; gap: 6px; }
.cll-field label { font-size: 0.86rem; font-weight: 700; color: var(--cll-ink); }
.cll-field label span { color: var(--cll-gold-deep); }
.cll-field input, .cll-field select, .cll-field textarea { font: inherit; font-size: 1rem; padding: 12px 14px; border: 1.5px solid var(--cll-line); border-radius: var(--cll-radius-sm); background: #fff; color: var(--cll-ink); width: 100%; min-height: 48px; transition: border-color 0.2s, box-shadow 0.2s; }
.cll-field textarea { min-height: 150px; resize: vertical; }
.cll-field input:focus, .cll-field select:focus, .cll-field textarea:focus { outline: none; border-color: var(--cll-gold); box-shadow: 0 0 0 4px rgba(244,165,38,0.2); }
.cll-form__hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.cll-form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 4px; }
.cll-form__note { margin: 0; font-size: 0.88rem; color: var(--cll-slate); }
.cll-form__note a { color: var(--cll-gold-deep); font-weight: 700; text-decoration: none; }
.cll-form__status { margin: 0; min-height: 1.4em; font-weight: 600; font-size: 0.92rem; }
.cll-form__status.is-success { color: #1a7f4b; }
.cll-form__status.is-error { color: #b42318; }
.cll-booking { display: grid; gap: 10px; align-content: start; background: var(--cll-mist); border-radius: var(--cll-radius); padding: 24px; border: 1px solid var(--cll-line); }
.cll-booking__meta { margin: 0 0 8px; color: var(--cll-slate); font-size: 0.92rem; }
.cll-booking__embed { display: grid; gap: 10px; }
.cll-booking__hint { margin: 0; font-size: 0.8rem; color: var(--cll-slate); }
.cll-booking__frame { width: 100%; min-height: 620px; border: 0; border-radius: var(--cll-radius-sm); background: #fff; }
@media (min-width: 640px) { .cll-form__row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .cll-contact__grid { grid-template-columns: 1.25fr 0.75fr; align-items: start; } .cll-contact__grid--single { grid-template-columns: minmax(0, 820px); } }

/* ---------- editor preview ---------- */
.cll-editor-preview .cll-block { pointer-events: none; }
.cll-editor-preview .cll-credentials--strip .cll-container { transform: none; }

/* ---------- motion ---------- */
@media (prefers-reduced-motion: reduce) {
	.cll-block *, .cll-block *::before, .cll-block *::after { transition: none !important; animation: none !important; }
}
