/* theme:friendly */
:root {
--color-bg: #fffaf3;
--color-surface: #fff3e6;
--color-surface-2: #ffe8d2;
--color-text: #2b1f14;
--color-muted: #7a6652;
--color-brand: #ff7a45;
--color-brand-hover: #ea5a1f;
--color-on-brand: #ffffff;
--color-accent: #3fae6a;
--color-accent-hover: #2f8e52;
--color-on-accent: #ffffff;
--color-border: #f2dfc8;
--color-success: #3fae6a;
--color-warning: #f2a845;
--color-danger: #e0533f;
--color-overlay-dark: #2b1f14;
--color-on-overlay: #ffffff;
--color-on-dark: #ffffff;
--gradient-brand: linear-gradient(135deg, #ff8a5a 0%, #ea5a1f 100%);
--gradient-brand-soft: linear-gradient(135deg, rgba(255, 122, 69, 0.22) 0%, rgba(234, 90, 31, 0.04) 100%);
--gradient-hero: linear-gradient(135deg, #fff3e6 0%, #ffe8d2 48%, #fff5eb 100%);
--gradient-display: linear-gradient(120deg, #ea5a1f 0%, #ff7a45 45%, #3fae6a 100%);
--gradient-surface: linear-gradient(180deg, #fffaf3 0%, #fff3e6 100%);
--shadow-brand: 0 18px 40px rgba(234, 90, 31, 0.22);
--shadow-brand-strong: 0 28px 56px rgba(234, 90, 31, 0.32);
--shadow-brand-glow: 0 0 0 6px rgba(255, 122, 69, 0.12);
--radius-none: 0;
--radius-sm: 10px;
--radius-md: 18px;
--radius-lg: 28px;
--radius-xl: 40px;
--radius-full: 999px;
--space-2xs: 0.25rem;
--space-xs: 0.5rem;
--space-sm: 0.875rem;
--space-md: 1.375rem;
--space-lg: 2.125rem;
--space-xl: 3.5rem;
--space-2xl: 5.25rem;
--space-3xl: 7.5rem;
--font-sans: "Nunito", "Quicksand", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
--font-serif: "Fraunces", Georgia, serif;
--font-mono: "Fira Code", ui-monospace, Menlo, monospace;
--font-display: var(--font-sans);
--text-2xs: 0.6875rem;
--text-xs: 0.8125rem;
--text-sm: 0.9375rem;
--text-md: 1.0625rem;
--text-lg: 1.3125rem;
--text-xl: 1.75rem;
--text-2xl: 2.5rem;
--text-3xl: 3.375rem;
--text-4xl: 4.25rem;
--text-5xl: 5.25rem;
--shadow-sm: 0 4px 12px rgba(120, 50, 20, 0.09);
--shadow-md: 0 12px 30px rgba(120, 50, 20, 0.14);
--shadow-lg: 0 24px 56px rgba(120, 50, 20, 0.20);
--shadow-xl: 0 42px 90px rgba(120, 50, 20, 0.24);
--color-primary: var(--color-brand);
--color-primary-hover: var(--color-brand-hover);
--color-primary-contrast: var(--color-on-brand);
--font-body: var(--font-sans);
--color-bg-rgb: 255, 250, 243;
}
body {
margin: 0;
font-family: var(--font-sans);
font-weight: 500;
color: var(--color-text);
background: var(--color-bg);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
* { box-sizing: border-box; }
a { color: var(--color-brand); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; font-weight: 700; }
a:hover { color: var(--color-brand-hover); text-decoration-thickness: 2px; }
header a, nav a, footer a,
.dl-btn, .dl-btn-primary, .dl-btn-secondary, .dl-btn-ghost,
[class$="__btn"], [class*="__btn "], [class$="__cta"], [class*="__cta "], [class$="__nav"], [class*="__nav "] a, [class$="__menu"], [class*="__menu "] a {
text-decoration: none;
}
header a:hover, nav a:hover, footer a:hover {
text-decoration: underline;
text-underline-offset: 3px;
}
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-md); }
::placeholder { color: color-mix(in srgb, var(--color-text) 55%, var(--color-bg)); opacity: 1; }
:focus-visible { outline: 2px solid var(--color-brand); outline-offset: 2px; }
::selection { background: var(--color-brand); color: var(--color-on-brand); }
.dl-sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
.dl-required {
color: var(--color-danger, var(--color-brand));
font-weight: 700;
margin-left: 0.15em;
}
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
[class$="__card"]:hover, [class*="__card "]:hover,
[class$="__tile"]:hover, [class*="__tile "]:hover {
transform: none !important;
}
.block-hero-centered:not([class*="--bg-image"]),
.block-hero-form:not([class*="--bg-image"]):not(:has(> .block-hero-form__bg)),
.block-hero-split:not([class*="--bg-image"]),
.block-hero-stats:not([class*="--bg-image"]),
.block-video-hero:not([class*="--bg-image"]) {
background: var(--color-bg) !important;
}
}
:where(input[type="text"], input[type="email"], input[type="tel"], input[type="search"], input[type="url"], input[type="number"], textarea) {
background: var(--color-surface, #ffffff);
border: 1.5px solid var(--color-border);
border-radius: var(--radius-md);
padding: 0.85rem 1rem;
font: inherit;
color: var(--color-text);
transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
:where(input[type="text"], input[type="email"], input[type="tel"], input[type="search"], input[type="url"], input[type="number"], textarea):hover {
border-color: color-mix(in srgb, var(--color-brand) 45%, var(--color-border));
}
:where(input[type="text"], input[type="email"], input[type="tel"], input[type="search"], input[type="url"], input[type="number"], textarea):focus {
outline: none;
border-color: var(--color-brand);
box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-brand) 25%, transparent);
background: var(--color-surface, #ffffff);
}
.dl-container { max-width: 1140px; margin: 0 auto; padding: 0 var(--space-md); }
.dl-container-narrow { max-width: 740px; margin: 0 auto; padding: 0 var(--space-md); }
.dl-eyebrow {
display: inline-block;
font-size: var(--text-xs);
font-weight: 800;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--color-on-brand);
padding: var(--space-xs) var(--space-md);
background: var(--color-brand);
border-radius: var(--radius-full);
}
.dl-section-title {
font-family: var(--font-display);
font-size: var(--text-2xl);
font-weight: 800;
line-height: 1.1;
margin: 0 0 var(--space-md);
letter-spacing: -0.02em;
}
.dl-section-title--gradient,
.dl-heading-gradient {
background: var(--gradient-display);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
-webkit-text-fill-color: transparent;
}
.dl-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: var(--space-xs);
padding: 0.95rem 1.85rem;
border-radius: var(--radius-full);
font-family: var(--font-sans);
font-weight: 800;
font-size: var(--text-sm);
cursor: pointer;
text-decoration: none;
transition: background 0.2s, transform 0.2s, box-shadow 0.2s, color 0.2s, filter 0.2s;
border: 2px solid transparent;
line-height: 1;
letter-spacing: 0.01em;
}
.dl-btn-primary {
background: var(--color-brand);
color: var(--color-on-brand);
box-shadow: var(--shadow-brand);
}
.dl-btn-primary:hover {
background: var(--color-brand-hover, var(--color-brand));
color: var(--color-on-brand);
transform: translateY(-2px);
box-shadow: var(--shadow-brand-strong);
filter: brightness(1.04);
}
.dl-btn-primary:active { transform: translateY(0) scale(0.98); }
.dl-btn-secondary { background: var(--color-surface); color: var(--color-brand-hover); border-color: var(--color-brand); }
.dl-btn-secondary:hover { background: var(--color-surface-2); color: var(--color-brand-hover); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.dl-btn-ghost { background: transparent; color: var(--color-text); }
.dl-btn-ghost:hover { background: var(--color-surface); color: var(--color-text); }
.block-hero-centered:not([class*="--bg-image"]),
.block-hero-form:not([class*="--bg-image"]):not(:has(> .block-hero-form__bg)),
.block-hero-split:not([class*="--bg-image"]),
.block-hero-stats:not([class*="--bg-image"]),
.block-video-hero:not([class*="--bg-image"]) {
background:
radial-gradient(ellipse 55% 75% at 12% 25%, rgba(255, 122, 69, 0.22), transparent 62%),
radial-gradient(ellipse 48% 60% at 88% 78%, rgba(63, 174, 106, 0.15), transparent 62%),
var(--color-bg);
}
.block-hero-centered:not([class*="--bg-image"]) .block-hero-centered__title,
.block-hero-form:not([class*="--bg-image"]):not(:has(> .block-hero-form__bg)) .block-hero-form__title,
.block-hero-split:not([class*="--bg-image"]) .block-hero-split__title,
.block-hero-stats:not([class*="--bg-image"]) .block-hero-stats__title {
background: var(--gradient-display);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
-webkit-text-fill-color: transparent;
}
[class$="__card"],
[class*="__card "],
[class$="__tile"],
[class*="__tile "] {
box-shadow: var(--shadow-sm), 0 1px 0 rgba(255, 122, 69, 0.04) inset;
}
[class$="__card"]:hover,
[class*="__card "]:hover,
[class$="__tile"]:hover,
[class*="__tile "]:hover {
box-shadow: var(--shadow-brand), 0 1px 0 rgba(255, 122, 69, 0.10) inset;
}
.dl-skip-link {
position: absolute;
top: 0;
left: 0;
z-index: 9999;
padding: 0.75rem 1.25rem;
background: var(--color-brand);
color: var(--color-on-brand, #fff);
font-family: var(--font-sans, system-ui, sans-serif);
font-weight: 600;
font-size: 0.9375rem;
text-decoration: none;
border: 2px solid transparent;
border-radius: var(--radius-sm, 4px);
transform: translateY(-150%);
transition: transform 0.15s ease;
}
.dl-skip-link:focus,
.dl-skip-link:focus-visible {
transform: translateY(0.5rem);
outline: 2px solid var(--color-on-brand, #fff);
outline-offset: 2px;
}
main:focus {
outline: none;
}

/* palette + typography overrides */
:root {
--color-bg: #FBFAF7;
--color-surface: #F5F3F0;
--color-surface-2: #E7E5E2;
--color-text: #25211B;
--color-muted: #73706A;
--color-border: #E7E5E2;
--color-brand: #11468E;
--color-brand-hover: #1557b0 !important;
--color-on-brand: #ffffff;
--color-accent: #2d8cf0;
--color-accent-hover: #B66440;
--color-on-accent: #13100A;
--color-success: #348F4F;
--color-warning: #D59800;
--color-danger: #C35047;
--color-overlay-dark: #11468E;
--color-on-overlay: #FFFFFF;
--color-on-dark: #FFFFFF;
--color-primary: #C69A3A;
--color-primary-hover: #B68B27;
--color-primary-contrast: #13100A;
--color-bg-rgb: 251, 250, 247;
--color-brand-50: #FDF4E3;
--color-brand-100: #F8E9CC;
--color-brand-200: #EFD6A7;
--color-brand-300: #DDBB76;
--color-brand-400: #C49B45;
--color-brand-500: #AB8015;
--color-brand-600: #8F6900;
--color-brand-700: #735400;
--color-brand-800: #583F00;
--color-brand-900: #3E2C00;
--color-neutral-50: #FBFAF7;
--color-neutral-100: #F5F3F0;
--color-neutral-200: #E7E5E2;
--color-neutral-300: #D3D1CD;
--color-neutral-400: #B6B4AF;
--color-neutral-500: #918F8A;
--color-neutral-600: #73706A;
--color-neutral-700: #57534D;
--color-neutral-800: #3C3932;
--color-neutral-900: #25211B;
--color-neutral-950: #13100A;
--gradient-brand: linear-gradient(135deg, #C69A3A 0%, #B68B27 100%);
--gradient-brand-soft: linear-gradient(135deg, rgba(198, 154, 58, 0.22) 0%, rgba(182, 139, 39, 0.04) 100%);
--gradient-display: linear-gradient(120deg, #B68B27 0%, #C69A3A 45%, #C7734F 100%);
--gradient-surface: linear-gradient(180deg, #FBFAF7 0%, #F5F3F0 100%);
--gradient-hero: linear-gradient(135deg, #FBFAF7 0%, #E7E5E2 48%, #FBFAF7 100%);
--shadow-brand: 0 18px 40px rgba(182, 139, 39, 0.22);
--shadow-brand-strong: 0 28px 56px rgba(182, 139, 39, 0.32);
--shadow-brand-glow: 0 0 0 6px rgba(198, 154, 58, 0.12);
--font-sans: "Inter", system-ui, -apple-system, sans-serif;
--font-display: "Inter", system-ui, sans-serif;
--font-body: var(--font-sans);
}

/* block styles */

.block-header-nav {
position: sticky;
top: 0;
z-index: 100;
background: color-mix(in srgb, var(--color-bg, #ffffff) 82%, transparent);
backdrop-filter: blur(14px) saturate(1.05);
-webkit-backdrop-filter: blur(14px) saturate(1.05);
border-bottom: 1px solid color-mix(in srgb, var(--color-border, #e5e7eb) 50%, transparent);
padding: 0;
box-shadow:
0 1px 3px rgba(0, 0, 0, 0.06),
0 4px 12px rgba(0, 0, 0, 0.04);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
.block-header-nav { background: var(--color-bg); }
}
.block-header-nav__inner {
display: flex;
align-items: center;
justify-content: space-between;
min-height: 80px;
gap: var(--space-md);
}
.block-header-nav__logo {
display: flex;
align-items: center;
gap: 0.5rem;
text-decoration: none;
flex-shrink: 0;
}
.block-header-nav__logo-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
border-radius: 10px;
background: linear-gradient(135deg,
color-mix(in srgb, var(--color-brand) 90%, var(--color-bg)),
color-mix(in srgb, var(--color-accent, var(--color-brand)) 90%, var(--color-bg)));
color: var(--color-on-overlay);
font-size: 1.1rem;
line-height: 1;
box-shadow: 0 4px 10px -2px color-mix(in srgb, var(--color-brand) 40%, transparent);
flex-shrink: 0;
}
.block-header-nav__logo-text {
font-family: var(--font-display);
font-size: clamp(1.375rem, 1.6vw, 1.625rem);
font-weight: 800;
color: var(--color-text);
letter-spacing: -0.015em;
line-height: 1.15;
}
.block-header-nav__logo-img {
height: 32px;
width: auto;
display: block;
}
.block-header-nav__links {
display: flex;
align-items: center;
gap: var(--space-sm);
margin-left: auto;
max-width: 100%;
overflow-x: visible;
scrollbar-width: none;
-ms-overflow-style: none;
}
.block-header-nav__links::-webkit-scrollbar { display: none; }
.block-header-nav__link {
font-size: var(--text-sm);
font-weight: 500;
color: var(--color-text);
text-decoration: none;
padding: 0.625rem var(--space-sm);
min-height: 44px;
border-radius: var(--radius-sm, 6px);
transition: color 0.15s, background 0.15s;
white-space: nowrap;
display: inline-flex;
align-items: center;
gap: 4px;
background: none;
border: none;
cursor: pointer;
font-family: inherit;
}
.block-header-nav__link:hover,
.block-header-nav__link:focus-visible {
color: var(--color-primary);
background: var(--color-surface, rgba(0, 0, 0, 0.04));
}
.block-header-nav__link--group { }
.block-header-nav__chevron {
margin-left: 2px;
opacity: 0.6;
transition: transform 0.2s ease, opacity 0.2s ease;
flex-shrink: 0;
}
.block-header-nav__group {
position: relative;
display: inline-flex;
align-items: center;
}
.block-header-nav__group[aria-expanded="true"] > .block-header-nav__link--group,
.block-header-nav__group:hover > .block-header-nav__link--group,
.block-header-nav__group:focus-within > .block-header-nav__link--group {
color: var(--color-primary);
background: var(--color-surface, rgba(0, 0, 0, 0.04));
}
.block-header-nav__group[aria-expanded="true"] .block-header-nav__chevron,
.block-header-nav__group:hover .block-header-nav__chevron,
.block-header-nav__group:focus-within .block-header-nav__chevron {
transform: rotate(180deg);
opacity: 1;
}
.block-header-nav__dropdown {
position: absolute;
top: 100%;
left: 0;
min-width: 240px;
max-width: 320px;
padding: 8px;
background: var(--color-bg, #ffffff);
border: 1px solid color-mix(in srgb, var(--color-brand) 12%, var(--color-border, #e5e7eb));
border-radius: var(--radius-md, 14px);
box-shadow:
0 20px 48px color-mix(in srgb, var(--color-brand) 14%, transparent),
0 4px 12px rgba(0, 0, 0, 0.06);
display: flex;
flex-direction: column;
gap: 2px;
opacity: 0;
transform: translateY(-6px);
pointer-events: none;
transition: opacity 0.18s ease, transform 0.18s ease;
z-index: 101;
}
.block-header-nav__group:hover > .block-header-nav__dropdown,
.block-header-nav__group:focus-within > .block-header-nav__dropdown,
.block-header-nav__group[aria-expanded="true"] > .block-header-nav__dropdown {
opacity: 1;
transform: translateY(0);
pointer-events: auto;
}
.block-header-nav__dropdown-link {
font-size: var(--text-sm);
font-weight: 500;
color: var(--color-text);
text-decoration: none;
padding: 10px 12px;
border-radius: var(--radius-sm, 8px);
display: block;
transition: color 0.15s, background 0.15s;
line-height: 1.35;
}
.block-header-nav__dropdown-link:hover,
.block-header-nav__dropdown-link:focus-visible {
color: var(--color-primary);
background: color-mix(in srgb, var(--color-brand) 8%, transparent);
outline: none;
}
.block-header-nav__dropdown-link--overview {
font-weight: 700;
color: var(--color-primary);
border-bottom: 1px dashed color-mix(in srgb, var(--color-brand) 25%, transparent);
margin-bottom: 4px;
padding-bottom: 10px;
border-radius: var(--radius-sm, 8px) var(--radius-sm, 8px) 0 0;
}
.block-header-nav__actions {
display: flex;
align-items: center;
gap: var(--space-sm, 0.75rem);
flex-shrink: 0;
}
.block-header-nav__phone {
font-size: var(--text-sm);
font-weight: 600;
color: var(--color-text);
text-decoration: none;
letter-spacing: 0.02em;
padding: var(--space-xs) var(--space-sm);
border-radius: var(--radius-sm, 8px);
white-space: nowrap;
transition: color 0.15s;
}
.block-header-nav__phone:hover,
.block-header-nav__phone:focus-visible {
color: var(--color-primary);
}
.block-header-nav__cta {
flex-shrink: 0;
}
.block-header-nav__burger {
display: none;
flex-direction: column;
justify-content: center;
gap: 5px;
width: 36px;
height: 36px;
padding: 6px;
background: none;
border: none;
cursor: pointer;
}
.block-header-nav__burger span {
display: block;
width: 100%;
height: 2px;
background: var(--color-text);
border-radius: 2px;
transition: transform 0.3s ease, opacity 0.3s ease;
}
.block-header-nav.is-open .block-header-nav__burger span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}
.block-header-nav.is-open .block-header-nav__burger span:nth-child(2) {
opacity: 0;
}
.block-header-nav.is-open .block-header-nav__burger span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 768px) {
.block-header-nav__burger {
display: flex;
}
.block-header-nav__phone {
display: none;
}
.block-header-nav__logo-icon {
width: 32px;
height: 32px;
}
.block-header-nav__links {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
flex-direction: column;
align-items: stretch;
background: var(--color-bg);
border-bottom: 1px solid var(--color-border);
padding: var(--space-sm) var(--space-md);
box-shadow: var(--shadow-md, 0 4px 12px rgba(0, 0, 0, 0.08));
gap: 2px;
max-height: calc(100vh - 64px);
overflow-y: auto;
}
.block-header-nav.is-open .block-header-nav__links {
display: flex;
}
.block-header-nav__link {
padding: 12px 14px;
border-radius: 12px;
background: color-mix(in srgb, var(--color-brand) 5%, transparent);
border: 1px solid color-mix(in srgb, var(--color-brand) 14%, transparent);
font-weight: 600;
transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.block-header-nav__link:hover,
.block-header-nav__link:active {
background: color-mix(in srgb, var(--color-brand) 14%, transparent);
border-color: color-mix(in srgb, var(--color-brand) 35%, transparent);
color: var(--color-brand);
}
.block-header-nav__group {
display: block;
width: 100%;
}
.block-header-nav__link--group {
width: 100%;
justify-content: space-between;
}
.block-header-nav__dropdown {
position: static;
box-shadow: none;
border: none;
border-radius: 0;
padding: 4px 0 4px 12px;
margin-left: 8px;
border-left: 2px solid color-mix(in srgb, var(--color-brand) 30%, var(--color-border, #e5e7eb));
min-width: 0;
max-width: none;
background: transparent;
opacity: 1;
transform: none;
pointer-events: auto;
display: none;
}
.block-header-nav__group[aria-expanded="true"] > .block-header-nav__dropdown {
display: flex;
}
.block-header-nav__dropdown-link {
padding: 10px 12px;
border-radius: 10px;
background: color-mix(in srgb, var(--color-brand) 3%, transparent);
font-weight: 500;
transition: background 0.15s, color 0.15s;
}
.block-header-nav__dropdown-link:hover,
.block-header-nav__dropdown-link:active {
background: color-mix(in srgb, var(--color-brand) 12%, transparent);
color: var(--color-brand);
}
.block-header-nav__dropdown-link--overview {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 8px;
}
.block-header-nav__cta {
margin-left: 0;
margin-top: var(--space-xs);
text-align: center;
}
}
@media (max-width: 420px) {
.block-header-nav__cta {
display: none;
}
}
.block-header-nav--bg-transparent {
background: transparent;
backdrop-filter: none;
-webkit-backdrop-filter: none;
border-bottom-color: transparent;
box-shadow: none;
}
.block-header-nav--bg-solid {
background: var(--color-bg);
backdrop-filter: none;
-webkit-backdrop-filter: none;
}
.block-header-nav--bg-blur {
background: color-mix(in srgb, var(--color-bg, #ffffff) 82%, transparent);
backdrop-filter: blur(14px) saturate(1.05);
-webkit-backdrop-filter: blur(14px) saturate(1.05);
}
.block-header-nav--style-centered .block-header-nav__inner {
justify-content: center;
gap: var(--space-lg);
}
.block-header-nav--style-centered .block-header-nav__links {
margin-left: 0;
}
.block-header-nav--style-minimal .block-header-nav__cta {
display: none;
}
.block-hero-split-cinematic {
position: relative;
overflow: hidden;
min-height: 80vh;
display: flex;
align-items: flex-end;
padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.25rem, 4vw, 3.5rem);
isolation: isolate;
color: var(--color-on-overlay);
}
.block-hero-split-cinematic__backdrop {
position: absolute;
inset: 0;
z-index: 0;
background: linear-gradient(135deg, var(--color-surface-2) 0%, var(--color-bg) 100%);
}
.block-hero-split-cinematic__image {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}
.block-hero-split-cinematic__overlay {
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.65) 55%, rgba(0, 0, 0, 0.85) 100%);
}
.block-hero-split-cinematic > .dl-container {
position: relative;
z-index: 1;
width: 100%;
}
.block-hero-split-cinematic__content {
max-width: 720px;
}
.block-hero-split-cinematic__eyebrow {
display: inline-block;
padding: 6px 14px;
border-radius: var(--radius-pill, 999px);
background: rgba(255, 255, 255, 0.14);
backdrop-filter: blur(6px);
color: var(--color-on-overlay);
font-size: var(--text-sm);
font-weight: 600;
letter-spacing: 0.04em;
text-transform: uppercase;
margin-bottom: var(--space-md);
}
.block-hero-split-cinematic__title {
font-family: var(--font-display);
font-size: clamp(2.25rem, 5.5vw, 4.5rem);
font-weight: 700;
line-height: 1.04;
letter-spacing: -0.025em;
margin: 0 0 var(--space-md);
color: var(--color-on-overlay);
text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.block-hero-split-cinematic__subtitle {
font-size: clamp(1.05rem, 1.4vw, 1.25rem);
line-height: 1.55;
color: rgba(255, 255, 255, 0.86);
margin: 0 0 var(--space-lg);
max-width: 560px;
text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}
.block-hero-split-cinematic__actions {
display: inline-flex;
gap: var(--space-sm);
flex-wrap: wrap;
}
.block-hero-split-cinematic .dl-btn-primary {
box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}
.block-hero-split-cinematic .dl-btn-ghost-on-dark {
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.55);
color: var(--color-on-overlay);
backdrop-filter: blur(6px);
}
.block-hero-split-cinematic .dl-btn-ghost-on-dark:hover {
background: rgba(255, 255, 255, 0.18);
border-color: var(--color-on-overlay);
}
.block-hero-split-cinematic--overlay-dark .block-hero-split-cinematic__overlay {
background: rgba(0, 0, 0, 0.55);
}
.block-hero-split-cinematic--overlay-gradient-diagonal .block-hero-split-cinematic__overlay {
background: linear-gradient(115deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.15) 100%);
}
.block-hero-split-cinematic--overlay-brand-tint .block-hero-split-cinematic__overlay {
background: linear-gradient(180deg, color-mix(in srgb, var(--color-primary) 35%, transparent) 0%, color-mix(in srgb, var(--color-primary) 85%, #000) 100%);
}
.block-hero-split-cinematic--height-full { min-height: 100vh; }
.block-hero-split-cinematic--height-medium { min-height: 60vh; }
.block-hero-split-cinematic--align-center {
align-items: center;
text-align: center;
}
.block-hero-split-cinematic--align-center .block-hero-split-cinematic__content {
margin: 0 auto;
}
.block-hero-split-cinematic--align-center .block-hero-split-cinematic__actions {
justify-content: center;
}
.block-hero-split-cinematic--align-center :where(.block-hero-split-cinematic__subtitle, .block-hero-split-cinematic__title) {
margin-inline: auto;
}
.block-hero-split-cinematic--align-bottom-left {
align-items: flex-end;
}
@media (max-width: 900px) {
.block-hero-split-cinematic {
min-height: 70vh;
padding: var(--space-2xl) 0 var(--space-xl);
}
.block-hero-split-cinematic__title {
font-size: clamp(2rem, 8vw, 3rem);
}
}
.block-content-callout {
padding: clamp(2rem, 4vw, 3rem) 0;
background: var(--color-bg);
color: var(--color-text);
}
.block-content-callout__box {
--callout-accent: var(--color-brand);
--callout-bg: color-mix(in srgb, var(--color-brand) 8%, var(--color-surface));
--callout-border: color-mix(in srgb, var(--color-brand) 35%, var(--color-border));
max-width: 820px;
margin: 0 auto;
display: grid;
grid-template-columns: auto 1fr;
gap: clamp(0.85rem, 1.6vw, 1.15rem);
align-items: flex-start;
padding: clamp(1.25rem, 2.4vw, 1.65rem) clamp(1.4rem, 2.6vw, 1.85rem);
background: var(--callout-bg);
border: 1px solid var(--callout-border);
border-left: 4px solid var(--callout-accent);
border-radius: clamp(12px, 1.4vw, 16px);
}
.block-content-callout__icon {
flex-shrink: 0;
width: 40px;
height: 40px;
border-radius: 10px;
background: color-mix(in srgb, var(--callout-accent) 18%, transparent);
color: var(--callout-accent);
display: inline-flex;
align-items: center;
justify-content: center;
}
.block-content-callout__icon-info,
.block-content-callout__icon-warning,
.block-content-callout__icon-success,
.block-content-callout__icon-tip {
display: none;
}
.block-content-callout__body { min-width: 0; }
.block-content-callout__title {
font-family: var(--font-display);
font-size: clamp(1.05rem, 1.5vw, 1.2rem);
font-weight: 700;
color: var(--color-text);
letter-spacing: -0.01em;
line-height: 1.3;
margin: 0 0 0.45rem;
}
.block-content-callout__text {
font-size: var(--text-md);
color: var(--color-text);
line-height: 1.65;
margin: 0;
}
.block-content-callout__cta {
display: inline-block;
margin-top: 0.9rem;
color: var(--callout-accent);
font-family: var(--font-display);
font-weight: 600;
text-decoration: none;
font-size: var(--text-sm);
border-bottom: 1px solid color-mix(in srgb, var(--callout-accent) 40%, transparent);
transition: border-color 0.2s, opacity 0.2s;
}
.block-content-callout__cta:hover {
border-color: var(--callout-accent);
opacity: 0.85;
}
.block-content-callout--variant-info .block-content-callout__box {
--callout-accent: var(--color-brand);
--callout-bg: color-mix(in srgb, var(--color-brand) 8%, var(--color-surface));
--callout-border: color-mix(in srgb, var(--color-brand) 35%, var(--color-border));
}
.block-content-callout--variant-info .block-content-callout__icon-info { display: block; }
.block-content-callout--variant-warning .block-content-callout__box {
--callout-accent: var(--color-warning, #d97706);
--callout-bg: color-mix(in srgb, var(--color-warning, #d97706) 10%, var(--color-surface));
--callout-border: color-mix(in srgb, var(--color-warning, #d97706) 40%, var(--color-border));
}
.block-content-callout--variant-warning .block-content-callout__icon-warning { display: block; }
.block-content-callout--variant-success .block-content-callout__box {
--callout-accent: var(--color-success, #16a34a);
--callout-bg: color-mix(in srgb, var(--color-success, #16a34a) 10%, var(--color-surface));
--callout-border: color-mix(in srgb, var(--color-success, #16a34a) 40%, var(--color-border));
}
.block-content-callout--variant-success .block-content-callout__icon-success { display: block; }
.block-content-callout--variant-tip .block-content-callout__box {
--callout-accent: var(--color-accent, var(--color-brand));
--callout-bg: color-mix(in srgb, var(--color-accent, var(--color-brand)) 10%, var(--color-surface));
--callout-border: color-mix(in srgb, var(--color-accent, var(--color-brand)) 38%, var(--color-border));
}
.block-content-callout--variant-tip .block-content-callout__icon-tip { display: block; }
.block-content-callout--bg-default { background: var(--color-bg); }
.block-content-callout--bg-surface { background: var(--color-surface); }
.block-services-cards3 {
padding: clamp(3rem, 6vw, 5.5rem) 0;
background: var(--color-surface);
color: var(--color-text);
}
.block-services-cards3__title {
text-align: center;
font-family: var(--font-display);
font-size: clamp(1.85rem, 3.4vw, 2.65rem);
font-weight: 800;
letter-spacing: -0.02em;
margin: 0 auto 0.6rem;
max-width: 22ch;
text-wrap: balance;
}
.block-services-cards3__subtitle {
text-align: center;
color: var(--color-muted);
font-size: var(--text-md);
max-width: 640px;
margin: 0 auto clamp(2rem, 4vw, 3rem);
line-height: 1.55;
text-wrap: pretty;
}
.block-services-cards3__grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: clamp(1rem, 2vw, 1.5rem);
max-width: 1200px;
margin: 0 auto;
}
.block-services-cards3__card {
position: relative;
background: var(--color-bg);
border: 1px solid transparent;
background-clip: padding-box;
border-radius: clamp(14px, 1.8vw, 18px);
padding: clamp(1.5rem, 2.4vw, 1.85rem);
padding-top: clamp(1.85rem, 2.8vw, 2.25rem);
display: flex;
flex-direction: column;
gap: 0.7rem;
transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
box-shadow:
0 1px 0 color-mix(in srgb, var(--color-text) 4%, transparent) inset,
0 12px 30px -20px color-mix(in srgb, var(--color-text) 25%, transparent);
}
.block-services-cards3__card::before {
content: "";
position: absolute;
inset: -1px;
border-radius: inherit;
padding: 1px;
background: linear-gradient(155deg,
color-mix(in srgb, var(--color-brand) 55%, transparent) 0%,
transparent 45%,
color-mix(in srgb, var(--color-brand) 18%, transparent) 100%);
-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
pointer-events: none;
}
.block-services-cards3__card::after {
content: "";
position: absolute;
top: 14px;
left: 14px;
width: 26px;
height: 26px;
border-top: 1px solid color-mix(in srgb, var(--color-brand) 70%, transparent);
border-left: 1px solid color-mix(in srgb, var(--color-brand) 70%, transparent);
border-top-left-radius: 7px;
pointer-events: none;
}
.block-services-cards3__card:hover {
transform: translateY(-3px);
box-shadow:
0 1px 0 color-mix(in srgb, var(--color-text) 5%, transparent) inset,
0 20px 40px -18px color-mix(in srgb, var(--color-brand) 40%, transparent);
}
.block-services-cards3__number {
position: absolute;
top: 14px;
right: 16px;
font-family: var(--font-display);
font-size: var(--text-xs);
font-weight: 700;
letter-spacing: 0.12em;
color: color-mix(in srgb, var(--color-brand) 80%, var(--color-text));
font-variant-numeric: lining-nums tabular-nums;
z-index: 1;
}
.block-services-cards3__image {
width: 100%;
aspect-ratio: 16 / 10;
object-fit: cover;
border-radius: clamp(10px, 1.2vw, 14px);
margin: 0.3rem 0 0.4rem;
}
.block-services-cards3__icon {
width: 52px;
height: 52px;
display: inline-flex;
align-items: center;
justify-content: center;
background: color-mix(in srgb, var(--color-brand) 14%, transparent);
border: 1px solid color-mix(in srgb, var(--color-brand) 30%, transparent);
color: var(--color-brand);
border-radius: 14px;
font-size: 1.6rem;
line-height: 1;
margin: 0.3rem 0 0.4rem;
}
.block-services-cards3__card-title {
font-family: var(--font-display);
font-size: clamp(var(--text-lg), 1.6vw, 1.35rem);
font-weight: 800;
letter-spacing: -0.015em;
margin: 0;
line-height: 1.2;
color: var(--color-text);
}
.block-services-cards3__card-text {
font-size: var(--text-sm);
color: var(--color-muted);
line-height: 1.55;
margin: 0;
text-wrap: pretty;
}
.block-services-cards3__bullets {
list-style: none;
padding: 0;
margin: 0.25rem 0 0;
display: flex;
flex-direction: column;
gap: 0.45rem;
}
.block-services-cards3__bullets li {
font-size: var(--text-sm);
padding-left: 1.7rem;
position: relative;
line-height: 1.45;
color: var(--color-text);
}
.block-services-cards3__bullets li::before {
content: "✓";
position: absolute;
left: 0;
top: 0.05em;
display: inline-flex;
align-items: center;
justify-content: center;
width: 20px;
height: 20px;
border-radius: 50%;
background: color-mix(in srgb, var(--color-brand) 14%, transparent);
color: var(--color-brand);
font-size: 11px;
font-weight: 800;
line-height: 1;
}
.block-services-cards3__footer {
margin-top: auto;
padding-top: clamp(1rem, 1.6vw, 1.25rem);
border-top: 1px solid color-mix(in srgb, var(--color-text) 10%, transparent);
display: flex;
justify-content: space-between;
align-items: center;
gap: 0.75rem;
flex-wrap: wrap;
}
.block-services-cards3__price {
font-family: var(--font-display);
font-size: clamp(1.05rem, 1.4vw, 1.25rem);
font-weight: 800;
letter-spacing: -0.015em;
color: var(--color-brand);
font-variant-numeric: lining-nums tabular-nums;
white-space: nowrap;
}
.block-services-cards3__cta {
display: inline-flex;
align-items: center;
gap: 0.4em;
min-height: 44px;
}
.block-services-cards3__cta-arrow { transition: transform 0.18s ease; }
.block-services-cards3__cta:hover .block-services-cards3__cta-arrow {
transform: translateX(3px);
}
@media (max-width: 900px) {
.block-services-cards3__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.block-services-cards3__grid > .block-services-cards3__card:nth-child(3) {
grid-column: 1 / -1;
max-width: 540px;
justify-self: center;
width: 100%;
}
}
@media (max-width: 600px) {
.block-services-cards3__grid { grid-template-columns: 1fr; }
.block-services-cards3__grid > .block-services-cards3__card:nth-child(3) {
grid-column: auto;
max-width: none;
}
}
.block-services-cards3--bg-default { background: var(--color-bg); }
.block-services-cards3--bg-default .block-services-cards3__card { background: var(--color-surface); }
.block-services-cards3--bg-surface { background: var(--color-surface); }
.block-services-cards3--bg-gradient {
background: linear-gradient(180deg,
var(--color-surface) 0%,
color-mix(in srgb, var(--color-brand) 5%, var(--color-surface)) 100%);
}
.block-services-cards3--bg-dark { background: var(--color-surface-2); }
.block-services-cards3--spacing-compact  { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.block-services-cards3--spacing-spacious { padding: clamp(4.5rem, 9vw, 8rem) 0; }
@media (prefers-reduced-motion: reduce) {
.block-services-cards3__card,
.block-services-cards3__cta-arrow,
.block-services-cards3__cta:hover .block-services-cards3__cta-arrow {
transition: none;
transform: none;
}
}
.block-features-checkmark {
padding: clamp(3.5rem, 6vw, 5rem) 0;
background: var(--color-bg);
color: var(--color-text);
}
.block-features-checkmark__title {
text-align: center;
color: var(--color-text);
font-family: var(--font-display);
font-size: clamp(1.85rem, 3.4vw, 2.65rem);
font-weight: 800;
letter-spacing: -0.02em;
margin: 0 0 0.6rem;
}
.block-features-checkmark__subtitle {
text-align: center;
color: var(--color-muted);
font-size: var(--text-md);
max-width: 620px;
margin: 0 auto clamp(2rem, 4vw, 3rem);
line-height: 1.6;
}
.block-features-checkmark__list {
list-style: none;
padding: 0;
margin: 0 auto;
max-width: 980px;
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: clamp(0.7rem, 1.4vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
}
.block-features-checkmark__item {
display: flex;
align-items: flex-start;
gap: 0.75rem;
padding: 0.65rem 0;
border-bottom: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent);
font-size: var(--text-md);
color: var(--color-text);
line-height: 1.5;
}
.block-features-checkmark__icon {
flex-shrink: 0;
width: 28px;
height: 28px;
border-radius: 50%;
background: color-mix(in srgb, var(--color-brand) 14%, transparent);
color: var(--color-brand);
display: inline-flex;
align-items: center;
justify-content: center;
margin-top: 0.1rem;
}
.block-features-checkmark__text {
flex: 1;
min-width: 0;
}
.block-features-checkmark__cta-wrap {
text-align: center;
margin-top: clamp(2rem, 4vw, 3rem);
}
.block-features-checkmark__cta {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.9rem 1.75rem;
border-radius: 999px;
background: var(--color-brand);
color: var(--color-on-brand, #fff);
font-family: var(--font-display);
font-weight: 600;
font-size: var(--text-md);
text-decoration: none;
transition: transform 0.18s, box-shadow 0.18s;
}
.block-features-checkmark__cta:hover {
transform: translateY(-1px);
box-shadow: 0 14px 26px -14px color-mix(in srgb, var(--color-brand) 55%, transparent);
color: #fff;
}
.block-features-checkmark--columns-two .block-features-checkmark__list {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.block-features-checkmark--columns-three .block-features-checkmark__list {
grid-template-columns: repeat(3, minmax(0, 1fr));
max-width: 1100px;
}
@media (max-width: 900px) {
.block-features-checkmark--columns-three .block-features-checkmark__list {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 600px) {
.block-features-checkmark__list,
.block-features-checkmark--columns-two .block-features-checkmark__list,
.block-features-checkmark--columns-three .block-features-checkmark__list {
grid-template-columns: 1fr;
gap: 0.25rem;
}
}
.block-features-checkmark--bg-default { background: var(--color-bg); }
.block-features-checkmark--bg-surface { background: var(--color-surface); }
.block-process-steps4 {
padding: clamp(3.5rem, 7vw, 6rem) 0;
background: var(--color-bg);
}
.block-process-steps4__title {
text-align: center;
font-family: var(--font-display, var(--font-sans));
font-weight: 700;
letter-spacing: -0.025em;
margin: 0 auto var(--space-sm);
max-width: 22ch;
text-wrap: balance;
}
.block-process-steps4__subtitle {
text-align: center;
color: var(--color-muted);
font-size: var(--text-md);
max-width: 640px;
margin: 0 auto clamp(2.5rem, 5vw, 4rem);
line-height: 1.55;
text-wrap: pretty;
}
.block-process-steps4__list {
list-style: none;
padding: 0;
margin: 0 auto;
max-width: 760px;
position: relative;
display: flex;
flex-direction: column;
gap: clamp(1.75rem, 3.5vw, 2.75rem);
}
.block-process-steps4__list::before {
content: "";
position: absolute;
left: 28px;
top: 28px;
bottom: 28px;
width: 2px;
background: linear-gradient(180deg,
var(--color-brand) 0%,
color-mix(in srgb, var(--color-brand) 30%, transparent) 100%);
border-radius: 1px;
pointer-events: none;
}
.block-process-steps4__step {
position: relative;
display: grid;
grid-template-columns: 56px minmax(0, 1fr);
gap: clamp(1.25rem, 2.5vw, 1.75rem);
align-items: flex-start;
}
.block-process-steps4__marker {
width: 56px;
height: 56px;
border-radius: 50%;
background: var(--color-bg);
border: 2px solid var(--color-brand);
display: inline-flex;
align-items: center;
justify-content: center;
position: relative;
z-index: 1;
transition: background 0.22s ease, box-shadow 0.22s ease;
}
.block-process-steps4__step:hover .block-process-steps4__marker {
background: color-mix(in srgb, var(--color-brand) 12%, var(--color-bg));
box-shadow: 0 0 0 6px color-mix(in srgb, var(--color-brand) 15%, transparent);
}
.block-process-steps4__number {
font-family: var(--font-display, var(--font-serif, Georgia, serif));
font-size: var(--text-lg);
font-weight: 800;
letter-spacing: -0.02em;
color: var(--color-brand);
line-height: 1;
font-variant-numeric: lining-nums tabular-nums;
}
.block-process-steps4__body {
padding-top: 0.35rem;
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.block-process-steps4__kicker {
font-family: var(--font-mono, var(--font-sans));
font-size: var(--text-2xs);
font-weight: 600;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--color-brand);
}
.block-process-steps4__step-title {
font-family: var(--font-display, var(--font-sans));
font-size: clamp(1.25rem, 2.4vw, 1.625rem);
font-weight: 700;
letter-spacing: -0.015em;
line-height: 1.2;
margin: 0;
color: var(--color-text);
text-wrap: balance;
}
.block-process-steps4__step-text {
font-size: var(--text-md);
color: var(--color-muted);
line-height: 1.6;
margin: 0;
max-width: 56ch;
text-wrap: pretty;
}
@media (max-width: 640px) {
.block-process-steps4__list::before {
left: 22px;
top: 22px;
bottom: 22px;
}
.block-process-steps4__step {
grid-template-columns: 44px minmax(0, 1fr);
gap: var(--space-sm);
}
.block-process-steps4__marker {
width: 44px;
height: 44px;
}
.block-process-steps4__number {
font-size: var(--text-md);
}
}
.block-process-steps4--bg-default { background: var(--color-bg); }
.block-process-steps4--bg-surface { background: var(--color-surface); }
.block-process-steps4--bg-gradient {
background: linear-gradient(135deg,
var(--color-bg) 0%,
color-mix(in srgb, var(--color-brand) 5%, var(--color-surface)) 100%);
}
.block-process-steps4--bg-dark { background: var(--color-surface-2); }
.block-process-steps4--spacing-compact { padding: var(--space-lg) 0; }
.block-process-steps4--spacing-spacious { padding: clamp(5rem, 10vw, 9rem) 0; }
.block-process-steps4--bg-surface .block-process-steps4__marker { background: var(--color-surface); }
.block-process-steps4--bg-surface .block-process-steps4__step:hover .block-process-steps4__marker {
background: color-mix(in srgb, var(--color-brand) 12%, var(--color-surface));
}
.block-process-steps4--bg-dark .block-process-steps4__marker { background: var(--color-surface-2); }
.block-process-steps4--bg-dark .block-process-steps4__step:hover .block-process-steps4__marker {
background: color-mix(in srgb, var(--color-brand) 12%, var(--color-surface-2));
}
@media (prefers-reduced-motion: reduce) {
.block-process-steps4__marker,
.block-process-steps4__step:hover .block-process-steps4__marker {
transition: none;
box-shadow: none;
}
}
.block-faq-accordion {
padding: clamp(3rem, 6vw, 5.5rem) 0;
background: var(--color-bg);
color: var(--color-text);
}
.block-faq-accordion__title {
text-align: center;
color: var(--color-text);
font-family: var(--font-display);
font-size: clamp(1.85rem, 3.4vw, 2.65rem);
font-weight: 800;
letter-spacing: -0.02em;
margin: 0 0 0.6rem;
}
.block-faq-accordion__subtitle {
text-align: center;
color: var(--color-muted);
font-size: var(--text-md);
max-width: 580px;
margin: 0 auto clamp(2rem, 4vw, 3rem);
line-height: 1.6;
}
.block-faq-accordion__list {
display: flex;
flex-direction: column;
gap: 0.4rem;
max-width: 820px;
margin: 0 auto;
}
.block-faq-accordion__item {
background: linear-gradient(160deg,
color-mix(in srgb, var(--color-text) 4%, transparent) 0%,
color-mix(in srgb, var(--color-text) 1%, transparent) 100%);
border: 1px solid var(--color-border);
border-radius: clamp(12px, 1.4vw, 16px);
overflow: hidden;
transition: border-color 0.22s, background 0.22s, box-shadow 0.22s;
}
.block-faq-accordion__item[open] {
border-color: color-mix(in srgb, var(--color-brand) 45%, var(--color-border));
background: linear-gradient(160deg,
color-mix(in srgb, var(--color-text) 5%, transparent) 0%,
color-mix(in srgb, var(--color-brand) 8%, transparent) 100%);
box-shadow: 0 10px 28px -18px color-mix(in srgb, var(--color-brand) 40%, transparent);
}
.block-faq-accordion__question {
cursor: pointer;
min-height: 44px;
padding: clamp(0.7rem, 1vw, 0.9rem) clamp(1rem, 1.8vw, 1.35rem);
font-family: var(--font-display);
font-size: clamp(0.95rem, 1.05vw, 1.05rem);
font-weight: 600;
letter-spacing: -0.005em;
color: var(--color-text);
list-style: none;
display: flex;
justify-content: space-between;
align-items: center;
gap: 1rem;
transition: color 0.18s;
user-select: none;
}
.block-faq-accordion__question::-webkit-details-marker { display: none; }
.block-faq-accordion__question::marker { display: none; content: ""; }
.block-faq-accordion__question:hover { color: var(--color-brand); }
.block-faq-accordion__item[open] .block-faq-accordion__question {
color: var(--color-brand);
padding-bottom: clamp(0.65rem, 1.3vw, 0.9rem);
}
.block-faq-accordion__question:focus-visible {
outline: 2px solid var(--color-brand);
outline-offset: -3px;
border-radius: inherit;
}
.block-faq-accordion__question::after {
content: "+";
flex-shrink: 0;
display: inline-flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
border-radius: 50%;
background: color-mix(in srgb, var(--color-brand) 12%, transparent);
border: 1px solid color-mix(in srgb, var(--color-brand) 28%, transparent);
color: var(--color-brand);
font-size: 1rem;
font-weight: 600;
line-height: 1;
transition: transform 0.22s, background 0.22s;
}
.block-faq-accordion__item[open] .block-faq-accordion__question::after {
transform: rotate(45deg);
background: color-mix(in srgb, var(--color-brand) 24%, transparent);
}
.block-faq-accordion__answer {
padding: 0 clamp(1.1rem, 2.2vw, 1.6rem) clamp(1.1rem, 2vw, 1.45rem);
font-size: var(--text-sm);
color: var(--color-muted);
line-height: 1.65;
max-width: 95%;
}
.block-faq-accordion--bg-default  { background: var(--color-bg); }
.block-faq-accordion--bg-surface  { background: var(--color-surface); }
.block-faq-accordion--bg-gradient {
background: linear-gradient(180deg,
var(--color-bg) 0%,
color-mix(in srgb, var(--color-brand) 5%, var(--color-surface)) 100%);
}
.block-faq-accordion--bg-dark { background: var(--color-surface-2); }
.block-faq-accordion--spacing-compact  { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.block-faq-accordion--spacing-spacious { padding: clamp(4.5rem, 9vw, 8rem) 0; }
@media (prefers-reduced-motion: reduce) {
.block-faq-accordion__item,
.block-faq-accordion__question,
.block-faq-accordion__question::after { transition: none; }
}
.block-map-location {
padding: clamp(3rem, 6vw, 5.5rem) 0;
background: var(--color-bg);
color: var(--color-text);
}
.block-map-location__title {
text-align: center;
font-family: var(--font-display);
font-size: clamp(1.85rem, 3.4vw, 2.65rem);
font-weight: 800;
letter-spacing: -0.02em;
margin: 0 0 0.6rem;
}
.block-map-location__subtitle {
text-align: center;
max-width: 640px;
margin: 0 auto clamp(2rem, 4vw, 3rem);
color: var(--color-muted);
font-size: var(--text-md);
line-height: 1.55;
}
.block-map-location__layout {
display: grid;
grid-template-columns: 1.1fr 1fr;
align-items: stretch;
max-width: 1200px;
margin: 0 auto;
background: var(--color-bg);
border: 1px solid var(--color-border);
border-radius: clamp(14px, 1.6vw, 18px);
overflow: hidden;
box-shadow: 0 12px 32px -16px color-mix(in srgb, var(--color-text) 25%, transparent);
}
.block-map-location__map {
position: relative;
background: var(--color-surface);
min-height: 480px;
}
.block-map-location__map-image {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
filter: saturate(0.85) contrast(0.95);
}
.block-map-location__map-frame {
width: 100%;
height: 100%;
min-height: 420px;
border: 0;
display: block;
}
.block-map-location__pin {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
pointer-events: none;
}
.block-map-location__pin--overlay {
display: none !important;
}
.block-map-location__pin-dot {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 16px;
height: 16px;
border-radius: 50%;
background: var(--color-brand);
box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-bg) 70%, transparent),
0 4px 12px color-mix(in srgb, var(--color-brand) 50%, transparent);
}
.block-map-location__pin-ring {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 56px;
height: 56px;
border-radius: 50%;
border: 2px solid var(--color-brand);
opacity: 0.35;
animation: block-map-location-pulse 2.2s ease-out infinite;
}
@keyframes block-map-location-pulse {
0%   { transform: translate(-50%, -50%) scale(0.4); opacity: 0.6; }
80%  { transform: translate(-50%, -50%) scale(1.1); opacity: 0; }
100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0; }
}
.block-map-location__info {
position: relative;
background: var(--color-bg);
border-left: 1px solid var(--color-border);
padding: clamp(1.5rem, 2.2vw, 1.9rem) clamp(1.5rem, 2.4vw, 1.9rem);
display: flex;
flex-direction: column;
gap: 1rem;
}
.block-map-location__row {
display: grid;
grid-template-columns: auto minmax(0, 1fr);
gap: 0.75rem;
align-items: flex-start;
padding-bottom: 1rem;
border-bottom: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
}
.block-map-location__row:last-of-type {
padding-bottom: 0;
border-bottom: none;
}
.block-map-location__row-icon {
width: 36px;
height: 36px;
border-radius: 10px;
display: inline-flex;
align-items: center;
justify-content: center;
background: color-mix(in srgb, var(--color-brand) 10%, transparent);
color: var(--color-brand);
flex-shrink: 0;
}
.block-map-location__row-icon svg {
width: 18px;
height: 18px;
}
.block-map-location__row-label {
font-size: 0.75rem;
color: var(--color-muted);
margin-bottom: 0.15rem;
font-weight: 500;
letter-spacing: 0;
text-transform: none;
}
.block-map-location__row-value {
font-size: 0.95rem;
font-weight: 600;
color: var(--color-text);
line-height: 1.35;
letter-spacing: -0.005em;
}
.block-map-location__row-hint {
margin-top: 0.25em;
font-size: var(--text-sm);
color: var(--color-muted);
line-height: 1.4;
}
.block-map-location__phones {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 0.2em;
}
.block-map-location__phones li {
display: flex;
align-items: baseline;
gap: var(--space-sm);
flex-wrap: wrap;
}
.block-map-location__phone {
font-family: var(--font-display);
font-size: var(--text-md);
font-weight: 700;
color: var(--color-text);
text-decoration: none;
font-variant-numeric: tabular-nums;
letter-spacing: -0.01em;
transition: color 0.15s;
}
.block-map-location__phone:hover { color: var(--color-brand); }
.block-map-location__phone-label {
font-size: 0.78rem;
color: var(--color-muted);
text-transform: none;
letter-spacing: 0;
padding: 0;
border-radius: 0;
background: none;
font-weight: 500;
}
.block-map-location__phone-label::before {
content: "·";
margin-right: 0.4em;
color: var(--color-muted);
opacity: 0.6;
}
.block-map-location__email {
font-size: var(--text-md);
font-weight: 600;
color: var(--color-text);
text-decoration: none;
word-break: break-all;
transition: color 0.15s;
}
.block-map-location__email:hover {
color: var(--color-brand);
text-decoration: underline;
text-decoration-thickness: 1.5px;
text-underline-offset: 3px;
}
.block-map-location__hours {
margin: 0;
display: flex;
flex-direction: column;
gap: 0.2em;
}
.block-map-location__hours-row {
display: grid;
grid-template-columns: 1fr auto;
gap: var(--space-md);
align-items: baseline;
padding: 0.15em 0;
}
.block-map-location__hours-row dt {
font-size: var(--text-sm);
color: var(--color-muted);
font-weight: 500;
}
.block-map-location__hours-row dd {
margin: 0;
font-size: var(--text-sm);
font-weight: 600;
color: var(--color-text);
font-variant-numeric: tabular-nums;
letter-spacing: -0.005em;
}
.block-map-location__transit {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 0.4em;
}
.block-map-location__transit-item {
display: flex;
align-items: baseline;
gap: 0.5em;
flex-wrap: wrap;
font-size: var(--text-sm);
line-height: 1.45;
}
.block-map-location__transit-icon {
color: var(--color-brand);
font-size: var(--text-md);
}
.block-map-location__transit-line {
padding: 0.1em 0.55em;
background: color-mix(in srgb, var(--color-brand) 14%, transparent);
color: var(--color-brand);
border-radius: var(--radius-pill, 999px);
font-size: var(--text-xs);
font-weight: 600;
letter-spacing: 0.04em;
}
.block-map-location__transit-text {
color: var(--color-text);
}
.block-map-location__cta {
align-self: flex-start;
margin-top: 0.5rem;
text-align: center;
background: transparent !important;
color: var(--color-brand) !important;
border: 1.5px solid var(--color-brand) !important;
padding: 0.65rem 1.25rem !important;
font-size: 0.9rem !important;
font-weight: 600 !important;
border-radius: 999px !important;
text-decoration: none;
transition: background 0.18s, color 0.18s, transform 0.18s;
}
.block-map-location__cta:hover {
background: var(--color-brand) !important;
color: var(--color-on-brand, #fff) !important;
transform: translateY(-1px);
}
.block-map-location--bg-surface { background: var(--color-surface); }
.block-map-location--bg-surface .block-map-location__layout {
background: var(--color-bg);
}
.block-map-location--bg-gradient {
background: linear-gradient(180deg, var(--color-bg) 0%, color-mix(in srgb, var(--color-brand) 6%, var(--color-surface)) 100%);
}
.block-map-location--layout-map-wide .block-map-location__layout {
grid-template-columns: 1fr;
position: relative;
border: none;
box-shadow: none;
background: transparent;
}
.block-map-location--layout-map-wide .block-map-location__map {
min-height: 520px;
border-radius: clamp(14px, 1.6vw, 18px);
overflow: hidden;
border: 1px solid var(--color-border);
box-shadow: 0 14px 36px -20px color-mix(in srgb, var(--color-text) 35%, transparent);
}
.block-map-location--layout-map-wide .block-map-location__info {
position: absolute;
top: var(--space-xl);
right: var(--space-xl);
width: min(400px, 90%);
backdrop-filter: blur(12px);
background: color-mix(in srgb, var(--color-surface) 92%, transparent);
border: 1px solid var(--color-border);
border-radius: 14px;
box-shadow: 0 20px 50px -20px color-mix(in srgb, var(--color-text) 40%, transparent);
}
.block-map-location--layout-stacked .block-map-location__layout {
grid-template-columns: 1fr;
}
.block-map-location--layout-stacked .block-map-location__map {
min-height: 360px;
}
.block-map-location--layout-stacked .block-map-location__info {
border-left: none;
border-top: 1px solid var(--color-border);
}
.block-map-location--accent-flat .block-map-location__layout {
background: transparent;
border: none;
box-shadow: none;
gap: clamp(1rem, 2vw, 1.75rem);
}
.block-map-location--accent-flat .block-map-location__map {
border: 1px solid var(--color-border);
border-radius: clamp(14px, 1.6vw, 18px);
overflow: hidden;
}
.block-map-location--accent-flat .block-map-location__info {
background: transparent;
border: none;
padding: var(--space-lg) 0;
}
@media (max-width: 960px) {
.block-map-location__layout {
grid-template-columns: 1fr;
}
.block-map-location__map { min-height: 320px; }
.block-map-location__info {
border-left: none;
border-top: 1px solid var(--color-border);
}
.block-map-location--layout-map-wide .block-map-location__info {
position: static;
width: auto;
margin-top: calc(-1 * var(--space-lg));
}
}
@media (max-width: 640px) {
.block-map-location { padding: var(--space-2xl) 0; }
.block-map-location__info { padding: var(--space-lg); }
.block-map-location__row { gap: var(--space-sm); }
}
.block-content-rich {
padding: clamp(3.5rem, 6vw, 5.5rem) 0;
background: var(--color-bg);
color: var(--color-text);
counter-reset: block-content-rich-h2;
}
.block-content-rich__article {
max-width: 820px;
margin: 0 auto;
padding: 0 clamp(0.5rem, 2vw, 1rem);
}
.block-content-rich__details {
margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
}
.block-content-rich__details > summary::-webkit-details-marker {
display: none;
}
.block-content-rich__details > summary {
list-style: none;
}
.block-content-rich__toggle {
display: inline-flex;
align-items: center;
gap: 0.55rem;
cursor: pointer;
padding: 0.55rem 0.2rem;
background: transparent;
color: var(--color-brand);
border: none;
font-family: var(--font-display);
font-size: 0.95rem;
font-weight: 700;
letter-spacing: 0.01em;
line-height: 1.2;
user-select: none;
border-bottom: 1.5px solid color-mix(in srgb, var(--color-brand) 32%, transparent);
transition: color 0.18s, border-color 0.18s;
}
.block-content-rich__toggle:hover {
color: color-mix(in srgb, var(--color-brand) 80%, var(--color-text));
border-bottom-color: var(--color-brand);
}
.block-content-rich__toggle-icon {
transition: transform 0.25s ease;
flex-shrink: 0;
}
.block-content-rich__details[open] .block-content-rich__toggle-icon {
transform: rotate(180deg);
}
.block-content-rich__details[open] .block-content-rich__toggle-label {
font-size: 0;
}
.block-content-rich__details[open] .block-content-rich__toggle-label::before {
content: "Свернуть";
font-size: 0.95rem;
}
.block-content-rich__collapse {
margin-top: clamp(1.5rem, 3vw, 2.25rem);
animation: block-content-rich-fade-in 0.35s ease;
}
@keyframes block-content-rich-fade-in {
from { opacity: 0; transform: translateY(-4px); }
to   { opacity: 1; transform: translateY(0); }
}
.block-content-rich__eyebrow {
display: inline-flex;
align-items: center;
gap: 0.55rem;
padding: 0.4rem 0.95rem;
border-radius: 999px;
background: color-mix(in srgb, var(--color-brand) 12%, transparent);
color: var(--color-brand);
font-family: var(--font-display);
font-size: 0.78rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
margin-bottom: 1.25rem;
border: 1px solid color-mix(in srgb, var(--color-brand) 22%, transparent);
}
.block-content-rich__eyebrow::before {
content: "";
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--color-brand);
box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-brand) 22%, transparent);
}
.block-content-rich__title {
font-family: var(--font-display);
font-size: clamp(1.6rem, 2.4vw, 2.1rem);
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2;
color: var(--color-text);
margin: 0 0 1.1rem;
text-wrap: balance;
}
.block-content-rich__lead {
font-family: var(--font-sans);
font-size: clamp(1.05rem, 1.25vw, 1.18rem);
font-weight: 400;
color: var(--color-text);
line-height: 1.65;
margin: 0 0 clamp(1.5rem, 2.5vw, 2rem);
padding: 0;
border: 0;
position: relative;
}
.block-content-rich__lead::first-letter {
font-family: var(--font-display);
float: left;
font-size: clamp(2.4rem, 4vw, 3.2rem);
font-weight: 700;
line-height: 1;
padding: 0.25rem 0.55rem 0 0;
margin-top: 0.1rem;
color: var(--color-brand);
letter-spacing: -0.02em;
shape-outside: margin-box;
}
.block-content-rich__body {
font-size: var(--text-md);
color: var(--color-text);
line-height: 1.78;
}
.block-content-rich__h2 {
counter-increment: block-content-rich-h2;
font-family: var(--font-display);
font-size: clamp(1.5rem, 2.4vw, 1.95rem);
font-weight: 800;
letter-spacing: -0.018em;
line-height: 1.2;
color: var(--color-text);
margin: clamp(2.4rem, 4.5vw, 3rem) 0 1rem;
padding-top: clamp(1.4rem, 2.4vw, 1.85rem);
border-top: 2px solid color-mix(in srgb, var(--color-brand) 60%, transparent);
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
align-items: baseline;
gap: 1rem;
text-wrap: balance;
}
.block-content-rich__h2::after {
content: counter(block-content-rich-h2, decimal-leading-zero);
font-family: var(--font-display);
font-size: clamp(0.82rem, 1.1vw, 0.95rem);
font-weight: 700;
letter-spacing: 0.18em;
color: color-mix(in srgb, var(--color-brand) 85%, var(--color-text));
font-variant-numeric: tabular-nums;
align-self: start;
padding-top: 0.35em;
white-space: nowrap;
}
.block-content-rich__h2:first-child {
margin-top: 0;
padding-top: 0;
border-top: none;
}
.block-content-rich__h3 {
font-family: var(--font-display);
font-size: clamp(1.2rem, 1.8vw, 1.4rem);
font-weight: 700;
letter-spacing: -0.012em;
line-height: 1.32;
color: var(--color-text);
margin: clamp(1.7rem, 3.2vw, 2.2rem) 0 0.7rem;
padding: 0.15rem 0 0.15rem 0.95rem;
border-left: 4px solid var(--color-brand);
}
.block-content-rich__p {
margin: 0 0 1.15rem;
color: var(--color-text);
line-height: 1.78;
text-wrap: pretty;
}
.block-content-rich__p:last-child { margin-bottom: 0; }
.block-content-rich__p strong,
.block-content-rich__p b {
font-weight: 700;
color: var(--color-text);
background: linear-gradient(180deg, transparent 62%, color-mix(in srgb, var(--color-brand) 22%, transparent) 62%);
padding: 0 0.12em;
}
.block-content-rich__p a {
color: var(--color-brand);
text-decoration: underline;
text-decoration-thickness: 1.5px;
text-underline-offset: 3px;
transition: color 0.15s, text-decoration-thickness 0.15s;
}
.block-content-rich__p a:hover {
color: color-mix(in srgb, var(--color-brand) 75%, var(--color-text));
text-decoration-thickness: 2.5px;
}
.block-content-rich__ol {
list-style: none;
padding: 0;
margin: 0 0 1.6rem;
display: grid;
gap: 0.85rem;
counter-reset: block-content-rich-ol;
}
.block-content-rich__ol li {
position: relative;
padding-left: 2.6rem;
color: var(--color-text);
line-height: 1.65;
counter-increment: block-content-rich-ol;
min-height: 1.65em;
}
.block-content-rich__ol li::before {
content: counter(block-content-rich-ol, decimal-leading-zero);
position: absolute;
left: 0;
top: 0.05em;
font-family: var(--font-display);
font-size: 0.85em;
font-weight: 800;
color: var(--color-brand);
letter-spacing: 0.05em;
font-variant-numeric: tabular-nums;
background: color-mix(in srgb, var(--color-brand) 12%, transparent);
border: 1px solid color-mix(in srgb, var(--color-brand) 26%, transparent);
border-radius: 8px;
padding: 0.1em 0.45em;
line-height: 1.3;
}
.block-content-rich__ul {
list-style: none;
padding: 0;
margin: 0 0 1.6rem;
display: grid;
gap: 0.75rem;
}
.block-content-rich__ul li {
position: relative;
padding-left: 2.1rem;
color: var(--color-text);
line-height: 1.65;
min-height: 1.65em;
}
.block-content-rich__ul li::before {
content: "";
position: absolute;
left: 0;
top: 0.3em;
width: 22px;
height: 22px;
border-radius: 50%;
background: color-mix(in srgb, var(--color-brand) 14%, transparent);
border: 1px solid color-mix(in srgb, var(--color-brand) 32%, transparent);
}
.block-content-rich__ul li::after {
content: "";
position: absolute;
left: 6px;
top: 0.6em;
width: 10px;
height: 5px;
border-left: 2px solid var(--color-brand);
border-bottom: 2px solid var(--color-brand);
transform: rotate(-45deg);
border-bottom-left-radius: 1px;
}
.block-content-rich__blockquote,
.block-content-rich blockquote {
position: relative;
margin: clamp(1.75rem, 3vw, 2.25rem) 0;
padding: clamp(1.25rem, 2.4vw, 1.75rem) clamp(1.25rem, 2.4vw, 1.85rem) clamp(1.25rem, 2.4vw, 1.75rem) clamp(2.85rem, 4vw, 3.4rem);
font-family: var(--font-display);
font-size: clamp(1.1rem, 1.7vw, 1.25rem);
font-weight: 500;
line-height: 1.55;
color: var(--color-text);
background: color-mix(in srgb, var(--color-brand) 5%, transparent);
border-radius: clamp(14px, 1.6vw, 18px);
border: 1px solid color-mix(in srgb, var(--color-brand) 18%, transparent);
}
.block-content-rich__blockquote::before,
.block-content-rich blockquote::before {
content: "\201C";
position: absolute;
left: clamp(0.75rem, 1.6vw, 1.15rem);
top: clamp(0.1rem, 1vw, 0.35rem);
font-family: var(--font-display);
font-size: clamp(3rem, 5vw, 4rem);
font-weight: 800;
color: var(--color-brand);
line-height: 1;
}
.block-content-rich__p code,
.block-content-rich__ul li code,
.block-content-rich__ol li code {
font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, Consolas, monospace);
font-size: 0.92em;
padding: 0.12em 0.4em;
border-radius: 6px;
background: color-mix(in srgb, var(--color-text) 7%, transparent);
border: 1px solid color-mix(in srgb, var(--color-text) 10%, transparent);
}
.block-content-rich__aside {
font-size: var(--text-sm);
color: var(--color-muted);
line-height: 1.6;
padding: 0.9rem 1.1rem;
border-left: 2px solid color-mix(in srgb, var(--color-text) 18%, transparent);
background: color-mix(in srgb, var(--color-text) 3%, transparent);
border-radius: 0 8px 8px 0;
margin: 1.25rem 0;
}
.block-content-rich--bg-default { background: var(--color-bg); }
.block-content-rich--bg-surface { background: var(--color-surface); }
.block-content-rich--bg-tinted {
background: linear-gradient(180deg, var(--color-bg) 0%, color-mix(in srgb, var(--color-brand) 4%, var(--color-surface)) 100%);
}
.block-content-rich--measure-narrow .block-content-rich__article {
max-width: 680px;
}
@media (max-width: 640px) {
.block-content-rich__h2 {
grid-template-columns: minmax(0, 1fr);
gap: 0.35rem;
}
.block-content-rich__h2::after {
grid-row: 1;
justify-self: start;
padding-top: 0;
margin-bottom: 0.25rem;
}
.block-content-rich__lead::first-letter {
font-size: clamp(2.5rem, 12vw, 3.2rem);
}
}
.block-contact-form-banner-glass {
position: relative;
padding: var(--space-3xl) 0;
isolation: isolate;
overflow: hidden;
color: var(--color-on-overlay);
}
.block-contact-form-banner-glass__backdrop {
position: absolute;
inset: 0;
z-index: 0;
background:
radial-gradient(ellipse 70% 90% at 12% 8%, color-mix(in srgb, var(--color-brand) 38%, transparent) 0%, transparent 55%),
radial-gradient(ellipse 70% 90% at 88% 92%, color-mix(in srgb, var(--color-accent, var(--color-brand)) 32%, transparent) 0%, transparent 60%),
linear-gradient(135deg,
color-mix(in srgb, var(--color-overlay-dark) 90%, var(--color-brand)) 0%,
color-mix(in srgb, var(--color-overlay-dark) 78%, var(--color-brand)) 50%,
color-mix(in srgb, var(--color-overlay-dark) 95%, transparent) 100%);
}
.block-contact-form-banner-glass__image {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}
.block-contact-form-banner-glass__overlay {
position: absolute;
inset: 0;
z-index: 1;
background: linear-gradient(135deg,
color-mix(in srgb, var(--color-overlay-dark, #000) 72%, transparent) 0%,
color-mix(in srgb, var(--color-overlay-dark, #000) 50%, transparent) 60%,
color-mix(in srgb, var(--color-overlay-dark, #000) 68%, transparent) 100%);
}
.block-contact-form-banner-glass > .dl-container {
position: relative;
z-index: 2;
}
.block-contact-form-banner-glass__grid {
display: grid;
grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
gap: var(--space-2xl);
align-items: center;
}
.block-contact-form-banner-glass__copy {
max-width: 540px;
color: var(--color-on-overlay);
}
.block-contact-form-banner-glass__eyebrow {
display: inline-flex;
align-items: center;
gap: 0.7rem;
font-size: var(--text-xs);
font-weight: 700;
letter-spacing: 0.18em;
text-transform: uppercase;
color: color-mix(in srgb, var(--color-on-overlay) 88%, var(--color-brand));
margin-bottom: clamp(1.1rem, 2vw, 1.4rem);
}
.block-contact-form-banner-glass__eyebrow::before {
content: "";
width: 28px;
height: 1px;
background: color-mix(in srgb, var(--color-brand) 80%, var(--color-on-overlay));
flex-shrink: 0;
}
.block-contact-form-banner-glass__title {
font-family: var(--font-display);
font-size: 28px;
font-weight: 800;
line-height: 1.02;
letter-spacing: -0.035em;
margin: 0 0 clamp(0.85rem, 1.6vw, 1.1rem);
color: var(--color-on-overlay);
text-shadow: 0 1px 16px color-mix(in srgb, var(--color-overlay-dark) 45%, transparent);
}
.block-contact-form-banner-glass__subtitle {
font-size: 24px;
color: color-mix(in srgb, var(--color-on-overlay) 88%, transparent);
line-height: 1.55;
margin: 0 0 clamp(1.4rem, 2.4vw, 1.85rem);
max-width: 46ch;
}
.block-contact-form-banner-glass__bullets {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: var(--space-sm);
}
.block-contact-form-banner-glass__bullet {
display: flex;
gap: 0.9rem;
align-items: center;
font-size: var(--text-md);
color: color-mix(in srgb, var(--color-on-overlay) 95%, transparent);
line-height: 1.45;
}
.block-contact-form-banner-glass__bullet-link {
color: inherit;
text-decoration: none;
transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.block-contact-form-banner-glass__bullet-link:hover,
.block-contact-form-banner-glass__bullet-link:focus-visible {
color: color-mix(in srgb, var(--color-brand) 70%, var(--color-on-overlay));
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 3px;
}
.block-contact-form-banner-glass__bullet-check {
flex: 0 0 26px;
width: 26px;
height: 26px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 999px;
background: color-mix(in srgb, var(--color-brand) 18%, transparent);
border: 1px solid color-mix(in srgb, var(--color-brand) 55%, transparent);
color: color-mix(in srgb, var(--color-brand) 90%, var(--color-on-overlay));
}
.block-contact-form-banner-glass__card {
position: relative;
border-radius: clamp(18px, 1.8vw, 22px);
background: linear-gradient(165deg,
rgba(255, 255, 255, 0.18) 0%,
rgba(255, 255, 255, 0.08) 100%);
backdrop-filter: blur(28px) saturate(160%);
-webkit-backdrop-filter: blur(28px) saturate(160%);
border: 1px solid transparent;
background-clip: padding-box;
box-shadow:
0 1px 0 rgba(255, 255, 255, 0.4) inset,
0 -1px 0 rgba(255, 255, 255, 0.05) inset,
0 36px 90px -28px color-mix(in srgb, var(--color-overlay-dark) 70%, transparent),
0 60px 140px -60px color-mix(in srgb, var(--color-brand) 60%, transparent);
}
.block-contact-form-banner-glass__card::before {
content: "";
position: absolute;
inset: -1px;
border-radius: inherit;
padding: 1px;
background: linear-gradient(145deg,
rgba(255, 255, 255, 0.55) 0%,
rgba(255, 255, 255, 0.14) 40%,
color-mix(in srgb, var(--color-brand) 65%, transparent) 100%);
-webkit-mask:
linear-gradient(#000 0 0) content-box,
linear-gradient(#000 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
pointer-events: none;
z-index: 1;
}
.block-contact-form-banner-glass__card::after {
content: "";
position: absolute;
top: 18px;
left: 18px;
width: 32px;
height: 32px;
border-top: 1px solid color-mix(in srgb, var(--color-brand) 70%, transparent);
border-left: 1px solid color-mix(in srgb, var(--color-brand) 70%, transparent);
border-top-left-radius: 8px;
pointer-events: none;
z-index: 2;
}
.block-contact-form-banner-glass__card-inner {
position: relative;
z-index: 2;
padding: clamp(1.5rem, 2.8vw, 2.15rem);
padding-top: clamp(2rem, 3.4vw, 2.55rem);
display: flex;
flex-direction: column;
gap: clamp(0.95rem, 1.6vw, 1.2rem);
}
.block-contact-form-banner-glass__grid-inputs {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: var(--space-md);
}
.block-contact-form-banner-glass__field {
display: flex;
flex-direction: column;
gap: 6px;
min-width: 0;
}
.block-contact-form-banner-glass__field--full { grid-column: 1 / -1; }
.block-contact-form-banner-glass__field--half { grid-column: auto; }
.block-contact-form-banner-glass__field label {
font-size: var(--text-xs);
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--color-on-overlay);
text-shadow: 0 1px 2px color-mix(in srgb, var(--color-overlay-dark, #0a1320) 38%, transparent);
}
.block-contact-form-banner-glass__field input[type],
.block-contact-form-banner-glass__field textarea,
.block-contact-form-banner-glass__field select {
width: 100%;
min-width: 0;
box-sizing: border-box;
padding: 1rem 1.1rem;
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.14);
background: rgba(0, 0, 0, 0.22);
color: var(--color-on-overlay);
font: inherit;
font-size: var(--text-md);
outline: none;
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.block-contact-form-banner-glass__field textarea {
resize: vertical;
min-height: 96px;
}
.block-contact-form-banner-glass__field select option {
color: var(--color-text);
background: var(--color-surface);
}
.block-contact-form-banner-glass__field input::placeholder,
.block-contact-form-banner-glass__field textarea::placeholder {
color: rgba(255, 255, 255, 0.55);
}
.block-contact-form-banner-glass--skin-professional .block-contact-form-banner-glass__field input[type],
.block-contact-form-banner-glass--skin-professional .block-contact-form-banner-glass__field textarea,
.block-contact-form-banner-glass--skin-professional .block-contact-form-banner-glass__field select {
background: var(--color-surface);
border: 1px solid color-mix(in srgb, var(--color-text) 14%, transparent);
color: var(--color-text);
box-shadow: none;
}
.block-contact-form-banner-glass--skin-professional .block-contact-form-banner-glass__field input::placeholder,
.block-contact-form-banner-glass--skin-professional .block-contact-form-banner-glass__field textarea::placeholder {
color: color-mix(in srgb, var(--color-text) 45%, transparent);
opacity: 1;
}
.block-contact-form-banner-glass--skin-professional .block-contact-form-banner-glass__field label {
color: var(--color-text);
text-shadow: none;
}
.block-contact-form-banner-glass__field input[type] {
text-overflow: ellipsis;
}
.block-contact-form-banner-glass__field input[type]:focus,
.block-contact-form-banner-glass__field textarea:focus,
.block-contact-form-banner-glass__field select:focus {
background: rgba(0, 0, 0, 0.36);
border-color: color-mix(in srgb, var(--color-brand) 75%, #fff);
box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-brand) 28%, transparent);
}
.block-contact-form-banner-glass__field input[type]:hover,
.block-contact-form-banner-glass__field textarea:hover,
.block-contact-form-banner-glass__field select:hover {
background: rgba(0, 0, 0, 0.32);
border-color: rgba(255, 255, 255, 0.28);
}
.block-contact-form-banner-glass__field input[type]:-webkit-autofill,
.block-contact-form-banner-glass__field textarea:-webkit-autofill,
.block-contact-form-banner-glass__field select:-webkit-autofill {
-webkit-text-fill-color: var(--color-on-overlay);
-webkit-box-shadow:
0 0 0 999px rgba(0, 0, 0, 0.28) inset,
0 1px 0 rgba(255, 255, 255, 0.08) inset;
caret-color: var(--color-on-overlay);
transition: background-color 99999s ease-out 0s;
}
.block-contact-form-banner-glass__submit {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.55rem;
padding: 1.1rem 1.6rem;
border-radius: 12px;
background: linear-gradient(180deg,
color-mix(in srgb, var(--color-brand) 100%, transparent) 0%,
color-mix(in srgb, var(--color-brand) 92%, var(--color-overlay-dark)) 100%);
color: var(--color-on-overlay);
font: inherit;
font-size: var(--text-md);
font-weight: 700;
letter-spacing: 0.01em;
border: none;
cursor: pointer;
text-decoration: none;
transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
box-shadow:
0 1px 0 rgba(255, 255, 255, 0.32) inset,
0 -1px 0 color-mix(in srgb, var(--color-overlay-dark) 30%, transparent) inset,
0 12px 28px -8px color-mix(in srgb, var(--color-brand) 55%, transparent),
0 30px 64px -32px color-mix(in srgb, var(--color-brand) 70%, transparent);
}
.block-contact-form-banner-glass__submit:hover {
transform: translateY(-1px);
filter: brightness(1.04);
box-shadow:
0 1px 0 rgba(255, 255, 255, 0.4) inset,
0 -1px 0 color-mix(in srgb, var(--color-overlay-dark) 32%, transparent) inset,
0 18px 36px -10px color-mix(in srgb, var(--color-brand) 65%, transparent),
0 40px 80px -36px color-mix(in srgb, var(--color-brand) 85%, transparent);
}
.block-contact-form-banner-glass__submit svg { transition: transform 0.15s; }
.block-contact-form-banner-glass__submit:hover svg { transform: translateX(3px); }
.block-contact-form-banner-glass__privacy {
font-size: var(--text-2xs);
color: color-mix(in srgb, var(--color-on-overlay) 65%, transparent);
line-height: 1.55;
margin: 0.25rem 0 0;
text-align: center;
letter-spacing: 0.005em;
}
.block-contact-form-banner-glass--backdrop-mesh .block-contact-form-banner-glass__backdrop {
background:
radial-gradient(circle at 15% 25%, color-mix(in srgb, var(--color-brand) 50%, transparent) 0%, transparent 45%),
radial-gradient(circle at 80% 15%, color-mix(in srgb, var(--color-accent, var(--color-brand)) 38%, transparent) 0%, transparent 55%),
radial-gradient(circle at 65% 85%, color-mix(in srgb, var(--color-brand) 30%, transparent) 0%, transparent 60%),
linear-gradient(135deg,
color-mix(in srgb, var(--color-overlay-dark) 90%, var(--color-brand)) 0%,
color-mix(in srgb, var(--color-overlay-dark) 78%, var(--color-brand)) 50%,
color-mix(in srgb, var(--color-overlay-dark) 95%, transparent) 100%);
}
.block-contact-form-banner-glass--backdrop-solid .block-contact-form-banner-glass__backdrop {
background: linear-gradient(135deg,
color-mix(in srgb, var(--color-overlay-dark) 88%, var(--color-brand)) 0%,
var(--color-overlay-dark) 100%);
}
.block-contact-form-banner-glass--overlay-brand .block-contact-form-banner-glass__overlay {
background: linear-gradient(135deg, color-mix(in srgb, var(--color-primary) 75%, #000) 0%, color-mix(in srgb, var(--color-primary) 45%, #000) 100%);
mix-blend-mode: multiply;
}
.block-contact-form-banner-glass--overlay-gradient-diagonal .block-contact-form-banner-glass__overlay {
background: linear-gradient(115deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.32) 60%, rgba(0, 0, 0, 0.1) 100%);
}
.block-contact-form-banner-glass--spacing-compact { padding: var(--space-xl) 0; }
.block-contact-form-banner-glass--spacing-spacious { padding: calc(var(--space-3xl) + var(--space-lg)) 0; }
.block-contact-form-banner-glass__map {
margin-top: var(--space-xl);
display: grid;
grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
gap: var(--space-lg);
align-items: stretch;
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: var(--radius-lg, 18px);
padding: var(--space-lg);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}
.block-contact-form-banner-glass__map-frame {
position: relative;
min-height: 360px;
border-radius: var(--radius-md, 12px);
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.12);
background: rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
.block-contact-form-banner-glass__map {
grid-template-columns: 1fr;
}
.block-contact-form-banner-glass__map-frame {
min-height: 320px;
}
}
.block-contact-form-banner-glass__map-frame iframe {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
border: 0;
}
.block-contact-form-banner-glass__map-pin {
display: none !important;
}
.block-contact-form-banner-glass__map-pin-dot {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 16px;
height: 16px;
border-radius: 50%;
background: var(--color-brand);
box-shadow:
0 0 0 4px color-mix(in srgb, #ffffff 92%, transparent),
0 6px 18px color-mix(in srgb, var(--color-brand) 60%, transparent);
}
.block-contact-form-banner-glass__map-pin-ring {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 56px;
height: 56px;
border-radius: 50%;
border: 2px solid var(--color-brand);
opacity: 0.4;
animation: block-contact-form-banner-glass-map-pulse 2.4s ease-out infinite;
}
@keyframes block-contact-form-banner-glass-map-pulse {
0%   { transform: translate(-50%, -50%) scale(0.45); opacity: 0.55; }
85%  { transform: translate(-50%, -50%) scale(1.05); opacity: 0; }
100% { transform: translate(-50%, -50%) scale(1.05); opacity: 0; }
}
.block-contact-form-banner-glass__map-info {
display: flex;
flex-direction: column;
justify-content: center;
gap: var(--space-sm);
min-width: 0;
}
.block-contact-form-banner-glass__map-label {
font-size: var(--text-xs);
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.65);
}
.block-contact-form-banner-glass__map-address {
font-family: var(--font-display);
font-size: clamp(1.25rem, 2vw, 1.75rem);
font-weight: 600;
line-height: 1.25;
color: var(--color-on-overlay);
word-break: break-word;
}
.block-contact-form-banner-glass__map-directions {
display: inline-flex;
align-items: center;
align-self: flex-start;
margin-top: var(--space-xs);
font-size: var(--text-sm);
font-weight: 600;
color: var(--color-accent, #fff);
text-decoration: none;
border-bottom: 1px solid color-mix(in srgb, var(--color-accent, #fff) 50%, transparent);
}
.block-contact-form-banner-glass__map-directions:hover {
color: var(--color-on-overlay);
border-bottom-color: var(--color-on-overlay);
}
@media (max-width: 960px) {
.block-contact-form-banner-glass__grid {
grid-template-columns: 1fr;
gap: var(--space-xl);
}
.block-contact-form-banner-glass__copy { max-width: 100%; }
.block-contact-form-banner-glass__map { grid-template-columns: 1fr; }
.block-contact-form-banner-glass__map-frame { min-height: 200px; }
}
@media (max-width: 560px) {
.block-contact-form-banner-glass__card-inner { padding: var(--space-lg); }
.block-contact-form-banner-glass__grid-inputs { grid-template-columns: 1fr; }
.block-contact-form-banner-glass__field--half { grid-column: 1 / -1; }
.block-contact-form-banner-glass__map { padding: var(--space-md); }
}
.block-footer-columns {
position: relative;
padding: clamp(3rem, 6vw, 5rem) 0 clamp(1.25rem, 2.5vw, 1.75rem);
background: var(--color-surface);
border-top: 1px solid color-mix(in srgb, var(--color-text) 12%, transparent);
}
.block-footer-columns::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg,
var(--color-brand) 0%,
var(--color-accent, var(--color-brand)) 100%);
pointer-events: none;
}
.block-footer-columns__top {
display: grid;
grid-template-columns: 1.1fr 2fr;
gap: clamp(2rem, 4vw, 3.5rem);
padding-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}
.block-footer-columns__brand {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.block-footer-columns__brand::before {
content: "";
display: inline-block;
width: 2.25rem;
height: 2px;
background: var(--color-brand);
margin-bottom: 0.6rem;
}
.block-footer-columns__brand-name {
font-family: var(--font-display, var(--font-sans));
font-size: clamp(1.25rem, 2.5vw, 1.75rem);
font-weight: 800;
letter-spacing: -0.02em;
line-height: 1;
color: var(--color-text);
}
.block-footer-columns__tagline {
font-size: var(--text-sm);
color: var(--color-muted);
line-height: 1.55;
margin: 0;
max-width: 320px;
text-wrap: pretty;
}
.block-footer-columns__nav {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: clamp(1.5rem, 2.5vw, 2.25rem);
}
.block-footer-columns__col {
margin: 0;
max-height: none;
}
.block-footer-columns__col-title {
display: flex;
align-items: center;
justify-content: space-between;
font-family: var(--font-display);
font-size: var(--text-2xs);
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.14em;
color: var(--color-text);
margin: 0 0 var(--space-md);
line-height: 1.4;
cursor: pointer;
list-style: none;
user-select: none;
padding: var(--space-2xs) 0;
}
.block-footer-columns__col-title::-webkit-details-marker { display: none; }
.block-footer-columns__col-title::marker { content: ''; }
.block-footer-columns__col-title::after {
content: '';
width: 10px;
height: 10px;
border-right: 2px solid currentColor;
border-bottom: 2px solid currentColor;
transform: rotate(45deg);
transition: transform 0.2s ease;
margin-left: var(--space-sm);
opacity: 0.7;
flex-shrink: 0;
}
.block-footer-columns__col[open] .block-footer-columns__col-title::after {
transform: rotate(-135deg);
}
.block-footer-columns__links {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 0.55rem;
max-height: 26rem;
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: color-mix(in srgb, var(--color-muted) 40%, transparent) transparent;
}
.block-footer-columns__links::-webkit-scrollbar { width: 6px; }
.block-footer-columns__links::-webkit-scrollbar-thumb {
background: color-mix(in srgb, var(--color-muted) 40%, transparent);
border-radius: 3px;
}
.block-footer-columns__links a {
font-size: var(--text-sm);
color: var(--color-muted);
line-height: 1.5;
text-decoration: none;
overflow-wrap: anywhere;
transition: color 0.15s ease, padding-left 0.15s ease;
position: relative;
}
.block-footer-columns__links a:hover {
color: var(--color-text);
padding-left: 0.5rem;
}
.block-footer-columns__links a:hover::before {
content: "→";
position: absolute;
left: -0.4rem;
color: var(--color-brand);
font-weight: 700;
}
@media (min-width: 768px) {
.block-footer-columns__col-title { cursor: default; }
.block-footer-columns__col-title::after { display: none; }
}
.block-footer-columns__bottom {
padding-top: var(--space-md);
border-top: 1px solid color-mix(in srgb, var(--color-text) 12%, transparent);
font-family: var(--font-mono, var(--font-sans));
font-size: var(--text-2xs);
font-weight: 500;
letter-spacing: 0.08em;
color: var(--color-muted);
text-align: center;
}
@media (max-width: 760px) {
.block-footer-columns__top {
grid-template-columns: 1fr;
gap: var(--space-xl);
}
.block-footer-columns__nav { grid-template-columns: 1fr; gap: var(--space-sm); }
.block-footer-columns__col {
border-bottom: 1px solid color-mix(in srgb, var(--color-text) 10%, transparent);
padding: var(--space-xs) 0;
}
.block-footer-columns__col:last-child { border-bottom: none; }
.block-footer-columns__links { max-height: none; }
}
.block-footer-columns--bg-default { background: var(--color-bg); }
.block-footer-columns--bg-surface { background: var(--color-surface); }
.block-footer-columns--bg-gradient {
background: linear-gradient(135deg,
var(--color-surface) 0%,
color-mix(in srgb, var(--color-brand) 4%, var(--color-surface-2)) 100%);
}
.block-footer-columns--bg-dark { background: var(--color-surface-2); }
.block-footer-columns--spacing-compact { padding: var(--space-lg) 0 var(--space-sm); }
.block-footer-columns--spacing-spacious { padding: clamp(5rem, 10vw, 9rem) 0 var(--space-lg); }
@media (prefers-reduced-motion: reduce) {
.block-footer-columns__col-title::after,
.block-footer-columns__col[open] .block-footer-columns__col-title::after,
.block-footer-columns__links a,
.block-footer-columns__links a:hover {
transition: none;
padding-left: 0;
}
}
/* skin layer */

[class*="--skin-friendly"] {
font-family: var(--font-body), "Onest", "Inter", "Manrope", system-ui, sans-serif;
letter-spacing: -0.005em;
}
[class*="--skin-friendly"] :is(h1, h2, h3, h4, h5, h6) {
font-family: var(--font-display), "Onest", "Inter", "Manrope", system-ui, sans-serif;
font-weight: 600;
letter-spacing: -0.02em;
line-height: 1.15;
}
[class*="--skin-friendly"] :is(p, li, dd, blockquote) {
line-height: 1.7;
}
[class*="--skin-friendly"] :where(
.card, .pricing-card, .testimonial, .faq-card, .faq-item, .booking-card,
.quote-card, .lead-form, .request-form, .contact-card, .form-card,
.info-card, .stats-card, .feature-card, .cta-card, .cta-box,
[class$="__card"]:not([class*="__card-"]), [class*="__card "]:not([class*="__card-"]),
[class$="__tile"]:not([class*="__tile-"]), [class*="__tile "]:not([class*="__tile-"]),
[class$="__item"]:not([class*="__item-"]):not(li):not(option), [class*="__item "]:not([class*="__item-"]):not(li):not(option),
article, aside, dialog
) {
border-radius: 24px;
}
[class*="--skin-friendly"] :where(input, textarea, select) {
border-radius: 14px;
}
[class*="--skin-friendly"] :where(img, picture, video):not([data-img-role="logo"]):not([data-img-role="icon"]):not([data-img-role="avatar"]) {
border-radius: 20px;
}
[class*="--skin-friendly"] :where(img[data-img-role="avatar"]) {
border-radius: 999px;
}
[class*="--skin-friendly"] :where(.dl-btn, .dl-btn-primary, .dl-btn-secondary, button[type="submit"]) {
border-radius: 999px;
padding: 0.85em 1.7em;
font-weight: 600;
letter-spacing: 0;
transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
[class*="--skin-friendly"] :where(.dl-btn-primary, button[type="submit"]) {
background: var(--color-brand);
color: var(--color-on-brand, #fff);
border: none;
box-shadow:
0 8px 22px -10px color-mix(in srgb, var(--color-brand) 55%, transparent),
0 2px 6px -2px color-mix(in srgb, var(--color-brand) 25%, transparent);
}
[class*="--skin-friendly"] :where(.dl-btn-primary:hover, button[type="submit"]:hover) {
transform: translateY(-2px);
box-shadow:
0 14px 30px -10px color-mix(in srgb, var(--color-brand) 65%, transparent),
0 4px 10px -2px color-mix(in srgb, var(--color-brand) 30%, transparent);
}
[class*="--skin-friendly"] .dl-btn-secondary {
background: color-mix(in srgb, var(--color-brand) 8%, var(--color-surface, #fff));
color: var(--color-brand);
border: 1px solid color-mix(in srgb, var(--color-brand) 25%, transparent);
}
[class*="--skin-friendly"] .dl-btn-secondary:hover {
background: color-mix(in srgb, var(--color-brand) 14%, var(--color-surface, #fff));
border-color: color-mix(in srgb, var(--color-brand) 45%, transparent);
}
[class*="--skin-friendly"] :where(
.card, .pricing-card, .testimonial, .faq-card, .faq-item,
.booking-card, .quote-card, .info-card, .stats-card,
.feature-card, .cta-card, .form-card,
[class$="__card"]:not([class*="__card-"])
), [class*="__card "]:not([class*="__card-"])
) {
box-shadow:
0 1px 2px rgba(0, 0, 0, 0.04),
0 8px 24px -10px rgba(0, 0, 0, 0.10);
border: 1px solid color-mix(in srgb, var(--color-border, #e5e7eb) 50%, transparent);
transition: transform 0.2s ease, box-shadow 0.25s ease;
}
[class*="--skin-friendly"] :where(
.card, .pricing-card, .testimonial, .faq-item,
.feature-card, [class$="__card"]:not([class*="__card-"])
):hover, [class*="__card "]:not([class*="__card-"])
):hover {
transform: translateY(-3px);
box-shadow:
0 2px 4px rgba(0, 0, 0, 0.05),
0 16px 36px -12px rgba(0, 0, 0, 0.14);
}
[class*="--skin-friendly"] :where(.dl-eyebrow, [class*="__eyebrow"]) {
display: inline-flex;
align-items: center;
gap: 0.5em;
padding: 0.45em 1.1em 0.45em 0.95em;
border-radius: 999px;
background: linear-gradient(135deg,
color-mix(in srgb, var(--color-brand) 14%, transparent) 0%,
color-mix(in srgb, var(--color-accent, var(--color-brand)) 8%, transparent) 100%);
color: var(--color-brand);
font-size: var(--text-xs, 0.78rem);
font-weight: 600;
letter-spacing: 0.04em;
text-transform: none;
border: 1px solid color-mix(in srgb, var(--color-brand) 22%, transparent);
box-shadow:
0 1px 0 rgba(255, 255, 255, 0.6) inset,
0 4px 12px -6px color-mix(in srgb, var(--color-brand) 38%, transparent);
}
[class*="--skin-friendly"] :where(.dl-eyebrow, [class*="__eyebrow"])::before {
content: "";
width: 0.45em;
height: 0.45em;
border-radius: 50%;
background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-accent, var(--color-brand)) 100%);
box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-brand) 22%, transparent);
flex: 0 0 auto;
}
[class*="--skin-friendly"] :where(
[data-bg-overlay],
[class*="cinematic"],
[class*="hero-split"],
[class*="hero-stats"],
[class*="hero-bento"],
[class*="full-bg"],
[class*="banner-glass"],
[class*="dark-split"],
[class*="dark-warm"]
) :where(.dl-eyebrow, [class*="__eyebrow"]) {
background: linear-gradient(135deg,
rgba(255, 255, 255, 0.22) 0%,
rgba(255, 255, 255, 0.10) 100%);
color: #fff;
border-color: rgba(255, 255, 255, 0.32);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
box-shadow:
0 1px 0 rgba(255, 255, 255, 0.32) inset,
0 6px 20px -6px rgba(0, 0, 0, 0.45);
}
[class*="--skin-friendly"] :where(
[data-bg-overlay],
[class*="cinematic"],
[class*="hero-split"],
[class*="hero-stats"],
[class*="hero-bento"],
[class*="full-bg"],
[class*="banner-glass"],
[class*="dark-split"],
[class*="dark-warm"]
) :where(.dl-eyebrow, [class*="__eyebrow"])::before {
background: linear-gradient(135deg, #fff 0%, var(--color-accent, var(--color-brand)) 100%);
box-shadow: 0 0 8px 2px color-mix(in srgb, var(--color-accent, var(--color-brand)) 38%, transparent);
}
[class*="--skin-friendly"] :where(input, textarea, select) {
background: color-mix(in srgb, var(--color-surface, #fff) 92%, var(--color-brand) 4%);
border: 1.5px solid color-mix(in srgb, var(--color-border, #e5e7eb) 60%, transparent);
padding: 0.85em 1em;
font-size: 0.95rem;
transition: border-color 0.18s, box-shadow 0.18s;
}
[class*="--skin-friendly"] :where(input:focus, textarea:focus, select:focus) {
outline: none;
border-color: var(--color-brand);
box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-brand) 15%, transparent);
}
[class^="block-hero-"][class*="--skin-friendly"] :where(h1, .hero-title) {
font-weight: 600;
letter-spacing: -0.025em;
line-height: 1.08;
}
[class^="block-hero-"][class*="--skin-friendly"] :where(.subtitle, [class*="__subtitle"], .prose) {
font-weight: 400;
font-size: clamp(1rem, 1.2vw, 1.125rem);
line-height: 1.7;
}
[class*="--skin-friendly"] :where(.stat-number, [class*="__stat-number"], [class*="__counter-value"], [class*="__price"]) {
font-weight: 700;
letter-spacing: -0.03em;
}
[class*="--skin-friendly"] iframe {
border-radius: 24px;
overflow: hidden;
}
[class*="--skin-friendly"]:not([class^="block-header-"]):not([class^="block-footer-"]) {
--space-section: clamp(4rem, 8vw, 7rem);
padding-top: var(--space-section, 5rem);
padding-bottom: var(--space-section, 5rem);
}
[class*="--skin-friendly"] :where([class*="__section-title"], [class*="__title"]) {
margin-bottom: 0.5em;
}
[class*="--skin-friendly"] ul:not([class*="nav"]):not([class*="menu"]) > li::marker {
color: var(--color-brand);
}
[class*="--skin-friendly"] :where(.card, .feature-card, .pricing-card, [class$="__card"]:not([class*="__card-"]))::before, [class*="__card "]:not([class*="__card-"]))::before {
content: "";
position: absolute;
inset: 0;
border-radius: inherit;
background: radial-gradient(
ellipse 60% 40% at 100% 0%,
color-mix(in srgb, var(--color-accent, var(--color-brand)) 8%, transparent) 0%,
transparent 70%
);
pointer-events: none;
opacity: 0;
transition: opacity 0.3s ease;
}
[class*="--skin-friendly"] :where(.card, .feature-card, .pricing-card, [class$="__card"]:not([class*="__card-"])), [class*="__card "]:not([class*="__card-"])) {
position: relative;
}
[class*="--skin-friendly"] :where(.card:hover, .feature-card:hover, .pricing-card:hover, [class$="__card"]:not([class*="__card-"]):hover)::before, [class*="__card "]:not([class*="__card-"]):hover)::before {
opacity: 1;
}
[class*="--skin-friendly"][class*="--bg-surface"] :where(.card, .feature-card, .pricing-card, .info-card, [class$="__card"]:not([class*="__card-"])), [class*="__card "]:not([class*="__card-"])),
[class*="--skin-friendly"][class*="--bg-gradient"] :where(.card, .feature-card, .pricing-card, .info-card, [class$="__card"]:not([class*="__card-"])), [class*="__card "]:not([class*="__card-"])),
[class*="--skin-friendly"][class*="--bg-tinted"] :where(.card, .feature-card, .pricing-card, .info-card, [class$="__card"]:not([class*="__card-"])), [class*="__card "]:not([class*="__card-"])) {
background: linear-gradient(160deg,
color-mix(in srgb, #fff 96%, var(--color-brand) 4%) 0%,
color-mix(in srgb, #fff 88%, var(--color-brand) 12%) 100%);
border-color: color-mix(in srgb, var(--color-brand) 14%, var(--color-border, #e5e7eb));
box-shadow:
0 1px 0 rgba(255, 255, 255, 0.85) inset,
0 4px 12px -4px color-mix(in srgb, var(--color-brand) 14%, transparent),
0 16px 40px -16px color-mix(in srgb, var(--color-brand) 22%, transparent);
}
[class*="--skin-friendly"][class*="--bg-surface"] :where(.card:hover, .feature-card:hover, .pricing-card:hover, .info-card:hover, [class$="__card"]:not([class*="__card-"]):hover), [class*="__card "]:not([class*="__card-"]):hover),
[class*="--skin-friendly"][class*="--bg-gradient"] :where(.card:hover, .feature-card:hover, .pricing-card:hover, .info-card:hover, [class$="__card"]:not([class*="__card-"]):hover), [class*="__card "]:not([class*="__card-"]):hover),
[class*="--skin-friendly"][class*="--bg-tinted"] :where(.card:hover, .feature-card:hover, .pricing-card:hover, .info-card:hover, [class$="__card"]:not([class*="__card-"]):hover), [class*="__card "]:not([class*="__card-"]):hover) {
border-color: color-mix(in srgb, var(--color-brand) 32%, var(--color-border, #e5e7eb));
box-shadow:
0 1px 0 rgba(255, 255, 255, 0.9) inset,
0 8px 22px -6px color-mix(in srgb, var(--color-brand) 22%, transparent),
0 32px 64px -24px color-mix(in srgb, var(--color-brand) 36%, transparent);
}
/* platform globals */

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
main { overflow-x: clip; }
@media (max-width: 768px) {
.block-header-nav.is-open .block-header-nav__links { display: flex; }
.block-header-nav.is-open .block-header-nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.block-header-nav.is-open .block-header-nav__burger span:nth-child(2) { opacity: 0; }
.block-header-nav.is-open .block-header-nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.is-nav-open { overflow: hidden; }
}
.ess-custom-section { position: relative; padding: var(--space-xl, 3rem) 0; }
.ess-custom-section__inner { max-width: 1160px; margin: 0 auto; padding: 0 var(--space-md, 1rem); }
.ess-custom-section__body { margin-top: var(--space-md, 1rem); }
.ess-form-success { position: fixed; bottom: 24px; right: 24px; background: var(--color-success, #0f9d58); color: #fff; padding: 12px 18px; border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,.18); z-index: 9999; opacity: 0; transform: translateY(8px); transition: opacity .25s, transform .25s; }
.ess-form-success.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: no-preference) {
main > *:not(:nth-child(-n+2)) { opacity: 1; transform: none; }
main > .is-visible,
main > section.block-header-nav,
main > header,
main > section[class*="block-hero"],
main > section[class*="block-banner"] { opacity: 1; transform: none; }
}
.block-header-nav__logo::before {
content: none !important;
}
:where(.dl-eyebrow, [class*="__eyebrow"]:not([class*="__eyebrow-"])) {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5em;
max-width: max-content;
vertical-align: middle;
font-size: var(--text-xs, 0.8125rem);
font-weight: 700;
letter-spacing: 0.14em;
text-transform: uppercase;
line-height: 1;
padding: 0.42em 0.9em;
border-radius: var(--radius-md, 8px);
color: var(--color-brand);
background: color-mix(in srgb, var(--color-brand) 9%, transparent);
border: 1px solid color-mix(in srgb, var(--color-brand) 20%, transparent);
}
[class*="__kicker"]:not([class*="__kicker-"]),
[class*="__overline"]:not([class*="__overline-"]),
[class*="__step-label"]:not([class*="__step-label-"]),
[class*="__step-kicker"]:not([class*="__step-kicker-"]) {
font-size: var(--text-xs, 0.8125rem) !important;
}
[class*="block-process-"] [class*="__label"]:not([class*="__label-"]),
[class*="block-process-"] [class*="__tag"]:not([class*="__tag-"]) {
font-size: var(--text-xs, 0.8125rem) !important;
}
:where([class*="__value"], [class*="__phone"], [class*="__email"], [class*="__address"],
[class*="__social"], [class*="__post"], [class*="__article"])
a:not([class*="btn"]):not([class*="__cta"]):not([class*="__nav"]):not([class*="__menu"]) {
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 3px;
}
@media (min-width: 1025px) {
[class*="block-header"] [class*="__link"]:not(#_) {
text-decoration: none;
border-bottom-color: transparent;
}
}
[class*="block-testimonials-"] [class*="__quote"]::before,
[class*="block-testimonials-"] blockquote::before {
content: none !important;
}
@media (prefers-reduced-motion: no-preference) {
*,
*::before,
*::after {
transition-property:
color, background-color, border-color, outline-color, text-decoration-color,
box-shadow, transform, opacity, filter, fill, stroke;
transition-duration: var(--transition-hover, 0.2s);
transition-timing-function: var(--ease-hover, ease);
}
}
.block-features-grid3__card,
.block-services-cards3__card,
.block-testimonials-cards3__card,
.block-product-cards3__card,
.block-team-grid4__member,
.block-blog-cards3__card,
.block-process-steps4__step,
.block-process-steps4__item {
background: var(--color-surface, #ffffff);
border: 1px solid var(--color-border, #e5e7eb);
border-radius: clamp(12px, 1.2vw, 18px);
padding: clamp(1.5rem, 2.2vw, 2rem);
box-shadow: var(--shadow-sm, 0 1px 2px rgba(15, 23, 42, 0.05));
}
.block-features-grid3__card:hover,
.block-services-cards3__card:hover,
.block-testimonials-cards3__card:hover,
.block-pricing-tiers3__tier:hover,
.block-product-cards3__card:hover,
.block-team-grid4__member:hover,
.block-blog-cards3__card:hover,
.block-process-steps4__step:hover,
.block-process-steps4__item:hover {
border-color: color-mix(in srgb, var(--color-brand) 35%, var(--color-border, #e5e7eb));
box-shadow: var(--shadow-md, 0 6px 18px rgba(15, 23, 42, 0.08));
}
.dl-btn-primary {
background: var(--color-brand);
color: var(--color-on-brand);
font-weight: 700;
font-size: var(--text-md, 1.0625rem);
letter-spacing: 0.01em;
padding: 0.85rem 1.75rem;
border-radius: var(--radius-lg, 10px);
}
.dl-btn-primary:hover {
background: var(--color-brand-hover, var(--color-brand));
filter: brightness(1.03);
}
.dl-btn-secondary {
background: transparent;
border: 1px solid color-mix(in srgb, var(--color-brand) 45%, var(--color-border, transparent));
color: var(--color-brand);
font-weight: 700;
font-size: var(--text-md, 1.0625rem);
padding: 0.85rem 1.75rem;
border-radius: var(--radius-lg, 10px);
}
.dl-btn-secondary:hover {
background: color-mix(in srgb, var(--color-brand) 8%, transparent);
border-color: color-mix(in srgb, var(--color-brand) 70%, transparent);
}
[class*="block-hero-"][class*="__title"],
[class*="block-video-hero"][class*="__title"] {
font-size: clamp(2rem, 1.5rem + 2.4vw, 3.5rem) !important;
text-wrap: balance;
hyphens: auto;
-webkit-hyphens: auto;
}
[class*="hero"][class*="--bg-image"] [class*="__title"],
[class*="hero"][class*="--bg-image"] [class*="__subtitle"],
[class*="hero"][class*="--bg-image"] [class*="__eyebrow"] {
color: #ffffff !important;
-webkit-text-fill-color: #ffffff !important;
background: transparent !important;
text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45), 0 1px 3px rgba(0, 0, 0, 0.35);
}
[class*="block-hero-"] > img[class*="__bg"],
[class*="block-hero-"] > img[class*="__image"],
[class*="block-hero-"] > picture[class*="__bg"],
[class*="block-hero-"] > picture[class*="__image"],
[class*="block-hero-"] > video[class*="__bg"],
[class*="block-hero-"] > video[class*="__image"],
[class*="block-hero-"] > [class*="__backdrop"],
[class*="block-hero-"] > [class*="__bg-wrap"] {
position: absolute !important;
inset: 0 !important;
width: 100% !important;
height: 100% !important;
z-index: 0 !important;
pointer-events: none;
}
[class*="block-hero-"] > img[class*="__bg"],
[class*="block-hero-"] > img[class*="__image"],
[class*="block-hero-"] > picture[class*="__bg"] img,
[class*="block-hero-"] > picture[class*="__image"] img,
[class*="block-hero-"] > [class*="__backdrop"] img {
object-fit: cover !important;
object-position: center !important;
}
[class*="block-hero-"] [class*="__backdrop"] > img,
[class*="block-hero-"] [class*="__backdrop"] > [class*="__image"] {
position: absolute !important;
inset: 0 !important;
width: 100% !important;
height: 100% !important;
object-fit: cover !important;
}
[class*="block-hero-"]:not([class*="__"]) {
position: relative;
isolation: isolate;
}
[class*="block-"][class*="__row"] > *,
[class*="block-"][class*="__grid"] > *,
[class*="block-"][class*="__layout"] > *,
[class*="block-"][class*="__list"] > * {
min-width: 0;
min-height: 0;
}
[class*="block-"] img { max-width: 100%; height: auto; }
[class*="block-"] :where(svg, video, iframe) { max-width: 100%; }
@media (max-width: 560px) {
[class*="block-"] table,
.ess-custom-section table {
display: block;
max-width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
}
[class*="block-"] :where(h1, h2, h3, h4, h5, h6, p, li, dt, dd, blockquote, figcaption) {
overflow-wrap: break-word;
}
:where([class*="block-"]) :where(div, span, a, summary, label, code) {
overflow-wrap: break-word;
}


main > h1[class*="hero"][class*="__title"] { padding-top: clamp(3rem, 5vw, 5rem); }
main > div[class*="hero"][class*="__actions"] { margin-bottom: clamp(3rem, 5vw, 5rem); }

.dl-section-title {
font-size: var(--text-3xl, clamp(2rem, 1.5rem + 2.2vw, 2.75rem));
line-height: 1.12;
letter-spacing: -0.02em;
font-weight: 700;
text-align: center;
margin-top: 0;
font-feature-settings: "kern" 1, "liga" 1;
text-wrap: balance;
}
main > section:not([class*="hero"]):not([class*="banner"]):not([class*="footer"]):not([class*="header"]):not([class*="trust"]):not([class*="anchor-nav"]):not([class*="divider"]) {
padding-top: clamp(3rem, 5vw, 5rem);
padding-bottom: clamp(3rem, 5vw, 5rem);
}
main > section[class*="--bg-surface"]:not([class*="hero"]):not([class*="footer"]):not([class*="header"]):not([class*="calc-pricing"]):not([class*="cta-center"]):not([class*="cta-split"]):not([class*="cta-with-form"]):not([class*="banner-glass"]):not([class*="dark-split"]) {
background: var(--color-surface, color-mix(in srgb, var(--color-brand) 4%, var(--color-bg)));
}
main > section[class*="--bg-tinted"]:not([class*="hero"]):not([class*="footer"]):not([class*="header"]):not([class*="calc-pricing"]):not([class*="cta-center"]):not([class*="cta-split"]):not([class*="cta-with-form"]):not([class*="banner-glass"]):not([class*="dark-split"]),
main > section[class*="--bg-gradient"]:not([class*="hero"]):not([class*="footer"]):not([class*="header"]):not([class*="calc-pricing"]):not([class*="cta-center"]):not([class*="cta-split"]):not([class*="cta-with-form"]):not([class*="banner-glass"]):not([class*="dark-split"]) {
background: color-mix(in srgb, var(--color-brand) 6%, var(--color-bg));
}
.block-features-grid3__icon,
.block-services-cards3__icon,
.block-process-steps4__icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 56px;
height: 56px;
border-radius: var(--radius-md, 12px);
background: color-mix(in srgb, var(--color-brand) 12%, transparent);
color: var(--color-brand);
font-size: 24px;
font-weight: 700;
margin-bottom: var(--space-sm, 1rem);
line-height: 1;
}
.block-features-grid3__card-title,
.block-services-cards3__card-title,
.block-pricing-tiers3__tier-name,
.block-product-cards3__card-title,
.block-team-grid4__member-name,
.block-blog-cards3__card-title {
font-size: var(--text-xl, 1.375rem);
font-weight: 700;
line-height: 1.3;
letter-spacing: -0.015em;
margin: 0 0 0.625rem;
}
.block-features-grid3__card-text,
.block-services-cards3__card-text,
.block-testimonials-cards3__text {
font-size: var(--text-md, 1.0625rem);
line-height: 1.6;
color: color-mix(in srgb, var(--color-text) 75%, var(--color-muted, #6b7280));
}
.block-features-grid3__image,
.block-services-cards3__image,
.block-blog-cards3__image {
border-radius: 12px;
aspect-ratio: 16 / 10;
object-fit: cover;
}
.block-faq-accordion details {
background: var(--color-surface, #ffffff);
border: 1px solid var(--color-border, #e5e7eb);
border-radius: 14px;
padding: 1.25rem 1.5rem;
margin-bottom: 0.75rem;
}
.block-faq-accordion details[open] {
border-color: color-mix(in srgb, var(--color-brand) 35%, var(--color-border, #e5e7eb));
}
.block-faq-accordion summary {
font-weight: 700;
cursor: pointer;
font-size: var(--text-md, 1.0625rem);
color: var(--color-text);
}
.block-footer-columns {
background: color-mix(in srgb, var(--color-brand) 5%, var(--color-bg));
border-top: 1px solid color-mix(in srgb, var(--color-brand) 14%, var(--color-border, #e5e7eb));
}
.dl-section-title,
[class*="__title"]:not([class*="__card-title"]):not([class*="__tier-name"]):not([class*="__member-name"]) {
font-feature-settings: "kern" 1, "liga" 1, "ss01" 1;
text-wrap: balance;
}
@supports (background: color-mix(in srgb, white, black)) {
[data-theme="dark"] .block-features-grid3__card,
[data-theme="dark"] .block-services-cards3__card,
[data-theme="dark"] .block-testimonials-cards3__card,
[data-theme="dark"] .block-pricing-tiers3__tier,
[data-theme="dark"] .block-product-cards3__card,
[data-theme="dark"] .block-blog-cards3__card {
background: color-mix(in srgb, var(--color-bg) 88%, white);
border-color: color-mix(in srgb, var(--color-brand) 22%, var(--color-border, #e5e7eb));
}
}

/* my style */
.block-contact-form-banner-glass__backdrop {
  background: #11468E !important;             /* bacrgound section form */
}
.block-contact-form-banner-glass__overlay {
  background: rgba(0, 0, 0, 0.5) !important; /* регулируйте прозрачность */
}
/* 4. Цвет кнопки отправки формы */
.block-contact-form-banner-glass__submit {
  background: #e64a19 !important; /* оранжевый */
  box-shadow: 0 8px 20px -6px rgba(255, 87, 34, 0.5) !important;
}
.block-contact-form-banner-glass__submit:hover {
  background: #C14115 !important;
}